|
|
(function (global, factory) {
|
|
|
// 判断当前环境是 Node.js、AMD 还是浏览器环境,并加载 jQuery 库
|
|
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('jquery')) :
|
|
|
typeof define === 'function' && define.amd ? define(['jquery'], factory) :
|
|
|
(global = global || self, factory(global.jQuery));
|
|
|
}(this, (function ($) { 'use strict';
|
|
|
|
|
|
$ = $ && $.hasOwnProperty('default') ? $['default'] : $; // 检查 jQuery 是否是默认导出
|
|
|
|
|
|
// 定义一个通用的全局对象 `global_1`
|
|
|
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
|
|
|
|
// 创建一个通用的模块包装器
|
|
|
function createCommonjsModule(fn, module) {
|
|
|
return module = { exports: {} }, fn(module, module.exports), module.exports;
|
|
|
}
|
|
|
|
|
|
// 判断一个对象是否有效
|
|
|
var check = function (it) {
|
|
|
return it && it.Math == Math && it;
|
|
|
};
|
|
|
|
|
|
// 获取当前环境的全局对象
|
|
|
var global_1 =
|
|
|
// 判断环境是浏览器、Node.js 等,选择相应的全局对象
|
|
|
check(typeof globalThis == 'object' && globalThis) ||
|
|
|
check(typeof window == 'object' && window) ||
|
|
|
check(typeof self == 'object' && self) ||
|
|
|
check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
|
|
|
Function('return this')();
|
|
|
|
|
|
// 用于测试代码是否抛出异常的函数
|
|
|
var fails = function (exec) {
|
|
|
try {
|
|
|
return !!exec();
|
|
|
} catch (error) {
|
|
|
return true;
|
|
|
}
|
|
|
};
|
|
|
|
|
|
// 判断对象是否支持属性定义
|
|
|
var descriptors = !fails(function () {
|
|
|
return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
|
|
|
});
|
|
|
|
|
|
var nativePropertyIsEnumerable = {}.propertyIsEnumerable;
|
|
|
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
|
|
|
|
// 判断是否存在某些特殊 bug(如 Nashorn)
|
|
|
var NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1);
|
|
|
|
|
|
// 定义 `Object.prototype.propertyIsEnumerable` 的实现
|
|
|
var f = NASHORN_BUG ? function propertyIsEnumerable(V) {
|
|
|
var descriptor = getOwnPropertyDescriptor(this, V);
|
|
|
return !!descriptor && descriptor.enumerable;
|
|
|
} : nativePropertyIsEnumerable;
|
|
|
|
|
|
// `Object.prototype.propertyIsEnumerable` 的封装
|
|
|
var objectPropertyIsEnumerable = {
|
|
|
f: f
|
|
|
};
|
|
|
|
|
|
// 创建属性描述符
|
|
|
var createPropertyDescriptor = function (bitmap, value) {
|
|
|
return {
|
|
|
enumerable: !(bitmap & 1),
|
|
|
configurable: !(bitmap & 2),
|
|
|
writable: !(bitmap & 4),
|
|
|
value: value
|
|
|
};
|
|
|
};
|
|
|
|
|
|
var toString = {}.toString;
|
|
|
|
|
|
// 获取对象类型的原始方法
|
|
|
var classofRaw = function (it) {
|
|
|
return toString.call(it).slice(8, -1);
|
|
|
};
|
|
|
|
|
|
// 检查是否是数组或其他类数组对象
|
|
|
var split = ''.split;
|
|
|
|
|
|
// 针对非数组和旧 V8 字符串进行兼容处理
|
|
|
var indexedObject = fails(function () {
|
|
|
return !Object('z').propertyIsEnumerable(0);
|
|
|
}) ? function (it) {
|
|
|
return classofRaw(it) == 'String' ? split.call(it, '') : Object(it);
|
|
|
} : Object;
|
|
|
|
|
|
// `RequireObjectCoercible` 操作,检查对象是否可以强制转换
|
|
|
var requireObjectCoercible = function (it) {
|
|
|
if (it == undefined) throw TypeError("Can't call method on " + it);
|
|
|
return it;
|
|
|
};
|
|
|
|
|
|
// 将对象转换为数组或类似数组的对象
|
|
|
var toIndexedObject = function (it) {
|
|
|
return indexedObject(requireObjectCoercible(it));
|
|
|
};
|
|
|
|
|
|
// 判断是否为对象
|
|
|
var isObject = function (it) {
|
|
|
return typeof it === 'object' ? it !== null : typeof it === 'function';
|
|
|
};
|
|
|
|
|
|
// `ToPrimitive` 操作,用于转换为原始值
|
|
|
var toPrimitive = function (input, PREFERRED_STRING) {
|
|
|
if (!isObject(input)) return input;
|
|
|
var fn, val;
|
|
|
if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
|
|
|
if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;
|
|
|
if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
|
|
|
throw TypeError("Can't convert object to primitive value");
|
|
|
};
|
|
|
|
|
|
var hasOwnProperty = {}.hasOwnProperty;
|
|
|
|
|
|
// 检查对象是否有指定属性
|
|
|
var has = function (it, key) {
|
|
|
return hasOwnProperty.call(it, key);
|
|
|
};
|
|
|
|
|
|
var document = global_1.document;
|
|
|
// 检查是否支持创建 DOM 元素
|
|
|
var EXISTS = isObject(document) && isObject(document.createElement);
|
|
|
|
|
|
// 创建 DOM 元素的方法
|
|
|
var documentCreateElement = function (it) {
|
|
|
return EXISTS ? document.createElement(it) : {};
|
|
|
};
|
|
|
|
|
|
// 兼容 IE8 的 `defineProperty`
|
|
|
var ie8DomDefine = !descriptors && !fails(function () {
|
|
|
return Object.defineProperty(documentCreateElement('div'), 'a', {
|
|
|
get: function () { return 7; }
|
|
|
}).a != 7;
|
|
|
});
|
|
|
|
|
|
var nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
|
|
|
|
// 获取对象的属性描述符
|
|
|
var f$1 = descriptors ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
|
|
|
O = toIndexedObject(O);
|
|
|
P = toPrimitive(P, true);
|
|
|
if (ie8DomDefine) try {
|
|
|
return nativeGetOwnPropertyDescriptor(O, P);
|
|
|
} catch (error) { /* empty */ }
|
|
|
if (has(O, P)) return createPropertyDescriptor(!objectPropertyIsEnumerable.f.call(O, P), O[P]);
|
|
|
};
|
|
|
|
|
|
// 封装 `Object.getOwnPropertyDescriptor`
|
|
|
var objectGetOwnPropertyDescriptor = {
|
|
|
f: f$1
|
|
|
};
|
|
|
|
|
|
var anObject = function (it) {
|
|
|
if (!isObject(it)) {
|
|
|
throw TypeError(String(it) + ' is not an object');
|
|
|
} return it;
|
|
|
};
|
|
|
|
|
|
var nativeDefineProperty = Object.defineProperty;
|
|
|
|
|
|
// 定义属性的方法
|
|
|
var f$2 = descriptors ? nativeDefineProperty : function defineProperty(O, P, Attributes) {
|
|
|
anObject(O);
|
|
|
P = toPrimitive(P, true);
|
|
|
anObject(Attributes);
|
|
|
if (ie8DomDefine) try {
|
|
|
return nativeDefineProperty(O, P, Attributes);
|
|
|
} catch (error) { /* empty */ }
|
|
|
if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');
|
|
|
if ('value' in Attributes) O[P] = Attributes.value;
|
|
|
return O;
|
|
|
};
|
|
|
|
|
|
// 封装 `Object.defineProperty`
|
|
|
var objectDefineProperty = {
|
|
|
f: f$2
|
|
|
};
|
|
|
|
|
|
// 创建不可枚举属性
|
|
|
var createNonEnumerableProperty = descriptors ? function (object, key, value) {
|
|
|
return objectDefineProperty.f(object, key, createPropertyDescriptor(1, value));
|
|
|
} : function (object, key, value) {
|
|
|
object[key] = value;
|
|
|
return object;
|
|
|
};
|
|
|
|
|
|
// 设置全局变量
|
|
|
var setGlobal = function (key, value) {
|
|
|
try {
|
|
|
createNonEnumerableProperty(global_1, key, value);
|
|
|
} catch (error) {
|
|
|
global_1[key] = value;
|
|
|
} return value;
|
|
|
};
|
|
|
|
|
|
var SHARED = '__core-js_shared__';
|
|
|
var store = global_1[SHARED] || setGlobal(SHARED, {});
|
|
|
|
|
|
// 定义共享存储
|
|
|
var sharedStore = store;
|
|
|
|
|
|
// 处理函数 `toString` 被破坏的问题
|
|
|
var functionToString = Function.toString;
|
|
|
|
|
|
// 如果 `inspectSource` 不存在,则创建一个
|
|
|
if (typeof sharedStore.inspectSource != 'function') {
|
|
|
sharedStore.inspectSource = function (it) {
|
|
|
return functionToString.call(it);
|
|
|
};
|
|
|
}
|
|
|
|
|
|
var inspectSource = sharedStore.inspectSource;
|
|
|
|
|
|
// 获取 `WeakMap` 对象
|
|
|
var WeakMap = global_1.WeakMap;
|
|
|
|
|
|
// 检查是否原生支持 `WeakMap`
|
|
|
var nativeWeakMap = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));
|
|
|
|
|
|
var shared = createCommonjsModule(function (module) {
|
|
|
(module.exports = function (key, value) {
|
|
|
return sharedStore[key] || (sharedStore[key] = value !== undefined ? value : {});
|
|
|
})('versions', []).push({
|
|
|
version: '3.6.0',
|
|
|
mode: 'global',
|
|
|
copyright: '© 2019 Denis Pushkarev (zloirock.ru)'
|
|
|
});
|
|
|
});
|
|
|
|
|
|
// 定义一个唯一 ID 生成器
|
|
|
var id = 0;
|
|
|
var postfix = Math.random();
|
|
|
|
|
|
var uid = function (key) {
|
|
|
return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);
|
|
|
};
|
|
|
|
|
|
var keys = shared('keys');
|
|
|
|
|
|
// 共享键值对的访问方法
|
|
|
var sharedKey = function (key) {
|
|
|
return keys[key] || (keys[key] = uid(key));
|
|
|
};
|
|
|
|
|
|
var hiddenKeys = {};
|
|
|
|
|
|
// 使用 `WeakMap` 或普通对象来存储和访问隐式状态
|
|
|
var WeakMap$1 = global_1.WeakMap;
|
|
|
var set, get, has$1;
|
|
|
|
|
|
var enforce = function (it) {
|
|
|
return has$1(it) ? get(it) : set(it, {});
|
|
|
};
|
|
|
|
|
|
var getterFor = function (TYPE) {
|
|
|
return function (it) {
|
|
|
var state;
|
|
|
if (!isObject(it) || (state = get(it)).type !== TYPE) {
|
|
|
throw TypeError('Incompatible receiver, ' + TYPE + ' required');
|
|
|
} return state;
|
|
|
};
|
|
|
};
|
|
|
|
|
|
// 如果支持 `WeakMap`,则使用它,否则使用对象来模拟 `WeakMap`
|
|
|
if (nativeWeakMap) {
|
|
|
var store$1 = new WeakMap$1();
|
|
|
var wmget = store$1.get;
|
|
|
var wmhas = store$1.has;
|
|
|
var wmset = store$1.set;
|
|
|
set = function (it, metadata) {
|
|
|
wmset.call(store$1, it, metadata);
|
|
|
return metadata;
|
|
|
};
|
|
|
get = function (it) {
|
|
|
return wmget.call(store$1, it) || {};
|
|
|
};
|
|
|
has$1 = function (it) {
|
|
|
return wmhas.call(store$1, it);
|
|
|
};
|
|
|
} else {
|
|
|
var STATE = sharedKey('state');
|
|
|
hiddenKeys[STATE] = true;
|
|
|
set = function (it, metadata) {
|
|
|
createNonEnumerableProperty(it, STATE, metadata);
|
|
|
return metadata;
|
|
|
};
|
|
|
get = function (it) {
|
|
|
return has(it, STATE) ? it[STATE] : {};
|
|
|
};
|
|
|
has$1 = function (it) {
|
|
|
return has(it, STATE);
|
|
|
};
|
|
|
}
|
|
|
|
|
|
// 内部状态管理对象
|
|
|
var internalState = {
|
|
|
set: set,
|
|
|
get: get,
|
|
|
has: has$1,
|
|
|
enforce: enforce,
|
|
|
getterFor: getterFor
|
|
|
};
|
|
|
|
|
|
var redefine = createCommonjsModule(function (module) {
|
|
|
var getInternalState = internalState.get;
|
|
|
var enforceInternalState = internalState.enforce;
|
|
|
var TEMPLATE = String(String).split('String');
|
|
|
|
|
|
(module.exports = function (O, key, value, options) {
|
|
|
var unsafe = options ? !!options.unsafe : false;
|
|
|
var simple = options ? !!options.enumerable : false;
|
|
|
var noTargetGet = options ? !!options.noTargetGet : false;
|
|
|
if (typeof value == 'function') {
|
|
|
if (typeof key == 'string' && !has(value, 'name')) createNonEnumerableProperty(value, 'name', key);
|
|
|
enforceInternalState(value).source = TEMPLATE.join(typeof key == 'string' ? key : '');
|
|
|
}
|
|
|
if (O === global_1) {
|
|
|
if (simple) O[key] = value;
|
|
|
else setGlobal(key, value);
|
|
|
return;
|
|
|
} else if (!unsafe) {
|
|
|
delete O[key];
|
|
|
} else if (!noTargetGet && O[key]) {
|
|
|
simple = true;
|
|
|
}
|
|
|
if (simple) O[key] = value;
|
|
|
else createNonEnumerableProperty(O, key, value);
|
|
|
// 添加伪造的 Function#toString 以确保方法能够正确工作
|
|
|
})(Function.prototype, 'toString', function toString() {
|
|
|
return typeof this == 'function' && getInternalState(this).source || inspectSource(this);
|
|
|
});
|
|
|
});
|
|
|
|
|
|
var path = global_1;
|
|
|
// 检查一个变量是否为函数
|
|
|
var aFunction = function (variable) {
|
|
|
return typeof variable == 'function' ? variable : undefined; // 如果是函数,则返回该函数,否则返回 undefined
|
|
|
};
|
|
|
|
|
|
// 获取指定命名空间中的方法,如果没有指定方法,则返回命名空间本身的函数
|
|
|
var getBuiltIn = function (namespace, method) {
|
|
|
return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global_1[namespace])
|
|
|
: path[namespace] && path[namespace][method] || global_1[namespace] && global_1[namespace][method];
|
|
|
};
|
|
|
|
|
|
// Math.ceil 和 Math.floor 用于将浮动数字向上取整和向下取整
|
|
|
var ceil = Math.ceil;
|
|
|
var floor = Math.floor;
|
|
|
|
|
|
// `ToInteger` 操作,将任意值转换为整数
|
|
|
var toInteger = function (argument) {
|
|
|
return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);
|
|
|
};
|
|
|
|
|
|
// 获取最小值
|
|
|
var min = Math.min;
|
|
|
|
|
|
// `ToLength` 操作,将一个值转换为数组长度,最大值为 0x1FFFFFFFFFFFFF
|
|
|
var toLength = function (argument) {
|
|
|
return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
|
|
|
};
|
|
|
|
|
|
// 获取最大值和最小值
|
|
|
var max = Math.max;
|
|
|
var min$1 = Math.min;
|
|
|
|
|
|
// 计算绝对索引位置,负值表示从数组末尾倒推
|
|
|
var toAbsoluteIndex = function (index, length) {
|
|
|
var integer = toInteger(index);
|
|
|
return integer < 0 ? max(integer + length, 0) : min$1(integer, length);
|
|
|
};
|
|
|
|
|
|
// 创建一个方法,包含 `indexOf` 和 `includes`,判断数组中是否包含元素
|
|
|
var createMethod = function (IS_INCLUDES) {
|
|
|
return function ($this, el, fromIndex) {
|
|
|
var O = toIndexedObject($this); // 转换为可索引对象
|
|
|
var length = toLength(O.length); // 获取数组长度
|
|
|
var index = toAbsoluteIndex(fromIndex, length); // 计算开始索引
|
|
|
var value;
|
|
|
|
|
|
// `Array#includes` 使用 SameValueZero 比较方法
|
|
|
if (IS_INCLUDES && el != el) { // 处理 `NaN` 情况
|
|
|
while (length > index) {
|
|
|
value = O[index++];
|
|
|
if (value != value) return true; // 找到 NaN 返回 true
|
|
|
}
|
|
|
} else {
|
|
|
for (; length > index; index++) {
|
|
|
if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
|
|
|
}
|
|
|
}
|
|
|
return !IS_INCLUDES && -1; // 没找到元素,返回 -1
|
|
|
};
|
|
|
};
|
|
|
|
|
|
// `Array.prototype.includes` 和 `Array.prototype.indexOf` 方法的实现
|
|
|
var arrayIncludes = {
|
|
|
includes: createMethod(true), // 包含
|
|
|
indexOf: createMethod(false) // 索引
|
|
|
};
|
|
|
|
|
|
// 获取对象的所有属性,包括不可枚举和符号
|
|
|
var objectKeysInternal = function (object, names) {
|
|
|
var O = toIndexedObject(object);
|
|
|
var i = 0;
|
|
|
var result = [];
|
|
|
var key;
|
|
|
|
|
|
for (key in O) {
|
|
|
if (!has(hiddenKeys, key) && has(O, key)) result.push(key);
|
|
|
}
|
|
|
|
|
|
// 检查属性是否在 names 数组中
|
|
|
while (names.length > i) if (has(O, key = names[i++])) {
|
|
|
~indexOf(result, key) || result.push(key);
|
|
|
}
|
|
|
|
|
|
return result;
|
|
|
};
|
|
|
|
|
|
// IE8 及早期版本无法枚举的属性
|
|
|
var enumBugKeys = [
|
|
|
'constructor',
|
|
|
'hasOwnProperty',
|
|
|
'isPrototypeOf',
|
|
|
'propertyIsEnumerable',
|
|
|
'toLocaleString',
|
|
|
'toString',
|
|
|
'valueOf'
|
|
|
];
|
|
|
|
|
|
// 隐藏的属性
|
|
|
var hiddenKeys$1 = enumBugKeys.concat('length', 'prototype');
|
|
|
|
|
|
// `Object.getOwnPropertyNames` 方法,用于获取对象的所有属性名
|
|
|
var f$3 = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
|
|
return objectKeysInternal(O, hiddenKeys$1);
|
|
|
};
|
|
|
|
|
|
// 获取对象的符号属性
|
|
|
var f$4 = Object.getOwnPropertySymbols;
|
|
|
|
|
|
var objectGetOwnPropertySymbols = {
|
|
|
f: f$4
|
|
|
};
|
|
|
|
|
|
// 获取对象的所有属性(包括符号属性)
|
|
|
var ownKeys = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
|
|
|
var keys = objectGetOwnPropertyNames.f(anObject(it));
|
|
|
var getOwnPropertySymbols = objectGetOwnPropertySymbols.f;
|
|
|
return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;
|
|
|
};
|
|
|
|
|
|
// 将源对象的属性复制到目标对象
|
|
|
var copyConstructorProperties = function (target, source) {
|
|
|
var keys = ownKeys(source);
|
|
|
var defineProperty = objectDefineProperty.f;
|
|
|
var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
|
|
|
|
|
|
for (var i = 0; i < keys.length; i++) {
|
|
|
var key = keys[i];
|
|
|
if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));
|
|
|
}
|
|
|
};
|
|
|
|
|
|
// 用于检查是否强制使用某些特性,判断是否要用 Polyfill 实现
|
|
|
var replacement = /#|\.prototype\./;
|
|
|
|
|
|
var isForced = function (feature, detection) {
|
|
|
var value = data[normalize(feature)];
|
|
|
return value == POLYFILL ? true
|
|
|
: value == NATIVE ? false
|
|
|
: typeof detection == 'function' ? fails(detection)
|
|
|
: !!detection;
|
|
|
};
|
|
|
|
|
|
// 将字符串标准化(小写并替换 . 和 #)
|
|
|
var normalize = isForced.normalize = function (string) {
|
|
|
return String(string).replace(replacement, '.').toLowerCase();
|
|
|
};
|
|
|
|
|
|
// 用于存储特性强制标记的数据
|
|
|
var data = isForced.data = {};
|
|
|
var NATIVE = isForced.NATIVE = 'N';
|
|
|
var POLYFILL = isForced.POLYFILL = 'P';
|
|
|
|
|
|
// 检查是否需要强制某个特性
|
|
|
var isForced_1 = isForced;
|
|
|
|
|
|
// 获取对象的属性描述符
|
|
|
var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
|
|
|
|
|
|
// 对外暴露的 `_export` 函数,用于实现模块化的特性导出
|
|
|
var _export = function (options, source) {
|
|
|
var TARGET = options.target; // 目标对象
|
|
|
var GLOBAL = options.global; // 是否为全局对象
|
|
|
var STATIC = options.stat; // 是否为静态方法
|
|
|
var FORCED, target, key, targetProperty, sourceProperty, descriptor;
|
|
|
|
|
|
// 根据 options 配置,确定目标对象
|
|
|
if (GLOBAL) {
|
|
|
target = global_1;
|
|
|
} else if (STATIC) {
|
|
|
target = global_1[TARGET] || setGlobal(TARGET, {});
|
|
|
} else {
|
|
|
target = (global_1[TARGET] || {}).prototype;
|
|
|
}
|
|
|
|
|
|
// 导出源对象的属性到目标对象
|
|
|
if (target) for (key in source) {
|
|
|
sourceProperty = source[key];
|
|
|
if (options.noTargetGet) {
|
|
|
descriptor = getOwnPropertyDescriptor$1(target, key);
|
|
|
targetProperty = descriptor && descriptor.value;
|
|
|
} else targetProperty = target[key];
|
|
|
|
|
|
// 检查是否强制使用某个特性
|
|
|
FORCED = isForced_1(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
|
|
|
|
|
|
// 如果目标对象已包含该属性且符合类型要求,跳过该属性
|
|
|
if (!FORCED && targetProperty !== undefined) {
|
|
|
if (typeof sourceProperty === typeof targetProperty) continue;
|
|
|
copyConstructorProperties(sourceProperty, targetProperty); // 将属性复制过去
|
|
|
}
|
|
|
|
|
|
// 如果需要添加 polyfill 特性,标记该属性
|
|
|
if (options.sham || (targetProperty && targetProperty.sham)) {
|
|
|
createNonEnumerableProperty(sourceProperty, 'sham', true);
|
|
|
}
|
|
|
|
|
|
// 将源属性导出到目标对象
|
|
|
redefine(target, key, sourceProperty, options);
|
|
|
}
|
|
|
};
|
|
|
|
|
|
|
|
|
// `IsArray` abstract operation
|
|
|
// https://tc39.github.io/ecma262/#sec-isarray
|
|
|
// 判断一个值是否为数组
|
|
|
var isArray = Array.isArray || function isArray(arg) {
|
|
|
return classofRaw(arg) == 'Array'; // 如果没有 Array.isArray 方法,则使用备用方法
|
|
|
};
|
|
|
|
|
|
// `ToObject` 抽象操作
|
|
|
// 将参数转换为对象
|
|
|
var toObject = function (argument) {
|
|
|
return Object(requireObjectCoercible(argument)); // 确保参数可以被强制转换为对象
|
|
|
};
|
|
|
|
|
|
// 创建一个对象的属性
|
|
|
var createProperty = function (object, key, value) {
|
|
|
var propertyKey = toPrimitive(key); // 将 key 转换为原始值
|
|
|
if (propertyKey in object)
|
|
|
objectDefineProperty.f(object, propertyKey, createPropertyDescriptor(0, value)); // 如果属性已存在,则使用 Object.defineProperty
|
|
|
else
|
|
|
object[propertyKey] = value; // 如果属性不存在,直接赋值
|
|
|
};
|
|
|
|
|
|
// 检查是否支持 Symbol,并且 Symbol 正常工作
|
|
|
var nativeSymbol = !!Object.getOwnPropertySymbols && !fails(function () {
|
|
|
// Chrome 38 中的 Symbol 有错误的 toString 转换
|
|
|
return !String(Symbol()); // 检查 Symbol 转换为字符串是否正确
|
|
|
});
|
|
|
|
|
|
// 判断是否使用 Symbol 作为唯一标识符
|
|
|
var useSymbolAsUid = nativeSymbol
|
|
|
&& !Symbol.sham // 如果 Symbol 没有 `sham` 属性,则认为是支持的
|
|
|
&& typeof Symbol() == 'symbol'; // 检查 Symbol() 是否为符号类型
|
|
|
|
|
|
var WellKnownSymbolsStore = shared('wks'); // 存储已知符号
|
|
|
var Symbol$1 = global_1.Symbol; // 获取全局的 Symbol
|
|
|
var createWellKnownSymbol = useSymbolAsUid ? Symbol$1 : uid; // 根据是否支持 Symbol 来选择符号创建方法
|
|
|
|
|
|
var wellKnownSymbol = function (name) {
|
|
|
if (!has(WellKnownSymbolsStore, name)) {
|
|
|
if (nativeSymbol && has(Symbol$1, name))
|
|
|
WellKnownSymbolsStore[name] = Symbol$1[name]; // 使用全局的 Symbol
|
|
|
else
|
|
|
WellKnownSymbolsStore[name] = createWellKnownSymbol('Symbol.' + name); // 创建新的符号
|
|
|
}
|
|
|
return WellKnownSymbolsStore[name];
|
|
|
};
|
|
|
|
|
|
var SPECIES = wellKnownSymbol('species'); // 定义 `species` 符号
|
|
|
|
|
|
// `ArraySpeciesCreate` 抽象操作
|
|
|
// 创建一个数组的副本,使用指定的构造函数
|
|
|
var arraySpeciesCreate = function (originalArray, length) {
|
|
|
var C;
|
|
|
if (isArray(originalArray)) {
|
|
|
C = originalArray.constructor; // 获取原数组的构造函数
|
|
|
// 跨域回退
|
|
|
if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;
|
|
|
else if (isObject(C)) {
|
|
|
C = C[SPECIES]; // 使用 `species` 属性来获取构造函数
|
|
|
if (C === null) C = undefined; // 如果 `species` 是 null,则回退为 undefined
|
|
|
}
|
|
|
}
|
|
|
return new (C === undefined ? Array : C)(length === 0 ? 0 : length); // 创建新数组
|
|
|
};
|
|
|
|
|
|
var userAgent = getBuiltIn('navigator', 'userAgent') || ''; // 获取浏览器的 userAgent
|
|
|
|
|
|
var process = global_1.process;
|
|
|
var versions = process && process.versions;
|
|
|
var v8 = versions && versions.v8;
|
|
|
var match, version;
|
|
|
|
|
|
// 检查 V8 版本
|
|
|
if (v8) {
|
|
|
match = v8.split('.');
|
|
|
version = match[0] + match[1];
|
|
|
} else if (userAgent) {
|
|
|
match = userAgent.match(/Edge\/(\d+)/);
|
|
|
if (!match || match[1] >= 74) {
|
|
|
match = userAgent.match(/Chrome\/(\d+)/);
|
|
|
if (match) version = match[1];
|
|
|
}
|
|
|
}
|
|
|
|
|
|
var v8Version = version && +version; // 获取 V8 版本
|
|
|
|
|
|
// 定义 `species` 符号
|
|
|
var SPECIES$1 = wellKnownSymbol('species');
|
|
|
|
|
|
// 检查 `concat` 方法是否支持 `species` 属性
|
|
|
var arrayMethodHasSpeciesSupport = function (METHOD_NAME) {
|
|
|
// V8 中不支持此特性检测,因为它会导致性能下降
|
|
|
return v8Version >= 51 || !fails(function () {
|
|
|
var array = [];
|
|
|
var constructor = array.constructor = {}; // 创建数组的构造函数
|
|
|
constructor[SPECIES$1] = function () {
|
|
|
return { foo: 1 }; // 返回一个包含属性 `foo` 的对象
|
|
|
};
|
|
|
return array[METHOD_NAME](Boolean).foo !== 1; // 检查是否支持 `species` 属性
|
|
|
});
|
|
|
};
|
|
|
|
|
|
// `isConcatSpreadable` 符号,用于判断是否可以展开数组
|
|
|
var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');
|
|
|
var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; // 最大安全整数
|
|
|
var MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded'; // 超出最大索引限制
|
|
|
|
|
|
// 检查 `concat` 方法是否支持 `isConcatSpreadable`
|
|
|
var IS_CONCAT_SPREADABLE_SUPPORT = v8Version >= 51 || !fails(function () {
|
|
|
var array = [];
|
|
|
array[IS_CONCAT_SPREADABLE] = false;
|
|
|
return array.concat()[0] !== array;
|
|
|
});
|
|
|
|
|
|
var SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat'); // 检查 `concat` 是否支持 `species` 属性
|
|
|
|
|
|
// 检查数组是否支持展开操作
|
|
|
var isConcatSpreadable = function (O) {
|
|
|
if (!isObject(O)) return false;
|
|
|
var spreadable = O[IS_CONCAT_SPREADABLE];
|
|
|
return spreadable !== undefined ? !!spreadable : isArray(O);
|
|
|
};
|
|
|
|
|
|
// 强制执行的条件
|
|
|
var FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;
|
|
|
|
|
|
// 扩展 `Array.prototype.concat` 方法,添加对 `@@isConcatSpreadable` 和 `@@species` 的支持
|
|
|
_export({ target: 'Array', proto: true, forced: FORCED }, {
|
|
|
concat: function concat(arg) { // eslint-disable-line no-unused-vars
|
|
|
var O = toObject(this); // 将 `this` 转换为对象
|
|
|
var A = arraySpeciesCreate(O, 0); // 创建新的数组
|
|
|
var n = 0;
|
|
|
var i, k, length, len, E;
|
|
|
for (i = -1, length = arguments.length; i < length; i++) {
|
|
|
E = i === -1 ? O : arguments[i]; // 获取当前元素
|
|
|
if (isConcatSpreadable(E)) {
|
|
|
len = toLength(E.length); // 获取数组的长度
|
|
|
if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED); // 检查是否超出最大索引
|
|
|
for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]); // 添加元素到新数组
|
|
|
} else {
|
|
|
if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED); // 检查是否超出最大索引
|
|
|
createProperty(A, n++, E); // 直接将元素添加到新数组
|
|
|
}
|
|
|
}
|
|
|
A.length = n; // 设置新数组的长度
|
|
|
return A; // 返回新数组
|
|
|
}
|
|
|
});
|
|
|
|
|
|
// Bootstrap Table Afrikaans 语言包翻译
|
|
|
// 作者: Phillip Kruger <phillip.kruger@gmail.com>
|
|
|
$.fn.bootstrapTable.locales['af-ZA'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Besig om te laai, wag asseblief'; // 加载中消息
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " rekords per bladsy"); // 每页显示记录数
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
// 显示当前页的记录数
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Resultate ".concat(pageFrom, " tot ").concat(pageTo, " van ").concat(totalRows, " rye (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
return "Resultate ".concat(pageFrom, " tot ").concat(pageTo, " van ").concat(totalRows, " rye");
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page'; // 上一页
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page); // 跳转到页码
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page'; // 下一页
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows"); // 显示总记录数
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Clear Search'; // 清除搜索
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Soek'; // 搜索
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Geen rekords gevind nie'; // 没有找到匹配的记录
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Wys/verberg bladsy nummering'; // 显示/隐藏分页
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination'; // 显示分页
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination'; // 隐藏分页
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Herlaai'; // 刷新
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Wissel'; // 切换
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view'; // 显示卡片视图
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view'; // 隐藏卡片视图
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Kolomme'; // 列
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all'; // 切换所有列
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen'; // 全屏
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'All'; // 所有
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh'; // 自动刷新
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data'; // 导出数据
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO'; // 跳转到
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search'; // 高级搜索
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close'; // 关闭
|
|
|
}
|
|
|
};
|
|
|
|
|
|
// 扩展默认的 Bootstrap Table 本地化设置
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['af-ZA']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table English translation
|
|
|
* Author: Zhixin Wen<wenzhixin2010@gmail.com>
|
|
|
*/
|
|
|
// Bootstrap Table 阿拉伯语(沙特阿拉伯)翻译
|
|
|
$.fn.bootstrapTable.locales['ar-SA'] = {
|
|
|
// 加载信息
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'جاري التحميل, يرجى الإنتظار'; // 正在加载,请稍候
|
|
|
},
|
|
|
// 每页记录数
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " \u0633\u062C\u0644 \u0644\u0643\u0644 \u0635\u0641\u062D\u0629"); // 每页显示记录数
|
|
|
},
|
|
|
// 显示当前页的记录
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "\u0627\u0644\u0638\u0627\u0647\u0631 ".concat(pageFrom, " \u0625\u0644\u0649 ").concat(pageTo, " \u0645\u0646 ").concat(totalRows, " \u0633\u062C\u0644 ").concat(totalNotFiltered, " total rows)"); // 显示的记录
|
|
|
}
|
|
|
return "\u0627\u0644\u0638\u0627\u0647\u0631 ".concat(pageFrom, " \u0625\u0644\u0649 ").concat(pageTo, " \u0645\u0646 ").concat(totalRows, " \u0633\u062C\u0644"); // 显示的记录
|
|
|
},
|
|
|
// 上一页
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page'; // 上一页
|
|
|
},
|
|
|
// 跳转到指定页
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page); // 跳转到页面
|
|
|
},
|
|
|
// 下一页
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page'; // 下一页
|
|
|
},
|
|
|
// 显示详细分页
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows"); // 显示的总记录数
|
|
|
},
|
|
|
// 清除搜索
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Clear Search'; // 清除搜索
|
|
|
},
|
|
|
// 搜索
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'بحث'; // 搜索
|
|
|
},
|
|
|
// 没有匹配的记录
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'لا توجد نتائج مطابقة للبحث'; // 没有找到匹配的记录
|
|
|
},
|
|
|
// 显示/隐藏分页
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
/* eslint-disable no-useless-escape */
|
|
|
return 'إخفاء\إظهار ترقيم الصفحات'; // 显示/隐藏分页
|
|
|
},
|
|
|
// 显示分页
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination'; // 显示分页
|
|
|
},
|
|
|
// 隐藏分页
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination'; // 隐藏分页
|
|
|
},
|
|
|
// 刷新
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'تحديث'; // 刷新
|
|
|
},
|
|
|
// 切换
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'تغيير'; // 切换
|
|
|
},
|
|
|
// 显示卡片视图
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view'; // 显示卡片视图
|
|
|
},
|
|
|
// 隐藏卡片视图
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view'; // 隐藏卡片视图
|
|
|
},
|
|
|
// 列
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'أعمدة'; // 列
|
|
|
},
|
|
|
// 切换所有列
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all'; // 切换所有列
|
|
|
},
|
|
|
// 全屏
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen'; // 全屏
|
|
|
},
|
|
|
// 所有
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'All'; // 所有
|
|
|
},
|
|
|
// 自动刷新
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh'; // 自动刷新
|
|
|
},
|
|
|
// 导出数据
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data'; // 导出数据
|
|
|
},
|
|
|
// 跳转到
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO'; // 跳转
|
|
|
},
|
|
|
// 高级搜索
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search'; // 高级搜索
|
|
|
},
|
|
|
// 关闭
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close'; // 关闭
|
|
|
}
|
|
|
};
|
|
|
|
|
|
// 将阿拉伯语(沙特阿拉伯)翻译扩展到默认设置
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['ar-SA']);
|
|
|
|
|
|
// Bootstrap Table 加泰罗尼亚语翻译
|
|
|
$.fn.bootstrapTable.locales['ca-ES'] = {
|
|
|
// 加载信息
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Espereu, si us plau'; // 请稍候
|
|
|
},
|
|
|
// 每页记录数
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " resultats per p\xE0gina"); // 每页显示记录数
|
|
|
},
|
|
|
// 显示当前页的记录
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Mostrant de ".concat(pageFrom, " fins ").concat(pageTo, " - total ").concat(totalRows, " resultats (filtered from ").concat(totalNotFiltered, " total rows)"); // 显示的记录
|
|
|
}
|
|
|
return "Mostrant de ".concat(pageFrom, " fins ").concat(pageTo, " - total ").concat(totalRows, " resultats"); // 显示的记录
|
|
|
},
|
|
|
// 上一页
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page'; // 上一页
|
|
|
},
|
|
|
// 跳转到指定页
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page); // 跳转到页面
|
|
|
},
|
|
|
// 下一页
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page'; // 下一页
|
|
|
},
|
|
|
// 显示详细分页
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows"); // 显示的总记录数
|
|
|
},
|
|
|
// 清除搜索
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Clear Search'; // 清除搜索
|
|
|
},
|
|
|
// 搜索
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Cerca'; // 搜索
|
|
|
},
|
|
|
// 没有匹配的记录
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'No s\'han trobat resultats'; // 没有找到匹配的记录
|
|
|
},
|
|
|
// 显示/隐藏分页
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Amaga/Mostra paginació'; // 显示/隐藏分页
|
|
|
},
|
|
|
// 显示分页
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination'; // 显示分页
|
|
|
},
|
|
|
// 隐藏分页
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination'; // 隐藏分页
|
|
|
},
|
|
|
// 刷新
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Refresca'; // 刷新
|
|
|
},
|
|
|
// 切换
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Alterna formatació'; // 切换
|
|
|
},
|
|
|
// 显示卡片视图
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view'; // 显示卡片视图
|
|
|
},
|
|
|
// 隐藏卡片视图
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view'; // 隐藏卡片视图
|
|
|
},
|
|
|
// 列
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Columnes'; // 列
|
|
|
},
|
|
|
// 切换所有列
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all'; // 切换所有列
|
|
|
},
|
|
|
// 全屏
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen'; // 全屏
|
|
|
},
|
|
|
// 所有
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Tots'; // 所有
|
|
|
},
|
|
|
// 自动刷新
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh'; // 自动刷新
|
|
|
},
|
|
|
// 导出数据
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data'; // 导出数据
|
|
|
},
|
|
|
// 跳转到
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO'; // 跳转
|
|
|
},
|
|
|
// 高级搜索
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search'; // 高级搜索
|
|
|
},
|
|
|
// 关闭
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close'; // 关闭
|
|
|
}
|
|
|
};
|
|
|
|
|
|
// 将加泰罗尼亚语翻译扩展到默认设置
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['ca-ES']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Czech translation
|
|
|
* Author: Lukas Kral (monarcha@seznam.cz)
|
|
|
* Author: Jakub Svestka <svestka1999@gmail.com>
|
|
|
*/
|
|
|
$.fn.bootstrapTable.locales['cs-CZ'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Čekejte, prosím'; // 请稍等
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " položek na stránku"); // 每页记录数
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Zobrazena ".concat(pageFrom, ". - ").concat(pageTo, " . položka z celkových ").concat(totalRows, " (filtered from ").concat(totalNotFiltered, " total rows)"); // 显示的记录
|
|
|
}
|
|
|
return "Zobrazena ".concat(pageFrom, ". - ").concat(pageTo, " . položka z celkových ").concat(totalRows); // 显示的记录
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page'; // 上一页
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page); // 跳转到页面
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page'; // 下一页
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows"); // 显示的总记录数
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Clear Search'; // 清除搜索
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Vyhledávání'; // 搜索
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Nenalezena žádná vyhovující položka'; // 没有找到匹配的记录
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Skrýt/Zobrazit stránkování'; // 显示/隐藏分页
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination'; // 显示分页
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination'; // 隐藏分页
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Aktualizovat'; // 刷新
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Přepni'; // 切换
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view'; // 显示卡片视图
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view'; // 隐藏卡片视图
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Sloupce'; // 列
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all'; // 切换所有列
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen'; // 全屏
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Vše'; // 所有
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh'; // 自动刷新
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data'; // 导出数据
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO'; // 跳转
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search'; // 高级搜索
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close'; // 关闭
|
|
|
}
|
|
|
};
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Greek translation
|
|
|
* Author: giannisdallas
|
|
|
*/
|
|
|
// Greek translation for Bootstrap Table localization
|
|
|
$.fn.bootstrapTable.locales['el-GR'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Φορτώνει, παρακαλώ περιμένετε'; // 正在加载,请稍候
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " \u03B1\u03C0\u03BF\u03C4\u03B5\u03BB\u03AD\u03C3\u03BC\u03B1\u03C4\u03B1 \u03B1\u03BD\u03AC \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1"); // 每页记录数
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
// 显示当前页面的记录,如果存在未过滤的总记录数,显示总记录数
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "\u0395\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03B1\u03C0\u03CC \u03C4\u03B7\u03BD ".concat(pageFrom, " \u03C9\u03C2 \u03C4\u03B7\u03BD ").concat(pageTo, " \u03B1\u03C0\u03CC \u03C3\u03CD\u03BD\u03BF\u03BB\u03BF ").concat(totalRows, " \u03C3\u03B5\u03B9\u03C1\u03CE\u03BD (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
return "\u0395\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03B1\u03C0\u03CC \u03C4\u03B7\u03BD ".concat(pageFrom, " \u03C9\u03C2 \u03C4\u03B7\u03BD ").concat(pageTo, " \u03B1\u03C0\u03CC \u03C3\u03CD\u03BD\u03BF\u03BB\u03BF ").concat(totalRows, " \u03C3\u03B5\u03B9\u03C1\u03CE\u03BD"); // 显示的记录范围
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page'; // 上一页
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page); // 跳转到页面
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page'; // 下一页
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows"); // 显示总记录数
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Clear Search'; // 清除搜索
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Αναζητήστε'; // 搜索
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Δεν βρέθηκαν αποτελέσματα'; // 没有找到匹配的记录
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Hide/Show pagination'; // 显示/隐藏分页
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination'; // 显示分页
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination'; // 隐藏分页
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Refresh'; // 刷新
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Toggle'; // 切换
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view'; // 显示卡片视图
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view'; // 隐藏卡片视图
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Columns'; // 列
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all'; // 切换所有列
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen'; // 全屏
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'All'; // 所有
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh'; // 自动刷新
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data'; // 导出数据
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO'; // 跳转
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search'; // 高级搜索
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close'; // 关闭
|
|
|
}
|
|
|
};
|
|
|
|
|
|
// Extending the default Bootstrap Table with Greek translation
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['el-GR']);
|
|
|
|
|
|
// English translation for Bootstrap Table localization
|
|
|
$.fn.bootstrapTable.locales['en-US'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Loading, please wait'; // 正在加载,请稍候
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " rows per page"); // 每页记录数
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
// 显示当前页面的记录
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Showing ".concat(pageFrom, " to ").concat(pageTo, " of ").concat(totalRows, " rows (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
return "Showing ".concat(pageFrom, " to ").concat(pageTo, " of ").concat(totalRows, " rows"); // 显示的记录范围
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page'; // 上一页
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page); // 跳转到页面
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page'; // 下一页
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows"); // 显示总记录数
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Clear Search'; // 清除搜索
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Search'; // 搜索
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'No matching records found'; // 没有找到匹配的记录
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Hide/Show pagination'; // 显示/隐藏分页
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination'; // 显示分页
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination'; // 隐藏分页
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Refresh'; // 刷新
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Toggle'; // 切换
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view'; // 显示卡片视图
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view'; // 隐藏卡片视图
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Columns'; // 列
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all'; // 切换所有列
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen'; // 全屏
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'All'; // 所有
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh'; // 自动刷新
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data'; // 导出数据
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO'; // 跳转
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search'; // 高级搜索
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close'; // 关闭
|
|
|
}
|
|
|
};
|
|
|
|
|
|
// Extending the default Bootstrap Table with English translation
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['en-US']);
|
|
|
|
|
|
/**
|
|
|
* Traducción de librería Bootstrap Table a Español (Chile)
|
|
|
* @author Brian Álvarez Azócar
|
|
|
* email brianalvarezazocar@gmail.com
|
|
|
*/
|
|
|
// Bootstrap Table Spanish (Chile) translation
|
|
|
// Author: Dennis Hernández (http://djhvscf.github.io/Blog/)
|
|
|
$.fn.bootstrapTable.locales['es-CL'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Cargando, espere por favor'; // 正在加载,请稍候
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " filas por p\xE1gina"); // 每页记录数
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
// 显示当前分页的记录范围
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Mostrando ".concat(pageFrom, " a ").concat(pageTo, " de ").concat(totalRows, " filas (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
return "Mostrando ".concat(pageFrom, " a ").concat(pageTo, " de ").concat(totalRows, " filas"); // 当前页记录范围
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page'; // 上一页
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page); // 跳转到页面
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page'; // 下一页
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows"); // 显示总记录数
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Limpiar búsqueda'; // 清除搜索
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Buscar'; // 搜索
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'No se encontraron registros'; // 未找到匹配记录
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return "Ocultar/Mostrar paginaci\xF3n"; // 显示/隐藏分页
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination'; // 显示分页
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination'; // 隐藏分页
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Refrescar'; // 刷新
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Cambiar'; // 切换
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view'; // 显示卡片视图
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view'; // 隐藏卡片视图
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Columnas'; // 列
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all'; // 切换所有列
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen'; // 全屏
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Todo'; // 所有
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh'; // 自动刷新
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data'; // 导出数据
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO'; // 跳转
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search'; // 高级搜索
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close'; // 关闭
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['es-CL']);
|
|
|
|
|
|
// Bootstrap Table Spanish (Costa Rica) translation
|
|
|
// Author: Dennis Hernández (http://djhvscf.github.io/Blog/)
|
|
|
$.fn.bootstrapTable.locales['es-CR'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Cargando, por favor espere'; // 正在加载,请稍候
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " registros por p\xE1gina"); // 每页记录数
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
// 显示当前分页的记录范围
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Mostrando de ".concat(pageFrom, " a ").concat(pageTo, " registros de ").concat(totalRows, " registros en total (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
return "Mostrando de ".concat(pageFrom, " a ").concat(pageTo, " registros de ").concat(totalRows, " registros en total"); // 当前页记录范围
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page'; // 上一页
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page); // 跳转到页面
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page'; // 下一页
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows"); // 显示总记录数
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Limpiar búsqueda'; // 清除搜索
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Buscar'; // 搜索
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'No se encontraron registros'; // 未找到匹配记录
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Hide/Show pagination'; // 显示/隐藏分页
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination'; // 显示分页
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination'; // 隐藏分页
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Refrescar'; // 刷新
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Alternar'; // 切换
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view'; // 显示卡片视图
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view'; // 隐藏卡片视图
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Columnas'; // 列
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all'; // 切换所有列
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen'; // 全屏
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Todo'; // 所有
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh'; // 自动刷新
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data'; // 导出数据
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO'; // 跳转
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search'; // 高级搜索
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close'; // 关闭
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['es-CR']);
|
|
|
|
|
|
// Bootstrap Table Spanish (Spain) translation
|
|
|
// Author: Marc Pina<iwalkalone69@gmail.com>
|
|
|
$.fn.bootstrapTable.locales['es-ES'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Por favor espere'; // 请稍候
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " resultados por p\xE1gina"); // 每页记录数
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
// 显示当前分页的记录范围
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Mostrando desde ".concat(pageFrom, " hasta ").concat(pageTo, " - En total ").concat(totalRows, " resultados (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
return "Mostrando desde ".concat(pageFrom, " hasta ").concat(pageTo, " - En total ").concat(totalRows, " resultados"); // 当前页记录范围
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page'; // 上一页
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page); // 跳转到页面
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page'; // 下一页
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows"); // 显示总记录数
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Limpiar búsqueda'; // 清除搜索
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Buscar'; // 搜索
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'No se encontraron resultados'; // 未找到匹配记录
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Ocultar/Mostrar paginación'; // 显示/隐藏分页
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination'; // 显示分页
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination'; // 隐藏分页
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Refrescar'; // 刷新
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Ocultar/Mostrar'; // 切换
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view'; // 显示卡片视图
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view'; // 隐藏卡片视图
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Columnas'; // 列
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all'; // 切换所有列
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen'; // 全屏
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Todos'; // 所有
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh'; // 自动刷新
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Exportar los datos'; // 导出数据
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO'; // 跳转
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Búsqueda avanzada'; // 高级搜索
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Cerrar'; // 关闭
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['es-ES']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Spanish (México) translation (Obtenido de traducción de Argentina)
|
|
|
* Author: Felix Vera (felix.vera@gmail.com)
|
|
|
* Copiado: Mauricio Vera (mauricioa.vera@gmail.com)
|
|
|
* Revisión: J Manuel Corona (jmcg92@gmail.com) (13/Feb/2018).
|
|
|
*/
|
|
|
// Bootstrap Table Spanish (Mexico) translation
|
|
|
$.fn.bootstrapTable.locales['es-MX'] = {
|
|
|
// 加载时显示的消息
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Cargando, espere por favor';
|
|
|
},
|
|
|
// 每页显示的记录数
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " registros por p\xE1gina");
|
|
|
},
|
|
|
// 显示当前页的记录范围
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Mostrando ".concat(pageFrom, " a ").concat(pageTo, " de ").concat(totalRows, " filas (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
return "Mostrando ".concat(pageFrom, " a ").concat(pageTo, " de ").concat(totalRows, " filas");
|
|
|
},
|
|
|
// 屏幕阅读器显示“上一页”文本
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page';
|
|
|
},
|
|
|
// 屏幕阅读器显示“跳转到第X页”文本
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page);
|
|
|
},
|
|
|
// 屏幕阅读器显示“下一页”文本
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page';
|
|
|
},
|
|
|
// 详细分页显示的文本
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Mostrando ".concat(totalRows, " filas");
|
|
|
},
|
|
|
// 清除搜索文本
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Limpiar búsqueda';
|
|
|
},
|
|
|
// 搜索框的提示文字
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Buscar';
|
|
|
},
|
|
|
// 没有匹配项时的提示文字
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'No se encontraron registros que coincidan';
|
|
|
},
|
|
|
// 切换分页的显示/隐藏
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Mostrar/ocultar paginación';
|
|
|
},
|
|
|
// 分页向下按钮的文本
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination';
|
|
|
},
|
|
|
// 分页向上按钮的文本
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination';
|
|
|
},
|
|
|
// 刷新按钮的文本
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Actualizar';
|
|
|
},
|
|
|
// 切换视图按钮的文本
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Cambiar vista';
|
|
|
},
|
|
|
// 显示卡片视图的文本
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view';
|
|
|
},
|
|
|
// 隐藏卡片视图的文本
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view';
|
|
|
},
|
|
|
// 列设置按钮的文本
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Columnas';
|
|
|
},
|
|
|
// 切换所有列显示的文本
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all';
|
|
|
},
|
|
|
// 全屏按钮的文本
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Pantalla completa';
|
|
|
},
|
|
|
// 显示所有记录的文本
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Todo';
|
|
|
},
|
|
|
// 自动刷新按钮的文本
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh';
|
|
|
},
|
|
|
// 导出数据按钮的文本
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data';
|
|
|
},
|
|
|
// 跳转到某一页的按钮文本
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO';
|
|
|
},
|
|
|
// 高级搜索按钮的文本
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search';
|
|
|
},
|
|
|
// 高级搜索关闭按钮的文本
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['es-MX']);
|
|
|
|
|
|
// Bootstrap Table Spanish (Nicaragua) translation
|
|
|
$.fn.bootstrapTable.locales['es-NI'] = {
|
|
|
// 与'formatear'等方法相似,作用相同,这里省略了注释,保持结构一致
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Cargando, por favor espere';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " registros por p\xE1gina");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Mostrando de ".concat(pageFrom, " a ").concat(pageTo, " registros de ").concat(totalRows, " registros en total (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
return "Mostrando de ".concat(pageFrom, " a ").concat(pageTo, " registros de ").concat(totalRows, " registros en total");
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Limpiar búsqueda';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Buscar';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'No se encontraron registros';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Hide/Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Refrescar';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Alternar';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Columnas';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Todo';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['es-NI']);
|
|
|
|
|
|
// Bootstrap Table Spanish (Spain) translation
|
|
|
$.fn.bootstrapTable.locales['es-SP'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Cargando, por favor espera';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " registros por página.");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "".concat(pageFrom, " - ").concat(pageTo, " de ").concat(totalRows, " registros (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
return "".concat(pageFrom, " - ").concat(pageTo, " de ").concat(totalRows, " registros.");
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Limpiar búsqueda';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Buscar';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'No se han encontrado registros.';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Hide/Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Actualizar';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Alternar';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Columnas';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Todo';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['es-SP']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Estonian translation
|
|
|
* Author: kristjan@logist.it>
|
|
|
*/
|
|
|
// Bootstrap Table Estonian (Estonia) translation
|
|
|
$.fn.bootstrapTable.locales['et-EE'] = {
|
|
|
// 显示加载信息
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Päring käib, palun oota'; // "请求正在进行,请稍等"
|
|
|
},
|
|
|
// 每页记录数的显示
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " rida lehe kohta"); // "每页显示 X 条记录"
|
|
|
},
|
|
|
// 显示当前页的记录范围
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "N\xE4itan tulemusi ".concat(pageFrom, " kuni ").concat(pageTo, " - kokku ").concat(totalRows, " tulemust (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
return "N\xE4itan tulemusi ".concat(pageFrom, " kuni ").concat(pageTo, " - kokku ").concat(totalRows, " tulemust");
|
|
|
},
|
|
|
// 屏幕阅读器显示“上一页”文本
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page';
|
|
|
},
|
|
|
// 屏幕阅读器显示“跳转到第X页”文本
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page); // "到第 X 页"
|
|
|
},
|
|
|
// 屏幕阅读器显示“下一页”文本
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page'; // "下一页"
|
|
|
},
|
|
|
// 分页详细信息显示的文本
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows"); // "显示 X 条记录"
|
|
|
},
|
|
|
// 清空搜索的按钮文本
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Clear Search'; // "清除搜索"
|
|
|
},
|
|
|
// 搜索框的提示文字
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Otsi'; // "搜索"
|
|
|
},
|
|
|
// 没有匹配项时的提示信息
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Päringu tingimustele ei vastanud ühtegi tulemust'; // "没有符合搜索条件的记录"
|
|
|
},
|
|
|
// 切换分页的显示/隐藏
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Näita/Peida lehtedeks jagamine'; // "显示/隐藏分页"
|
|
|
},
|
|
|
// 切换分页向下按钮的文本
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination'; // "显示分页"
|
|
|
},
|
|
|
// 切换分页向上按钮的文本
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination'; // "隐藏分页"
|
|
|
},
|
|
|
// 刷新按钮的文本
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Värskenda'; // "刷新"
|
|
|
},
|
|
|
// 切换视图按钮的文本
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Lülita'; // "切换"
|
|
|
},
|
|
|
// 显示卡片视图的文本
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view'; // "显示卡片视图"
|
|
|
},
|
|
|
// 隐藏卡片视图的文本
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view'; // "隐藏卡片视图"
|
|
|
},
|
|
|
// 列设置按钮的文本
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Veerud'; // "列"
|
|
|
},
|
|
|
// 切换所有列显示的文本
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all'; // "切换所有"
|
|
|
},
|
|
|
// 全屏按钮的文本
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen'; // "全屏"
|
|
|
},
|
|
|
// 显示所有记录的文本
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Kõik'; // "所有"
|
|
|
},
|
|
|
// 自动刷新按钮的文本
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh'; // "自动刷新"
|
|
|
},
|
|
|
// 导出数据按钮的文本
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data'; // "导出数据"
|
|
|
},
|
|
|
// 跳转到某一页的按钮文本
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO'; // "跳转"
|
|
|
},
|
|
|
// 高级搜索按钮的文本
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search'; // "高级搜索"
|
|
|
},
|
|
|
// 高级搜索关闭按钮的文本
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close'; // "关闭"
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['et-EE']);
|
|
|
|
|
|
// Bootstrap Table Basque (Basque Country) translation
|
|
|
$.fn.bootstrapTable.locales['eu-EU'] = {
|
|
|
// 显示加载信息
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Itxaron mesedez'; // "请稍等"
|
|
|
},
|
|
|
// 每页记录数的显示
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " emaitza orriko."); // "每页显示 X 条记录"
|
|
|
},
|
|
|
// 显示当前页的记录范围
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "".concat(totalRows, " erregistroetatik ").concat(pageFrom, "etik ").concat(pageTo, "erakoak erakusten (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
return "".concat(totalRows, " erregistroetatik ").concat(pageFrom, "etik ").concat(pageTo, "erakoak erakusten."); // "显示从 X 到 Y 条记录"
|
|
|
},
|
|
|
// 屏幕阅读器显示“上一页”文本
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page'; // "上一页"
|
|
|
},
|
|
|
// 屏幕阅读器显示“跳转到第X页”文本
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page); // "到第 X 页"
|
|
|
},
|
|
|
// 屏幕阅读器显示“下一页”文本
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page'; // "下一页"
|
|
|
},
|
|
|
// 分页详细信息显示的文本
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows"); // "显示 X 条记录"
|
|
|
},
|
|
|
// 清空搜索的按钮文本
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Clear Search'; // "清除搜索"
|
|
|
},
|
|
|
// 搜索框的提示文字
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Bilatu'; // "搜索"
|
|
|
},
|
|
|
// 没有匹配项时的提示信息
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Ez da emaitzarik aurkitu'; // "没有找到匹配的记录"
|
|
|
},
|
|
|
// 切换分页的显示/隐藏
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Ezkutatu/Erakutsi orrikatzea'; // "显示/隐藏分页"
|
|
|
},
|
|
|
// 切换分页向下按钮的文本
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination'; // "显示分页"
|
|
|
},
|
|
|
// 切换分页向上按钮的文本
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination'; // "隐藏分页"
|
|
|
},
|
|
|
// 刷新按钮的文本
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Eguneratu'; // "刷新"
|
|
|
},
|
|
|
// 切换视图按钮的文本
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Ezkutatu/Erakutsi'; // "切换"
|
|
|
},
|
|
|
// 显示卡片视图的文本
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view'; // "显示卡片视图"
|
|
|
},
|
|
|
// 隐藏卡片视图的文本
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view'; // "隐藏卡片视图"
|
|
|
},
|
|
|
// 列设置按钮的文本
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Zutabeak'; // "列"
|
|
|
},
|
|
|
// 切换所有列显示的文本
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all'; // "切换所有"
|
|
|
},
|
|
|
// 全屏按钮的文本
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen'; // "全屏"
|
|
|
},
|
|
|
// 显示所有记录的文本
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Guztiak'; // "所有"
|
|
|
},
|
|
|
// 自动刷新按钮的文本
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh'; // "自动刷新"
|
|
|
},
|
|
|
// 导出数据按钮的文本
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data'; // "导出数据"
|
|
|
},
|
|
|
// 跳转到某一页的按钮文本
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO'; // "跳转"
|
|
|
},
|
|
|
// 高级搜索按钮的文本
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search'; // "高级搜索"
|
|
|
},
|
|
|
// 高级搜索关闭按钮的文本
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close'; // "关闭"
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['eu-EU']);
|
|
|
|
|
|
// Bootstrap Table Persian (Iran) translation
|
|
|
$.fn.bootstrapTable.locales['fa-IR'] = {
|
|
|
// 显示加载信息
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'در حال بارگذاری, لطفا صبر کنید'; // "正在加载,请稍等"
|
|
|
},
|
|
|
// 每页记录数的显示
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " \u0631\u06A9\u0648\u0631\u062F \u062F\u0631 \u0635\u0641\u062D\u0647"); // "每页 X 条记录"
|
|
|
},
|
|
|
// 显示当前页的记录范围
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "\u0646\u0645\u0627\u06CC\u0634 ".concat(pageFrom, " \u062A\u0627 ").concat(pageTo, " \u0627\u0632 ").concat(totalRows, " \u0631\u062F\u06CC\u0641 (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
return "\u0646\u0645\u0627\u06CC\u0634 ".concat(pageFrom, " \u062A\u0627 ").concat(pageTo, " \u0627\u0632 ").concat(totalRows, " \u0631\u062F\u06CC\u0641"); // "显示从 X 到 Y 条记录"
|
|
|
},
|
|
|
// 屏幕阅读器显示“上一页”文本
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page'; // "上一页"
|
|
|
},
|
|
|
// 屏幕阅读器显示“跳转到第X页”文本
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page); // "到第 X 页"
|
|
|
},
|
|
|
// 屏幕阅读器显示“下一页”文本
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page'; // "下一页"
|
|
|
},
|
|
|
// 分页详细信息显示的文本
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows"); // "显示 X 条记录"
|
|
|
},
|
|
|
// 清空搜索的按钮文本
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Clear Search'; // "清除搜索"
|
|
|
},
|
|
|
// 搜索框的提示文字
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'جستجو'; // "搜索"
|
|
|
},
|
|
|
// 没有匹配项时的提示信息
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'رکوردی یافت نشد.'; // "未找到记录"
|
|
|
},
|
|
|
// 切换分页的显示/隐藏
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'نمایش/مخفی صفحه بندی'; // "显示/隐藏分页"
|
|
|
},
|
|
|
// 切换分页向下按钮的文本
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination'; // "显示分页"
|
|
|
},
|
|
|
// 切换分页向上按钮的文本
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination'; // "隐藏分页"
|
|
|
},
|
|
|
// 刷新按钮的文本
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'به روز رسانی'; // "刷新"
|
|
|
},
|
|
|
// 切换视图按钮的文本
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'تغییر نمایش'; // "切换视图"
|
|
|
},
|
|
|
// 显示卡片视图的文本
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view'; // "显示卡片视图"
|
|
|
},
|
|
|
// 隐藏卡片视图的文本
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view'; // "隐藏卡片视图"
|
|
|
},
|
|
|
// 列设置按钮的文本
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'سطر ها'; // "列"
|
|
|
},
|
|
|
// 切换所有列显示的文本
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all'; // "切换所有"
|
|
|
},
|
|
|
// 全屏按钮的文本
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen'; // "全屏"
|
|
|
},
|
|
|
// 显示所有记录的文本
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'همه'; // "所有"
|
|
|
},
|
|
|
// 自动刷新按钮的文本
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh'; // "自动刷新"
|
|
|
},
|
|
|
// 导出数据按钮的文本
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data'; // "导出数据"
|
|
|
},
|
|
|
// 跳转到某一页的按钮文本
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO'; // "跳转"
|
|
|
},
|
|
|
// 高级搜索按钮的文本
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search'; // "高级搜索"
|
|
|
},
|
|
|
// 高级搜索关闭按钮的文本
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close'; // "关闭"
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['fa-IR']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Finnish translations
|
|
|
* Author: Minna Lehtomäki <minna.j.lehtomaki@gmail.com>
|
|
|
*/
|
|
|
$.fn.bootstrapTable.locales['fi-FI'] = {
|
|
|
// 显示加载信息
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Ladataan, ole hyvä ja odota'; // "正在加载,请稍等"
|
|
|
},
|
|
|
// 每页记录数显示文本
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " riviä sivulla"); // "每页 X 条记录"
|
|
|
},
|
|
|
// 显示当前记录范围文本
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Näytetään rivit ".concat(pageFrom, " - ").concat(pageTo, " / ").concat(totalRows, " (filtered from ").concat(totalNotFiltered, " total rows)"); // "显示从 X 到 Y 条记录"
|
|
|
}
|
|
|
return "Näytetään rivit ".concat(pageFrom, " - ").concat(pageTo, " / ").concat(totalRows); // "显示从 X 到 Y 条记录"
|
|
|
},
|
|
|
// 屏幕阅读器“上一页”按钮文本
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page'; // "上一页"
|
|
|
},
|
|
|
// 屏幕阅读器“跳转到第X页”按钮文本
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page); // "到第 X 页"
|
|
|
},
|
|
|
// 屏幕阅读器“下一页”按钮文本
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page'; // "下一页"
|
|
|
},
|
|
|
// 分页详细信息文本
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows"); // "显示 X 条记录"
|
|
|
},
|
|
|
// 清空搜索按钮文本
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Poista suodattimet'; // "清除搜索"
|
|
|
},
|
|
|
// 搜索框提示文本
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Hae'; // "搜索"
|
|
|
},
|
|
|
// 没有匹配项时的提示文本
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Hakuehtoja vastaavia tuloksia ei löytynyt'; // "未找到记录"
|
|
|
},
|
|
|
// 切换分页显示/隐藏的文本
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Näytä/Piilota sivutus'; // "显示/隐藏分页"
|
|
|
},
|
|
|
// 显示分页的文本
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination'; // "显示分页"
|
|
|
},
|
|
|
// 隐藏分页的文本
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination'; // "隐藏分页"
|
|
|
},
|
|
|
// 刷新按钮文本
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Päivitä'; // "刷新"
|
|
|
},
|
|
|
// 切换视图按钮文本
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Valitse'; // "选择"
|
|
|
},
|
|
|
// 显示卡片视图的文本
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view'; // "显示卡片视图"
|
|
|
},
|
|
|
// 隐藏卡片视图的文本
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view'; // "隐藏卡片视图"
|
|
|
},
|
|
|
// 列设置按钮文本
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Sarakkeet'; // "列"
|
|
|
},
|
|
|
// 切换所有列的显示文本
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all'; // "切换所有"
|
|
|
},
|
|
|
// 全屏按钮文本
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen'; // "全屏"
|
|
|
},
|
|
|
// 显示所有记录的文本
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Kaikki'; // "所有"
|
|
|
},
|
|
|
// 自动刷新按钮文本
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh'; // "自动刷新"
|
|
|
},
|
|
|
// 导出数据按钮文本
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Vie tiedot'; // "导出数据"
|
|
|
},
|
|
|
// 跳转到某一页按钮文本
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO'; // "跳转"
|
|
|
},
|
|
|
// 高级搜索按钮文本
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search'; // "高级搜索"
|
|
|
},
|
|
|
// 高级搜索关闭按钮文本
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close'; // "关闭"
|
|
|
}
|
|
|
};
|
|
|
|
|
|
$.fn.bootstrapTable.locales['fr-BE'] = {
|
|
|
// 显示加载信息
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Chargement en cours'; // "正在加载"
|
|
|
},
|
|
|
// 每页记录数显示文本
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " lignes par page"); // "每页 X 条记录"
|
|
|
},
|
|
|
// 显示当前记录范围文本
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Affiche de ".concat(pageFrom, " à ").concat(pageTo, " sur ").concat(totalRows, " lignes (filtrés à partir de ").concat(totalNotFiltered, " lignes)"); // "显示从 X 到 Y 条记录"
|
|
|
}
|
|
|
return "Affiche de ".concat(pageFrom, " à ").concat(pageTo, " sur ").concat(totalRows, " lignes"); // "显示从 X 到 Y 条记录"
|
|
|
},
|
|
|
// 屏幕阅读器“上一页”按钮文本
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'page précédente'; // "上一页"
|
|
|
},
|
|
|
// 屏幕阅读器“跳转到第X页”按钮文本
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "vers la page ".concat(page); // "到第 X 页"
|
|
|
},
|
|
|
// 屏幕阅读器“下一页”按钮文本
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'page suivante'; // "下一页"
|
|
|
},
|
|
|
// 分页详细信息文本
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Affiche ".concat(totalRows, " lignes"); // "显示 X 条记录"
|
|
|
},
|
|
|
// 清空搜索按钮文本
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Effacer la recherche'; // "清除搜索"
|
|
|
},
|
|
|
// 搜索框提示文本
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Recherche'; // "搜索"
|
|
|
},
|
|
|
// 没有匹配项时的提示文本
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Pas de lignes trouvés'; // "未找到记录"
|
|
|
},
|
|
|
// 切换分页显示/隐藏的文本
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Cacher/Afficher pagination'; // "显示/隐藏分页"
|
|
|
},
|
|
|
// 显示分页的文本
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Afficher pagination'; // "显示分页"
|
|
|
},
|
|
|
// 隐藏分页的文本
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Cacher pagination'; // "隐藏分页"
|
|
|
},
|
|
|
// 刷新按钮文本
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Rafraichir'; // "刷新"
|
|
|
},
|
|
|
// 切换视图按钮文本
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Basculer'; // "切换"
|
|
|
},
|
|
|
// 显示卡片视图的文本
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Afficher vue carte'; // "显示卡片视图"
|
|
|
},
|
|
|
// 隐藏卡片视图的文本
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Cacher vue carte'; // "隐藏卡片视图"
|
|
|
},
|
|
|
// 列设置按钮文本
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Colonnes'; // "列"
|
|
|
},
|
|
|
// 切换所有列的显示文本
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Tout basculer'; // "切换所有"
|
|
|
},
|
|
|
// 全屏按钮文本
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Plein écran'; // "全屏"
|
|
|
},
|
|
|
// 显示所有记录的文本
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Tout'; // "所有"
|
|
|
},
|
|
|
// 自动刷新按钮文本
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Rafraîchissement automatique'; // "自动刷新"
|
|
|
},
|
|
|
// 导出数据按钮文本
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Exporter les données'; // "导出数据"
|
|
|
},
|
|
|
// 跳转到某一页按钮文本
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'Aller à'; // "跳转"
|
|
|
},
|
|
|
// 高级搜索按钮文本
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Recherche avancée'; // "高级搜索"
|
|
|
},
|
|
|
// 高级搜索关闭按钮文本
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Fermer'; // "关闭"
|
|
|
}
|
|
|
};
|
|
|
|
|
|
$.fn.bootstrapTable.locales['fr-CH'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Chargement en cours'; // "正在加载"
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " lignes par page"); // "每页 X 条记录"
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Affiche de ".concat(pageFrom, " à ").concat(pageTo, " sur ").concat(totalRows, " lignes (filtrés à partir de ").concat(totalNotFiltered, " lignes)"); // "显示从 X 到 Y 条记录"
|
|
|
}
|
|
|
return "Affiche de ".concat(pageFrom, " à ").concat(pageTo, " sur ").concat(totalRows, " lignes"); // "显示从 X 到 Y 条记录"
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'page précédente'; // "上一页"
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "vers la page ".concat(page); // "到第 X 页"
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'page suivante'; // "下一页"
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Affiche ".concat(totalRows, " lignes"); // "显示 X 条记录"
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Effacer la recherche'; // "清除搜索"
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Recherche'; // "搜索"
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Pas de lignes trouvés'; // "未找到记录"
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Cacher/Afficher pagination'; // "显示/隐藏分页"
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Afficher pagination'; // "显示分页"
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Cacher pagination'; // "隐藏分页"
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Rafraichir'; // "刷新"
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Basculer'; // "切换"
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Afficher vue carte'; // "显示卡片视图"
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Cacher vue carte'; // "隐藏卡片视图"
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Colonnes'; // "列"
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Tout basculer'; // "切换所有"
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Plein écran'; // "全屏"
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Tout'; // "所有"
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Rafraîchissement automatique'; // "自动刷新"
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Exporter les données'; // "导出数据"
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'Aller à'; // "跳转"
|
|
|
},
|
|
|
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Recherche avancée'; // "高级搜索"
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Fermer'; // "关闭"
|
|
|
}
|
|
|
};
|
|
|
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table French (France) translation
|
|
|
* Author: Dennis Hernández (http://djhvscf.github.io/Blog/)
|
|
|
* Tidalf (https://github.com/TidalfFR)
|
|
|
* Nevets82 <Nevets82@gmail.com>
|
|
|
*/
|
|
|
|
|
|
|
|
|
$.fn.bootstrapTable.locales['fr-FR'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Chargement en cours';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " lignes par page");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Affiche de ".concat(pageFrom, " \xE0 ").concat(pageTo, " sur ").concat(totalRows, " lignes (filtr\xE9s \xE0 partir de ").concat(totalNotFiltered, " lignes)");
|
|
|
}
|
|
|
|
|
|
return "Affiche de ".concat(pageFrom, " \xE0 ").concat(pageTo, " sur ").concat(totalRows, " lignes");
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'page précédente';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "vers la page ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'page suivante';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Affiche ".concat(totalRows, " lignes");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Effacer la recherche';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Recherche';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Aucun résultat';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Cacher/Afficher pagination';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Afficher pagination';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Cacher pagination';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Rafraichir';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Basculer';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Afficher vue carte';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Cacher vue carte';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Colonnes';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Tout basculer';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Plein écran';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Tout';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Rafraîchissement automatique';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Exporter les données';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'Aller à';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Recherche avancée';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Fermer';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['fr-FR']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table French (Luxembourg) translation
|
|
|
* Author: Nevets82 <Nevets82@gmail.com>
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['fr-LU'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Chargement en cours';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " lignes par page");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Affiche de ".concat(pageFrom, " \xE0 ").concat(pageTo, " sur ").concat(totalRows, " lignes (filtr\xE9s \xE0 partir de ").concat(totalNotFiltered, " lignes)");
|
|
|
}
|
|
|
|
|
|
return "Affiche de ".concat(pageFrom, " \xE0 ").concat(pageTo, " sur ").concat(totalRows, " lignes");
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'page précédente';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "vers la page ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'page suivante';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Affiche ".concat(totalRows, " lignes");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Effacer la recherche';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Recherche';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Pas de lignes trouvés';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Cacher/Afficher pagination';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Afficher pagination';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Cacher pagination';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Rafraichir';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Basculer';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Afficher vue carte';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Cacher vue carte';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Colonnes';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Tout basculer';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Plein écran';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Tout';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Rafraîchissement automatique';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Exporter les données';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'Aller à';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Recherche avancée';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Fermer';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['fr-LU']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Hebrew translation
|
|
|
* Author: legshooter
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['he-IL'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'טוען, נא להמתין';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " \u05E9\u05D5\u05E8\u05D5\u05EA \u05D1\u05E2\u05DE\u05D5\u05D3");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "\u05DE\u05E6\u05D9\u05D2 ".concat(pageFrom, " \u05E2\u05D3 ").concat(pageTo, " \u05DE-").concat(totalRows, "\u05E9\u05D5\u05E8\u05D5\u05EA").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
|
|
|
return "\u05DE\u05E6\u05D9\u05D2 ".concat(pageFrom, " \u05E2\u05D3 ").concat(pageTo, " \u05DE-").concat(totalRows, " \u05E9\u05D5\u05E8\u05D5\u05EA");
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Clear Search';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'חיפוש';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'לא נמצאו רשומות תואמות';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'הסתר/הצג מספור דפים';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'רענן';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'החלף תצוגה';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'עמודות';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'הכל';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['he-IL']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Croatian translation
|
|
|
* Author: Petra Štrbenac (petra.strbenac@gmail.com)
|
|
|
* Author: Petra Štrbenac (petra.strbenac@gmail.com)
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['hr-HR'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Molimo pričekajte';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " broj zapisa po stranici");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Prikazujem ".concat(pageFrom, ". - ").concat(pageTo, ". od ukupnog broja zapisa ").concat(totalRows, " (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
|
|
|
return "Prikazujem ".concat(pageFrom, ". - ").concat(pageTo, ". od ukupnog broja zapisa ").concat(totalRows);
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Clear Search';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Pretraži';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Nije pronađen niti jedan zapis';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Prikaži/sakrij stranice';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Osvježi';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Promijeni prikaz';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Kolone';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Sve';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['hr-HR']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Hungarian translation
|
|
|
* Author: Nagy Gergely <info@nagygergely.eu>
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['hu-HU'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Betöltés, kérem várjon';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " rekord per oldal");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Megjelen\xEDtve ".concat(pageFrom, " - ").concat(pageTo, " / ").concat(totalRows, " \xF6sszesen (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
|
|
|
return "Megjelen\xEDtve ".concat(pageFrom, " - ").concat(pageTo, " / ").concat(totalRows, " \xF6sszesen");
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Clear Search';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Keresés';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Nincs találat';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Lapozó elrejtése/megjelenítése';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Frissítés';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Összecsuk/Kinyit';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Oszlopok';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Összes';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['hu-HU']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Indonesian translation
|
|
|
* Author: Andre Gardiner<andre@sirdre.com>
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['id-ID'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Memuat, mohon tunggu';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " baris per halaman");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Menampilkan ".concat(pageFrom, " sampai ").concat(pageTo, " dari ").concat(totalRows, " baris (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
|
|
|
return "Menampilkan ".concat(pageFrom, " sampai ").concat(pageTo, " dari ").concat(totalRows, " baris");
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Bersihkan filter';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Pencarian';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Tidak ditemukan data yang cocok';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Sembunyikan/Tampilkan halaman';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Muat ulang';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Beralih';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'kolom';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Semua';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Ekspor data';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['id-ID']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Italian translation
|
|
|
* Author: Davide Renzi<davide.renzi@gmail.com>
|
|
|
* Author: Davide Borsatto <davide.borsatto@gmail.com>
|
|
|
* Author: Alessio Felicioni <alessio.felicioni@gmail.com>
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['it-IT'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Caricamento in corso';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " elementi per pagina");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Visualizzazione da ".concat(pageFrom, " a ").concat(pageTo, " di ").concat(totalRows, " elementi (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
|
|
|
return "Visualizzazione da ".concat(pageFrom, " a ").concat(pageTo, " di ").concat(totalRows, " elementi");
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Pulisci filtri';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Cerca';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Nessun elemento trovato';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Nascondi/Mostra paginazione';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Aggiorna';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Attiva/Disattiva';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Colonne';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Tutto';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Esporta dati';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['it-IT']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Japanese translation
|
|
|
* Author: Azamshul Azizy <azamshul@gmail.com>
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['ja-JP'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return '読み込み中です。少々お待ちください。';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "\u30DA\u30FC\u30B8\u5F53\u305F\u308A\u6700\u5927".concat(pageNumber, "\u4EF6");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "\u5168".concat(totalRows, "\u4EF6\u304B\u3089\u3001").concat(pageFrom, "\u304B\u3089").concat(pageTo, "\u4EF6\u76EE\u307E\u3067\u8868\u793A\u3057\u3066\u3044\u307E\u3059 (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
|
|
|
return "\u5168".concat(totalRows, "\u4EF6\u304B\u3089\u3001").concat(pageFrom, "\u304B\u3089").concat(pageTo, "\u4EF6\u76EE\u307E\u3067\u8868\u793A\u3057\u3066\u3044\u307E\u3059");
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Clear Search';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return '検索';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return '該当するレコードが見つかりません';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'ページ数を表示・非表示';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return '更新';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'トグル';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return '列';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'すべて';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['ja-JP']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Georgian translation
|
|
|
* Author: Levan Lotuashvili <l.lotuashvili@gmail.com>
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['ka-GE'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'იტვირთება, გთხოვთ მოიცადოთ';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " \u10E9\u10D0\u10DC\u10D0\u10EC\u10D4\u10E0\u10D8 \u10D7\u10D8\u10D7\u10DD \u10D2\u10D5\u10D4\u10E0\u10D3\u10D6\u10D4");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "\u10DC\u10D0\u10E9\u10D5\u10D4\u10DC\u10D4\u10D1\u10D8\u10D0 ".concat(pageFrom, "-\u10D3\u10D0\u10DC ").concat(pageTo, "-\u10DB\u10D3\u10D4 \u10E9\u10D0\u10DC\u10D0\u10EC\u10D4\u10E0\u10D8 \u10EF\u10D0\u10DB\u10E3\u10E0\u10D8 ").concat(totalRows, "-\u10D3\u10D0\u10DC (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
|
|
|
return "\u10DC\u10D0\u10E9\u10D5\u10D4\u10DC\u10D4\u10D1\u10D8\u10D0 ".concat(pageFrom, "-\u10D3\u10D0\u10DC ").concat(pageTo, "-\u10DB\u10D3\u10D4 \u10E9\u10D0\u10DC\u10D0\u10EC\u10D4\u10E0\u10D8 \u10EF\u10D0\u10DB\u10E3\u10E0\u10D8 ").concat(totalRows, "-\u10D3\u10D0\u10DC");
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Clear Search';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'ძებნა';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'მონაცემები არ არის';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'გვერდების გადამრთველის დამალვა/გამოჩენა';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'განახლება';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'ჩართვა/გამორთვა';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'სვეტები';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'All';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['ka-GE']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Korean translation
|
|
|
* Author: Yi Tae-Hyeong (jsonobject@gmail.com)
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['ko-KR'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return '데이터를 불러오는 중입니다';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "\uD398\uC774\uC9C0 \uB2F9 ".concat(pageNumber, "\uAC1C \uB370\uC774\uD130 \uCD9C\uB825");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "\uC804\uCCB4 ".concat(totalRows, "\uAC1C \uC911 ").concat(pageFrom, "~").concat(pageTo, "\uBC88\uC9F8 \uB370\uC774\uD130 \uCD9C\uB825, (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
|
|
|
return "\uC804\uCCB4 ".concat(totalRows, "\uAC1C \uC911 ").concat(pageFrom, "~").concat(pageTo, "\uBC88\uC9F8 \uB370\uC774\uD130 \uCD9C\uB825,");
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Clear Search';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return '검색';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return '조회된 데이터가 없습니다.';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Hide/Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return '새로 고침';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return '전환';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return '컬럼 필터링';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'All';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['ko-KR']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Malay translation
|
|
|
* Author: Azamshul Azizy <azamshul@gmail.com>
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['ms-MY'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Permintaan sedang dimuatkan. Sila tunggu sebentar';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " rekod setiap muka surat");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Sedang memaparkan rekod ".concat(pageFrom, " hingga ").concat(pageTo, " daripada jumlah ").concat(totalRows, " rekod (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
|
|
|
return "Sedang memaparkan rekod ".concat(pageFrom, " hingga ").concat(pageTo, " daripada jumlah ").concat(totalRows, " rekod");
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Clear Search';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Cari';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Tiada rekod yang menyamai permintaan';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Tunjuk/sembunyi muka surat';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Muatsemula';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Tukar';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Lajur';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Semua';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['ms-MY']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table norwegian translation
|
|
|
* Author: Jim Nordbø, jim@nordb.no
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['nb-NO'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Oppdaterer, vennligst vent';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " poster pr side");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Viser ".concat(pageFrom, " til ").concat(pageTo, " av ").concat(totalRows, " rekker (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
|
|
|
return "Viser ".concat(pageFrom, " til ").concat(pageTo, " av ").concat(totalRows, " rekker");
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Clear Search';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Søk';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Ingen poster funnet';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Hide/Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Oppdater';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Endre';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Kolonner';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'All';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['nb-NO']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Dutch (Belgi<67>) translation
|
|
|
* Author: Nevets82 <Nevets82@gmail.com>
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['nl-BE'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Laden, even geduld';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " records per pagina");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Toon ".concat(pageFrom, " tot ").concat(pageTo, " van ").concat(totalRows, " record").concat(totalRows > 1 ? 's' : '', " (gefilterd van ").concat(totalNotFiltered, " records in totaal)");
|
|
|
}
|
|
|
|
|
|
return "Toon ".concat(pageFrom, " tot ").concat(pageTo, " van ").concat(totalRows, " record").concat(totalRows > 1 ? 's' : '');
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'vorige pagina';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "tot pagina ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'volgende pagina';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Toon ".concat(totalRows, " record").concat(totalRows > 1 ? 's' : '');
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Verwijder filters';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Zoeken';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Geen resultaten gevonden';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Verberg/Toon paginering';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Toon paginering';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Verberg paginering';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Vernieuwen';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Omschakelen';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Toon kaartweergave';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Verberg kaartweergave';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Kolommen';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Allen omschakelen';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Volledig scherm';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Alle';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Automatisch vernieuwen';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Exporteer gegevens';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GA';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Geavanceerd zoeken';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Sluiten';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['nl-BE']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Dutch (Nederland) translation
|
|
|
* Author: Your Name <info@a2hankes.nl>
|
|
|
* Nevets82 <Nevets82@gmail.com>
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['nl-NL'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Laden, even geduld';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " records per pagina");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Toon ".concat(pageFrom, " tot ").concat(pageTo, " van ").concat(totalRows, " record").concat(totalRows > 1 ? 's' : '', " (gefilterd van ").concat(totalNotFiltered, " records in totaal)");
|
|
|
}
|
|
|
|
|
|
return "Toon ".concat(pageFrom, " tot ").concat(pageTo, " van ").concat(totalRows, " record").concat(totalRows > 1 ? 's' : '');
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'vorige pagina';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "tot pagina ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'volgende pagina';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Toon ".concat(totalRows, " record").concat(totalRows > 1 ? 's' : '');
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Verwijder filters';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Zoeken';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Geen resultaten gevonden';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Verberg/Toon paginering';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Toon paginering';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Verberg paginering';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Vernieuwen';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Omschakelen';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Toon kaartweergave';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Verberg kaartweergave';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Kolommen';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Allen omschakelen';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Volledig scherm';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Alle';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Automatisch vernieuwen';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Exporteer gegevens';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GA';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Geavanceerd zoeken';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Sluiten';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['nl-NL']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Polish translation
|
|
|
* Author: zergu <michal.zagdan @ gmail com>
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['pl-PL'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Ładowanie, proszę czekać';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " rekord\xF3w na stron\u0119");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Wy\u015Bwietlanie rekord\xF3w od ".concat(pageFrom, " do ").concat(pageTo, " z ").concat(totalRows, " (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
|
|
|
return "Wy\u015Bwietlanie rekord\xF3w od ".concat(pageFrom, " do ").concat(pageTo, " z ").concat(totalRows);
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Clear Search';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Szukaj';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Niestety, nic nie znaleziono';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Hide/Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Odśwież';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Przełącz';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Kolumny';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'All';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['pl-PL']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Brazilian Portuguese Translation
|
|
|
* Author: Eduardo Cerqueira<egcerqueira@gmail.com>
|
|
|
* Update: João Mello<jmello@hotmail.com.br>
|
|
|
* Update: Leandro Felizari<lfelizari@gmail.com>
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['pt-BR'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Carregando, aguarde';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " registros por p\xE1gina");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Exibindo ".concat(pageFrom, " at\xE9 ").concat(pageTo, " de ").concat(totalRows, " linhas (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
|
|
|
return "Exibindo ".concat(pageFrom, " at\xE9 ").concat(pageTo, " de ").concat(totalRows, " linhas");
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'página anterior';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "Para a p\xE1gina ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'próxima página';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Mostrando ".concat(totalRows, " linhas");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Limpar Pesquisa';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Pesquisar';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Nenhum registro encontrado';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Ocultar/Exibir paginação';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Mostrar Paginação';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Esconder Paginação';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Recarregar';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Alternar';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Colunas';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Tela cheia';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Tudo';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Atualização Automática';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Exportar dados';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'IR';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Pesquisa Avançada';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Fechar';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['pt-BR']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Portuguese Portugal Translation
|
|
|
* Author: Burnspirit<burnspirit@gmail.com>
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['pt-PT'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'A carregar, por favor aguarde';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " registos por página");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "A mostrar ".concat(pageFrom, " até ").concat(pageTo, " de ").concat(totalRows, " linhas (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
|
|
|
return "A mostrar ".concat(pageFrom, " até ").concat(pageTo, " de ").concat(totalRows, " linhas");
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Clear Search';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Pesquisa';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Nenhum registo encontrado';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Esconder/Mostrar paginação';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Atualizar';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Alternar';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Colunas';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Tudo';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['pt-PT']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Romanian translation
|
|
|
* Author: cristake <cristianiosif@me.com>
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['ro-RO'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Se incarca, va rugam asteptati';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " inregistrari pe pagina");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Arata de la ".concat(pageFrom, " pana la ").concat(pageTo, " din ").concat(totalRows, " randuri (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
|
|
|
return "Arata de la ".concat(pageFrom, " pana la ").concat(pageTo, " din ").concat(totalRows, " randuri");
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Clear Search';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Cauta';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Nu au fost gasite inregistrari';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Ascunde/Arata paginatia';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Reincarca';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Comuta';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Coloane';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Toate';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['ro-RO']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Russian translation
|
|
|
* Author: Dunaevsky Maxim <dunmaksim@yandex.ru>
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['ru-RU'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Пожалуйста, подождите, идёт загрузка';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " \u0437\u0430\u043F\u0438\u0441\u0435\u0439 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0443");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "\u0417\u0430\u043F\u0438\u0441\u0438 \u0441 ".concat(pageFrom, " \u043F\u043E ").concat(pageTo, " \u0438\u0437 ").concat(totalRows, " (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
|
|
|
return "\u0417\u0430\u043F\u0438\u0441\u0438 \u0441 ".concat(pageFrom, " \u043F\u043E ").concat(pageTo, " \u0438\u0437 ").concat(totalRows);
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Очистить фильтры';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Поиск';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Ничего не найдено';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Hide/Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Обновить';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Переключить';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Колонки';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'All';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['ru-RU']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Slovak translation
|
|
|
* Author: Jozef Dúc<jozef.d13@gmail.com>
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['sk-SK'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Prosím čakajte';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " z\xE1znamov na stranu");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Zobrazen\xE1 ".concat(pageFrom, ". - ").concat(pageTo, ". polo\u017Eka z celkov\xFDch ").concat(totalRows, " (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
|
|
|
return "Zobrazen\xE1 ".concat(pageFrom, ". - ").concat(pageTo, ". polo\u017Eka z celkov\xFDch ").concat(totalRows);
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Odstráň filtre';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Vyhľadávanie';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Nenájdená žiadna vyhovujúca položka';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Skry/Zobraz stránkovanie';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Obnoviť';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Prepni';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Stĺpce';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Všetky';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Exportuj dáta';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['sk-SK']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Serbian Cyrilic RS translation
|
|
|
* Author: Vladimir Kanazir (vladimir@kanazir.com)
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['sr-Cyrl-RS'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Молим сачекај';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " \u0440\u0435\u0434\u043E\u0432\u0430 \u043F\u043E \u0441\u0442\u0440\u0430\u043D\u0438");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "\u041F\u0440\u0438\u043A\u0430\u0437\u0430\u043D\u043E ".concat(pageFrom, ". - ").concat(pageTo, ". \u043E\u0434 \u0443\u043A\u0443\u043F\u043D\u043E\u0433 \u0431\u0440\u043E\u0458\u0430 \u0440\u0435\u0434\u043E\u0432\u0430 ").concat(totalRows, " (\u0444\u0438\u043B\u0442\u0440\u0438\u0440\u0430\u043D\u043E \u043E\u0434 ").concat(totalNotFiltered, ")");
|
|
|
}
|
|
|
|
|
|
return "\u041F\u0440\u0438\u043A\u0430\u0437\u0430\u043D\u043E ".concat(pageFrom, ". - ").concat(pageTo, ". \u043E\u0434 \u0443\u043A\u0443\u043F\u043D\u043E\u0433 \u0431\u0440\u043E\u0458\u0430 \u0440\u0435\u0434\u043E\u0432\u0430 ").concat(totalRows);
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'претходна страна';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "\u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0443 ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'следећа страна';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "\u041F\u0440\u0438\u043A\u0430\u0437\u0430\u043D\u043E ".concat(totalRows, " \u0440\u0435\u0434\u043E\u0432\u0430");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Обриши претрагу';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Пронађи';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Није пронађен ни један податак';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Прикажи/сакриј пагинацију';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Прикажи пагинацију';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Сакриј пагинацију';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Освежи';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Промени приказ';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Прикажи картице';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Сакриј картице';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Колоне';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Прикажи/сакриј све';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Цео екран';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Све';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Аутоматско освежавање';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Извези податке';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'Иди';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Напредна претрага';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Затвори';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['sr-Cyrl-RS']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Serbian Latin RS translation
|
|
|
* Author: Vladimir Kanazir (vladimir@kanazir.com)
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['sr-Latn-RS'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Molim sačekaj';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " redova po strani");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Prikazano ".concat(pageFrom, ". - ").concat(pageTo, ". od ukupnog broja redova ").concat(totalRows, " (filtrirano od ").concat(totalNotFiltered, ")");
|
|
|
}
|
|
|
|
|
|
return "Prikazano ".concat(pageFrom, ". - ").concat(pageTo, ". od ukupnog broja redova ").concat(totalRows);
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'prethodna strana';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "na stranu ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'sledeća strana';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Prikazano ".concat(totalRows, " redova");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Obriši pretragu';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Pronađi';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Nije pronađen ni jedan podatak';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Prikaži/sakrij paginaciju';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Prikaži paginaciju';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Sakrij paginaciju';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Osveži';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Promeni prikaz';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Prikaži kartice';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Sakrij kartice';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Kolone';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Prikaži/sakrij sve';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Ceo ekran';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Sve';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Automatsko osvežavanje';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Izvezi podatke';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'Idi';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Napredna pretraga';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Zatvori';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['sr-Latn-RS']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Swedish translation
|
|
|
* Author: C Bratt <bratt@inix.se>
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['sv-SE'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Laddar, vänligen vänta';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " rader per sida");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Visa ".concat(pageFrom, " till ").concat(pageTo, " av ").concat(totalRows, " rader (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
|
|
|
return "Visa ".concat(pageFrom, " till ").concat(pageTo, " av ").concat(totalRows, " rader");
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Clear Search';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Sök';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Inga matchande resultat funna.';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Hide/Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Uppdatera';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Skifta';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'kolumn';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'All';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['sv-SE']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Thai translation
|
|
|
* Author: Monchai S.<monchais@gmail.com>
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['th-TH'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'กำลังโหลดข้อมูล, กรุณารอสักครู่';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " \u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E15\u0E48\u0E2D\u0E2B\u0E19\u0E49\u0E32");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E17\u0E35\u0E48 ".concat(pageFrom, " \u0E16\u0E36\u0E07 ").concat(pageTo, " \u0E08\u0E32\u0E01\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14 ").concat(totalRows, " \u0E23\u0E32\u0E22\u0E01\u0E32\u0E23 (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
|
|
|
return "\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E17\u0E35\u0E48 ".concat(pageFrom, " \u0E16\u0E36\u0E07 ").concat(pageTo, " \u0E08\u0E32\u0E01\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14 ").concat(totalRows, " \u0E23\u0E32\u0E22\u0E01\u0E32\u0E23");
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Clear Search';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'ค้นหา';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'ไม่พบรายการที่ค้นหา !';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Hide/Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'รีเฟรส';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'สลับมุมมอง';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'คอลัมน์';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'All';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['th-TH']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Turkish translation
|
|
|
* Author: Emin Şen
|
|
|
* Author: Sercan Cakir <srcnckr@gmail.com>
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['tr-TR'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Yükleniyor, lütfen bekleyin';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "Sayfa ba\u015F\u0131na ".concat(pageNumber, " kay\u0131t.");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "".concat(totalRows, " kay\u0131ttan ").concat(pageFrom, "-").concat(pageTo, " aras\u0131 g\xF6steriliyor (filtered from ").concat(totalNotFiltered, " total rows).");
|
|
|
}
|
|
|
|
|
|
return "".concat(totalRows, " kay\u0131ttan ").concat(pageFrom, "-").concat(pageTo, " aras\u0131 g\xF6steriliyor.");
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Clear Search';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Ara';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Eşleşen kayıt bulunamadı.';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Hide/Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Yenile';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Değiştir';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Sütunlar';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Tüm Satırlar';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['tr-TR']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Ukrainian translation
|
|
|
* Author: Vitaliy Timchenko <vitaliy.timchenko@gmail.com>
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['uk-UA'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Завантаження, будь ласка, зачекайте';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " \u0437\u0430\u043F\u0438\u0441\u0456\u0432 \u043D\u0430 \u0441\u0442\u043E\u0440\u0456\u043D\u043A\u0443");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "\u041F\u043E\u043A\u0430\u0437\u0430\u043D\u043E \u0437 ".concat(pageFrom, " \u043F\u043E ").concat(pageTo, ". \u0412\u0441\u044C\u043E\u0433\u043E: ").concat(totalRows, " (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
|
|
|
return "\u041F\u043E\u043A\u0430\u0437\u0430\u043D\u043E \u0437 ".concat(pageFrom, " \u043F\u043E ").concat(pageTo, ". \u0412\u0441\u044C\u043E\u0433\u043E: ").concat(totalRows);
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Очистити фільтри';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Пошук';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Не знайдено жодного запису';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Hide/Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Оновити';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Змінити';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Стовпці';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'All';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['uk-UA']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Urdu translation
|
|
|
* Author: Malik <me@malikrizwan.com>
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['ur-PK'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'براۓ مہربانی انتظار کیجئے';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " \u0631\u06CC\u06A9\u0627\u0631\u0688\u0632 \u0641\u06CC \u0635\u0641\u06C1 ");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "\u062F\u06CC\u06A9\u06BE\u06CC\u06BA ".concat(pageFrom, " \u0633\u06D2 ").concat(pageTo, " \u06A9\u06D2 ").concat(totalRows, "\u0631\u06CC\u06A9\u0627\u0631\u0688\u0632 (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
|
|
|
return "\u062F\u06CC\u06A9\u06BE\u06CC\u06BA ".concat(pageFrom, " \u0633\u06D2 ").concat(pageTo, " \u06A9\u06D2 ").concat(totalRows, "\u0631\u06CC\u06A9\u0627\u0631\u0688\u0632");
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Clear Search';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'تلاش';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'کوئی ریکارڈ نہیں ملا';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Hide/Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'تازہ کریں';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'تبدیل کریں';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'کالم';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'All';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['ur-PK']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Uzbek translation
|
|
|
* Author: Nabijon Masharipov <mnabijonz@gmail.com>
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['uz-Latn-UZ'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Yuklanyapti, iltimos kuting';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " qator har sahifada");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Ko'rsatypati ".concat(pageFrom, " dan ").concat(pageTo, " gacha ").concat(totalRows, " qatorlarni (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
|
|
|
return "Ko'rsatypati ".concat(pageFrom, " dan ").concat(pageTo, " gacha ").concat(totalRows, " qatorlarni");
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Filtrlarni tozalash';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Qidirish';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Hech narsa topilmadi';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Sahifalashni yashirish/ko\'rsatish';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Yangilash';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Ko\'rinish';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Ustunlar';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'Hammasi';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Eksport';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['uz-Latn-UZ']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Vietnamese translation
|
|
|
* Author: Duc N. PHAM <pngduc@gmail.com>
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['vi-VN'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return 'Đang tải';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "".concat(pageNumber, " b\u1EA3n ghi m\u1ED7i trang");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "Hi\u1EC3n th\u1ECB t\u1EEB trang ".concat(pageFrom, " \u0111\u1EBFn ").concat(pageTo, " c\u1EE7a ").concat(totalRows, " b\u1EA3ng ghi (filtered from ").concat(totalNotFiltered, " total rows)");
|
|
|
}
|
|
|
|
|
|
return "Hi\u1EC3n th\u1ECB t\u1EEB trang ".concat(pageFrom, " \u0111\u1EBFn ").concat(pageTo, " c\u1EE7a ").concat(totalRows, " b\u1EA3ng ghi");
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return 'previous page';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "to page ".concat(page);
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return 'next page';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "Showing ".concat(totalRows, " rows");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return 'Clear Search';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return 'Tìm kiếm';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return 'Không có dữ liệu';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return 'Hide/Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return 'Show pagination';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return 'Hide pagination';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return 'Refresh';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return 'Toggle';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return 'Show card view';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return 'Hide card view';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return 'Columns';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return 'Toggle all';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return 'Fullscreen';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return 'All';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return 'Auto Refresh';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return 'Export data';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return 'GO';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return 'Advanced search';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return 'Close';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['vi-VN']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Chinese translation
|
|
|
* Author: Zhixin Wen<wenzhixin2010@gmail.com>
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['zh-CN'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return '正在努力地加载数据中,请稍候';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "\u6BCF\u9875\u663E\u793A ".concat(pageNumber, " \u6761\u8BB0\u5F55");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "\u663E\u793A\u7B2C ".concat(pageFrom, " \u5230\u7B2C ").concat(pageTo, " \u6761\u8BB0\u5F55\uFF0C\u603B\u5171 ").concat(totalRows, " \u6761\u8BB0\u5F55\uFF08\u4ECE ").concat(totalNotFiltered, " \u603B\u8BB0\u5F55\u4E2D\u8FC7\u6EE4\uFF09");
|
|
|
}
|
|
|
|
|
|
return "\u663E\u793A\u7B2C ".concat(pageFrom, " \u5230\u7B2C ").concat(pageTo, " \u6761\u8BB0\u5F55\uFF0C\u603B\u5171 ").concat(totalRows, " \u6761\u8BB0\u5F55");
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return '上一页';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "\u7B2C".concat(page, "\u9875");
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return '下一页';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "\u603B\u5171 ".concat(totalRows, " \u6761\u8BB0\u5F55");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return '清空过滤';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return '搜索';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return '没有找到匹配的记录';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return '隐藏/显示分页';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return '显示分页';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return '隐藏分页';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return '刷新';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return '切换';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return '显示卡片视图';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return '隐藏卡片视图';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return '列';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return '切换所有';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return '全屏';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return '所有';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return '自动刷新';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return '导出数据';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return '跳转';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return '高级搜索';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return '关闭';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['zh-CN']);
|
|
|
|
|
|
/**
|
|
|
* Bootstrap Table Chinese translation
|
|
|
* Author: Zhixin Wen<wenzhixin2010@gmail.com>
|
|
|
*/
|
|
|
|
|
|
$.fn.bootstrapTable.locales['zh-TW'] = {
|
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
|
return '正在努力地載入資料,請稍候';
|
|
|
},
|
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
|
return "\u6BCF\u9801\u986F\u793A ".concat(pageNumber, " \u9805\u8A18\u9304");
|
|
|
},
|
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
|
|
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
|
|
return "\u986F\u793A\u7B2C ".concat(pageFrom, " \u5230\u7B2C ").concat(pageTo, " \u9805\u8A18\u9304\uFF0C\u7E3D\u5171 ").concat(totalRows, " \u9805\u8A18\u9304\uFF08\u5F9E ").concat(totalNotFiltered, " \u7E3D\u8A18\u9304\u4E2D\u904E\u6FFE\uFF09");
|
|
|
}
|
|
|
|
|
|
return "\u986F\u793A\u7B2C ".concat(pageFrom, " \u5230\u7B2C ").concat(pageTo, " \u9805\u8A18\u9304\uFF0C\u7E3D\u5171 ").concat(totalRows, " \u9805\u8A18\u9304");
|
|
|
},
|
|
|
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
|
|
return '上一頁';
|
|
|
},
|
|
|
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
|
|
return "\u7B2C".concat(page, "\u9801");
|
|
|
},
|
|
|
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
|
|
return '下一頁';
|
|
|
},
|
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
|
return "\u7E3D\u5171 ".concat(totalRows, " \u9805\u8A18\u9304");
|
|
|
},
|
|
|
formatClearSearch: function formatClearSearch() {
|
|
|
return '清空過濾';
|
|
|
},
|
|
|
formatSearch: function formatSearch() {
|
|
|
return '搜尋';
|
|
|
},
|
|
|
formatNoMatches: function formatNoMatches() {
|
|
|
return '沒有找到符合的結果';
|
|
|
},
|
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
|
return '隱藏/顯示分頁';
|
|
|
},
|
|
|
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
|
|
return '顯示分頁';
|
|
|
},
|
|
|
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
|
|
return '隱藏分頁';
|
|
|
},
|
|
|
formatRefresh: function formatRefresh() {
|
|
|
return '重新整理';
|
|
|
},
|
|
|
formatToggle: function formatToggle() {
|
|
|
return '切換';
|
|
|
},
|
|
|
formatToggleOn: function formatToggleOn() {
|
|
|
return '顯示卡片視圖';
|
|
|
},
|
|
|
formatToggleOff: function formatToggleOff() {
|
|
|
return '隱藏卡片視圖';
|
|
|
},
|
|
|
formatColumns: function formatColumns() {
|
|
|
return '列';
|
|
|
},
|
|
|
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
|
|
return '切換所有';
|
|
|
},
|
|
|
formatFullscreen: function formatFullscreen() {
|
|
|
return '全屏';
|
|
|
},
|
|
|
formatAllRows: function formatAllRows() {
|
|
|
return '所有';
|
|
|
},
|
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
|
return '自動刷新';
|
|
|
},
|
|
|
formatExport: function formatExport() {
|
|
|
return '導出數據';
|
|
|
},
|
|
|
formatJumpTo: function formatJumpTo() {
|
|
|
return '跳轉';
|
|
|
},
|
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
|
return '高級搜尋';
|
|
|
},
|
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
|
return '關閉';
|
|
|
}
|
|
|
};
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['zh-TW']);
|
|
|
|
|
|
})));
|