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 ($$2) { 'use strict';
|
6 |
|
7 | var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
8 |
|
9 | var check = function (it) {
|
10 | return it && it.Math == Math && it;
|
11 | };
|
12 |
|
13 |
|
14 | var global$a =
|
15 |
|
16 | check(typeof globalThis == 'object' && globalThis) ||
|
17 | check(typeof window == 'object' && window) ||
|
18 |
|
19 | check(typeof self == 'object' && self) ||
|
20 | check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
|
21 |
|
22 | (function () { return this; })() || Function('return this')();
|
23 |
|
24 | var objectGetOwnPropertyDescriptor = {};
|
25 |
|
26 | var fails$c = function (exec) {
|
27 | try {
|
28 | return !!exec();
|
29 | } catch (error) {
|
30 | return true;
|
31 | }
|
32 | };
|
33 |
|
34 | var fails$b = fails$c;
|
35 |
|
36 |
|
37 | var descriptors = !fails$b(function () {
|
38 |
|
39 | return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
|
40 | });
|
41 |
|
42 | var fails$a = fails$c;
|
43 |
|
44 | var functionBindNative = !fails$a(function () {
|
45 |
|
46 | var test = (function () { }).bind();
|
47 |
|
48 | return typeof test != 'function' || test.hasOwnProperty('prototype');
|
49 | });
|
50 |
|
51 | var NATIVE_BIND$1 = functionBindNative;
|
52 |
|
53 | var call$5 = Function.prototype.call;
|
54 |
|
55 | var functionCall = NATIVE_BIND$1 ? call$5.bind(call$5) : function () {
|
56 | return call$5.apply(call$5, arguments);
|
57 | };
|
58 |
|
59 | var objectPropertyIsEnumerable = {};
|
60 |
|
61 | var $propertyIsEnumerable = {}.propertyIsEnumerable;
|
62 |
|
63 | var getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
|
64 |
|
65 |
|
66 | var NASHORN_BUG = getOwnPropertyDescriptor$1 && !$propertyIsEnumerable.call({ 1: 2 }, 1);
|
67 |
|
68 |
|
69 |
|
70 | objectPropertyIsEnumerable.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
|
71 | var descriptor = getOwnPropertyDescriptor$1(this, V);
|
72 | return !!descriptor && descriptor.enumerable;
|
73 | } : $propertyIsEnumerable;
|
74 |
|
75 | var createPropertyDescriptor$3 = function (bitmap, value) {
|
76 | return {
|
77 | enumerable: !(bitmap & 1),
|
78 | configurable: !(bitmap & 2),
|
79 | writable: !(bitmap & 4),
|
80 | value: value
|
81 | };
|
82 | };
|
83 |
|
84 | var NATIVE_BIND = functionBindNative;
|
85 |
|
86 | var FunctionPrototype$1 = Function.prototype;
|
87 | var call$4 = FunctionPrototype$1.call;
|
88 | var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype$1.bind.bind(call$4, call$4);
|
89 |
|
90 | var functionUncurryThis = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
|
91 | return function () {
|
92 | return call$4.apply(fn, arguments);
|
93 | };
|
94 | };
|
95 |
|
96 | var uncurryThis$a = functionUncurryThis;
|
97 |
|
98 | var toString$1 = uncurryThis$a({}.toString);
|
99 | var stringSlice$1 = uncurryThis$a(''.slice);
|
100 |
|
101 | var classofRaw$1 = function (it) {
|
102 | return stringSlice$1(toString$1(it), 8, -1);
|
103 | };
|
104 |
|
105 | var uncurryThis$9 = functionUncurryThis;
|
106 | var fails$9 = fails$c;
|
107 | var classof$3 = classofRaw$1;
|
108 |
|
109 | var $Object$3 = Object;
|
110 | var split = uncurryThis$9(''.split);
|
111 |
|
112 |
|
113 | var indexedObject = fails$9(function () {
|
114 |
|
115 |
|
116 | return !$Object$3('z').propertyIsEnumerable(0);
|
117 | }) ? function (it) {
|
118 | return classof$3(it) == 'String' ? split(it, '') : $Object$3(it);
|
119 | } : $Object$3;
|
120 |
|
121 |
|
122 |
|
123 | var isNullOrUndefined$2 = function (it) {
|
124 | return it === null || it === undefined;
|
125 | };
|
126 |
|
127 | var isNullOrUndefined$1 = isNullOrUndefined$2;
|
128 |
|
129 | var $TypeError$6 = TypeError;
|
130 |
|
131 |
|
132 |
|
133 | var requireObjectCoercible$2 = function (it) {
|
134 | if (isNullOrUndefined$1(it)) throw $TypeError$6("Can't call method on " + it);
|
135 | return it;
|
136 | };
|
137 |
|
138 |
|
139 | var IndexedObject$1 = indexedObject;
|
140 | var requireObjectCoercible$1 = requireObjectCoercible$2;
|
141 |
|
142 | var toIndexedObject$3 = function (it) {
|
143 | return IndexedObject$1(requireObjectCoercible$1(it));
|
144 | };
|
145 |
|
146 | var documentAll$2 = typeof document == 'object' && document.all;
|
147 |
|
148 |
|
149 |
|
150 | var IS_HTMLDDA = typeof documentAll$2 == 'undefined' && documentAll$2 !== undefined;
|
151 |
|
152 | var documentAll_1 = {
|
153 | all: documentAll$2,
|
154 | IS_HTMLDDA: IS_HTMLDDA
|
155 | };
|
156 |
|
157 | var $documentAll$1 = documentAll_1;
|
158 |
|
159 | var documentAll$1 = $documentAll$1.all;
|
160 |
|
161 |
|
162 |
|
163 | var isCallable$c = $documentAll$1.IS_HTMLDDA ? function (argument) {
|
164 | return typeof argument == 'function' || argument === documentAll$1;
|
165 | } : function (argument) {
|
166 | return typeof argument == 'function';
|
167 | };
|
168 |
|
169 | var isCallable$b = isCallable$c;
|
170 | var $documentAll = documentAll_1;
|
171 |
|
172 | var documentAll = $documentAll.all;
|
173 |
|
174 | var isObject$7 = $documentAll.IS_HTMLDDA ? function (it) {
|
175 | return typeof it == 'object' ? it !== null : isCallable$b(it) || it === documentAll;
|
176 | } : function (it) {
|
177 | return typeof it == 'object' ? it !== null : isCallable$b(it);
|
178 | };
|
179 |
|
180 | var global$9 = global$a;
|
181 | var isCallable$a = isCallable$c;
|
182 |
|
183 | var aFunction = function (argument) {
|
184 | return isCallable$a(argument) ? argument : undefined;
|
185 | };
|
186 |
|
187 | var getBuiltIn$3 = function (namespace, method) {
|
188 | return arguments.length < 2 ? aFunction(global$9[namespace]) : global$9[namespace] && global$9[namespace][method];
|
189 | };
|
190 |
|
191 | var uncurryThis$8 = functionUncurryThis;
|
192 |
|
193 | var objectIsPrototypeOf = uncurryThis$8({}.isPrototypeOf);
|
194 |
|
195 | var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
|
196 |
|
197 | var global$8 = global$a;
|
198 | var userAgent = engineUserAgent;
|
199 |
|
200 | var process = global$8.process;
|
201 | var Deno = global$8.Deno;
|
202 | var versions = process && process.versions || Deno && Deno.version;
|
203 | var v8 = versions && versions.v8;
|
204 | var match, version;
|
205 |
|
206 | if (v8) {
|
207 | match = v8.split('.');
|
208 |
|
209 |
|
210 | version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
|
211 | }
|
212 |
|
213 |
|
214 |
|
215 | if (!version && userAgent) {
|
216 | match = userAgent.match(/Edge\/(\d+)/);
|
217 | if (!match || match[1] >= 74) {
|
218 | match = userAgent.match(/Chrome\/(\d+)/);
|
219 | if (match) version = +match[1];
|
220 | }
|
221 | }
|
222 |
|
223 | var engineV8Version = version;
|
224 |
|
225 |
|
226 |
|
227 | var V8_VERSION$2 = engineV8Version;
|
228 | var fails$8 = fails$c;
|
229 |
|
230 |
|
231 | var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$8(function () {
|
232 | var symbol = Symbol();
|
233 |
|
234 |
|
235 | return !String(symbol) || !(Object(symbol) instanceof Symbol) ||
|
236 |
|
237 | !Symbol.sham && V8_VERSION$2 && V8_VERSION$2 < 41;
|
238 | });
|
239 |
|
240 |
|
241 |
|
242 | var NATIVE_SYMBOL$1 = symbolConstructorDetection;
|
243 |
|
244 | var useSymbolAsUid = NATIVE_SYMBOL$1
|
245 | && !Symbol.sham
|
246 | && typeof Symbol.iterator == 'symbol';
|
247 |
|
248 | var getBuiltIn$2 = getBuiltIn$3;
|
249 | var isCallable$9 = isCallable$c;
|
250 | var isPrototypeOf = objectIsPrototypeOf;
|
251 | var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
|
252 |
|
253 | var $Object$2 = Object;
|
254 |
|
255 | var isSymbol$2 = USE_SYMBOL_AS_UID$1 ? function (it) {
|
256 | return typeof it == 'symbol';
|
257 | } : function (it) {
|
258 | var $Symbol = getBuiltIn$2('Symbol');
|
259 | return isCallable$9($Symbol) && isPrototypeOf($Symbol.prototype, $Object$2(it));
|
260 | };
|
261 |
|
262 | var $String$2 = String;
|
263 |
|
264 | var tryToString$1 = function (argument) {
|
265 | try {
|
266 | return $String$2(argument);
|
267 | } catch (error) {
|
268 | return 'Object';
|
269 | }
|
270 | };
|
271 |
|
272 | var isCallable$8 = isCallable$c;
|
273 | var tryToString = tryToString$1;
|
274 |
|
275 | var $TypeError$5 = TypeError;
|
276 |
|
277 |
|
278 | var aCallable$1 = function (argument) {
|
279 | if (isCallable$8(argument)) return argument;
|
280 | throw $TypeError$5(tryToString(argument) + ' is not a function');
|
281 | };
|
282 |
|
283 | var aCallable = aCallable$1;
|
284 | var isNullOrUndefined = isNullOrUndefined$2;
|
285 |
|
286 |
|
287 |
|
288 | var getMethod$1 = function (V, P) {
|
289 | var func = V[P];
|
290 | return isNullOrUndefined(func) ? undefined : aCallable(func);
|
291 | };
|
292 |
|
293 | var call$3 = functionCall;
|
294 | var isCallable$7 = isCallable$c;
|
295 | var isObject$6 = isObject$7;
|
296 |
|
297 | var $TypeError$4 = TypeError;
|
298 |
|
299 |
|
300 |
|
301 | var ordinaryToPrimitive$1 = function (input, pref) {
|
302 | var fn, val;
|
303 | if (pref === 'string' && isCallable$7(fn = input.toString) && !isObject$6(val = call$3(fn, input))) return val;
|
304 | if (isCallable$7(fn = input.valueOf) && !isObject$6(val = call$3(fn, input))) return val;
|
305 | if (pref !== 'string' && isCallable$7(fn = input.toString) && !isObject$6(val = call$3(fn, input))) return val;
|
306 | throw $TypeError$4("Can't convert object to primitive value");
|
307 | };
|
308 |
|
309 | var sharedExports = {};
|
310 | var shared$3 = {
|
311 | get exports(){ return sharedExports; },
|
312 | set exports(v){ sharedExports = v; },
|
313 | };
|
314 |
|
315 | var global$7 = global$a;
|
316 |
|
317 |
|
318 | var defineProperty$2 = Object.defineProperty;
|
319 |
|
320 | var defineGlobalProperty$3 = function (key, value) {
|
321 | try {
|
322 | defineProperty$2(global$7, key, { value: value, configurable: true, writable: true });
|
323 | } catch (error) {
|
324 | global$7[key] = value;
|
325 | } return value;
|
326 | };
|
327 |
|
328 | var global$6 = global$a;
|
329 | var defineGlobalProperty$2 = defineGlobalProperty$3;
|
330 |
|
331 | var SHARED = '__core-js_shared__';
|
332 | var store$3 = global$6[SHARED] || defineGlobalProperty$2(SHARED, {});
|
333 |
|
334 | var sharedStore = store$3;
|
335 |
|
336 | var store$2 = sharedStore;
|
337 |
|
338 | (shared$3.exports = function (key, value) {
|
339 | return store$2[key] || (store$2[key] = value !== undefined ? value : {});
|
340 | })('versions', []).push({
|
341 | version: '3.29.0',
|
342 | mode: 'global',
|
343 | copyright: '© 2014-2023 Denis Pushkarev (zloirock.ru)',
|
344 | license: 'https://github.com/zloirock/core-js/blob/v3.29.0/LICENSE',
|
345 | source: 'https://github.com/zloirock/core-js'
|
346 | });
|
347 |
|
348 | var requireObjectCoercible = requireObjectCoercible$2;
|
349 |
|
350 | var $Object$1 = Object;
|
351 |
|
352 |
|
353 |
|
354 | var toObject$3 = function (argument) {
|
355 | return $Object$1(requireObjectCoercible(argument));
|
356 | };
|
357 |
|
358 | var uncurryThis$7 = functionUncurryThis;
|
359 | var toObject$2 = toObject$3;
|
360 |
|
361 | var hasOwnProperty = uncurryThis$7({}.hasOwnProperty);
|
362 |
|
363 |
|
364 |
|
365 |
|
366 | var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
|
367 | return hasOwnProperty(toObject$2(it), key);
|
368 | };
|
369 |
|
370 | var uncurryThis$6 = functionUncurryThis;
|
371 |
|
372 | var id = 0;
|
373 | var postfix = Math.random();
|
374 | var toString = uncurryThis$6(1.0.toString);
|
375 |
|
376 | var uid$2 = function (key) {
|
377 | return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
|
378 | };
|
379 |
|
380 | var global$5 = global$a;
|
381 | var shared$2 = sharedExports;
|
382 | var hasOwn$6 = hasOwnProperty_1;
|
383 | var uid$1 = uid$2;
|
384 | var NATIVE_SYMBOL = symbolConstructorDetection;
|
385 | var USE_SYMBOL_AS_UID = useSymbolAsUid;
|
386 |
|
387 | var Symbol$1 = global$5.Symbol;
|
388 | var WellKnownSymbolsStore = shared$2('wks');
|
389 | var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$1['for'] || Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
|
390 |
|
391 | var wellKnownSymbol$6 = function (name) {
|
392 | if (!hasOwn$6(WellKnownSymbolsStore, name)) {
|
393 | WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn$6(Symbol$1, name)
|
394 | ? Symbol$1[name]
|
395 | : createWellKnownSymbol('Symbol.' + name);
|
396 | } return WellKnownSymbolsStore[name];
|
397 | };
|
398 |
|
399 | var call$2 = functionCall;
|
400 | var isObject$5 = isObject$7;
|
401 | var isSymbol$1 = isSymbol$2;
|
402 | var getMethod = getMethod$1;
|
403 | var ordinaryToPrimitive = ordinaryToPrimitive$1;
|
404 | var wellKnownSymbol$5 = wellKnownSymbol$6;
|
405 |
|
406 | var $TypeError$3 = TypeError;
|
407 | var TO_PRIMITIVE = wellKnownSymbol$5('toPrimitive');
|
408 |
|
409 |
|
410 |
|
411 | var toPrimitive$1 = function (input, pref) {
|
412 | if (!isObject$5(input) || isSymbol$1(input)) return input;
|
413 | var exoticToPrim = getMethod(input, TO_PRIMITIVE);
|
414 | var result;
|
415 | if (exoticToPrim) {
|
416 | if (pref === undefined) pref = 'default';
|
417 | result = call$2(exoticToPrim, input, pref);
|
418 | if (!isObject$5(result) || isSymbol$1(result)) return result;
|
419 | throw $TypeError$3("Can't convert object to primitive value");
|
420 | }
|
421 | if (pref === undefined) pref = 'number';
|
422 | return ordinaryToPrimitive(input, pref);
|
423 | };
|
424 |
|
425 | var toPrimitive = toPrimitive$1;
|
426 | var isSymbol = isSymbol$2;
|
427 |
|
428 |
|
429 |
|
430 | var toPropertyKey$3 = function (argument) {
|
431 | var key = toPrimitive(argument, 'string');
|
432 | return isSymbol(key) ? key : key + '';
|
433 | };
|
434 |
|
435 | var global$4 = global$a;
|
436 | var isObject$4 = isObject$7;
|
437 |
|
438 | var document$1 = global$4.document;
|
439 |
|
440 | var EXISTS$1 = isObject$4(document$1) && isObject$4(document$1.createElement);
|
441 |
|
442 | var documentCreateElement = function (it) {
|
443 | return EXISTS$1 ? document$1.createElement(it) : {};
|
444 | };
|
445 |
|
446 | var DESCRIPTORS$7 = descriptors;
|
447 | var fails$7 = fails$c;
|
448 | var createElement = documentCreateElement;
|
449 |
|
450 |
|
451 | var ie8DomDefine = !DESCRIPTORS$7 && !fails$7(function () {
|
452 |
|
453 | return Object.defineProperty(createElement('div'), 'a', {
|
454 | get: function () { return 7; }
|
455 | }).a != 7;
|
456 | });
|
457 |
|
458 | var DESCRIPTORS$6 = descriptors;
|
459 | var call$1 = functionCall;
|
460 | var propertyIsEnumerableModule$1 = objectPropertyIsEnumerable;
|
461 | var createPropertyDescriptor$2 = createPropertyDescriptor$3;
|
462 | var toIndexedObject$2 = toIndexedObject$3;
|
463 | var toPropertyKey$2 = toPropertyKey$3;
|
464 | var hasOwn$5 = hasOwnProperty_1;
|
465 | var IE8_DOM_DEFINE$1 = ie8DomDefine;
|
466 |
|
467 |
|
468 | var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
|
469 |
|
470 |
|
471 |
|
472 | objectGetOwnPropertyDescriptor.f = DESCRIPTORS$6 ? $getOwnPropertyDescriptor$1 : function getOwnPropertyDescriptor(O, P) {
|
473 | O = toIndexedObject$2(O);
|
474 | P = toPropertyKey$2(P);
|
475 | if (IE8_DOM_DEFINE$1) try {
|
476 | return $getOwnPropertyDescriptor$1(O, P);
|
477 | } catch (error) { }
|
478 | if (hasOwn$5(O, P)) return createPropertyDescriptor$2(!call$1(propertyIsEnumerableModule$1.f, O, P), O[P]);
|
479 | };
|
480 |
|
481 | var objectDefineProperty = {};
|
482 |
|
483 | var DESCRIPTORS$5 = descriptors;
|
484 | var fails$6 = fails$c;
|
485 |
|
486 |
|
487 |
|
488 | var v8PrototypeDefineBug = DESCRIPTORS$5 && fails$6(function () {
|
489 |
|
490 | return Object.defineProperty(function () { }, 'prototype', {
|
491 | value: 42,
|
492 | writable: false
|
493 | }).prototype != 42;
|
494 | });
|
495 |
|
496 | var isObject$3 = isObject$7;
|
497 |
|
498 | var $String$1 = String;
|
499 | var $TypeError$2 = TypeError;
|
500 |
|
501 |
|
502 | var anObject$2 = function (argument) {
|
503 | if (isObject$3(argument)) return argument;
|
504 | throw $TypeError$2($String$1(argument) + ' is not an object');
|
505 | };
|
506 |
|
507 | var DESCRIPTORS$4 = descriptors;
|
508 | var IE8_DOM_DEFINE = ie8DomDefine;
|
509 | var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
|
510 | var anObject$1 = anObject$2;
|
511 | var toPropertyKey$1 = toPropertyKey$3;
|
512 |
|
513 | var $TypeError$1 = TypeError;
|
514 |
|
515 | var $defineProperty = Object.defineProperty;
|
516 |
|
517 | var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
518 | var ENUMERABLE = 'enumerable';
|
519 | var CONFIGURABLE$1 = 'configurable';
|
520 | var WRITABLE = 'writable';
|
521 |
|
522 |
|
523 |
|
524 | objectDefineProperty.f = DESCRIPTORS$4 ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
|
525 | anObject$1(O);
|
526 | P = toPropertyKey$1(P);
|
527 | anObject$1(Attributes);
|
528 | if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
|
529 | var current = $getOwnPropertyDescriptor(O, P);
|
530 | if (current && current[WRITABLE]) {
|
531 | O[P] = Attributes.value;
|
532 | Attributes = {
|
533 | configurable: CONFIGURABLE$1 in Attributes ? Attributes[CONFIGURABLE$1] : current[CONFIGURABLE$1],
|
534 | enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
|
535 | writable: false
|
536 | };
|
537 | }
|
538 | } return $defineProperty(O, P, Attributes);
|
539 | } : $defineProperty : function defineProperty(O, P, Attributes) {
|
540 | anObject$1(O);
|
541 | P = toPropertyKey$1(P);
|
542 | anObject$1(Attributes);
|
543 | if (IE8_DOM_DEFINE) try {
|
544 | return $defineProperty(O, P, Attributes);
|
545 | } catch (error) { }
|
546 | if ('get' in Attributes || 'set' in Attributes) throw $TypeError$1('Accessors not supported');
|
547 | if ('value' in Attributes) O[P] = Attributes.value;
|
548 | return O;
|
549 | };
|
550 |
|
551 | var DESCRIPTORS$3 = descriptors;
|
552 | var definePropertyModule$3 = objectDefineProperty;
|
553 | var createPropertyDescriptor$1 = createPropertyDescriptor$3;
|
554 |
|
555 | var createNonEnumerableProperty$2 = DESCRIPTORS$3 ? function (object, key, value) {
|
556 | return definePropertyModule$3.f(object, key, createPropertyDescriptor$1(1, value));
|
557 | } : function (object, key, value) {
|
558 | object[key] = value;
|
559 | return object;
|
560 | };
|
561 |
|
562 | var makeBuiltInExports = {};
|
563 | var makeBuiltIn$2 = {
|
564 | get exports(){ return makeBuiltInExports; },
|
565 | set exports(v){ makeBuiltInExports = v; },
|
566 | };
|
567 |
|
568 | var DESCRIPTORS$2 = descriptors;
|
569 | var hasOwn$4 = hasOwnProperty_1;
|
570 |
|
571 | var FunctionPrototype = Function.prototype;
|
572 |
|
573 | var getDescriptor = DESCRIPTORS$2 && Object.getOwnPropertyDescriptor;
|
574 |
|
575 | var EXISTS = hasOwn$4(FunctionPrototype, 'name');
|
576 |
|
577 | var PROPER = EXISTS && (function something() { }).name === 'something';
|
578 | var CONFIGURABLE = EXISTS && (!DESCRIPTORS$2 || (DESCRIPTORS$2 && getDescriptor(FunctionPrototype, 'name').configurable));
|
579 |
|
580 | var functionName = {
|
581 | EXISTS: EXISTS,
|
582 | PROPER: PROPER,
|
583 | CONFIGURABLE: CONFIGURABLE
|
584 | };
|
585 |
|
586 | var uncurryThis$5 = functionUncurryThis;
|
587 | var isCallable$6 = isCallable$c;
|
588 | var store$1 = sharedStore;
|
589 |
|
590 | var functionToString = uncurryThis$5(Function.toString);
|
591 |
|
592 |
|
593 | if (!isCallable$6(store$1.inspectSource)) {
|
594 | store$1.inspectSource = function (it) {
|
595 | return functionToString(it);
|
596 | };
|
597 | }
|
598 |
|
599 | var inspectSource$2 = store$1.inspectSource;
|
600 |
|
601 | var global$3 = global$a;
|
602 | var isCallable$5 = isCallable$c;
|
603 |
|
604 | var WeakMap$1 = global$3.WeakMap;
|
605 |
|
606 | var weakMapBasicDetection = isCallable$5(WeakMap$1) && /native code/.test(String(WeakMap$1));
|
607 |
|
608 | var shared$1 = sharedExports;
|
609 | var uid = uid$2;
|
610 |
|
611 | var keys = shared$1('keys');
|
612 |
|
613 | var sharedKey$1 = function (key) {
|
614 | return keys[key] || (keys[key] = uid(key));
|
615 | };
|
616 |
|
617 | var hiddenKeys$3 = {};
|
618 |
|
619 | var NATIVE_WEAK_MAP = weakMapBasicDetection;
|
620 | var global$2 = global$a;
|
621 | var isObject$2 = isObject$7;
|
622 | var createNonEnumerableProperty$1 = createNonEnumerableProperty$2;
|
623 | var hasOwn$3 = hasOwnProperty_1;
|
624 | var shared = sharedStore;
|
625 | var sharedKey = sharedKey$1;
|
626 | var hiddenKeys$2 = hiddenKeys$3;
|
627 |
|
628 | var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
|
629 | var TypeError$1 = global$2.TypeError;
|
630 | var WeakMap = global$2.WeakMap;
|
631 | var set, get, has;
|
632 |
|
633 | var enforce = function (it) {
|
634 | return has(it) ? get(it) : set(it, {});
|
635 | };
|
636 |
|
637 | var getterFor = function (TYPE) {
|
638 | return function (it) {
|
639 | var state;
|
640 | if (!isObject$2(it) || (state = get(it)).type !== TYPE) {
|
641 | throw TypeError$1('Incompatible receiver, ' + TYPE + ' required');
|
642 | } return state;
|
643 | };
|
644 | };
|
645 |
|
646 | if (NATIVE_WEAK_MAP || shared.state) {
|
647 | var store = shared.state || (shared.state = new WeakMap());
|
648 |
|
649 | store.get = store.get;
|
650 | store.has = store.has;
|
651 | store.set = store.set;
|
652 |
|
653 | set = function (it, metadata) {
|
654 | if (store.has(it)) throw TypeError$1(OBJECT_ALREADY_INITIALIZED);
|
655 | metadata.facade = it;
|
656 | store.set(it, metadata);
|
657 | return metadata;
|
658 | };
|
659 | get = function (it) {
|
660 | return store.get(it) || {};
|
661 | };
|
662 | has = function (it) {
|
663 | return store.has(it);
|
664 | };
|
665 | } else {
|
666 | var STATE = sharedKey('state');
|
667 | hiddenKeys$2[STATE] = true;
|
668 | set = function (it, metadata) {
|
669 | if (hasOwn$3(it, STATE)) throw TypeError$1(OBJECT_ALREADY_INITIALIZED);
|
670 | metadata.facade = it;
|
671 | createNonEnumerableProperty$1(it, STATE, metadata);
|
672 | return metadata;
|
673 | };
|
674 | get = function (it) {
|
675 | return hasOwn$3(it, STATE) ? it[STATE] : {};
|
676 | };
|
677 | has = function (it) {
|
678 | return hasOwn$3(it, STATE);
|
679 | };
|
680 | }
|
681 |
|
682 | var internalState = {
|
683 | set: set,
|
684 | get: get,
|
685 | has: has,
|
686 | enforce: enforce,
|
687 | getterFor: getterFor
|
688 | };
|
689 |
|
690 | var uncurryThis$4 = functionUncurryThis;
|
691 | var fails$5 = fails$c;
|
692 | var isCallable$4 = isCallable$c;
|
693 | var hasOwn$2 = hasOwnProperty_1;
|
694 | var DESCRIPTORS$1 = descriptors;
|
695 | var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
|
696 | var inspectSource$1 = inspectSource$2;
|
697 | var InternalStateModule = internalState;
|
698 |
|
699 | var enforceInternalState = InternalStateModule.enforce;
|
700 | var getInternalState = InternalStateModule.get;
|
701 | var $String = String;
|
702 | // eslint-disable-next-line es/no-object-defineproperty -- safe
|
703 | var defineProperty$1 = Object.defineProperty;
|
704 | var stringSlice = uncurryThis$4(''.slice);
|
705 | var replace = uncurryThis$4(''.replace);
|
706 | var join = uncurryThis$4([].join);
|
707 |
|
708 | var CONFIGURABLE_LENGTH = DESCRIPTORS$1 && !fails$5(function () {
|
709 | return defineProperty$1(function () { }, 'length', { value: 8 }).length !== 8;
|
710 | });
|
711 |
|
712 | var TEMPLATE = String(String).split('String');
|
713 |
|
714 | var makeBuiltIn$1 = makeBuiltIn$2.exports = function (value, name, options) {
|
715 | if (stringSlice($String(name), 0, 7) === 'Symbol(') {
|
716 | name = '[' + replace($String(name), /^Symbol\(([^)]*)\)/, '$1') + ']';
|
717 | }
|
718 | if (options && options.getter) name = 'get ' + name;
|
719 | if (options && options.setter) name = 'set ' + name;
|
720 | if (!hasOwn$2(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
|
721 | if (DESCRIPTORS$1) defineProperty$1(value, 'name', { value: name, configurable: true });
|
722 | else value.name = name;
|
723 | }
|
724 | if (CONFIGURABLE_LENGTH && options && hasOwn$2(options, 'arity') && value.length !== options.arity) {
|
725 | defineProperty$1(value, 'length', { value: options.arity });
|
726 | }
|
727 | try {
|
728 | if (options && hasOwn$2(options, 'constructor') && options.constructor) {
|
729 | if (DESCRIPTORS$1) defineProperty$1(value, 'prototype', { writable: false });
|
730 |
|
731 | } else if (value.prototype) value.prototype = undefined;
|
732 | } catch (error) { }
|
733 | var state = enforceInternalState(value);
|
734 | if (!hasOwn$2(state, 'source')) {
|
735 | state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
|
736 | } return value;
|
737 | };
|
738 |
|
739 |
|
740 |
|
741 | Function.prototype.toString = makeBuiltIn$1(function toString() {
|
742 | return isCallable$4(this) && getInternalState(this).source || inspectSource$1(this);
|
743 | }, 'toString');
|
744 |
|
745 | var isCallable$3 = isCallable$c;
|
746 | var definePropertyModule$2 = objectDefineProperty;
|
747 | var makeBuiltIn = makeBuiltInExports;
|
748 | var defineGlobalProperty$1 = defineGlobalProperty$3;
|
749 |
|
750 | var defineBuiltIn$1 = function (O, key, value, options) {
|
751 | if (!options) options = {};
|
752 | var simple = options.enumerable;
|
753 | var name = options.name !== undefined ? options.name : key;
|
754 | if (isCallable$3(value)) makeBuiltIn(value, name, options);
|
755 | if (options.global) {
|
756 | if (simple) O[key] = value;
|
757 | else defineGlobalProperty$1(key, value);
|
758 | } else {
|
759 | try {
|
760 | if (!options.unsafe) delete O[key];
|
761 | else if (O[key]) simple = true;
|
762 | } catch (error) { }
|
763 | if (simple) O[key] = value;
|
764 | else definePropertyModule$2.f(O, key, {
|
765 | value: value,
|
766 | enumerable: false,
|
767 | configurable: !options.nonConfigurable,
|
768 | writable: !options.nonWritable
|
769 | });
|
770 | } return O;
|
771 | };
|
772 |
|
773 | var objectGetOwnPropertyNames = {};
|
774 |
|
775 | var ceil = Math.ceil;
|
776 | var floor = Math.floor;
|
777 |
|
778 |
|
779 |
|
780 |
|
781 | var mathTrunc = Math.trunc || function trunc(x) {
|
782 | var n = +x;
|
783 | return (n > 0 ? floor : ceil)(n);
|
784 | };
|
785 |
|
786 | var trunc = mathTrunc;
|
787 |
|
788 |
|
789 |
|
790 | var toIntegerOrInfinity$2 = function (argument) {
|
791 | var number = +argument;
|
792 |
|
793 | return number !== number || number === 0 ? 0 : trunc(number);
|
794 | };
|
795 |
|
796 | var toIntegerOrInfinity$1 = toIntegerOrInfinity$2;
|
797 |
|
798 | var max = Math.max;
|
799 | var min$1 = Math.min;
|
800 |
|
801 |
|
802 |
|
803 |
|
804 | var toAbsoluteIndex$1 = function (index, length) {
|
805 | var integer = toIntegerOrInfinity$1(index);
|
806 | return integer < 0 ? max(integer + length, 0) : min$1(integer, length);
|
807 | };
|
808 |
|
809 | var toIntegerOrInfinity = toIntegerOrInfinity$2;
|
810 |
|
811 | var min = Math.min;
|
812 |
|
813 |
|
814 |
|
815 | var toLength$1 = function (argument) {
|
816 | return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0;
|
817 | };
|
818 |
|
819 | var toLength = toLength$1;
|
820 |
|
821 |
|
822 |
|
823 | var lengthOfArrayLike$2 = function (obj) {
|
824 | return toLength(obj.length);
|
825 | };
|
826 |
|
827 | var toIndexedObject$1 = toIndexedObject$3;
|
828 | var toAbsoluteIndex = toAbsoluteIndex$1;
|
829 | var lengthOfArrayLike$1 = lengthOfArrayLike$2;
|
830 |
|
831 |
|
832 | var createMethod = function (IS_INCLUDES) {
|
833 | return function ($this, el, fromIndex) {
|
834 | var O = toIndexedObject$1($this);
|
835 | var length = lengthOfArrayLike$1(O);
|
836 | var index = toAbsoluteIndex(fromIndex, length);
|
837 | var value;
|
838 |
|
839 |
|
840 | if (IS_INCLUDES && el != el) while (length > index) {
|
841 | value = O[index++];
|
842 |
|
843 | if (value != value) return true;
|
844 |
|
845 | } else for (;length > index; index++) {
|
846 | if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
|
847 | } return !IS_INCLUDES && -1;
|
848 | };
|
849 | };
|
850 |
|
851 | var arrayIncludes = {
|
852 |
|
853 |
|
854 | includes: createMethod(true),
|
855 |
|
856 |
|
857 | indexOf: createMethod(false)
|
858 | };
|
859 |
|
860 | var uncurryThis$3 = functionUncurryThis;
|
861 | var hasOwn$1 = hasOwnProperty_1;
|
862 | var toIndexedObject = toIndexedObject$3;
|
863 | var indexOf = arrayIncludes.indexOf;
|
864 | var hiddenKeys$1 = hiddenKeys$3;
|
865 |
|
866 | var push = uncurryThis$3([].push);
|
867 |
|
868 | var objectKeysInternal = function (object, names) {
|
869 | var O = toIndexedObject(object);
|
870 | var i = 0;
|
871 | var result = [];
|
872 | var key;
|
873 | for (key in O) !hasOwn$1(hiddenKeys$1, key) && hasOwn$1(O, key) && push(result, key);
|
874 |
|
875 | while (names.length > i) if (hasOwn$1(O, key = names[i++])) {
|
876 | ~indexOf(result, key) || push(result, key);
|
877 | }
|
878 | return result;
|
879 | };
|
880 |
|
881 |
|
882 | var enumBugKeys$2 = [
|
883 | 'constructor',
|
884 | 'hasOwnProperty',
|
885 | 'isPrototypeOf',
|
886 | 'propertyIsEnumerable',
|
887 | 'toLocaleString',
|
888 | 'toString',
|
889 | 'valueOf'
|
890 | ];
|
891 |
|
892 | var internalObjectKeys$1 = objectKeysInternal;
|
893 | var enumBugKeys$1 = enumBugKeys$2;
|
894 |
|
895 | var hiddenKeys = enumBugKeys$1.concat('length', 'prototype');
|
896 |
|
897 |
|
898 |
|
899 |
|
900 | objectGetOwnPropertyNames.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
901 | return internalObjectKeys$1(O, hiddenKeys);
|
902 | };
|
903 |
|
904 | var objectGetOwnPropertySymbols = {};
|
905 |
|
906 |
|
907 | objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
|
908 |
|
909 | var getBuiltIn$1 = getBuiltIn$3;
|
910 | var uncurryThis$2 = functionUncurryThis;
|
911 | var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
|
912 | var getOwnPropertySymbolsModule$1 = objectGetOwnPropertySymbols;
|
913 | var anObject = anObject$2;
|
914 |
|
915 | var concat$1 = uncurryThis$2([].concat);
|
916 |
|
917 |
|
918 | var ownKeys$1 = getBuiltIn$1('Reflect', 'ownKeys') || function ownKeys(it) {
|
919 | var keys = getOwnPropertyNamesModule.f(anObject(it));
|
920 | var getOwnPropertySymbols = getOwnPropertySymbolsModule$1.f;
|
921 | return getOwnPropertySymbols ? concat$1(keys, getOwnPropertySymbols(it)) : keys;
|
922 | };
|
923 |
|
924 | var hasOwn = hasOwnProperty_1;
|
925 | var ownKeys = ownKeys$1;
|
926 | var getOwnPropertyDescriptorModule = objectGetOwnPropertyDescriptor;
|
927 | var definePropertyModule$1 = objectDefineProperty;
|
928 |
|
929 | var copyConstructorProperties$1 = function (target, source, exceptions) {
|
930 | var keys = ownKeys(source);
|
931 | var defineProperty = definePropertyModule$1.f;
|
932 | var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
|
933 | for (var i = 0; i < keys.length; i++) {
|
934 | var key = keys[i];
|
935 | if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) {
|
936 | defineProperty(target, key, getOwnPropertyDescriptor(source, key));
|
937 | }
|
938 | }
|
939 | };
|
940 |
|
941 | var fails$4 = fails$c;
|
942 | var isCallable$2 = isCallable$c;
|
943 |
|
944 | var replacement = /#|\.prototype\./;
|
945 |
|
946 | var isForced$1 = function (feature, detection) {
|
947 | var value = data[normalize(feature)];
|
948 | return value == POLYFILL ? true
|
949 | : value == NATIVE ? false
|
950 | : isCallable$2(detection) ? fails$4(detection)
|
951 | : !!detection;
|
952 | };
|
953 |
|
954 | var normalize = isForced$1.normalize = function (string) {
|
955 | return String(string).replace(replacement, '.').toLowerCase();
|
956 | };
|
957 |
|
958 | var data = isForced$1.data = {};
|
959 | var NATIVE = isForced$1.NATIVE = 'N';
|
960 | var POLYFILL = isForced$1.POLYFILL = 'P';
|
961 |
|
962 | var isForced_1 = isForced$1;
|
963 |
|
964 | var global$1 = global$a;
|
965 | var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
|
966 | var createNonEnumerableProperty = createNonEnumerableProperty$2;
|
967 | var defineBuiltIn = defineBuiltIn$1;
|
968 | var defineGlobalProperty = defineGlobalProperty$3;
|
969 | var copyConstructorProperties = copyConstructorProperties$1;
|
970 | var isForced = isForced_1;
|
971 |
|
972 | |
973 |
|
974 |
|
975 |
|
976 |
|
977 |
|
978 |
|
979 |
|
980 |
|
981 |
|
982 |
|
983 |
|
984 |
|
985 |
|
986 |
|
987 | var _export = function (options, source) {
|
988 | var TARGET = options.target;
|
989 | var GLOBAL = options.global;
|
990 | var STATIC = options.stat;
|
991 | var FORCED, target, key, targetProperty, sourceProperty, descriptor;
|
992 | if (GLOBAL) {
|
993 | target = global$1;
|
994 | } else if (STATIC) {
|
995 | target = global$1[TARGET] || defineGlobalProperty(TARGET, {});
|
996 | } else {
|
997 | target = (global$1[TARGET] || {}).prototype;
|
998 | }
|
999 | if (target) for (key in source) {
|
1000 | sourceProperty = source[key];
|
1001 | if (options.dontCallGetSet) {
|
1002 | descriptor = getOwnPropertyDescriptor(target, key);
|
1003 | targetProperty = descriptor && descriptor.value;
|
1004 | } else targetProperty = target[key];
|
1005 | FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
|
1006 |
|
1007 | if (!FORCED && targetProperty !== undefined) {
|
1008 | if (typeof sourceProperty == typeof targetProperty) continue;
|
1009 | copyConstructorProperties(sourceProperty, targetProperty);
|
1010 | }
|
1011 |
|
1012 | if (options.sham || (targetProperty && targetProperty.sham)) {
|
1013 | createNonEnumerableProperty(sourceProperty, 'sham', true);
|
1014 | }
|
1015 | defineBuiltIn(target, key, sourceProperty, options);
|
1016 | }
|
1017 | };
|
1018 |
|
1019 | var classof$2 = classofRaw$1;
|
1020 |
|
1021 |
|
1022 |
|
1023 |
|
1024 | var isArray$2 = Array.isArray || function isArray(argument) {
|
1025 | return classof$2(argument) == 'Array';
|
1026 | };
|
1027 |
|
1028 | var $TypeError = TypeError;
|
1029 | var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;
|
1030 |
|
1031 | var doesNotExceedSafeInteger$1 = function (it) {
|
1032 | if (it > MAX_SAFE_INTEGER) throw $TypeError('Maximum allowed index exceeded');
|
1033 | return it;
|
1034 | };
|
1035 |
|
1036 | var toPropertyKey = toPropertyKey$3;
|
1037 | var definePropertyModule = objectDefineProperty;
|
1038 | var createPropertyDescriptor = createPropertyDescriptor$3;
|
1039 |
|
1040 | var createProperty$1 = function (object, key, value) {
|
1041 | var propertyKey = toPropertyKey(key);
|
1042 | if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));
|
1043 | else object[propertyKey] = value;
|
1044 | };
|
1045 |
|
1046 | var wellKnownSymbol$4 = wellKnownSymbol$6;
|
1047 |
|
1048 | var TO_STRING_TAG$1 = wellKnownSymbol$4('toStringTag');
|
1049 | var test = {};
|
1050 |
|
1051 | test[TO_STRING_TAG$1] = 'z';
|
1052 |
|
1053 | var toStringTagSupport = String(test) === '[object z]';
|
1054 |
|
1055 | var TO_STRING_TAG_SUPPORT = toStringTagSupport;
|
1056 | var isCallable$1 = isCallable$c;
|
1057 | var classofRaw = classofRaw$1;
|
1058 | var wellKnownSymbol$3 = wellKnownSymbol$6;
|
1059 |
|
1060 | var TO_STRING_TAG = wellKnownSymbol$3('toStringTag');
|
1061 | var $Object = Object;
|
1062 |
|
1063 |
|
1064 | var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
|
1065 |
|
1066 |
|
1067 | var tryGet = function (it, key) {
|
1068 | try {
|
1069 | return it[key];
|
1070 | } catch (error) { }
|
1071 | };
|
1072 |
|
1073 |
|
1074 | var classof$1 = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
|
1075 | var O, tag, result;
|
1076 | return it === undefined ? 'Undefined' : it === null ? 'Null'
|
1077 |
|
1078 | : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
|
1079 |
|
1080 | : CORRECT_ARGUMENTS ? classofRaw(O)
|
1081 |
|
1082 | : (result = classofRaw(O)) == 'Object' && isCallable$1(O.callee) ? 'Arguments' : result;
|
1083 | };
|
1084 |
|
1085 | var uncurryThis$1 = functionUncurryThis;
|
1086 | var fails$3 = fails$c;
|
1087 | var isCallable = isCallable$c;
|
1088 | var classof = classof$1;
|
1089 | var getBuiltIn = getBuiltIn$3;
|
1090 | var inspectSource = inspectSource$2;
|
1091 |
|
1092 | var noop = function () { };
|
1093 | var empty = [];
|
1094 | var construct = getBuiltIn('Reflect', 'construct');
|
1095 | var constructorRegExp = /^\s*(?:class|function)\b/;
|
1096 | var exec = uncurryThis$1(constructorRegExp.exec);
|
1097 | var INCORRECT_TO_STRING = !constructorRegExp.exec(noop);
|
1098 |
|
1099 | var isConstructorModern = function isConstructor(argument) {
|
1100 | if (!isCallable(argument)) return false;
|
1101 | try {
|
1102 | construct(noop, empty, argument);
|
1103 | return true;
|
1104 | } catch (error) {
|
1105 | return false;
|
1106 | }
|
1107 | };
|
1108 |
|
1109 | var isConstructorLegacy = function isConstructor(argument) {
|
1110 | if (!isCallable(argument)) return false;
|
1111 | switch (classof(argument)) {
|
1112 | case 'AsyncFunction':
|
1113 | case 'GeneratorFunction':
|
1114 | case 'AsyncGeneratorFunction': return false;
|
1115 | }
|
1116 | try {
|
1117 |
|
1118 |
|
1119 |
|
1120 | return INCORRECT_TO_STRING || !!exec(constructorRegExp, inspectSource(argument));
|
1121 | } catch (error) {
|
1122 | return true;
|
1123 | }
|
1124 | };
|
1125 |
|
1126 | isConstructorLegacy.sham = true;
|
1127 |
|
1128 |
|
1129 |
|
1130 | var isConstructor$1 = !construct || fails$3(function () {
|
1131 | var called;
|
1132 | return isConstructorModern(isConstructorModern.call)
|
1133 | || !isConstructorModern(Object)
|
1134 | || !isConstructorModern(function () { called = true; })
|
1135 | || called;
|
1136 | }) ? isConstructorLegacy : isConstructorModern;
|
1137 |
|
1138 | var isArray$1 = isArray$2;
|
1139 | var isConstructor = isConstructor$1;
|
1140 | var isObject$1 = isObject$7;
|
1141 | var wellKnownSymbol$2 = wellKnownSymbol$6;
|
1142 |
|
1143 | var SPECIES$1 = wellKnownSymbol$2('species');
|
1144 | var $Array = Array;
|
1145 |
|
1146 |
|
1147 |
|
1148 | var arraySpeciesConstructor$1 = function (originalArray) {
|
1149 | var C;
|
1150 | if (isArray$1(originalArray)) {
|
1151 | C = originalArray.constructor;
|
1152 |
|
1153 | if (isConstructor(C) && (C === $Array || isArray$1(C.prototype))) C = undefined;
|
1154 | else if (isObject$1(C)) {
|
1155 | C = C[SPECIES$1];
|
1156 | if (C === null) C = undefined;
|
1157 | }
|
1158 | } return C === undefined ? $Array : C;
|
1159 | };
|
1160 |
|
1161 | var arraySpeciesConstructor = arraySpeciesConstructor$1;
|
1162 |
|
1163 |
|
1164 |
|
1165 | var arraySpeciesCreate$1 = function (originalArray, length) {
|
1166 | return new (arraySpeciesConstructor(originalArray))(length === 0 ? 0 : length);
|
1167 | };
|
1168 |
|
1169 | var fails$2 = fails$c;
|
1170 | var wellKnownSymbol$1 = wellKnownSymbol$6;
|
1171 | var V8_VERSION$1 = engineV8Version;
|
1172 |
|
1173 | var SPECIES = wellKnownSymbol$1('species');
|
1174 |
|
1175 | var arrayMethodHasSpeciesSupport$1 = function (METHOD_NAME) {
|
1176 |
|
1177 |
|
1178 |
|
1179 | return V8_VERSION$1 >= 51 || !fails$2(function () {
|
1180 | var array = [];
|
1181 | var constructor = array.constructor = {};
|
1182 | constructor[SPECIES] = function () {
|
1183 | return { foo: 1 };
|
1184 | };
|
1185 | return array[METHOD_NAME](Boolean).foo !== 1;
|
1186 | });
|
1187 | };
|
1188 |
|
1189 | var $$1 = _export;
|
1190 | var fails$1 = fails$c;
|
1191 | var isArray = isArray$2;
|
1192 | var isObject = isObject$7;
|
1193 | var toObject$1 = toObject$3;
|
1194 | var lengthOfArrayLike = lengthOfArrayLike$2;
|
1195 | var doesNotExceedSafeInteger = doesNotExceedSafeInteger$1;
|
1196 | var createProperty = createProperty$1;
|
1197 | var arraySpeciesCreate = arraySpeciesCreate$1;
|
1198 | var arrayMethodHasSpeciesSupport = arrayMethodHasSpeciesSupport$1;
|
1199 | var wellKnownSymbol = wellKnownSymbol$6;
|
1200 | var V8_VERSION = engineV8Version;
|
1201 |
|
1202 | var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');
|
1203 |
|
1204 |
|
1205 |
|
1206 |
|
1207 | var IS_CONCAT_SPREADABLE_SUPPORT = V8_VERSION >= 51 || !fails$1(function () {
|
1208 | var array = [];
|
1209 | array[IS_CONCAT_SPREADABLE] = false;
|
1210 | return array.concat()[0] !== array;
|
1211 | });
|
1212 |
|
1213 | var isConcatSpreadable = function (O) {
|
1214 | if (!isObject(O)) return false;
|
1215 | var spreadable = O[IS_CONCAT_SPREADABLE];
|
1216 | return spreadable !== undefined ? !!spreadable : isArray(O);
|
1217 | };
|
1218 |
|
1219 | var FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !arrayMethodHasSpeciesSupport('concat');
|
1220 |
|
1221 |
|
1222 |
|
1223 |
|
1224 | $$1({ target: 'Array', proto: true, arity: 1, forced: FORCED }, {
|
1225 |
|
1226 | concat: function concat(arg) {
|
1227 | var O = toObject$1(this);
|
1228 | var A = arraySpeciesCreate(O, 0);
|
1229 | var n = 0;
|
1230 | var i, k, length, len, E;
|
1231 | for (i = -1, length = arguments.length; i < length; i++) {
|
1232 | E = i === -1 ? O : arguments[i];
|
1233 | if (isConcatSpreadable(E)) {
|
1234 | len = lengthOfArrayLike(E);
|
1235 | doesNotExceedSafeInteger(n + len);
|
1236 | for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);
|
1237 | } else {
|
1238 | doesNotExceedSafeInteger(n + 1);
|
1239 | createProperty(A, n++, E);
|
1240 | }
|
1241 | }
|
1242 | A.length = n;
|
1243 | return A;
|
1244 | }
|
1245 | });
|
1246 |
|
1247 | var internalObjectKeys = objectKeysInternal;
|
1248 | var enumBugKeys = enumBugKeys$2;
|
1249 |
|
1250 |
|
1251 |
|
1252 |
|
1253 | var objectKeys$1 = Object.keys || function keys(O) {
|
1254 | return internalObjectKeys(O, enumBugKeys);
|
1255 | };
|
1256 |
|
1257 | var DESCRIPTORS = descriptors;
|
1258 | var uncurryThis = functionUncurryThis;
|
1259 | var call = functionCall;
|
1260 | var fails = fails$c;
|
1261 | var objectKeys = objectKeys$1;
|
1262 | var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
|
1263 | var propertyIsEnumerableModule = objectPropertyIsEnumerable;
|
1264 | var toObject = toObject$3;
|
1265 | var IndexedObject = indexedObject;
|
1266 |
|
1267 |
|
1268 | var $assign = Object.assign;
|
1269 |
|
1270 | var defineProperty = Object.defineProperty;
|
1271 | var concat = uncurryThis([].concat);
|
1272 |
|
1273 |
|
1274 |
|
1275 | var objectAssign = !$assign || fails(function () {
|
1276 |
|
1277 | if (DESCRIPTORS && $assign({ b: 1 }, $assign(defineProperty({}, 'a', {
|
1278 | enumerable: true,
|
1279 | get: function () {
|
1280 | defineProperty(this, 'b', {
|
1281 | value: 3,
|
1282 | enumerable: false
|
1283 | });
|
1284 | }
|
1285 | }), { b: 2 })).b !== 1) return true;
|
1286 |
|
1287 | var A = {};
|
1288 | var B = {};
|
1289 |
|
1290 | var symbol = Symbol();
|
1291 | var alphabet = 'abcdefghijklmnopqrst';
|
1292 | A[symbol] = 7;
|
1293 | alphabet.split('').forEach(function (chr) { B[chr] = chr; });
|
1294 | return $assign({}, A)[symbol] != 7 || objectKeys($assign({}, B)).join('') != alphabet;
|
1295 | }) ? function assign(target, source) {
|
1296 | var T = toObject(target);
|
1297 | var argumentsLength = arguments.length;
|
1298 | var index = 1;
|
1299 | var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
|
1300 | var propertyIsEnumerable = propertyIsEnumerableModule.f;
|
1301 | while (argumentsLength > index) {
|
1302 | var S = IndexedObject(arguments[index++]);
|
1303 | var keys = getOwnPropertySymbols ? concat(objectKeys(S), getOwnPropertySymbols(S)) : objectKeys(S);
|
1304 | var length = keys.length;
|
1305 | var j = 0;
|
1306 | var key;
|
1307 | while (length > j) {
|
1308 | key = keys[j++];
|
1309 | if (!DESCRIPTORS || call(propertyIsEnumerable, S, key)) T[key] = S[key];
|
1310 | }
|
1311 | } return T;
|
1312 | } : $assign;
|
1313 |
|
1314 | var $ = _export;
|
1315 | var assign = objectAssign;
|
1316 |
|
1317 |
|
1318 |
|
1319 |
|
1320 | $({ target: 'Object', stat: true, arity: 2, forced: Object.assign !== assign }, {
|
1321 | assign: assign
|
1322 | });
|
1323 |
|
1324 | |
1325 |
|
1326 |
|
1327 |
|
1328 |
|
1329 | $$2.fn.bootstrapTable.locales['af-ZA'] = $$2.fn.bootstrapTable.locales['af'] = {
|
1330 | formatCopyRows: function formatCopyRows() {
|
1331 | return 'Copy Rows';
|
1332 | },
|
1333 | formatPrint: function formatPrint() {
|
1334 | return 'Print';
|
1335 | },
|
1336 | formatLoadingMessage: function formatLoadingMessage() {
|
1337 | return 'Besig om te laai, wag asseblief';
|
1338 | },
|
1339 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
1340 | return "".concat(pageNumber, " rekords per bladsy");
|
1341 | },
|
1342 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
1343 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
1344 | return "Resultate ".concat(pageFrom, " tot ").concat(pageTo, " van ").concat(totalRows, " rye (filtered from ").concat(totalNotFiltered, " total rows)");
|
1345 | }
|
1346 | return "Resultate ".concat(pageFrom, " tot ").concat(pageTo, " van ").concat(totalRows, " rye");
|
1347 | },
|
1348 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
1349 | return 'previous page';
|
1350 | },
|
1351 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
1352 | return "to page ".concat(page);
|
1353 | },
|
1354 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
1355 | return 'next page';
|
1356 | },
|
1357 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
1358 | return "Showing ".concat(totalRows, " rows");
|
1359 | },
|
1360 | formatClearSearch: function formatClearSearch() {
|
1361 | return 'Clear Search';
|
1362 | },
|
1363 | formatSearch: function formatSearch() {
|
1364 | return 'Soek';
|
1365 | },
|
1366 | formatNoMatches: function formatNoMatches() {
|
1367 | return 'Geen rekords gevind nie';
|
1368 | },
|
1369 | formatPaginationSwitch: function formatPaginationSwitch() {
|
1370 | return 'Wys/verberg bladsy nummering';
|
1371 | },
|
1372 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
1373 | return 'Show pagination';
|
1374 | },
|
1375 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
1376 | return 'Hide pagination';
|
1377 | },
|
1378 | formatRefresh: function formatRefresh() {
|
1379 | return 'Herlaai';
|
1380 | },
|
1381 | formatToggleOn: function formatToggleOn() {
|
1382 | return 'Show card view';
|
1383 | },
|
1384 | formatToggleOff: function formatToggleOff() {
|
1385 | return 'Hide card view';
|
1386 | },
|
1387 | formatColumns: function formatColumns() {
|
1388 | return 'Kolomme';
|
1389 | },
|
1390 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
1391 | return 'Toggle all';
|
1392 | },
|
1393 | formatFullscreen: function formatFullscreen() {
|
1394 | return 'Fullscreen';
|
1395 | },
|
1396 | formatAllRows: function formatAllRows() {
|
1397 | return 'All';
|
1398 | },
|
1399 | formatAutoRefresh: function formatAutoRefresh() {
|
1400 | return 'Auto Refresh';
|
1401 | },
|
1402 | formatExport: function formatExport() {
|
1403 | return 'Export data';
|
1404 | },
|
1405 | formatJumpTo: function formatJumpTo() {
|
1406 | return 'GO';
|
1407 | },
|
1408 | formatAdvancedSearch: function formatAdvancedSearch() {
|
1409 | return 'Advanced search';
|
1410 | },
|
1411 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
1412 | return 'Close';
|
1413 | },
|
1414 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
1415 | return 'Hide/Show controls';
|
1416 | },
|
1417 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
1418 | return 'Hide controls';
|
1419 | },
|
1420 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
1421 | return 'Show controls';
|
1422 | }
|
1423 | };
|
1424 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['af-ZA']);
|
1425 |
|
1426 | |
1427 |
|
1428 |
|
1429 |
|
1430 |
|
1431 | $$2.fn.bootstrapTable.locales['ar-SA'] = $$2.fn.bootstrapTable.locales['ar'] = {
|
1432 | formatCopyRows: function formatCopyRows() {
|
1433 | return 'Copy Rows';
|
1434 | },
|
1435 | formatPrint: function formatPrint() {
|
1436 | return 'Print';
|
1437 | },
|
1438 | formatLoadingMessage: function formatLoadingMessage() {
|
1439 | return 'جاري التحميل, يرجى الإنتظار';
|
1440 | },
|
1441 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
1442 | return "".concat(pageNumber, " \u0633\u062C\u0644 \u0644\u0643\u0644 \u0635\u0641\u062D\u0629");
|
1443 | },
|
1444 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
1445 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
1446 | 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)");
|
1447 | }
|
1448 | return "\u0627\u0644\u0638\u0627\u0647\u0631 ".concat(pageFrom, " \u0625\u0644\u0649 ").concat(pageTo, " \u0645\u0646 ").concat(totalRows, " \u0633\u062C\u0644");
|
1449 | },
|
1450 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
1451 | return 'previous page';
|
1452 | },
|
1453 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
1454 | return "to page ".concat(page);
|
1455 | },
|
1456 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
1457 | return 'next page';
|
1458 | },
|
1459 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
1460 | return "Showing ".concat(totalRows, " rows");
|
1461 | },
|
1462 | formatClearSearch: function formatClearSearch() {
|
1463 | return 'Clear Search';
|
1464 | },
|
1465 | formatSearch: function formatSearch() {
|
1466 | return 'بحث';
|
1467 | },
|
1468 | formatNoMatches: function formatNoMatches() {
|
1469 | return 'لا توجد نتائج مطابقة للبحث';
|
1470 | },
|
1471 | formatPaginationSwitch: function formatPaginationSwitch() {
|
1472 |
|
1473 | return 'إخفاء\إظهار ترقيم الصفحات';
|
1474 | },
|
1475 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
1476 | return 'Show pagination';
|
1477 | },
|
1478 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
1479 | return 'Hide pagination';
|
1480 | },
|
1481 | formatRefresh: function formatRefresh() {
|
1482 | return 'تحديث';
|
1483 | },
|
1484 | formatToggleOn: function formatToggleOn() {
|
1485 | return 'Show card view';
|
1486 | },
|
1487 | formatToggleOff: function formatToggleOff() {
|
1488 | return 'Hide card view';
|
1489 | },
|
1490 | formatColumns: function formatColumns() {
|
1491 | return 'أعمدة';
|
1492 | },
|
1493 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
1494 | return 'Toggle all';
|
1495 | },
|
1496 | formatFullscreen: function formatFullscreen() {
|
1497 | return 'Fullscreen';
|
1498 | },
|
1499 | formatAllRows: function formatAllRows() {
|
1500 | return 'All';
|
1501 | },
|
1502 | formatAutoRefresh: function formatAutoRefresh() {
|
1503 | return 'Auto Refresh';
|
1504 | },
|
1505 | formatExport: function formatExport() {
|
1506 | return 'Export data';
|
1507 | },
|
1508 | formatJumpTo: function formatJumpTo() {
|
1509 | return 'GO';
|
1510 | },
|
1511 | formatAdvancedSearch: function formatAdvancedSearch() {
|
1512 | return 'Advanced search';
|
1513 | },
|
1514 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
1515 | return 'Close';
|
1516 | },
|
1517 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
1518 | return 'Hide/Show controls';
|
1519 | },
|
1520 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
1521 | return 'Hide controls';
|
1522 | },
|
1523 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
1524 | return 'Show controls';
|
1525 | }
|
1526 | };
|
1527 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['ar-SA']);
|
1528 |
|
1529 | |
1530 |
|
1531 |
|
1532 |
|
1533 |
|
1534 | $$2.fn.bootstrapTable.locales['bg-BG'] = $$2.fn.bootstrapTable.locales['bg'] = {
|
1535 | formatCopyRows: function formatCopyRows() {
|
1536 | return 'Копиране на редове';
|
1537 | },
|
1538 | formatPrint: function formatPrint() {
|
1539 | return 'Печат';
|
1540 | },
|
1541 | formatLoadingMessage: function formatLoadingMessage() {
|
1542 | return 'Зареждане, моля изчакайте';
|
1543 | },
|
1544 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
1545 | return "".concat(pageNumber, " \u0440\u0435\u0434\u0430 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430");
|
1546 | },
|
1547 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
1548 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
1549 | return "\u041F\u043E\u043A\u0430\u0437\u0430\u043D\u0438 \u0440\u0435\u0434\u043E\u0432\u0435 \u043E\u0442 ".concat(pageFrom, " \u0434\u043E ").concat(pageTo, " \u043E\u0442 ").concat(totalRows, " (\u0444\u0438\u043B\u0442\u0440\u0438\u0440\u0430\u043D\u0438 \u043E\u0442 \u043E\u0431\u0449\u043E ").concat(totalNotFiltered, ")");
|
1550 | }
|
1551 | return "\u041F\u043E\u043A\u0430\u0437\u0430\u043D\u0438 \u0440\u0435\u0434\u043E\u0432\u0435 \u043E\u0442 ".concat(pageFrom, " \u0434\u043E ").concat(pageTo, " \u043E\u0442 \u043E\u0431\u0449\u043E ").concat(totalRows);
|
1552 | },
|
1553 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
1554 | return 'предишна страница';
|
1555 | },
|
1556 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
1557 | return "\u0434\u043E \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430 ".concat(page);
|
1558 | },
|
1559 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
1560 | return 'следваща страница';
|
1561 | },
|
1562 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
1563 | return "\u041F\u043E\u043A\u0430\u0437\u0430\u043D\u0438 ".concat(totalRows, " \u0440\u0435\u0434\u0430");
|
1564 | },
|
1565 | formatClearSearch: function formatClearSearch() {
|
1566 | return 'Изчистване на търсенето';
|
1567 | },
|
1568 | formatSearch: function formatSearch() {
|
1569 | return 'Търсене';
|
1570 | },
|
1571 | formatNoMatches: function formatNoMatches() {
|
1572 | return 'Не са намерени съвпадащи записи';
|
1573 | },
|
1574 | formatPaginationSwitch: function formatPaginationSwitch() {
|
1575 | return 'Скриване/Показване на странициране';
|
1576 | },
|
1577 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
1578 | return 'Показване на странициране';
|
1579 | },
|
1580 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
1581 | return 'Скриване на странициране';
|
1582 | },
|
1583 | formatRefresh: function formatRefresh() {
|
1584 | return 'Обновяване';
|
1585 | },
|
1586 | formatToggleOn: function formatToggleOn() {
|
1587 | return 'Показване на изглед карта';
|
1588 | },
|
1589 | formatToggleOff: function formatToggleOff() {
|
1590 | return 'Скриване на изглед карта';
|
1591 | },
|
1592 | formatColumns: function formatColumns() {
|
1593 | return 'Колони';
|
1594 | },
|
1595 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
1596 | return 'Превключване на всички';
|
1597 | },
|
1598 | formatFullscreen: function formatFullscreen() {
|
1599 | return 'Цял екран';
|
1600 | },
|
1601 | formatAllRows: function formatAllRows() {
|
1602 | return 'Всички';
|
1603 | },
|
1604 | formatAutoRefresh: function formatAutoRefresh() {
|
1605 | return 'Автоматично обновяване';
|
1606 | },
|
1607 | formatExport: function formatExport() {
|
1608 | return 'Експорт на данни';
|
1609 | },
|
1610 | formatJumpTo: function formatJumpTo() {
|
1611 | return 'ОТИДИ';
|
1612 | },
|
1613 | formatAdvancedSearch: function formatAdvancedSearch() {
|
1614 | return 'Разширено търсене';
|
1615 | },
|
1616 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
1617 | return 'Затваряне';
|
1618 | },
|
1619 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
1620 | return 'Скрива/показва контроли';
|
1621 | },
|
1622 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
1623 | return 'Скрива контроли';
|
1624 | },
|
1625 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
1626 | return 'Показва контроли';
|
1627 | }
|
1628 | };
|
1629 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['bg-BG']);
|
1630 |
|
1631 | |
1632 |
|
1633 |
|
1634 |
|
1635 |
|
1636 |
|
1637 |
|
1638 | $$2.fn.bootstrapTable.locales['ca-ES'] = $$2.fn.bootstrapTable.locales['ca'] = {
|
1639 | formatCopyRows: function formatCopyRows() {
|
1640 | return 'Copia resultats';
|
1641 | },
|
1642 | formatPrint: function formatPrint() {
|
1643 | return 'Imprimeix';
|
1644 | },
|
1645 | formatLoadingMessage: function formatLoadingMessage() {
|
1646 | return 'Espereu, si us plau';
|
1647 | },
|
1648 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
1649 | return "".concat(pageNumber, " resultats per p\xE0gina");
|
1650 | },
|
1651 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
1652 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
1653 | return "Mostrant resultats ".concat(pageFrom, " fins ").concat(pageTo, " - ").concat(totalRows, " resultats (filtrats d'un total de ").concat(totalNotFiltered, " resultats)");
|
1654 | }
|
1655 | return "Mostrant resultats ".concat(pageFrom, " fins ").concat(pageTo, " - ").concat(totalRows, " resultats en total");
|
1656 | },
|
1657 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
1658 | return 'Pàgina anterior';
|
1659 | },
|
1660 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
1661 | return "A la p\xE0gina ".concat(page);
|
1662 | },
|
1663 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
1664 | return 'Pàgina següent';
|
1665 | },
|
1666 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
1667 | return "Mostrant ".concat(totalRows, " resultats");
|
1668 | },
|
1669 | formatClearSearch: function formatClearSearch() {
|
1670 | return 'Neteja cerca';
|
1671 | },
|
1672 | formatSearch: function formatSearch() {
|
1673 | return 'Cerca';
|
1674 | },
|
1675 | formatNoMatches: function formatNoMatches() {
|
1676 | return 'No s\'han trobat resultats';
|
1677 | },
|
1678 | formatPaginationSwitch: function formatPaginationSwitch() {
|
1679 | return 'Amaga/Mostra paginació';
|
1680 | },
|
1681 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
1682 | return 'Mostra paginació';
|
1683 | },
|
1684 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
1685 | return 'Amaga paginació';
|
1686 | },
|
1687 | formatRefresh: function formatRefresh() {
|
1688 | return 'Refresca';
|
1689 | },
|
1690 | formatToggleOn: function formatToggleOn() {
|
1691 | return 'Mostra vista de tarjeta';
|
1692 | },
|
1693 | formatToggleOff: function formatToggleOff() {
|
1694 | return 'Amaga vista de tarjeta';
|
1695 | },
|
1696 | formatColumns: function formatColumns() {
|
1697 | return 'Columnes';
|
1698 | },
|
1699 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
1700 | return 'Alterna totes';
|
1701 | },
|
1702 | formatFullscreen: function formatFullscreen() {
|
1703 | return 'Pantalla completa';
|
1704 | },
|
1705 | formatAllRows: function formatAllRows() {
|
1706 | return 'Tots';
|
1707 | },
|
1708 | formatAutoRefresh: function formatAutoRefresh() {
|
1709 | return 'Auto Refresca';
|
1710 | },
|
1711 | formatExport: function formatExport() {
|
1712 | return 'Exporta dades';
|
1713 | },
|
1714 | formatJumpTo: function formatJumpTo() {
|
1715 | return 'GO';
|
1716 | },
|
1717 | formatAdvancedSearch: function formatAdvancedSearch() {
|
1718 | return 'Cerca avançada';
|
1719 | },
|
1720 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
1721 | return 'Tanca';
|
1722 | },
|
1723 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
1724 | return 'Mostra/Amaga controls';
|
1725 | },
|
1726 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
1727 | return 'Mostra controls';
|
1728 | },
|
1729 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
1730 | return 'Amaga controls';
|
1731 | }
|
1732 | };
|
1733 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['ca-ES']);
|
1734 |
|
1735 | |
1736 |
|
1737 |
|
1738 |
|
1739 |
|
1740 | $$2.fn.bootstrapTable.locales['de-DE'] = $$2.fn.bootstrapTable.locales['de'] = {
|
1741 | formatCopyRows: function formatCopyRows() {
|
1742 | return 'Zeilen kopieren';
|
1743 | },
|
1744 | formatPrint: function formatPrint() {
|
1745 | return 'Drucken';
|
1746 | },
|
1747 | formatLoadingMessage: function formatLoadingMessage() {
|
1748 | return 'Lade, bitte warten';
|
1749 | },
|
1750 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
1751 | return "".concat(pageNumber, " Zeilen pro Seite.");
|
1752 | },
|
1753 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
1754 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
1755 | return "Zeige Zeile ".concat(pageFrom, " bis ").concat(pageTo, " von ").concat(totalRows, " Zeile").concat(totalRows > 1 ? 'n' : '', " (Gefiltert von ").concat(totalNotFiltered, " Zeile").concat(totalNotFiltered > 1 ? 'n' : '', ")");
|
1756 | }
|
1757 | return "Zeige Zeile ".concat(pageFrom, " bis ").concat(pageTo, " von ").concat(totalRows, " Zeile").concat(totalRows > 1 ? 'n' : '', ".");
|
1758 | },
|
1759 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
1760 | return 'Vorherige Seite';
|
1761 | },
|
1762 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
1763 | return "Zu Seite ".concat(page);
|
1764 | },
|
1765 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
1766 | return 'Nächste Seite';
|
1767 | },
|
1768 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
1769 | return "Zeige ".concat(totalRows, " Zeile").concat(totalRows > 1 ? 'n' : '', ".");
|
1770 | },
|
1771 | formatClearSearch: function formatClearSearch() {
|
1772 | return 'Lösche Filter';
|
1773 | },
|
1774 | formatSearch: function formatSearch() {
|
1775 | return 'Suchen';
|
1776 | },
|
1777 | formatNoMatches: function formatNoMatches() {
|
1778 | return 'Keine passenden Ergebnisse gefunden';
|
1779 | },
|
1780 | formatPaginationSwitch: function formatPaginationSwitch() {
|
1781 | return 'Verstecke/Zeige Nummerierung';
|
1782 | },
|
1783 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
1784 | return 'Zeige Nummerierung';
|
1785 | },
|
1786 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
1787 | return 'Verstecke Nummerierung';
|
1788 | },
|
1789 | formatRefresh: function formatRefresh() {
|
1790 | return 'Neu laden';
|
1791 | },
|
1792 | formatToggleOn: function formatToggleOn() {
|
1793 | return 'Normale Ansicht';
|
1794 | },
|
1795 | formatToggleOff: function formatToggleOff() {
|
1796 | return 'Kartenansicht';
|
1797 | },
|
1798 | formatColumns: function formatColumns() {
|
1799 | return 'Spalten';
|
1800 | },
|
1801 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
1802 | return 'Alle umschalten';
|
1803 | },
|
1804 | formatFullscreen: function formatFullscreen() {
|
1805 | return 'Vollbild';
|
1806 | },
|
1807 | formatAllRows: function formatAllRows() {
|
1808 | return 'Alle';
|
1809 | },
|
1810 | formatAutoRefresh: function formatAutoRefresh() {
|
1811 | return 'Automatisches Neuladen';
|
1812 | },
|
1813 | formatExport: function formatExport() {
|
1814 | return 'Datenexport';
|
1815 | },
|
1816 | formatJumpTo: function formatJumpTo() {
|
1817 | return 'Springen';
|
1818 | },
|
1819 | formatAdvancedSearch: function formatAdvancedSearch() {
|
1820 | return 'Erweiterte Suche';
|
1821 | },
|
1822 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
1823 | return 'Schließen';
|
1824 | },
|
1825 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
1826 | return 'Verstecke/Zeige Filter';
|
1827 | },
|
1828 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
1829 | return 'Verstecke Filter';
|
1830 | },
|
1831 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
1832 | return 'Zeige Filter';
|
1833 | },
|
1834 | formatAddLevel: function formatAddLevel() {
|
1835 | return 'Ebene hinzufügen';
|
1836 | },
|
1837 | formatCancel: function formatCancel() {
|
1838 | return 'Abbrechen';
|
1839 | },
|
1840 | formatColumn: function formatColumn() {
|
1841 | return 'Spalte';
|
1842 | },
|
1843 | formatDeleteLevel: function formatDeleteLevel() {
|
1844 | return 'Ebene entfernen';
|
1845 | },
|
1846 | formatDuplicateAlertTitle: function formatDuplicateAlertTitle() {
|
1847 | return 'Doppelte Einträge gefunden!';
|
1848 | },
|
1849 | formatDuplicateAlertDescription: function formatDuplicateAlertDescription() {
|
1850 | return 'Bitte doppelte Spalten entfenen oder ändern';
|
1851 | },
|
1852 | formatMultipleSort: function formatMultipleSort() {
|
1853 | return 'Mehrfachsortierung';
|
1854 | },
|
1855 | formatOrder: function formatOrder() {
|
1856 | return 'Reihenfolge';
|
1857 | },
|
1858 | formatSort: function formatSort() {
|
1859 | return 'Sortieren';
|
1860 | },
|
1861 | formatSortBy: function formatSortBy() {
|
1862 | return 'Sortieren nach';
|
1863 | },
|
1864 | formatThenBy: function formatThenBy() {
|
1865 | return 'anschließend';
|
1866 | },
|
1867 | formatSortOrders: function formatSortOrders() {
|
1868 | return {
|
1869 | asc: 'Aufsteigend',
|
1870 | desc: 'Absteigend'
|
1871 | };
|
1872 | }
|
1873 | };
|
1874 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['de-DE']);
|
1875 |
|
1876 | |
1877 |
|
1878 |
|
1879 |
|
1880 |
|
1881 |
|
1882 | $$2.fn.bootstrapTable.locales['cs-CZ'] = $$2.fn.bootstrapTable.locales['cs'] = {
|
1883 | formatCopyRows: function formatCopyRows() {
|
1884 | return 'Kopírovat řádky';
|
1885 | },
|
1886 | formatPrint: function formatPrint() {
|
1887 | return 'Tisk';
|
1888 | },
|
1889 | formatLoadingMessage: function formatLoadingMessage() {
|
1890 | return 'Čekejte, prosím';
|
1891 | },
|
1892 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
1893 | return "".concat(pageNumber, " polo\u017Eek na str\xE1nku");
|
1894 | },
|
1895 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
1896 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
1897 | return "Zobrazena ".concat(pageFrom, ". - ").concat(pageTo, " . polo\u017Eka z celkov\xFDch ").concat(totalRows, " (filtered from ").concat(totalNotFiltered, " total rows)");
|
1898 | }
|
1899 | return "Zobrazena ".concat(pageFrom, ". - ").concat(pageTo, " . polo\u017Eka z celkov\xFDch ").concat(totalRows);
|
1900 | },
|
1901 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
1902 | return 'předchozí strana';
|
1903 | },
|
1904 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
1905 | return "na stranu ".concat(page);
|
1906 | },
|
1907 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
1908 | return 'další strana';
|
1909 | },
|
1910 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
1911 | return "Zobrazuji ".concat(totalRows, " \u0159\xE1dek");
|
1912 | },
|
1913 | formatClearSearch: function formatClearSearch() {
|
1914 | return 'Smazat hledání';
|
1915 | },
|
1916 | formatSearch: function formatSearch() {
|
1917 | return 'Vyhledávání';
|
1918 | },
|
1919 | formatNoMatches: function formatNoMatches() {
|
1920 | return 'Nenalezena žádná vyhovující položka';
|
1921 | },
|
1922 | formatPaginationSwitch: function formatPaginationSwitch() {
|
1923 | return 'Skrýt/Zobrazit stránkování';
|
1924 | },
|
1925 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
1926 | return 'Zobrazit stránkování';
|
1927 | },
|
1928 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
1929 | return 'Skrýt stránkování';
|
1930 | },
|
1931 | formatRefresh: function formatRefresh() {
|
1932 | return 'Aktualizovat';
|
1933 | },
|
1934 | formatToggleOn: function formatToggleOn() {
|
1935 | return 'Zobrazit karty';
|
1936 | },
|
1937 | formatToggleOff: function formatToggleOff() {
|
1938 | return 'Zobrazit tabulku';
|
1939 | },
|
1940 | formatColumns: function formatColumns() {
|
1941 | return 'Sloupce';
|
1942 | },
|
1943 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
1944 | return 'Zobrazit/Skrýt vše';
|
1945 | },
|
1946 | formatFullscreen: function formatFullscreen() {
|
1947 | return 'Zapnout/Vypnout fullscreen';
|
1948 | },
|
1949 | formatAllRows: function formatAllRows() {
|
1950 | return 'Vše';
|
1951 | },
|
1952 | formatAutoRefresh: function formatAutoRefresh() {
|
1953 | return 'Automatické obnovení';
|
1954 | },
|
1955 | formatExport: function formatExport() {
|
1956 | return 'Export dat';
|
1957 | },
|
1958 | formatJumpTo: function formatJumpTo() {
|
1959 | return 'GO';
|
1960 | },
|
1961 | formatAdvancedSearch: function formatAdvancedSearch() {
|
1962 | return 'Pokročilé hledání';
|
1963 | },
|
1964 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
1965 | return 'Zavřít';
|
1966 | },
|
1967 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
1968 | return 'Skrýt/Zobrazit ovladače';
|
1969 | },
|
1970 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
1971 | return 'Skrýt ovladače';
|
1972 | },
|
1973 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
1974 | return 'Zobrazit ovladače';
|
1975 | }
|
1976 | };
|
1977 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['cs-CZ']);
|
1978 |
|
1979 | |
1980 |
|
1981 |
|
1982 |
|
1983 |
|
1984 | $$2.fn.bootstrapTable.locales['el-GR'] = $$2.fn.bootstrapTable.locales['el'] = {
|
1985 | formatCopyRows: function formatCopyRows() {
|
1986 | return 'Copy Rows';
|
1987 | },
|
1988 | formatPrint: function formatPrint() {
|
1989 | return 'Print';
|
1990 | },
|
1991 | formatLoadingMessage: function formatLoadingMessage() {
|
1992 | return 'Φορτώνει, παρακαλώ περιμένετε';
|
1993 | },
|
1994 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
1995 | return "".concat(pageNumber, " \u03B1\u03C0\u03BF\u03C4\u03B5\u03BB\u03AD\u03C3\u03BC\u03B1\u03C4\u03B1 \u03B1\u03BD\u03AC \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1");
|
1996 | },
|
1997 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
1998 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
1999 | 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)");
|
2000 | }
|
2001 | 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");
|
2002 | },
|
2003 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
2004 | return 'previous page';
|
2005 | },
|
2006 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
2007 | return "to page ".concat(page);
|
2008 | },
|
2009 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
2010 | return 'next page';
|
2011 | },
|
2012 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
2013 | return "Showing ".concat(totalRows, " rows");
|
2014 | },
|
2015 | formatClearSearch: function formatClearSearch() {
|
2016 | return 'Clear Search';
|
2017 | },
|
2018 | formatSearch: function formatSearch() {
|
2019 | return 'Αναζητήστε';
|
2020 | },
|
2021 | formatNoMatches: function formatNoMatches() {
|
2022 | return 'Δεν βρέθηκαν αποτελέσματα';
|
2023 | },
|
2024 | formatPaginationSwitch: function formatPaginationSwitch() {
|
2025 | return 'Hide/Show pagination';
|
2026 | },
|
2027 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
2028 | return 'Show pagination';
|
2029 | },
|
2030 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
2031 | return 'Hide pagination';
|
2032 | },
|
2033 | formatRefresh: function formatRefresh() {
|
2034 | return 'Refresh';
|
2035 | },
|
2036 | formatToggleOn: function formatToggleOn() {
|
2037 | return 'Show card view';
|
2038 | },
|
2039 | formatToggleOff: function formatToggleOff() {
|
2040 | return 'Hide card view';
|
2041 | },
|
2042 | formatColumns: function formatColumns() {
|
2043 | return 'Columns';
|
2044 | },
|
2045 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
2046 | return 'Toggle all';
|
2047 | },
|
2048 | formatFullscreen: function formatFullscreen() {
|
2049 | return 'Fullscreen';
|
2050 | },
|
2051 | formatAllRows: function formatAllRows() {
|
2052 | return 'All';
|
2053 | },
|
2054 | formatAutoRefresh: function formatAutoRefresh() {
|
2055 | return 'Auto Refresh';
|
2056 | },
|
2057 | formatExport: function formatExport() {
|
2058 | return 'Export data';
|
2059 | },
|
2060 | formatJumpTo: function formatJumpTo() {
|
2061 | return 'GO';
|
2062 | },
|
2063 | formatAdvancedSearch: function formatAdvancedSearch() {
|
2064 | return 'Advanced search';
|
2065 | },
|
2066 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
2067 | return 'Close';
|
2068 | },
|
2069 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
2070 | return 'Hide/Show controls';
|
2071 | },
|
2072 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
2073 | return 'Hide controls';
|
2074 | },
|
2075 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
2076 | return 'Show controls';
|
2077 | }
|
2078 | };
|
2079 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['el-GR']);
|
2080 |
|
2081 | |
2082 |
|
2083 |
|
2084 |
|
2085 |
|
2086 | $$2.fn.bootstrapTable.locales['en-US'] = $$2.fn.bootstrapTable.locales['en'] = {
|
2087 | formatCopyRows: function formatCopyRows() {
|
2088 | return 'Copy Rows';
|
2089 | },
|
2090 | formatPrint: function formatPrint() {
|
2091 | return 'Print';
|
2092 | },
|
2093 | formatLoadingMessage: function formatLoadingMessage() {
|
2094 | return 'Loading, please wait';
|
2095 | },
|
2096 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
2097 | return "".concat(pageNumber, " rows per page");
|
2098 | },
|
2099 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
2100 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
2101 | return "Showing ".concat(pageFrom, " to ").concat(pageTo, " of ").concat(totalRows, " rows (filtered from ").concat(totalNotFiltered, " total rows)");
|
2102 | }
|
2103 | return "Showing ".concat(pageFrom, " to ").concat(pageTo, " of ").concat(totalRows, " rows");
|
2104 | },
|
2105 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
2106 | return 'previous page';
|
2107 | },
|
2108 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
2109 | return "to page ".concat(page);
|
2110 | },
|
2111 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
2112 | return 'next page';
|
2113 | },
|
2114 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
2115 | return "Showing ".concat(totalRows, " rows");
|
2116 | },
|
2117 | formatClearSearch: function formatClearSearch() {
|
2118 | return 'Clear Search';
|
2119 | },
|
2120 | formatSearch: function formatSearch() {
|
2121 | return 'Search';
|
2122 | },
|
2123 | formatNoMatches: function formatNoMatches() {
|
2124 | return 'No matching records found';
|
2125 | },
|
2126 | formatPaginationSwitch: function formatPaginationSwitch() {
|
2127 | return 'Hide/Show pagination';
|
2128 | },
|
2129 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
2130 | return 'Show pagination';
|
2131 | },
|
2132 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
2133 | return 'Hide pagination';
|
2134 | },
|
2135 | formatRefresh: function formatRefresh() {
|
2136 | return 'Refresh';
|
2137 | },
|
2138 | formatToggleOn: function formatToggleOn() {
|
2139 | return 'Show card view';
|
2140 | },
|
2141 | formatToggleOff: function formatToggleOff() {
|
2142 | return 'Hide card view';
|
2143 | },
|
2144 | formatColumns: function formatColumns() {
|
2145 | return 'Columns';
|
2146 | },
|
2147 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
2148 | return 'Toggle all';
|
2149 | },
|
2150 | formatFullscreen: function formatFullscreen() {
|
2151 | return 'Fullscreen';
|
2152 | },
|
2153 | formatAllRows: function formatAllRows() {
|
2154 | return 'All';
|
2155 | },
|
2156 | formatAutoRefresh: function formatAutoRefresh() {
|
2157 | return 'Auto Refresh';
|
2158 | },
|
2159 | formatExport: function formatExport() {
|
2160 | return 'Export data';
|
2161 | },
|
2162 | formatJumpTo: function formatJumpTo() {
|
2163 | return 'GO';
|
2164 | },
|
2165 | formatAdvancedSearch: function formatAdvancedSearch() {
|
2166 | return 'Advanced search';
|
2167 | },
|
2168 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
2169 | return 'Close';
|
2170 | },
|
2171 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
2172 | return 'Hide/Show controls';
|
2173 | },
|
2174 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
2175 | return 'Hide controls';
|
2176 | },
|
2177 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
2178 | return 'Show controls';
|
2179 | }
|
2180 | };
|
2181 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['en-US']);
|
2182 |
|
2183 | |
2184 |
|
2185 |
|
2186 |
|
2187 |
|
2188 | $$2.fn.bootstrapTable.locales['da-DK'] = $$2.fn.bootstrapTable.locales['da'] = {
|
2189 | formatCopyRows: function formatCopyRows() {
|
2190 | return 'Copy Rows';
|
2191 | },
|
2192 | formatPrint: function formatPrint() {
|
2193 | return 'Print';
|
2194 | },
|
2195 | formatLoadingMessage: function formatLoadingMessage() {
|
2196 | return 'Indlæser, vent venligst';
|
2197 | },
|
2198 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
2199 | return "".concat(pageNumber, " poster pr side");
|
2200 | },
|
2201 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
2202 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
2203 | return "Viser ".concat(pageFrom, " til ").concat(pageTo, " af ").concat(totalRows, " r\xE6kke").concat(totalRows > 1 ? 'r' : '', " (filtered from ").concat(totalNotFiltered, " total rows)");
|
2204 | }
|
2205 | return "Viser ".concat(pageFrom, " til ").concat(pageTo, " af ").concat(totalRows, " r\xE6kke").concat(totalRows > 1 ? 'r' : '');
|
2206 | },
|
2207 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
2208 | return 'previous page';
|
2209 | },
|
2210 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
2211 | return "to page ".concat(page);
|
2212 | },
|
2213 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
2214 | return 'next page';
|
2215 | },
|
2216 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
2217 | return "Viser ".concat(totalRows, " r\xE6kke").concat(totalRows > 1 ? 'r' : '');
|
2218 | },
|
2219 | formatClearSearch: function formatClearSearch() {
|
2220 | return 'Ryd filtre';
|
2221 | },
|
2222 | formatSearch: function formatSearch() {
|
2223 | return 'Søg';
|
2224 | },
|
2225 | formatNoMatches: function formatNoMatches() {
|
2226 | return 'Ingen poster fundet';
|
2227 | },
|
2228 | formatPaginationSwitch: function formatPaginationSwitch() {
|
2229 | return 'Skjul/vis nummerering';
|
2230 | },
|
2231 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
2232 | return 'Show pagination';
|
2233 | },
|
2234 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
2235 | return 'Hide pagination';
|
2236 | },
|
2237 | formatRefresh: function formatRefresh() {
|
2238 | return 'Opdater';
|
2239 | },
|
2240 | formatToggleOn: function formatToggleOn() {
|
2241 | return 'Show card view';
|
2242 | },
|
2243 | formatToggleOff: function formatToggleOff() {
|
2244 | return 'Hide card view';
|
2245 | },
|
2246 | formatColumns: function formatColumns() {
|
2247 | return 'Kolonner';
|
2248 | },
|
2249 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
2250 | return 'Toggle all';
|
2251 | },
|
2252 | formatFullscreen: function formatFullscreen() {
|
2253 | return 'Fullscreen';
|
2254 | },
|
2255 | formatAllRows: function formatAllRows() {
|
2256 | return 'Alle';
|
2257 | },
|
2258 | formatAutoRefresh: function formatAutoRefresh() {
|
2259 | return 'Auto Refresh';
|
2260 | },
|
2261 | formatExport: function formatExport() {
|
2262 | return 'Eksporter';
|
2263 | },
|
2264 | formatJumpTo: function formatJumpTo() {
|
2265 | return 'GO';
|
2266 | },
|
2267 | formatAdvancedSearch: function formatAdvancedSearch() {
|
2268 | return 'Advanced search';
|
2269 | },
|
2270 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
2271 | return 'Close';
|
2272 | },
|
2273 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
2274 | return 'Hide/Show controls';
|
2275 | },
|
2276 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
2277 | return 'Hide controls';
|
2278 | },
|
2279 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
2280 | return 'Show controls';
|
2281 | }
|
2282 | };
|
2283 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['da-DK']);
|
2284 |
|
2285 | |
2286 |
|
2287 |
|
2288 |
|
2289 |
|
2290 |
|
2291 | $$2.fn.bootstrapTable.locales['es-AR'] = {
|
2292 | formatCopyRows: function formatCopyRows() {
|
2293 | return 'Copiar Filas';
|
2294 | },
|
2295 | formatPrint: function formatPrint() {
|
2296 | return 'Imprimir';
|
2297 | },
|
2298 | formatLoadingMessage: function formatLoadingMessage() {
|
2299 | return 'Cargando, espere por favor';
|
2300 | },
|
2301 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
2302 | return "".concat(pageNumber, " registros por p\xE1gina");
|
2303 | },
|
2304 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
2305 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
2306 | return "Mostrando desde ".concat(pageFrom, " a ").concat(pageTo, " de ").concat(totalRows, " filas (filtrado de ").concat(totalNotFiltered, " columnas totales)");
|
2307 | }
|
2308 | return "Mostrando desde ".concat(pageFrom, " a ").concat(pageTo, " de ").concat(totalRows, " filas");
|
2309 | },
|
2310 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
2311 | return 'página anterior';
|
2312 | },
|
2313 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
2314 | return "a la p\xE1gina ".concat(page);
|
2315 | },
|
2316 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
2317 | return 'siguiente página';
|
2318 | },
|
2319 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
2320 | return "Mostrando ".concat(totalRows, " columnas");
|
2321 | },
|
2322 | formatClearSearch: function formatClearSearch() {
|
2323 | return 'Limpiar búsqueda';
|
2324 | },
|
2325 | formatSearch: function formatSearch() {
|
2326 | return 'Buscar';
|
2327 | },
|
2328 | formatNoMatches: function formatNoMatches() {
|
2329 | return 'No se encontraron registros';
|
2330 | },
|
2331 | formatPaginationSwitch: function formatPaginationSwitch() {
|
2332 | return 'Ocultar/Mostrar paginación';
|
2333 | },
|
2334 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
2335 | return 'Mostrar paginación';
|
2336 | },
|
2337 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
2338 | return 'Ocultar paginación';
|
2339 | },
|
2340 | formatRefresh: function formatRefresh() {
|
2341 | return 'Recargar';
|
2342 | },
|
2343 | formatToggleOn: function formatToggleOn() {
|
2344 | return 'Mostrar vista de carta';
|
2345 | },
|
2346 | formatToggleOff: function formatToggleOff() {
|
2347 | return 'Ocultar vista de carta';
|
2348 | },
|
2349 | formatColumns: function formatColumns() {
|
2350 | return 'Columnas';
|
2351 | },
|
2352 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
2353 | return 'Cambiar todo';
|
2354 | },
|
2355 | formatFullscreen: function formatFullscreen() {
|
2356 | return 'Pantalla completa';
|
2357 | },
|
2358 | formatAllRows: function formatAllRows() {
|
2359 | return 'Todo';
|
2360 | },
|
2361 | formatAutoRefresh: function formatAutoRefresh() {
|
2362 | return 'Auto Recargar';
|
2363 | },
|
2364 | formatExport: function formatExport() {
|
2365 | return 'Exportar datos';
|
2366 | },
|
2367 | formatJumpTo: function formatJumpTo() {
|
2368 | return 'Ir';
|
2369 | },
|
2370 | formatAdvancedSearch: function formatAdvancedSearch() {
|
2371 | return 'Búsqueda avanzada';
|
2372 | },
|
2373 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
2374 | return 'Cerrar';
|
2375 | },
|
2376 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
2377 | return 'Ocultar/Mostrar controles';
|
2378 | },
|
2379 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
2380 | return 'Ocultar controles';
|
2381 | },
|
2382 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
2383 | return 'Mostrar controles';
|
2384 | }
|
2385 | };
|
2386 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['es-AR']);
|
2387 |
|
2388 | |
2389 |
|
2390 |
|
2391 |
|
2392 |
|
2393 | $$2.fn.bootstrapTable.locales['es-ES'] = $$2.fn.bootstrapTable.locales['es'] = {
|
2394 | formatCopyRows: function formatCopyRows() {
|
2395 | return 'Copiar filas';
|
2396 | },
|
2397 | formatPrint: function formatPrint() {
|
2398 | return 'Imprimir';
|
2399 | },
|
2400 | formatLoadingMessage: function formatLoadingMessage() {
|
2401 | return 'Cargando, por favor espere';
|
2402 | },
|
2403 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
2404 | return "".concat(pageNumber, " resultados por p\xE1gina");
|
2405 | },
|
2406 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
2407 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
2408 | return "Mostrando desde ".concat(pageFrom, " hasta ").concat(pageTo, " - En total ").concat(totalRows, " resultados (filtrado de ").concat(totalNotFiltered, " filas totales)");
|
2409 | }
|
2410 | return "Mostrando desde ".concat(pageFrom, " hasta ").concat(pageTo, " - En total ").concat(totalRows, " resultados");
|
2411 | },
|
2412 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
2413 | return 'página anterior';
|
2414 | },
|
2415 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
2416 | return "a la p\xE1gina ".concat(page);
|
2417 | },
|
2418 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
2419 | return 'siguiente página';
|
2420 | },
|
2421 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
2422 | return "Mostrando ".concat(totalRows, " filas");
|
2423 | },
|
2424 | formatClearSearch: function formatClearSearch() {
|
2425 | return 'Limpiar búsqueda';
|
2426 | },
|
2427 | formatSearch: function formatSearch() {
|
2428 | return 'Buscar';
|
2429 | },
|
2430 | formatNoMatches: function formatNoMatches() {
|
2431 | return 'No se encontraron resultados';
|
2432 | },
|
2433 | formatPaginationSwitch: function formatPaginationSwitch() {
|
2434 | return 'Ocultar/Mostrar paginación';
|
2435 | },
|
2436 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
2437 | return 'Mostrar paginación';
|
2438 | },
|
2439 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
2440 | return 'Ocultar paginación';
|
2441 | },
|
2442 | formatRefresh: function formatRefresh() {
|
2443 | return 'Recargar';
|
2444 | },
|
2445 | formatToggleOn: function formatToggleOn() {
|
2446 | return 'Mostrar vista de carta';
|
2447 | },
|
2448 | formatToggleOff: function formatToggleOff() {
|
2449 | return 'Ocultar vista de carta';
|
2450 | },
|
2451 | formatColumns: function formatColumns() {
|
2452 | return 'Columnas';
|
2453 | },
|
2454 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
2455 | return 'Cambiar todo';
|
2456 | },
|
2457 | formatFullscreen: function formatFullscreen() {
|
2458 | return 'Pantalla completa';
|
2459 | },
|
2460 | formatAllRows: function formatAllRows() {
|
2461 | return 'Todos';
|
2462 | },
|
2463 | formatAutoRefresh: function formatAutoRefresh() {
|
2464 | return 'Auto Recargar';
|
2465 | },
|
2466 | formatExport: function formatExport() {
|
2467 | return 'Exportar los datos';
|
2468 | },
|
2469 | formatJumpTo: function formatJumpTo() {
|
2470 | return 'IR';
|
2471 | },
|
2472 | formatAdvancedSearch: function formatAdvancedSearch() {
|
2473 | return 'Búsqueda avanzada';
|
2474 | },
|
2475 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
2476 | return 'Cerrar';
|
2477 | },
|
2478 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
2479 | return 'Ocultar/Mostrar controles';
|
2480 | },
|
2481 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
2482 | return 'Ocultar controles';
|
2483 | },
|
2484 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
2485 | return 'Mostrar controles';
|
2486 | }
|
2487 | };
|
2488 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['es-ES']);
|
2489 |
|
2490 | |
2491 |
|
2492 |
|
2493 |
|
2494 |
|
2495 |
|
2496 | $$2.fn.bootstrapTable.locales['es-CL'] = {
|
2497 | formatCopyRows: function formatCopyRows() {
|
2498 | return 'Copiar Filas';
|
2499 | },
|
2500 | formatPrint: function formatPrint() {
|
2501 | return 'Imprimir';
|
2502 | },
|
2503 | formatLoadingMessage: function formatLoadingMessage() {
|
2504 | return 'Cargando, espere por favor';
|
2505 | },
|
2506 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
2507 | return "".concat(pageNumber, " filas por p\xE1gina");
|
2508 | },
|
2509 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
2510 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
2511 | return "Mostrando ".concat(pageFrom, " a ").concat(pageTo, " de ").concat(totalRows, " filas (filtrado de ").concat(totalNotFiltered, " filas totales)");
|
2512 | }
|
2513 | return "Mostrando ".concat(pageFrom, " a ").concat(pageTo, " de ").concat(totalRows, " filas");
|
2514 | },
|
2515 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
2516 | return 'página anterior';
|
2517 | },
|
2518 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
2519 | return "a la p\xE1gina ".concat(page);
|
2520 | },
|
2521 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
2522 | return 'siguiente página';
|
2523 | },
|
2524 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
2525 | return "Mostrando ".concat(totalRows, " filas");
|
2526 | },
|
2527 | formatClearSearch: function formatClearSearch() {
|
2528 | return 'Limpiar búsqueda';
|
2529 | },
|
2530 | formatSearch: function formatSearch() {
|
2531 | return 'Buscar';
|
2532 | },
|
2533 | formatNoMatches: function formatNoMatches() {
|
2534 | return 'No se encontraron registros';
|
2535 | },
|
2536 | formatPaginationSwitch: function formatPaginationSwitch() {
|
2537 | return 'Ocultar/Mostrar paginación';
|
2538 | },
|
2539 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
2540 | return 'Mostrar paginación';
|
2541 | },
|
2542 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
2543 | return 'Ocultar paginación';
|
2544 | },
|
2545 | formatRefresh: function formatRefresh() {
|
2546 | return 'Refrescar';
|
2547 | },
|
2548 | formatToggleOn: function formatToggleOn() {
|
2549 | return 'Mostrar vista de carta';
|
2550 | },
|
2551 | formatToggleOff: function formatToggleOff() {
|
2552 | return 'Ocultar vista de carta';
|
2553 | },
|
2554 | formatColumns: function formatColumns() {
|
2555 | return 'Columnas';
|
2556 | },
|
2557 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
2558 | return 'Cambiar todo';
|
2559 | },
|
2560 | formatFullscreen: function formatFullscreen() {
|
2561 | return 'Pantalla completa';
|
2562 | },
|
2563 | formatAllRows: function formatAllRows() {
|
2564 | return 'Todo';
|
2565 | },
|
2566 | formatAutoRefresh: function formatAutoRefresh() {
|
2567 | return 'Auto Recargar';
|
2568 | },
|
2569 | formatExport: function formatExport() {
|
2570 | return 'Exportar datos';
|
2571 | },
|
2572 | formatJumpTo: function formatJumpTo() {
|
2573 | return 'IR';
|
2574 | },
|
2575 | formatAdvancedSearch: function formatAdvancedSearch() {
|
2576 | return 'Búsqueda avanzada';
|
2577 | },
|
2578 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
2579 | return 'Cerrar';
|
2580 | },
|
2581 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
2582 | return 'Ocultar/Mostrar controles';
|
2583 | },
|
2584 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
2585 | return 'Ocultar controles';
|
2586 | },
|
2587 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
2588 | return 'Mostrar controles';
|
2589 | }
|
2590 | };
|
2591 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['es-CL']);
|
2592 |
|
2593 | |
2594 |
|
2595 |
|
2596 |
|
2597 |
|
2598 |
|
2599 |
|
2600 |
|
2601 | $$2.fn.bootstrapTable.locales['es-MX'] = {
|
2602 | formatCopyRows: function formatCopyRows() {
|
2603 | return 'Copiar Filas';
|
2604 | },
|
2605 | formatPrint: function formatPrint() {
|
2606 | return 'Imprimir';
|
2607 | },
|
2608 | formatLoadingMessage: function formatLoadingMessage() {
|
2609 | return 'Cargando, espere por favor';
|
2610 | },
|
2611 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
2612 | return "".concat(pageNumber, " resultados por p\xE1gina");
|
2613 | },
|
2614 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
2615 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
2616 | return "Mostrando ".concat(pageFrom, " a ").concat(pageTo, " de ").concat(totalRows, " filas (filtrado de ").concat(totalNotFiltered, " filas totales)");
|
2617 | }
|
2618 | return "Mostrando ".concat(pageFrom, " a ").concat(pageTo, " de ").concat(totalRows, " filas");
|
2619 | },
|
2620 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
2621 | return 'página anterior';
|
2622 | },
|
2623 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
2624 | return "ir a la p\xE1gina ".concat(page);
|
2625 | },
|
2626 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
2627 | return 'página siguiente';
|
2628 | },
|
2629 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
2630 | return "Mostrando ".concat(totalRows, " filas");
|
2631 | },
|
2632 | formatClearSearch: function formatClearSearch() {
|
2633 | return 'Limpiar búsqueda';
|
2634 | },
|
2635 | formatSearch: function formatSearch() {
|
2636 | return 'Buscar';
|
2637 | },
|
2638 | formatNoMatches: function formatNoMatches() {
|
2639 | return 'No se encontraron registros que coincidan';
|
2640 | },
|
2641 | formatPaginationSwitch: function formatPaginationSwitch() {
|
2642 | return 'Mostrar/ocultar paginación';
|
2643 | },
|
2644 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
2645 | return 'Mostrar paginación';
|
2646 | },
|
2647 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
2648 | return 'Ocultar paginación';
|
2649 | },
|
2650 | formatRefresh: function formatRefresh() {
|
2651 | return 'Actualizar';
|
2652 | },
|
2653 | formatToggleOn: function formatToggleOn() {
|
2654 | return 'Mostrar vista';
|
2655 | },
|
2656 | formatToggleOff: function formatToggleOff() {
|
2657 | return 'Ocultar vista';
|
2658 | },
|
2659 | formatColumns: function formatColumns() {
|
2660 | return 'Columnas';
|
2661 | },
|
2662 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
2663 | return 'Alternar todo';
|
2664 | },
|
2665 | formatFullscreen: function formatFullscreen() {
|
2666 | return 'Pantalla completa';
|
2667 | },
|
2668 | formatAllRows: function formatAllRows() {
|
2669 | return 'Todo';
|
2670 | },
|
2671 | formatAutoRefresh: function formatAutoRefresh() {
|
2672 | return 'Auto actualizar';
|
2673 | },
|
2674 | formatExport: function formatExport() {
|
2675 | return 'Exportar datos';
|
2676 | },
|
2677 | formatJumpTo: function formatJumpTo() {
|
2678 | return 'IR';
|
2679 | },
|
2680 | formatAdvancedSearch: function formatAdvancedSearch() {
|
2681 | return 'Búsqueda avanzada';
|
2682 | },
|
2683 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
2684 | return 'Cerrar';
|
2685 | },
|
2686 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
2687 | return 'Ocultar/Mostrar controles';
|
2688 | },
|
2689 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
2690 | return 'Ocultar controles';
|
2691 | },
|
2692 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
2693 | return 'Mostrar controles';
|
2694 | }
|
2695 | };
|
2696 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['es-MX']);
|
2697 |
|
2698 | |
2699 |
|
2700 |
|
2701 |
|
2702 |
|
2703 |
|
2704 | $$2.fn.bootstrapTable.locales['es-CR'] = {
|
2705 | formatCopyRows: function formatCopyRows() {
|
2706 | return 'Copiar filas';
|
2707 | },
|
2708 | formatPrint: function formatPrint() {
|
2709 | return 'Imprimir';
|
2710 | },
|
2711 | formatLoadingMessage: function formatLoadingMessage() {
|
2712 | return 'Cargando, por favor espere';
|
2713 | },
|
2714 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
2715 | return "".concat(pageNumber, " filas por p\xE1gina");
|
2716 | },
|
2717 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
2718 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
2719 | return "Mostrando ".concat(pageFrom, " a ").concat(pageTo, " de ").concat(totalRows, " filas (filtrado de un total de ").concat(totalNotFiltered, " filas)");
|
2720 | }
|
2721 | return "Mostrando ".concat(pageFrom, " a ").concat(pageTo, " de ").concat(totalRows, " filas");
|
2722 | },
|
2723 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
2724 | return 'página anterior';
|
2725 | },
|
2726 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
2727 | return "ir a la p\xE1gina ".concat(page);
|
2728 | },
|
2729 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
2730 | return 'página siguiente';
|
2731 | },
|
2732 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
2733 | return "Mostrando ".concat(totalRows, " filas");
|
2734 | },
|
2735 | formatClearSearch: function formatClearSearch() {
|
2736 | return 'Limpiar búsqueda';
|
2737 | },
|
2738 | formatSearch: function formatSearch() {
|
2739 | return 'Buscar';
|
2740 | },
|
2741 | formatNoMatches: function formatNoMatches() {
|
2742 | return 'No se encontraron resultados';
|
2743 | },
|
2744 | formatPaginationSwitch: function formatPaginationSwitch() {
|
2745 | return 'Mostrar/ocultar paginación';
|
2746 | },
|
2747 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
2748 | return 'Mostrar paginación';
|
2749 | },
|
2750 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
2751 | return 'Ocultar paginación';
|
2752 | },
|
2753 | formatRefresh: function formatRefresh() {
|
2754 | return 'Actualizar';
|
2755 | },
|
2756 | formatToggleOn: function formatToggleOn() {
|
2757 | return 'Mostrar vista en tarjetas';
|
2758 | },
|
2759 | formatToggleOff: function formatToggleOff() {
|
2760 | return 'Ocultar vista en tarjetas';
|
2761 | },
|
2762 | formatColumns: function formatColumns() {
|
2763 | return 'Columnas';
|
2764 | },
|
2765 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
2766 | return 'Alternar todo';
|
2767 | },
|
2768 | formatFullscreen: function formatFullscreen() {
|
2769 | return 'Pantalla completa';
|
2770 | },
|
2771 | formatAllRows: function formatAllRows() {
|
2772 | return 'Todas las filas';
|
2773 | },
|
2774 | formatAutoRefresh: function formatAutoRefresh() {
|
2775 | return 'Actualización automática';
|
2776 | },
|
2777 | formatExport: function formatExport() {
|
2778 | return 'Exportar';
|
2779 | },
|
2780 | formatJumpTo: function formatJumpTo() {
|
2781 | return 'Ver';
|
2782 | },
|
2783 | formatAdvancedSearch: function formatAdvancedSearch() {
|
2784 | return 'Búsqueda avanzada';
|
2785 | },
|
2786 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
2787 | return 'Cerrar';
|
2788 | },
|
2789 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
2790 | return 'Mostrar/ocultar controles';
|
2791 | },
|
2792 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
2793 | return 'Ocultar controles';
|
2794 | },
|
2795 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
2796 | return 'Mostrar controles';
|
2797 | }
|
2798 | };
|
2799 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['es-CR']);
|
2800 |
|
2801 | |
2802 |
|
2803 |
|
2804 |
|
2805 |
|
2806 | $$2.fn.bootstrapTable.locales['es-NI'] = {
|
2807 | formatCopyRows: function formatCopyRows() {
|
2808 | return 'Copy Rows';
|
2809 | },
|
2810 | formatPrint: function formatPrint() {
|
2811 | return 'Print';
|
2812 | },
|
2813 | formatLoadingMessage: function formatLoadingMessage() {
|
2814 | return 'Cargando, por favor espere';
|
2815 | },
|
2816 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
2817 | return "".concat(pageNumber, " registros por p\xE1gina");
|
2818 | },
|
2819 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
2820 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
2821 | return "Mostrando de ".concat(pageFrom, " a ").concat(pageTo, " registros de ").concat(totalRows, " registros en total (filtered from ").concat(totalNotFiltered, " total rows)");
|
2822 | }
|
2823 | return "Mostrando de ".concat(pageFrom, " a ").concat(pageTo, " registros de ").concat(totalRows, " registros en total");
|
2824 | },
|
2825 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
2826 | return 'previous page';
|
2827 | },
|
2828 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
2829 | return "to page ".concat(page);
|
2830 | },
|
2831 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
2832 | return 'next page';
|
2833 | },
|
2834 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
2835 | return "Showing ".concat(totalRows, " rows");
|
2836 | },
|
2837 | formatClearSearch: function formatClearSearch() {
|
2838 | return 'Limpiar búsqueda';
|
2839 | },
|
2840 | formatSearch: function formatSearch() {
|
2841 | return 'Buscar';
|
2842 | },
|
2843 | formatNoMatches: function formatNoMatches() {
|
2844 | return 'No se encontraron registros';
|
2845 | },
|
2846 | formatPaginationSwitch: function formatPaginationSwitch() {
|
2847 | return 'Hide/Show pagination';
|
2848 | },
|
2849 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
2850 | return 'Show pagination';
|
2851 | },
|
2852 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
2853 | return 'Hide pagination';
|
2854 | },
|
2855 | formatRefresh: function formatRefresh() {
|
2856 | return 'Refrescar';
|
2857 | },
|
2858 | formatToggleOn: function formatToggleOn() {
|
2859 | return 'Show card view';
|
2860 | },
|
2861 | formatToggleOff: function formatToggleOff() {
|
2862 | return 'Hide card view';
|
2863 | },
|
2864 | formatColumns: function formatColumns() {
|
2865 | return 'Columnas';
|
2866 | },
|
2867 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
2868 | return 'Toggle all';
|
2869 | },
|
2870 | formatFullscreen: function formatFullscreen() {
|
2871 | return 'Fullscreen';
|
2872 | },
|
2873 | formatAllRows: function formatAllRows() {
|
2874 | return 'Todo';
|
2875 | },
|
2876 | formatAutoRefresh: function formatAutoRefresh() {
|
2877 | return 'Auto Refresh';
|
2878 | },
|
2879 | formatExport: function formatExport() {
|
2880 | return 'Export data';
|
2881 | },
|
2882 | formatJumpTo: function formatJumpTo() {
|
2883 | return 'GO';
|
2884 | },
|
2885 | formatAdvancedSearch: function formatAdvancedSearch() {
|
2886 | return 'Advanced search';
|
2887 | },
|
2888 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
2889 | return 'Close';
|
2890 | },
|
2891 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
2892 | return 'Ocultar/Mostrar controles';
|
2893 | },
|
2894 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
2895 | return 'Ocultar controles';
|
2896 | },
|
2897 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
2898 | return 'Mostrar controles';
|
2899 | }
|
2900 | };
|
2901 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['es-NI']);
|
2902 |
|
2903 | |
2904 |
|
2905 |
|
2906 |
|
2907 |
|
2908 | $$2.fn.bootstrapTable.locales['es-SP'] = {
|
2909 | formatCopyRows: function formatCopyRows() {
|
2910 | return 'Copy Rows';
|
2911 | },
|
2912 | formatPrint: function formatPrint() {
|
2913 | return 'Print';
|
2914 | },
|
2915 | formatLoadingMessage: function formatLoadingMessage() {
|
2916 | return 'Cargando, por favor espera';
|
2917 | },
|
2918 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
2919 | return "".concat(pageNumber, " registros por página.");
|
2920 | },
|
2921 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
2922 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
2923 | return "".concat(pageFrom, " - ").concat(pageTo, " de ").concat(totalRows, " registros (filtered from ").concat(totalNotFiltered, " total rows)");
|
2924 | }
|
2925 | return "".concat(pageFrom, " - ").concat(pageTo, " de ").concat(totalRows, " registros.");
|
2926 | },
|
2927 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
2928 | return 'previous page';
|
2929 | },
|
2930 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
2931 | return "to page ".concat(page);
|
2932 | },
|
2933 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
2934 | return 'next page';
|
2935 | },
|
2936 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
2937 | return "Showing ".concat(totalRows, " rows");
|
2938 | },
|
2939 | formatClearSearch: function formatClearSearch() {
|
2940 | return 'Limpiar búsqueda';
|
2941 | },
|
2942 | formatSearch: function formatSearch() {
|
2943 | return 'Buscar';
|
2944 | },
|
2945 | formatNoMatches: function formatNoMatches() {
|
2946 | return 'No se han encontrado registros.';
|
2947 | },
|
2948 | formatPaginationSwitch: function formatPaginationSwitch() {
|
2949 | return 'Hide/Show pagination';
|
2950 | },
|
2951 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
2952 | return 'Show pagination';
|
2953 | },
|
2954 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
2955 | return 'Hide pagination';
|
2956 | },
|
2957 | formatRefresh: function formatRefresh() {
|
2958 | return 'Actualizar';
|
2959 | },
|
2960 | formatToggleOn: function formatToggleOn() {
|
2961 | return 'Show card view';
|
2962 | },
|
2963 | formatToggleOff: function formatToggleOff() {
|
2964 | return 'Hide card view';
|
2965 | },
|
2966 | formatColumns: function formatColumns() {
|
2967 | return 'Columnas';
|
2968 | },
|
2969 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
2970 | return 'Toggle all';
|
2971 | },
|
2972 | formatFullscreen: function formatFullscreen() {
|
2973 | return 'Fullscreen';
|
2974 | },
|
2975 | formatAllRows: function formatAllRows() {
|
2976 | return 'Todo';
|
2977 | },
|
2978 | formatAutoRefresh: function formatAutoRefresh() {
|
2979 | return 'Auto Refresh';
|
2980 | },
|
2981 | formatExport: function formatExport() {
|
2982 | return 'Export data';
|
2983 | },
|
2984 | formatJumpTo: function formatJumpTo() {
|
2985 | return 'GO';
|
2986 | },
|
2987 | formatAdvancedSearch: function formatAdvancedSearch() {
|
2988 | return 'Advanced search';
|
2989 | },
|
2990 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
2991 | return 'Close';
|
2992 | },
|
2993 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
2994 | return 'Ocultar/Mostrar controles';
|
2995 | },
|
2996 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
2997 | return 'Ocultar controles';
|
2998 | },
|
2999 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
3000 | return 'Mostrar controles';
|
3001 | }
|
3002 | };
|
3003 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['es-SP']);
|
3004 |
|
3005 | |
3006 |
|
3007 |
|
3008 |
|
3009 |
|
3010 | $$2.fn.bootstrapTable.locales['et-EE'] = $$2.fn.bootstrapTable.locales['et'] = {
|
3011 | formatCopyRows: function formatCopyRows() {
|
3012 | return 'Copy Rows';
|
3013 | },
|
3014 | formatPrint: function formatPrint() {
|
3015 | return 'Print';
|
3016 | },
|
3017 | formatLoadingMessage: function formatLoadingMessage() {
|
3018 | return 'Päring käib, palun oota';
|
3019 | },
|
3020 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
3021 | return "".concat(pageNumber, " rida lehe kohta");
|
3022 | },
|
3023 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
3024 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
3025 | return "N\xE4itan tulemusi ".concat(pageFrom, " kuni ").concat(pageTo, " - kokku ").concat(totalRows, " tulemust (filtered from ").concat(totalNotFiltered, " total rows)");
|
3026 | }
|
3027 | return "N\xE4itan tulemusi ".concat(pageFrom, " kuni ").concat(pageTo, " - kokku ").concat(totalRows, " tulemust");
|
3028 | },
|
3029 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
3030 | return 'previous page';
|
3031 | },
|
3032 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
3033 | return "to page ".concat(page);
|
3034 | },
|
3035 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
3036 | return 'next page';
|
3037 | },
|
3038 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
3039 | return "Showing ".concat(totalRows, " rows");
|
3040 | },
|
3041 | formatClearSearch: function formatClearSearch() {
|
3042 | return 'Clear Search';
|
3043 | },
|
3044 | formatSearch: function formatSearch() {
|
3045 | return 'Otsi';
|
3046 | },
|
3047 | formatNoMatches: function formatNoMatches() {
|
3048 | return 'Päringu tingimustele ei vastanud ühtegi tulemust';
|
3049 | },
|
3050 | formatPaginationSwitch: function formatPaginationSwitch() {
|
3051 | return 'Näita/Peida lehtedeks jagamine';
|
3052 | },
|
3053 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
3054 | return 'Show pagination';
|
3055 | },
|
3056 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
3057 | return 'Hide pagination';
|
3058 | },
|
3059 | formatRefresh: function formatRefresh() {
|
3060 | return 'Värskenda';
|
3061 | },
|
3062 | formatToggleOn: function formatToggleOn() {
|
3063 | return 'Show card view';
|
3064 | },
|
3065 | formatToggleOff: function formatToggleOff() {
|
3066 | return 'Hide card view';
|
3067 | },
|
3068 | formatColumns: function formatColumns() {
|
3069 | return 'Veerud';
|
3070 | },
|
3071 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
3072 | return 'Toggle all';
|
3073 | },
|
3074 | formatFullscreen: function formatFullscreen() {
|
3075 | return 'Fullscreen';
|
3076 | },
|
3077 | formatAllRows: function formatAllRows() {
|
3078 | return 'Kõik';
|
3079 | },
|
3080 | formatAutoRefresh: function formatAutoRefresh() {
|
3081 | return 'Auto Refresh';
|
3082 | },
|
3083 | formatExport: function formatExport() {
|
3084 | return 'Export data';
|
3085 | },
|
3086 | formatJumpTo: function formatJumpTo() {
|
3087 | return 'GO';
|
3088 | },
|
3089 | formatAdvancedSearch: function formatAdvancedSearch() {
|
3090 | return 'Advanced search';
|
3091 | },
|
3092 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
3093 | return 'Close';
|
3094 | },
|
3095 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
3096 | return 'Hide/Show controls';
|
3097 | },
|
3098 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
3099 | return 'Hide controls';
|
3100 | },
|
3101 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
3102 | return 'Show controls';
|
3103 | }
|
3104 | };
|
3105 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['et-EE']);
|
3106 |
|
3107 | |
3108 |
|
3109 |
|
3110 |
|
3111 |
|
3112 | $$2.fn.bootstrapTable.locales['fa-IR'] = $$2.fn.bootstrapTable.locales['fa'] = {
|
3113 | formatCopyRows: function formatCopyRows() {
|
3114 | return 'کپی ردیف ها';
|
3115 | },
|
3116 | formatPrint: function formatPrint() {
|
3117 | return 'پرینت';
|
3118 | },
|
3119 | formatLoadingMessage: function formatLoadingMessage() {
|
3120 | return 'در حال بارگذاری, لطفا صبر کنید';
|
3121 | },
|
3122 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
3123 | return "".concat(pageNumber, " \u0631\u06A9\u0648\u0631\u062F \u062F\u0631 \u0635\u0641\u062D\u0647");
|
3124 | },
|
3125 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
3126 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
3127 | 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)");
|
3128 | }
|
3129 | return "\u0646\u0645\u0627\u06CC\u0634 ".concat(pageFrom, " \u062A\u0627 ").concat(pageTo, " \u0627\u0632 ").concat(totalRows, " \u0631\u062F\u06CC\u0641");
|
3130 | },
|
3131 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
3132 | return 'صفحه قبلی';
|
3133 | },
|
3134 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
3135 | return "\u0628\u0647 \u0635\u0641\u062D\u0647 ".concat(page);
|
3136 | },
|
3137 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
3138 | return 'صفحه بعدی';
|
3139 | },
|
3140 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
3141 | return "\u0646\u0645\u0627\u06CC\u0634 ".concat(totalRows, " \u0633\u0637\u0631\u0647\u0627");
|
3142 | },
|
3143 | formatClearSearch: function formatClearSearch() {
|
3144 | return 'پاک کردن جستجو';
|
3145 | },
|
3146 | formatSearch: function formatSearch() {
|
3147 | return 'جستجو';
|
3148 | },
|
3149 | formatNoMatches: function formatNoMatches() {
|
3150 | return 'رکوردی یافت نشد.';
|
3151 | },
|
3152 | formatPaginationSwitch: function formatPaginationSwitch() {
|
3153 | return 'نمایش/مخفی صفحه بندی';
|
3154 | },
|
3155 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
3156 | return 'نمایش صفحه بندی';
|
3157 | },
|
3158 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
3159 | return 'پنهان کردن صفحه بندی';
|
3160 | },
|
3161 | formatRefresh: function formatRefresh() {
|
3162 | return 'به روز رسانی';
|
3163 | },
|
3164 | formatToggleOn: function formatToggleOn() {
|
3165 | return 'Show card view';
|
3166 | },
|
3167 | formatToggleOff: function formatToggleOff() {
|
3168 | return 'Hide card view';
|
3169 | },
|
3170 | formatColumns: function formatColumns() {
|
3171 | return 'سطر ها';
|
3172 | },
|
3173 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
3174 | return 'تغییر وضعیت همه';
|
3175 | },
|
3176 | formatFullscreen: function formatFullscreen() {
|
3177 | return 'تمام صفحه';
|
3178 | },
|
3179 | formatAllRows: function formatAllRows() {
|
3180 | return 'همه';
|
3181 | },
|
3182 | formatAutoRefresh: function formatAutoRefresh() {
|
3183 | return 'رفرش اتوماتیک';
|
3184 | },
|
3185 | formatExport: function formatExport() {
|
3186 | return 'خروجی دیتا';
|
3187 | },
|
3188 | formatJumpTo: function formatJumpTo() {
|
3189 | return 'برو';
|
3190 | },
|
3191 | formatAdvancedSearch: function formatAdvancedSearch() {
|
3192 | return 'جستجوی پیشرفته';
|
3193 | },
|
3194 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
3195 | return 'بستن';
|
3196 | },
|
3197 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
3198 | return 'پنهان/نمایش دادن کنترل ها';
|
3199 | },
|
3200 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
3201 | return 'پنهان کردن کنترل ها';
|
3202 | },
|
3203 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
3204 | return 'نمایش کنترل ها';
|
3205 | }
|
3206 | };
|
3207 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['fa-IR']);
|
3208 |
|
3209 | |
3210 |
|
3211 |
|
3212 |
|
3213 |
|
3214 | $$2.fn.bootstrapTable.locales['eu-EU'] = $$2.fn.bootstrapTable.locales['eu'] = {
|
3215 | formatCopyRows: function formatCopyRows() {
|
3216 | return 'Copy Rows';
|
3217 | },
|
3218 | formatPrint: function formatPrint() {
|
3219 | return 'Print';
|
3220 | },
|
3221 | formatLoadingMessage: function formatLoadingMessage() {
|
3222 | return 'Itxaron mesedez';
|
3223 | },
|
3224 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
3225 | return "".concat(pageNumber, " emaitza orriko.");
|
3226 | },
|
3227 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
3228 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
3229 | return "".concat(totalRows, " erregistroetatik ").concat(pageFrom, "etik ").concat(pageTo, "erakoak erakusten (filtered from ").concat(totalNotFiltered, " total rows)");
|
3230 | }
|
3231 | return "".concat(totalRows, " erregistroetatik ").concat(pageFrom, "etik ").concat(pageTo, "erakoak erakusten.");
|
3232 | },
|
3233 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
3234 | return 'previous page';
|
3235 | },
|
3236 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
3237 | return "to page ".concat(page);
|
3238 | },
|
3239 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
3240 | return 'next page';
|
3241 | },
|
3242 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
3243 | return "Showing ".concat(totalRows, " rows");
|
3244 | },
|
3245 | formatClearSearch: function formatClearSearch() {
|
3246 | return 'Clear Search';
|
3247 | },
|
3248 | formatSearch: function formatSearch() {
|
3249 | return 'Bilatu';
|
3250 | },
|
3251 | formatNoMatches: function formatNoMatches() {
|
3252 | return 'Ez da emaitzarik aurkitu';
|
3253 | },
|
3254 | formatPaginationSwitch: function formatPaginationSwitch() {
|
3255 | return 'Ezkutatu/Erakutsi orrikatzea';
|
3256 | },
|
3257 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
3258 | return 'Show pagination';
|
3259 | },
|
3260 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
3261 | return 'Hide pagination';
|
3262 | },
|
3263 | formatRefresh: function formatRefresh() {
|
3264 | return 'Eguneratu';
|
3265 | },
|
3266 | formatToggleOn: function formatToggleOn() {
|
3267 | return 'Show card view';
|
3268 | },
|
3269 | formatToggleOff: function formatToggleOff() {
|
3270 | return 'Hide card view';
|
3271 | },
|
3272 | formatColumns: function formatColumns() {
|
3273 | return 'Zutabeak';
|
3274 | },
|
3275 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
3276 | return 'Toggle all';
|
3277 | },
|
3278 | formatFullscreen: function formatFullscreen() {
|
3279 | return 'Fullscreen';
|
3280 | },
|
3281 | formatAllRows: function formatAllRows() {
|
3282 | return 'Guztiak';
|
3283 | },
|
3284 | formatAutoRefresh: function formatAutoRefresh() {
|
3285 | return 'Auto Refresh';
|
3286 | },
|
3287 | formatExport: function formatExport() {
|
3288 | return 'Export data';
|
3289 | },
|
3290 | formatJumpTo: function formatJumpTo() {
|
3291 | return 'GO';
|
3292 | },
|
3293 | formatAdvancedSearch: function formatAdvancedSearch() {
|
3294 | return 'Advanced search';
|
3295 | },
|
3296 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
3297 | return 'Close';
|
3298 | },
|
3299 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
3300 | return 'Hide/Show controls';
|
3301 | },
|
3302 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
3303 | return 'Hide controls';
|
3304 | },
|
3305 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
3306 | return 'Show controls';
|
3307 | }
|
3308 | };
|
3309 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['eu-EU']);
|
3310 |
|
3311 | |
3312 |
|
3313 |
|
3314 |
|
3315 |
|
3316 |
|
3317 | $$2.fn.bootstrapTable.locales['fr-BE'] = {
|
3318 | formatCopyRows: function formatCopyRows() {
|
3319 | return 'Copy Rows';
|
3320 | },
|
3321 | formatPrint: function formatPrint() {
|
3322 | return 'Print';
|
3323 | },
|
3324 | formatLoadingMessage: function formatLoadingMessage() {
|
3325 | return 'Chargement en cours';
|
3326 | },
|
3327 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
3328 | return "".concat(pageNumber, " lignes par page");
|
3329 | },
|
3330 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
3331 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
3332 | return "Affiche de ".concat(pageFrom, " \xE0 ").concat(pageTo, " sur ").concat(totalRows, " lignes (filtr\xE9s \xE0 partir de ").concat(totalNotFiltered, " lignes)");
|
3333 | }
|
3334 | return "Affiche de ".concat(pageFrom, " \xE0 ").concat(pageTo, " sur ").concat(totalRows, " lignes");
|
3335 | },
|
3336 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
3337 | return 'page précédente';
|
3338 | },
|
3339 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
3340 | return "vers la page ".concat(page);
|
3341 | },
|
3342 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
3343 | return 'page suivante';
|
3344 | },
|
3345 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
3346 | return "Affiche ".concat(totalRows, " lignes");
|
3347 | },
|
3348 | formatClearSearch: function formatClearSearch() {
|
3349 | return 'Effacer la recherche';
|
3350 | },
|
3351 | formatSearch: function formatSearch() {
|
3352 | return 'Recherche';
|
3353 | },
|
3354 | formatNoMatches: function formatNoMatches() {
|
3355 | return 'Pas de lignes trouvés';
|
3356 | },
|
3357 | formatPaginationSwitch: function formatPaginationSwitch() {
|
3358 | return 'Cacher/Afficher pagination';
|
3359 | },
|
3360 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
3361 | return 'Afficher pagination';
|
3362 | },
|
3363 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
3364 | return 'Cacher pagination';
|
3365 | },
|
3366 | formatRefresh: function formatRefresh() {
|
3367 | return 'Rafraichir';
|
3368 | },
|
3369 | formatToggleOn: function formatToggleOn() {
|
3370 | return 'Afficher vue carte';
|
3371 | },
|
3372 | formatToggleOff: function formatToggleOff() {
|
3373 | return 'Cacher vue carte';
|
3374 | },
|
3375 | formatColumns: function formatColumns() {
|
3376 | return 'Colonnes';
|
3377 | },
|
3378 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
3379 | return 'Tout basculer';
|
3380 | },
|
3381 | formatFullscreen: function formatFullscreen() {
|
3382 | return 'Plein écran';
|
3383 | },
|
3384 | formatAllRows: function formatAllRows() {
|
3385 | return 'Tout';
|
3386 | },
|
3387 | formatAutoRefresh: function formatAutoRefresh() {
|
3388 | return 'Rafraîchissement automatique';
|
3389 | },
|
3390 | formatExport: function formatExport() {
|
3391 | return 'Exporter les données';
|
3392 | },
|
3393 | formatJumpTo: function formatJumpTo() {
|
3394 | return 'Aller à';
|
3395 | },
|
3396 | formatAdvancedSearch: function formatAdvancedSearch() {
|
3397 | return 'Recherche avancée';
|
3398 | },
|
3399 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
3400 | return 'Fermer';
|
3401 | },
|
3402 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
3403 | return 'Cacher/Afficher controls';
|
3404 | },
|
3405 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
3406 | return 'Cacher controls';
|
3407 | },
|
3408 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
3409 | return 'Afficher controls';
|
3410 | }
|
3411 | };
|
3412 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['fr-BE']);
|
3413 |
|
3414 | |
3415 |
|
3416 |
|
3417 |
|
3418 |
|
3419 | $$2.fn.bootstrapTable.locales['fi-FI'] = $$2.fn.bootstrapTable.locales['fi'] = {
|
3420 | formatCopyRows: function formatCopyRows() {
|
3421 | return 'Copy Rows';
|
3422 | },
|
3423 | formatPrint: function formatPrint() {
|
3424 | return 'Print';
|
3425 | },
|
3426 | formatLoadingMessage: function formatLoadingMessage() {
|
3427 | return 'Ladataan, ole hyvä ja odota';
|
3428 | },
|
3429 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
3430 | return "".concat(pageNumber, " rivi\xE4 sivulla");
|
3431 | },
|
3432 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
3433 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
3434 | return "N\xE4ytet\xE4\xE4n rivit ".concat(pageFrom, " - ").concat(pageTo, " / ").concat(totalRows, " (filtered from ").concat(totalNotFiltered, " total rows)");
|
3435 | }
|
3436 | return "N\xE4ytet\xE4\xE4n rivit ".concat(pageFrom, " - ").concat(pageTo, " / ").concat(totalRows);
|
3437 | },
|
3438 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
3439 | return 'previous page';
|
3440 | },
|
3441 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
3442 | return "to page ".concat(page);
|
3443 | },
|
3444 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
3445 | return 'next page';
|
3446 | },
|
3447 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
3448 | return "Showing ".concat(totalRows, " rows");
|
3449 | },
|
3450 | formatClearSearch: function formatClearSearch() {
|
3451 | return 'Poista suodattimet';
|
3452 | },
|
3453 | formatSearch: function formatSearch() {
|
3454 | return 'Hae';
|
3455 | },
|
3456 | formatNoMatches: function formatNoMatches() {
|
3457 | return 'Hakuehtoja vastaavia tuloksia ei löytynyt';
|
3458 | },
|
3459 | formatPaginationSwitch: function formatPaginationSwitch() {
|
3460 | return 'Näytä/Piilota sivutus';
|
3461 | },
|
3462 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
3463 | return 'Show pagination';
|
3464 | },
|
3465 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
3466 | return 'Hide pagination';
|
3467 | },
|
3468 | formatRefresh: function formatRefresh() {
|
3469 | return 'Päivitä';
|
3470 | },
|
3471 | formatToggleOn: function formatToggleOn() {
|
3472 | return 'Show card view';
|
3473 | },
|
3474 | formatToggleOff: function formatToggleOff() {
|
3475 | return 'Hide card view';
|
3476 | },
|
3477 | formatColumns: function formatColumns() {
|
3478 | return 'Sarakkeet';
|
3479 | },
|
3480 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
3481 | return 'Toggle all';
|
3482 | },
|
3483 | formatFullscreen: function formatFullscreen() {
|
3484 | return 'Fullscreen';
|
3485 | },
|
3486 | formatAllRows: function formatAllRows() {
|
3487 | return 'Kaikki';
|
3488 | },
|
3489 | formatAutoRefresh: function formatAutoRefresh() {
|
3490 | return 'Auto Refresh';
|
3491 | },
|
3492 | formatExport: function formatExport() {
|
3493 | return 'Vie tiedot';
|
3494 | },
|
3495 | formatJumpTo: function formatJumpTo() {
|
3496 | return 'GO';
|
3497 | },
|
3498 | formatAdvancedSearch: function formatAdvancedSearch() {
|
3499 | return 'Advanced search';
|
3500 | },
|
3501 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
3502 | return 'Close';
|
3503 | },
|
3504 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
3505 | return 'Hide/Show controls';
|
3506 | },
|
3507 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
3508 | return 'Hide controls';
|
3509 | },
|
3510 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
3511 | return 'Show controls';
|
3512 | }
|
3513 | };
|
3514 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['fi-FI']);
|
3515 |
|
3516 | |
3517 |
|
3518 |
|
3519 |
|
3520 |
|
3521 | $$2.fn.bootstrapTable.locales['fr-CH'] = {
|
3522 | formatCopyRows: function formatCopyRows() {
|
3523 | return 'Copy Rows';
|
3524 | },
|
3525 | formatPrint: function formatPrint() {
|
3526 | return 'Print';
|
3527 | },
|
3528 | formatLoadingMessage: function formatLoadingMessage() {
|
3529 | return 'Chargement en cours';
|
3530 | },
|
3531 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
3532 | return "".concat(pageNumber, " lignes par page");
|
3533 | },
|
3534 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
3535 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
3536 | return "Affiche de ".concat(pageFrom, " \xE0 ").concat(pageTo, " sur ").concat(totalRows, " lignes (filtr\xE9s \xE0 partir de ").concat(totalNotFiltered, " lignes)");
|
3537 | }
|
3538 | return "Affiche de ".concat(pageFrom, " \xE0 ").concat(pageTo, " sur ").concat(totalRows, " lignes");
|
3539 | },
|
3540 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
3541 | return 'page précédente';
|
3542 | },
|
3543 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
3544 | return "vers la page ".concat(page);
|
3545 | },
|
3546 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
3547 | return 'page suivante';
|
3548 | },
|
3549 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
3550 | return "Affiche ".concat(totalRows, " lignes");
|
3551 | },
|
3552 | formatClearSearch: function formatClearSearch() {
|
3553 | return 'Effacer la recherche';
|
3554 | },
|
3555 | formatSearch: function formatSearch() {
|
3556 | return 'Recherche';
|
3557 | },
|
3558 | formatNoMatches: function formatNoMatches() {
|
3559 | return 'Pas de lignes trouvés';
|
3560 | },
|
3561 | formatPaginationSwitch: function formatPaginationSwitch() {
|
3562 | return 'Cacher/Afficher pagination';
|
3563 | },
|
3564 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
3565 | return 'Afficher pagination';
|
3566 | },
|
3567 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
3568 | return 'Cacher pagination';
|
3569 | },
|
3570 | formatRefresh: function formatRefresh() {
|
3571 | return 'Rafraichir';
|
3572 | },
|
3573 | formatToggleOn: function formatToggleOn() {
|
3574 | return 'Afficher vue carte';
|
3575 | },
|
3576 | formatToggleOff: function formatToggleOff() {
|
3577 | return 'Cacher vue carte';
|
3578 | },
|
3579 | formatColumns: function formatColumns() {
|
3580 | return 'Colonnes';
|
3581 | },
|
3582 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
3583 | return 'Tout basculer';
|
3584 | },
|
3585 | formatFullscreen: function formatFullscreen() {
|
3586 | return 'Plein écran';
|
3587 | },
|
3588 | formatAllRows: function formatAllRows() {
|
3589 | return 'Tout';
|
3590 | },
|
3591 | formatAutoRefresh: function formatAutoRefresh() {
|
3592 | return 'Rafraîchissement automatique';
|
3593 | },
|
3594 | formatExport: function formatExport() {
|
3595 | return 'Exporter les données';
|
3596 | },
|
3597 | formatJumpTo: function formatJumpTo() {
|
3598 | return 'Aller à';
|
3599 | },
|
3600 | formatAdvancedSearch: function formatAdvancedSearch() {
|
3601 | return 'Recherche avancée';
|
3602 | },
|
3603 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
3604 | return 'Fermer';
|
3605 | },
|
3606 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
3607 | return 'Cacher/Afficher controls';
|
3608 | },
|
3609 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
3610 | return 'Cacher controls';
|
3611 | },
|
3612 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
3613 | return 'Afficher controls';
|
3614 | }
|
3615 | };
|
3616 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['fr-CH']);
|
3617 |
|
3618 | |
3619 |
|
3620 |
|
3621 |
|
3622 |
|
3623 |
|
3624 |
|
3625 | $$2.fn.bootstrapTable.locales['fr-FR'] = $$2.fn.bootstrapTable.locales['fr'] = {
|
3626 | formatCopyRows: function formatCopyRows() {
|
3627 | return 'Copier les lignes';
|
3628 | },
|
3629 | formatPrint: function formatPrint() {
|
3630 | return 'Imprimer';
|
3631 | },
|
3632 | formatLoadingMessage: function formatLoadingMessage() {
|
3633 | return 'Chargement en cours';
|
3634 | },
|
3635 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
3636 | return "".concat(pageNumber, " lignes par page");
|
3637 | },
|
3638 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
3639 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
3640 | return "Affichage de ".concat(pageFrom, " \xE0 ").concat(pageTo, " sur ").concat(totalRows, " lignes (filtr\xE9s \xE0 partir de ").concat(totalNotFiltered, " lignes)");
|
3641 | }
|
3642 | return "Affichage de ".concat(pageFrom, " \xE0 ").concat(pageTo, " sur ").concat(totalRows, " lignes");
|
3643 | },
|
3644 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
3645 | return 'page précédente';
|
3646 | },
|
3647 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
3648 | return "vers la page ".concat(page);
|
3649 | },
|
3650 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
3651 | return 'page suivante';
|
3652 | },
|
3653 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
3654 | return "Affichage de ".concat(totalRows, " lignes");
|
3655 | },
|
3656 | formatClearSearch: function formatClearSearch() {
|
3657 | return 'Effacer la recherche';
|
3658 | },
|
3659 | formatSearch: function formatSearch() {
|
3660 | return 'Recherche';
|
3661 | },
|
3662 | formatNoMatches: function formatNoMatches() {
|
3663 | return 'Aucun résultat';
|
3664 | },
|
3665 | formatPaginationSwitch: function formatPaginationSwitch() {
|
3666 | return 'Masquer/Afficher la pagination';
|
3667 | },
|
3668 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
3669 | return 'Afficher la pagination';
|
3670 | },
|
3671 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
3672 | return 'Masquer la pagination';
|
3673 | },
|
3674 | formatRefresh: function formatRefresh() {
|
3675 | return 'Actualiser';
|
3676 | },
|
3677 | formatToggleOn: function formatToggleOn() {
|
3678 | return 'Afficher la vue carte';
|
3679 | },
|
3680 | formatToggleOff: function formatToggleOff() {
|
3681 | return 'Masquer la vue carte';
|
3682 | },
|
3683 | formatColumns: function formatColumns() {
|
3684 | return 'Colonnes';
|
3685 | },
|
3686 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
3687 | return 'Tout basculer';
|
3688 | },
|
3689 | formatFullscreen: function formatFullscreen() {
|
3690 | return 'Plein écran';
|
3691 | },
|
3692 | formatAllRows: function formatAllRows() {
|
3693 | return 'Tout';
|
3694 | },
|
3695 | formatAutoRefresh: function formatAutoRefresh() {
|
3696 | return 'Actualisation automatique';
|
3697 | },
|
3698 | formatExport: function formatExport() {
|
3699 | return 'Exporter les données';
|
3700 | },
|
3701 | formatJumpTo: function formatJumpTo() {
|
3702 | return 'ALLER';
|
3703 | },
|
3704 | formatAdvancedSearch: function formatAdvancedSearch() {
|
3705 | return 'Recherche avancée';
|
3706 | },
|
3707 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
3708 | return 'Fermer';
|
3709 | },
|
3710 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
3711 | return 'Masquer/Afficher les contrôles';
|
3712 | },
|
3713 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
3714 | return 'Masquer les contrôles';
|
3715 | },
|
3716 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
3717 | return 'Afficher les contrôles';
|
3718 | }
|
3719 | };
|
3720 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['fr-FR']);
|
3721 |
|
3722 | |
3723 |
|
3724 |
|
3725 |
|
3726 |
|
3727 | $$2.fn.bootstrapTable.locales['he-IL'] = $$2.fn.bootstrapTable.locales['he'] = {
|
3728 | formatCopyRows: function formatCopyRows() {
|
3729 | return 'Copy Rows';
|
3730 | },
|
3731 | formatPrint: function formatPrint() {
|
3732 | return 'Print';
|
3733 | },
|
3734 | formatLoadingMessage: function formatLoadingMessage() {
|
3735 | return 'טוען, נא להמתין';
|
3736 | },
|
3737 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
3738 | return "".concat(pageNumber, " \u05E9\u05D5\u05E8\u05D5\u05EA \u05D1\u05E2\u05DE\u05D5\u05D3");
|
3739 | },
|
3740 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
3741 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
3742 | return "\u05DE\u05E6\u05D9\u05D2 ".concat(pageFrom, " \u05E2\u05D3 ").concat(pageTo, " \u05DE-").concat(totalRows, "\u05E9\u05D5\u05E8\u05D5\u05EA").concat(totalNotFiltered, " total rows)");
|
3743 | }
|
3744 | return "\u05DE\u05E6\u05D9\u05D2 ".concat(pageFrom, " \u05E2\u05D3 ").concat(pageTo, " \u05DE-").concat(totalRows, " \u05E9\u05D5\u05E8\u05D5\u05EA");
|
3745 | },
|
3746 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
3747 | return 'previous page';
|
3748 | },
|
3749 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
3750 | return "to page ".concat(page);
|
3751 | },
|
3752 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
3753 | return 'next page';
|
3754 | },
|
3755 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
3756 | return "Showing ".concat(totalRows, " rows");
|
3757 | },
|
3758 | formatClearSearch: function formatClearSearch() {
|
3759 | return 'Clear Search';
|
3760 | },
|
3761 | formatSearch: function formatSearch() {
|
3762 | return 'חיפוש';
|
3763 | },
|
3764 | formatNoMatches: function formatNoMatches() {
|
3765 | return 'לא נמצאו רשומות תואמות';
|
3766 | },
|
3767 | formatPaginationSwitch: function formatPaginationSwitch() {
|
3768 | return 'הסתר/הצג מספור דפים';
|
3769 | },
|
3770 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
3771 | return 'Show pagination';
|
3772 | },
|
3773 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
3774 | return 'Hide pagination';
|
3775 | },
|
3776 | formatRefresh: function formatRefresh() {
|
3777 | return 'רענן';
|
3778 | },
|
3779 | formatToggleOn: function formatToggleOn() {
|
3780 | return 'Show card view';
|
3781 | },
|
3782 | formatToggleOff: function formatToggleOff() {
|
3783 | return 'Hide card view';
|
3784 | },
|
3785 | formatColumns: function formatColumns() {
|
3786 | return 'עמודות';
|
3787 | },
|
3788 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
3789 | return 'Toggle all';
|
3790 | },
|
3791 | formatFullscreen: function formatFullscreen() {
|
3792 | return 'Fullscreen';
|
3793 | },
|
3794 | formatAllRows: function formatAllRows() {
|
3795 | return 'הכל';
|
3796 | },
|
3797 | formatAutoRefresh: function formatAutoRefresh() {
|
3798 | return 'Auto Refresh';
|
3799 | },
|
3800 | formatExport: function formatExport() {
|
3801 | return 'Export data';
|
3802 | },
|
3803 | formatJumpTo: function formatJumpTo() {
|
3804 | return 'GO';
|
3805 | },
|
3806 | formatAdvancedSearch: function formatAdvancedSearch() {
|
3807 | return 'Advanced search';
|
3808 | },
|
3809 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
3810 | return 'Close';
|
3811 | },
|
3812 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
3813 | return 'Hide/Show controls';
|
3814 | },
|
3815 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
3816 | return 'Hide controls';
|
3817 | },
|
3818 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
3819 | return 'Show controls';
|
3820 | }
|
3821 | };
|
3822 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['he-IL']);
|
3823 |
|
3824 | |
3825 |
|
3826 |
|
3827 |
|
3828 |
|
3829 |
|
3830 | $$2.fn.bootstrapTable.locales['fr-LU'] = {
|
3831 | formatCopyRows: function formatCopyRows() {
|
3832 | return 'Copier les lignes';
|
3833 | },
|
3834 | formatPrint: function formatPrint() {
|
3835 | return 'Imprimer';
|
3836 | },
|
3837 | formatLoadingMessage: function formatLoadingMessage() {
|
3838 | return 'Chargement en cours';
|
3839 | },
|
3840 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
3841 | return "".concat(pageNumber, " lignes par page");
|
3842 | },
|
3843 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
3844 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
3845 | return "Affiche de ".concat(pageFrom, " \xE0 ").concat(pageTo, " sur ").concat(totalRows, " lignes (filtr\xE9s \xE0 partir de ").concat(totalNotFiltered, " lignes)");
|
3846 | }
|
3847 | return "Affiche de ".concat(pageFrom, " \xE0 ").concat(pageTo, " sur ").concat(totalRows, " lignes");
|
3848 | },
|
3849 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
3850 | return 'page précédente';
|
3851 | },
|
3852 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
3853 | return "vers la page ".concat(page);
|
3854 | },
|
3855 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
3856 | return 'page suivante';
|
3857 | },
|
3858 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
3859 | return "Affiche ".concat(totalRows, " lignes");
|
3860 | },
|
3861 | formatClearSearch: function formatClearSearch() {
|
3862 | return 'Effacer la recherche';
|
3863 | },
|
3864 | formatSearch: function formatSearch() {
|
3865 | return 'Recherche';
|
3866 | },
|
3867 | formatNoMatches: function formatNoMatches() {
|
3868 | return 'Pas de lignes trouvés';
|
3869 | },
|
3870 | formatPaginationSwitch: function formatPaginationSwitch() {
|
3871 | return 'Cacher/Afficher pagination';
|
3872 | },
|
3873 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
3874 | return 'Afficher pagination';
|
3875 | },
|
3876 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
3877 | return 'Cacher pagination';
|
3878 | },
|
3879 | formatRefresh: function formatRefresh() {
|
3880 | return 'Rafraichir';
|
3881 | },
|
3882 | formatToggleOn: function formatToggleOn() {
|
3883 | return 'Afficher vue carte';
|
3884 | },
|
3885 | formatToggleOff: function formatToggleOff() {
|
3886 | return 'Cacher vue carte';
|
3887 | },
|
3888 | formatColumns: function formatColumns() {
|
3889 | return 'Colonnes';
|
3890 | },
|
3891 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
3892 | return 'Tout basculer';
|
3893 | },
|
3894 | formatFullscreen: function formatFullscreen() {
|
3895 | return 'Plein écran';
|
3896 | },
|
3897 | formatAllRows: function formatAllRows() {
|
3898 | return 'Tout';
|
3899 | },
|
3900 | formatAutoRefresh: function formatAutoRefresh() {
|
3901 | return 'Rafraîchissement automatique';
|
3902 | },
|
3903 | formatExport: function formatExport() {
|
3904 | return 'Exporter les données';
|
3905 | },
|
3906 | formatJumpTo: function formatJumpTo() {
|
3907 | return 'Aller à';
|
3908 | },
|
3909 | formatAdvancedSearch: function formatAdvancedSearch() {
|
3910 | return 'Recherche avancée';
|
3911 | },
|
3912 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
3913 | return 'Fermer';
|
3914 | },
|
3915 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
3916 | return 'Cacher/Afficher controls';
|
3917 | },
|
3918 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
3919 | return 'Cacher controls';
|
3920 | },
|
3921 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
3922 | return 'Afficher controls';
|
3923 | }
|
3924 | };
|
3925 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['fr-LU']);
|
3926 |
|
3927 | |
3928 |
|
3929 |
|
3930 |
|
3931 |
|
3932 | $$2.fn.bootstrapTable.locales['hi-IN'] = {
|
3933 | formatCopyRows: function formatCopyRows() {
|
3934 | return 'पंक्तियों की कॉपी करें';
|
3935 | },
|
3936 | formatPrint: function formatPrint() {
|
3937 | return 'प्रिंट';
|
3938 | },
|
3939 | formatLoadingMessage: function formatLoadingMessage() {
|
3940 | return 'लोड हो रहा है कृपया प्रतीक्षा करें';
|
3941 | },
|
3942 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
3943 | return "".concat(pageNumber, " \u092A\u094D\u0930\u0924\u093F \u092A\u0943\u0937\u094D\u0920 \u092A\u0902\u0915\u094D\u0924\u093F\u092F\u093E\u0901");
|
3944 | },
|
3945 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
3946 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
3947 | return "".concat(pageFrom, " - ").concat(pageTo, " \u092A\u0915\u094D\u0924\u093F\u092F\u093E ").concat(totalRows, " \u092E\u0947\u0902 \u0938\u0947 ( ").concat(totalNotFiltered, " \u092A\u0915\u094D\u0924\u093F\u092F\u093E)");
|
3948 | }
|
3949 | return "".concat(pageFrom, " - ").concat(pageTo, " \u092A\u0915\u094D\u0924\u093F\u092F\u093E ").concat(totalRows, " \u092E\u0947\u0902 \u0938\u0947");
|
3950 | },
|
3951 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
3952 | return 'पिछला पृष्ठ';
|
3953 | },
|
3954 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
3955 | return "".concat(page, " \u092A\u0943\u0937\u094D\u0920 \u092A\u0930");
|
3956 | },
|
3957 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
3958 | return 'अगला पृष्ठ';
|
3959 | },
|
3960 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
3961 | return "".concat(totalRows, " \u092A\u0902\u0915\u094D\u0924\u093F\u092F\u093E\u0902");
|
3962 | },
|
3963 | formatClearSearch: function formatClearSearch() {
|
3964 | return 'सर्च क्लिअर करें';
|
3965 | },
|
3966 | formatSearch: function formatSearch() {
|
3967 | return 'सर्च';
|
3968 | },
|
3969 | formatNoMatches: function formatNoMatches() {
|
3970 | return 'मेल खाते रिकॉर्ड नही मिले';
|
3971 | },
|
3972 | formatPaginationSwitch: function formatPaginationSwitch() {
|
3973 | return 'छुपाओ/दिखाओ पृष्ठ संख्या';
|
3974 | },
|
3975 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
3976 | return 'दिखाओ पृष्ठ संख्या';
|
3977 | },
|
3978 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
3979 | return 'छुपाओ पृष्ठ संख्या';
|
3980 | },
|
3981 | formatRefresh: function formatRefresh() {
|
3982 | return 'रिफ्रेश';
|
3983 | },
|
3984 | formatToggleOn: function formatToggleOn() {
|
3985 | return 'कार्ड दृश्य दिखाएं';
|
3986 | },
|
3987 | formatToggleOff: function formatToggleOff() {
|
3988 | return 'कार्ड दृश्य छुपाएं';
|
3989 | },
|
3990 | formatColumns: function formatColumns() {
|
3991 | return 'कॉलम';
|
3992 | },
|
3993 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
3994 | return 'टॉगल आल';
|
3995 | },
|
3996 | formatFullscreen: function formatFullscreen() {
|
3997 | return 'पूर्ण स्क्रीन';
|
3998 | },
|
3999 | formatAllRows: function formatAllRows() {
|
4000 | return 'सब';
|
4001 | },
|
4002 | formatAutoRefresh: function formatAutoRefresh() {
|
4003 | return 'ऑटो रिफ्रेश';
|
4004 | },
|
4005 | formatExport: function formatExport() {
|
4006 | return 'एक्सपोर्ट डाटा';
|
4007 | },
|
4008 | formatJumpTo: function formatJumpTo() {
|
4009 | return 'जाओ';
|
4010 | },
|
4011 | formatAdvancedSearch: function formatAdvancedSearch() {
|
4012 | return 'एडवांस सर्च';
|
4013 | },
|
4014 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
4015 | return 'बंद करे';
|
4016 | },
|
4017 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
4018 | return 'छुपाओ/दिखाओ कंट्रोल्स';
|
4019 | },
|
4020 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
4021 | return 'छुपाओ कंट्रोल्स';
|
4022 | },
|
4023 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
4024 | return 'दिखाओ कंट्रोल्स';
|
4025 | }
|
4026 | };
|
4027 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['hi-IN']);
|
4028 |
|
4029 | |
4030 |
|
4031 |
|
4032 |
|
4033 |
|
4034 |
|
4035 | $$2.fn.bootstrapTable.locales['hr-HR'] = $$2.fn.bootstrapTable.locales['hr'] = {
|
4036 | formatCopyRows: function formatCopyRows() {
|
4037 | return 'Copy Rows';
|
4038 | },
|
4039 | formatPrint: function formatPrint() {
|
4040 | return 'Print';
|
4041 | },
|
4042 | formatLoadingMessage: function formatLoadingMessage() {
|
4043 | return 'Molimo pričekajte';
|
4044 | },
|
4045 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
4046 | return "".concat(pageNumber, " broj zapisa po stranici");
|
4047 | },
|
4048 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
4049 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
4050 | return "Prikazujem ".concat(pageFrom, ". - ").concat(pageTo, ". od ukupnog broja zapisa ").concat(totalRows, " (filtered from ").concat(totalNotFiltered, " total rows)");
|
4051 | }
|
4052 | return "Prikazujem ".concat(pageFrom, ". - ").concat(pageTo, ". od ukupnog broja zapisa ").concat(totalRows);
|
4053 | },
|
4054 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
4055 | return 'previous page';
|
4056 | },
|
4057 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
4058 | return "to page ".concat(page);
|
4059 | },
|
4060 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
4061 | return 'next page';
|
4062 | },
|
4063 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
4064 | return "Showing ".concat(totalRows, " rows");
|
4065 | },
|
4066 | formatClearSearch: function formatClearSearch() {
|
4067 | return 'Clear Search';
|
4068 | },
|
4069 | formatSearch: function formatSearch() {
|
4070 | return 'Pretraži';
|
4071 | },
|
4072 | formatNoMatches: function formatNoMatches() {
|
4073 | return 'Nije pronađen niti jedan zapis';
|
4074 | },
|
4075 | formatPaginationSwitch: function formatPaginationSwitch() {
|
4076 | return 'Prikaži/sakrij stranice';
|
4077 | },
|
4078 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
4079 | return 'Show pagination';
|
4080 | },
|
4081 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
4082 | return 'Hide pagination';
|
4083 | },
|
4084 | formatRefresh: function formatRefresh() {
|
4085 | return 'Osvježi';
|
4086 | },
|
4087 | formatToggleOn: function formatToggleOn() {
|
4088 | return 'Show card view';
|
4089 | },
|
4090 | formatToggleOff: function formatToggleOff() {
|
4091 | return 'Hide card view';
|
4092 | },
|
4093 | formatColumns: function formatColumns() {
|
4094 | return 'Kolone';
|
4095 | },
|
4096 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
4097 | return 'Toggle all';
|
4098 | },
|
4099 | formatFullscreen: function formatFullscreen() {
|
4100 | return 'Fullscreen';
|
4101 | },
|
4102 | formatAllRows: function formatAllRows() {
|
4103 | return 'Sve';
|
4104 | },
|
4105 | formatAutoRefresh: function formatAutoRefresh() {
|
4106 | return 'Auto Refresh';
|
4107 | },
|
4108 | formatExport: function formatExport() {
|
4109 | return 'Export data';
|
4110 | },
|
4111 | formatJumpTo: function formatJumpTo() {
|
4112 | return 'GO';
|
4113 | },
|
4114 | formatAdvancedSearch: function formatAdvancedSearch() {
|
4115 | return 'Advanced search';
|
4116 | },
|
4117 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
4118 | return 'Close';
|
4119 | },
|
4120 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
4121 | return 'Hide/Show controls';
|
4122 | },
|
4123 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
4124 | return 'Hide controls';
|
4125 | },
|
4126 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
4127 | return 'Show controls';
|
4128 | }
|
4129 | };
|
4130 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['hr-HR']);
|
4131 |
|
4132 | |
4133 |
|
4134 |
|
4135 |
|
4136 |
|
4137 | $$2.fn.bootstrapTable.locales['id-ID'] = $$2.fn.bootstrapTable.locales['id'] = {
|
4138 | formatCopyRows: function formatCopyRows() {
|
4139 | return 'Copy Rows';
|
4140 | },
|
4141 | formatPrint: function formatPrint() {
|
4142 | return 'Print';
|
4143 | },
|
4144 | formatLoadingMessage: function formatLoadingMessage() {
|
4145 | return 'Memuat, mohon tunggu';
|
4146 | },
|
4147 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
4148 | return "".concat(pageNumber, " baris per halaman");
|
4149 | },
|
4150 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
4151 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
4152 | return "Menampilkan ".concat(pageFrom, " sampai ").concat(pageTo, " dari ").concat(totalRows, " baris (filtered from ").concat(totalNotFiltered, " total rows)");
|
4153 | }
|
4154 | return "Menampilkan ".concat(pageFrom, " sampai ").concat(pageTo, " dari ").concat(totalRows, " baris");
|
4155 | },
|
4156 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
4157 | return 'previous page';
|
4158 | },
|
4159 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
4160 | return "to page ".concat(page);
|
4161 | },
|
4162 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
4163 | return 'next page';
|
4164 | },
|
4165 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
4166 | return "Showing ".concat(totalRows, " rows");
|
4167 | },
|
4168 | formatClearSearch: function formatClearSearch() {
|
4169 | return 'Bersihkan filter';
|
4170 | },
|
4171 | formatSearch: function formatSearch() {
|
4172 | return 'Pencarian';
|
4173 | },
|
4174 | formatNoMatches: function formatNoMatches() {
|
4175 | return 'Tidak ditemukan data yang cocok';
|
4176 | },
|
4177 | formatPaginationSwitch: function formatPaginationSwitch() {
|
4178 | return 'Sembunyikan/Tampilkan halaman';
|
4179 | },
|
4180 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
4181 | return 'Show pagination';
|
4182 | },
|
4183 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
4184 | return 'Hide pagination';
|
4185 | },
|
4186 | formatRefresh: function formatRefresh() {
|
4187 | return 'Muat ulang';
|
4188 | },
|
4189 | formatToggleOn: function formatToggleOn() {
|
4190 | return 'Show card view';
|
4191 | },
|
4192 | formatToggleOff: function formatToggleOff() {
|
4193 | return 'Hide card view';
|
4194 | },
|
4195 | formatColumns: function formatColumns() {
|
4196 | return 'kolom';
|
4197 | },
|
4198 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
4199 | return 'Toggle all';
|
4200 | },
|
4201 | formatFullscreen: function formatFullscreen() {
|
4202 | return 'Fullscreen';
|
4203 | },
|
4204 | formatAllRows: function formatAllRows() {
|
4205 | return 'Semua';
|
4206 | },
|
4207 | formatAutoRefresh: function formatAutoRefresh() {
|
4208 | return 'Auto Refresh';
|
4209 | },
|
4210 | formatExport: function formatExport() {
|
4211 | return 'Ekspor data';
|
4212 | },
|
4213 | formatJumpTo: function formatJumpTo() {
|
4214 | return 'GO';
|
4215 | },
|
4216 | formatAdvancedSearch: function formatAdvancedSearch() {
|
4217 | return 'Advanced search';
|
4218 | },
|
4219 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
4220 | return 'Close';
|
4221 | },
|
4222 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
4223 | return 'Hide/Show controls';
|
4224 | },
|
4225 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
4226 | return 'Hide controls';
|
4227 | },
|
4228 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
4229 | return 'Show controls';
|
4230 | }
|
4231 | };
|
4232 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['id-ID']);
|
4233 |
|
4234 | |
4235 |
|
4236 |
|
4237 |
|
4238 |
|
4239 | $$2.fn.bootstrapTable.locales['hu-HU'] = $$2.fn.bootstrapTable.locales['hu'] = {
|
4240 | formatCopyRows: function formatCopyRows() {
|
4241 | return 'Copy Rows';
|
4242 | },
|
4243 | formatPrint: function formatPrint() {
|
4244 | return 'Print';
|
4245 | },
|
4246 | formatLoadingMessage: function formatLoadingMessage() {
|
4247 | return 'Betöltés, kérem várjon';
|
4248 | },
|
4249 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
4250 | return "".concat(pageNumber, " rekord per oldal");
|
4251 | },
|
4252 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
4253 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
4254 | return "Megjelen\xEDtve ".concat(pageFrom, " - ").concat(pageTo, " / ").concat(totalRows, " \xF6sszesen (filtered from ").concat(totalNotFiltered, " total rows)");
|
4255 | }
|
4256 | return "Megjelen\xEDtve ".concat(pageFrom, " - ").concat(pageTo, " / ").concat(totalRows, " \xF6sszesen");
|
4257 | },
|
4258 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
4259 | return 'previous page';
|
4260 | },
|
4261 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
4262 | return "to page ".concat(page);
|
4263 | },
|
4264 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
4265 | return 'next page';
|
4266 | },
|
4267 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
4268 | return "Showing ".concat(totalRows, " rows");
|
4269 | },
|
4270 | formatClearSearch: function formatClearSearch() {
|
4271 | return 'Clear Search';
|
4272 | },
|
4273 | formatSearch: function formatSearch() {
|
4274 | return 'Keresés';
|
4275 | },
|
4276 | formatNoMatches: function formatNoMatches() {
|
4277 | return 'Nincs találat';
|
4278 | },
|
4279 | formatPaginationSwitch: function formatPaginationSwitch() {
|
4280 | return 'Lapozó elrejtése/megjelenítése';
|
4281 | },
|
4282 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
4283 | return 'Show pagination';
|
4284 | },
|
4285 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
4286 | return 'Hide pagination';
|
4287 | },
|
4288 | formatRefresh: function formatRefresh() {
|
4289 | return 'Frissítés';
|
4290 | },
|
4291 | formatToggleOn: function formatToggleOn() {
|
4292 | return 'Show card view';
|
4293 | },
|
4294 | formatToggleOff: function formatToggleOff() {
|
4295 | return 'Hide card view';
|
4296 | },
|
4297 | formatColumns: function formatColumns() {
|
4298 | return 'Oszlopok';
|
4299 | },
|
4300 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
4301 | return 'Toggle all';
|
4302 | },
|
4303 | formatFullscreen: function formatFullscreen() {
|
4304 | return 'Fullscreen';
|
4305 | },
|
4306 | formatAllRows: function formatAllRows() {
|
4307 | return 'Összes';
|
4308 | },
|
4309 | formatAutoRefresh: function formatAutoRefresh() {
|
4310 | return 'Auto Refresh';
|
4311 | },
|
4312 | formatExport: function formatExport() {
|
4313 | return 'Export data';
|
4314 | },
|
4315 | formatJumpTo: function formatJumpTo() {
|
4316 | return 'GO';
|
4317 | },
|
4318 | formatAdvancedSearch: function formatAdvancedSearch() {
|
4319 | return 'Advanced search';
|
4320 | },
|
4321 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
4322 | return 'Close';
|
4323 | },
|
4324 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
4325 | return 'Hide/Show controls';
|
4326 | },
|
4327 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
4328 | return 'Hide controls';
|
4329 | },
|
4330 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
4331 | return 'Show controls';
|
4332 | }
|
4333 | };
|
4334 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['hu-HU']);
|
4335 |
|
4336 | |
4337 |
|
4338 |
|
4339 |
|
4340 |
|
4341 |
|
4342 |
|
4343 | $$2.fn.bootstrapTable.locales['it-IT'] = $$2.fn.bootstrapTable.locales['it'] = {
|
4344 | formatCopyRows: function formatCopyRows() {
|
4345 | return 'Copy Rows';
|
4346 | },
|
4347 | formatPrint: function formatPrint() {
|
4348 | return 'Print';
|
4349 | },
|
4350 | formatLoadingMessage: function formatLoadingMessage() {
|
4351 | return 'Caricamento in corso';
|
4352 | },
|
4353 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
4354 | return "".concat(pageNumber, " elementi per pagina");
|
4355 | },
|
4356 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
4357 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
4358 | return "Visualizzazione da ".concat(pageFrom, " a ").concat(pageTo, " di ").concat(totalRows, " elementi (filtrati da ").concat(totalNotFiltered, " elementi totali)");
|
4359 | }
|
4360 | return "Visualizzazione da ".concat(pageFrom, " a ").concat(pageTo, " di ").concat(totalRows, " elementi");
|
4361 | },
|
4362 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
4363 | return 'pagina precedente';
|
4364 | },
|
4365 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
4366 | return "alla pagina ".concat(page);
|
4367 | },
|
4368 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
4369 | return 'pagina successiva';
|
4370 | },
|
4371 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
4372 | return "Mostrando ".concat(totalRows, " elementi");
|
4373 | },
|
4374 | formatClearSearch: function formatClearSearch() {
|
4375 | return 'Pulisci filtri';
|
4376 | },
|
4377 | formatSearch: function formatSearch() {
|
4378 | return 'Cerca';
|
4379 | },
|
4380 | formatNoMatches: function formatNoMatches() {
|
4381 | return 'Nessun elemento trovato';
|
4382 | },
|
4383 | formatPaginationSwitch: function formatPaginationSwitch() {
|
4384 | return 'Nascondi/Mostra paginazione';
|
4385 | },
|
4386 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
4387 | return 'Mostra paginazione';
|
4388 | },
|
4389 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
4390 | return 'Nascondi paginazione';
|
4391 | },
|
4392 | formatRefresh: function formatRefresh() {
|
4393 | return 'Aggiorna';
|
4394 | },
|
4395 | formatToggleOn: function formatToggleOn() {
|
4396 | return 'Mostra visuale a scheda';
|
4397 | },
|
4398 | formatToggleOff: function formatToggleOff() {
|
4399 | return 'Nascondi visuale a scheda';
|
4400 | },
|
4401 | formatColumns: function formatColumns() {
|
4402 | return 'Colonne';
|
4403 | },
|
4404 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
4405 | return 'Mostra tutte';
|
4406 | },
|
4407 | formatFullscreen: function formatFullscreen() {
|
4408 | return 'Schermo intero';
|
4409 | },
|
4410 | formatAllRows: function formatAllRows() {
|
4411 | return 'Tutto';
|
4412 | },
|
4413 | formatAutoRefresh: function formatAutoRefresh() {
|
4414 | return 'Auto Aggiornamento';
|
4415 | },
|
4416 | formatExport: function formatExport() {
|
4417 | return 'Esporta dati';
|
4418 | },
|
4419 | formatJumpTo: function formatJumpTo() {
|
4420 | return 'VAI';
|
4421 | },
|
4422 | formatAdvancedSearch: function formatAdvancedSearch() {
|
4423 | return 'Filtri avanzati';
|
4424 | },
|
4425 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
4426 | return 'Chiudi';
|
4427 | },
|
4428 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
4429 | return 'Hide/Show controls';
|
4430 | },
|
4431 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
4432 | return 'Hide controls';
|
4433 | },
|
4434 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
4435 | return 'Show controls';
|
4436 | }
|
4437 | };
|
4438 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['it-IT']);
|
4439 |
|
4440 | |
4441 |
|
4442 |
|
4443 |
|
4444 |
|
4445 | $$2.fn.bootstrapTable.locales['ja-JP'] = $$2.fn.bootstrapTable.locales['ja'] = {
|
4446 | formatCopyRows: function formatCopyRows() {
|
4447 | return 'Copy Rows';
|
4448 | },
|
4449 | formatPrint: function formatPrint() {
|
4450 | return 'Print';
|
4451 | },
|
4452 | formatLoadingMessage: function formatLoadingMessage() {
|
4453 | return '読み込み中です。少々お待ちください。';
|
4454 | },
|
4455 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
4456 | return "\u30DA\u30FC\u30B8\u5F53\u305F\u308A\u6700\u5927".concat(pageNumber, "\u4EF6");
|
4457 | },
|
4458 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
4459 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
4460 | 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)");
|
4461 | }
|
4462 | 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");
|
4463 | },
|
4464 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
4465 | return 'previous page';
|
4466 | },
|
4467 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
4468 | return "to page ".concat(page);
|
4469 | },
|
4470 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
4471 | return 'next page';
|
4472 | },
|
4473 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
4474 | return "Showing ".concat(totalRows, " rows");
|
4475 | },
|
4476 | formatClearSearch: function formatClearSearch() {
|
4477 | return 'Clear Search';
|
4478 | },
|
4479 | formatSearch: function formatSearch() {
|
4480 | return '検索';
|
4481 | },
|
4482 | formatNoMatches: function formatNoMatches() {
|
4483 | return '該当するレコードが見つかりません';
|
4484 | },
|
4485 | formatPaginationSwitch: function formatPaginationSwitch() {
|
4486 | return 'ページ数を表示・非表示';
|
4487 | },
|
4488 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
4489 | return 'Show pagination';
|
4490 | },
|
4491 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
4492 | return 'Hide pagination';
|
4493 | },
|
4494 | formatRefresh: function formatRefresh() {
|
4495 | return '更新';
|
4496 | },
|
4497 | formatToggleOn: function formatToggleOn() {
|
4498 | return 'Show card view';
|
4499 | },
|
4500 | formatToggleOff: function formatToggleOff() {
|
4501 | return 'Hide card view';
|
4502 | },
|
4503 | formatColumns: function formatColumns() {
|
4504 | return '列';
|
4505 | },
|
4506 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
4507 | return 'Toggle all';
|
4508 | },
|
4509 | formatFullscreen: function formatFullscreen() {
|
4510 | return 'Fullscreen';
|
4511 | },
|
4512 | formatAllRows: function formatAllRows() {
|
4513 | return 'すべて';
|
4514 | },
|
4515 | formatAutoRefresh: function formatAutoRefresh() {
|
4516 | return 'Auto Refresh';
|
4517 | },
|
4518 | formatExport: function formatExport() {
|
4519 | return 'Export data';
|
4520 | },
|
4521 | formatJumpTo: function formatJumpTo() {
|
4522 | return 'GO';
|
4523 | },
|
4524 | formatAdvancedSearch: function formatAdvancedSearch() {
|
4525 | return 'Advanced search';
|
4526 | },
|
4527 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
4528 | return 'Close';
|
4529 | },
|
4530 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
4531 | return 'Hide/Show controls';
|
4532 | },
|
4533 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
4534 | return 'Hide controls';
|
4535 | },
|
4536 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
4537 | return 'Show controls';
|
4538 | }
|
4539 | };
|
4540 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['ja-JP']);
|
4541 |
|
4542 | |
4543 |
|
4544 |
|
4545 |
|
4546 |
|
4547 | $$2.fn.bootstrapTable.locales['ka-GE'] = $$2.fn.bootstrapTable.locales['ka'] = {
|
4548 | formatCopyRows: function formatCopyRows() {
|
4549 | return 'Copy Rows';
|
4550 | },
|
4551 | formatPrint: function formatPrint() {
|
4552 | return 'Print';
|
4553 | },
|
4554 | formatLoadingMessage: function formatLoadingMessage() {
|
4555 | return 'იტვირთება, გთხოვთ მოიცადოთ';
|
4556 | },
|
4557 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
4558 | return "".concat(pageNumber, " \u10E9\u10D0\u10DC\u10D0\u10EC\u10D4\u10E0\u10D8 \u10D7\u10D8\u10D7\u10DD \u10D2\u10D5\u10D4\u10E0\u10D3\u10D6\u10D4");
|
4559 | },
|
4560 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
4561 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
4562 | 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)");
|
4563 | }
|
4564 | 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");
|
4565 | },
|
4566 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
4567 | return 'previous page';
|
4568 | },
|
4569 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
4570 | return "to page ".concat(page);
|
4571 | },
|
4572 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
4573 | return 'next page';
|
4574 | },
|
4575 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
4576 | return "Showing ".concat(totalRows, " rows");
|
4577 | },
|
4578 | formatClearSearch: function formatClearSearch() {
|
4579 | return 'Clear Search';
|
4580 | },
|
4581 | formatSearch: function formatSearch() {
|
4582 | return 'ძებნა';
|
4583 | },
|
4584 | formatNoMatches: function formatNoMatches() {
|
4585 | return 'მონაცემები არ არის';
|
4586 | },
|
4587 | formatPaginationSwitch: function formatPaginationSwitch() {
|
4588 | return 'გვერდების გადამრთველის დამალვა/გამოჩენა';
|
4589 | },
|
4590 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
4591 | return 'Show pagination';
|
4592 | },
|
4593 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
4594 | return 'Hide pagination';
|
4595 | },
|
4596 | formatRefresh: function formatRefresh() {
|
4597 | return 'განახლება';
|
4598 | },
|
4599 | formatToggleOn: function formatToggleOn() {
|
4600 | return 'Show card view';
|
4601 | },
|
4602 | formatToggleOff: function formatToggleOff() {
|
4603 | return 'Hide card view';
|
4604 | },
|
4605 | formatColumns: function formatColumns() {
|
4606 | return 'სვეტები';
|
4607 | },
|
4608 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
4609 | return 'Toggle all';
|
4610 | },
|
4611 | formatFullscreen: function formatFullscreen() {
|
4612 | return 'Fullscreen';
|
4613 | },
|
4614 | formatAllRows: function formatAllRows() {
|
4615 | return 'All';
|
4616 | },
|
4617 | formatAutoRefresh: function formatAutoRefresh() {
|
4618 | return 'Auto Refresh';
|
4619 | },
|
4620 | formatExport: function formatExport() {
|
4621 | return 'Export data';
|
4622 | },
|
4623 | formatJumpTo: function formatJumpTo() {
|
4624 | return 'GO';
|
4625 | },
|
4626 | formatAdvancedSearch: function formatAdvancedSearch() {
|
4627 | return 'Advanced search';
|
4628 | },
|
4629 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
4630 | return 'Close';
|
4631 | },
|
4632 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
4633 | return 'Hide/Show controls';
|
4634 | },
|
4635 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
4636 | return 'Hide controls';
|
4637 | },
|
4638 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
4639 | return 'Show controls';
|
4640 | }
|
4641 | };
|
4642 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['ka-GE']);
|
4643 |
|
4644 | |
4645 |
|
4646 |
|
4647 |
|
4648 |
|
4649 |
|
4650 | $$2.fn.bootstrapTable.locales['ko-KR'] = $$2.fn.bootstrapTable.locales['ko'] = {
|
4651 | formatCopyRows: function formatCopyRows() {
|
4652 | return '행 복사';
|
4653 | },
|
4654 | formatPrint: function formatPrint() {
|
4655 | return '프린트';
|
4656 | },
|
4657 | formatLoadingMessage: function formatLoadingMessage() {
|
4658 | return '데이터를 불러오는 중입니다';
|
4659 | },
|
4660 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
4661 | return "\uD398\uC774\uC9C0 \uB2F9 ".concat(pageNumber, "\uAC1C \uB370\uC774\uD130 \uCD9C\uB825");
|
4662 | },
|
4663 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
4664 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
4665 | return "\uC804\uCCB4 ".concat(totalRows, "\uAC1C \uC911 ").concat(pageFrom, "~").concat(pageTo, "\uBC88\uC9F8 \uB370\uC774\uD130 \uCD9C\uB825, (\uC804\uCCB4 ").concat(totalNotFiltered, " \uD589\uC5D0\uC11C \uD544\uD130\uB428)");
|
4666 | }
|
4667 | return "\uC804\uCCB4 ".concat(totalRows, "\uAC1C \uC911 ").concat(pageFrom, "~").concat(pageTo, "\uBC88\uC9F8 \uB370\uC774\uD130 \uCD9C\uB825,");
|
4668 | },
|
4669 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
4670 | return '이전 페이지';
|
4671 | },
|
4672 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
4673 | return "".concat(page, " \uD398\uC774\uC9C0\uB85C \uC774\uB3D9");
|
4674 | },
|
4675 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
4676 | return '다음 페이지';
|
4677 | },
|
4678 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
4679 | return "".concat(totalRows, " \uD589\uB4E4 \uD45C\uC2DC \uC911");
|
4680 | },
|
4681 | formatClearSearch: function formatClearSearch() {
|
4682 | return '검색 초기화';
|
4683 | },
|
4684 | formatSearch: function formatSearch() {
|
4685 | return '검색';
|
4686 | },
|
4687 | formatNoMatches: function formatNoMatches() {
|
4688 | return '조회된 데이터가 없습니다.';
|
4689 | },
|
4690 | formatPaginationSwitch: function formatPaginationSwitch() {
|
4691 | return '페이지 넘버 보기/숨기기';
|
4692 | },
|
4693 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
4694 | return '페이지 넘버 보기';
|
4695 | },
|
4696 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
4697 | return '페이지 넘버 숨기기';
|
4698 | },
|
4699 | formatRefresh: function formatRefresh() {
|
4700 | return '새로 고침';
|
4701 | },
|
4702 | formatToggleOn: function formatToggleOn() {
|
4703 | return '카드뷰 보기';
|
4704 | },
|
4705 | formatToggleOff: function formatToggleOff() {
|
4706 | return '카드뷰 숨기기';
|
4707 | },
|
4708 | formatColumns: function formatColumns() {
|
4709 | return '컬럼 필터링';
|
4710 | },
|
4711 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
4712 | return '전체 토글';
|
4713 | },
|
4714 | formatFullscreen: function formatFullscreen() {
|
4715 | return '전체 화면';
|
4716 | },
|
4717 | formatAllRows: function formatAllRows() {
|
4718 | return '전체';
|
4719 | },
|
4720 | formatAutoRefresh: function formatAutoRefresh() {
|
4721 | return '자동 갱신';
|
4722 | },
|
4723 | formatExport: function formatExport() {
|
4724 | return '데이터 추출';
|
4725 | },
|
4726 | formatJumpTo: function formatJumpTo() {
|
4727 | return '이동';
|
4728 | },
|
4729 | formatAdvancedSearch: function formatAdvancedSearch() {
|
4730 | return '심화 검색';
|
4731 | },
|
4732 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
4733 | return '닫기';
|
4734 | },
|
4735 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
4736 | return '컨트롤 보기/숨기기';
|
4737 | },
|
4738 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
4739 | return '컨트롤 숨기기';
|
4740 | },
|
4741 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
4742 | return '컨트롤 보기';
|
4743 | }
|
4744 | };
|
4745 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['ko-KR']);
|
4746 |
|
4747 | |
4748 |
|
4749 |
|
4750 |
|
4751 |
|
4752 | $$2.fn.bootstrapTable.locales['nb-NO'] = $$2.fn.bootstrapTable.locales['nb'] = {
|
4753 | formatCopyRows: function formatCopyRows() {
|
4754 | return 'Copy Rows';
|
4755 | },
|
4756 | formatPrint: function formatPrint() {
|
4757 | return 'Print';
|
4758 | },
|
4759 | formatLoadingMessage: function formatLoadingMessage() {
|
4760 | return 'Oppdaterer, vennligst vent';
|
4761 | },
|
4762 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
4763 | return "".concat(pageNumber, " poster pr side");
|
4764 | },
|
4765 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
4766 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
4767 | return "Viser ".concat(pageFrom, " til ").concat(pageTo, " av ").concat(totalRows, " rekker (filtered from ").concat(totalNotFiltered, " total rows)");
|
4768 | }
|
4769 | return "Viser ".concat(pageFrom, " til ").concat(pageTo, " av ").concat(totalRows, " rekker");
|
4770 | },
|
4771 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
4772 | return 'previous page';
|
4773 | },
|
4774 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
4775 | return "to page ".concat(page);
|
4776 | },
|
4777 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
4778 | return 'next page';
|
4779 | },
|
4780 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
4781 | return "Showing ".concat(totalRows, " rows");
|
4782 | },
|
4783 | formatClearSearch: function formatClearSearch() {
|
4784 | return 'Clear Search';
|
4785 | },
|
4786 | formatSearch: function formatSearch() {
|
4787 | return 'Søk';
|
4788 | },
|
4789 | formatNoMatches: function formatNoMatches() {
|
4790 | return 'Ingen poster funnet';
|
4791 | },
|
4792 | formatPaginationSwitch: function formatPaginationSwitch() {
|
4793 | return 'Hide/Show pagination';
|
4794 | },
|
4795 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
4796 | return 'Show pagination';
|
4797 | },
|
4798 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
4799 | return 'Hide pagination';
|
4800 | },
|
4801 | formatRefresh: function formatRefresh() {
|
4802 | return 'Oppdater';
|
4803 | },
|
4804 | formatToggleOn: function formatToggleOn() {
|
4805 | return 'Show card view';
|
4806 | },
|
4807 | formatToggleOff: function formatToggleOff() {
|
4808 | return 'Hide card view';
|
4809 | },
|
4810 | formatColumns: function formatColumns() {
|
4811 | return 'Kolonner';
|
4812 | },
|
4813 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
4814 | return 'Toggle all';
|
4815 | },
|
4816 | formatFullscreen: function formatFullscreen() {
|
4817 | return 'Fullscreen';
|
4818 | },
|
4819 | formatAllRows: function formatAllRows() {
|
4820 | return 'All';
|
4821 | },
|
4822 | formatAutoRefresh: function formatAutoRefresh() {
|
4823 | return 'Auto Refresh';
|
4824 | },
|
4825 | formatExport: function formatExport() {
|
4826 | return 'Export data';
|
4827 | },
|
4828 | formatJumpTo: function formatJumpTo() {
|
4829 | return 'GO';
|
4830 | },
|
4831 | formatAdvancedSearch: function formatAdvancedSearch() {
|
4832 | return 'Advanced search';
|
4833 | },
|
4834 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
4835 | return 'Close';
|
4836 | },
|
4837 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
4838 | return 'Hide/Show controls';
|
4839 | },
|
4840 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
4841 | return 'Hide controls';
|
4842 | },
|
4843 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
4844 | return 'Show controls';
|
4845 | }
|
4846 | };
|
4847 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['nb-NO']);
|
4848 |
|
4849 | |
4850 |
|
4851 |
|
4852 |
|
4853 |
|
4854 | $$2.fn.bootstrapTable.locales['ms-MY'] = $$2.fn.bootstrapTable.locales['ms'] = {
|
4855 | formatCopyRows: function formatCopyRows() {
|
4856 | return 'Copy Rows';
|
4857 | },
|
4858 | formatPrint: function formatPrint() {
|
4859 | return 'Print';
|
4860 | },
|
4861 | formatLoadingMessage: function formatLoadingMessage() {
|
4862 | return 'Permintaan sedang dimuatkan. Sila tunggu sebentar';
|
4863 | },
|
4864 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
4865 | return "".concat(pageNumber, " rekod setiap muka surat");
|
4866 | },
|
4867 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
4868 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
4869 | return "Sedang memaparkan rekod ".concat(pageFrom, " hingga ").concat(pageTo, " daripada jumlah ").concat(totalRows, " rekod (filtered from ").concat(totalNotFiltered, " total rows)");
|
4870 | }
|
4871 | return "Sedang memaparkan rekod ".concat(pageFrom, " hingga ").concat(pageTo, " daripada jumlah ").concat(totalRows, " rekod");
|
4872 | },
|
4873 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
4874 | return 'previous page';
|
4875 | },
|
4876 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
4877 | return "to page ".concat(page);
|
4878 | },
|
4879 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
4880 | return 'next page';
|
4881 | },
|
4882 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
4883 | return "Showing ".concat(totalRows, " rows");
|
4884 | },
|
4885 | formatClearSearch: function formatClearSearch() {
|
4886 | return 'Clear Search';
|
4887 | },
|
4888 | formatSearch: function formatSearch() {
|
4889 | return 'Cari';
|
4890 | },
|
4891 | formatNoMatches: function formatNoMatches() {
|
4892 | return 'Tiada rekod yang menyamai permintaan';
|
4893 | },
|
4894 | formatPaginationSwitch: function formatPaginationSwitch() {
|
4895 | return 'Tunjuk/sembunyi muka surat';
|
4896 | },
|
4897 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
4898 | return 'Show pagination';
|
4899 | },
|
4900 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
4901 | return 'Hide pagination';
|
4902 | },
|
4903 | formatRefresh: function formatRefresh() {
|
4904 | return 'Muatsemula';
|
4905 | },
|
4906 | formatToggleOn: function formatToggleOn() {
|
4907 | return 'Show card view';
|
4908 | },
|
4909 | formatToggleOff: function formatToggleOff() {
|
4910 | return 'Hide card view';
|
4911 | },
|
4912 | formatColumns: function formatColumns() {
|
4913 | return 'Lajur';
|
4914 | },
|
4915 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
4916 | return 'Toggle all';
|
4917 | },
|
4918 | formatFullscreen: function formatFullscreen() {
|
4919 | return 'Fullscreen';
|
4920 | },
|
4921 | formatAllRows: function formatAllRows() {
|
4922 | return 'Semua';
|
4923 | },
|
4924 | formatAutoRefresh: function formatAutoRefresh() {
|
4925 | return 'Auto Refresh';
|
4926 | },
|
4927 | formatExport: function formatExport() {
|
4928 | return 'Export data';
|
4929 | },
|
4930 | formatJumpTo: function formatJumpTo() {
|
4931 | return 'GO';
|
4932 | },
|
4933 | formatAdvancedSearch: function formatAdvancedSearch() {
|
4934 | return 'Advanced search';
|
4935 | },
|
4936 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
4937 | return 'Close';
|
4938 | },
|
4939 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
4940 | return 'Hide/Show controls';
|
4941 | },
|
4942 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
4943 | return 'Hide controls';
|
4944 | },
|
4945 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
4946 | return 'Show controls';
|
4947 | }
|
4948 | };
|
4949 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['ms-MY']);
|
4950 |
|
4951 | |
4952 |
|
4953 |
|
4954 |
|
4955 |
|
4956 | $$2.fn.bootstrapTable.locales['nl-BE'] = {
|
4957 | formatCopyRows: function formatCopyRows() {
|
4958 | return 'Copy Rows';
|
4959 | },
|
4960 | formatPrint: function formatPrint() {
|
4961 | return 'Print';
|
4962 | },
|
4963 | formatLoadingMessage: function formatLoadingMessage() {
|
4964 | return 'Laden, even geduld';
|
4965 | },
|
4966 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
4967 | return "".concat(pageNumber, " records per pagina");
|
4968 | },
|
4969 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
4970 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
4971 | return "Toon ".concat(pageFrom, " tot ").concat(pageTo, " van ").concat(totalRows, " record").concat(totalRows > 1 ? 's' : '', " (gefilterd van ").concat(totalNotFiltered, " records in totaal)");
|
4972 | }
|
4973 | return "Toon ".concat(pageFrom, " tot ").concat(pageTo, " van ").concat(totalRows, " record").concat(totalRows > 1 ? 's' : '');
|
4974 | },
|
4975 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
4976 | return 'vorige pagina';
|
4977 | },
|
4978 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
4979 | return "tot pagina ".concat(page);
|
4980 | },
|
4981 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
4982 | return 'volgende pagina';
|
4983 | },
|
4984 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
4985 | return "Toon ".concat(totalRows, " record").concat(totalRows > 1 ? 's' : '');
|
4986 | },
|
4987 | formatClearSearch: function formatClearSearch() {
|
4988 | return 'Verwijder filters';
|
4989 | },
|
4990 | formatSearch: function formatSearch() {
|
4991 | return 'Zoeken';
|
4992 | },
|
4993 | formatNoMatches: function formatNoMatches() {
|
4994 | return 'Geen resultaten gevonden';
|
4995 | },
|
4996 | formatPaginationSwitch: function formatPaginationSwitch() {
|
4997 | return 'Verberg/Toon paginering';
|
4998 | },
|
4999 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
5000 | return 'Toon paginering';
|
5001 | },
|
5002 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
5003 | return 'Verberg paginering';
|
5004 | },
|
5005 | formatRefresh: function formatRefresh() {
|
5006 | return 'Vernieuwen';
|
5007 | },
|
5008 | formatToggleOn: function formatToggleOn() {
|
5009 | return 'Toon kaartweergave';
|
5010 | },
|
5011 | formatToggleOff: function formatToggleOff() {
|
5012 | return 'Verberg kaartweergave';
|
5013 | },
|
5014 | formatColumns: function formatColumns() {
|
5015 | return 'Kolommen';
|
5016 | },
|
5017 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
5018 | return 'Allen omschakelen';
|
5019 | },
|
5020 | formatFullscreen: function formatFullscreen() {
|
5021 | return 'Volledig scherm';
|
5022 | },
|
5023 | formatAllRows: function formatAllRows() {
|
5024 | return 'Alle';
|
5025 | },
|
5026 | formatAutoRefresh: function formatAutoRefresh() {
|
5027 | return 'Automatisch vernieuwen';
|
5028 | },
|
5029 | formatExport: function formatExport() {
|
5030 | return 'Exporteer gegevens';
|
5031 | },
|
5032 | formatJumpTo: function formatJumpTo() {
|
5033 | return 'GA';
|
5034 | },
|
5035 | formatAdvancedSearch: function formatAdvancedSearch() {
|
5036 | return 'Geavanceerd zoeken';
|
5037 | },
|
5038 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
5039 | return 'Sluiten';
|
5040 | },
|
5041 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
5042 | return 'Verberg/Toon controls';
|
5043 | },
|
5044 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
5045 | return 'Verberg controls';
|
5046 | },
|
5047 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
5048 | return 'Toon controls';
|
5049 | },
|
5050 | formatAddLevel: function formatAddLevel() {
|
5051 | return 'Niveau toevoegen';
|
5052 | },
|
5053 | formatCancel: function formatCancel() {
|
5054 | return 'Annuleren';
|
5055 | },
|
5056 | formatColumn: function formatColumn() {
|
5057 | return 'Kolom';
|
5058 | },
|
5059 | formatDeleteLevel: function formatDeleteLevel() {
|
5060 | return 'Niveau verwijderen';
|
5061 | },
|
5062 | formatDuplicateAlertTitle: function formatDuplicateAlertTitle() {
|
5063 | return 'Duplicaten gevonden!';
|
5064 | },
|
5065 | formatDuplicateAlertDescription: function formatDuplicateAlertDescription() {
|
5066 | return 'Gelieve dubbele kolommen te verwijderen of wijzigen';
|
5067 | },
|
5068 | formatMultipleSort: function formatMultipleSort() {
|
5069 | return 'Meervoudige sortering';
|
5070 | },
|
5071 | formatOrder: function formatOrder() {
|
5072 | return 'Volgorde';
|
5073 | },
|
5074 | formatSort: function formatSort() {
|
5075 | return 'Sorteren';
|
5076 | },
|
5077 | formatSortBy: function formatSortBy() {
|
5078 | return 'Sorteren op';
|
5079 | },
|
5080 | formatThenBy: function formatThenBy() {
|
5081 | return 'vervolgens';
|
5082 | },
|
5083 | formatSortOrders: function formatSortOrders() {
|
5084 | return {
|
5085 | asc: 'Oplopend',
|
5086 | desc: 'Aflopend'
|
5087 | };
|
5088 | }
|
5089 | };
|
5090 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['nl-BE']);
|
5091 |
|
5092 | |
5093 |
|
5094 |
|
5095 |
|
5096 |
|
5097 |
|
5098 | $$2.fn.bootstrapTable.locales['nl-NL'] = $$2.fn.bootstrapTable.locales['nl'] = {
|
5099 | formatCopyRows: function formatCopyRows() {
|
5100 | return 'Copy Rows';
|
5101 | },
|
5102 | formatPrint: function formatPrint() {
|
5103 | return 'Print';
|
5104 | },
|
5105 | formatLoadingMessage: function formatLoadingMessage() {
|
5106 | return 'Laden, even geduld';
|
5107 | },
|
5108 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
5109 | return "".concat(pageNumber, " records per pagina");
|
5110 | },
|
5111 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
5112 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
5113 | return "Toon ".concat(pageFrom, " tot ").concat(pageTo, " van ").concat(totalRows, " record").concat(totalRows > 1 ? 's' : '', " (gefilterd van ").concat(totalNotFiltered, " records in totaal)");
|
5114 | }
|
5115 | return "Toon ".concat(pageFrom, " tot ").concat(pageTo, " van ").concat(totalRows, " record").concat(totalRows > 1 ? 's' : '');
|
5116 | },
|
5117 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
5118 | return 'vorige pagina';
|
5119 | },
|
5120 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
5121 | return "tot pagina ".concat(page);
|
5122 | },
|
5123 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
5124 | return 'volgende pagina';
|
5125 | },
|
5126 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
5127 | return "Toon ".concat(totalRows, " record").concat(totalRows > 1 ? 's' : '');
|
5128 | },
|
5129 | formatClearSearch: function formatClearSearch() {
|
5130 | return 'Verwijder filters';
|
5131 | },
|
5132 | formatSearch: function formatSearch() {
|
5133 | return 'Zoeken';
|
5134 | },
|
5135 | formatNoMatches: function formatNoMatches() {
|
5136 | return 'Geen resultaten gevonden';
|
5137 | },
|
5138 | formatPaginationSwitch: function formatPaginationSwitch() {
|
5139 | return 'Verberg/Toon paginering';
|
5140 | },
|
5141 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
5142 | return 'Toon paginering';
|
5143 | },
|
5144 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
5145 | return 'Verberg paginering';
|
5146 | },
|
5147 | formatRefresh: function formatRefresh() {
|
5148 | return 'Vernieuwen';
|
5149 | },
|
5150 | formatToggleOn: function formatToggleOn() {
|
5151 | return 'Toon kaartweergave';
|
5152 | },
|
5153 | formatToggleOff: function formatToggleOff() {
|
5154 | return 'Verberg kaartweergave';
|
5155 | },
|
5156 | formatColumns: function formatColumns() {
|
5157 | return 'Kolommen';
|
5158 | },
|
5159 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
5160 | return 'Allen omschakelen';
|
5161 | },
|
5162 | formatFullscreen: function formatFullscreen() {
|
5163 | return 'Volledig scherm';
|
5164 | },
|
5165 | formatAllRows: function formatAllRows() {
|
5166 | return 'Alle';
|
5167 | },
|
5168 | formatAutoRefresh: function formatAutoRefresh() {
|
5169 | return 'Automatisch vernieuwen';
|
5170 | },
|
5171 | formatExport: function formatExport() {
|
5172 | return 'Exporteer gegevens';
|
5173 | },
|
5174 | formatJumpTo: function formatJumpTo() {
|
5175 | return 'GA';
|
5176 | },
|
5177 | formatAdvancedSearch: function formatAdvancedSearch() {
|
5178 | return 'Geavanceerd zoeken';
|
5179 | },
|
5180 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
5181 | return 'Sluiten';
|
5182 | },
|
5183 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
5184 | return 'Verberg/Toon controls';
|
5185 | },
|
5186 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
5187 | return 'Verberg controls';
|
5188 | },
|
5189 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
5190 | return 'Toon controls';
|
5191 | },
|
5192 | formatAddLevel: function formatAddLevel() {
|
5193 | return 'Niveau toevoegen';
|
5194 | },
|
5195 | formatCancel: function formatCancel() {
|
5196 | return 'Annuleren';
|
5197 | },
|
5198 | formatColumn: function formatColumn() {
|
5199 | return 'Kolom';
|
5200 | },
|
5201 | formatDeleteLevel: function formatDeleteLevel() {
|
5202 | return 'Niveau verwijderen';
|
5203 | },
|
5204 | formatDuplicateAlertTitle: function formatDuplicateAlertTitle() {
|
5205 | return 'Duplicaten gevonden!';
|
5206 | },
|
5207 | formatDuplicateAlertDescription: function formatDuplicateAlertDescription() {
|
5208 | return 'Gelieve dubbele kolommen te verwijderen of wijzigen';
|
5209 | },
|
5210 | formatMultipleSort: function formatMultipleSort() {
|
5211 | return 'Meervoudige sortering';
|
5212 | },
|
5213 | formatOrder: function formatOrder() {
|
5214 | return 'Volgorde';
|
5215 | },
|
5216 | formatSort: function formatSort() {
|
5217 | return 'Sorteren';
|
5218 | },
|
5219 | formatSortBy: function formatSortBy() {
|
5220 | return 'Sorteren op';
|
5221 | },
|
5222 | formatThenBy: function formatThenBy() {
|
5223 | return 'vervolgens';
|
5224 | },
|
5225 | formatSortOrders: function formatSortOrders() {
|
5226 | return {
|
5227 | asc: 'Oplopend',
|
5228 | desc: 'Aflopend'
|
5229 | };
|
5230 | }
|
5231 | };
|
5232 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['nl-NL']);
|
5233 |
|
5234 | |
5235 |
|
5236 |
|
5237 |
|
5238 |
|
5239 | $$2.fn.bootstrapTable.locales['pt-PT'] = $$2.fn.bootstrapTable.locales['pt'] = {
|
5240 | formatCopyRows: function formatCopyRows() {
|
5241 | return 'Copiar Linhas';
|
5242 | },
|
5243 | formatPrint: function formatPrint() {
|
5244 | return 'Imprimir';
|
5245 | },
|
5246 | formatLoadingMessage: function formatLoadingMessage() {
|
5247 | return 'A carregar, por favor aguarde';
|
5248 | },
|
5249 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
5250 | return "".concat(pageNumber, " registos por p\xE1gina");
|
5251 | },
|
5252 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
5253 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
5254 | return "A mostrar ".concat(pageFrom, " até ").concat(pageTo, " de ").concat(totalRows, " linhas (filtered from ").concat(totalNotFiltered, " total rows)");
|
5255 | }
|
5256 | return "A mostrar ".concat(pageFrom, " at\xE9 ").concat(pageTo, " de ").concat(totalRows, " linhas");
|
5257 | },
|
5258 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
5259 | return 'página anterior';
|
5260 | },
|
5261 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
5262 | return "ir para p\xE1gina ".concat(page);
|
5263 | },
|
5264 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
5265 | return 'próxima página';
|
5266 | },
|
5267 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
5268 | return "Mostrando ".concat(totalRows, " linhas");
|
5269 | },
|
5270 | formatClearSearch: function formatClearSearch() {
|
5271 | return 'Limpar Pesquisa';
|
5272 | },
|
5273 | formatSearch: function formatSearch() {
|
5274 | return 'Pesquisa';
|
5275 | },
|
5276 | formatNoMatches: function formatNoMatches() {
|
5277 | return 'Nenhum registo encontrado';
|
5278 | },
|
5279 | formatPaginationSwitch: function formatPaginationSwitch() {
|
5280 | return 'Esconder/Mostrar paginação';
|
5281 | },
|
5282 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
5283 | return 'Mostrar página';
|
5284 | },
|
5285 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
5286 | return 'Esconder página';
|
5287 | },
|
5288 | formatRefresh: function formatRefresh() {
|
5289 | return 'Actualizar';
|
5290 | },
|
5291 | formatToggleOn: function formatToggleOn() {
|
5292 | return 'Show card view';
|
5293 | },
|
5294 | formatToggleOff: function formatToggleOff() {
|
5295 | return 'Hide card view';
|
5296 | },
|
5297 | formatColumns: function formatColumns() {
|
5298 | return 'Colunas';
|
5299 | },
|
5300 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
5301 | return 'Activar tudo';
|
5302 | },
|
5303 | formatFullscreen: function formatFullscreen() {
|
5304 | return 'Ecrã completo';
|
5305 | },
|
5306 | formatAllRows: function formatAllRows() {
|
5307 | return 'Tudo';
|
5308 | },
|
5309 | formatAutoRefresh: function formatAutoRefresh() {
|
5310 | return 'Actualização autmática';
|
5311 | },
|
5312 | formatExport: function formatExport() {
|
5313 | return 'Exportar dados';
|
5314 | },
|
5315 | formatJumpTo: function formatJumpTo() {
|
5316 | return 'Avançar';
|
5317 | },
|
5318 | formatAdvancedSearch: function formatAdvancedSearch() {
|
5319 | return 'Pesquisa avançada';
|
5320 | },
|
5321 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
5322 | return 'Fechar';
|
5323 | },
|
5324 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
5325 | return 'Esconder/Exibir controlos';
|
5326 | },
|
5327 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
5328 | return 'Esconder controlos';
|
5329 | },
|
5330 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
5331 | return 'Exibir controlos';
|
5332 | }
|
5333 | };
|
5334 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['pt-PT']);
|
5335 |
|
5336 | |
5337 |
|
5338 |
|
5339 |
|
5340 |
|
5341 | $$2.fn.bootstrapTable.locales['lb-LU'] = $$2.fn.bootstrapTable.locales['lb'] = {
|
5342 | formatCopyRows: function formatCopyRows() {
|
5343 | return 'Zeilen kopéieren';
|
5344 | },
|
5345 | formatPrint: function formatPrint() {
|
5346 | return 'Drécken';
|
5347 | },
|
5348 | formatLoadingMessage: function formatLoadingMessage() {
|
5349 | return 'Gëtt gelueden, gedellëgt Iech wannechgelift ee Moment';
|
5350 | },
|
5351 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
5352 | return "".concat(pageNumber, " Zeilen per S\xE4it");
|
5353 | },
|
5354 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
5355 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
5356 | return "Weist Zeil ".concat(pageFrom, " bis ").concat(pageTo, " vun ").concat(totalRows, " Zeil").concat(totalRows > 1 ? 'en' : '', " (gefiltert vun insgesamt ").concat(totalNotFiltered, " Zeil").concat(totalRows > 1 ? 'en' : '', ")");
|
5357 | }
|
5358 | return "Weist Zeil ".concat(pageFrom, " bis ").concat(pageTo, " vun ").concat(totalRows, " Zeil").concat(totalRows > 1 ? 'en' : '');
|
5359 | },
|
5360 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
5361 | return 'viregt Säit';
|
5362 | },
|
5363 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
5364 | return "op S\xE4it ".concat(page);
|
5365 | },
|
5366 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
5367 | return 'nächst Säit';
|
5368 | },
|
5369 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
5370 | return "Weist ".concat(totalRows, " Zeilen");
|
5371 | },
|
5372 | formatClearSearch: function formatClearSearch() {
|
5373 | return 'Sich réckgängeg maachen';
|
5374 | },
|
5375 | formatSearch: function formatSearch() {
|
5376 | return 'Sich';
|
5377 | },
|
5378 | formatNoMatches: function formatNoMatches() {
|
5379 | return 'Keng passend Anträg fonnt';
|
5380 | },
|
5381 | formatPaginationSwitch: function formatPaginationSwitch() {
|
5382 | return 'Paginatioun uweisen/verstoppen';
|
5383 | },
|
5384 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
5385 | return 'Paginatioun uweisen';
|
5386 | },
|
5387 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
5388 | return 'Paginatioun verstoppen';
|
5389 | },
|
5390 | formatRefresh: function formatRefresh() {
|
5391 | return 'Nei lueden';
|
5392 | },
|
5393 | formatToggleOn: function formatToggleOn() {
|
5394 | return 'Kaartenusiicht uweisen';
|
5395 | },
|
5396 | formatToggleOff: function formatToggleOff() {
|
5397 | return 'Kaartenusiicht verstoppen';
|
5398 | },
|
5399 | formatColumns: function formatColumns() {
|
5400 | return 'Kolonnen';
|
5401 | },
|
5402 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
5403 | return 'All ëmschalten';
|
5404 | },
|
5405 | formatFullscreen: function formatFullscreen() {
|
5406 | return 'Vollbild';
|
5407 | },
|
5408 | formatAllRows: function formatAllRows() {
|
5409 | return 'All';
|
5410 | },
|
5411 | formatAutoRefresh: function formatAutoRefresh() {
|
5412 | return 'Automatescht neilueden';
|
5413 | },
|
5414 | formatExport: function formatExport() {
|
5415 | return 'Daten exportéieren';
|
5416 | },
|
5417 | formatJumpTo: function formatJumpTo() {
|
5418 | return 'Sprangen';
|
5419 | },
|
5420 | formatAdvancedSearch: function formatAdvancedSearch() {
|
5421 | return 'Erweidert Sich';
|
5422 | },
|
5423 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
5424 | return 'Zoumaachen';
|
5425 | },
|
5426 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
5427 | return 'Schaltelementer uweisen/verstoppen';
|
5428 | },
|
5429 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
5430 | return 'Schaltelementer verstoppen';
|
5431 | },
|
5432 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
5433 | return 'Schaltelementer uweisen';
|
5434 | }
|
5435 | };
|
5436 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['lb-LU']);
|
5437 |
|
5438 | |
5439 |
|
5440 |
|
5441 |
|
5442 |
|
5443 |
|
5444 | $$2.fn.bootstrapTable.locales['pl-PL'] = $$2.fn.bootstrapTable.locales['pl'] = {
|
5445 | formatCopyRows: function formatCopyRows() {
|
5446 | return 'Kopiuj wiersze';
|
5447 | },
|
5448 | formatPrint: function formatPrint() {
|
5449 | return 'Print';
|
5450 | },
|
5451 | formatLoadingMessage: function formatLoadingMessage() {
|
5452 | return 'Ładowanie, proszę czekać';
|
5453 | },
|
5454 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
5455 | return "".concat(pageNumber, " rekord\xF3w na stron\u0119");
|
5456 | },
|
5457 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
5458 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
5459 | return "Wy\u015Bwietlanie rekord\xF3w od ".concat(pageFrom, " do ").concat(pageTo, " z ").concat(totalRows, " (filtered from ").concat(totalNotFiltered, " total rows)");
|
5460 | }
|
5461 | return "Wy\u015Bwietlanie rekord\xF3w od ".concat(pageFrom, " do ").concat(pageTo, " z ").concat(totalRows);
|
5462 | },
|
5463 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
5464 | return 'poprzednia strona';
|
5465 | },
|
5466 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
5467 | return "z ".concat(page);
|
5468 | },
|
5469 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
5470 | return 'następna strona';
|
5471 | },
|
5472 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
5473 | return "Wy\u015Bwietla ".concat(totalRows, " wierszy");
|
5474 | },
|
5475 | formatClearSearch: function formatClearSearch() {
|
5476 | return 'Wyczyść wyszukiwanie';
|
5477 | },
|
5478 | formatSearch: function formatSearch() {
|
5479 | return 'Szukaj';
|
5480 | },
|
5481 | formatNoMatches: function formatNoMatches() {
|
5482 | return 'Niestety, nic nie znaleziono';
|
5483 | },
|
5484 | formatPaginationSwitch: function formatPaginationSwitch() {
|
5485 | return 'Pokaż/ukryj stronicowanie';
|
5486 | },
|
5487 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
5488 | return 'Pokaż stronicowanie';
|
5489 | },
|
5490 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
5491 | return 'Ukryj stronicowanie';
|
5492 | },
|
5493 | formatRefresh: function formatRefresh() {
|
5494 | return 'Odśwież';
|
5495 | },
|
5496 | formatToggleOn: function formatToggleOn() {
|
5497 | return 'Pokaż układ karty';
|
5498 | },
|
5499 | formatToggleOff: function formatToggleOff() {
|
5500 | return 'Ukryj układ karty';
|
5501 | },
|
5502 | formatColumns: function formatColumns() {
|
5503 | return 'Kolumny';
|
5504 | },
|
5505 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
5506 | return 'Zaznacz wszystko';
|
5507 | },
|
5508 | formatFullscreen: function formatFullscreen() {
|
5509 | return 'Fullscreen';
|
5510 | },
|
5511 | formatAllRows: function formatAllRows() {
|
5512 | return 'Wszystkie';
|
5513 | },
|
5514 | formatAutoRefresh: function formatAutoRefresh() {
|
5515 | return 'Auto odświeżanie';
|
5516 | },
|
5517 | formatExport: function formatExport() {
|
5518 | return 'Eksport danych';
|
5519 | },
|
5520 | formatJumpTo: function formatJumpTo() {
|
5521 | return 'Przejdź';
|
5522 | },
|
5523 | formatAdvancedSearch: function formatAdvancedSearch() {
|
5524 | return 'Wyszukiwanie zaawansowane';
|
5525 | },
|
5526 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
5527 | return 'Zamknij';
|
5528 | },
|
5529 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
5530 | return 'Pokaż/Ukryj';
|
5531 | },
|
5532 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
5533 | return 'Pokaż';
|
5534 | },
|
5535 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
5536 | return 'Ukryj';
|
5537 | }
|
5538 | };
|
5539 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['pl-PL']);
|
5540 |
|
5541 | |
5542 |
|
5543 |
|
5544 |
|
5545 |
|
5546 | $$2.fn.bootstrapTable.locales['ru-RU'] = $$2.fn.bootstrapTable.locales['ru'] = {
|
5547 | formatCopyRows: function formatCopyRows() {
|
5548 | return 'Скопировать строки';
|
5549 | },
|
5550 | formatPrint: function formatPrint() {
|
5551 | return 'Печать';
|
5552 | },
|
5553 | formatLoadingMessage: function formatLoadingMessage() {
|
5554 | return 'Пожалуйста, подождите, идёт загрузка';
|
5555 | },
|
5556 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
5557 | return "".concat(pageNumber, " \u0437\u0430\u043F\u0438\u0441\u0435\u0439 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0443");
|
5558 | },
|
5559 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
5560 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
5561 | 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)");
|
5562 | }
|
5563 | return "\u0417\u0430\u043F\u0438\u0441\u0438 \u0441 ".concat(pageFrom, " \u043F\u043E ").concat(pageTo, " \u0438\u0437 ").concat(totalRows);
|
5564 | },
|
5565 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
5566 | return 'предыдущая страница';
|
5567 | },
|
5568 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
5569 | return "\u043F\u0435\u0440\u0435\u0439\u0442\u0438 \u043A \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0435 ".concat(page);
|
5570 | },
|
5571 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
5572 | return 'следующая страница';
|
5573 | },
|
5574 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
5575 | return "\u0417\u0430\u0433\u0440\u0443\u0436\u0435\u043D\u043E ".concat(totalRows, " \u0441\u0442\u0440\u043E\u043A");
|
5576 | },
|
5577 | formatClearSearch: function formatClearSearch() {
|
5578 | return 'Очистить фильтры';
|
5579 | },
|
5580 | formatSearch: function formatSearch() {
|
5581 | return 'Поиск';
|
5582 | },
|
5583 | formatNoMatches: function formatNoMatches() {
|
5584 | return 'Ничего не найдено';
|
5585 | },
|
5586 | formatPaginationSwitch: function formatPaginationSwitch() {
|
5587 | return 'Скрыть/Показать постраничную навигацию';
|
5588 | },
|
5589 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
5590 | return 'Показать постраничную навигацию';
|
5591 | },
|
5592 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
5593 | return 'Скрыть постраничную навигацию';
|
5594 | },
|
5595 | formatRefresh: function formatRefresh() {
|
5596 | return 'Обновить';
|
5597 | },
|
5598 | formatToggleOn: function formatToggleOn() {
|
5599 | return 'Показать записи в виде карточек';
|
5600 | },
|
5601 | formatToggleOff: function formatToggleOff() {
|
5602 | return 'Табличный режим просмотра';
|
5603 | },
|
5604 | formatColumns: function formatColumns() {
|
5605 | return 'Колонки';
|
5606 | },
|
5607 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
5608 | return 'Выбрать все';
|
5609 | },
|
5610 | formatFullscreen: function formatFullscreen() {
|
5611 | return 'Полноэкранный режим';
|
5612 | },
|
5613 | formatAllRows: function formatAllRows() {
|
5614 | return 'Все';
|
5615 | },
|
5616 | formatAutoRefresh: function formatAutoRefresh() {
|
5617 | return 'Автоматическое обновление';
|
5618 | },
|
5619 | formatExport: function formatExport() {
|
5620 | return 'Экспортировать данные';
|
5621 | },
|
5622 | formatJumpTo: function formatJumpTo() {
|
5623 | return 'Стр.';
|
5624 | },
|
5625 | formatAdvancedSearch: function formatAdvancedSearch() {
|
5626 | return 'Расширенный поиск';
|
5627 | },
|
5628 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
5629 | return 'Закрыть';
|
5630 | },
|
5631 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
5632 | return 'Скрыть/Показать панель инструментов';
|
5633 | },
|
5634 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
5635 | return 'Скрыть панель инструментов';
|
5636 | },
|
5637 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
5638 | return 'Показать панель инструментов';
|
5639 | }
|
5640 | };
|
5641 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['ru-RU']);
|
5642 |
|
5643 | |
5644 |
|
5645 |
|
5646 |
|
5647 |
|
5648 |
|
5649 |
|
5650 |
|
5651 | $$2.fn.bootstrapTable.locales['pt-BR'] = {
|
5652 | formatCopyRows: function formatCopyRows() {
|
5653 | return 'Copy Rows';
|
5654 | },
|
5655 | formatPrint: function formatPrint() {
|
5656 | return 'Print';
|
5657 | },
|
5658 | formatLoadingMessage: function formatLoadingMessage() {
|
5659 | return 'Carregando, aguarde';
|
5660 | },
|
5661 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
5662 | return "".concat(pageNumber, " registros por p\xE1gina");
|
5663 | },
|
5664 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
5665 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
5666 | return "Exibindo ".concat(pageFrom, " at\xE9 ").concat(pageTo, " de ").concat(totalRows, " linhas (filtradas de um total de ").concat(totalNotFiltered, " linhas)");
|
5667 | }
|
5668 | return "Exibindo ".concat(pageFrom, " at\xE9 ").concat(pageTo, " de ").concat(totalRows, " linhas");
|
5669 | },
|
5670 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
5671 | return 'página anterior';
|
5672 | },
|
5673 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
5674 | return "Para a p\xE1gina ".concat(page);
|
5675 | },
|
5676 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
5677 | return 'próxima página';
|
5678 | },
|
5679 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
5680 | return "Mostrando ".concat(totalRows, " linhas");
|
5681 | },
|
5682 | formatClearSearch: function formatClearSearch() {
|
5683 | return 'Limpar Pesquisa';
|
5684 | },
|
5685 | formatSearch: function formatSearch() {
|
5686 | return 'Pesquisar';
|
5687 | },
|
5688 | formatNoMatches: function formatNoMatches() {
|
5689 | return 'Nenhum registro encontrado';
|
5690 | },
|
5691 | formatPaginationSwitch: function formatPaginationSwitch() {
|
5692 | return 'Ocultar/Exibir paginação';
|
5693 | },
|
5694 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
5695 | return 'Mostrar Paginação';
|
5696 | },
|
5697 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
5698 | return 'Esconder Paginação';
|
5699 | },
|
5700 | formatRefresh: function formatRefresh() {
|
5701 | return 'Recarregar';
|
5702 | },
|
5703 | formatToggleOn: function formatToggleOn() {
|
5704 | return 'Show card view';
|
5705 | },
|
5706 | formatToggleOff: function formatToggleOff() {
|
5707 | return 'Hide card view';
|
5708 | },
|
5709 | formatColumns: function formatColumns() {
|
5710 | return 'Colunas';
|
5711 | },
|
5712 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
5713 | return 'Alternar tudo';
|
5714 | },
|
5715 | formatFullscreen: function formatFullscreen() {
|
5716 | return 'Tela cheia';
|
5717 | },
|
5718 | formatAllRows: function formatAllRows() {
|
5719 | return 'Tudo';
|
5720 | },
|
5721 | formatAutoRefresh: function formatAutoRefresh() {
|
5722 | return 'Atualização Automática';
|
5723 | },
|
5724 | formatExport: function formatExport() {
|
5725 | return 'Exportar dados';
|
5726 | },
|
5727 | formatJumpTo: function formatJumpTo() {
|
5728 | return 'IR';
|
5729 | },
|
5730 | formatAdvancedSearch: function formatAdvancedSearch() {
|
5731 | return 'Pesquisa Avançada';
|
5732 | },
|
5733 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
5734 | return 'Fechar';
|
5735 | },
|
5736 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
5737 | return 'Ocultar/Exibir controles';
|
5738 | },
|
5739 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
5740 | return 'Ocultar controles';
|
5741 | },
|
5742 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
5743 | return 'Exibir controles';
|
5744 | }
|
5745 | };
|
5746 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['pt-BR']);
|
5747 |
|
5748 | |
5749 |
|
5750 |
|
5751 |
|
5752 |
|
5753 | $$2.fn.bootstrapTable.locales['sk-SK'] = $$2.fn.bootstrapTable.locales['sk'] = {
|
5754 | formatCopyRows: function formatCopyRows() {
|
5755 | return 'Skopírovať riadky';
|
5756 | },
|
5757 | formatPrint: function formatPrint() {
|
5758 | return 'Vytlačiť';
|
5759 | },
|
5760 | formatLoadingMessage: function formatLoadingMessage() {
|
5761 | return 'Prosím čakajte';
|
5762 | },
|
5763 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
5764 | return "".concat(pageNumber, " z\xE1znamov na stranu");
|
5765 | },
|
5766 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
5767 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
5768 | return "Zobrazen\xE1 ".concat(pageFrom, ". - ").concat(pageTo, ". polo\u017Eka z celkov\xFDch ").concat(totalRows, " (filtered from ").concat(totalNotFiltered, " total rows)");
|
5769 | }
|
5770 | return "Zobrazen\xE1 ".concat(pageFrom, ". - ").concat(pageTo, ". polo\u017Eka z celkov\xFDch ").concat(totalRows);
|
5771 | },
|
5772 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
5773 | return 'Predchádzajúca strana';
|
5774 | },
|
5775 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
5776 | return "na stranu ".concat(page);
|
5777 | },
|
5778 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
5779 | return 'Nasledujúca strana';
|
5780 | },
|
5781 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
5782 | return "Zobrazuje sa ".concat(totalRows, " riadkov");
|
5783 | },
|
5784 | formatClearSearch: function formatClearSearch() {
|
5785 | return 'Odstráň filtre';
|
5786 | },
|
5787 | formatSearch: function formatSearch() {
|
5788 | return 'Vyhľadávanie';
|
5789 | },
|
5790 | formatNoMatches: function formatNoMatches() {
|
5791 | return 'Nenájdená žiadna vyhovujúca položka';
|
5792 | },
|
5793 | formatPaginationSwitch: function formatPaginationSwitch() {
|
5794 | return 'Skry/Zobraz stránkovanie';
|
5795 | },
|
5796 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
5797 | return 'Zobraziť stránkovanie';
|
5798 | },
|
5799 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
5800 | return 'Skryť stránkovanie';
|
5801 | },
|
5802 | formatRefresh: function formatRefresh() {
|
5803 | return 'Obnoviť';
|
5804 | },
|
5805 | formatToggleOn: function formatToggleOn() {
|
5806 | return 'Zobraziť kartové zobrazenie';
|
5807 | },
|
5808 | formatToggleOff: function formatToggleOff() {
|
5809 | return 'skryť kartové zobrazenie';
|
5810 | },
|
5811 | formatColumns: function formatColumns() {
|
5812 | return 'Stĺpce';
|
5813 | },
|
5814 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
5815 | return 'Prepnúť všetky';
|
5816 | },
|
5817 | formatFullscreen: function formatFullscreen() {
|
5818 | return 'Celá obrazovka';
|
5819 | },
|
5820 | formatAllRows: function formatAllRows() {
|
5821 | return 'Všetky';
|
5822 | },
|
5823 | formatAutoRefresh: function formatAutoRefresh() {
|
5824 | return 'Automatické obnovenie';
|
5825 | },
|
5826 | formatExport: function formatExport() {
|
5827 | return 'Exportuj dáta';
|
5828 | },
|
5829 | formatJumpTo: function formatJumpTo() {
|
5830 | return 'Ísť';
|
5831 | },
|
5832 | formatAdvancedSearch: function formatAdvancedSearch() {
|
5833 | return 'Pokročilé vyhľadávanie';
|
5834 | },
|
5835 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
5836 | return 'Zatvoriť';
|
5837 | },
|
5838 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
5839 | return 'Zobraziť/Skryť tlačidlá';
|
5840 | },
|
5841 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
5842 | return 'Skryť tlačidlá';
|
5843 | },
|
5844 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
5845 | return 'Zobraziť tlačidlá';
|
5846 | }
|
5847 | };
|
5848 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['sk-SK']);
|
5849 |
|
5850 | |
5851 |
|
5852 |
|
5853 |
|
5854 |
|
5855 | $$2.fn.bootstrapTable.locales['sr-Cyrl-RS'] = $$2.fn.bootstrapTable.locales['sr'] = {
|
5856 | formatCopyRows: function formatCopyRows() {
|
5857 | return 'Copy Rows';
|
5858 | },
|
5859 | formatPrint: function formatPrint() {
|
5860 | return 'Print';
|
5861 | },
|
5862 | formatLoadingMessage: function formatLoadingMessage() {
|
5863 | return 'Молим сачекај';
|
5864 | },
|
5865 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
5866 | return "".concat(pageNumber, " \u0440\u0435\u0434\u043E\u0432\u0430 \u043F\u043E \u0441\u0442\u0440\u0430\u043D\u0438");
|
5867 | },
|
5868 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
5869 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
5870 | 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, ")");
|
5871 | }
|
5872 | 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);
|
5873 | },
|
5874 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
5875 | return 'претходна страна';
|
5876 | },
|
5877 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
5878 | return "\u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0443 ".concat(page);
|
5879 | },
|
5880 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
5881 | return 'следећа страна';
|
5882 | },
|
5883 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
5884 | return "\u041F\u0440\u0438\u043A\u0430\u0437\u0430\u043D\u043E ".concat(totalRows, " \u0440\u0435\u0434\u043E\u0432\u0430");
|
5885 | },
|
5886 | formatClearSearch: function formatClearSearch() {
|
5887 | return 'Обриши претрагу';
|
5888 | },
|
5889 | formatSearch: function formatSearch() {
|
5890 | return 'Пронађи';
|
5891 | },
|
5892 | formatNoMatches: function formatNoMatches() {
|
5893 | return 'Није пронађен ни један податак';
|
5894 | },
|
5895 | formatPaginationSwitch: function formatPaginationSwitch() {
|
5896 | return 'Прикажи/сакриј пагинацију';
|
5897 | },
|
5898 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
5899 | return 'Прикажи пагинацију';
|
5900 | },
|
5901 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
5902 | return 'Сакриј пагинацију';
|
5903 | },
|
5904 | formatRefresh: function formatRefresh() {
|
5905 | return 'Освежи';
|
5906 | },
|
5907 | formatToggleOn: function formatToggleOn() {
|
5908 | return 'Прикажи картице';
|
5909 | },
|
5910 | formatToggleOff: function formatToggleOff() {
|
5911 | return 'Сакриј картице';
|
5912 | },
|
5913 | formatColumns: function formatColumns() {
|
5914 | return 'Колоне';
|
5915 | },
|
5916 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
5917 | return 'Прикажи/сакриј све';
|
5918 | },
|
5919 | formatFullscreen: function formatFullscreen() {
|
5920 | return 'Цео екран';
|
5921 | },
|
5922 | formatAllRows: function formatAllRows() {
|
5923 | return 'Све';
|
5924 | },
|
5925 | formatAutoRefresh: function formatAutoRefresh() {
|
5926 | return 'Аутоматско освежавање';
|
5927 | },
|
5928 | formatExport: function formatExport() {
|
5929 | return 'Извези податке';
|
5930 | },
|
5931 | formatJumpTo: function formatJumpTo() {
|
5932 | return 'Иди';
|
5933 | },
|
5934 | formatAdvancedSearch: function formatAdvancedSearch() {
|
5935 | return 'Напредна претрага';
|
5936 | },
|
5937 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
5938 | return 'Затвори';
|
5939 | },
|
5940 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
5941 | return 'Hide/Show controls';
|
5942 | },
|
5943 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
5944 | return 'Hide controls';
|
5945 | },
|
5946 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
5947 | return 'Show controls';
|
5948 | }
|
5949 | };
|
5950 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['sr-Cyrl-RS']);
|
5951 |
|
5952 | |
5953 |
|
5954 |
|
5955 |
|
5956 |
|
5957 | $$2.fn.bootstrapTable.locales['th-TH'] = $$2.fn.bootstrapTable.locales['th'] = {
|
5958 | formatCopyRows: function formatCopyRows() {
|
5959 | return 'Copy Rows';
|
5960 | },
|
5961 | formatPrint: function formatPrint() {
|
5962 | return 'Print';
|
5963 | },
|
5964 | formatLoadingMessage: function formatLoadingMessage() {
|
5965 | return 'กำลังโหลดข้อมูล, กรุณารอสักครู่';
|
5966 | },
|
5967 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
5968 | return "".concat(pageNumber, " \u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E15\u0E48\u0E2D\u0E2B\u0E19\u0E49\u0E32");
|
5969 | },
|
5970 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
5971 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
5972 | 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)");
|
5973 | }
|
5974 | 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");
|
5975 | },
|
5976 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
5977 | return 'previous page';
|
5978 | },
|
5979 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
5980 | return "to page ".concat(page);
|
5981 | },
|
5982 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
5983 | return 'next page';
|
5984 | },
|
5985 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
5986 | return "Showing ".concat(totalRows, " rows");
|
5987 | },
|
5988 | formatClearSearch: function formatClearSearch() {
|
5989 | return 'Clear Search';
|
5990 | },
|
5991 | formatSearch: function formatSearch() {
|
5992 | return 'ค้นหา';
|
5993 | },
|
5994 | formatNoMatches: function formatNoMatches() {
|
5995 | return 'ไม่พบรายการที่ค้นหา !';
|
5996 | },
|
5997 | formatPaginationSwitch: function formatPaginationSwitch() {
|
5998 | return 'Hide/Show pagination';
|
5999 | },
|
6000 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
6001 | return 'Show pagination';
|
6002 | },
|
6003 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
6004 | return 'Hide pagination';
|
6005 | },
|
6006 | formatRefresh: function formatRefresh() {
|
6007 | return 'รีเฟรส';
|
6008 | },
|
6009 | formatToggleOn: function formatToggleOn() {
|
6010 | return 'Show card view';
|
6011 | },
|
6012 | formatToggleOff: function formatToggleOff() {
|
6013 | return 'Hide card view';
|
6014 | },
|
6015 | formatColumns: function formatColumns() {
|
6016 | return 'คอลัมน์';
|
6017 | },
|
6018 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
6019 | return 'Toggle all';
|
6020 | },
|
6021 | formatFullscreen: function formatFullscreen() {
|
6022 | return 'Fullscreen';
|
6023 | },
|
6024 | formatAllRows: function formatAllRows() {
|
6025 | return 'All';
|
6026 | },
|
6027 | formatAutoRefresh: function formatAutoRefresh() {
|
6028 | return 'Auto Refresh';
|
6029 | },
|
6030 | formatExport: function formatExport() {
|
6031 | return 'Export data';
|
6032 | },
|
6033 | formatJumpTo: function formatJumpTo() {
|
6034 | return 'GO';
|
6035 | },
|
6036 | formatAdvancedSearch: function formatAdvancedSearch() {
|
6037 | return 'Advanced search';
|
6038 | },
|
6039 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
6040 | return 'Close';
|
6041 | },
|
6042 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
6043 | return 'Hide/Show controls';
|
6044 | },
|
6045 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
6046 | return 'Hide controls';
|
6047 | },
|
6048 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
6049 | return 'Show controls';
|
6050 | }
|
6051 | };
|
6052 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['th-TH']);
|
6053 |
|
6054 | |
6055 |
|
6056 |
|
6057 |
|
6058 |
|
6059 | $$2.fn.bootstrapTable.locales['sv-SE'] = $$2.fn.bootstrapTable.locales['sv'] = {
|
6060 | formatCopyRows: function formatCopyRows() {
|
6061 | return 'Copy Rows';
|
6062 | },
|
6063 | formatPrint: function formatPrint() {
|
6064 | return 'Print';
|
6065 | },
|
6066 | formatLoadingMessage: function formatLoadingMessage() {
|
6067 | return 'Laddar, vänligen vänta';
|
6068 | },
|
6069 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
6070 | return "".concat(pageNumber, " rader per sida");
|
6071 | },
|
6072 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
6073 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
6074 | return "Visa ".concat(pageFrom, " till ").concat(pageTo, " av ").concat(totalRows, " rader (filtered from ").concat(totalNotFiltered, " total rows)");
|
6075 | }
|
6076 | return "Visa ".concat(pageFrom, " till ").concat(pageTo, " av ").concat(totalRows, " rader");
|
6077 | },
|
6078 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
6079 | return 'previous page';
|
6080 | },
|
6081 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
6082 | return "to page ".concat(page);
|
6083 | },
|
6084 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
6085 | return 'next page';
|
6086 | },
|
6087 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
6088 | return "Showing ".concat(totalRows, " rows");
|
6089 | },
|
6090 | formatClearSearch: function formatClearSearch() {
|
6091 | return 'Clear Search';
|
6092 | },
|
6093 | formatSearch: function formatSearch() {
|
6094 | return 'Sök';
|
6095 | },
|
6096 | formatNoMatches: function formatNoMatches() {
|
6097 | return 'Inga matchande resultat funna.';
|
6098 | },
|
6099 | formatPaginationSwitch: function formatPaginationSwitch() {
|
6100 | return 'Hide/Show pagination';
|
6101 | },
|
6102 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
6103 | return 'Show pagination';
|
6104 | },
|
6105 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
6106 | return 'Hide pagination';
|
6107 | },
|
6108 | formatRefresh: function formatRefresh() {
|
6109 | return 'Uppdatera';
|
6110 | },
|
6111 | formatToggleOn: function formatToggleOn() {
|
6112 | return 'Show card view';
|
6113 | },
|
6114 | formatToggleOff: function formatToggleOff() {
|
6115 | return 'Hide card view';
|
6116 | },
|
6117 | formatColumns: function formatColumns() {
|
6118 | return 'kolumn';
|
6119 | },
|
6120 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
6121 | return 'Toggle all';
|
6122 | },
|
6123 | formatFullscreen: function formatFullscreen() {
|
6124 | return 'Fullscreen';
|
6125 | },
|
6126 | formatAllRows: function formatAllRows() {
|
6127 | return 'All';
|
6128 | },
|
6129 | formatAutoRefresh: function formatAutoRefresh() {
|
6130 | return 'Auto Refresh';
|
6131 | },
|
6132 | formatExport: function formatExport() {
|
6133 | return 'Export data';
|
6134 | },
|
6135 | formatJumpTo: function formatJumpTo() {
|
6136 | return 'GO';
|
6137 | },
|
6138 | formatAdvancedSearch: function formatAdvancedSearch() {
|
6139 | return 'Advanced search';
|
6140 | },
|
6141 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
6142 | return 'Close';
|
6143 | },
|
6144 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
6145 | return 'Hide/Show controls';
|
6146 | },
|
6147 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
6148 | return 'Hide controls';
|
6149 | },
|
6150 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
6151 | return 'Show controls';
|
6152 | }
|
6153 | };
|
6154 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['sv-SE']);
|
6155 |
|
6156 | |
6157 |
|
6158 |
|
6159 |
|
6160 |
|
6161 |
|
6162 | $$2.fn.bootstrapTable.locales['tr-TR'] = $$2.fn.bootstrapTable.locales['tr'] = {
|
6163 | formatCopyRows: function formatCopyRows() {
|
6164 | return 'Copy Rows';
|
6165 | },
|
6166 | formatPrint: function formatPrint() {
|
6167 | return 'Print';
|
6168 | },
|
6169 | formatLoadingMessage: function formatLoadingMessage() {
|
6170 | return 'Yükleniyor, lütfen bekleyin';
|
6171 | },
|
6172 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
6173 | return "Sayfa ba\u015F\u0131na ".concat(pageNumber, " kay\u0131t.");
|
6174 | },
|
6175 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
6176 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
6177 | return "".concat(totalRows, " kay\u0131ttan ").concat(pageFrom, "-").concat(pageTo, " aras\u0131 g\xF6steriliyor (filtered from ").concat(totalNotFiltered, " total rows).");
|
6178 | }
|
6179 | return "".concat(totalRows, " kay\u0131ttan ").concat(pageFrom, "-").concat(pageTo, " aras\u0131 g\xF6steriliyor.");
|
6180 | },
|
6181 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
6182 | return 'previous page';
|
6183 | },
|
6184 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
6185 | return "to page ".concat(page);
|
6186 | },
|
6187 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
6188 | return 'next page';
|
6189 | },
|
6190 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
6191 | return "Showing ".concat(totalRows, " rows");
|
6192 | },
|
6193 | formatClearSearch: function formatClearSearch() {
|
6194 | return 'Clear Search';
|
6195 | },
|
6196 | formatSearch: function formatSearch() {
|
6197 | return 'Ara';
|
6198 | },
|
6199 | formatNoMatches: function formatNoMatches() {
|
6200 | return 'Eşleşen kayıt bulunamadı.';
|
6201 | },
|
6202 | formatPaginationSwitch: function formatPaginationSwitch() {
|
6203 | return 'Hide/Show pagination';
|
6204 | },
|
6205 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
6206 | return 'Show pagination';
|
6207 | },
|
6208 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
6209 | return 'Hide pagination';
|
6210 | },
|
6211 | formatRefresh: function formatRefresh() {
|
6212 | return 'Yenile';
|
6213 | },
|
6214 | formatToggleOn: function formatToggleOn() {
|
6215 | return 'Show card view';
|
6216 | },
|
6217 | formatToggleOff: function formatToggleOff() {
|
6218 | return 'Hide card view';
|
6219 | },
|
6220 | formatColumns: function formatColumns() {
|
6221 | return 'Sütunlar';
|
6222 | },
|
6223 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
6224 | return 'Toggle all';
|
6225 | },
|
6226 | formatFullscreen: function formatFullscreen() {
|
6227 | return 'Fullscreen';
|
6228 | },
|
6229 | formatAllRows: function formatAllRows() {
|
6230 | return 'Tüm Satırlar';
|
6231 | },
|
6232 | formatAutoRefresh: function formatAutoRefresh() {
|
6233 | return 'Auto Refresh';
|
6234 | },
|
6235 | formatExport: function formatExport() {
|
6236 | return 'Export data';
|
6237 | },
|
6238 | formatJumpTo: function formatJumpTo() {
|
6239 | return 'GO';
|
6240 | },
|
6241 | formatAdvancedSearch: function formatAdvancedSearch() {
|
6242 | return 'Advanced search';
|
6243 | },
|
6244 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
6245 | return 'Close';
|
6246 | },
|
6247 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
6248 | return 'Hide/Show controls';
|
6249 | },
|
6250 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
6251 | return 'Hide controls';
|
6252 | },
|
6253 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
6254 | return 'Show controls';
|
6255 | }
|
6256 | };
|
6257 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['tr-TR']);
|
6258 |
|
6259 | |
6260 |
|
6261 |
|
6262 |
|
6263 |
|
6264 | $$2.fn.bootstrapTable.locales['ro-RO'] = $$2.fn.bootstrapTable.locales['ro'] = {
|
6265 | formatCopyRows: function formatCopyRows() {
|
6266 | return 'Copy Rows';
|
6267 | },
|
6268 | formatPrint: function formatPrint() {
|
6269 | return 'Print';
|
6270 | },
|
6271 | formatLoadingMessage: function formatLoadingMessage() {
|
6272 | return 'Se incarca, va rugam asteptati';
|
6273 | },
|
6274 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
6275 | return "".concat(pageNumber, " inregistrari pe pagina");
|
6276 | },
|
6277 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
6278 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
6279 | return "Arata de la ".concat(pageFrom, " pana la ").concat(pageTo, " din ").concat(totalRows, " randuri (filtered from ").concat(totalNotFiltered, " total rows)");
|
6280 | }
|
6281 | return "Arata de la ".concat(pageFrom, " pana la ").concat(pageTo, " din ").concat(totalRows, " randuri");
|
6282 | },
|
6283 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
6284 | return 'previous page';
|
6285 | },
|
6286 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
6287 | return "to page ".concat(page);
|
6288 | },
|
6289 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
6290 | return 'next page';
|
6291 | },
|
6292 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
6293 | return "Showing ".concat(totalRows, " rows");
|
6294 | },
|
6295 | formatClearSearch: function formatClearSearch() {
|
6296 | return 'Clear Search';
|
6297 | },
|
6298 | formatSearch: function formatSearch() {
|
6299 | return 'Cauta';
|
6300 | },
|
6301 | formatNoMatches: function formatNoMatches() {
|
6302 | return 'Nu au fost gasite inregistrari';
|
6303 | },
|
6304 | formatPaginationSwitch: function formatPaginationSwitch() {
|
6305 | return 'Ascunde/Arata paginatia';
|
6306 | },
|
6307 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
6308 | return 'Show pagination';
|
6309 | },
|
6310 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
6311 | return 'Hide pagination';
|
6312 | },
|
6313 | formatRefresh: function formatRefresh() {
|
6314 | return 'Reincarca';
|
6315 | },
|
6316 | formatToggleOn: function formatToggleOn() {
|
6317 | return 'Show card view';
|
6318 | },
|
6319 | formatToggleOff: function formatToggleOff() {
|
6320 | return 'Hide card view';
|
6321 | },
|
6322 | formatColumns: function formatColumns() {
|
6323 | return 'Coloane';
|
6324 | },
|
6325 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
6326 | return 'Toggle all';
|
6327 | },
|
6328 | formatFullscreen: function formatFullscreen() {
|
6329 | return 'Fullscreen';
|
6330 | },
|
6331 | formatAllRows: function formatAllRows() {
|
6332 | return 'Toate';
|
6333 | },
|
6334 | formatAutoRefresh: function formatAutoRefresh() {
|
6335 | return 'Auto Refresh';
|
6336 | },
|
6337 | formatExport: function formatExport() {
|
6338 | return 'Export data';
|
6339 | },
|
6340 | formatJumpTo: function formatJumpTo() {
|
6341 | return 'GO';
|
6342 | },
|
6343 | formatAdvancedSearch: function formatAdvancedSearch() {
|
6344 | return 'Advanced search';
|
6345 | },
|
6346 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
6347 | return 'Close';
|
6348 | },
|
6349 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
6350 | return 'Hide/Show controls';
|
6351 | },
|
6352 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
6353 | return 'Hide controls';
|
6354 | },
|
6355 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
6356 | return 'Show controls';
|
6357 | }
|
6358 | };
|
6359 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['ro-RO']);
|
6360 |
|
6361 | |
6362 |
|
6363 |
|
6364 |
|
6365 |
|
6366 | $$2.fn.bootstrapTable.locales['sr-Latn-RS'] = {
|
6367 | formatCopyRows: function formatCopyRows() {
|
6368 | return 'Copy Rows';
|
6369 | },
|
6370 | formatPrint: function formatPrint() {
|
6371 | return 'Print';
|
6372 | },
|
6373 | formatLoadingMessage: function formatLoadingMessage() {
|
6374 | return 'Molim sačekaj';
|
6375 | },
|
6376 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
6377 | return "".concat(pageNumber, " redova po strani");
|
6378 | },
|
6379 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
6380 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
6381 | return "Prikazano ".concat(pageFrom, ". - ").concat(pageTo, ". od ukupnog broja redova ").concat(totalRows, " (filtrirano od ").concat(totalNotFiltered, ")");
|
6382 | }
|
6383 | return "Prikazano ".concat(pageFrom, ". - ").concat(pageTo, ". od ukupnog broja redova ").concat(totalRows);
|
6384 | },
|
6385 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
6386 | return 'prethodna strana';
|
6387 | },
|
6388 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
6389 | return "na stranu ".concat(page);
|
6390 | },
|
6391 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
6392 | return 'sledeća strana';
|
6393 | },
|
6394 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
6395 | return "Prikazano ".concat(totalRows, " redova");
|
6396 | },
|
6397 | formatClearSearch: function formatClearSearch() {
|
6398 | return 'Obriši pretragu';
|
6399 | },
|
6400 | formatSearch: function formatSearch() {
|
6401 | return 'Pronađi';
|
6402 | },
|
6403 | formatNoMatches: function formatNoMatches() {
|
6404 | return 'Nije pronađen ni jedan podatak';
|
6405 | },
|
6406 | formatPaginationSwitch: function formatPaginationSwitch() {
|
6407 | return 'Prikaži/sakrij paginaciju';
|
6408 | },
|
6409 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
6410 | return 'Prikaži paginaciju';
|
6411 | },
|
6412 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
6413 | return 'Sakrij paginaciju';
|
6414 | },
|
6415 | formatRefresh: function formatRefresh() {
|
6416 | return 'Osveži';
|
6417 | },
|
6418 | formatToggleOn: function formatToggleOn() {
|
6419 | return 'Prikaži kartice';
|
6420 | },
|
6421 | formatToggleOff: function formatToggleOff() {
|
6422 | return 'Sakrij kartice';
|
6423 | },
|
6424 | formatColumns: function formatColumns() {
|
6425 | return 'Kolone';
|
6426 | },
|
6427 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
6428 | return 'Prikaži/sakrij sve';
|
6429 | },
|
6430 | formatFullscreen: function formatFullscreen() {
|
6431 | return 'Ceo ekran';
|
6432 | },
|
6433 | formatAllRows: function formatAllRows() {
|
6434 | return 'Sve';
|
6435 | },
|
6436 | formatAutoRefresh: function formatAutoRefresh() {
|
6437 | return 'Automatsko osvežavanje';
|
6438 | },
|
6439 | formatExport: function formatExport() {
|
6440 | return 'Izvezi podatke';
|
6441 | },
|
6442 | formatJumpTo: function formatJumpTo() {
|
6443 | return 'Idi';
|
6444 | },
|
6445 | formatAdvancedSearch: function formatAdvancedSearch() {
|
6446 | return 'Napredna pretraga';
|
6447 | },
|
6448 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
6449 | return 'Zatvori';
|
6450 | },
|
6451 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
6452 | return 'Hide/Show controls';
|
6453 | },
|
6454 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
6455 | return 'Hide controls';
|
6456 | },
|
6457 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
6458 | return 'Show controls';
|
6459 | }
|
6460 | };
|
6461 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['sr-Latn-RS']);
|
6462 |
|
6463 | |
6464 |
|
6465 |
|
6466 |
|
6467 |
|
6468 | $$2.fn.bootstrapTable.locales['uk-UA'] = $$2.fn.bootstrapTable.locales['uk'] = {
|
6469 | formatCopyRows: function formatCopyRows() {
|
6470 | return 'Скопіювати рядки';
|
6471 | },
|
6472 | formatPrint: function formatPrint() {
|
6473 | return 'Друк';
|
6474 | },
|
6475 | formatLoadingMessage: function formatLoadingMessage() {
|
6476 | return 'Завантаження, будь ласка, зачекайте';
|
6477 | },
|
6478 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
6479 | return "".concat(pageNumber, " \u0440\u044F\u0434\u043A\u0456\u0432 \u043D\u0430 \u0441\u0442\u043E\u0440\u0456\u043D\u043A\u0443");
|
6480 | },
|
6481 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
6482 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
6483 | return "\u0412\u0456\u0434\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043E \u0440\u044F\u0434\u043A\u0438 \u0437 ".concat(pageFrom, " \u043F\u043E ").concat(pageTo, " \u0437 ").concat(totalRows, " \u0437\u0430\u0433\u0430\u043B\u043E\u043C (\u0432\u0456\u0434\u0444\u0456\u043B\u044C\u0442\u0440\u043E\u0432\u0430\u043D\u043E \u0437 ").concat(totalNotFiltered, " \u0440\u044F\u0434\u043A\u0456\u0432)");
|
6484 | }
|
6485 | return "\u0412\u0456\u0434\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043E \u0440\u044F\u0434\u043A\u0438 \u0437 ".concat(pageFrom, " \u043F\u043E ").concat(pageTo, " \u0437 ").concat(totalRows, " \u0437\u0430\u0433\u0430\u043B\u043E\u043C");
|
6486 | },
|
6487 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
6488 | return 'попередня сторінка';
|
6489 | },
|
6490 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
6491 | return "\u0434\u043E \u0441\u0442\u043E\u0440\u0456\u043D\u043A\u0438 ".concat(page);
|
6492 | },
|
6493 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
6494 | return 'наступна сторінка';
|
6495 | },
|
6496 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
6497 | return "\u0412\u0456\u0434\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043E ".concat(totalRows, " \u0440\u044F\u0434\u043A\u0456\u0432");
|
6498 | },
|
6499 | formatClearSearch: function formatClearSearch() {
|
6500 | return 'Скинути фільтри';
|
6501 | },
|
6502 | formatSearch: function formatSearch() {
|
6503 | return 'Пошук';
|
6504 | },
|
6505 | formatNoMatches: function formatNoMatches() {
|
6506 | return 'Не знайдено жодного запису';
|
6507 | },
|
6508 | formatPaginationSwitch: function formatPaginationSwitch() {
|
6509 | return 'Сховати/Відобразити пагінацію';
|
6510 | },
|
6511 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
6512 | return 'Відобразити пагінацію';
|
6513 | },
|
6514 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
6515 | return 'Сховати пагінацію';
|
6516 | },
|
6517 | formatRefresh: function formatRefresh() {
|
6518 | return 'Оновити';
|
6519 | },
|
6520 | formatToggleOn: function formatToggleOn() {
|
6521 | return 'Відобразити у форматі карток';
|
6522 | },
|
6523 | formatToggleOff: function formatToggleOff() {
|
6524 | return 'Вимкнути формат карток';
|
6525 | },
|
6526 | formatColumns: function formatColumns() {
|
6527 | return 'Стовпці';
|
6528 | },
|
6529 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
6530 | return 'Переключити усі';
|
6531 | },
|
6532 | formatFullscreen: function formatFullscreen() {
|
6533 | return 'Повноекранний режим';
|
6534 | },
|
6535 | formatAllRows: function formatAllRows() {
|
6536 | return 'Усі';
|
6537 | },
|
6538 | formatAutoRefresh: function formatAutoRefresh() {
|
6539 | return 'Автооновлення';
|
6540 | },
|
6541 | formatExport: function formatExport() {
|
6542 | return 'Експортувати дані';
|
6543 | },
|
6544 | formatJumpTo: function formatJumpTo() {
|
6545 | return 'Швидкий перехід до';
|
6546 | },
|
6547 | formatAdvancedSearch: function formatAdvancedSearch() {
|
6548 | return 'Розширений пошук';
|
6549 | },
|
6550 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
6551 | return 'Закрити';
|
6552 | },
|
6553 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
6554 | return 'Сховати/Відобразити елементи керування';
|
6555 | },
|
6556 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
6557 | return 'Сховати елементи керування';
|
6558 | },
|
6559 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
6560 | return 'Відобразити елементи керування';
|
6561 | }
|
6562 | };
|
6563 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['uk-UA']);
|
6564 |
|
6565 | |
6566 |
|
6567 |
|
6568 |
|
6569 |
|
6570 | $$2.fn.bootstrapTable.locales['ur-PK'] = $$2.fn.bootstrapTable.locales['ur'] = {
|
6571 | formatCopyRows: function formatCopyRows() {
|
6572 | return 'Copy Rows';
|
6573 | },
|
6574 | formatPrint: function formatPrint() {
|
6575 | return 'Print';
|
6576 | },
|
6577 | formatLoadingMessage: function formatLoadingMessage() {
|
6578 | return 'براۓ مہربانی انتظار کیجئے';
|
6579 | },
|
6580 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
6581 | return "".concat(pageNumber, " \u0631\u06CC\u06A9\u0627\u0631\u0688\u0632 \u0641\u06CC \u0635\u0641\u06C1 ");
|
6582 | },
|
6583 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
6584 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
6585 | 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)");
|
6586 | }
|
6587 | return "\u062F\u06CC\u06A9\u06BE\u06CC\u06BA ".concat(pageFrom, " \u0633\u06D2 ").concat(pageTo, " \u06A9\u06D2 ").concat(totalRows, "\u0631\u06CC\u06A9\u0627\u0631\u0688\u0632");
|
6588 | },
|
6589 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
6590 | return 'previous page';
|
6591 | },
|
6592 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
6593 | return "to page ".concat(page);
|
6594 | },
|
6595 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
6596 | return 'next page';
|
6597 | },
|
6598 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
6599 | return "Showing ".concat(totalRows, " rows");
|
6600 | },
|
6601 | formatClearSearch: function formatClearSearch() {
|
6602 | return 'Clear Search';
|
6603 | },
|
6604 | formatSearch: function formatSearch() {
|
6605 | return 'تلاش';
|
6606 | },
|
6607 | formatNoMatches: function formatNoMatches() {
|
6608 | return 'کوئی ریکارڈ نہیں ملا';
|
6609 | },
|
6610 | formatPaginationSwitch: function formatPaginationSwitch() {
|
6611 | return 'Hide/Show pagination';
|
6612 | },
|
6613 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
6614 | return 'Show pagination';
|
6615 | },
|
6616 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
6617 | return 'Hide pagination';
|
6618 | },
|
6619 | formatRefresh: function formatRefresh() {
|
6620 | return 'تازہ کریں';
|
6621 | },
|
6622 | formatToggleOn: function formatToggleOn() {
|
6623 | return 'Show card view';
|
6624 | },
|
6625 | formatToggleOff: function formatToggleOff() {
|
6626 | return 'Hide card view';
|
6627 | },
|
6628 | formatColumns: function formatColumns() {
|
6629 | return 'کالم';
|
6630 | },
|
6631 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
6632 | return 'Toggle all';
|
6633 | },
|
6634 | formatFullscreen: function formatFullscreen() {
|
6635 | return 'Fullscreen';
|
6636 | },
|
6637 | formatAllRows: function formatAllRows() {
|
6638 | return 'All';
|
6639 | },
|
6640 | formatAutoRefresh: function formatAutoRefresh() {
|
6641 | return 'Auto Refresh';
|
6642 | },
|
6643 | formatExport: function formatExport() {
|
6644 | return 'Export data';
|
6645 | },
|
6646 | formatJumpTo: function formatJumpTo() {
|
6647 | return 'GO';
|
6648 | },
|
6649 | formatAdvancedSearch: function formatAdvancedSearch() {
|
6650 | return 'Advanced search';
|
6651 | },
|
6652 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
6653 | return 'Close';
|
6654 | },
|
6655 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
6656 | return 'Hide/Show controls';
|
6657 | },
|
6658 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
6659 | return 'Hide controls';
|
6660 | },
|
6661 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
6662 | return 'Show controls';
|
6663 | }
|
6664 | };
|
6665 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['ur-PK']);
|
6666 |
|
6667 | |
6668 |
|
6669 |
|
6670 |
|
6671 |
|
6672 | $$2.fn.bootstrapTable.locales['uz-Latn-UZ'] = $$2.fn.bootstrapTable.locales['uz'] = {
|
6673 | formatCopyRows: function formatCopyRows() {
|
6674 | return 'Copy Rows';
|
6675 | },
|
6676 | formatPrint: function formatPrint() {
|
6677 | return 'Print';
|
6678 | },
|
6679 | formatLoadingMessage: function formatLoadingMessage() {
|
6680 | return 'Yuklanyapti, iltimos kuting';
|
6681 | },
|
6682 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
6683 | return "".concat(pageNumber, " qator har sahifada");
|
6684 | },
|
6685 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
6686 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
6687 | return "Ko'rsatypati ".concat(pageFrom, " dan ").concat(pageTo, " gacha ").concat(totalRows, " qatorlarni (filtered from ").concat(totalNotFiltered, " total rows)");
|
6688 | }
|
6689 | return "Ko'rsatypati ".concat(pageFrom, " dan ").concat(pageTo, " gacha ").concat(totalRows, " qatorlarni");
|
6690 | },
|
6691 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
6692 | return 'previous page';
|
6693 | },
|
6694 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
6695 | return "to page ".concat(page);
|
6696 | },
|
6697 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
6698 | return 'next page';
|
6699 | },
|
6700 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
6701 | return "Showing ".concat(totalRows, " rows");
|
6702 | },
|
6703 | formatClearSearch: function formatClearSearch() {
|
6704 | return 'Filtrlarni tozalash';
|
6705 | },
|
6706 | formatSearch: function formatSearch() {
|
6707 | return 'Qidirish';
|
6708 | },
|
6709 | formatNoMatches: function formatNoMatches() {
|
6710 | return 'Hech narsa topilmadi';
|
6711 | },
|
6712 | formatPaginationSwitch: function formatPaginationSwitch() {
|
6713 | return 'Sahifalashni yashirish/ko\'rsatish';
|
6714 | },
|
6715 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
6716 | return 'Show pagination';
|
6717 | },
|
6718 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
6719 | return 'Hide pagination';
|
6720 | },
|
6721 | formatRefresh: function formatRefresh() {
|
6722 | return 'Yangilash';
|
6723 | },
|
6724 | formatToggleOn: function formatToggleOn() {
|
6725 | return 'Show card view';
|
6726 | },
|
6727 | formatToggleOff: function formatToggleOff() {
|
6728 | return 'Hide card view';
|
6729 | },
|
6730 | formatColumns: function formatColumns() {
|
6731 | return 'Ustunlar';
|
6732 | },
|
6733 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
6734 | return 'Toggle all';
|
6735 | },
|
6736 | formatFullscreen: function formatFullscreen() {
|
6737 | return 'Fullscreen';
|
6738 | },
|
6739 | formatAllRows: function formatAllRows() {
|
6740 | return 'Hammasi';
|
6741 | },
|
6742 | formatAutoRefresh: function formatAutoRefresh() {
|
6743 | return 'Auto Refresh';
|
6744 | },
|
6745 | formatExport: function formatExport() {
|
6746 | return 'Eksport';
|
6747 | },
|
6748 | formatJumpTo: function formatJumpTo() {
|
6749 | return 'GO';
|
6750 | },
|
6751 | formatAdvancedSearch: function formatAdvancedSearch() {
|
6752 | return 'Advanced search';
|
6753 | },
|
6754 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
6755 | return 'Close';
|
6756 | },
|
6757 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
6758 | return 'Hide/Show controls';
|
6759 | },
|
6760 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
6761 | return 'Hide controls';
|
6762 | },
|
6763 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
6764 | return 'Show controls';
|
6765 | }
|
6766 | };
|
6767 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['uz-Latn-UZ']);
|
6768 |
|
6769 | |
6770 |
|
6771 |
|
6772 |
|
6773 |
|
6774 | $$2.fn.bootstrapTable.locales['vi-VN'] = $$2.fn.bootstrapTable.locales['vi'] = {
|
6775 | formatCopyRows: function formatCopyRows() {
|
6776 | return 'Copy Rows';
|
6777 | },
|
6778 | formatPrint: function formatPrint() {
|
6779 | return 'Print';
|
6780 | },
|
6781 | formatLoadingMessage: function formatLoadingMessage() {
|
6782 | return 'Đang tải';
|
6783 | },
|
6784 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
6785 | return "".concat(pageNumber, " b\u1EA3n ghi m\u1ED7i trang");
|
6786 | },
|
6787 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
6788 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
6789 | 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)");
|
6790 | }
|
6791 | return "Hi\u1EC3n th\u1ECB t\u1EEB trang ".concat(pageFrom, " \u0111\u1EBFn ").concat(pageTo, " c\u1EE7a ").concat(totalRows, " b\u1EA3ng ghi");
|
6792 | },
|
6793 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
6794 | return 'previous page';
|
6795 | },
|
6796 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
6797 | return "to page ".concat(page);
|
6798 | },
|
6799 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
6800 | return 'next page';
|
6801 | },
|
6802 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
6803 | return "Showing ".concat(totalRows, " rows");
|
6804 | },
|
6805 | formatClearSearch: function formatClearSearch() {
|
6806 | return 'Clear Search';
|
6807 | },
|
6808 | formatSearch: function formatSearch() {
|
6809 | return 'Tìm kiếm';
|
6810 | },
|
6811 | formatNoMatches: function formatNoMatches() {
|
6812 | return 'Không có dữ liệu';
|
6813 | },
|
6814 | formatPaginationSwitch: function formatPaginationSwitch() {
|
6815 | return 'Hide/Show pagination';
|
6816 | },
|
6817 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
6818 | return 'Show pagination';
|
6819 | },
|
6820 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
6821 | return 'Hide pagination';
|
6822 | },
|
6823 | formatRefresh: function formatRefresh() {
|
6824 | return 'Refresh';
|
6825 | },
|
6826 | formatToggleOn: function formatToggleOn() {
|
6827 | return 'Show card view';
|
6828 | },
|
6829 | formatToggleOff: function formatToggleOff() {
|
6830 | return 'Hide card view';
|
6831 | },
|
6832 | formatColumns: function formatColumns() {
|
6833 | return 'Columns';
|
6834 | },
|
6835 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
6836 | return 'Toggle all';
|
6837 | },
|
6838 | formatFullscreen: function formatFullscreen() {
|
6839 | return 'Fullscreen';
|
6840 | },
|
6841 | formatAllRows: function formatAllRows() {
|
6842 | return 'All';
|
6843 | },
|
6844 | formatAutoRefresh: function formatAutoRefresh() {
|
6845 | return 'Auto Refresh';
|
6846 | },
|
6847 | formatExport: function formatExport() {
|
6848 | return 'Export data';
|
6849 | },
|
6850 | formatJumpTo: function formatJumpTo() {
|
6851 | return 'GO';
|
6852 | },
|
6853 | formatAdvancedSearch: function formatAdvancedSearch() {
|
6854 | return 'Advanced search';
|
6855 | },
|
6856 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
6857 | return 'Close';
|
6858 | },
|
6859 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
6860 | return 'Hide/Show controls';
|
6861 | },
|
6862 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
6863 | return 'Hide controls';
|
6864 | },
|
6865 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
6866 | return 'Show controls';
|
6867 | }
|
6868 | };
|
6869 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['vi-VN']);
|
6870 |
|
6871 | |
6872 |
|
6873 |
|
6874 |
|
6875 |
|
6876 | $$2.fn.bootstrapTable.locales['zh-CN'] = $$2.fn.bootstrapTable.locales['zh'] = {
|
6877 | formatCopyRows: function formatCopyRows() {
|
6878 | return 'Copy Rows';
|
6879 | },
|
6880 | formatPrint: function formatPrint() {
|
6881 | return 'Print';
|
6882 | },
|
6883 | formatLoadingMessage: function formatLoadingMessage() {
|
6884 | return '正在努力地加载数据中,请稍候';
|
6885 | },
|
6886 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
6887 | return "\u6BCF\u9875\u663E\u793A ".concat(pageNumber, " \u6761\u8BB0\u5F55");
|
6888 | },
|
6889 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
6890 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
6891 | 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");
|
6892 | }
|
6893 | return "\u663E\u793A\u7B2C ".concat(pageFrom, " \u5230\u7B2C ").concat(pageTo, " \u6761\u8BB0\u5F55\uFF0C\u603B\u5171 ").concat(totalRows, " \u6761\u8BB0\u5F55");
|
6894 | },
|
6895 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
6896 | return '上一页';
|
6897 | },
|
6898 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
6899 | return "\u7B2C".concat(page, "\u9875");
|
6900 | },
|
6901 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
6902 | return '下一页';
|
6903 | },
|
6904 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
6905 | return "\u603B\u5171 ".concat(totalRows, " \u6761\u8BB0\u5F55");
|
6906 | },
|
6907 | formatClearSearch: function formatClearSearch() {
|
6908 | return '清空过滤';
|
6909 | },
|
6910 | formatSearch: function formatSearch() {
|
6911 | return '搜索';
|
6912 | },
|
6913 | formatNoMatches: function formatNoMatches() {
|
6914 | return '没有找到匹配的记录';
|
6915 | },
|
6916 | formatPaginationSwitch: function formatPaginationSwitch() {
|
6917 | return '隐藏/显示分页';
|
6918 | },
|
6919 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
6920 | return '显示分页';
|
6921 | },
|
6922 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
6923 | return '隐藏分页';
|
6924 | },
|
6925 | formatRefresh: function formatRefresh() {
|
6926 | return '刷新';
|
6927 | },
|
6928 | formatToggleOn: function formatToggleOn() {
|
6929 | return '显示卡片视图';
|
6930 | },
|
6931 | formatToggleOff: function formatToggleOff() {
|
6932 | return '隐藏卡片视图';
|
6933 | },
|
6934 | formatColumns: function formatColumns() {
|
6935 | return '列';
|
6936 | },
|
6937 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
6938 | return '切换所有';
|
6939 | },
|
6940 | formatFullscreen: function formatFullscreen() {
|
6941 | return '全屏';
|
6942 | },
|
6943 | formatAllRows: function formatAllRows() {
|
6944 | return '所有';
|
6945 | },
|
6946 | formatAutoRefresh: function formatAutoRefresh() {
|
6947 | return '自动刷新';
|
6948 | },
|
6949 | formatExport: function formatExport() {
|
6950 | return '导出数据';
|
6951 | },
|
6952 | formatJumpTo: function formatJumpTo() {
|
6953 | return '跳转';
|
6954 | },
|
6955 | formatAdvancedSearch: function formatAdvancedSearch() {
|
6956 | return '高级搜索';
|
6957 | },
|
6958 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
6959 | return '关闭';
|
6960 | },
|
6961 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
6962 | return '隐藏/显示过滤控制';
|
6963 | },
|
6964 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
6965 | return '隐藏过滤控制';
|
6966 | },
|
6967 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
6968 | return '显示过滤控制';
|
6969 | }
|
6970 | };
|
6971 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['zh-CN']);
|
6972 |
|
6973 | |
6974 |
|
6975 |
|
6976 |
|
6977 |
|
6978 | $$2.fn.bootstrapTable.locales['zh-TW'] = {
|
6979 | formatCopyRows: function formatCopyRows() {
|
6980 | return 'Copy Rows';
|
6981 | },
|
6982 | formatPrint: function formatPrint() {
|
6983 | return 'Print';
|
6984 | },
|
6985 | formatLoadingMessage: function formatLoadingMessage() {
|
6986 | return '正在努力地載入資料,請稍候';
|
6987 | },
|
6988 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
6989 | return "\u6BCF\u9801\u986F\u793A ".concat(pageNumber, " \u9805\u8A18\u9304");
|
6990 | },
|
6991 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
6992 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
6993 | 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");
|
6994 | }
|
6995 | return "\u986F\u793A\u7B2C ".concat(pageFrom, " \u5230\u7B2C ").concat(pageTo, " \u9805\u8A18\u9304\uFF0C\u7E3D\u5171 ").concat(totalRows, " \u9805\u8A18\u9304");
|
6996 | },
|
6997 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
6998 | return '上一頁';
|
6999 | },
|
7000 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
7001 | return "\u7B2C".concat(page, "\u9801");
|
7002 | },
|
7003 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
7004 | return '下一頁';
|
7005 | },
|
7006 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
7007 | return "\u7E3D\u5171 ".concat(totalRows, " \u9805\u8A18\u9304");
|
7008 | },
|
7009 | formatClearSearch: function formatClearSearch() {
|
7010 | return '清空過濾';
|
7011 | },
|
7012 | formatSearch: function formatSearch() {
|
7013 | return '搜尋';
|
7014 | },
|
7015 | formatNoMatches: function formatNoMatches() {
|
7016 | return '沒有找到符合的結果';
|
7017 | },
|
7018 | formatPaginationSwitch: function formatPaginationSwitch() {
|
7019 | return '隱藏/顯示分頁';
|
7020 | },
|
7021 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
7022 | return '顯示分頁';
|
7023 | },
|
7024 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
7025 | return '隱藏分頁';
|
7026 | },
|
7027 | formatRefresh: function formatRefresh() {
|
7028 | return '重新整理';
|
7029 | },
|
7030 | formatToggleOn: function formatToggleOn() {
|
7031 | return '顯示卡片視圖';
|
7032 | },
|
7033 | formatToggleOff: function formatToggleOff() {
|
7034 | return '隱藏卡片視圖';
|
7035 | },
|
7036 | formatColumns: function formatColumns() {
|
7037 | return '列';
|
7038 | },
|
7039 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
7040 | return '切換所有';
|
7041 | },
|
7042 | formatFullscreen: function formatFullscreen() {
|
7043 | return '全屏';
|
7044 | },
|
7045 | formatAllRows: function formatAllRows() {
|
7046 | return '所有';
|
7047 | },
|
7048 | formatAutoRefresh: function formatAutoRefresh() {
|
7049 | return '自動刷新';
|
7050 | },
|
7051 | formatExport: function formatExport() {
|
7052 | return '導出數據';
|
7053 | },
|
7054 | formatJumpTo: function formatJumpTo() {
|
7055 | return '跳轉';
|
7056 | },
|
7057 | formatAdvancedSearch: function formatAdvancedSearch() {
|
7058 | return '高級搜尋';
|
7059 | },
|
7060 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
7061 | return '關閉';
|
7062 | },
|
7063 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
7064 | return '隱藏/顯示過濾控制';
|
7065 | },
|
7066 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
7067 | return '隱藏過濾控制';
|
7068 | },
|
7069 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
7070 | return '顯示過濾控制';
|
7071 | }
|
7072 | };
|
7073 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['zh-TW']);
|
7074 |
|
7075 | }));
|