bootstrap-table-ru-RU.js 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794
  1. (function (global, factory) {
  2. typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('jquery')) :
  3. typeof define === 'function' && define.amd ? define(['jquery'], factory) :
  4. (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.jQuery));
  5. }(this, (function ($) { 'use strict';
  6. function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
  7. var $__default = /*#__PURE__*/_interopDefaultLegacy($);
  8. var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
  9. function createCommonjsModule(fn, module) {
  10. return module = { exports: {} }, fn(module, module.exports), module.exports;
  11. }
  12. var check = function (it) {
  13. return it && it.Math == Math && it;
  14. };
  15. // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
  16. var global_1 =
  17. /* global globalThis -- safe */
  18. check(typeof globalThis == 'object' && globalThis) ||
  19. check(typeof window == 'object' && window) ||
  20. check(typeof self == 'object' && self) ||
  21. check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
  22. // eslint-disable-next-line no-new-func -- fallback
  23. (function () { return this; })() || Function('return this')();
  24. var fails = function (exec) {
  25. try {
  26. return !!exec();
  27. } catch (error) {
  28. return true;
  29. }
  30. };
  31. // Detect IE8's incomplete defineProperty implementation
  32. var descriptors = !fails(function () {
  33. return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
  34. });
  35. var nativePropertyIsEnumerable = {}.propertyIsEnumerable;
  36. var getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
  37. // Nashorn ~ JDK8 bug
  38. var NASHORN_BUG = getOwnPropertyDescriptor$1 && !nativePropertyIsEnumerable.call({ 1: 2 }, 1);
  39. // `Object.prototype.propertyIsEnumerable` method implementation
  40. // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
  41. var f$4 = NASHORN_BUG ? function propertyIsEnumerable(V) {
  42. var descriptor = getOwnPropertyDescriptor$1(this, V);
  43. return !!descriptor && descriptor.enumerable;
  44. } : nativePropertyIsEnumerable;
  45. var objectPropertyIsEnumerable = {
  46. f: f$4
  47. };
  48. var createPropertyDescriptor = function (bitmap, value) {
  49. return {
  50. enumerable: !(bitmap & 1),
  51. configurable: !(bitmap & 2),
  52. writable: !(bitmap & 4),
  53. value: value
  54. };
  55. };
  56. var toString = {}.toString;
  57. var classofRaw = function (it) {
  58. return toString.call(it).slice(8, -1);
  59. };
  60. var split = ''.split;
  61. // fallback for non-array-like ES3 and non-enumerable old V8 strings
  62. var indexedObject = fails(function () {
  63. // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
  64. // eslint-disable-next-line no-prototype-builtins -- safe
  65. return !Object('z').propertyIsEnumerable(0);
  66. }) ? function (it) {
  67. return classofRaw(it) == 'String' ? split.call(it, '') : Object(it);
  68. } : Object;
  69. // `RequireObjectCoercible` abstract operation
  70. // https://tc39.es/ecma262/#sec-requireobjectcoercible
  71. var requireObjectCoercible = function (it) {
  72. if (it == undefined) throw TypeError("Can't call method on " + it);
  73. return it;
  74. };
  75. // toObject with fallback for non-array-like ES3 strings
  76. var toIndexedObject = function (it) {
  77. return indexedObject(requireObjectCoercible(it));
  78. };
  79. var isObject = function (it) {
  80. return typeof it === 'object' ? it !== null : typeof it === 'function';
  81. };
  82. // `ToPrimitive` abstract operation
  83. // https://tc39.es/ecma262/#sec-toprimitive
  84. // instead of the ES6 spec version, we didn't implement @@toPrimitive case
  85. // and the second argument - flag - preferred type is a string
  86. var toPrimitive = function (input, PREFERRED_STRING) {
  87. if (!isObject(input)) return input;
  88. var fn, val;
  89. if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
  90. if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;
  91. if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
  92. throw TypeError("Can't convert object to primitive value");
  93. };
  94. var hasOwnProperty = {}.hasOwnProperty;
  95. var has$1 = function (it, key) {
  96. return hasOwnProperty.call(it, key);
  97. };
  98. var document = global_1.document;
  99. // typeof document.createElement is 'object' in old IE
  100. var EXISTS = isObject(document) && isObject(document.createElement);
  101. var documentCreateElement = function (it) {
  102. return EXISTS ? document.createElement(it) : {};
  103. };
  104. // Thank's IE8 for his funny defineProperty
  105. var ie8DomDefine = !descriptors && !fails(function () {
  106. return Object.defineProperty(documentCreateElement('div'), 'a', {
  107. get: function () { return 7; }
  108. }).a != 7;
  109. });
  110. var nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
  111. // `Object.getOwnPropertyDescriptor` method
  112. // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
  113. var f$3 = descriptors ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
  114. O = toIndexedObject(O);
  115. P = toPrimitive(P, true);
  116. if (ie8DomDefine) try {
  117. return nativeGetOwnPropertyDescriptor(O, P);
  118. } catch (error) { /* empty */ }
  119. if (has$1(O, P)) return createPropertyDescriptor(!objectPropertyIsEnumerable.f.call(O, P), O[P]);
  120. };
  121. var objectGetOwnPropertyDescriptor = {
  122. f: f$3
  123. };
  124. var anObject = function (it) {
  125. if (!isObject(it)) {
  126. throw TypeError(String(it) + ' is not an object');
  127. } return it;
  128. };
  129. var nativeDefineProperty = Object.defineProperty;
  130. // `Object.defineProperty` method
  131. // https://tc39.es/ecma262/#sec-object.defineproperty
  132. var f$2 = descriptors ? nativeDefineProperty : function defineProperty(O, P, Attributes) {
  133. anObject(O);
  134. P = toPrimitive(P, true);
  135. anObject(Attributes);
  136. if (ie8DomDefine) try {
  137. return nativeDefineProperty(O, P, Attributes);
  138. } catch (error) { /* empty */ }
  139. if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');
  140. if ('value' in Attributes) O[P] = Attributes.value;
  141. return O;
  142. };
  143. var objectDefineProperty = {
  144. f: f$2
  145. };
  146. var createNonEnumerableProperty = descriptors ? function (object, key, value) {
  147. return objectDefineProperty.f(object, key, createPropertyDescriptor(1, value));
  148. } : function (object, key, value) {
  149. object[key] = value;
  150. return object;
  151. };
  152. var setGlobal = function (key, value) {
  153. try {
  154. createNonEnumerableProperty(global_1, key, value);
  155. } catch (error) {
  156. global_1[key] = value;
  157. } return value;
  158. };
  159. var SHARED = '__core-js_shared__';
  160. var store$1 = global_1[SHARED] || setGlobal(SHARED, {});
  161. var sharedStore = store$1;
  162. var functionToString = Function.toString;
  163. // this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper
  164. if (typeof sharedStore.inspectSource != 'function') {
  165. sharedStore.inspectSource = function (it) {
  166. return functionToString.call(it);
  167. };
  168. }
  169. var inspectSource = sharedStore.inspectSource;
  170. var WeakMap$1 = global_1.WeakMap;
  171. var nativeWeakMap = typeof WeakMap$1 === 'function' && /native code/.test(inspectSource(WeakMap$1));
  172. var shared = createCommonjsModule(function (module) {
  173. (module.exports = function (key, value) {
  174. return sharedStore[key] || (sharedStore[key] = value !== undefined ? value : {});
  175. })('versions', []).push({
  176. version: '3.9.1',
  177. mode: 'global',
  178. copyright: '© 2021 Denis Pushkarev (zloirock.ru)'
  179. });
  180. });
  181. var id = 0;
  182. var postfix = Math.random();
  183. var uid = function (key) {
  184. return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);
  185. };
  186. var keys = shared('keys');
  187. var sharedKey = function (key) {
  188. return keys[key] || (keys[key] = uid(key));
  189. };
  190. var hiddenKeys$1 = {};
  191. var WeakMap = global_1.WeakMap;
  192. var set, get, has;
  193. var enforce = function (it) {
  194. return has(it) ? get(it) : set(it, {});
  195. };
  196. var getterFor = function (TYPE) {
  197. return function (it) {
  198. var state;
  199. if (!isObject(it) || (state = get(it)).type !== TYPE) {
  200. throw TypeError('Incompatible receiver, ' + TYPE + ' required');
  201. } return state;
  202. };
  203. };
  204. if (nativeWeakMap) {
  205. var store = sharedStore.state || (sharedStore.state = new WeakMap());
  206. var wmget = store.get;
  207. var wmhas = store.has;
  208. var wmset = store.set;
  209. set = function (it, metadata) {
  210. metadata.facade = it;
  211. wmset.call(store, it, metadata);
  212. return metadata;
  213. };
  214. get = function (it) {
  215. return wmget.call(store, it) || {};
  216. };
  217. has = function (it) {
  218. return wmhas.call(store, it);
  219. };
  220. } else {
  221. var STATE = sharedKey('state');
  222. hiddenKeys$1[STATE] = true;
  223. set = function (it, metadata) {
  224. metadata.facade = it;
  225. createNonEnumerableProperty(it, STATE, metadata);
  226. return metadata;
  227. };
  228. get = function (it) {
  229. return has$1(it, STATE) ? it[STATE] : {};
  230. };
  231. has = function (it) {
  232. return has$1(it, STATE);
  233. };
  234. }
  235. var internalState = {
  236. set: set,
  237. get: get,
  238. has: has,
  239. enforce: enforce,
  240. getterFor: getterFor
  241. };
  242. var redefine = createCommonjsModule(function (module) {
  243. var getInternalState = internalState.get;
  244. var enforceInternalState = internalState.enforce;
  245. var TEMPLATE = String(String).split('String');
  246. (module.exports = function (O, key, value, options) {
  247. var unsafe = options ? !!options.unsafe : false;
  248. var simple = options ? !!options.enumerable : false;
  249. var noTargetGet = options ? !!options.noTargetGet : false;
  250. var state;
  251. if (typeof value == 'function') {
  252. if (typeof key == 'string' && !has$1(value, 'name')) {
  253. createNonEnumerableProperty(value, 'name', key);
  254. }
  255. state = enforceInternalState(value);
  256. if (!state.source) {
  257. state.source = TEMPLATE.join(typeof key == 'string' ? key : '');
  258. }
  259. }
  260. if (O === global_1) {
  261. if (simple) O[key] = value;
  262. else setGlobal(key, value);
  263. return;
  264. } else if (!unsafe) {
  265. delete O[key];
  266. } else if (!noTargetGet && O[key]) {
  267. simple = true;
  268. }
  269. if (simple) O[key] = value;
  270. else createNonEnumerableProperty(O, key, value);
  271. // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
  272. })(Function.prototype, 'toString', function toString() {
  273. return typeof this == 'function' && getInternalState(this).source || inspectSource(this);
  274. });
  275. });
  276. var path = global_1;
  277. var aFunction = function (variable) {
  278. return typeof variable == 'function' ? variable : undefined;
  279. };
  280. var getBuiltIn = function (namespace, method) {
  281. return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global_1[namespace])
  282. : path[namespace] && path[namespace][method] || global_1[namespace] && global_1[namespace][method];
  283. };
  284. var ceil = Math.ceil;
  285. var floor = Math.floor;
  286. // `ToInteger` abstract operation
  287. // https://tc39.es/ecma262/#sec-tointeger
  288. var toInteger = function (argument) {
  289. return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);
  290. };
  291. var min$1 = Math.min;
  292. // `ToLength` abstract operation
  293. // https://tc39.es/ecma262/#sec-tolength
  294. var toLength = function (argument) {
  295. return argument > 0 ? min$1(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
  296. };
  297. var max = Math.max;
  298. var min = Math.min;
  299. // Helper for a popular repeating case of the spec:
  300. // Let integer be ? ToInteger(index).
  301. // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
  302. var toAbsoluteIndex = function (index, length) {
  303. var integer = toInteger(index);
  304. return integer < 0 ? max(integer + length, 0) : min(integer, length);
  305. };
  306. // `Array.prototype.{ indexOf, includes }` methods implementation
  307. var createMethod = function (IS_INCLUDES) {
  308. return function ($this, el, fromIndex) {
  309. var O = toIndexedObject($this);
  310. var length = toLength(O.length);
  311. var index = toAbsoluteIndex(fromIndex, length);
  312. var value;
  313. // Array#includes uses SameValueZero equality algorithm
  314. // eslint-disable-next-line no-self-compare -- NaN check
  315. if (IS_INCLUDES && el != el) while (length > index) {
  316. value = O[index++];
  317. // eslint-disable-next-line no-self-compare -- NaN check
  318. if (value != value) return true;
  319. // Array#indexOf ignores holes, Array#includes - not
  320. } else for (;length > index; index++) {
  321. if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
  322. } return !IS_INCLUDES && -1;
  323. };
  324. };
  325. var arrayIncludes = {
  326. // `Array.prototype.includes` method
  327. // https://tc39.es/ecma262/#sec-array.prototype.includes
  328. includes: createMethod(true),
  329. // `Array.prototype.indexOf` method
  330. // https://tc39.es/ecma262/#sec-array.prototype.indexof
  331. indexOf: createMethod(false)
  332. };
  333. var indexOf = arrayIncludes.indexOf;
  334. var objectKeysInternal = function (object, names) {
  335. var O = toIndexedObject(object);
  336. var i = 0;
  337. var result = [];
  338. var key;
  339. for (key in O) !has$1(hiddenKeys$1, key) && has$1(O, key) && result.push(key);
  340. // Don't enum bug & hidden keys
  341. while (names.length > i) if (has$1(O, key = names[i++])) {
  342. ~indexOf(result, key) || result.push(key);
  343. }
  344. return result;
  345. };
  346. // IE8- don't enum bug keys
  347. var enumBugKeys = [
  348. 'constructor',
  349. 'hasOwnProperty',
  350. 'isPrototypeOf',
  351. 'propertyIsEnumerable',
  352. 'toLocaleString',
  353. 'toString',
  354. 'valueOf'
  355. ];
  356. var hiddenKeys = enumBugKeys.concat('length', 'prototype');
  357. // `Object.getOwnPropertyNames` method
  358. // https://tc39.es/ecma262/#sec-object.getownpropertynames
  359. var f$1 = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
  360. return objectKeysInternal(O, hiddenKeys);
  361. };
  362. var objectGetOwnPropertyNames = {
  363. f: f$1
  364. };
  365. var f = Object.getOwnPropertySymbols;
  366. var objectGetOwnPropertySymbols = {
  367. f: f
  368. };
  369. // all object keys, includes non-enumerable and symbols
  370. var ownKeys = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
  371. var keys = objectGetOwnPropertyNames.f(anObject(it));
  372. var getOwnPropertySymbols = objectGetOwnPropertySymbols.f;
  373. return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;
  374. };
  375. var copyConstructorProperties = function (target, source) {
  376. var keys = ownKeys(source);
  377. var defineProperty = objectDefineProperty.f;
  378. var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
  379. for (var i = 0; i < keys.length; i++) {
  380. var key = keys[i];
  381. if (!has$1(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));
  382. }
  383. };
  384. var replacement = /#|\.prototype\./;
  385. var isForced = function (feature, detection) {
  386. var value = data[normalize(feature)];
  387. return value == POLYFILL ? true
  388. : value == NATIVE ? false
  389. : typeof detection == 'function' ? fails(detection)
  390. : !!detection;
  391. };
  392. var normalize = isForced.normalize = function (string) {
  393. return String(string).replace(replacement, '.').toLowerCase();
  394. };
  395. var data = isForced.data = {};
  396. var NATIVE = isForced.NATIVE = 'N';
  397. var POLYFILL = isForced.POLYFILL = 'P';
  398. var isForced_1 = isForced;
  399. var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
  400. /*
  401. options.target - name of the target object
  402. options.global - target is the global object
  403. options.stat - export as static methods of target
  404. options.proto - export as prototype methods of target
  405. options.real - real prototype method for the `pure` version
  406. options.forced - export even if the native feature is available
  407. options.bind - bind methods to the target, required for the `pure` version
  408. options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
  409. options.unsafe - use the simple assignment of property instead of delete + defineProperty
  410. options.sham - add a flag to not completely full polyfills
  411. options.enumerable - export as enumerable property
  412. options.noTargetGet - prevent calling a getter on target
  413. */
  414. var _export = function (options, source) {
  415. var TARGET = options.target;
  416. var GLOBAL = options.global;
  417. var STATIC = options.stat;
  418. var FORCED, target, key, targetProperty, sourceProperty, descriptor;
  419. if (GLOBAL) {
  420. target = global_1;
  421. } else if (STATIC) {
  422. target = global_1[TARGET] || setGlobal(TARGET, {});
  423. } else {
  424. target = (global_1[TARGET] || {}).prototype;
  425. }
  426. if (target) for (key in source) {
  427. sourceProperty = source[key];
  428. if (options.noTargetGet) {
  429. descriptor = getOwnPropertyDescriptor(target, key);
  430. targetProperty = descriptor && descriptor.value;
  431. } else targetProperty = target[key];
  432. FORCED = isForced_1(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
  433. // contained in target
  434. if (!FORCED && targetProperty !== undefined) {
  435. if (typeof sourceProperty === typeof targetProperty) continue;
  436. copyConstructorProperties(sourceProperty, targetProperty);
  437. }
  438. // add a flag to not completely full polyfills
  439. if (options.sham || (targetProperty && targetProperty.sham)) {
  440. createNonEnumerableProperty(sourceProperty, 'sham', true);
  441. }
  442. // extend global
  443. redefine(target, key, sourceProperty, options);
  444. }
  445. };
  446. // `IsArray` abstract operation
  447. // https://tc39.es/ecma262/#sec-isarray
  448. var isArray = Array.isArray || function isArray(arg) {
  449. return classofRaw(arg) == 'Array';
  450. };
  451. // `ToObject` abstract operation
  452. // https://tc39.es/ecma262/#sec-toobject
  453. var toObject = function (argument) {
  454. return Object(requireObjectCoercible(argument));
  455. };
  456. var createProperty = function (object, key, value) {
  457. var propertyKey = toPrimitive(key);
  458. if (propertyKey in object) objectDefineProperty.f(object, propertyKey, createPropertyDescriptor(0, value));
  459. else object[propertyKey] = value;
  460. };
  461. var engineIsNode = classofRaw(global_1.process) == 'process';
  462. var engineUserAgent = getBuiltIn('navigator', 'userAgent') || '';
  463. var process = global_1.process;
  464. var versions = process && process.versions;
  465. var v8 = versions && versions.v8;
  466. var match, version;
  467. if (v8) {
  468. match = v8.split('.');
  469. version = match[0] + match[1];
  470. } else if (engineUserAgent) {
  471. match = engineUserAgent.match(/Edge\/(\d+)/);
  472. if (!match || match[1] >= 74) {
  473. match = engineUserAgent.match(/Chrome\/(\d+)/);
  474. if (match) version = match[1];
  475. }
  476. }
  477. var engineV8Version = version && +version;
  478. var nativeSymbol = !!Object.getOwnPropertySymbols && !fails(function () {
  479. /* global Symbol -- required for testing */
  480. return !Symbol.sham &&
  481. // Chrome 38 Symbol has incorrect toString conversion
  482. // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
  483. (engineIsNode ? engineV8Version === 38 : engineV8Version > 37 && engineV8Version < 41);
  484. });
  485. var useSymbolAsUid = nativeSymbol
  486. /* global Symbol -- safe */
  487. && !Symbol.sham
  488. && typeof Symbol.iterator == 'symbol';
  489. var WellKnownSymbolsStore = shared('wks');
  490. var Symbol$1 = global_1.Symbol;
  491. var createWellKnownSymbol = useSymbolAsUid ? Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid;
  492. var wellKnownSymbol = function (name) {
  493. if (!has$1(WellKnownSymbolsStore, name) || !(nativeSymbol || typeof WellKnownSymbolsStore[name] == 'string')) {
  494. if (nativeSymbol && has$1(Symbol$1, name)) {
  495. WellKnownSymbolsStore[name] = Symbol$1[name];
  496. } else {
  497. WellKnownSymbolsStore[name] = createWellKnownSymbol('Symbol.' + name);
  498. }
  499. } return WellKnownSymbolsStore[name];
  500. };
  501. var SPECIES$1 = wellKnownSymbol('species');
  502. // `ArraySpeciesCreate` abstract operation
  503. // https://tc39.es/ecma262/#sec-arrayspeciescreate
  504. var arraySpeciesCreate = function (originalArray, length) {
  505. var C;
  506. if (isArray(originalArray)) {
  507. C = originalArray.constructor;
  508. // cross-realm fallback
  509. if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;
  510. else if (isObject(C)) {
  511. C = C[SPECIES$1];
  512. if (C === null) C = undefined;
  513. }
  514. } return new (C === undefined ? Array : C)(length === 0 ? 0 : length);
  515. };
  516. var SPECIES = wellKnownSymbol('species');
  517. var arrayMethodHasSpeciesSupport = function (METHOD_NAME) {
  518. // We can't use this feature detection in V8 since it causes
  519. // deoptimization and serious performance degradation
  520. // https://github.com/zloirock/core-js/issues/677
  521. return engineV8Version >= 51 || !fails(function () {
  522. var array = [];
  523. var constructor = array.constructor = {};
  524. constructor[SPECIES] = function () {
  525. return { foo: 1 };
  526. };
  527. return array[METHOD_NAME](Boolean).foo !== 1;
  528. });
  529. };
  530. var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');
  531. var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;
  532. var MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';
  533. // We can't use this feature detection in V8 since it causes
  534. // deoptimization and serious performance degradation
  535. // https://github.com/zloirock/core-js/issues/679
  536. var IS_CONCAT_SPREADABLE_SUPPORT = engineV8Version >= 51 || !fails(function () {
  537. var array = [];
  538. array[IS_CONCAT_SPREADABLE] = false;
  539. return array.concat()[0] !== array;
  540. });
  541. var SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat');
  542. var isConcatSpreadable = function (O) {
  543. if (!isObject(O)) return false;
  544. var spreadable = O[IS_CONCAT_SPREADABLE];
  545. return spreadable !== undefined ? !!spreadable : isArray(O);
  546. };
  547. var FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;
  548. // `Array.prototype.concat` method
  549. // https://tc39.es/ecma262/#sec-array.prototype.concat
  550. // with adding support of @@isConcatSpreadable and @@species
  551. _export({ target: 'Array', proto: true, forced: FORCED }, {
  552. // eslint-disable-next-line no-unused-vars -- required for `.length`
  553. concat: function concat(arg) {
  554. var O = toObject(this);
  555. var A = arraySpeciesCreate(O, 0);
  556. var n = 0;
  557. var i, k, length, len, E;
  558. for (i = -1, length = arguments.length; i < length; i++) {
  559. E = i === -1 ? O : arguments[i];
  560. if (isConcatSpreadable(E)) {
  561. len = toLength(E.length);
  562. if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
  563. for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);
  564. } else {
  565. if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
  566. createProperty(A, n++, E);
  567. }
  568. }
  569. A.length = n;
  570. return A;
  571. }
  572. });
  573. /**
  574. * Bootstrap Table Russian translation
  575. * Author: Dunaevsky Maxim <dunmaksim@yandex.ru>
  576. */
  577. $__default['default'].fn.bootstrapTable.locales['ru-RU'] = $__default['default'].fn.bootstrapTable.locales['ru'] = {
  578. formatCopyRows: function formatCopyRows() {
  579. return 'Скопировать строки';
  580. },
  581. formatPrint: function formatPrint() {
  582. return 'Печать';
  583. },
  584. formatLoadingMessage: function formatLoadingMessage() {
  585. return 'Пожалуйста, подождите, идёт загрузка';
  586. },
  587. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  588. return "".concat(pageNumber, " \u0437\u0430\u043F\u0438\u0441\u0435\u0439 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0443");
  589. },
  590. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
  591. if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
  592. return "\u0417\u0430\u043F\u0438\u0441\u0438 \u0441 ".concat(pageFrom, " \u043F\u043E ").concat(pageTo, " \u0438\u0437 ").concat(totalRows, " (\u043E\u0442\u0444\u0438\u043B\u044C\u0442\u0440\u043E\u0432\u0430\u043D\u043E, \u0432\u0441\u0435\u0433\u043E \u043D\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435 ").concat(totalNotFiltered, " \u0437\u0430\u043F\u0438\u0441\u0435\u0439)");
  593. }
  594. return "\u0417\u0430\u043F\u0438\u0441\u0438 \u0441 ".concat(pageFrom, " \u043F\u043E ").concat(pageTo, " \u0438\u0437 ").concat(totalRows);
  595. },
  596. formatSRPaginationPreText: function formatSRPaginationPreText() {
  597. return 'предыдущая страница';
  598. },
  599. formatSRPaginationPageText: function formatSRPaginationPageText(page) {
  600. return "\u043F\u0435\u0440\u0435\u0439\u0442\u0438 \u043A \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0435 ".concat(page);
  601. },
  602. formatSRPaginationNextText: function formatSRPaginationNextText() {
  603. return 'следующая страница';
  604. },
  605. formatDetailPagination: function formatDetailPagination(totalRows) {
  606. return "\u0417\u0430\u0433\u0440\u0443\u0436\u0435\u043D\u043E ".concat(totalRows, " \u0441\u0442\u0440\u043E\u043A");
  607. },
  608. formatClearSearch: function formatClearSearch() {
  609. return 'Очистить фильтры';
  610. },
  611. formatSearch: function formatSearch() {
  612. return 'Поиск';
  613. },
  614. formatNoMatches: function formatNoMatches() {
  615. return 'Ничего не найдено';
  616. },
  617. formatPaginationSwitch: function formatPaginationSwitch() {
  618. return 'Скрыть/Показать постраничную навигацию';
  619. },
  620. formatPaginationSwitchDown: function formatPaginationSwitchDown() {
  621. return 'Показать постраничную навигацию';
  622. },
  623. formatPaginationSwitchUp: function formatPaginationSwitchUp() {
  624. return 'Скрыть постраничную навигацию';
  625. },
  626. formatRefresh: function formatRefresh() {
  627. return 'Обновить';
  628. },
  629. formatToggle: function formatToggle() {
  630. return 'Переключить';
  631. },
  632. formatToggleOn: function formatToggleOn() {
  633. return 'Показать записи в виде карточек';
  634. },
  635. formatToggleOff: function formatToggleOff() {
  636. return 'Табличный режим просмотра';
  637. },
  638. formatColumns: function formatColumns() {
  639. return 'Колонки';
  640. },
  641. formatColumnsToggleAll: function formatColumnsToggleAll() {
  642. return 'Выбрать все';
  643. },
  644. formatFullscreen: function formatFullscreen() {
  645. return 'Полноэкранный режим';
  646. },
  647. formatAllRows: function formatAllRows() {
  648. return 'Все';
  649. },
  650. formatAutoRefresh: function formatAutoRefresh() {
  651. return 'Автоматическое обновление';
  652. },
  653. formatExport: function formatExport() {
  654. return 'Экспортировать данные';
  655. },
  656. formatJumpTo: function formatJumpTo() {
  657. return 'Стр.';
  658. },
  659. formatAdvancedSearch: function formatAdvancedSearch() {
  660. return 'Расширенный поиск';
  661. },
  662. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  663. return 'Закрыть';
  664. },
  665. formatFilterControlSwitch: function formatFilterControlSwitch() {
  666. return 'Скрыть/Показать панель инструментов';
  667. },
  668. formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
  669. return 'Скрыть панель инструментов';
  670. },
  671. formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
  672. return 'Показать панель инструментов';
  673. }
  674. };
  675. $__default['default'].extend($__default['default'].fn.bootstrapTable.defaults, $__default['default'].fn.bootstrapTable.locales['ru-RU']);
  676. })));