@procore/data-table 14.44.0 → 14.46.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +23 -0
- package/dist/legacy/index.cjs +388 -96
- package/dist/legacy/index.d.cts +2 -0
- package/dist/legacy/index.d.ts +2 -0
- package/dist/legacy/index.js +388 -96
- package/dist/modern/index.cjs +386 -96
- package/dist/modern/index.d.cts +2 -0
- package/dist/modern/index.d.ts +2 -0
- package/dist/modern/index.js +386 -96
- package/package.json +2 -2
package/dist/legacy/index.js
CHANGED
|
@@ -8040,10 +8040,10 @@ var Renderer = ({
|
|
|
8040
8040
|
if (rowPinned) {
|
|
8041
8041
|
return null;
|
|
8042
8042
|
}
|
|
8043
|
-
return /* @__PURE__ */ React80.createElement(FlexList, { justifyContent: "center", alignItems: "center", size: "xs" }, buttons.map((
|
|
8044
|
-
|
|
8043
|
+
return /* @__PURE__ */ React80.createElement(FlexList, { justifyContent: "center", alignItems: "center", size: "xs" }, buttons.map((Button7) => /* @__PURE__ */ React80.createElement(
|
|
8044
|
+
Button7,
|
|
8045
8045
|
{
|
|
8046
|
-
key:
|
|
8046
|
+
key: Button7.displayName,
|
|
8047
8047
|
columnDefinition,
|
|
8048
8048
|
rowPinned,
|
|
8049
8049
|
...props,
|
|
@@ -8385,7 +8385,6 @@ var OptionalDateTimeProvider = ({ timeZone, children }) => {
|
|
|
8385
8385
|
var DateFilterOverlay = React80.forwardRef(
|
|
8386
8386
|
// eslint-disable-next-line complexity
|
|
8387
8387
|
({
|
|
8388
|
-
dateInputSegmentRef,
|
|
8389
8388
|
displayDate,
|
|
8390
8389
|
monthRef,
|
|
8391
8390
|
onSelect,
|
|
@@ -8410,46 +8409,65 @@ var DateFilterOverlay = React80.forwardRef(
|
|
|
8410
8409
|
}
|
|
8411
8410
|
}
|
|
8412
8411
|
const { hide } = UNSAFE_useOverlayTriggerContext();
|
|
8412
|
+
const onBlur = (e) => {
|
|
8413
|
+
const currentTarget = e.currentTarget;
|
|
8414
|
+
requestAnimationFrame(() => {
|
|
8415
|
+
var _a, _b;
|
|
8416
|
+
const activeElement = document.activeElement;
|
|
8417
|
+
if (currentTarget.contains(activeElement) || ((_a = monthRef.current) == null ? void 0 : _a.contains(activeElement)) || ((_b = yearRef.current) == null ? void 0 : _b.contains(activeElement))) {
|
|
8418
|
+
return;
|
|
8419
|
+
}
|
|
8420
|
+
hide(e);
|
|
8421
|
+
});
|
|
8422
|
+
};
|
|
8413
8423
|
function calendarOnSelect(day2) {
|
|
8414
|
-
(dateInputSegmentRef == null ? void 0 : dateInputSegmentRef.current) && dateInputSegmentRef.current.focus();
|
|
8415
8424
|
setDisplayDate(day2);
|
|
8416
8425
|
onSelect(day2);
|
|
8417
8426
|
hide({});
|
|
8418
8427
|
}
|
|
8419
|
-
return /* @__PURE__ */ React80.createElement(
|
|
8420
|
-
|
|
8428
|
+
return /* @__PURE__ */ React80.createElement(
|
|
8429
|
+
Card,
|
|
8421
8430
|
{
|
|
8422
|
-
|
|
8423
|
-
|
|
8431
|
+
"data-qa": "data-table-date-filter-calendar",
|
|
8432
|
+
ref,
|
|
8433
|
+
onBlur,
|
|
8434
|
+
...props
|
|
8424
8435
|
},
|
|
8425
|
-
/* @__PURE__ */ React80.createElement(
|
|
8426
|
-
SegmentedController
|
|
8436
|
+
/* @__PURE__ */ React80.createElement(Flex, { direction: "column" }, selectionType === "either" && /* @__PURE__ */ React80.createElement(Box, { padding: "md", style: { width: "100%" } }, /* @__PURE__ */ React80.createElement(
|
|
8437
|
+
SegmentedController,
|
|
8427
8438
|
{
|
|
8428
|
-
|
|
8429
|
-
|
|
8439
|
+
block: true,
|
|
8440
|
+
"data-qa": "data-table-date-filter-selection-control"
|
|
8430
8441
|
},
|
|
8431
|
-
|
|
8432
|
-
|
|
8433
|
-
|
|
8434
|
-
|
|
8442
|
+
/* @__PURE__ */ React80.createElement(
|
|
8443
|
+
SegmentedController.Segment,
|
|
8444
|
+
{
|
|
8445
|
+
active: selectedValue.type === "single",
|
|
8446
|
+
onClick: () => setSelectionType("single")
|
|
8447
|
+
},
|
|
8448
|
+
I18n.t("dataTable.filterRenders.dateFilter.single")
|
|
8449
|
+
),
|
|
8450
|
+
/* @__PURE__ */ React80.createElement(
|
|
8451
|
+
SegmentedController.Segment,
|
|
8452
|
+
{
|
|
8453
|
+
active: selectedValue.type === "range",
|
|
8454
|
+
onClick: () => setSelectionType("range")
|
|
8455
|
+
},
|
|
8456
|
+
I18n.t("dataTable.filterRenders.dateFilter.range")
|
|
8457
|
+
)
|
|
8458
|
+
)), /* @__PURE__ */ React80.createElement(
|
|
8459
|
+
Calendar,
|
|
8435
8460
|
{
|
|
8436
|
-
|
|
8437
|
-
|
|
8438
|
-
|
|
8439
|
-
|
|
8440
|
-
|
|
8441
|
-
|
|
8442
|
-
|
|
8443
|
-
|
|
8444
|
-
|
|
8445
|
-
|
|
8446
|
-
onNavigate: setDisplayDate,
|
|
8447
|
-
onSelect: calendarOnSelect,
|
|
8448
|
-
selectedEnd: calendarEnd ?? void 0,
|
|
8449
|
-
selectedStart: calendarStart ?? void 0,
|
|
8450
|
-
yearRef
|
|
8451
|
-
}
|
|
8452
|
-
)));
|
|
8461
|
+
displayDate,
|
|
8462
|
+
monthRef,
|
|
8463
|
+
onNavigate: setDisplayDate,
|
|
8464
|
+
onSelect: calendarOnSelect,
|
|
8465
|
+
selectedEnd: calendarEnd ?? void 0,
|
|
8466
|
+
selectedStart: calendarStart ?? void 0,
|
|
8467
|
+
yearRef
|
|
8468
|
+
}
|
|
8469
|
+
))
|
|
8470
|
+
);
|
|
8453
8471
|
}
|
|
8454
8472
|
);
|
|
8455
8473
|
var DateFilterSelect = React80.forwardRef(
|
|
@@ -8477,16 +8495,13 @@ var DateFilterSelect = React80.forwardRef(
|
|
|
8477
8495
|
setDisplayed2(end);
|
|
8478
8496
|
}
|
|
8479
8497
|
}, [position, selectedValue]);
|
|
8480
|
-
const segmentRefs = {
|
|
8481
|
-
segmentThree: React80.useRef(null)
|
|
8482
|
-
};
|
|
8483
8498
|
const clearRef = React80.useRef(null);
|
|
8484
8499
|
const monthRef = React80.useRef(null);
|
|
8485
8500
|
const yearRef = React80.useRef(null);
|
|
8501
|
+
const hideKeys = ["Escape", "Esc"];
|
|
8486
8502
|
const overlay = /* @__PURE__ */ React80.createElement(
|
|
8487
8503
|
DateFilterOverlay,
|
|
8488
8504
|
{
|
|
8489
|
-
dateInputSegmentRef: segmentRefs.segmentThree,
|
|
8490
8505
|
displayDate: displayed,
|
|
8491
8506
|
monthRef,
|
|
8492
8507
|
onSelect: (date) => {
|
|
@@ -8513,13 +8528,18 @@ var DateFilterSelect = React80.forwardRef(
|
|
|
8513
8528
|
clickOutsideIgnoreRefs: [monthRef, yearRef],
|
|
8514
8529
|
overlay,
|
|
8515
8530
|
placement: getPlacement(selectedValue.type, position),
|
|
8516
|
-
ref
|
|
8531
|
+
ref,
|
|
8532
|
+
autoFocus: true,
|
|
8533
|
+
showKeys: [],
|
|
8534
|
+
hideKeys: {
|
|
8535
|
+
overlay: hideKeys,
|
|
8536
|
+
target: hideKeys
|
|
8537
|
+
}
|
|
8517
8538
|
},
|
|
8518
8539
|
/* @__PURE__ */ React80.createElement(
|
|
8519
8540
|
DateInput,
|
|
8520
8541
|
{
|
|
8521
8542
|
"data-qa": `data-table-date-filter-input-${position}`,
|
|
8522
|
-
segmentRefs,
|
|
8523
8543
|
onChangeSegment: (type, value) => {
|
|
8524
8544
|
if (value === -1) {
|
|
8525
8545
|
return;
|
|
@@ -52355,6 +52375,7 @@ var InternalLinkCellRenderer = ({
|
|
|
52355
52375
|
getURL
|
|
52356
52376
|
}) => {
|
|
52357
52377
|
var _a;
|
|
52378
|
+
const I18n = useI18nContext();
|
|
52358
52379
|
const [isLinkWidthBelowMin, setIsLinkWidthBelowMin] = useState(false);
|
|
52359
52380
|
const linkRef = useRef(null);
|
|
52360
52381
|
const internalValue = value ? (_a = columnDefinition.getStringFormattedValue) == null ? void 0 : _a.call(columnDefinition, value) : "";
|
|
@@ -52382,23 +52403,27 @@ var InternalLinkCellRenderer = ({
|
|
|
52382
52403
|
"extendClickableArea--rowHeightSm": rowHeight === rowSize.sm
|
|
52383
52404
|
}) : "";
|
|
52384
52405
|
if (isExternalLink && value && URL) {
|
|
52385
|
-
return /* @__PURE__ */ React80.createElement(
|
|
52386
|
-
|
|
52406
|
+
return /* @__PURE__ */ React80.createElement(Typography, { ...typographyProps, className }, /* @__PURE__ */ React80.createElement(
|
|
52407
|
+
Link,
|
|
52387
52408
|
{
|
|
52388
|
-
|
|
52389
|
-
|
|
52390
|
-
|
|
52409
|
+
href: URL,
|
|
52410
|
+
target: "_blank",
|
|
52411
|
+
rel: "noopener noreferrer",
|
|
52412
|
+
className: extendClickableAreaClassNames,
|
|
52413
|
+
style: { display: "flex", alignItems: "center", gap: "5px" },
|
|
52414
|
+
ref: linkRef
|
|
52391
52415
|
},
|
|
52392
52416
|
internalValue,
|
|
52393
52417
|
/* @__PURE__ */ React80.createElement(
|
|
52394
52418
|
ExternalLink,
|
|
52395
52419
|
{
|
|
52396
|
-
|
|
52397
|
-
|
|
52398
|
-
|
|
52420
|
+
role: "img",
|
|
52421
|
+
"aria-hidden": false,
|
|
52422
|
+
"aria-label": I18n.t("dataTable.cells.linkCell.externalLabel"),
|
|
52423
|
+
size: "sm"
|
|
52399
52424
|
}
|
|
52400
52425
|
)
|
|
52401
|
-
);
|
|
52426
|
+
));
|
|
52402
52427
|
}
|
|
52403
52428
|
return URL ? /* @__PURE__ */ React80.createElement(Typography, { ...typographyProps, className }, /* @__PURE__ */ React80.createElement(Link, { href: URL, className: extendClickableAreaClassNames, ref: linkRef }, internalValue)) : /* @__PURE__ */ React80.createElement(Typography, { ...typographyProps }, internalValue);
|
|
52404
52429
|
};
|
|
@@ -54445,7 +54470,10 @@ function ServerSideNumberFilterRenderer({
|
|
|
54445
54470
|
value: localFilter.value ?? "",
|
|
54446
54471
|
onChange: handleLowerLimitChange
|
|
54447
54472
|
}
|
|
54448
|
-
), /* @__PURE__ */ React80.createElement(Typography, { style: { padding: "0 8px" } }, I18n.t("labels.and", {
|
|
54473
|
+
), /* @__PURE__ */ React80.createElement(Typography, { style: { padding: "0 8px" } }, I18n.t("labels.and", {
|
|
54474
|
+
defaultValue: "and",
|
|
54475
|
+
scope: "dataTable.filters.numberFilter"
|
|
54476
|
+
})), /* @__PURE__ */ React80.createElement(
|
|
54449
54477
|
Input,
|
|
54450
54478
|
{
|
|
54451
54479
|
type: "number",
|
|
@@ -57931,7 +57959,9 @@ var InternalTableContext = React80.createContext({
|
|
|
57931
57959
|
totalRowCount: 0,
|
|
57932
57960
|
setTotalRowCount: () => {
|
|
57933
57961
|
},
|
|
57934
|
-
hasDuplicateRowIds: false
|
|
57962
|
+
hasDuplicateRowIds: false,
|
|
57963
|
+
filtersPanelId: void 0,
|
|
57964
|
+
filtersBodyId: void 0
|
|
57935
57965
|
});
|
|
57936
57966
|
var useInternalTableContext = () => React80.useContext(InternalTableContext);
|
|
57937
57967
|
var prng = detectPrng(true);
|
|
@@ -103344,10 +103374,103 @@ function $8ae05eaa5c114e9c$export$7f54fc3180508a52(fn) {
|
|
|
103344
103374
|
return f === null || f === void 0 ? void 0 : f(...args);
|
|
103345
103375
|
}, []);
|
|
103346
103376
|
}
|
|
103377
|
+
var $b5e257d569688ac6$var$defaultContext = {
|
|
103378
|
+
prefix: String(Math.round(Math.random() * 1e10)),
|
|
103379
|
+
current: 0
|
|
103380
|
+
};
|
|
103381
|
+
var $b5e257d569688ac6$var$SSRContext = /* @__PURE__ */ (React80).createContext($b5e257d569688ac6$var$defaultContext);
|
|
103382
|
+
var $b5e257d569688ac6$var$IsSSRContext = /* @__PURE__ */ (React80).createContext(false);
|
|
103383
|
+
var $b5e257d569688ac6$var$canUseDOM = Boolean(typeof window !== "undefined" && window.document && window.document.createElement);
|
|
103384
|
+
var $b5e257d569688ac6$var$componentIds = /* @__PURE__ */ new WeakMap();
|
|
103385
|
+
function $b5e257d569688ac6$var$useCounter(isDisabled = false) {
|
|
103386
|
+
let ctx = (useContext)($b5e257d569688ac6$var$SSRContext);
|
|
103387
|
+
let ref = (useRef)(null);
|
|
103388
|
+
if (ref.current === null && !isDisabled) {
|
|
103389
|
+
var _React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED_ReactCurrentOwner, _React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
|
103390
|
+
let currentOwner = (_React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = (React80).__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED) === null || _React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED === void 0 ? void 0 : (_React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED_ReactCurrentOwner = _React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner) === null || _React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED_ReactCurrentOwner === void 0 ? void 0 : _React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED_ReactCurrentOwner.current;
|
|
103391
|
+
if (currentOwner) {
|
|
103392
|
+
let prevComponentValue = $b5e257d569688ac6$var$componentIds.get(currentOwner);
|
|
103393
|
+
if (prevComponentValue == null)
|
|
103394
|
+
$b5e257d569688ac6$var$componentIds.set(currentOwner, {
|
|
103395
|
+
id: ctx.current,
|
|
103396
|
+
state: currentOwner.memoizedState
|
|
103397
|
+
});
|
|
103398
|
+
else if (currentOwner.memoizedState !== prevComponentValue.state) {
|
|
103399
|
+
ctx.current = prevComponentValue.id;
|
|
103400
|
+
$b5e257d569688ac6$var$componentIds.delete(currentOwner);
|
|
103401
|
+
}
|
|
103402
|
+
}
|
|
103403
|
+
ref.current = ++ctx.current;
|
|
103404
|
+
}
|
|
103405
|
+
return ref.current;
|
|
103406
|
+
}
|
|
103407
|
+
function $b5e257d569688ac6$var$useLegacySSRSafeId(defaultId) {
|
|
103408
|
+
let ctx = (useContext)($b5e257d569688ac6$var$SSRContext);
|
|
103409
|
+
if (ctx === $b5e257d569688ac6$var$defaultContext && !$b5e257d569688ac6$var$canUseDOM && process.env.NODE_ENV !== "production") console.warn("When server rendering, you must wrap your application in an <SSRProvider> to ensure consistent ids are generated between the client and server.");
|
|
103410
|
+
let counter2 = $b5e257d569688ac6$var$useCounter(!!defaultId);
|
|
103411
|
+
let prefix = ctx === $b5e257d569688ac6$var$defaultContext && process.env.NODE_ENV === "test" ? "react-aria" : `react-aria${ctx.prefix}`;
|
|
103412
|
+
return defaultId || `${prefix}-${counter2}`;
|
|
103413
|
+
}
|
|
103414
|
+
function $b5e257d569688ac6$var$useModernSSRSafeId(defaultId) {
|
|
103415
|
+
let id = (React80).useId();
|
|
103416
|
+
let [didSSR] = (useState)($b5e257d569688ac6$export$535bd6ca7f90a273());
|
|
103417
|
+
let prefix = didSSR || process.env.NODE_ENV === "test" ? "react-aria" : `react-aria${$b5e257d569688ac6$var$defaultContext.prefix}`;
|
|
103418
|
+
return defaultId || `${prefix}-${id}`;
|
|
103419
|
+
}
|
|
103420
|
+
var $b5e257d569688ac6$export$619500959fc48b26 = typeof (React80)["useId"] === "function" ? $b5e257d569688ac6$var$useModernSSRSafeId : $b5e257d569688ac6$var$useLegacySSRSafeId;
|
|
103421
|
+
function $b5e257d569688ac6$var$getSnapshot() {
|
|
103422
|
+
return false;
|
|
103423
|
+
}
|
|
103424
|
+
function $b5e257d569688ac6$var$getServerSnapshot() {
|
|
103425
|
+
return true;
|
|
103426
|
+
}
|
|
103427
|
+
function $b5e257d569688ac6$var$subscribe(onStoreChange) {
|
|
103428
|
+
return () => {
|
|
103429
|
+
};
|
|
103430
|
+
}
|
|
103431
|
+
function $b5e257d569688ac6$export$535bd6ca7f90a273() {
|
|
103432
|
+
if (typeof (React80)["useSyncExternalStore"] === "function") return (React80)["useSyncExternalStore"]($b5e257d569688ac6$var$subscribe, $b5e257d569688ac6$var$getSnapshot, $b5e257d569688ac6$var$getServerSnapshot);
|
|
103433
|
+
return (useContext)($b5e257d569688ac6$var$IsSSRContext);
|
|
103434
|
+
}
|
|
103435
|
+
|
|
103436
|
+
// ../../node_modules/@react-aria/utils/dist/useId.mjs
|
|
103437
|
+
var $bdb11010cef70236$var$canUseDOM = Boolean(typeof window !== "undefined" && window.document && window.document.createElement);
|
|
103347
103438
|
var $bdb11010cef70236$export$d41a04c74483c6ef = /* @__PURE__ */ new Map();
|
|
103348
|
-
|
|
103439
|
+
var $bdb11010cef70236$var$registry;
|
|
103440
|
+
if (typeof FinalizationRegistry !== "undefined") $bdb11010cef70236$var$registry = new FinalizationRegistry((heldValue) => {
|
|
103349
103441
|
$bdb11010cef70236$export$d41a04c74483c6ef.delete(heldValue);
|
|
103350
103442
|
});
|
|
103443
|
+
function $bdb11010cef70236$export$f680877a34711e37(defaultId) {
|
|
103444
|
+
let [value, setValue] = (useState)(defaultId);
|
|
103445
|
+
let nextId = (useRef)(null);
|
|
103446
|
+
let res = ($b5e257d569688ac6$export$619500959fc48b26)(value);
|
|
103447
|
+
let cleanupRef = (useRef)(null);
|
|
103448
|
+
if ($bdb11010cef70236$var$registry) $bdb11010cef70236$var$registry.register(cleanupRef, res);
|
|
103449
|
+
if ($bdb11010cef70236$var$canUseDOM) {
|
|
103450
|
+
const cacheIdRef = $bdb11010cef70236$export$d41a04c74483c6ef.get(res);
|
|
103451
|
+
if (cacheIdRef && !cacheIdRef.includes(nextId)) cacheIdRef.push(nextId);
|
|
103452
|
+
else $bdb11010cef70236$export$d41a04c74483c6ef.set(res, [
|
|
103453
|
+
nextId
|
|
103454
|
+
]);
|
|
103455
|
+
}
|
|
103456
|
+
($f0a04ccd8dbdd83b$export$e5c5a5f917a5871c)(() => {
|
|
103457
|
+
let r2 = res;
|
|
103458
|
+
return () => {
|
|
103459
|
+
if ($bdb11010cef70236$var$registry) $bdb11010cef70236$var$registry.unregister(cleanupRef);
|
|
103460
|
+
$bdb11010cef70236$export$d41a04c74483c6ef.delete(r2);
|
|
103461
|
+
};
|
|
103462
|
+
}, [
|
|
103463
|
+
res
|
|
103464
|
+
]);
|
|
103465
|
+
(useEffect)(() => {
|
|
103466
|
+
let newId = nextId.current;
|
|
103467
|
+
if (newId) setValue(newId);
|
|
103468
|
+
return () => {
|
|
103469
|
+
if (newId) nextId.current = null;
|
|
103470
|
+
};
|
|
103471
|
+
});
|
|
103472
|
+
return res;
|
|
103473
|
+
}
|
|
103351
103474
|
function $bdb11010cef70236$export$cd8c9cb68f842629(idA, idB) {
|
|
103352
103475
|
if (idA === idB) return idA;
|
|
103353
103476
|
let setIdsA = $bdb11010cef70236$export$d41a04c74483c6ef.get(idA);
|
|
@@ -105113,9 +105236,11 @@ var de_DE_default = {
|
|
|
105113
105236
|
exporting: "Wird exportiert\xA0\u2026",
|
|
105114
105237
|
filters: {
|
|
105115
105238
|
filters: "Filter",
|
|
105239
|
+
allFilters: "Alle Filter",
|
|
105116
105240
|
moreFilters: "Weitere Filter",
|
|
105117
105241
|
clearAllFilters: "Alle Filter zur\xFCcksetzen",
|
|
105118
105242
|
close: "Schlie\xDFen",
|
|
105243
|
+
removeFilterToken: "%{name} entfernen",
|
|
105119
105244
|
locationFilter: {
|
|
105120
105245
|
selectAll: "Alle ausw\xE4hlen",
|
|
105121
105246
|
includeSublocations: "Teilstandorte einschlie\xDFen",
|
|
@@ -105131,6 +105256,7 @@ var de_DE_default = {
|
|
|
105131
105256
|
options: {
|
|
105132
105257
|
any_value: "Beliebiger Wert",
|
|
105133
105258
|
is_between: "Ist zwischen",
|
|
105259
|
+
is_equal_to: "Ist gleich",
|
|
105134
105260
|
greater_than: "Ist gr\xF6\xDFer als",
|
|
105135
105261
|
greater_than_equal_to: "Ist gr\xF6\xDFer als oder gleich",
|
|
105136
105262
|
less_than: "Ist kleiner als",
|
|
@@ -105153,6 +105279,7 @@ var de_DE_default = {
|
|
|
105153
105279
|
secondary: "Informationen werden geladen, vielen Dank f\xFCr Ihre Geduld."
|
|
105154
105280
|
},
|
|
105155
105281
|
menuOptions: {
|
|
105282
|
+
ariaMenuColumn: "Dr\xFCcken Sie Alt/Option+Nach unten, um das Spaltenmen\xFC zu \xF6ffnen.",
|
|
105156
105283
|
sortMenuItem: {
|
|
105157
105284
|
label: "Nach dieser Spalte sortieren",
|
|
105158
105285
|
sortAscItem: "Spalte aufsteigend sortieren",
|
|
@@ -105207,6 +105334,9 @@ var de_DE_default = {
|
|
|
105207
105334
|
currencyCell: {
|
|
105208
105335
|
placeholder: "W\xE4hrung eingeben"
|
|
105209
105336
|
},
|
|
105337
|
+
linkCell: {
|
|
105338
|
+
externalLabel: "Externen Link \xF6ffnen"
|
|
105339
|
+
},
|
|
105210
105340
|
numberCell: {
|
|
105211
105341
|
placeholder: "Nummer eingeben"
|
|
105212
105342
|
},
|
|
@@ -105287,9 +105417,11 @@ var en_AU_default = {
|
|
|
105287
105417
|
exporting: "Exporting...",
|
|
105288
105418
|
filters: {
|
|
105289
105419
|
filters: "Filters",
|
|
105420
|
+
allFilters: "All filters",
|
|
105290
105421
|
moreFilters: "More filters",
|
|
105291
105422
|
clearAllFilters: "Clear all filters",
|
|
105292
105423
|
close: "Close",
|
|
105424
|
+
removeFilterToken: "Remove %{name}",
|
|
105293
105425
|
locationFilter: {
|
|
105294
105426
|
selectAll: "Select all",
|
|
105295
105427
|
includeSublocations: "Include sub-locations",
|
|
@@ -105305,6 +105437,7 @@ var en_AU_default = {
|
|
|
105305
105437
|
options: {
|
|
105306
105438
|
any_value: "Any value",
|
|
105307
105439
|
is_between: "Is between",
|
|
105440
|
+
is_equal_to: "Is equal to",
|
|
105308
105441
|
greater_than: "Is greater than",
|
|
105309
105442
|
greater_than_equal_to: "Is greater than or equal to",
|
|
105310
105443
|
less_than: "Is less than",
|
|
@@ -105327,6 +105460,7 @@ var en_AU_default = {
|
|
|
105327
105460
|
secondary: "Information loading, thanks for your patience."
|
|
105328
105461
|
},
|
|
105329
105462
|
menuOptions: {
|
|
105463
|
+
ariaMenuColumn: "Press Alt/Option+Down to open column menu.",
|
|
105330
105464
|
sortMenuItem: {
|
|
105331
105465
|
label: "Sort by this column",
|
|
105332
105466
|
sortAscItem: "Sort column ascending",
|
|
@@ -105381,6 +105515,9 @@ var en_AU_default = {
|
|
|
105381
105515
|
currencyCell: {
|
|
105382
105516
|
placeholder: "Enter currency"
|
|
105383
105517
|
},
|
|
105518
|
+
linkCell: {
|
|
105519
|
+
externalLabel: "Open external link"
|
|
105520
|
+
},
|
|
105384
105521
|
numberCell: {
|
|
105385
105522
|
placeholder: "Enter number"
|
|
105386
105523
|
},
|
|
@@ -105461,9 +105598,11 @@ var en_CA_default = {
|
|
|
105461
105598
|
exporting: "Exporting...",
|
|
105462
105599
|
filters: {
|
|
105463
105600
|
filters: "Filters",
|
|
105601
|
+
allFilters: "All filters",
|
|
105464
105602
|
moreFilters: "More filters",
|
|
105465
105603
|
clearAllFilters: "Clear all filters",
|
|
105466
105604
|
close: "Close",
|
|
105605
|
+
removeFilterToken: "Remove %{name}",
|
|
105467
105606
|
locationFilter: {
|
|
105468
105607
|
selectAll: "Select all",
|
|
105469
105608
|
includeSublocations: "Include sub-locations",
|
|
@@ -105479,6 +105618,7 @@ var en_CA_default = {
|
|
|
105479
105618
|
options: {
|
|
105480
105619
|
any_value: "Any value",
|
|
105481
105620
|
is_between: "Is between",
|
|
105621
|
+
is_equal_to: "Is equal to",
|
|
105482
105622
|
greater_than: "Is greater than",
|
|
105483
105623
|
greater_than_equal_to: "Is greater than or equal to",
|
|
105484
105624
|
less_than: "Is less than",
|
|
@@ -105501,6 +105641,7 @@ var en_CA_default = {
|
|
|
105501
105641
|
secondary: "Information loading, thanks for your patience."
|
|
105502
105642
|
},
|
|
105503
105643
|
menuOptions: {
|
|
105644
|
+
ariaMenuColumn: "Press Alt/Option+Down to open column menu.",
|
|
105504
105645
|
sortMenuItem: {
|
|
105505
105646
|
label: "Sort by this column",
|
|
105506
105647
|
sortAscItem: "Sort column ascending",
|
|
@@ -105555,6 +105696,9 @@ var en_CA_default = {
|
|
|
105555
105696
|
currencyCell: {
|
|
105556
105697
|
placeholder: "Enter currency"
|
|
105557
105698
|
},
|
|
105699
|
+
linkCell: {
|
|
105700
|
+
externalLabel: "Open external link"
|
|
105701
|
+
},
|
|
105558
105702
|
numberCell: {
|
|
105559
105703
|
placeholder: "Enter number"
|
|
105560
105704
|
},
|
|
@@ -105635,9 +105779,11 @@ var en_GB_default = {
|
|
|
105635
105779
|
exporting: "Exporting...",
|
|
105636
105780
|
filters: {
|
|
105637
105781
|
filters: "Filters",
|
|
105782
|
+
allFilters: "All filters",
|
|
105638
105783
|
moreFilters: "More filters",
|
|
105639
105784
|
clearAllFilters: "Clear all filters",
|
|
105640
105785
|
close: "Close",
|
|
105786
|
+
removeFilterToken: "Remove %{name}",
|
|
105641
105787
|
locationFilter: {
|
|
105642
105788
|
selectAll: "Select all",
|
|
105643
105789
|
includeSublocations: "Include sub-locations",
|
|
@@ -105653,6 +105799,7 @@ var en_GB_default = {
|
|
|
105653
105799
|
options: {
|
|
105654
105800
|
any_value: "Any value",
|
|
105655
105801
|
is_between: "Is between",
|
|
105802
|
+
is_equal_to: "Is equal to",
|
|
105656
105803
|
greater_than: "Is greater than",
|
|
105657
105804
|
greater_than_equal_to: "Is greater than or equal to",
|
|
105658
105805
|
less_than: "Is less than",
|
|
@@ -105675,6 +105822,7 @@ var en_GB_default = {
|
|
|
105675
105822
|
secondary: "Information loading, thanks for your patience."
|
|
105676
105823
|
},
|
|
105677
105824
|
menuOptions: {
|
|
105825
|
+
ariaMenuColumn: "Press Alt/Option+Down to open column menu.",
|
|
105678
105826
|
sortMenuItem: {
|
|
105679
105827
|
label: "Sort by this column",
|
|
105680
105828
|
sortAscItem: "Sort column ascending",
|
|
@@ -105729,6 +105877,9 @@ var en_GB_default = {
|
|
|
105729
105877
|
currencyCell: {
|
|
105730
105878
|
placeholder: "Enter currency"
|
|
105731
105879
|
},
|
|
105880
|
+
linkCell: {
|
|
105881
|
+
externalLabel: "Open external link"
|
|
105882
|
+
},
|
|
105732
105883
|
numberCell: {
|
|
105733
105884
|
placeholder: "Enter number"
|
|
105734
105885
|
},
|
|
@@ -105809,6 +105960,7 @@ var en_default = {
|
|
|
105809
105960
|
exporting: "Exporting...",
|
|
105810
105961
|
filters: {
|
|
105811
105962
|
filters: "Filters",
|
|
105963
|
+
allFilters: "All Filters",
|
|
105812
105964
|
moreFilters: "More Filters",
|
|
105813
105965
|
clearAllFilters: "Clear All Filters",
|
|
105814
105966
|
close: "Close",
|
|
@@ -105828,6 +105980,7 @@ var en_default = {
|
|
|
105828
105980
|
options: {
|
|
105829
105981
|
any_value: "Any Value",
|
|
105830
105982
|
is_between: "Is Between",
|
|
105983
|
+
is_equal_to: "Is Equal To",
|
|
105831
105984
|
greater_than: "Is Greater Than",
|
|
105832
105985
|
greater_than_equal_to: "Is Greater Than or Equal To",
|
|
105833
105986
|
less_than: "Is Less Than",
|
|
@@ -105905,6 +106058,9 @@ var en_default = {
|
|
|
105905
106058
|
currencyCell: {
|
|
105906
106059
|
placeholder: "Enter currency"
|
|
105907
106060
|
},
|
|
106061
|
+
linkCell: {
|
|
106062
|
+
externalLabel: "Open external link"
|
|
106063
|
+
},
|
|
105908
106064
|
numberCell: {
|
|
105909
106065
|
placeholder: "Enter number"
|
|
105910
106066
|
},
|
|
@@ -105985,9 +106141,11 @@ var es_ES_default = {
|
|
|
105985
106141
|
exporting: "Exportando...",
|
|
105986
106142
|
filters: {
|
|
105987
106143
|
filters: "Filtros",
|
|
106144
|
+
allFilters: "Todos los filtros",
|
|
105988
106145
|
moreFilters: "M\xE1s filtros",
|
|
105989
106146
|
clearAllFilters: "Borrar todos los filtros",
|
|
105990
106147
|
close: "Cerrar",
|
|
106148
|
+
removeFilterToken: "Eliminar %{name}",
|
|
105991
106149
|
locationFilter: {
|
|
105992
106150
|
selectAll: "Seleccionar todo",
|
|
105993
106151
|
includeSublocations: "Incluir sububicaciones",
|
|
@@ -106003,6 +106161,7 @@ var es_ES_default = {
|
|
|
106003
106161
|
options: {
|
|
106004
106162
|
any_value: "Cualquier valor",
|
|
106005
106163
|
is_between: "Est\xE1 entre",
|
|
106164
|
+
is_equal_to: "Es igual a",
|
|
106006
106165
|
greater_than: "Es mayor que",
|
|
106007
106166
|
greater_than_equal_to: "Es mayor o igual que",
|
|
106008
106167
|
less_than: "Es menor que",
|
|
@@ -106025,6 +106184,7 @@ var es_ES_default = {
|
|
|
106025
106184
|
secondary: "Cargando informaci\xF3n; gracias por su paciencia."
|
|
106026
106185
|
},
|
|
106027
106186
|
menuOptions: {
|
|
106187
|
+
ariaMenuColumn: "Pulse Alt/Opci\xF3n\xA0+\xA0flecha hacia abajo para abrir el men\xFA de la columna.",
|
|
106028
106188
|
sortMenuItem: {
|
|
106029
106189
|
label: "Ordenar por esta columna",
|
|
106030
106190
|
sortAscItem: "Ordenar columna en ascendente",
|
|
@@ -106079,6 +106239,9 @@ var es_ES_default = {
|
|
|
106079
106239
|
currencyCell: {
|
|
106080
106240
|
placeholder: "Introducir moneda"
|
|
106081
106241
|
},
|
|
106242
|
+
linkCell: {
|
|
106243
|
+
externalLabel: "Abrir enlace externo"
|
|
106244
|
+
},
|
|
106082
106245
|
numberCell: {
|
|
106083
106246
|
placeholder: "Introducir n\xFAmero"
|
|
106084
106247
|
},
|
|
@@ -106159,9 +106322,11 @@ var es_default = {
|
|
|
106159
106322
|
exporting: "Exportando...",
|
|
106160
106323
|
filters: {
|
|
106161
106324
|
filters: "Filtros",
|
|
106325
|
+
allFilters: "Todos los filtros",
|
|
106162
106326
|
moreFilters: "M\xE1s filtros",
|
|
106163
106327
|
clearAllFilters: "Restablecer todos los filtros",
|
|
106164
106328
|
close: "Cerrar",
|
|
106329
|
+
removeFilterToken: "Eliminar %{name}",
|
|
106165
106330
|
locationFilter: {
|
|
106166
106331
|
selectAll: "Seleccionar todo",
|
|
106167
106332
|
includeSublocations: "Incluir sububicaciones",
|
|
@@ -106177,6 +106342,7 @@ var es_default = {
|
|
|
106177
106342
|
options: {
|
|
106178
106343
|
any_value: "Cualquier valor",
|
|
106179
106344
|
is_between: "Est\xE1 entre",
|
|
106345
|
+
is_equal_to: "Es igual a",
|
|
106180
106346
|
greater_than: "Es mayor que",
|
|
106181
106347
|
greater_than_equal_to: "Es mayor o igual que",
|
|
106182
106348
|
less_than: "Es menor que",
|
|
@@ -106199,6 +106365,7 @@ var es_default = {
|
|
|
106199
106365
|
secondary: "Cargando informaci\xF3n. Gracias por su paciencia."
|
|
106200
106366
|
},
|
|
106201
106367
|
menuOptions: {
|
|
106368
|
+
ariaMenuColumn: "Pulse Alt/Opci\xF3n + Flecha hacia abajo para abrir el men\xFA de columnas.",
|
|
106202
106369
|
sortMenuItem: {
|
|
106203
106370
|
label: "Ordenar por esta columna",
|
|
106204
106371
|
sortAscItem: "Ordenar columna - Ascendente",
|
|
@@ -106253,6 +106420,9 @@ var es_default = {
|
|
|
106253
106420
|
currencyCell: {
|
|
106254
106421
|
placeholder: "Ingresar moneda"
|
|
106255
106422
|
},
|
|
106423
|
+
linkCell: {
|
|
106424
|
+
externalLabel: "Abrir enlace externo"
|
|
106425
|
+
},
|
|
106256
106426
|
numberCell: {
|
|
106257
106427
|
placeholder: "Ingresar n\xFAmero"
|
|
106258
106428
|
},
|
|
@@ -106305,7 +106475,7 @@ var fr_CA_default = {
|
|
|
106305
106475
|
title: "Il n'y a aucun item \xE0 afficher pour le moment",
|
|
106306
106476
|
itemsTitle: "Il n'y a pas de %{itemsLabel} \xE0 afficher pour le moment",
|
|
106307
106477
|
tooltip: "Le bouton %{featureName} sera activ\xE9 une fois que vous aurez ajout\xE9 des informations au %{tableName}",
|
|
106308
|
-
searchTooltip: "La recherche sera activ\xE9e une fois que vous aurez ajout\xE9
|
|
106478
|
+
searchTooltip: "La recherche sera activ\xE9e une fois que vous aurez ajout\xE9 des informations au %{tableName}",
|
|
106309
106479
|
featureFilter: "Filtre",
|
|
106310
106480
|
featureQuickFilter: "Filtre rapide",
|
|
106311
106481
|
featureGroupBy: "Regrouper par",
|
|
@@ -106333,9 +106503,11 @@ var fr_CA_default = {
|
|
|
106333
106503
|
exporting: "Exportation ...",
|
|
106334
106504
|
filters: {
|
|
106335
106505
|
filters: "Filtres",
|
|
106506
|
+
allFilters: "Tous les filtres",
|
|
106336
106507
|
moreFilters: "Plus de filtres",
|
|
106337
106508
|
clearAllFilters: "Effacer tous les filtres",
|
|
106338
106509
|
close: "Fermer",
|
|
106510
|
+
removeFilterToken: "Retirer %{name}",
|
|
106339
106511
|
locationFilter: {
|
|
106340
106512
|
selectAll: "S\xE9lectionner tout",
|
|
106341
106513
|
includeSublocations: "Inclure les sous-lieux",
|
|
@@ -106351,6 +106523,7 @@ var fr_CA_default = {
|
|
|
106351
106523
|
options: {
|
|
106352
106524
|
any_value: "N'importe quelle valeur",
|
|
106353
106525
|
is_between: "Est entre",
|
|
106526
|
+
is_equal_to: "Est \xE9gal \xE0",
|
|
106354
106527
|
greater_than: "Est sup\xE9rieur \xE0",
|
|
106355
106528
|
greater_than_equal_to: "Est sup\xE9rieur ou \xE9gal \xE0",
|
|
106356
106529
|
less_than: "Est inf\xE9rieur \xE0",
|
|
@@ -106373,6 +106546,7 @@ var fr_CA_default = {
|
|
|
106373
106546
|
secondary: "Chargement des informations, merci pour votre patience."
|
|
106374
106547
|
},
|
|
106375
106548
|
menuOptions: {
|
|
106549
|
+
ariaMenuColumn: "Appuyez sur Alt/Option\xA0+ Bas pour ouvrir le menu de la colonne.",
|
|
106376
106550
|
sortMenuItem: {
|
|
106377
106551
|
label: "Trier cette colonne",
|
|
106378
106552
|
sortAscItem: "Trier la colonne par ordre croissant",
|
|
@@ -106427,6 +106601,9 @@ var fr_CA_default = {
|
|
|
106427
106601
|
currencyCell: {
|
|
106428
106602
|
placeholder: "Saisir la devise"
|
|
106429
106603
|
},
|
|
106604
|
+
linkCell: {
|
|
106605
|
+
externalLabel: "Lien externe ouvert"
|
|
106606
|
+
},
|
|
106430
106607
|
numberCell: {
|
|
106431
106608
|
placeholder: "Saisir un num\xE9ro"
|
|
106432
106609
|
},
|
|
@@ -106507,9 +106684,11 @@ var fr_FR_default = {
|
|
|
106507
106684
|
exporting: "Exportation...",
|
|
106508
106685
|
filters: {
|
|
106509
106686
|
filters: "Filtres",
|
|
106687
|
+
allFilters: "Tous les filtres",
|
|
106510
106688
|
moreFilters: "Plus de filtres",
|
|
106511
106689
|
clearAllFilters: "Effacer tous les filtres",
|
|
106512
106690
|
close: "Fermer",
|
|
106691
|
+
removeFilterToken: "Retirer %{name}",
|
|
106513
106692
|
locationFilter: {
|
|
106514
106693
|
selectAll: "S\xE9lectionner tout",
|
|
106515
106694
|
includeSublocations: "Inclure les sous-lieux",
|
|
@@ -106525,6 +106704,7 @@ var fr_FR_default = {
|
|
|
106525
106704
|
options: {
|
|
106526
106705
|
any_value: "N'importe quelle valeur",
|
|
106527
106706
|
is_between: "Est comprise entre",
|
|
106707
|
+
is_equal_to: "Est \xE9gal \xE0",
|
|
106528
106708
|
greater_than: "Est sup\xE9rieure \xE0",
|
|
106529
106709
|
greater_than_equal_to: "Est sup\xE9rieure ou \xE9gale \xE0",
|
|
106530
106710
|
less_than: "Est inf\xE9rieure \xE0",
|
|
@@ -106547,6 +106727,7 @@ var fr_FR_default = {
|
|
|
106547
106727
|
secondary: "Chargement des informations. Merci pour votre patience."
|
|
106548
106728
|
},
|
|
106549
106729
|
menuOptions: {
|
|
106730
|
+
ariaMenuColumn: "Appuyez sur Alt/Option + la fl\xE8che vers le bas pour ouvrir le menu de la colonne.",
|
|
106550
106731
|
sortMenuItem: {
|
|
106551
106732
|
label: "Trier cette colonne",
|
|
106552
106733
|
sortAscItem: "Trier la colonne par ordre croissant",
|
|
@@ -106587,8 +106768,8 @@ var fr_FR_default = {
|
|
|
106587
106768
|
},
|
|
106588
106769
|
rowGroupToggle: {
|
|
106589
106770
|
expandTierOne: "Ouvrez les premiers groupes du tableau.",
|
|
106590
|
-
expandAll: "
|
|
106591
|
-
collapseAll: "Fermer tous les groupes du tableau
|
|
106771
|
+
expandAll: "Ouvrir tous les groupes du tableau",
|
|
106772
|
+
collapseAll: "Fermer tous les groupes du tableau"
|
|
106592
106773
|
},
|
|
106593
106774
|
columnGroupToggle: {
|
|
106594
106775
|
collapse: "R\xE9duire le groupe de colonnes",
|
|
@@ -106601,6 +106782,9 @@ var fr_FR_default = {
|
|
|
106601
106782
|
currencyCell: {
|
|
106602
106783
|
placeholder: "Saisir la devise"
|
|
106603
106784
|
},
|
|
106785
|
+
linkCell: {
|
|
106786
|
+
externalLabel: "Ouvrir le lien externe"
|
|
106787
|
+
},
|
|
106604
106788
|
numberCell: {
|
|
106605
106789
|
placeholder: "Saisir un num\xE9ro"
|
|
106606
106790
|
},
|
|
@@ -106681,9 +106865,11 @@ var is_IS_default = {
|
|
|
106681
106865
|
exporting: "Flytur \xFAt ...",
|
|
106682
106866
|
filters: {
|
|
106683
106867
|
filters: "S\xEDur",
|
|
106868
|
+
allFilters: "Allar s\xEDur",
|
|
106684
106869
|
moreFilters: "Fleiri s\xEDur",
|
|
106685
106870
|
clearAllFilters: "Hreinsa allar s\xEDur",
|
|
106686
106871
|
close: "Loka\xF0u",
|
|
106872
|
+
removeFilterToken: "Fjarl\xE6gja %{name}",
|
|
106687
106873
|
locationFilter: {
|
|
106688
106874
|
selectAll: "Velja allt",
|
|
106689
106875
|
includeSublocations: "L\xE1ttu undirlokanir fylgja me\xF0",
|
|
@@ -106699,6 +106885,7 @@ var is_IS_default = {
|
|
|
106699
106885
|
options: {
|
|
106700
106886
|
any_value: "Hva\xF0a gildi sem er",
|
|
106701
106887
|
is_between: "Er \xE1 milli",
|
|
106888
|
+
is_equal_to: "Er jafnt",
|
|
106702
106889
|
greater_than: "Er meiri en",
|
|
106703
106890
|
greater_than_equal_to: "Er st\xE6rra en e\xF0a jafnt",
|
|
106704
106891
|
less_than: "Er minna en",
|
|
@@ -106721,6 +106908,7 @@ var is_IS_default = {
|
|
|
106721
106908
|
secondary: "Hle\xF0sla uppl\xFDsinga, takk fyrir \xFEolinm\xE6\xF0ina."
|
|
106722
106909
|
},
|
|
106723
106910
|
menuOptions: {
|
|
106911
|
+
ariaMenuColumn: "\xDDttu \xE1 Alt/Option+Down til a\xF0 opna d\xE1lkavalmyndina.",
|
|
106724
106912
|
sortMenuItem: {
|
|
106725
106913
|
label: "Ra\xF0a eftir \xFEessum d\xE1lki",
|
|
106726
106914
|
sortAscItem: "Ra\xF0a d\xE1lki h\xE6kkandi",
|
|
@@ -106775,6 +106963,9 @@ var is_IS_default = {
|
|
|
106775
106963
|
currencyCell: {
|
|
106776
106964
|
placeholder: "Sl\xE1\xF0u inn gjaldmi\xF0il"
|
|
106777
106965
|
},
|
|
106966
|
+
linkCell: {
|
|
106967
|
+
externalLabel: "Opna utana\xF0komandi tengil"
|
|
106968
|
+
},
|
|
106778
106969
|
numberCell: {
|
|
106779
106970
|
placeholder: "Sl\xE1\xF0u inn n\xFAmer"
|
|
106780
106971
|
},
|
|
@@ -106855,9 +107046,11 @@ var it_IT_default = {
|
|
|
106855
107046
|
exporting: "Esportazione in corso...",
|
|
106856
107047
|
filters: {
|
|
106857
107048
|
filters: "Filtri",
|
|
107049
|
+
allFilters: "Tutti i filtri",
|
|
106858
107050
|
moreFilters: "Altri filtri",
|
|
106859
107051
|
clearAllFilters: "Cancella tutti i filtri",
|
|
106860
107052
|
close: "Chiudi",
|
|
107053
|
+
removeFilterToken: "Rimuovi %{name}",
|
|
106861
107054
|
locationFilter: {
|
|
106862
107055
|
selectAll: "Seleziona tutto",
|
|
106863
107056
|
includeSublocations: "Includi posizioni secondarie",
|
|
@@ -106873,6 +107066,7 @@ var it_IT_default = {
|
|
|
106873
107066
|
options: {
|
|
106874
107067
|
any_value: "Qualsiasi valore",
|
|
106875
107068
|
is_between: "\xC8 compreso tra",
|
|
107069
|
+
is_equal_to: "\xC8 uguale a",
|
|
106876
107070
|
greater_than: "\xC8 maggiore di",
|
|
106877
107071
|
greater_than_equal_to: "\xC8 maggiore o uguale a",
|
|
106878
107072
|
less_than: "\xC8 minore di",
|
|
@@ -106895,6 +107089,7 @@ var it_IT_default = {
|
|
|
106895
107089
|
secondary: "Caricamento delle informazioni in corso, grazie per la pazienza."
|
|
106896
107090
|
},
|
|
106897
107091
|
menuOptions: {
|
|
107092
|
+
ariaMenuColumn: "Premere Alt/Opzione+Freccia gi\xF9 per aprire il menu a colonna.",
|
|
106898
107093
|
sortMenuItem: {
|
|
106899
107094
|
label: "Ordina per questa colonna",
|
|
106900
107095
|
sortAscItem: "Ordina colonna (crescente)",
|
|
@@ -106949,6 +107144,9 @@ var it_IT_default = {
|
|
|
106949
107144
|
currencyCell: {
|
|
106950
107145
|
placeholder: "Inserisci valuta"
|
|
106951
107146
|
},
|
|
107147
|
+
linkCell: {
|
|
107148
|
+
externalLabel: "Apri collegamento esterno"
|
|
107149
|
+
},
|
|
106952
107150
|
numberCell: {
|
|
106953
107151
|
placeholder: "Inserisci numero"
|
|
106954
107152
|
},
|
|
@@ -107029,9 +107227,11 @@ var ja_JP_default = {
|
|
|
107029
107227
|
exporting: "\u30A8\u30AF\u30B9\u30DD\u30FC\u30C8\u4E2D...",
|
|
107030
107228
|
filters: {
|
|
107031
107229
|
filters: "\u30D5\u30A3\u30EB\u30BF",
|
|
107230
|
+
allFilters: "\u3059\u3079\u3066\u306E\u30D5\u30A3\u30EB\u30BF\u30FC",
|
|
107032
107231
|
moreFilters: "\u305D\u306E\u4ED6\u306E\u30D5\u30A3\u30EB\u30BF",
|
|
107033
107232
|
clearAllFilters: "\u3059\u3079\u3066\u306E\u30D5\u30A3\u30EB\u30BF\u3092\u6D88\u53BB",
|
|
107034
107233
|
close: "\u7D42\u4E86",
|
|
107234
|
+
removeFilterToken: "%{name}\u524A\u9664",
|
|
107035
107235
|
locationFilter: {
|
|
107036
107236
|
selectAll: "\u3059\u3079\u3066\u9078\u629E",
|
|
107037
107237
|
includeSublocations: "\u30B5\u30D6\u30ED\u30B1\u30FC\u30B7\u30E7\u30F3\u3092\u542B\u3081\u308B",
|
|
@@ -107047,6 +107247,7 @@ var ja_JP_default = {
|
|
|
107047
107247
|
options: {
|
|
107048
107248
|
any_value: "\u4EFB\u610F\u306E\u5024",
|
|
107049
107249
|
is_between: "\u9593\u306B\u3042\u308B",
|
|
107250
|
+
is_equal_to: "\u7B49\u3057\u3044",
|
|
107050
107251
|
greater_than: "\u3088\u308A\u5927\u304D\u3044",
|
|
107051
107252
|
greater_than_equal_to: "\u4EE5\u4E0A\u3067\u3042\u308B",
|
|
107052
107253
|
less_than: "\u672A\u6E80\u3067\u3042\u308B",
|
|
@@ -107069,6 +107270,7 @@ var ja_JP_default = {
|
|
|
107069
107270
|
secondary: "\u60C5\u5831\u3092\u8AAD\u307F\u8FBC\u3093\u3067\u3044\u307E\u3059\u3002\u3057\u3070\u3089\u304F\u304A\u5F85\u3061\u304F\u3060\u3055\u3044\u3002"
|
|
107070
107271
|
},
|
|
107071
107272
|
menuOptions: {
|
|
107273
|
+
ariaMenuColumn: "Alt/Option\u30AD\u30FC\u3092\u62BC\u3057\u306A\u304C\u3089\u4E0B\u77E2\u5370\u30AD\u30FC\u3092\u62BC\u3059\u3068\u3001\u5217\u30E1\u30CB\u30E5\u30FC\u304C\u958B\u304D\u307E\u3059\u3002",
|
|
107072
107274
|
sortMenuItem: {
|
|
107073
107275
|
label: "\u3053\u306E\u5217\u3067\u4E26\u3079\u66FF\u3048\u308B",
|
|
107074
107276
|
sortAscItem: "\u5217\u3092\u6607\u9806\u306B\u4E26\u3079\u66FF\u3048\u308B",
|
|
@@ -107123,6 +107325,9 @@ var ja_JP_default = {
|
|
|
107123
107325
|
currencyCell: {
|
|
107124
107326
|
placeholder: "\u901A\u8CA8\u3092\u5165\u529B"
|
|
107125
107327
|
},
|
|
107328
|
+
linkCell: {
|
|
107329
|
+
externalLabel: "\u5916\u90E8\u30EA\u30F3\u30AF\u3092\u958B\u304F"
|
|
107330
|
+
},
|
|
107126
107331
|
numberCell: {
|
|
107127
107332
|
placeholder: "\u756A\u53F7\u3092\u5165\u529B"
|
|
107128
107333
|
},
|
|
@@ -107166,13 +107371,13 @@ var nb_NO_default = {
|
|
|
107166
107371
|
dataTable: {
|
|
107167
107372
|
emptyState: {
|
|
107168
107373
|
noFilteredResults: {
|
|
107169
|
-
description: "
|
|
107170
|
-
title: "
|
|
107374
|
+
description: "Kontroller staving og filteralternativer, eller s\xF8k etter et annet n\xF8kkelord.",
|
|
107375
|
+
title: "Ingen enheter samsvarer med s\xF8ket ditt",
|
|
107171
107376
|
itemsTitle: "No %{itemsLabel} Match Your Search"
|
|
107172
107377
|
},
|
|
107173
107378
|
noResults: {
|
|
107174
107379
|
description: "Once your team creates these items, you can access them here. ",
|
|
107175
|
-
title: "
|
|
107380
|
+
title: "Ingen enheter kan vises akkurat n\xE5",
|
|
107176
107381
|
itemsTitle: "There Are No %{itemsLabel} to Display Right Now",
|
|
107177
107382
|
tooltip: "The %{featureName} button will be enabled once you add information to the %{tableName}",
|
|
107178
107383
|
searchTooltip: "Search will be enabled once you add information to the %{tableName}",
|
|
@@ -107186,7 +107391,7 @@ var nb_NO_default = {
|
|
|
107186
107391
|
bulkActions: {
|
|
107187
107392
|
apply: "Apply",
|
|
107188
107393
|
bulkEdit: "Bulk Edit",
|
|
107189
|
-
cancel: "
|
|
107394
|
+
cancel: "Avbryt",
|
|
107190
107395
|
editValues: "Edit Values",
|
|
107191
107396
|
error: "Sorry, the items couldn't be updated. Try again.",
|
|
107192
107397
|
placeholderForField: "Enter %{fieldName}",
|
|
@@ -107198,29 +107403,32 @@ var nb_NO_default = {
|
|
|
107198
107403
|
},
|
|
107199
107404
|
success: "The items were successfully updated.",
|
|
107200
107405
|
one: "item",
|
|
107201
|
-
many: "
|
|
107406
|
+
many: "Enheter"
|
|
107202
107407
|
},
|
|
107203
107408
|
exporting: "Exporting...",
|
|
107204
107409
|
filters: {
|
|
107205
|
-
filters: "
|
|
107410
|
+
filters: "Filtre",
|
|
107411
|
+
allFilters: "Alle filtre",
|
|
107206
107412
|
moreFilters: "More Filters",
|
|
107207
|
-
clearAllFilters: "
|
|
107413
|
+
clearAllFilters: "Fjern alle filtre",
|
|
107208
107414
|
close: "Close",
|
|
107415
|
+
removeFilterToken: "Fjern %{name}",
|
|
107209
107416
|
locationFilter: {
|
|
107210
|
-
selectAll: "
|
|
107417
|
+
selectAll: "Velg alle",
|
|
107211
107418
|
includeSublocations: "Include sublocations",
|
|
107212
107419
|
searchLocations: "Search locations",
|
|
107213
107420
|
locations: "Locations"
|
|
107214
107421
|
},
|
|
107215
107422
|
numberFilter: {
|
|
107216
107423
|
labels: {
|
|
107217
|
-
and: "
|
|
107424
|
+
and: "OG",
|
|
107218
107425
|
input_placeholder: "Enter Value",
|
|
107219
107426
|
placeholder: "Select an item"
|
|
107220
107427
|
},
|
|
107221
107428
|
options: {
|
|
107222
107429
|
any_value: "Any Value",
|
|
107223
107430
|
is_between: "Is Between",
|
|
107431
|
+
is_equal_to: "Is Equal To",
|
|
107224
107432
|
greater_than: "Is Greater Than",
|
|
107225
107433
|
greater_than_equal_to: "Is Greater Than or Equal To",
|
|
107226
107434
|
less_than: "Is Less Than",
|
|
@@ -107243,11 +107451,15 @@ var nb_NO_default = {
|
|
|
107243
107451
|
secondary: "Information loading, thanks for your patience."
|
|
107244
107452
|
},
|
|
107245
107453
|
menuOptions: {
|
|
107454
|
+
ariaMenuColumn: "Trykk p\xE5 Alt/Option og pil ned for \xE5 \xE5pne kolonnemenyen.",
|
|
107246
107455
|
sortMenuItem: {
|
|
107247
107456
|
label: "Sort By This Column",
|
|
107248
107457
|
sortAscItem: "Sort Column Ascending",
|
|
107249
107458
|
sortDescItem: "Sort Column Descending",
|
|
107250
|
-
sortResetItem: "Column Not Sorted"
|
|
107459
|
+
sortResetItem: "Column Not Sorted",
|
|
107460
|
+
sortAscending: "sorted ascending",
|
|
107461
|
+
sortDescending: "sorted descending",
|
|
107462
|
+
sortCleared: "Sorting cleared"
|
|
107251
107463
|
},
|
|
107252
107464
|
expandAllGroups: "Expand All Groups",
|
|
107253
107465
|
collapseAllGroups: "Collapse All Groups",
|
|
@@ -107258,12 +107470,12 @@ var nb_NO_default = {
|
|
|
107258
107470
|
autoSizeThisColumn: "Autosize This Column",
|
|
107259
107471
|
autoSizeAllColumns: "Autosize All Columns",
|
|
107260
107472
|
hideColumn: "Hide Column",
|
|
107261
|
-
resetColumns: "
|
|
107473
|
+
resetColumns: "Tilbakestill kolonner",
|
|
107262
107474
|
unGroupBy: "Un-Group by {{label}}",
|
|
107263
107475
|
groupBy: "Group by {{label}}"
|
|
107264
107476
|
},
|
|
107265
107477
|
grandTotals: "Grand Totals",
|
|
107266
|
-
search: "
|
|
107478
|
+
search: "S\xF8k",
|
|
107267
107479
|
subtotals: "Subtotals",
|
|
107268
107480
|
tableSettings: {
|
|
107269
107481
|
configureColumns: "Configure Columns",
|
|
@@ -107274,7 +107486,7 @@ var nb_NO_default = {
|
|
|
107274
107486
|
large: "Large",
|
|
107275
107487
|
tableSettings: "Table Settings",
|
|
107276
107488
|
groupBy: "Group by:",
|
|
107277
|
-
reset: "
|
|
107489
|
+
reset: "Tilbakestill",
|
|
107278
107490
|
selectColumnGroup: "Select a column to group",
|
|
107279
107491
|
configure: "Configure"
|
|
107280
107492
|
},
|
|
@@ -107294,6 +107506,9 @@ var nb_NO_default = {
|
|
|
107294
107506
|
currencyCell: {
|
|
107295
107507
|
placeholder: "Enter currency"
|
|
107296
107508
|
},
|
|
107509
|
+
linkCell: {
|
|
107510
|
+
externalLabel: "\xC5pne ekstern kobling"
|
|
107511
|
+
},
|
|
107297
107512
|
numberCell: {
|
|
107298
107513
|
placeholder: "Enter number"
|
|
107299
107514
|
},
|
|
@@ -107311,8 +107526,8 @@ var nb_NO_default = {
|
|
|
107311
107526
|
},
|
|
107312
107527
|
booleanCell: {
|
|
107313
107528
|
options: {
|
|
107314
|
-
yes: "
|
|
107315
|
-
no: "
|
|
107529
|
+
yes: "Ja",
|
|
107530
|
+
no: "Nei"
|
|
107316
107531
|
}
|
|
107317
107532
|
}
|
|
107318
107533
|
},
|
|
@@ -107374,9 +107589,11 @@ var pl_PL_default = {
|
|
|
107374
107589
|
exporting: "Eksportowanie...",
|
|
107375
107590
|
filters: {
|
|
107376
107591
|
filters: "Filtry",
|
|
107592
|
+
allFilters: "Wszystkie filtry",
|
|
107377
107593
|
moreFilters: "Wi\u0119cej filtr\xF3w",
|
|
107378
107594
|
clearAllFilters: "Wyczy\u015B\u0107 wszystkie filtry",
|
|
107379
107595
|
close: "Zamknij",
|
|
107596
|
+
removeFilterToken: "Usu\u0144 %{name}",
|
|
107380
107597
|
locationFilter: {
|
|
107381
107598
|
selectAll: "Zaznacz wszystkie",
|
|
107382
107599
|
includeSublocations: "Uwzgl\u0119dnij lokalizacje podrz\u0119dne",
|
|
@@ -107392,6 +107609,7 @@ var pl_PL_default = {
|
|
|
107392
107609
|
options: {
|
|
107393
107610
|
any_value: "Dowolna warto\u015B\u0107",
|
|
107394
107611
|
is_between: "jest pomi\u0119dzy",
|
|
107612
|
+
is_equal_to: "jest r\xF3wne",
|
|
107395
107613
|
greater_than: "jest wi\u0119ksze ni\u017C",
|
|
107396
107614
|
greater_than_equal_to: "jest wi\u0119ksze ni\u017C lub r\xF3wne",
|
|
107397
107615
|
less_than: "mniej ni\u017C",
|
|
@@ -107414,6 +107632,7 @@ var pl_PL_default = {
|
|
|
107414
107632
|
secondary: "Trwa \u0142adowanie informacji. Prosimy o cierpliwo\u015B\u0107."
|
|
107415
107633
|
},
|
|
107416
107634
|
menuOptions: {
|
|
107635
|
+
ariaMenuColumn: "Naci\u015Bnij klawisze Alt/Option + strza\u0142ka w d\xF3\u0142, aby otworzy\u0107 menu kolumny.",
|
|
107417
107636
|
sortMenuItem: {
|
|
107418
107637
|
label: "Sortuj wed\u0142ug tej kolumny",
|
|
107419
107638
|
sortAscItem: "Sortuj kolumny rosn\u0105co",
|
|
@@ -107468,6 +107687,9 @@ var pl_PL_default = {
|
|
|
107468
107687
|
currencyCell: {
|
|
107469
107688
|
placeholder: "Wprowad\u017A walut\u0119"
|
|
107470
107689
|
},
|
|
107690
|
+
linkCell: {
|
|
107691
|
+
externalLabel: "Otw\xF3rz zewn\u0119trzne \u0142\u0105cze"
|
|
107692
|
+
},
|
|
107471
107693
|
numberCell: {
|
|
107472
107694
|
placeholder: "Wprowad\u017A numer"
|
|
107473
107695
|
},
|
|
@@ -107548,6 +107770,7 @@ var pseudo_default = {
|
|
|
107548
107770
|
exporting: "[\u1E16\u1E16\u1E16\u1E8B\u01A5\u01FF\u0159\u0167\u012B\u019E\u0260.....]",
|
|
107549
107771
|
filters: {
|
|
107550
107772
|
filters: "[\u0191\u0191\u012B\u0140\u0167\u1E17\u0159\u015F\u015F]",
|
|
107773
|
+
allFilters: "[\u0226\u0226\u0226\u0140\u0140 \xB7 \u0191\u012B\u0140\u0167\u1E17\u0159\u015F\u015F\u015F]",
|
|
107551
107774
|
moreFilters: "[\u1E3E\u1E3E\u1E3E\u01FF\u0159\u1E17 \xB7 \u0191\u012B\u0140\u0167\u1E17\u0159\u015F\u015F\u015F]",
|
|
107552
107775
|
clearAllFilters: "[\u0187\u0187\u0187\u0187\u0140\u1E17\u0227\u0159 \xB7 \u0226\u0140\u0140 \xB7 \u0191\u012B\u0140\u0167\u1E17\u0159\u015F\u015F\u015F\u015F]",
|
|
107553
107776
|
close: "[\u0187\u0140\u01FF\u015F\u1E17]",
|
|
@@ -107567,6 +107790,7 @@ var pseudo_default = {
|
|
|
107567
107790
|
options: {
|
|
107568
107791
|
any_value: "[\u0226\u0226\u019E\u1E8F \xB7 \u1E7C\u0227\u0140\u016D\u1E17\u1E17]",
|
|
107569
107792
|
is_between: "[\u012A\u012A\u015F \xB7 \u0181\u1E17\u0167\u1E87\u1E17\u1E17\u019E\u019E]",
|
|
107793
|
+
is_equal_to: "[\u012A\u012A\u012A\u015F \xB7 \u1E16\u024B\u016D\u0227\u0140 \xB7 \u0166\u01FF\u01FF\u01FF]",
|
|
107570
107794
|
greater_than: "[\u012A\u012A\u012A\u015F \xB7 \u0193\u0159\u1E17\u0227\u0167\u1E17\u0159 \xB7 \u0166\u0127\u0227\u019E\u019E\u019E]",
|
|
107571
107795
|
greater_than_equal_to: "[\u012A\u012A\u012A\u012A\u012A\u012A\u015F \xB7 \u0193\u0159\u1E17\u0227\u0167\u1E17\u0159 \xB7 \u0166\u0127\u0227\u019E \xB7 \u01FF\u0159 \xB7 \u1E16\u024B\u016D\u0227\u0140 \xB7 \u0166\u01FF\u01FF\u01FF\u01FF\u01FF\u01FF]",
|
|
107572
107796
|
less_than: "[\u012A\u012A\u012A\u015F \xB7 \u013F\u1E17\u015F\u015F \xB7 \u0166\u0127\u0227\u019E\u019E\u019E]",
|
|
@@ -107644,6 +107868,9 @@ var pseudo_default = {
|
|
|
107644
107868
|
currencyCell: {
|
|
107645
107869
|
placeholder: "[\u1E16\u1E16\u1E16\u019E\u0167\u1E17\u0159 \xB7 \u0188\u016D\u0159\u0159\u1E17\u019E\u0188\u1E8F\u1E8F\u1E8F]"
|
|
107646
107870
|
},
|
|
107871
|
+
linkCell: {
|
|
107872
|
+
externalLabel: "[\u01FE\u01FE\u01FE\u01FE\u01A5\u1E17\u019E \xB7 \u1E17\u1E8B\u0167\u1E17\u0159\u019E\u0227\u0140 \xB7 \u0140\u012B\u019E\u0137\u0137\u0137\u0137]"
|
|
107873
|
+
},
|
|
107647
107874
|
numberCell: {
|
|
107648
107875
|
placeholder: "[\u1E16\u1E16\u1E16\u019E\u0167\u1E17\u0159 \xB7 \u019E\u016D\u1E3F\u0180\u1E17\u0159\u0159\u0159]"
|
|
107649
107876
|
},
|
|
@@ -107724,9 +107951,11 @@ var pt_BR_default = {
|
|
|
107724
107951
|
exporting: "Exportando...",
|
|
107725
107952
|
filters: {
|
|
107726
107953
|
filters: "Filtros",
|
|
107954
|
+
allFilters: "Todos os Filtros",
|
|
107727
107955
|
moreFilters: "Mais Filtros",
|
|
107728
107956
|
clearAllFilters: "Limpar Todos os Filtros",
|
|
107729
107957
|
close: "Fechar",
|
|
107958
|
+
removeFilterToken: "Remover %{name}",
|
|
107730
107959
|
locationFilter: {
|
|
107731
107960
|
selectAll: "Selecionar tudo",
|
|
107732
107961
|
includeSublocations: "Incluir Sublocais",
|
|
@@ -107742,6 +107971,7 @@ var pt_BR_default = {
|
|
|
107742
107971
|
options: {
|
|
107743
107972
|
any_value: "Qualquer Valor",
|
|
107744
107973
|
is_between: "Est\xE1 entre",
|
|
107974
|
+
is_equal_to: "\xC9 igual a",
|
|
107745
107975
|
greater_than: "\xC9 Maior Que",
|
|
107746
107976
|
greater_than_equal_to: "\xC9 Maior Que ou Igual a",
|
|
107747
107977
|
less_than: "\xC9 Menor Que",
|
|
@@ -107764,6 +107994,7 @@ var pt_BR_default = {
|
|
|
107764
107994
|
secondary: "As informa\xE7\xF5es est\xE3o carregando, obrigado pela paci\xEAncia."
|
|
107765
107995
|
},
|
|
107766
107996
|
menuOptions: {
|
|
107997
|
+
ariaMenuColumn: "Pressione Alt/Option + Seta para baixo para abrir o menu de colunas.",
|
|
107767
107998
|
sortMenuItem: {
|
|
107768
107999
|
label: "Classificar por Esta Coluna",
|
|
107769
108000
|
sortAscItem: "Classificar Coluna em Ordem Crescente",
|
|
@@ -107818,6 +108049,9 @@ var pt_BR_default = {
|
|
|
107818
108049
|
currencyCell: {
|
|
107819
108050
|
placeholder: "Insira moeda"
|
|
107820
108051
|
},
|
|
108052
|
+
linkCell: {
|
|
108053
|
+
externalLabel: "Abrir link externo"
|
|
108054
|
+
},
|
|
107821
108055
|
numberCell: {
|
|
107822
108056
|
placeholder: "Inserir n\xFAmeros"
|
|
107823
108057
|
},
|
|
@@ -107870,7 +108104,7 @@ var pt_PT_default = {
|
|
|
107870
108104
|
title: "N\xE3o h\xE1 itens para apresentar neste momento",
|
|
107871
108105
|
itemsTitle: "N\xE3o h\xE1 %{itemsLabel} para apresentar neste momento",
|
|
107872
108106
|
tooltip: "O bot\xE3o %{featureName} ser\xE1 ativado quando adicionar informa\xE7\xF5es \xE0 tabela %{tableName}",
|
|
107873
|
-
searchTooltip: "A pesquisa ser\xE1 ativada quando adicionar informa\xE7\xF5es
|
|
108107
|
+
searchTooltip: "A pesquisa ser\xE1 ativada quando adicionar informa\xE7\xF5es a %{tableName}",
|
|
107874
108108
|
featureFilter: "Filtro",
|
|
107875
108109
|
featureQuickFilter: "Filtro r\xE1pido",
|
|
107876
108110
|
featureGroupBy: "Agrupar por",
|
|
@@ -107898,9 +108132,11 @@ var pt_PT_default = {
|
|
|
107898
108132
|
exporting: "A exportar...",
|
|
107899
108133
|
filters: {
|
|
107900
108134
|
filters: "Filtros",
|
|
108135
|
+
allFilters: "Todos os filtros",
|
|
107901
108136
|
moreFilters: "Mais filtros",
|
|
107902
108137
|
clearAllFilters: "Apagar todos os filtros",
|
|
107903
108138
|
close: "Fechar",
|
|
108139
|
+
removeFilterToken: "Remover %{name}",
|
|
107904
108140
|
locationFilter: {
|
|
107905
108141
|
selectAll: "Selecionar tudo",
|
|
107906
108142
|
includeSublocations: "Incluir locais secund\xE1rios",
|
|
@@ -107916,6 +108152,7 @@ var pt_PT_default = {
|
|
|
107916
108152
|
options: {
|
|
107917
108153
|
any_value: "Qualquer valor",
|
|
107918
108154
|
is_between: "Est\xE1 entre",
|
|
108155
|
+
is_equal_to: "\xC9 igual a",
|
|
107919
108156
|
greater_than: "\xC9 superior a",
|
|
107920
108157
|
greater_than_equal_to: "\xC9 igual ou superior a",
|
|
107921
108158
|
less_than: "\xC9 inferior a",
|
|
@@ -107938,6 +108175,7 @@ var pt_PT_default = {
|
|
|
107938
108175
|
secondary: "A carregar informa\xE7\xF5es. Agradecemos a sua paci\xEAncia."
|
|
107939
108176
|
},
|
|
107940
108177
|
menuOptions: {
|
|
108178
|
+
ariaMenuColumn: "Pressionar Alt/Op\xE7\xE3o + Seta para baixo para abrir o menu da coluna.",
|
|
107941
108179
|
sortMenuItem: {
|
|
107942
108180
|
label: "Ordenar por esta coluna",
|
|
107943
108181
|
sortAscItem: "Ordenar coluna por ordem ascendente",
|
|
@@ -107992,6 +108230,9 @@ var pt_PT_default = {
|
|
|
107992
108230
|
currencyCell: {
|
|
107993
108231
|
placeholder: "Introduzir moeda"
|
|
107994
108232
|
},
|
|
108233
|
+
linkCell: {
|
|
108234
|
+
externalLabel: "Abrir liga\xE7\xE3o externa"
|
|
108235
|
+
},
|
|
107995
108236
|
numberCell: {
|
|
107996
108237
|
placeholder: "Introduzir n\xFAmero"
|
|
107997
108238
|
},
|
|
@@ -108072,9 +108313,11 @@ var th_TH_default = {
|
|
|
108072
108313
|
exporting: "\u0E01\u0E33\u0E25\u0E31\u0E07\u0E2A\u0E48\u0E07\u0E2D\u0E2D\u0E01...",
|
|
108073
108314
|
filters: {
|
|
108074
108315
|
filters: "\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07",
|
|
108316
|
+
allFilters: "\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
|
|
108075
108317
|
moreFilters: "\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21",
|
|
108076
108318
|
clearAllFilters: "\u0E25\u0E49\u0E32\u0E07\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
|
|
108077
108319
|
close: "\u0E1B\u0E34\u0E14",
|
|
108320
|
+
removeFilterToken: "\u0E25\u0E1A %{name}",
|
|
108078
108321
|
locationFilter: {
|
|
108079
108322
|
selectAll: "\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
|
|
108080
108323
|
includeSublocations: "\u0E23\u0E27\u0E21\u0E15\u0E33\u0E41\u0E2B\u0E19\u0E48\u0E07\u0E22\u0E48\u0E2D\u0E22",
|
|
@@ -108090,6 +108333,7 @@ var th_TH_default = {
|
|
|
108090
108333
|
options: {
|
|
108091
108334
|
any_value: "\u0E04\u0E48\u0E32\u0E43\u0E14\u0E01\u0E47\u0E44\u0E14\u0E49",
|
|
108092
108335
|
is_between: "\u0E2D\u0E22\u0E39\u0E48\u0E23\u0E30\u0E2B\u0E27\u0E48\u0E32\u0E07",
|
|
108336
|
+
is_equal_to: "\u0E40\u0E17\u0E48\u0E32\u0E01\u0E31\u0E1A",
|
|
108093
108337
|
greater_than: "\u0E21\u0E32\u0E01\u0E01\u0E27\u0E48\u0E32",
|
|
108094
108338
|
greater_than_equal_to: "\u0E21\u0E32\u0E01\u0E01\u0E27\u0E48\u0E32\u0E2B\u0E23\u0E37\u0E2D\u0E40\u0E17\u0E48\u0E32\u0E01\u0E31\u0E1A",
|
|
108095
108339
|
less_than: "\u0E19\u0E49\u0E2D\u0E22\u0E01\u0E27\u0E48\u0E32",
|
|
@@ -108112,6 +108356,7 @@ var th_TH_default = {
|
|
|
108112
108356
|
secondary: "\u0E01\u0E33\u0E25\u0E31\u0E07\u0E42\u0E2B\u0E25\u0E14\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25 \u0E02\u0E2D\u0E1A\u0E04\u0E38\u0E13\u0E17\u0E35\u0E48\u0E2D\u0E14\u0E17\u0E19\u0E23\u0E2D"
|
|
108113
108357
|
},
|
|
108114
108358
|
menuOptions: {
|
|
108359
|
+
ariaMenuColumn: "\u0E01\u0E14\u0E1B\u0E38\u0E48\u0E21 Alt/Option+Down \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E40\u0E1B\u0E34\u0E14\u0E40\u0E21\u0E19\u0E39\u0E04\u0E2D\u0E25\u0E31\u0E21\u0E19\u0E4C",
|
|
108115
108360
|
sortMenuItem: {
|
|
108116
108361
|
label: "\u0E08\u0E31\u0E14\u0E40\u0E23\u0E35\u0E22\u0E07\u0E15\u0E32\u0E21\u0E04\u0E2D\u0E25\u0E31\u0E21\u0E19\u0E4C\u0E19\u0E35\u0E49",
|
|
108117
108362
|
sortAscItem: "\u0E08\u0E31\u0E14\u0E40\u0E23\u0E35\u0E22\u0E07\u0E04\u0E2D\u0E25\u0E31\u0E21\u0E19\u0E4C\u0E08\u0E32\u0E01\u0E19\u0E49\u0E2D\u0E22\u0E44\u0E1B\u0E21\u0E32\u0E01",
|
|
@@ -108166,6 +108411,9 @@ var th_TH_default = {
|
|
|
108166
108411
|
currencyCell: {
|
|
108167
108412
|
placeholder: "\u0E1B\u0E49\u0E2D\u0E19\u0E2A\u0E01\u0E38\u0E25\u0E40\u0E07\u0E34\u0E19"
|
|
108168
108413
|
},
|
|
108414
|
+
linkCell: {
|
|
108415
|
+
externalLabel: "\u0E40\u0E1B\u0E34\u0E14\u0E25\u0E34\u0E07\u0E01\u0E4C\u0E20\u0E32\u0E22\u0E19\u0E2D\u0E01"
|
|
108416
|
+
},
|
|
108169
108417
|
numberCell: {
|
|
108170
108418
|
placeholder: "\u0E1B\u0E49\u0E2D\u0E19\u0E2B\u0E21\u0E32\u0E22\u0E40\u0E25\u0E02"
|
|
108171
108419
|
},
|
|
@@ -108246,9 +108494,11 @@ var zh_SG_default = {
|
|
|
108246
108494
|
exporting: "\u6B63\u5728\u5BFC\u51FA...",
|
|
108247
108495
|
filters: {
|
|
108248
108496
|
filters: "\u7B5B\u9009\u5668",
|
|
108497
|
+
allFilters: "\u6240\u6709\u7B5B\u9009\u5668",
|
|
108249
108498
|
moreFilters: "\u66F4\u591A\u7B5B\u9009\u5668",
|
|
108250
108499
|
clearAllFilters: "\u6E05\u9664\u6240\u6709\u7B5B\u9009\u5668",
|
|
108251
108500
|
close: "\u5173\u95ED",
|
|
108501
|
+
removeFilterToken: "\u79FB\u9664 %{name}",
|
|
108252
108502
|
locationFilter: {
|
|
108253
108503
|
selectAll: "\u5168\u9009",
|
|
108254
108504
|
includeSublocations: "\u5305\u62EC\u5B50\u5730\u70B9",
|
|
@@ -108264,6 +108514,7 @@ var zh_SG_default = {
|
|
|
108264
108514
|
options: {
|
|
108265
108515
|
any_value: "\u4EFB\u610F\u503C",
|
|
108266
108516
|
is_between: "\u4ECB\u4E8E",
|
|
108517
|
+
is_equal_to: "\u7B49\u4E8E",
|
|
108267
108518
|
greater_than: "\u5927\u4E8E",
|
|
108268
108519
|
greater_than_equal_to: "\u5927\u4E8E\u6216\u7B49\u4E8E",
|
|
108269
108520
|
less_than: "\u5C0F\u4E8E",
|
|
@@ -108286,6 +108537,7 @@ var zh_SG_default = {
|
|
|
108286
108537
|
secondary: "\u4FE1\u606F\u52A0\u8F7D\u4E2D\uFF0C\u8BF7\u7A0D\u7B49\u7247\u523B\u3002"
|
|
108287
108538
|
},
|
|
108288
108539
|
menuOptions: {
|
|
108540
|
+
ariaMenuColumn: "\u6309\u201CAlt/Option + \u5411\u4E0B\u7BAD\u5934\u952E\u201D\u6253\u5F00\u5217\u83DC\u5355\u3002",
|
|
108289
108541
|
sortMenuItem: {
|
|
108290
108542
|
label: "\u6309\u6B64\u5217\u6392\u5E8F",
|
|
108291
108543
|
sortAscItem: "\u6309\u5347\u5E8F\u5BF9\u5217\u6392\u5E8F",
|
|
@@ -108340,6 +108592,9 @@ var zh_SG_default = {
|
|
|
108340
108592
|
currencyCell: {
|
|
108341
108593
|
placeholder: "\u8F93\u5165\u8D27\u5E01"
|
|
108342
108594
|
},
|
|
108595
|
+
linkCell: {
|
|
108596
|
+
externalLabel: "\u6253\u5F00\u5916\u90E8\u94FE\u63A5"
|
|
108597
|
+
},
|
|
108343
108598
|
numberCell: {
|
|
108344
108599
|
placeholder: "\u8F93\u5165\u6570\u5B57"
|
|
108345
108600
|
},
|
|
@@ -108420,9 +108675,11 @@ var zh_TW_default = {
|
|
|
108420
108675
|
exporting: "\u532F\u51FA\u4E2D\u2026\u2026",
|
|
108421
108676
|
filters: {
|
|
108422
108677
|
filters: "\u7BE9\u9078\u689D\u4EF6",
|
|
108678
|
+
allFilters: "\u6240\u6709\u7BE9\u9078\u689D\u4EF6",
|
|
108423
108679
|
moreFilters: "\u66F4\u591A\u7BE9\u9078\u689D\u4EF6",
|
|
108424
108680
|
clearAllFilters: "\u6E05\u9664\u6240\u6709\u7BE9\u9078\u689D\u4EF6",
|
|
108425
108681
|
close: "\u95DC\u9589",
|
|
108682
|
+
removeFilterToken: "\u79FB\u9664\u300C%{name}\u300D",
|
|
108426
108683
|
locationFilter: {
|
|
108427
108684
|
selectAll: "\u5168\u90E8\u9078\u53D6",
|
|
108428
108685
|
includeSublocations: "\u5305\u62EC\u5B50\u4F4D\u7F6E",
|
|
@@ -108438,6 +108695,7 @@ var zh_TW_default = {
|
|
|
108438
108695
|
options: {
|
|
108439
108696
|
any_value: "\u4EFB\u4F55\u503C",
|
|
108440
108697
|
is_between: "\u4ECB\u65BC",
|
|
108698
|
+
is_equal_to: "\u7B49\u65BC",
|
|
108441
108699
|
greater_than: "\u5927\u65BC",
|
|
108442
108700
|
greater_than_equal_to: "\u5927\u65BC\u6216\u7B49\u65BC",
|
|
108443
108701
|
less_than: "\u5C0F\u65BC",
|
|
@@ -108460,6 +108718,7 @@ var zh_TW_default = {
|
|
|
108460
108718
|
secondary: "\u6B63\u5728\u8F09\u5165\u8CC7\u8A0A\uFF0C\u611F\u8B1D\u60A8\u7684\u8010\u5FC3\u7B49\u5019\u3002"
|
|
108461
108719
|
},
|
|
108462
108720
|
menuOptions: {
|
|
108721
|
+
ariaMenuColumn: "\u6309\u4E0B Alt/Option+Down \u958B\u555F\u6B04\u4F4D\u9078\u55AE\u3002",
|
|
108463
108722
|
sortMenuItem: {
|
|
108464
108723
|
label: "\u4F9D\u6B64\u6B04\u4F4D\u6392\u5E8F",
|
|
108465
108724
|
sortAscItem: "\u905E\u589E\u6392\u5E8F\u6B04\u4F4D",
|
|
@@ -108514,6 +108773,9 @@ var zh_TW_default = {
|
|
|
108514
108773
|
currencyCell: {
|
|
108515
108774
|
placeholder: "\u8F38\u5165\u8CA8\u5E63"
|
|
108516
108775
|
},
|
|
108776
|
+
linkCell: {
|
|
108777
|
+
externalLabel: "\u958B\u555F\u5916\u90E8\u9023\u7D50"
|
|
108778
|
+
},
|
|
108517
108779
|
numberCell: {
|
|
108518
108780
|
placeholder: "\u8F38\u5165\u6578\u5B57"
|
|
108519
108781
|
},
|
|
@@ -109566,6 +109828,8 @@ var DataTable = ({
|
|
|
109566
109828
|
!initialTableConfig
|
|
109567
109829
|
);
|
|
109568
109830
|
const contextPanel = useContextPanel();
|
|
109831
|
+
const filtersPanelId = $bdb11010cef70236$export$f680877a34711e37();
|
|
109832
|
+
const filtersBodyId = $bdb11010cef70236$export$f680877a34711e37();
|
|
109569
109833
|
const clientI18n = useI18nContext();
|
|
109570
109834
|
const isCDNEnabled = isCDNFeatureFlagEnabled(clientI18n, enableCDN);
|
|
109571
109835
|
const cdnTranslations = useRequestTranslations(
|
|
@@ -109817,7 +110081,9 @@ var DataTable = ({
|
|
|
109817
110081
|
totalRowCount,
|
|
109818
110082
|
setTotalRowCount,
|
|
109819
110083
|
updateServerSideDataSource,
|
|
109820
|
-
hasDuplicateRowIds
|
|
110084
|
+
hasDuplicateRowIds,
|
|
110085
|
+
filtersPanelId,
|
|
110086
|
+
filtersBodyId
|
|
109821
110087
|
}
|
|
109822
110088
|
},
|
|
109823
110089
|
children
|
|
@@ -111165,7 +111431,7 @@ var BaseFiltersPanel = ({
|
|
|
111165
111431
|
...props
|
|
111166
111432
|
}) => {
|
|
111167
111433
|
const ref = React80.useRef(null);
|
|
111168
|
-
const { contextPanel } = useInternalTableContext();
|
|
111434
|
+
const { contextPanel, filtersBodyId, filtersPanelId } = useInternalTableContext();
|
|
111169
111435
|
const I18n = useI18nContext();
|
|
111170
111436
|
const hidden = !contextPanel.isVisible || contextPanel.content !== "filters";
|
|
111171
111437
|
React80.useLayoutEffect(() => {
|
|
@@ -111182,6 +111448,7 @@ var BaseFiltersPanel = ({
|
|
|
111182
111448
|
"contextPanel--hidden": hidden
|
|
111183
111449
|
}),
|
|
111184
111450
|
"data-qa": "data-table-filters-context-panel",
|
|
111451
|
+
id: filtersPanelId,
|
|
111185
111452
|
...props
|
|
111186
111453
|
},
|
|
111187
111454
|
/* @__PURE__ */ React80.createElement(Box, { className: cx20("contextPanelWrapper"), display: "flex-column" }, /* @__PURE__ */ React80.createElement(Panel, null, /* @__PURE__ */ React80.createElement(Panel.Header, { onClose: contextPanel.hide }, /* @__PURE__ */ React80.createElement(Panel.Title, null, I18n.t("dataTable.filters.filters")), /* @__PURE__ */ React80.createElement(
|
|
@@ -111193,7 +111460,7 @@ var BaseFiltersPanel = ({
|
|
|
111193
111460
|
variant: "tertiary"
|
|
111194
111461
|
},
|
|
111195
111462
|
I18n.t("dataTable.filters.clearAllFilters")
|
|
111196
|
-
)), /* @__PURE__ */ React80.createElement(Panel.Body, { className: cx20("contextPanelBody") }, /* @__PURE__ */ React80.createElement(Panel.Section, null, children))))
|
|
111463
|
+
)), /* @__PURE__ */ React80.createElement(Panel.Body, { id: filtersBodyId, className: cx20("contextPanelBody") }, /* @__PURE__ */ React80.createElement(Panel.Section, null, children))))
|
|
111197
111464
|
);
|
|
111198
111465
|
};
|
|
111199
111466
|
function ClientSideFiltersPanel(props) {
|
|
@@ -111928,6 +112195,23 @@ var getSuperSelectFilterPreset = (columnDefinition) => {
|
|
|
111928
112195
|
} : void 0;
|
|
111929
112196
|
return {
|
|
111930
112197
|
components: {
|
|
112198
|
+
Clear: () => {
|
|
112199
|
+
const ctx = UNSAFE_useSuperSelectContext();
|
|
112200
|
+
const I18n = useI18nContext();
|
|
112201
|
+
return /* @__PURE__ */ React80.createElement(
|
|
112202
|
+
Button,
|
|
112203
|
+
{
|
|
112204
|
+
...ctx.props.clear(),
|
|
112205
|
+
"aria-label": I18n.t("dataTable.filters.removeFilterToken", {
|
|
112206
|
+
name: filterName
|
|
112207
|
+
}),
|
|
112208
|
+
size: "sm",
|
|
112209
|
+
variant: "tertiary",
|
|
112210
|
+
disabled: ctx.config.disabled,
|
|
112211
|
+
icon: /* @__PURE__ */ React80.createElement(Clear, null)
|
|
112212
|
+
}
|
|
112213
|
+
);
|
|
112214
|
+
},
|
|
111931
112215
|
Label: React80.forwardRef(() => {
|
|
111932
112216
|
const ctx = UNSAFE_useSuperSelectContext();
|
|
111933
112217
|
const isValueEmpty = ["", null, void 0].includes(
|
|
@@ -112363,10 +112647,27 @@ var SingleSelectQuickFilterRenderer = (props) => {
|
|
|
112363
112647
|
return /* @__PURE__ */ React80.createElement(ClientSideSingleSelectQuickFilter, { ...props });
|
|
112364
112648
|
};
|
|
112365
112649
|
var SingleSelectQuickFilterRenderer_default = SingleSelectQuickFilterRenderer;
|
|
112366
|
-
var
|
|
112650
|
+
var FOCUSABLE_SELECTOR2 = 'button:not([disabled]), input:not([disabled]), select:not([disabled]), textarea:not([disabled]), [tabindex]:not([tabindex="-1"])';
|
|
112651
|
+
var FiltersPanelToggleButton = ({ hasDefinedFilters }) => {
|
|
112367
112652
|
const I18n = useI18nContext();
|
|
112368
|
-
const { contextPanel } = useInternalTableContext();
|
|
112653
|
+
const { contextPanel, filtersBodyId, filtersPanelId } = useInternalTableContext();
|
|
112369
112654
|
const hasNoContent = useTableHasNoContent();
|
|
112655
|
+
const buttonRef = React80.useRef(null);
|
|
112656
|
+
const isFiltersOpen = contextPanel.content === "filters";
|
|
112657
|
+
const isMounted = React80.useRef(false);
|
|
112658
|
+
React80.useEffect(() => {
|
|
112659
|
+
var _a, _b;
|
|
112660
|
+
if (!isMounted.current) {
|
|
112661
|
+
isMounted.current = true;
|
|
112662
|
+
return;
|
|
112663
|
+
}
|
|
112664
|
+
if (isFiltersOpen) {
|
|
112665
|
+
const panel = filtersBodyId ? document.getElementById(filtersBodyId) : null;
|
|
112666
|
+
(_a = panel == null ? void 0 : panel.querySelector(FOCUSABLE_SELECTOR2)) == null ? void 0 : _a.focus();
|
|
112667
|
+
} else {
|
|
112668
|
+
(_b = buttonRef.current) == null ? void 0 : _b.focus();
|
|
112669
|
+
}
|
|
112670
|
+
}, [isFiltersOpen, filtersBodyId]);
|
|
112370
112671
|
if (!hasDefinedFilters) {
|
|
112371
112672
|
return null;
|
|
112372
112673
|
}
|
|
@@ -112379,46 +112680,37 @@ var FiltersPanelToggleButton = ({ hasSelectedFilters, hasDefinedFilters }) => {
|
|
|
112379
112680
|
/* @__PURE__ */ React80.createElement(
|
|
112380
112681
|
ToggleButton,
|
|
112381
112682
|
{
|
|
112683
|
+
ref: buttonRef,
|
|
112382
112684
|
"data-qa": "data-table-show-filters-button",
|
|
112383
112685
|
disabled: hasNoContent,
|
|
112384
112686
|
icon: /* @__PURE__ */ React80.createElement(FilterIcon, null),
|
|
112687
|
+
"aria-expanded": isFiltersOpen,
|
|
112688
|
+
"aria-controls": filtersPanelId,
|
|
112385
112689
|
onClick: () => {
|
|
112386
|
-
if (
|
|
112387
|
-
contextPanel.hide();
|
|
112388
|
-
} else {
|
|
112690
|
+
if (!isFiltersOpen) {
|
|
112389
112691
|
contextPanel.show("filters");
|
|
112692
|
+
} else {
|
|
112693
|
+
contextPanel.hide();
|
|
112390
112694
|
}
|
|
112391
112695
|
},
|
|
112392
|
-
selected:
|
|
112696
|
+
selected: isFiltersOpen
|
|
112393
112697
|
},
|
|
112394
|
-
|
|
112698
|
+
I18n.t("dataTable.filters.allFilters")
|
|
112395
112699
|
)
|
|
112396
112700
|
);
|
|
112397
112701
|
};
|
|
112398
112702
|
var ServerSideFiltersPanelToggleButton = () => {
|
|
112399
112703
|
const {
|
|
112400
|
-
filterStorage: { hasDefinedFilters
|
|
112704
|
+
filterStorage: { hasDefinedFilters }
|
|
112401
112705
|
} = useInternalTableContext();
|
|
112402
|
-
return /* @__PURE__ */ React80.createElement(
|
|
112403
|
-
FiltersPanelToggleButton,
|
|
112404
|
-
{
|
|
112405
|
-
hasDefinedFilters,
|
|
112406
|
-
hasSelectedFilters
|
|
112407
|
-
}
|
|
112408
|
-
);
|
|
112706
|
+
return /* @__PURE__ */ React80.createElement(FiltersPanelToggleButton, { hasDefinedFilters });
|
|
112409
112707
|
};
|
|
112410
112708
|
var ClientSideFiltersPanelToggleButton = () => {
|
|
112411
112709
|
const { filterState } = useInternalTableContext();
|
|
112412
|
-
const activeFilters = React80.useMemo(() => {
|
|
112413
|
-
return filterState.allAvailableFilters.filter(({ instance }) => {
|
|
112414
|
-
return instance.isFilterActive();
|
|
112415
|
-
});
|
|
112416
|
-
}, [filterState.allAvailableFilters]);
|
|
112417
112710
|
return /* @__PURE__ */ React80.createElement(
|
|
112418
112711
|
FiltersPanelToggleButton,
|
|
112419
112712
|
{
|
|
112420
|
-
hasDefinedFilters: filterState.allAvailableFilters.length > 0
|
|
112421
|
-
hasSelectedFilters: activeFilters.length > 0
|
|
112713
|
+
hasDefinedFilters: filterState.allAvailableFilters.length > 0
|
|
112422
112714
|
}
|
|
112423
112715
|
);
|
|
112424
112716
|
};
|