zigbee2mqtt-frontend 0.6.37 → 0.6.41
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/README.md +2 -2
- package/dist/225b8c008fbd33f5a9c4.png +0 -0
- package/dist/index.html +1 -1
- package/dist/{main.ce47becb879dfee13316.js → main.34bd7830a3129d1cb8c9.js} +354 -289
- package/dist/{main.3d1da3b8dbc50333ee92.css → main.7379448ff31d4e2a65b8.css} +70 -71
- package/dist/scripts/{vendor.656eb2e274bcb1ab9a03.js → vendor.fe0460b81c107166f365.js} +26254 -25535
- package/package.json +27 -27
@@ -1,7 +1,7 @@
|
|
1
1
|
"use strict";
|
2
2
|
(self["webpackChunkzigbee2mqtt_frontend"] = self["webpackChunkzigbee2mqtt_frontend"] || []).push([[179],{
|
3
3
|
|
4
|
-
/***/
|
4
|
+
/***/ 78484:
|
5
5
|
/***/ ((__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) => {
|
6
6
|
|
7
7
|
|
@@ -14,7 +14,7 @@ var stable = __webpack_require__(32377);
|
|
14
14
|
var react = __webpack_require__(67294);
|
15
15
|
;// CONCATENATED MODULE: ./src/components/map/map.css
|
16
16
|
// extracted by mini-css-extract-plugin
|
17
|
-
/* harmony default export */ const map = ({"container":"
|
17
|
+
/* harmony default export */ const map = ({"container":"yb4hX3vDSAIuH5XeiJcD","img":"mxnRnf3G34F4gxTqHbrF","node":"tsc23SWuIfPGVxsxSWhE","link":"PZyXZcDzWLD82Xp1Hvja","linkLabel":"S5F91KaT_vgsKupUo3QI","links":"J4Df_Wpf7ZyI1co1WmYp","nodes":"v8oBQdCcqoRLxRajz21V","EndDevice":"MGb_c4iII4KtrqUvHWCe","Coordinator":"jfE22e7iEq2A2k_TTQoa","Router":"oa2pzVpcOpiK9f9VjA6p","BrokenLink":"KGLiHjbZAZax1GD2fbD5","Coordinator2Router":"Wcb6orTIqLnmIv5S1m8S","Router2Coordinator":"dMZi1zlx1vTrGsnjIzmn","Router2Router":"UWocj8UQtVD6s1CD57Z9","Coordinator2EndDevice":"zSiDGiDZLZ9s3vqgSMy1","EndDevice2Coordinator":"nuKPZc_2OYn_evNbkc15","Router2EndDevice":"KgcjTFtrjDU7YuQtsAV9","EndDevice2Router":"I9z4ueytv8kL6GoGDYRg","foreignObject":"X09qB_ngkxDddMWdjFL_","offline":"WHCV9Yv8f3TVvfb73Hvp","controls":"YwrQbLB_b5HmUQ49UKKu"});
|
18
18
|
// EXTERNAL MODULE: ./node_modules/classnames/index.js
|
19
19
|
var classnames = __webpack_require__(94184);
|
20
20
|
var classnames_default = /*#__PURE__*/__webpack_require__.n(classnames);
|
@@ -77,6 +77,9 @@ const toHHMMSS = (secs) => {
|
|
77
77
|
.join(":");
|
78
78
|
};
|
79
79
|
const lastSeen = (state, lastSeenType) => {
|
80
|
+
if (!state.last_seen) {
|
81
|
+
return undefined;
|
82
|
+
}
|
80
83
|
switch (lastSeenType) {
|
81
84
|
case "ISO_8601":
|
82
85
|
case "ISO_8601_local":
|
@@ -160,7 +163,7 @@ const saveCurrentTheme = (theme) => localStorage.setItem('theme', theme);
|
|
160
163
|
|
161
164
|
;// CONCATENATED MODULE: ./src/components/device-image/style.css
|
162
165
|
// extracted by mini-css-extract-plugin
|
163
|
-
/* harmony default export */ const style = ({"img":"
|
166
|
+
/* harmony default export */ const style = ({"img":"WiMPBR4NwCHxYdIabzAA"});
|
164
167
|
// EXTERNAL MODULE: ./node_modules/react-i18next/dist/es/useTranslation.js
|
165
168
|
var useTranslation = __webpack_require__(26793);
|
166
169
|
;// CONCATENATED MODULE: ./src/components/device-image/index.tsx
|
@@ -250,10 +253,6 @@ const getStarShape = (innerCircleArms, innerRadius, outerRadius) => {
|
|
250
253
|
}
|
251
254
|
return points;
|
252
255
|
};
|
253
|
-
const offlineTimeout = (/* unused pure expression or super */ null && (3600 * 2));
|
254
|
-
const isOnline = (device) => {
|
255
|
-
return true;
|
256
|
-
};
|
257
256
|
class Node extends react.Component {
|
258
257
|
constructor() {
|
259
258
|
super(...arguments);
|
@@ -295,10 +294,10 @@ class Node extends react.Component {
|
|
295
294
|
}
|
296
295
|
render() {
|
297
296
|
const { hasBeenUpdated } = this.state;
|
298
|
-
const { node, deviceState, device } = this.props;
|
297
|
+
const { node, deviceState, device, avalilability } = this.props;
|
299
298
|
const { onMouseOver, onMouseOut, onDblClick } = this;
|
300
299
|
const deviceType = node.type;
|
301
|
-
const cn = classnames_default()(map.node, map[deviceType]);
|
300
|
+
const cn = classnames_default()(map.node, map[deviceType], { [map.offline]: avalilability === "offline" });
|
302
301
|
return (react.createElement("g", { className: cn, ref: this.ref, onMouseOver: onMouseOver, onMouseOut: onMouseOut, onDoubleClick: onDblClick },
|
303
302
|
node.type === "Coordinator" ? (react.createElement(react.Fragment, null,
|
304
303
|
react.createElement("circle", { cx: 15, cy: 16, r: 24, fill: "#fff", stroke: "blue", strokeWidth: 1 }),
|
@@ -347,8 +346,8 @@ class Nodes extends react.Component {
|
|
347
346
|
this.updateDrag();
|
348
347
|
}
|
349
348
|
render() {
|
350
|
-
const { nodes, onMouseOut, onMouseOver, deviceStates, devices } = this.props;
|
351
|
-
return (react.createElement("g", { className: map.nodes }, nodes.map((node) => (react.createElement(Node, { onMouseOut: onMouseOut, onMouseOver: onMouseOver, key: node.ieeeAddr, node: node, deviceState: deviceStates[node.friendlyName], device: devices[node.ieeeAddr] })))));
|
349
|
+
const { nodes, onMouseOut, onMouseOver, deviceStates, devices, avalilability } = this.props;
|
350
|
+
return (react.createElement("g", { className: map.nodes }, nodes.map((node) => (react.createElement(Node, { onMouseOut: onMouseOut, onMouseOver: onMouseOver, key: node.ieeeAddr, node: node, deviceState: deviceStates[node.friendlyName], device: devices[node.ieeeAddr], avalilability: avalilability[node.friendlyName] })))));
|
352
351
|
}
|
353
352
|
}
|
354
353
|
|
@@ -371,7 +370,7 @@ var unistore_es = __webpack_require__(72720);
|
|
371
370
|
// EXTERNAL MODULE: ./node_modules/unistore/devtools.js
|
372
371
|
var devtools = __webpack_require__(12512);
|
373
372
|
;// CONCATENATED MODULE: ./src/initialState.json
|
374
|
-
const initialState_namespaceObject = JSON.parse('{"devices":{},"deviceStates":{},"touchlinkDevices":[],"touchlinkScanInProgress":false,"touchlinkIdentifyInProgress":false,"touchlinkResetInProgress":false,"networkGraph":{"links":[],"nodes":[]},"networkGraphIsLoading":false,"groups":[],"bridgeState":"online","bridgeConfig":{},"bridgeInfo":{"configSchema":{"properties":{},"required":[]},"config":{"advanced":{}}},"logs":[],"extensions":[],"theme":"light","missingTranslations":{}}');
|
373
|
+
const initialState_namespaceObject = JSON.parse('{"devices":{},"deviceStates":{},"touchlinkDevices":[],"touchlinkScanInProgress":false,"touchlinkIdentifyInProgress":false,"touchlinkResetInProgress":false,"networkGraph":{"links":[],"nodes":[]},"networkGraphIsLoading":false,"groups":[],"bridgeState":"online","bridgeConfig":{},"bridgeInfo":{"configSchema":{"properties":{},"required":[]},"config":{"advanced":{}}},"logs":[],"extensions":[],"theme":"light","missingTranslations":{},"avalilability":{}}');
|
375
374
|
;// CONCATENATED MODULE: ./src/store.ts
|
376
375
|
|
377
376
|
|
@@ -394,6 +393,7 @@ const MAX_LOGS_RECORDS_IN_BUFFER = 100;
|
|
394
393
|
const TOKEN_LOCAL_STORAGE_ITEM_NAME = "z2m-token";
|
395
394
|
const AUTH_FLAG_LOCAL_STORAGE_ITEM_NAME = "z2m-auth";
|
396
395
|
const UNAUTHORIZED_ERROR_CODE = 4401;
|
396
|
+
const AVALIABILITY_FEATURE_TOPIC_ENDING = "/availability";
|
397
397
|
const notyf = new notyf_es/* Notyf */.Iq();
|
398
398
|
const blacklistedMessages = [
|
399
399
|
/MQTT publish/
|
@@ -411,13 +411,9 @@ const showNotity = (data) => {
|
|
411
411
|
level = data.level;
|
412
412
|
}
|
413
413
|
else if (isResponseWithStatus(data)) {
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
message = data.error;
|
418
|
-
break;
|
419
|
-
default:
|
420
|
-
break;
|
414
|
+
if (data.status === "error") {
|
415
|
+
level = "error";
|
416
|
+
message = data.error;
|
421
417
|
}
|
422
418
|
}
|
423
419
|
switch (level) {
|
@@ -464,6 +460,11 @@ class Api {
|
|
464
460
|
}
|
465
461
|
return url.toString();
|
466
462
|
};
|
463
|
+
this.processDeviceStateMessage = (data) => {
|
464
|
+
let { deviceStates } = src_store.getState();
|
465
|
+
deviceStates = { ...deviceStates, ...{ [data.topic]: { ...deviceStates[data.topic], ...data.payload } } };
|
466
|
+
src_store.setState({ deviceStates });
|
467
|
+
};
|
467
468
|
this.procsessBridgeMessage = (data) => {
|
468
469
|
switch (data.topic) {
|
469
470
|
case "bridge/config":
|
@@ -557,6 +558,12 @@ class Api {
|
|
557
558
|
this.resolvePromises(data.payload);
|
558
559
|
}
|
559
560
|
};
|
561
|
+
this.processAvailabilityMessage = (data) => {
|
562
|
+
let { avalilability } = src_store.getState();
|
563
|
+
const friendlyName = data.topic.split(AVALIABILITY_FEATURE_TOPIC_ENDING, 1)[0];
|
564
|
+
avalilability = { ...avalilability, ...{ [friendlyName]: data.payload } };
|
565
|
+
src_store.setState({ avalilability });
|
566
|
+
};
|
560
567
|
this.onClose = (e) => {
|
561
568
|
if (e.code === UNAUTHORIZED_ERROR_CODE) {
|
562
569
|
localStorage.setItem(AUTH_FLAG_LOCAL_STORAGE_ITEM_NAME, "true");
|
@@ -576,13 +583,14 @@ class Api {
|
|
576
583
|
notyf.error(e.message);
|
577
584
|
notyf.error(event.data);
|
578
585
|
}
|
579
|
-
if (data.topic.
|
586
|
+
if (data.topic.endsWith(AVALIABILITY_FEATURE_TOPIC_ENDING)) {
|
587
|
+
this.processAvailabilityMessage(data);
|
588
|
+
}
|
589
|
+
else if (data.topic.startsWith("bridge/")) {
|
580
590
|
this.procsessBridgeMessage(data);
|
581
591
|
}
|
582
592
|
else {
|
583
|
-
|
584
|
-
deviceStates = { ...deviceStates, ...{ [data.topic]: { ...deviceStates[data.topic], ...data.payload } } };
|
585
|
-
src_store.setState({ deviceStates });
|
593
|
+
this.processDeviceStateMessage(data);
|
586
594
|
}
|
587
595
|
};
|
588
596
|
this.url = url;
|
@@ -848,7 +856,7 @@ class BodyEnd extends react.Component {
|
|
848
856
|
constructor(props) {
|
849
857
|
super(props);
|
850
858
|
this.el = document.createElement('div');
|
851
|
-
'modal-backdrop fade show'.split(' ').
|
859
|
+
'modal-backdrop fade show'.split(' ').forEach(className => this.el.classList.add(className));
|
852
860
|
}
|
853
861
|
componentDidMount() {
|
854
862
|
document.body.appendChild(this.el);
|
@@ -979,32 +987,37 @@ const MODAL_COMPONENTS = {
|
|
979
987
|
[MODAL_TYPES.DIALOG_CONFIRMATION]: DialogConfirmationModal,
|
980
988
|
};
|
981
989
|
const initalState = {
|
982
|
-
showModal: () => {
|
983
|
-
|
990
|
+
showModal: () => {
|
991
|
+
},
|
992
|
+
hideModal: () => {
|
993
|
+
},
|
984
994
|
store: {},
|
985
995
|
};
|
986
996
|
const GlobalModalContext = (0,react.createContext)(initalState);
|
987
997
|
const useGlobalModalContext = () => (0,react.useContext)(GlobalModalContext);
|
988
998
|
const GlobalModal = ({ children }) => {
|
989
|
-
const [store, setStore] = (0,react.useState)();
|
990
|
-
const { modalType, modalProps } = store
|
991
|
-
const showModal = (
|
999
|
+
const [store, setStore] = (0,react.useState)({});
|
1000
|
+
const { modalType, modalProps } = store;
|
1001
|
+
const showModal = (t, p = {}) => {
|
992
1002
|
setStore({
|
993
1003
|
...store,
|
994
|
-
modalType,
|
995
|
-
modalProps,
|
1004
|
+
modalType: t,
|
1005
|
+
modalProps: p,
|
996
1006
|
});
|
997
1007
|
};
|
998
1008
|
const hideModal = () => {
|
999
1009
|
setStore({
|
1000
1010
|
...store,
|
1001
|
-
modalType:
|
1011
|
+
modalType: "",
|
1002
1012
|
modalProps: {},
|
1003
1013
|
});
|
1004
1014
|
};
|
1005
1015
|
const renderComponent = () => {
|
1016
|
+
if (!modalType) {
|
1017
|
+
return null;
|
1018
|
+
}
|
1006
1019
|
const ModalComponent = MODAL_COMPONENTS[modalType];
|
1007
|
-
if (!
|
1020
|
+
if (!ModalComponent) {
|
1008
1021
|
return null;
|
1009
1022
|
}
|
1010
1023
|
return react.createElement(ModalComponent, { id: "global-modal", ...modalProps });
|
@@ -1204,7 +1217,6 @@ class MapComponent extends react.Component {
|
|
1204
1217
|
zoomHandler(container);
|
1205
1218
|
processHighlights({ networkGraph, links, selectedNode, node, link, linkLabel });
|
1206
1219
|
node.on("click", (event, d) => {
|
1207
|
-
const { selectedNode } = this.state;
|
1208
1220
|
this.setState({ selectedNode: selectedNode ? null : d });
|
1209
1221
|
});
|
1210
1222
|
this.simulation.alphaTarget(0.03).restart();
|
@@ -1249,12 +1261,12 @@ class MapComponent extends react.Component {
|
|
1249
1261
|
}
|
1250
1262
|
renderMap() {
|
1251
1263
|
const { width, height, visibleLinks } = this.state;
|
1252
|
-
const { networkGraph, deviceStates, devices } = this.props;
|
1264
|
+
const { networkGraph, deviceStates, devices, avalilability } = this.props;
|
1253
1265
|
const links = networkGraph.links.filter(l => intersection_default()(visibleLinks, l.relationships).length > 0);
|
1254
1266
|
return (react.createElement("svg", { ref: this.svgRef, viewBox: `0 0 ${width} ${height}` },
|
1255
1267
|
react.createElement("g", { className: "everything" },
|
1256
1268
|
react.createElement(map_links, { links: links }),
|
1257
|
-
react.createElement(Nodes, { root: this.svgRef.current, nodes: networkGraph.nodes, simulation: this.simulation, deviceStates: deviceStates, devices: devices }))));
|
1269
|
+
react.createElement(Nodes, { root: this.svgRef.current, nodes: networkGraph.nodes, simulation: this.simulation, deviceStates: deviceStates, devices: devices, avalilability: avalilability }))));
|
1258
1270
|
}
|
1259
1271
|
renderMessage() {
|
1260
1272
|
const { networkGraphIsLoading, t } = this.props;
|
@@ -1298,7 +1310,7 @@ class MapComponent extends react.Component {
|
|
1298
1310
|
this.renderHelp()));
|
1299
1311
|
}
|
1300
1312
|
}
|
1301
|
-
const mappedProps = ["networkGraph", "networkGraphIsLoading", "deviceStates", "devices"];
|
1313
|
+
const mappedProps = ["networkGraph", "networkGraphIsLoading", "deviceStates", "devices", "avalilability"];
|
1302
1314
|
const ConnectedMap = (0,withTranslation/* withTranslation */.Z)("map")((0,unistore_react/* connect */.$)(mappedProps, actions_actions)(MapComponent));
|
1303
1315
|
/* harmony default export */ const components_map = (ConnectedMap);
|
1304
1316
|
|
@@ -1332,7 +1344,7 @@ const ConnectedDeviceControlGroup = (0,unistore_react/* connect */.$)(DeviceCont
|
|
1332
1344
|
|
1333
1345
|
;// CONCATENATED MODULE: ./src/components/device-page/style.css
|
1334
1346
|
// extracted by mini-css-extract-plugin
|
1335
|
-
/* harmony default export */ const device_page_style = ({"device-pic":"
|
1347
|
+
/* harmony default export */ const device_page_style = ({"device-pic":"HXScBg6AiKUgarOAPwEu","small-nav":"vw1dshYHCttAMoSva0X3"});
|
1336
1348
|
// EXTERNAL MODULE: ./node_modules/lodash/get.js
|
1337
1349
|
var get = __webpack_require__(27361);
|
1338
1350
|
var get_default = /*#__PURE__*/__webpack_require__.n(get);
|
@@ -1391,7 +1403,7 @@ const OTALink = (props) => {
|
|
1391
1403
|
|
1392
1404
|
;// CONCATENATED MODULE: ./src/components/power-source/style.css
|
1393
1405
|
// extracted by mini-css-extract-plugin
|
1394
|
-
/* harmony default export */ const power_source_style = ({"plug":"
|
1406
|
+
/* harmony default export */ const power_source_style = ({"plug":"xuLtgp30Xq3hNVI418MV"});
|
1395
1407
|
;// CONCATENATED MODULE: ./src/components/power-source/index.tsx
|
1396
1408
|
|
1397
1409
|
|
@@ -1522,6 +1534,216 @@ function DisplayValue(props) {
|
|
1522
1534
|
}
|
1523
1535
|
}
|
1524
1536
|
|
1537
|
+
;// CONCATENATED MODULE: ./src/components/zigbee/style.css
|
1538
|
+
// extracted by mini-css-extract-plugin
|
1539
|
+
/* harmony default export */ const zigbee_style = ({"action-column":"GDDPje7BU_a2CqHQQeRS","device-pic":"V7dffAiFpKHihMzFsuev","device-image":"NBzXAYfJkobb1Zfroqnt"});
|
1540
|
+
// EXTERNAL MODULE: ./node_modules/react-table/index.js
|
1541
|
+
var react_table = __webpack_require__(79521);
|
1542
|
+
// EXTERNAL MODULE: ./node_modules/local-storage/local-storage.js
|
1543
|
+
var local_storage = __webpack_require__(42222);
|
1544
|
+
// EXTERNAL MODULE: ./node_modules/lodash/debounce.js
|
1545
|
+
var debounce = __webpack_require__(23279);
|
1546
|
+
var debounce_default = /*#__PURE__*/__webpack_require__.n(debounce);
|
1547
|
+
;// CONCATENATED MODULE: ./src/components/grid/ReactTableCom.tsx
|
1548
|
+
|
1549
|
+
|
1550
|
+
|
1551
|
+
|
1552
|
+
|
1553
|
+
|
1554
|
+
function GlobalFilter({ globalFilter, setGlobalFilter, }) {
|
1555
|
+
const [value, setValue] = react.useState(globalFilter);
|
1556
|
+
const onChange = (0,react_table.useAsyncDebounce)(v => {
|
1557
|
+
setGlobalFilter(v || undefined);
|
1558
|
+
}, 200);
|
1559
|
+
const { t } = (0,useTranslation/* useTranslation */.$)(['common']);
|
1560
|
+
return (react.createElement("span", null,
|
1561
|
+
react.createElement("input", { value: value || "", onChange: e => {
|
1562
|
+
setValue(e.target.value);
|
1563
|
+
onChange(e.target.value);
|
1564
|
+
}, placeholder: t('common:enter_search_criteria'), className: "form-control" })));
|
1565
|
+
}
|
1566
|
+
const persist = debounce_default()((key, data) => {
|
1567
|
+
(0,local_storage.set)(key, data);
|
1568
|
+
});
|
1569
|
+
const stateReducer = (newState, action, previousState, instance) => {
|
1570
|
+
if (instance) {
|
1571
|
+
const { instanceId } = instance;
|
1572
|
+
const { sortBy, globalFilter } = newState;
|
1573
|
+
persist(instanceId, { sortBy, globalFilter });
|
1574
|
+
}
|
1575
|
+
return newState;
|
1576
|
+
};
|
1577
|
+
const Table = ({ columns, data, id }) => {
|
1578
|
+
const initialState = (0,local_storage.get)(id) || {};
|
1579
|
+
const { getTableProps, getTableBodyProps, headerGroups, rows, prepareRow, state, visibleColumns, setGlobalFilter, } = (0,react_table.useTable)({
|
1580
|
+
instanceId: id,
|
1581
|
+
stateReducer,
|
1582
|
+
columns,
|
1583
|
+
data,
|
1584
|
+
autoResetSortBy: false,
|
1585
|
+
autoResetFilters: false,
|
1586
|
+
initialState
|
1587
|
+
}, react_table.useGlobalFilter, react_table.useSortBy);
|
1588
|
+
return (react.createElement("table", { ...getTableProps(), className: "table responsive" },
|
1589
|
+
react.createElement("thead", null,
|
1590
|
+
react.createElement("tr", null,
|
1591
|
+
react.createElement("th", { colSpan: visibleColumns.length },
|
1592
|
+
react.createElement(GlobalFilter, { globalFilter: state.globalFilter, setGlobalFilter: setGlobalFilter }))),
|
1593
|
+
headerGroups.map((headerGroup) => (react.createElement("tr", { ...headerGroup.getHeaderGroupProps() }, headerGroup.headers.map(column => (react.createElement("th", { className: "text-nowrap", ...column.getHeaderProps(column.getSortByToggleProps()) },
|
1594
|
+
react.createElement("span", { className: classnames_default()({ 'btn-link mr-1': column.canSort }) }, column.render('Header')),
|
1595
|
+
react.createElement("span", null,
|
1596
|
+
react.createElement("i", { className: classnames_default()('fa', {
|
1597
|
+
'fa-sort-amount-down invisible': !column.isSorted,
|
1598
|
+
'fa-sort-amount-down-alt': column.isSorted && !column.isSortedDesc,
|
1599
|
+
'fa-sort-amount-down': column.isSorted && column.isSortedDesc,
|
1600
|
+
}) }))))))))),
|
1601
|
+
react.createElement("tbody", { ...getTableBodyProps() }, rows.map((row, i) => {
|
1602
|
+
prepareRow(row);
|
1603
|
+
return (react.createElement("tr", { ...row.getRowProps() }, row.cells.map(cell => react.createElement("td", { ...cell.getCellProps() }, cell.render('Cell')))));
|
1604
|
+
}))));
|
1605
|
+
};
|
1606
|
+
|
1607
|
+
;// CONCATENATED MODULE: ./src/components/zigbee/index.tsx
|
1608
|
+
|
1609
|
+
|
1610
|
+
|
1611
|
+
|
1612
|
+
|
1613
|
+
|
1614
|
+
|
1615
|
+
|
1616
|
+
|
1617
|
+
|
1618
|
+
|
1619
|
+
|
1620
|
+
|
1621
|
+
|
1622
|
+
|
1623
|
+
|
1624
|
+
function Avaliability(props) {
|
1625
|
+
const { t } = (0,useTranslation/* useTranslation */.$)(["zigbee"]);
|
1626
|
+
const { avaliability, enabled = true } = props;
|
1627
|
+
if (enabled) {
|
1628
|
+
return react.createElement("span", { className: classnames_default()({
|
1629
|
+
"text-danger animation-blinking": avaliability === "offline",
|
1630
|
+
'text-success': avaliability === "online"
|
1631
|
+
}) }, t(avaliability));
|
1632
|
+
}
|
1633
|
+
else {
|
1634
|
+
return react.createElement("a", { target: "_blank", rel: "noopener noreferrer", href: "https://www.zigbee2mqtt.io/guide/configuration/device-availability.html#availability-advanced-configuration" }, "N/A");
|
1635
|
+
}
|
1636
|
+
}
|
1637
|
+
function DevicesTable(props) {
|
1638
|
+
const { data, lastSeenType, availabilityFeatureEnabled } = props;
|
1639
|
+
const { t } = (0,useTranslation/* useTranslation */.$)(["zigbee", "common"]);
|
1640
|
+
const columns = [
|
1641
|
+
{
|
1642
|
+
id: 'rownumber',
|
1643
|
+
Header: '#',
|
1644
|
+
Cell: ({ row }) => react.createElement("div", { className: "font-weight-bold" }, row.index + 1),
|
1645
|
+
disableSortBy: true,
|
1646
|
+
},
|
1647
|
+
{
|
1648
|
+
id: 'pic',
|
1649
|
+
Header: t('pic'),
|
1650
|
+
Cell: ({ row: { original: { device, state } } }) => react.createElement(device_image, { className: zigbee_style["device-image"], device: device, deviceStatus: state }),
|
1651
|
+
accessor: rowData => rowData,
|
1652
|
+
disableSortBy: true,
|
1653
|
+
},
|
1654
|
+
{
|
1655
|
+
id: 'friendly_name',
|
1656
|
+
Header: t('friendly_name'),
|
1657
|
+
accessor: ({ device }) => device.friendly_name,
|
1658
|
+
Cell: ({ row: { original: { device } } }) => react.createElement(react_router_dom/* Link */.rU, { to: genDeviceDetailsLink(device.ieee_address) }, device.friendly_name)
|
1659
|
+
},
|
1660
|
+
{
|
1661
|
+
id: 'ieee_address',
|
1662
|
+
Header: t('ieee_address'),
|
1663
|
+
accessor: ({ device }) => [device.ieee_address, toHex(device.network_address, 4)].join(' '),
|
1664
|
+
Cell: ({ row: { original: { device } } }) => react.createElement(react.Fragment, null,
|
1665
|
+
device.ieee_address,
|
1666
|
+
" (",
|
1667
|
+
toHex(device.network_address, 4),
|
1668
|
+
")"),
|
1669
|
+
},
|
1670
|
+
{
|
1671
|
+
id: 'manufacturer',
|
1672
|
+
Header: t('manufacturer'),
|
1673
|
+
accessor: ({ device }) => { var _a; return [device.manufacturer, (_a = device.definition) === null || _a === void 0 ? void 0 : _a.vendor].join(' '); },
|
1674
|
+
Cell: ({ row: { original: { device } } }) => react.createElement(VendorLink, { device: device })
|
1675
|
+
},
|
1676
|
+
{
|
1677
|
+
id: 'model',
|
1678
|
+
Header: t('model'),
|
1679
|
+
accessor: ({ device }) => { var _a; return [device.model_id, (_a = device.definition) === null || _a === void 0 ? void 0 : _a.model].join(' '); },
|
1680
|
+
Cell: ({ row: { original: { device } } }) => react.createElement(ModelLink, { device: device })
|
1681
|
+
},
|
1682
|
+
{
|
1683
|
+
id: 'lqi',
|
1684
|
+
Header: t('lqi'),
|
1685
|
+
accessor: ({ state }) => state.linkquality,
|
1686
|
+
Cell: ({ row: { original: { state } } }) => react.createElement(DisplayValue, { value: state.linkquality, name: "linkquality" }),
|
1687
|
+
},
|
1688
|
+
...(lastSeenType !== "disable" ? [{
|
1689
|
+
id: 'last_seen',
|
1690
|
+
Header: t('last_seen'),
|
1691
|
+
accessor: ({ state }) => { var _a; return (_a = lastSeen(state, lastSeenType)) === null || _a === void 0 ? void 0 : _a.getTime(); },
|
1692
|
+
Cell: ({ row: { original: { state } } }) => react.createElement(LastSeen, { state: state, lastSeenType: lastSeenType }),
|
1693
|
+
}] : []),
|
1694
|
+
...(availabilityFeatureEnabled ? [{
|
1695
|
+
id: 'avaliability',
|
1696
|
+
Header: t('avaliability'),
|
1697
|
+
accessor: ({ avalilabilityState }) => avalilabilityState,
|
1698
|
+
Cell: ({ row: { original: { avalilabilityState } } }) => react.createElement(Avaliability, { avaliability: avalilabilityState }),
|
1699
|
+
}] : []),
|
1700
|
+
{
|
1701
|
+
id: 'power',
|
1702
|
+
Header: t('power'),
|
1703
|
+
accessor: ({ device }) => device.power_source,
|
1704
|
+
Cell: ({ row: { original: { state, device } } }) => react.createElement(power_source, { source: device.power_source, battery: state.battery, batteryLow: state.battery_low }),
|
1705
|
+
},
|
1706
|
+
{
|
1707
|
+
id: 'controls',
|
1708
|
+
Header: '',
|
1709
|
+
Cell: ({ row: { original: { device, state } } }) => react.createElement(device_control_DeviceControlGroup, { device: device, state: state }),
|
1710
|
+
disableSortBy: true,
|
1711
|
+
}
|
1712
|
+
];
|
1713
|
+
return (react.createElement("div", { className: "card" },
|
1714
|
+
react.createElement("div", { className: "table-responsive" },
|
1715
|
+
react.createElement(Table, { id: "zigbee", columns: columns, data: data }))));
|
1716
|
+
}
|
1717
|
+
function ZigbeeTable(props) {
|
1718
|
+
const { devices, deviceStates, bridgeInfo, avalilability } = props;
|
1719
|
+
const availabilityFeatureEnabled = !!bridgeInfo.config.availability;
|
1720
|
+
const getDevicesToRender = () => {
|
1721
|
+
return Object.values(devices)
|
1722
|
+
.filter(device => device.type !== "Coordinator")
|
1723
|
+
.map((device) => {
|
1724
|
+
var _a, _b;
|
1725
|
+
const state = (_a = deviceStates[device.friendly_name]) !== null && _a !== void 0 ? _a : {};
|
1726
|
+
return {
|
1727
|
+
id: device.friendly_name,
|
1728
|
+
device,
|
1729
|
+
state,
|
1730
|
+
avalilabilityState: (_b = avalilability[device.friendly_name]) !== null && _b !== void 0 ? _b : "offline"
|
1731
|
+
};
|
1732
|
+
});
|
1733
|
+
};
|
1734
|
+
const data = react.useMemo(() => getDevicesToRender(), [devices, deviceStates]);
|
1735
|
+
if (Object.keys(data).length) {
|
1736
|
+
return react.createElement(DevicesTable, { data: data, lastSeenType: bridgeInfo.config.advanced.last_seen, availabilityFeatureEnabled: availabilityFeatureEnabled });
|
1737
|
+
}
|
1738
|
+
else {
|
1739
|
+
return (react.createElement("div", { className: "h-100 d-flex justify-content-center align-items-center" },
|
1740
|
+
react.createElement(spinner, null)));
|
1741
|
+
}
|
1742
|
+
}
|
1743
|
+
const zigbee_mappedProps = ["devices", "deviceStates", "bridgeInfo", "avalilability"];
|
1744
|
+
const ConnectedZigbeePage = (0,withTranslation/* withTranslation */.Z)(["zigbee", "common"])((0,unistore_react/* connect */.$)(zigbee_mappedProps, actions_actions)(ZigbeeTable));
|
1745
|
+
/* harmony default export */ const zigbee = (ConnectedZigbeePage);
|
1746
|
+
|
1525
1747
|
;// CONCATENATED MODULE: ./src/components/device-page/info.tsx
|
1526
1748
|
|
1527
1749
|
|
@@ -1536,6 +1758,7 @@ function DisplayValue(props) {
|
|
1536
1758
|
|
1537
1759
|
|
1538
1760
|
|
1761
|
+
|
1539
1762
|
const markdownLinkRegex = /\[(.*?)\]\((.*?)\)/;
|
1540
1763
|
const displayProps = [
|
1541
1764
|
{
|
@@ -1548,6 +1771,14 @@ const displayProps = [
|
|
1548
1771
|
render: (device, state, bridgeInfo) => react.createElement("dd", { className: "col-12 col-md-7" },
|
1549
1772
|
react.createElement(LastSeen, { lastSeenType: bridgeInfo.config.advanced.last_seen, state: state })),
|
1550
1773
|
},
|
1774
|
+
{
|
1775
|
+
translationKey: 'avaliability',
|
1776
|
+
render: (device, state, bridgeInfo, availability) => {
|
1777
|
+
const availabilityFeatureEnabled = !!bridgeInfo.config.availability;
|
1778
|
+
return react.createElement("dd", { className: "col-12 col-md-7" },
|
1779
|
+
react.createElement(Avaliability, { avaliability: availability, enabled: availabilityFeatureEnabled }));
|
1780
|
+
},
|
1781
|
+
},
|
1551
1782
|
{
|
1552
1783
|
key: 'type',
|
1553
1784
|
translationKey: 'device_type'
|
@@ -1628,19 +1859,22 @@ const displayProps = [
|
|
1628
1859
|
class DeviceInfo extends react.Component {
|
1629
1860
|
render() {
|
1630
1861
|
var _a;
|
1631
|
-
const { device, deviceStates, bridgeInfo, t } = this.props;
|
1862
|
+
const { device, deviceStates, bridgeInfo, avalilability, t } = this.props;
|
1632
1863
|
const deviceState = (_a = deviceStates[device.friendly_name]) !== null && _a !== void 0 ? _a : {};
|
1633
1864
|
return (react.createElement(react.Fragment, null,
|
1634
1865
|
react.createElement("div", { className: "d-flex justify-content-center" },
|
1635
1866
|
react.createElement(device_image, { className: `card-img-top w-auto ${device_page_style["device-pic"]}`, device: device, deviceStatus: deviceState })),
|
1636
|
-
react.createElement("dl", { className: "row" }, displayProps.filter(prop => prop.if === undefined || get_default()(device, prop.if, false)).map(prop =>
|
1637
|
-
|
1638
|
-
prop.
|
1639
|
-
|
1867
|
+
react.createElement("dl", { className: "row" }, displayProps.filter(prop => prop.if === undefined || get_default()(device, prop.if, false)).map(prop => {
|
1868
|
+
var _a;
|
1869
|
+
return (react.createElement(react.Fragment, { key: prop.translationKey },
|
1870
|
+
react.createElement("dt", { className: "col-12 col-md-5" }, t(prop.translationKey)),
|
1871
|
+
prop.render ?
|
1872
|
+
prop.render(device, deviceState, bridgeInfo, (_a = avalilability[device.friendly_name]) !== null && _a !== void 0 ? _a : 'offline') : react.createElement("dd", { className: "col-12 col-md-7" }, get_default()(device, prop.key))));
|
1873
|
+
})),
|
1640
1874
|
react.createElement(device_control_DeviceControlGroup, { device: device, state: deviceState })));
|
1641
1875
|
}
|
1642
1876
|
}
|
1643
|
-
const info_mappedProps = ["deviceStates", "bridgeInfo"];
|
1877
|
+
const info_mappedProps = ["deviceStates", "bridgeInfo", "avalilability"];
|
1644
1878
|
const ConnectedDeviceInfoPage = (0,withTranslation/* withTranslation */.Z)("zigbee")((0,unistore_react/* connect */.$)(info_mappedProps)(DeviceInfo));
|
1645
1879
|
/* harmony default export */ const info = (ConnectedDeviceInfoPage);
|
1646
1880
|
|
@@ -1652,12 +1886,12 @@ function DevicePicker(props) {
|
|
1652
1886
|
const { t } = (0,useTranslation/* useTranslation */.$)("common");
|
1653
1887
|
const { devices, value, label, onChange, groups = [], ...rest } = props;
|
1654
1888
|
const onSelectHandler = (e) => {
|
1655
|
-
const { value } = e.target;
|
1656
|
-
if (devices[
|
1657
|
-
onChange(devices[
|
1889
|
+
const { value: selectedValue } = e.target;
|
1890
|
+
if (devices[selectedValue]) {
|
1891
|
+
onChange(devices[selectedValue], "device");
|
1658
1892
|
}
|
1659
1893
|
else {
|
1660
|
-
const group = groups.find(g => parseInt(
|
1894
|
+
const group = groups.find(g => parseInt(selectedValue, 10) === g.id);
|
1661
1895
|
onChange(group, "group");
|
1662
1896
|
}
|
1663
1897
|
};
|
@@ -1689,8 +1923,7 @@ function EndpointPicker(props) {
|
|
1689
1923
|
const { value, values, disabled, onChange, label, ...rest } = props;
|
1690
1924
|
const { t } = (0,useTranslation/* useTranslation */.$)("common");
|
1691
1925
|
const onSelectHandler = (e) => {
|
1692
|
-
|
1693
|
-
onChange(value);
|
1926
|
+
onChange(e.target.value);
|
1694
1927
|
};
|
1695
1928
|
const hasOnlyOneEP = values.length == 1;
|
1696
1929
|
const options = values.map(ep => react.createElement("option", { key: ep, value: ep }, ep));
|
@@ -1723,7 +1956,7 @@ function MultiPicker(props) {
|
|
1723
1956
|
console.warn("Not implemented");
|
1724
1957
|
}
|
1725
1958
|
else {
|
1726
|
-
options = clusters.sort((a, b) => a.localeCompare(b)).map(cluster => {
|
1959
|
+
options = [...clusters].sort((a, b) => a.localeCompare(b)).map(cluster => {
|
1727
1960
|
var _a;
|
1728
1961
|
return (react.createElement("div", { key: cluster, className: "form-check form-check-inline" },
|
1729
1962
|
react.createElement("input", { className: "form-check-input", type: "checkbox", checked: value.includes(cluster), name: cluster, id: `${pickerId}_${cluster}`, value: cluster, onChange: onChangeHandler, disabled: disabled }),
|
@@ -1746,8 +1979,7 @@ function SinglePicker(props) {
|
|
1746
1979
|
const { t } = (0,useTranslation/* useTranslation */.$)(["zigbee", "common"]);
|
1747
1980
|
const options = [react.createElement("option", { key: "hidden", hidden: true }, t('select_cluster'))];
|
1748
1981
|
const onChangeHandler = (e) => {
|
1749
|
-
|
1750
|
-
onChange(value);
|
1982
|
+
onChange(e.target.value);
|
1751
1983
|
};
|
1752
1984
|
if (isClusterGroup(clusters)) {
|
1753
1985
|
clusters.forEach(group => {
|
@@ -1986,7 +2218,7 @@ const convertBidningsIntoNiceStructure = (device) => {
|
|
1986
2218
|
};
|
1987
2219
|
function Bind(props) {
|
1988
2220
|
const { device, devices, groups, removeBind, addBind } = props;
|
1989
|
-
const [newBindingRule
|
2221
|
+
const [newBindingRule] = (0,react.useState)({ isNew: Date.now(), target: {}, source: { 'ieee_address': device.ieee_address, endpoint: "" }, clusters: [] });
|
1990
2222
|
const bidingRules = convertBidningsIntoNiceStructure(device);
|
1991
2223
|
return react.createElement("div", { className: "container-fluid" }, [...bidingRules, newBindingRule]
|
1992
2224
|
.map((rule, idx) => react.createElement(bind_row, { key: rule2key(rule), rule: rule, groups: groups, onUnBind: removeBind, onBind: addBind, device: device, idx: idx, devices: devices })));
|
@@ -2009,10 +2241,10 @@ function AttributePicker(props) {
|
|
2009
2241
|
const { cluster, onChange, label, value, ...rest } = props;
|
2010
2242
|
const { t } = (0,useTranslation/* useTranslation */.$)("zigbee");
|
2011
2243
|
const onChangeHandler = (e) => {
|
2012
|
-
const { value } = e.target;
|
2244
|
+
const { value: inputValue } = e.target;
|
2013
2245
|
const currentCluster = (cluster_default())[cluster];
|
2014
|
-
const attributeInfo = currentCluster.attributes[
|
2015
|
-
onChange(
|
2246
|
+
const attributeInfo = currentCluster.attributes[inputValue];
|
2247
|
+
onChange(inputValue, attributeInfo);
|
2016
2248
|
};
|
2017
2249
|
let attrs = [];
|
2018
2250
|
const clusterDefinition = (cluster_default())[cluster];
|
@@ -2167,7 +2399,7 @@ const reporting_convertBidningsIntoNiceStructure = (device) => {
|
|
2167
2399
|
const reporting_rule2key = (rule) => `${rule.isNew}${rule.endpoint}${rule.cluster}-${rule.attribute}`;
|
2168
2400
|
function Reporting(props) {
|
2169
2401
|
const { configureReport, device } = props;
|
2170
|
-
const [newReportingRule
|
2402
|
+
const [newReportingRule] = (0,react.useState)({ isNew: Date.now(), reportable_change: 0, minimum_report_interval: 60, maximum_report_interval: 3600, endpoint: "", cluster: "", attribute: "" });
|
2171
2403
|
const onApply = (rule) => {
|
2172
2404
|
const { cluster, endpoint, attribute, minimum_report_interval, maximum_report_interval, reportable_change } = rule;
|
2173
2405
|
configureReport(`${device.friendly_name}/${endpoint}`, {
|
@@ -2354,7 +2586,7 @@ const toRGB = (source, sourceFormat) => {
|
|
2354
2586
|
const rgbToTargetFormat = (source, targetFormat) => {
|
2355
2587
|
switch (targetFormat) {
|
2356
2588
|
case "color_hs":
|
2357
|
-
const [hue, saturation
|
2589
|
+
const [hue, saturation] = color_convert.hex.hsv(source);
|
2358
2590
|
return { hue, saturation };
|
2359
2591
|
case "color_xy":
|
2360
2592
|
const [X, Y, Z] = color_convert.hex.xyz(source);
|
@@ -2425,7 +2657,7 @@ const EnumEditor = (props) => {
|
|
2425
2657
|
|
2426
2658
|
const VERY_BIG_ENUM_SIZE = 4;
|
2427
2659
|
const Enum = (props) => {
|
2428
|
-
const { onChange, feature: { access = FeatureAccessMode.ACCESS_WRITE,
|
2660
|
+
const { onChange, feature: { access = FeatureAccessMode.ACCESS_WRITE, values, endpoint, property }, deviceState, minimal } = props;
|
2429
2661
|
const thisIsVeryBigEnumeration = values.length > VERY_BIG_ENUM_SIZE;
|
2430
2662
|
if (access & FeatureAccessMode.ACCESS_WRITE) {
|
2431
2663
|
return react.createElement(enum_editor, { onChange: (value) => onChange(endpoint, { [property]: value }), values: values, value: deviceState[property], minimal: minimal || thisIsVeryBigEnumeration });
|
@@ -2484,7 +2716,7 @@ const RangeEditor = (props) => {
|
|
2484
2716
|
|
2485
2717
|
const Numeric = (props) => {
|
2486
2718
|
var _a;
|
2487
|
-
const { feature: { presets, access = FeatureAccessMode.ACCESS_WRITE, endpoint,
|
2719
|
+
const { feature: { presets, access = FeatureAccessMode.ACCESS_WRITE, endpoint, property, unit, value_max: valueMax, value_min: valueMin }, deviceState, steps, onChange, minimal } = props;
|
2488
2720
|
if (access & FeatureAccessMode.ACCESS_WRITE) {
|
2489
2721
|
return react.createElement(range_editor, { onChange: (value) => onChange(endpoint, { [property]: value }), value: (_a = deviceState[property]) !== null && _a !== void 0 ? _a : 0, min: valueMin, max: valueMax, steps: presets && presets.length ? presets : steps, unit: unit, minimal: minimal });
|
2490
2722
|
}
|
@@ -2518,7 +2750,7 @@ const TextualEditor = (props) => {
|
|
2518
2750
|
|
2519
2751
|
const Textual = (props) => {
|
2520
2752
|
var _a;
|
2521
|
-
const { feature: { access = FeatureAccessMode.ACCESS_WRITE, endpoint,
|
2753
|
+
const { feature: { access = FeatureAccessMode.ACCESS_WRITE, endpoint, property }, deviceState, onChange } = props;
|
2522
2754
|
if (access & FeatureAccessMode.ACCESS_WRITE) {
|
2523
2755
|
return react.createElement(textual_editor, { onChange: (value) => onChange(endpoint, { [property]: value }), value: (_a = deviceState[property]) !== null && _a !== void 0 ? _a : "" });
|
2524
2756
|
}
|
@@ -2667,7 +2899,7 @@ class Composite extends react.Component {
|
|
2667
2899
|
const featuresGroup = groupedFeatures[epName];
|
2668
2900
|
result.push(react.createElement("div", { key: epName },
|
2669
2901
|
showEndpointLabels ? `Endpoint: ${epName}` : null,
|
2670
|
-
react.createElement("div", { className: "ps-4" }, featuresGroup.map(f => react.createElement(Feature, { key: f.name + f.endpoint, feature: f, device: device, deviceState: deviceState, onChange: this.onChange, onRead: this.onRead, featureWrapperClass: featureWrapperClass, minimal: minimal })))));
|
2902
|
+
react.createElement("div", { className: "ps-4" }, ...featuresGroup.map(f => react.createElement(Feature, { key: f.name + f.endpoint, feature: f, device: device, deviceState: deviceState, onChange: this.onChange, onRead: this.onRead, featureWrapperClass: featureWrapperClass, minimal: minimal })))));
|
2671
2903
|
}
|
2672
2904
|
}
|
2673
2905
|
else {
|
@@ -2736,7 +2968,7 @@ const ConnectedDeviceExposes = (0,unistore_react/* connect */.$)(exposes_mappedP
|
|
2736
2968
|
|
2737
2969
|
;// CONCATENATED MODULE: ./src/components/device-page/tree.css
|
2738
2970
|
// extracted by mini-css-extract-plugin
|
2739
|
-
/* harmony default export */ const tree = ({"tree":"
|
2971
|
+
/* harmony default export */ const tree = ({"tree":"FWgUNFiIFeuhFA_je2bz"});
|
2740
2972
|
;// CONCATENATED MODULE: ./src/components/device-page/clusters.tsx
|
2741
2973
|
|
2742
2974
|
|
@@ -2958,8 +3190,7 @@ function ScenePicker(props) {
|
|
2958
3190
|
const { t } = (0,useTranslation/* useTranslation */.$)("scene");
|
2959
3191
|
const { onSceneSelected, scenes = [], value } = props;
|
2960
3192
|
const onSelectHandler = (e) => {
|
2961
|
-
const
|
2962
|
-
const [id, endpoint] = value.split("-");
|
3193
|
+
const [id, endpoint] = e.target.value.split("-");
|
2963
3194
|
onSceneSelected({ id: parseInt(id, 10), endpoint });
|
2964
3195
|
};
|
2965
3196
|
const selectPicker = react.createElement(react.Fragment, null,
|
@@ -2975,7 +3206,6 @@ function ScenePicker(props) {
|
|
2975
3206
|
function getScenes(target) {
|
2976
3207
|
if (target.endpoints) {
|
2977
3208
|
const scenes = [];
|
2978
|
-
let endpoint;
|
2979
3209
|
Object.entries(target.endpoints).forEach(([endpoint, value]) => {
|
2980
3210
|
for (let _scene of value.scenes) {
|
2981
3211
|
scenes.push({
|
@@ -2991,7 +3221,7 @@ function getScenes(target) {
|
|
2991
3221
|
return [];
|
2992
3222
|
}
|
2993
3223
|
function RecallRemove(props) {
|
2994
|
-
const { sceneRecall, sceneRemove,
|
3224
|
+
const { sceneRecall, sceneRemove, sceneRemoveAll, target } = props;
|
2995
3225
|
const { t } = (0,useTranslation/* useTranslation */.$)("scene");
|
2996
3226
|
const [scene, setScene] = (0,react.useState)({ id: 0, endpoint: undefined });
|
2997
3227
|
const sceneIsntSelected = scene.id === undefined;
|
@@ -3049,7 +3279,8 @@ function AddScene(props) {
|
|
3049
3279
|
react.createElement("input", { id: "add-scene-name", className: "form-control", value: sceneName, type: "string", onChange: (e) => setSceneName(e.target.value), placeholder: defaultSceneName }),
|
3050
3280
|
react.createElement(composite, { feature: { features: filteredFeatures }, className: "row", type: "composite", device: target, deviceState: deviceState, onChange: (endpoint, value) => {
|
3051
3281
|
setDeviceState(`${target.friendly_name}${endpoint ? `/${endpoint}` : ''}`, value);
|
3052
|
-
}, onRead: () => {
|
3282
|
+
}, onRead: () => {
|
3283
|
+
}, featureWrapperClass: DashboardFeatureWrapper, minimal: true })),
|
3053
3284
|
react.createElement("div", { className: "d-flex" },
|
3054
3285
|
react.createElement("button", { disabled: !isValidSceneId(sceneId, scenes), type: "submit", onClick: () => sceneStore(target.friendly_name, { id: sceneId, name: sceneName || defaultSceneName }), className: "btn btn-primary ms-auto" }, t('store'))));
|
3055
3286
|
}
|
@@ -3079,7 +3310,7 @@ var set = __webpack_require__(36968);
|
|
3079
3310
|
var set_default = /*#__PURE__*/__webpack_require__.n(set);
|
3080
3311
|
;// CONCATENATED MODULE: ./src/components/logs-page/log-level-config.css
|
3081
3312
|
// extracted by mini-css-extract-plugin
|
3082
|
-
/* harmony default export */ const log_level_config = ({"hide-description":"
|
3313
|
+
/* harmony default export */ const log_level_config = ({"hide-description":"GANQUsVRLFTOvi6kYVZ8"});
|
3083
3314
|
;// CONCATENATED MODULE: ./src/components/logs-page/log-level-config.tsx
|
3084
3315
|
|
3085
3316
|
|
@@ -3091,9 +3322,8 @@ function ConfigureLogs(props) {
|
|
3091
3322
|
const formData = get_default()(config, configKey, {});
|
3092
3323
|
const _schema = get_default()(schema, schemaKey, {});
|
3093
3324
|
const handleChange = (params) => {
|
3094
|
-
const { formData } = params;
|
3095
3325
|
const payload = {};
|
3096
|
-
set_default()(payload, configKey, formData);
|
3326
|
+
set_default()(payload, configKey, params.formData);
|
3097
3327
|
onChange(payload);
|
3098
3328
|
};
|
3099
3329
|
return react.createElement(bootstrap_4_esm/* default */.ZP, { schema: _schema, className: log_level_config["hide-description"], formData: formData, onChange: handleChange },
|
@@ -3326,7 +3556,8 @@ function DeviceSpecificSettings(props) {
|
|
3326
3556
|
if ((_c = (_b = device.definition) === null || _b === void 0 ? void 0 : _b.options) === null || _c === void 0 ? void 0 : _c.length) {
|
3327
3557
|
return react.createElement(composite, { showEndpointLabels: true, feature: { features: device.definition.options }, type: "composite", device: device, deviceState: deviceState, onChange: async (endpoint, value) => {
|
3328
3558
|
await setDeviceOptions(device.ieee_address, value);
|
3329
|
-
}, onRead: (endpoint, value) => {
|
3559
|
+
}, onRead: (endpoint, value) => {
|
3560
|
+
}, featureWrapperClass: FeatureWrapper });
|
3330
3561
|
}
|
3331
3562
|
else {
|
3332
3563
|
return t('empty_exposes_definition');
|
@@ -3449,72 +3680,6 @@ const device_page_mappedProps = ["devices", "deviceStates", "logs", "bridgeInfo"
|
|
3449
3680
|
const ConnectedDevicePage = (0,withTranslation/* withTranslation */.Z)("devicePage")((0,unistore_react/* connect */.$)(device_page_mappedProps, actions_actions)(devicePageWithRouter));
|
3450
3681
|
/* harmony default export */ const device_page = (ConnectedDevicePage);
|
3451
3682
|
|
3452
|
-
// EXTERNAL MODULE: ./node_modules/react-table/index.js
|
3453
|
-
var react_table = __webpack_require__(79521);
|
3454
|
-
// EXTERNAL MODULE: ./node_modules/local-storage/local-storage.js
|
3455
|
-
var local_storage = __webpack_require__(42222);
|
3456
|
-
// EXTERNAL MODULE: ./node_modules/lodash/debounce.js
|
3457
|
-
var debounce = __webpack_require__(23279);
|
3458
|
-
var debounce_default = /*#__PURE__*/__webpack_require__.n(debounce);
|
3459
|
-
;// CONCATENATED MODULE: ./src/components/grid/ReactTableCom.tsx
|
3460
|
-
|
3461
|
-
|
3462
|
-
|
3463
|
-
|
3464
|
-
|
3465
|
-
|
3466
|
-
function GlobalFilter({ globalFilter, setGlobalFilter, }) {
|
3467
|
-
const [value, setValue] = react.useState(globalFilter);
|
3468
|
-
const onChange = (0,react_table.useAsyncDebounce)(value => {
|
3469
|
-
setGlobalFilter(value || undefined);
|
3470
|
-
}, 200);
|
3471
|
-
const { t } = (0,useTranslation/* useTranslation */.$)(['common']);
|
3472
|
-
return (react.createElement("span", null,
|
3473
|
-
react.createElement("input", { value: value || "", onChange: e => {
|
3474
|
-
setValue(e.target.value);
|
3475
|
-
onChange(e.target.value);
|
3476
|
-
}, placeholder: t('common:enter_search_criteria'), className: "form-control" })));
|
3477
|
-
}
|
3478
|
-
const persist = debounce_default()((key, data) => {
|
3479
|
-
(0,local_storage.set)(key, data);
|
3480
|
-
});
|
3481
|
-
const stateReducer = (newState, action, previousState, instance) => {
|
3482
|
-
if (instance) {
|
3483
|
-
const { instanceId } = instance;
|
3484
|
-
const { sortBy, globalFilter } = newState;
|
3485
|
-
persist(instanceId, { sortBy, globalFilter });
|
3486
|
-
}
|
3487
|
-
return newState;
|
3488
|
-
};
|
3489
|
-
const Table = ({ columns, data, id }) => {
|
3490
|
-
const initialState = (0,local_storage.get)(id) || {};
|
3491
|
-
const { getTableProps, getTableBodyProps, headerGroups, rows, prepareRow, state, visibleColumns, setGlobalFilter, } = (0,react_table.useTable)({
|
3492
|
-
instanceId: id,
|
3493
|
-
stateReducer,
|
3494
|
-
columns,
|
3495
|
-
data,
|
3496
|
-
autoResetSortBy: false,
|
3497
|
-
autoResetFilters: false,
|
3498
|
-
initialState
|
3499
|
-
}, react_table.useGlobalFilter, react_table.useSortBy);
|
3500
|
-
return (react.createElement("table", { ...getTableProps(), className: "table responsive" },
|
3501
|
-
react.createElement("thead", null,
|
3502
|
-
react.createElement("tr", null,
|
3503
|
-
react.createElement("th", { colSpan: visibleColumns.length },
|
3504
|
-
react.createElement(GlobalFilter, { globalFilter: state.globalFilter, setGlobalFilter: setGlobalFilter }))),
|
3505
|
-
headerGroups.map((headerGroup) => (react.createElement("tr", { ...headerGroup.getHeaderGroupProps() }, headerGroup.headers.map(column => (react.createElement("th", { ...column.getHeaderProps(column.getSortByToggleProps()) },
|
3506
|
-
react.createElement("span", { className: classnames_default()({ 'btn btn-link': column.canSort }) }, column.render('Header')),
|
3507
|
-
react.createElement("span", null, column.isSorted
|
3508
|
-
? column.isSortedDesc
|
3509
|
-
? react.createElement("i", { className: `fa fa-sort-amount-down-alt` })
|
3510
|
-
: react.createElement("i", { className: `fa fa-sort-amount-down` })
|
3511
|
-
: react.createElement("i", { className: `fa fa-sort-amount-down invisible` }))))))))),
|
3512
|
-
react.createElement("tbody", { ...getTableBodyProps() }, rows.map((row, i) => {
|
3513
|
-
prepareRow(row);
|
3514
|
-
return (react.createElement("tr", { ...row.getRowProps() }, row.cells.map(cell => react.createElement("td", { ...cell.getCellProps() }, cell.render('Cell')))));
|
3515
|
-
}))));
|
3516
|
-
};
|
3517
|
-
|
3518
3683
|
;// CONCATENATED MODULE: ./src/components/touchlink-page/index.tsx
|
3519
3684
|
|
3520
3685
|
|
@@ -3789,7 +3954,7 @@ class SettingsPage extends react.Component {
|
|
3789
3954
|
zigbee2mqttCommit) },
|
3790
3955
|
{ translationKey: 'coordinator_type', content: react.createElement(react.Fragment, null, (_c = (_b = bridgeInfo.coordinator) === null || _b === void 0 ? void 0 : _b.type) !== null && _c !== void 0 ? _c : t('common:unknown')) },
|
3791
3956
|
{ translationKey: 'coordinator_revision', content: react.createElement(react.Fragment, null, (_f = (_e = (_d = bridgeInfo.coordinator) === null || _d === void 0 ? void 0 : _d.meta) === null || _e === void 0 ? void 0 : _e.revision) !== null && _f !== void 0 ? _f : t('common:unknown')) },
|
3792
|
-
{ translationKey: 'frontend_version', content: "0.6.
|
3957
|
+
{ translationKey: 'frontend_version', content: "0.6.41" },
|
3793
3958
|
{ translationKey: 'stats', content: react.createElement(Stats, { devices: devices }) },
|
3794
3959
|
];
|
3795
3960
|
return react.createElement("div", { className: "p-3" }, rows.map(row => react.createElement("dl", { key: row.translationKey, className: "row" },
|
@@ -3898,7 +4063,7 @@ function useComponentVisible(initialIsVisible) {
|
|
3898
4063
|
|
3899
4064
|
;// CONCATENATED MODULE: ./src/components/navbar/style.css
|
3900
4065
|
// extracted by mini-css-extract-plugin
|
3901
|
-
/* harmony default export */ const navbar_style = ({"scrollable-menu":"
|
4066
|
+
/* harmony default export */ const navbar_style = ({"scrollable-menu":"qxSGpctw110fEKnXaZ77"});
|
3902
4067
|
;// CONCATENATED MODULE: ./src/hooks/useOnClickOutside.tsx
|
3903
4068
|
|
3904
4069
|
function useOnClickOutside(ref, handler) {
|
@@ -3967,10 +4132,12 @@ var tw = __webpack_require__(47822);
|
|
3967
4132
|
var kr = __webpack_require__(83686);
|
3968
4133
|
// EXTERNAL MODULE: ./src/i18n/flags/cz.png
|
3969
4134
|
var cz = __webpack_require__(79578);
|
4135
|
+
// EXTERNAL MODULE: ./src/i18n/flags/fi.png
|
4136
|
+
var fi = __webpack_require__(52358);
|
3970
4137
|
// EXTERNAL MODULE: ./src/i18n/flags/missing-locale.png
|
3971
4138
|
var missing_locale = __webpack_require__(23876);
|
3972
4139
|
;// CONCATENATED MODULE: ./src/i18n/locales/localeNames.json
|
3973
|
-
const localeNames_namespaceObject = JSON.parse('{"de":"Deutsch","en":"English","es":"Español","fr":"Français","nl":"Nederlands","pl":"Polski","ptbr":"Brazilian Portuguese","ru":"Русский","ua":"Українська","chs":"简体中文","it":"Italiano","zh":"繁體中文","ko":"한국어","cs":"Česky"}');
|
4140
|
+
const localeNames_namespaceObject = JSON.parse('{"de":"Deutsch","en":"English","es":"Español","fr":"Français","nl":"Nederlands","pl":"Polski","ptbr":"Brazilian Portuguese","ru":"Русский","ua":"Українська","chs":"简体中文","it":"Italiano","zh":"繁體中文","ko":"한국어","cs":"Česky","fi":"Suomi"}');
|
3974
4141
|
;// CONCATENATED MODULE: ./src/i18n/LocalePicker.tsx
|
3975
4142
|
|
3976
4143
|
|
@@ -3991,9 +4158,10 @@ const localeNames_namespaceObject = JSON.parse('{"de":"Deutsch","en":"English","
|
|
3991
4158
|
|
3992
4159
|
|
3993
4160
|
|
4161
|
+
|
3994
4162
|
|
3995
4163
|
const localesMap = {
|
3996
|
-
en: us, fr: fr, pl: pl, de: de, ru: ru, ptbr: ptbr, es: es, ua: ua, chs: cn, nl: nl, it: it, zh: tw, ko: kr, cs: cz
|
4164
|
+
en: us, fr: fr, pl: pl, de: de, ru: ru, ptbr: ptbr, es: es, ua: ua, chs: cn, nl: nl, it: it, zh: tw, ko: kr, cs: cz, fi: fi
|
3997
4165
|
};
|
3998
4166
|
function LocalePicker() {
|
3999
4167
|
var _a;
|
@@ -4260,8 +4428,7 @@ class GroupsPage extends react.Component {
|
|
4260
4428
|
},
|
4261
4429
|
];
|
4262
4430
|
return react.createElement("div", { className: "card" },
|
4263
|
-
react.createElement(
|
4264
|
-
react.createElement(Table, { id: "groups", columns: columns, data: groups })));
|
4431
|
+
react.createElement(Table, { id: "groups", columns: columns, data: groups }));
|
4265
4432
|
}
|
4266
4433
|
render() {
|
4267
4434
|
return react.createElement(react.Fragment, null,
|
@@ -4273,127 +4440,6 @@ const groups_mappedProps = ["groups", "devices", "deviceStates", "bridgeInfo"];
|
|
4273
4440
|
const ConnectedGroupsPage = (0,withTranslation/* withTranslation */.Z)("groups")((0,unistore_react/* connect */.$)(groups_mappedProps, actions_actions)(GroupsPage));
|
4274
4441
|
/* harmony default export */ const groups = (ConnectedGroupsPage);
|
4275
4442
|
|
4276
|
-
;// CONCATENATED MODULE: ./src/components/zigbee/style.css
|
4277
|
-
// extracted by mini-css-extract-plugin
|
4278
|
-
/* harmony default export */ const zigbee_style = ({"action-column":"Sz_HOVlUGXEGcBgHiQOy","device-pic":"OjEk_at86Lnxdb_Jq9Cj","device-image":"PmWChHpc4nd1o4IBxsM6"});
|
4279
|
-
;// CONCATENATED MODULE: ./src/components/zigbee/index.tsx
|
4280
|
-
|
4281
|
-
|
4282
|
-
|
4283
|
-
|
4284
|
-
|
4285
|
-
|
4286
|
-
|
4287
|
-
|
4288
|
-
|
4289
|
-
|
4290
|
-
|
4291
|
-
|
4292
|
-
|
4293
|
-
|
4294
|
-
|
4295
|
-
function DevicesTable(props) {
|
4296
|
-
const { data, lastSeenType } = props;
|
4297
|
-
const { t } = (0,useTranslation/* useTranslation */.$)(["zigbee", "common"]);
|
4298
|
-
const columns = [
|
4299
|
-
{
|
4300
|
-
id: 'rownumber',
|
4301
|
-
Header: '#',
|
4302
|
-
Cell: ({ row }) => react.createElement("div", { className: "font-weight-bold" }, row.index + 1),
|
4303
|
-
disableSortBy: true,
|
4304
|
-
},
|
4305
|
-
{
|
4306
|
-
id: 'pic',
|
4307
|
-
Header: t('pic'),
|
4308
|
-
Cell: ({ row: { original: { device, state } } }) => react.createElement(device_image, { className: zigbee_style["device-image"], device: device, deviceStatus: state }),
|
4309
|
-
accessor: rowData => rowData,
|
4310
|
-
disableSortBy: true,
|
4311
|
-
},
|
4312
|
-
{
|
4313
|
-
id: 'friendly_name',
|
4314
|
-
Header: t('friendly_name'),
|
4315
|
-
accessor: ({ device }) => device.friendly_name,
|
4316
|
-
Cell: ({ row: { original: { device } } }) => react.createElement(react_router_dom/* Link */.rU, { to: genDeviceDetailsLink(device.ieee_address) }, device.friendly_name)
|
4317
|
-
},
|
4318
|
-
{
|
4319
|
-
id: 'ieee_address',
|
4320
|
-
Header: t('ieee_address'),
|
4321
|
-
accessor: ({ device }) => [device.ieee_address, toHex(device.network_address, 4)].join(' '),
|
4322
|
-
Cell: ({ row: { original: { device } } }) => react.createElement(react.Fragment, null,
|
4323
|
-
device.ieee_address,
|
4324
|
-
" (",
|
4325
|
-
toHex(device.network_address, 4),
|
4326
|
-
")"),
|
4327
|
-
},
|
4328
|
-
{
|
4329
|
-
id: 'manufacturer',
|
4330
|
-
Header: t('manufacturer'),
|
4331
|
-
accessor: ({ device }) => { var _a; return [device.manufacturer, (_a = device.definition) === null || _a === void 0 ? void 0 : _a.vendor].join(' '); },
|
4332
|
-
Cell: ({ row: { original: { device } } }) => react.createElement(VendorLink, { device: device })
|
4333
|
-
},
|
4334
|
-
{
|
4335
|
-
id: 'model',
|
4336
|
-
Header: t('model'),
|
4337
|
-
accessor: ({ device }) => { var _a; return [device.model_id, (_a = device.definition) === null || _a === void 0 ? void 0 : _a.model].join(' '); },
|
4338
|
-
Cell: ({ row: { original: { device } } }) => react.createElement(ModelLink, { device: device })
|
4339
|
-
},
|
4340
|
-
{
|
4341
|
-
id: 'lqi',
|
4342
|
-
Header: t('lqi'),
|
4343
|
-
accessor: ({ state }) => state.linkquality,
|
4344
|
-
Cell: ({ row: { original: { state } } }) => react.createElement(DisplayValue, { value: state.linkquality, name: "linkquality" }),
|
4345
|
-
},
|
4346
|
-
...(lastSeenType !== "disable" ? [{
|
4347
|
-
id: 'last_seen',
|
4348
|
-
Header: t('last_seen'),
|
4349
|
-
accessor: ({ state }) => { var _a; return (_a = lastSeen(state, lastSeenType)) === null || _a === void 0 ? void 0 : _a.getTime(); },
|
4350
|
-
Cell: ({ row: { original: { state } } }) => react.createElement(LastSeen, { state: state, lastSeenType: lastSeenType }),
|
4351
|
-
}] : []),
|
4352
|
-
{
|
4353
|
-
id: 'power',
|
4354
|
-
Header: t('power'),
|
4355
|
-
accessor: ({ device }) => device.power_source,
|
4356
|
-
Cell: ({ row: { original: { state, device } } }) => react.createElement(power_source, { source: device.power_source, battery: state.battery, batteryLow: state.battery_low }),
|
4357
|
-
},
|
4358
|
-
{
|
4359
|
-
id: 'controls',
|
4360
|
-
Header: '',
|
4361
|
-
Cell: ({ row: { original: { device, state } } }) => react.createElement(device_control_DeviceControlGroup, { device: device, state: state }),
|
4362
|
-
disableSortBy: true,
|
4363
|
-
}
|
4364
|
-
];
|
4365
|
-
return (react.createElement("div", { className: "card" },
|
4366
|
-
react.createElement("div", { className: "table-responsive mt-1" },
|
4367
|
-
react.createElement(Table, { id: "zigbee", columns: columns, data: data }))));
|
4368
|
-
}
|
4369
|
-
function ZigbeeTable(props) {
|
4370
|
-
const { devices, deviceStates, bridgeInfo } = props;
|
4371
|
-
const getDevicesToRender = () => {
|
4372
|
-
return Object.values(devices)
|
4373
|
-
.filter(device => device.type !== "Coordinator")
|
4374
|
-
.map((device) => {
|
4375
|
-
var _a;
|
4376
|
-
const state = (_a = deviceStates[device.friendly_name]) !== null && _a !== void 0 ? _a : {};
|
4377
|
-
return {
|
4378
|
-
id: device.friendly_name,
|
4379
|
-
device,
|
4380
|
-
state
|
4381
|
-
};
|
4382
|
-
});
|
4383
|
-
};
|
4384
|
-
const data = react.useMemo(() => getDevicesToRender(), [devices, deviceStates]);
|
4385
|
-
if (Object.keys(data).length) {
|
4386
|
-
return react.createElement(DevicesTable, { data: data, lastSeenType: bridgeInfo.config.advanced.last_seen });
|
4387
|
-
}
|
4388
|
-
else {
|
4389
|
-
return (react.createElement("div", { className: "h-100 d-flex justify-content-center align-items-center" },
|
4390
|
-
react.createElement(spinner, null)));
|
4391
|
-
}
|
4392
|
-
}
|
4393
|
-
const zigbee_mappedProps = ["devices", "deviceStates", "bridgeInfo"];
|
4394
|
-
const ConnectedZigbeePage = (0,withTranslation/* withTranslation */.Z)(["zigbee", "common"])((0,unistore_react/* connect */.$)(zigbee_mappedProps, actions_actions)(ZigbeeTable));
|
4395
|
-
/* harmony default export */ const zigbee = (ConnectedZigbeePage);
|
4396
|
-
|
4397
4443
|
;// CONCATENATED MODULE: ./src/components/ota-page/index.tsx
|
4398
4444
|
|
4399
4445
|
|
@@ -4478,7 +4524,7 @@ class OtaPage extends react.Component {
|
|
4478
4524
|
},
|
4479
4525
|
];
|
4480
4526
|
return react.createElement("div", { className: "card" },
|
4481
|
-
react.createElement("div", { className: "
|
4527
|
+
react.createElement("div", { className: "table-responsive" },
|
4482
4528
|
react.createElement(Table, { id: "otaDevices", columns: columns, data: otaDevices })));
|
4483
4529
|
}
|
4484
4530
|
}
|
@@ -4569,7 +4615,7 @@ const DeviceFooter = ({ device, deviceState, lastSeenType }) => {
|
|
4569
4615
|
|
4570
4616
|
;// CONCATENATED MODULE: ./src/components/dashboard-page/DashboardDevice.scss
|
4571
4617
|
// extracted by mini-css-extract-plugin
|
4572
|
-
/* harmony default export */ const DashboardDevice = ({"deviceImage":"
|
4618
|
+
/* harmony default export */ const DashboardDevice = ({"deviceImage":"ySsEqVUR4fG8GsO0H54r"});
|
4573
4619
|
;// CONCATENATED MODULE: ./src/components/dashboard-page/DashboardDevice.tsx
|
4574
4620
|
|
4575
4621
|
|
@@ -4616,7 +4662,7 @@ function filterDeviceByFeatures(devices, deviceStates, filterFn) {
|
|
4616
4662
|
.sort((a, b) => a.device.friendly_name.localeCompare(b.device.friendly_name));
|
4617
4663
|
}
|
4618
4664
|
function DeviceGroupRow(props) {
|
4619
|
-
var _a, _b, _c
|
4665
|
+
var _a, _b, _c;
|
4620
4666
|
const { t } = (0,useTranslation/* useTranslation */.$)('devicePage');
|
4621
4667
|
const { removeDeviceFromGroup, groupAddress, devices, deviceStates, bridgeInfo } = props;
|
4622
4668
|
const device = (_a = devices[groupAddress.ieee_address]) !== null && _a !== void 0 ? _a : { ieee_address: groupAddress.ieee_address, friendly_name: t('unknown_device') };
|
@@ -4624,7 +4670,7 @@ function DeviceGroupRow(props) {
|
|
4624
4670
|
const { setDeviceState, getDeviceState } = props;
|
4625
4671
|
let filteredFeatures = [];
|
4626
4672
|
if (device.definition) {
|
4627
|
-
filteredFeatures = ((
|
4673
|
+
filteredFeatures = ((_c = device.definition.exposes) !== null && _c !== void 0 ? _c : [])
|
4628
4674
|
.map((e) => onlyValidFeaturesForScenes(e, deviceState))
|
4629
4675
|
.filter(f => f);
|
4630
4676
|
}
|
@@ -4810,21 +4856,22 @@ const extensions_editor_mappedProps = ["extensions", "theme"];
|
|
4810
4856
|
|
4811
4857
|
|
4812
4858
|
function AddDeviceToGroup(props) {
|
4813
|
-
const [
|
4859
|
+
const [endpoint, setEndpoint] = (0,react.useState)("");
|
4860
|
+
const [device, setDevice] = (0,react.useState)("");
|
4814
4861
|
const { addDeviceToGroup, group, devices } = props;
|
4815
|
-
const { device, endpoint } = state;
|
4816
4862
|
const deviceObj = devices[device];
|
4817
4863
|
const endpoints = getEndpoints(deviceObj);
|
4818
4864
|
const { t } = (0,useTranslation/* useTranslation */.$)(["groups", "zigbee"]);
|
4819
4865
|
const onSubmit = () => {
|
4820
4866
|
addDeviceToGroup(endpoint ? `${device}/${endpoint}` : device, group.friendly_name);
|
4821
4867
|
};
|
4822
|
-
const onDeviceSelect = (
|
4823
|
-
const
|
4824
|
-
|
4868
|
+
const onDeviceSelect = (d) => {
|
4869
|
+
const eps = getEndpoints(d);
|
4870
|
+
setDevice(d.ieee_address);
|
4871
|
+
setEndpoint(eps[0]);
|
4825
4872
|
};
|
4826
|
-
const onEpChange = (
|
4827
|
-
|
4873
|
+
const onEpChange = (ep) => {
|
4874
|
+
setEndpoint(ep);
|
4828
4875
|
};
|
4829
4876
|
return react.createElement(react.Fragment, null,
|
4830
4877
|
react.createElement("div", { className: "mb-3" },
|
@@ -4927,20 +4974,20 @@ const StateNotifier_mappedProps = ["bridgeState"];
|
|
4927
4974
|
const ConnectedStateNotifier = (0,unistore_react/* connect */.$)(StateNotifier_mappedProps, actions_actions)(StateNotifier);
|
4928
4975
|
/* harmony default export */ const state_notifier_StateNotifier = (ConnectedStateNotifier);
|
4929
4976
|
|
4930
|
-
// EXTERNAL MODULE: ./node_modules/i18next/dist/esm/i18next.js +
|
4931
|
-
var i18next = __webpack_require__(
|
4977
|
+
// EXTERNAL MODULE: ./node_modules/i18next/dist/esm/i18next.js + 5 modules
|
4978
|
+
var i18next = __webpack_require__(83540);
|
4932
4979
|
// EXTERNAL MODULE: ./node_modules/react-i18next/dist/es/context.js
|
4933
4980
|
var context = __webpack_require__(68718);
|
4934
4981
|
// EXTERNAL MODULE: ./node_modules/i18next-browser-languagedetector/dist/esm/i18nextBrowserLanguageDetector.js
|
4935
4982
|
var i18nextBrowserLanguageDetector = __webpack_require__(26071);
|
4936
4983
|
;// CONCATENATED MODULE: ./src/i18n/locales/en.json
|
4937
|
-
const en_namespaceObject = JSON.parse('{"common":{"action":"Action","actions":"Actions","apply":"Apply","attribute":"Attribute","bind":"Bind","check_all":"Check all","clear":"Clear","close":"Close","cluster":"Cluster","clusters":"Clusters","confirmation":"Confirmation prompt","delete":"Delete","destination":"Destination","devices":"Devices","dialog_confirmation_prompt":"Are you sure?","disable":"Disable","enter_search_criteria":"Enter search criteria","groups":"Groups","loading":"Loading...","none":"None","ok":"Ok","read":"Read","save":"Save","select_device":"Select device","select_endpoint":"Select endpoint","source_endpoint":"Source endpoint","the_only_endpoint":"The only endpoint","unbind":"Unbind","write":"Write"},"devicePage":{"about":"About","bind":"Bind","clusters":"Clusters","dev_console":"Dev console","exposes":"Exposes","reporting":"Reporting","settings":"Settings","settings_specific":"Settings (specific)","state":"State","scene":"Scene","unknown_device":"Unknown device"},"exposes":{"action":"Action","auto_off":"Auto off","away_mode":"Away mode","away_preset_days":"Away preset days","away_preset_temperature":"Away preset temperature","backlight_mode":"Backlight mode","battery":"Battery","battery_low":"Battery low","boost_time":"Boost time","brightness":"Brightness","calibration":"Calibration","carbon_monoxide":"Carbon monoxide","color_hs":"Color (HS)","color_temp":"Color temperature","color_temp_startup":"Startup color temp","color_xy":"Color (XY)","comfort_temperature":"Comfort temperature","consumer_connected":"Consumer connected","consumer_overload":"Consumer overload","contact":"Contact","current":"Current","current_heating_setpoint":"Current heating setpoint","eco_temperature":"Eco temperature","effect":"Effect","empty_exposes_definition":"Empty exposes definition","energy":"Energy","force":"Force","humidity":"Humidity","illuminance":"Illuminance","illuminance_lux":"Illuminance","led_disabled_night":"Led disabled night","linkquality":"Linkquality","local_temperature":"Local temperature","local_temperature_calibration":"Local temperature calibration","max_temperature":"Max temperature","min_temperature":"Min temperature","motor_reversal":"Motor reversal","moving":"Moving","occupancy":"Occupancy","operation_mode":"Operation mode","options":"Options","position":"Position","power":"Power","power_on_behavior":"Power on behavior","power_outage_memory":"Power outage memory","preset":"Preset","pressure":"Pressure","sensivity":"Sensivity","smoke":"Smoke","state":"State","strength":"Strength","system_mode":"System mode","tamper":"Tamper","temperature":"Temperature","voltage":"Voltage","water_leak":"Water leak","week":"Week"},"extensions":{"create_new_extension":"Create new extension","extension_name_propmt":"Enter new extension name","select_extension_to_edit":"Select extension to edit"},"featureDescriptions":{"Auto off after specific time.":"Auto off after specific time.","Away mode":"Away mode","Away preset days":"Away preset days","Away preset temperature":"Away preset temperature","Boost time":"Boost time","Brightness of this light":"Brightness of this light","Calibration time":"Calibration time","Color of this light expressed as hue/saturation":"Color of this light expressed as hue/saturation","Color of this light in the CIE 1931 color space (x/y)":"Color of this light in the CIE 1931 color space (x/y)","Color temperature after cold power on of this light":"Color temperature after cold power on of this light","Color temperature of this light":"Color temperature of this light","Comfort temperature":"Comfort temperature","Controls the behavior when the device is powered on":"Controls the behavior when the device is powered on","Controls the behaviour when the device is powered on":"Controls the behaviour when the device is powered on","Current temperature measured on the device":"Current temperature measured on the device","Decoupled mode for center button":"Decoupled mode for center button","Decoupled mode for left button":"Decoupled mode for left button","Decoupled mode for right button":"Decoupled mode for right button","Eco temperature":"Eco temperature","Enable/disable auto lock":"Enable/disable auto lock","Enable/disable away mode":"Enable/disable away mode","Enables/disables physical input on the device":"Enables/disables physical input on the device","Enables/disables window detection on the device":"Enables/disables window detection on the device","Enabling prevents both relais being on at the same time":"Enabling prevents both relais being on at the same time","Force the valve position":"Force the valve position","Indicates if CO (carbon monoxide) is detected":"Indicates if CO (carbon monoxide) is detected","Indicates if the battery of this device is almost empty":"Indicates if the battery of this device is almost empty","Indicates if the contact is closed (= true) or open (= false)":"Indicates if the contact is closed (= true) or open (= false)","Indicates whether the device detected a water leak":"Indicates whether the device detected a water leak","Indicates whether the device detected occupancy":"Indicates whether the device detected occupancy","Indicates whether the device detected smoke":"Indicates whether the device detected smoke","Indicates whether the device is tampered":"Indicates whether the device is tampered","Instantaneous measured electrical current":"Instantaneous measured electrical current","Instantaneous measured power":"Instantaneous measured power","Link quality (signal strength)":"Link quality (signal strength)","Maximum temperature":"Maximum temperature","Measured electrical potential value":"Measured electrical potential value","Measured illuminance in lux":"Measured illuminance in lux","Measured relative humidity":"Measured relative humidity","Measured temperature value":"Measured temperature value","Minimum temperature":"Minimum temperature","Mode of this device (similar to system_mode)":"Mode of this device (similar to system_mode)","Mode of this device":"Mode of this device","Motor speed":"Motor speed","Offset to be used in the local_temperature":"Offset to be used in the local_temperature","On/off state of the switch":"On/off state of the switch","On/off state of this light":"On/off state of this light","Position of this cover":"Position of this cover","Position":"Position","Raw measured illuminance":"Raw measured illuminance","Recover state after power outage":"Recover state after power outage","Remaining battery in %":"Remaining battery in %","Side of the cube":"Side of the cube","Sum of consumed energy":"Sum of consumed energy","Temperature setpoint":"Temperature setpoint","The measured atmospheric pressure":"The measured atmospheric pressure","Triggered action (e.g. a button click)":"Triggered action (e.g. a button click)","Triggers an effect on the light (e.g. make light blink for a few seconds)":"Triggers an effect on the light (e.g. make light blink for a few seconds)","Voltage of the battery in millivolts":"Voltage of the battery in millivolts","Week format user for schedule":"Week format user for schedule"},"featureNames":{"action":"Action","angle_x":"Angle X","angle_y":"Angle Y","angle_z":"Angle Z","brightness":"Brightness","co2":"CO2","color_temp":"Color Temp","color_xy":"Color Xy","contact":"Contact","humidity":"Humidity","illuminance":"Illuminance","occupancy":"Occupancy","pressure":"Pressure","soil_moisture":"Soil Moisture","state":"State","temperature":"Temperature","tamper":"Tamper"},"groups":{"add_to_group":"Add to group","create_group":"Create group","new_group_id":"New group id","new_group_id_placeholder":"Specify group id if necessary","new_group_name":"New group name","new_group_name_placeholder":"example: my_bedroom_lights","remove_group":"Remove group","group_id":"Group ID","group_name":"Group Name","group_members":"Group members","group_scenes":"Group scenes"},"logs":{"empty_logs_message":"Nothing to display","filter_by_text":"Filter by text","show_only":"Show only"},"map":{"help_coordinator_link_description":"Solid lines are the link to the Coordinator","help_end_device_description":"Green means End Device","help_is_coordinator":"is Coordinator","help_lqi_description":"Link quality is between 0 - 255 (higher is better), values with / represents multiple types of links","help_router_description":"Blue means Router","help_router_links_description":"Dashed lines are the link with Routes","hide":"Click on me to hide","load":"Load map","loading":"Depending on the size of your network this can take somewhere between 10 seconds and 2 minutes."},"navbar":{"all":"All","dashboard":"Dashboard","devices":"Devices","disable_join":"Disable join","extensions":"Extensions","groups":"Groups","logs":"Logs","map":"Map","ota":"OTA","permit_join":"Permit join","restart":"Restart","settings":"Settings","toggle_dropdown":"Toggle dropdown","touchlink":"Touchlink"},"ota":{"check":"Check for new updates","check_all":"Check all","empty_ota_message":"You don\'t have any devices that support OTA","remaining_time":"Remaining time {{- remaining}}","update":"Update device firmware"},"settings":{"about":"About","advanced":"Advanced","availability":"Availability","blocklist":"Blocklist","coordinator_revision":"Coordinator revision","coordinator_type":"Coordinator type","donate":"Donate","donation_text":["Hello, %username%, here you can thank us for hardworking","Don\'t hesitate to say something nice as well ;)"],"download_state":"Download state","experimental":"Experimental","external_converters":"External converters","frontend":"Frontend","frontend_version":"Frontend version","main":"Main","mqtt":"MQTT","ota":"OTA updates","passlist":"Passlist","raw":"Raw","restart_zigbee2mqtt":"Restart Zigbee2MQTT","serial":"Serial","settings":"Settings","tools":"Tools","zigbee2mqtt_version":"Zigbee2MQTT version","translate":"Translate","stats":"Stats"},"settingsSchemaTranslations":{"advanced-title":"Advanced","advanced_availability_blacklist__title":"Availability blacklist (deprecated, use availability_blocklist)","advanced_availability_blocklist__description":"Prevent devices from being checked for availability","advanced_availability_blocklist__title":"Availability Blocklist","advanced_availability_passlist__description":"Only enable availability check for certain devices","advanced_availability_passlist__title":"Availability passlist","advanced_availability_whitelist__title":"Availability whitelist (deprecated, use passlist)","advanced_ext_pan_id__description":"Zigbee extended pan ID, changing requires repairing all devices!","advanced_ext_pan_id__title":"Ext Pan ID","advanced_log_output__description":"Output location of the log, leave empty to supress logging","advanced_log_output__title":"Log output","advanced_log_syslog-title":"syslog","blocklist__description":"Block devices from the network (by ieeeAddr)","blocklist__title":"Blocklist","experimental-title":"Experimental","external_converters__description":"You can define external converters to e.g. add support for a DiY device","external_converters__title":"External converters","frontend-title":"Frontend","mqtt-title":"MQTT","ota-title":"OTA updates","passlist__description":"Allow only certain devices to join the network (by ieeeAddr). Note that all devices not on the passlist will be removed from the network!","passlist__title":"Passlist","root__description":"Allow only certain devices to join the network (by ieeeAddr). Note that all devices not on the passlist will be removed from the network!","root_availability_blacklist__title":"Availability blacklist (deprecated, use availability_blocklist)","root_availability_blocklist__description":"Prevent devices from being checked for availability","root_availability_blocklist__title":"Availability Blocklist","root_availability_passlist__description":"Only enable availability check for certain devices","root_availability_passlist__title":"Availability passlist","root_availability_whitelist__title":"Availability whitelist (deprecated, use passlist)","root_debounce_ignore__description":"Protects unique payload values of specified payload properties from overriding within debounce time","root_debounce_ignore__title":"Ignore debounce","root_ext_pan_id__description":"Zigbee extended pan ID, changing requires repairing all devices!","root_ext_pan_id__title":"Ext Pan ID","root_filtered_attributes__description":"Allows to prevent certain attributes from being published","root_filtered_attributes__title":"Filtered attributes","root_filtered_optimistic__description":"Filter attributes from optimistic publish payload when calling /set. (This has no effect if optimistic is set to false).","root_filtered_optimistic__title":"Filtered optimistic attributes","root_log_output__description":"Output location of the log, leave empty to supress logging","root_log_output__title":"Log output","root_log_syslog-title":"syslog","serial-title":"Serial"},"touchlink":{"detected_devices_message":"Detected {{count}} touchlink devices.","rescan":"Scan again","scan":"Scan"},"values":{"clear":"Clear","closed":"Closed","false":"False","not_supported":"Not supported","occupied":"Occupied","open":"Open","supported":"Supported","true":"True","empty_string":"Empty string(\\"\\")","leaking":"Leaking","tampered":"Tampered"},"zigbee":{"actions":"Actions","attribute":"Attribute","battery":"Battery","block_join":"Block from joining again","cluster":"Cluster","dc_source":"DC Source","description":"Description","device_type":"Device type","endpoint":"Endpoint","firmware_build_date":"Firmware build date","firmware_version":"Firmware version","force_remove":"Force remove","friendly_name":"Friendly name","ieee_address":"IEEE Address","input_clusters":"Input clusters","interview_completed":"Interview completed","interview_failed":"Interview failed","interviewing":"Interviewing","last_seen":"Last seen","lqi":"LQI","mains_single_phase":"Mains (single phase)","manufacturer":"Manufacturer","max_rep_interval":"max rep interval","min_rep_change":"Min rep change","min_rep_interval":"Min rep interval","model":"Model","network_address":"Network address","none":"None","output_clusters":"Output clusters","pic":"Pic","power":"Power","power_level":"power level","reconfigure":"Reconfigure","remove_device":"Remove device","rename_device":"Rename device","select_attribute":"Select attribute","select_cluster":"Select cluster","support_status":"Support status","unsupported":"Unsupported","updating_firmware":"Updating firmware","update_Home_assistant_entity_id":"Update Home Assistant entity ID","zigbee_manufacturer":"Zigbee Manufacturer","zigbee_model":"Zigbee Model","device":"Device","channel":"Channel"},"scene":{"scene_id":"Scene ID","recall":"Recall","store":"Store","remove":"Remove","remove_all":"Remove all","add":"Add","select_scene":"Select Scene","scene_name":"Scene Name"},"stats":{"byType":"By device type","byPowerSource":"By power source","byVendor":"By vendor","byModel":"By model","total":"Total"}}');
|
4984
|
+
const en_namespaceObject = JSON.parse('{"common":{"action":"Action","actions":"Actions","apply":"Apply","attribute":"Attribute","bind":"Bind","check_all":"Check all","clear":"Clear","close":"Close","cluster":"Cluster","clusters":"Clusters","confirmation":"Confirmation prompt","delete":"Delete","destination":"Destination","devices":"Devices","dialog_confirmation_prompt":"Are you sure?","disable":"Disable","enter_search_criteria":"Enter search criteria","groups":"Groups","loading":"Loading...","none":"None","ok":"Ok","read":"Read","save":"Save","select_device":"Select device","select_endpoint":"Select endpoint","source_endpoint":"Source endpoint","the_only_endpoint":"The only endpoint","unbind":"Unbind","write":"Write"},"devicePage":{"about":"About","bind":"Bind","clusters":"Clusters","dev_console":"Dev console","exposes":"Exposes","reporting":"Reporting","settings":"Settings","settings_specific":"Settings (specific)","state":"State","scene":"Scene","unknown_device":"Unknown device"},"exposes":{"action":"Action","auto_off":"Auto off","away_mode":"Away mode","away_preset_days":"Away preset days","away_preset_temperature":"Away preset temperature","backlight_mode":"Backlight mode","battery":"Battery","battery_low":"Battery low","boost_time":"Boost time","brightness":"Brightness","calibration":"Calibration","carbon_monoxide":"Carbon monoxide","color_hs":"Color (HS)","color_temp":"Color temperature","color_temp_startup":"Startup color temp","color_xy":"Color (XY)","comfort_temperature":"Comfort temperature","consumer_connected":"Consumer connected","consumer_overload":"Consumer overload","contact":"Contact","current":"Current","current_heating_setpoint":"Current heating setpoint","eco_temperature":"Eco temperature","effect":"Effect","empty_exposes_definition":"Empty exposes definition","energy":"Energy","force":"Force","humidity":"Humidity","illuminance":"Illuminance","illuminance_lux":"Illuminance","led_disabled_night":"Led disabled night","linkquality":"Linkquality","local_temperature":"Local temperature","local_temperature_calibration":"Local temperature calibration","max_temperature":"Max temperature","min_temperature":"Min temperature","motor_reversal":"Motor reversal","moving":"Moving","occupancy":"Occupancy","operation_mode":"Operation mode","options":"Options","position":"Position","power":"Power","power_on_behavior":"Power on behavior","power_outage_memory":"Power outage memory","preset":"Preset","pressure":"Pressure","sensivity":"Sensivity","smoke":"Smoke","state":"State","strength":"Strength","system_mode":"System mode","tamper":"Tamper","temperature":"Temperature","voltage":"Voltage","water_leak":"Water leak","week":"Week"},"extensions":{"create_new_extension":"Create new extension","extension_name_propmt":"Enter new extension name","select_extension_to_edit":"Select extension to edit"},"featureDescriptions":{"Auto off after specific time.":"Auto off after specific time.","Away mode":"Away mode","Away preset days":"Away preset days","Away preset temperature":"Away preset temperature","Boost time":"Boost time","Brightness of this light":"Brightness of this light","Calibration time":"Calibration time","Color of this light expressed as hue/saturation":"Color of this light expressed as hue/saturation","Color of this light in the CIE 1931 color space (x/y)":"Color of this light in the CIE 1931 color space (x/y)","Color temperature after cold power on of this light":"Color temperature after cold power on of this light","Color temperature of this light":"Color temperature of this light","Comfort temperature":"Comfort temperature","Controls the behavior when the device is powered on":"Controls the behavior when the device is powered on","Controls the behaviour when the device is powered on":"Controls the behaviour when the device is powered on","Current temperature measured on the device":"Current temperature measured on the device","Decoupled mode for center button":"Decoupled mode for center button","Decoupled mode for left button":"Decoupled mode for left button","Decoupled mode for right button":"Decoupled mode for right button","Eco temperature":"Eco temperature","Enable/disable auto lock":"Enable/disable auto lock","Enable/disable away mode":"Enable/disable away mode","Enables/disables physical input on the device":"Enables/disables physical input on the device","Enables/disables window detection on the device":"Enables/disables window detection on the device","Enabling prevents both relais being on at the same time":"Enabling prevents both relais being on at the same time","Force the valve position":"Force the valve position","Indicates if CO (carbon monoxide) is detected":"Indicates if CO (carbon monoxide) is detected","Indicates if the battery of this device is almost empty":"Indicates if the battery of this device is almost empty","Indicates if the contact is closed (= true) or open (= false)":"Indicates if the contact is closed (= true) or open (= false)","Indicates whether the device detected a water leak":"Indicates whether the device detected a water leak","Indicates whether the device detected occupancy":"Indicates whether the device detected occupancy","Indicates whether the device detected smoke":"Indicates whether the device detected smoke","Indicates whether the device is tampered":"Indicates whether the device is tampered","Instantaneous measured electrical current":"Instantaneous measured electrical current","Instantaneous measured power":"Instantaneous measured power","Link quality (signal strength)":"Link quality (signal strength)","Maximum temperature":"Maximum temperature","Measured electrical potential value":"Measured electrical potential value","Measured illuminance in lux":"Measured illuminance in lux","Measured relative humidity":"Measured relative humidity","Measured temperature value":"Measured temperature value","Minimum temperature":"Minimum temperature","Mode of this device (similar to system_mode)":"Mode of this device (similar to system_mode)","Mode of this device":"Mode of this device","Motor speed":"Motor speed","Offset to be used in the local_temperature":"Offset to be used in the local_temperature","On/off state of the switch":"On/off state of the switch","On/off state of this light":"On/off state of this light","Position of this cover":"Position of this cover","Position":"Position","Raw measured illuminance":"Raw measured illuminance","Recover state after power outage":"Recover state after power outage","Remaining battery in %":"Remaining battery in %","Side of the cube":"Side of the cube","Sum of consumed energy":"Sum of consumed energy","Temperature setpoint":"Temperature setpoint","The measured atmospheric pressure":"The measured atmospheric pressure","Triggered action (e.g. a button click)":"Triggered action (e.g. a button click)","Triggers an effect on the light (e.g. make light blink for a few seconds)":"Triggers an effect on the light (e.g. make light blink for a few seconds)","Voltage of the battery in millivolts":"Voltage of the battery in millivolts","Week format user for schedule":"Week format user for schedule"},"featureNames":{"action":"Action","angle_x":"Angle X","angle_y":"Angle Y","angle_z":"Angle Z","brightness":"Brightness","co2":"CO2","color_temp":"Color Temp","color_xy":"Color Xy","contact":"Contact","humidity":"Humidity","illuminance":"Illuminance","occupancy":"Occupancy","pressure":"Pressure","soil_moisture":"Soil Moisture","state":"State","temperature":"Temperature","tamper":"Tamper"},"groups":{"add_to_group":"Add to group","create_group":"Create group","new_group_id":"New group id","new_group_id_placeholder":"Specify group id if necessary","new_group_name":"New group name","new_group_name_placeholder":"example: my_bedroom_lights","remove_group":"Remove group","group_id":"Group ID","group_name":"Group Name","group_members":"Group members","group_scenes":"Group scenes"},"logs":{"empty_logs_message":"Nothing to display","filter_by_text":"Filter by text","show_only":"Show only"},"map":{"help_coordinator_link_description":"Solid lines are the link to the Coordinator","help_end_device_description":"Green means End Device","help_is_coordinator":"is Coordinator","help_lqi_description":"Link quality is between 0 - 255 (higher is better), values with / represents multiple types of links","help_router_description":"Blue means Router","help_router_links_description":"Dashed lines are the link with Routes","hide":"Click on me to hide","load":"Load map","loading":"Depending on the size of your network this can take somewhere between 10 seconds and 2 minutes."},"navbar":{"all":"All","dashboard":"Dashboard","devices":"Devices","disable_join":"Disable join","extensions":"Extensions","groups":"Groups","logs":"Logs","map":"Map","ota":"OTA","permit_join":"Permit join","restart":"Restart","settings":"Settings","toggle_dropdown":"Toggle dropdown","touchlink":"Touchlink"},"ota":{"check":"Check for new updates","check_all":"Check all","empty_ota_message":"You don\'t have any devices that support OTA","remaining_time":"Remaining time {{- remaining}}","update":"Update device firmware"},"settings":{"about":"About","advanced":"Advanced","availability":"Availability","blocklist":"Blocklist","coordinator_revision":"Coordinator revision","coordinator_type":"Coordinator type","donate":"Donate","donation_text":["Hello, %username%, here you can thank us for hardworking","Don\'t hesitate to say something nice as well ;)"],"download_state":"Download state","experimental":"Experimental","external_converters":"External converters","frontend":"Frontend","frontend_version":"Frontend version","main":"Main","mqtt":"MQTT","ota":"OTA updates","passlist":"Passlist","raw":"Raw","restart_zigbee2mqtt":"Restart Zigbee2MQTT","serial":"Serial","settings":"Settings","tools":"Tools","zigbee2mqtt_version":"Zigbee2MQTT version","translate":"Translate","stats":"Stats"},"settingsSchemaTranslations":{"advanced-title":"Advanced","advanced_availability_blacklist__title":"Availability blacklist (deprecated, use availability_blocklist)","advanced_availability_blocklist__description":"Prevent devices from being checked for availability","advanced_availability_blocklist__title":"Availability Blocklist","advanced_availability_passlist__description":"Only enable availability check for certain devices","advanced_availability_passlist__title":"Availability passlist","advanced_availability_whitelist__title":"Availability whitelist (deprecated, use passlist)","advanced_ext_pan_id__description":"Zigbee extended pan ID, changing requires repairing all devices!","advanced_ext_pan_id__title":"Ext Pan ID","advanced_log_output__description":"Output location of the log, leave empty to supress logging","advanced_log_output__title":"Log output","advanced_log_syslog-title":"syslog","blocklist__description":"Block devices from the network (by ieeeAddr)","blocklist__title":"Blocklist","experimental-title":"Experimental","external_converters__description":"You can define external converters to e.g. add support for a DiY device","external_converters__title":"External converters","frontend-title":"Frontend","mqtt-title":"MQTT","ota-title":"OTA updates","passlist__description":"Allow only certain devices to join the network (by ieeeAddr). Note that all devices not on the passlist will be removed from the network!","passlist__title":"Passlist","root__description":"Allow only certain devices to join the network (by ieeeAddr). Note that all devices not on the passlist will be removed from the network!","root_availability_blacklist__title":"Availability blacklist (deprecated, use availability_blocklist)","root_availability_blocklist__description":"Prevent devices from being checked for availability","root_availability_blocklist__title":"Availability Blocklist","root_availability_passlist__description":"Only enable availability check for certain devices","root_availability_passlist__title":"Availability passlist","root_availability_whitelist__title":"Availability whitelist (deprecated, use passlist)","root_debounce_ignore__description":"Protects unique payload values of specified payload properties from overriding within debounce time","root_debounce_ignore__title":"Ignore debounce","root_ext_pan_id__description":"Zigbee extended pan ID, changing requires repairing all devices!","root_ext_pan_id__title":"Ext Pan ID","root_filtered_attributes__description":"Allows to prevent certain attributes from being published","root_filtered_attributes__title":"Filtered attributes","root_filtered_optimistic__description":"Filter attributes from optimistic publish payload when calling /set. (This has no effect if optimistic is set to false).","root_filtered_optimistic__title":"Filtered optimistic attributes","root_log_output__description":"Output location of the log, leave empty to supress logging","root_log_output__title":"Log output","root_log_syslog-title":"syslog","serial-title":"Serial"},"touchlink":{"detected_devices_message":"Detected {{count}} touchlink devices.","rescan":"Scan again","scan":"Scan"},"values":{"clear":"Clear","closed":"Closed","false":"False","not_supported":"Not supported","occupied":"Occupied","open":"Open","supported":"Supported","true":"True","empty_string":"Empty string(\\"\\")","leaking":"Leaking","tampered":"Tampered"},"zigbee":{"actions":"Actions","attribute":"Attribute","battery":"Battery","block_join":"Block from joining again","cluster":"Cluster","dc_source":"DC Source","description":"Description","device_type":"Device type","endpoint":"Endpoint","firmware_build_date":"Firmware build date","firmware_version":"Firmware version","force_remove":"Force remove","friendly_name":"Friendly name","ieee_address":"IEEE Address","input_clusters":"Input clusters","interview_completed":"Interview completed","interview_failed":"Interview failed","interviewing":"Interviewing","last_seen":"Last seen","lqi":"LQI","mains_single_phase":"Mains (single phase)","manufacturer":"Manufacturer","max_rep_interval":"max rep interval","min_rep_change":"Min rep change","min_rep_interval":"Min rep interval","model":"Model","network_address":"Network address","none":"None","output_clusters":"Output clusters","pic":"Pic","power":"Power","power_level":"power level","reconfigure":"Reconfigure","remove_device":"Remove device","rename_device":"Rename device","select_attribute":"Select attribute","select_cluster":"Select cluster","support_status":"Support status","unsupported":"Unsupported","updating_firmware":"Updating firmware","update_Home_assistant_entity_id":"Update Home Assistant entity ID","zigbee_manufacturer":"Zigbee Manufacturer","zigbee_model":"Zigbee Model","device":"Device","channel":"Channel","avaliability":"Avaliability","offline":"Offline","online":"Online"},"scene":{"scene_id":"Scene ID","recall":"Recall","store":"Store","remove":"Remove","remove_all":"Remove all","add":"Add","select_scene":"Select Scene","scene_name":"Scene Name"},"stats":{"byType":"By device type","byPowerSource":"By power source","byVendor":"By vendor","byModel":"By model","total":"Total"}}');
|
4938
4985
|
;// CONCATENATED MODULE: ./src/i18n/locales/fr.json
|
4939
4986
|
const locales_fr_namespaceObject = JSON.parse('{"common":{"action":"Action","actions":"Actions","apply":"Appliquer","attribute":"Attribut","bind":"Lier","check_all":"Cocher tout","clear":"Vider","close":"Fermer","cluster":"Cluster","clusters":"Clusters","confirmation":"Confirmation","delete":"Effacer","destination":"Destination","devices":"Périphériques","dialog_confirmation_prompt":"Êtes-vous sûr ?","disable":"Désactiver","enter_search_criteria":"Entrez le critère de recherche","groups":"Groupes","loading":"Chargement...","none":"Aucun(e)","ok":"Ok","read":"Lecture","save":"Sauver","select_device":"Choix Périph","select_endpoint":"Choix endpoint","source_endpoint":"Endpoint Source","the_only_endpoint":"Le seul endpoint","unbind":"Délier","unknown":"Inconnu","write":"Ecriture"},"devicePage":{"about":"À propos","bind":"Lien","clusters":"Clusters","dev_console":"Console dev","exposes":"Expose","reporting":"Rapports","settings":"Paramètres","settings_specific":"Paramètres (Spécifiques)","state":"Etat","scene":"Scène","unknown_device":"Périphérique inconnu"},"exposes":{"action":"Action","auto_off":"Arrêt automatique","away_mode":"Mode absent","away_preset_days":"Préréglage jours d\'absence","away_preset_temperature":"Préréglage température d\'absence","backlight_mode":"Mode Rétroéclairage","battery":"Batterie","battery_low":"Batterie faible","boost_time":"Temp de boost","brightness":"Luminosité","calibration":"Calibration","carbon_monoxide":"Monoxyde de carbone","co2":"Dioxyde de carbone","color_hs":"Couleur (HS)","color_temp":"Temp Couleur","color_temp_startup":"Temp Couleur à l\'allumage","color_xy":"Couleur (XY)","comfort_temperature":"Température de confort","consumer_connected":"Consommateur connecté","consumer_overload":"Consommateur surchargé","contact":"Contact","current":"Courant","current_heating_setpoint":"Consigne chauffage actuelle","device_temperature":"Température Périph","eco_temperature":"Température éco","effect":"Effet","empty_exposes_definition":"Vider définition d\'expositions","energy":"Energie","force":"Force","humidity":"Humidité","illuminance":"Éclairement","illuminance_lux":"Éclairement","led_disabled_night":"Désactivation LED en nuit","linkquality":"Qualité du lien","local_temperature":"Température locale","local_temperature_calibration":"Calibration température locale","max_temperature":"Température max","min_temperature":"Température min","motion":"Mouvement","motion_direction":"Direction Mouvement","motion_speed":"Vitesse Mouvement","motor_reversal":"Inversion moteur","moving":"Déplacement","occupancy":"Occupation","operation_mode":"Mode d\'opération","options":"Options","position":"Position","power":"Puissance","power_on_behavior":"Comportement d\'allumage","power_outage_memory":"Mémoire Panne de courant","presence":"Présence","preset":"Préréglage","pressure":"Pression","Pressure":"Pression","sensivity":"Sensibilité","smoke":"Fumée","state":"Etat","strength":"Force","system_mode":"Mode du système","tamper":"Sabotage","temperature":"Temperature","voltage":"Voltage","water_leak":"Fuite d\'eau","week":"Semaine"},"extensions":{"create_new_extension":"Créer une nouvelle extension","extension_name_propmt":"Entrez le nom de l\'extension","select_extension_to_edit":"Choisir l\'extension à modifier"},"featureNames":{"action":"Action","action_angle":"Angle d\'action","action_from_side":"Action venant de la face","action_side":"Face active","action_to_side":"Action vers la face","alarm":"Alarme","angle_x":"Angle X","angle_y":"Angle Y","angle_z":"Angle Z","auto_lock":"Verrouillage automatique","brightness":"Luminosité","calibration_time":"Temps de calibration","carbon_monoxide":"Monoxyde de carbone","child_lock":"Verrouillage Enfant","co2":"Dioxyde de carbone","color_hs":"Couleur Hue/Sat","color_temp":"Temp Couleur","color_temp_startup":"Temp Couleur au démarrage","color_xy":"Couleur Xy","consumer_connected":"Consommateur connecté","contact":"Contact","current":"Actuel","humidity":"Humidité","illuminance":"Éclairement","occupancy":"Occupation","on_off_transition_time":"Temps de transition allumé/éteint","options":"Options","pressure":"Pression","soil_moisture":"Humidité Sol","state":"État","temperature":"Température","tamper":"Sabotage","current_heating_setpoint":"Consigne de chauffe actuelle","current_level_startup":"Niveau actuel au démarrage","device_temperature":"Température du périph","energy":"Energie","local_temperature":"Température Locale","level_config":"Configuration du niveau","system_mode":"Mode du Système","local_temperature_calibration":"Calibration Température Locale","motion":"Mouvement","motion_direction":"Direction du mouvement","motion_speed":"Vitesse du mouvement","motor_speed":"Vitesse moteur","moving":"En mouvement","away_mode":"Mode Absence","position":"Position","power":"Puissance","presence":"Présence","preset":"Préréglage","programming_mode":"Mode Programmé","program_weekday":"Programme Jours de semaine","program_saturday":"Programme Samedi","program_sunday":"Programme Dimanche","smoke":"Fumée","smoke_density":"Densité de fumée","state_l1":"Etat L 1","state_l2":"Etat L 2","state_l3":"Etat L 3","state_l4":"Etat L 4","valve_detection":"Détection valve","voltage":"Voltage","water_leak":"Fuite d\'eau","window_detection":"Détection fenêtre","window":"Fenêtre"},"featureDescriptions":{"Auto off after specific time.":"Extinction automatique après un temps défini.","On/off state of this light":"Etat Allumé/Eteint de cette lumière","Brightness of this light":"Luminosité de cette lumière","Triggers an effect on the light (e.g. make light blink for a few seconds)":"Exécute un effet sur la lumière (ex : faire clignoter quelques secondes)","Controls the behavior when the device is powered on":"Contrôle le comportement lorsque le périphérique est allumé","Controls the behaviour when the device is powered on":"Contrôle le comportement lorsque le périphérique est allumé","Link quality (signal strength)":"Qualité du lien (force du signal)","Calibrates the humidity value (absolute offset), takes into effect on next report of device.":"Calibration de la valeur d\'humidité (décalage absolu), pris en compte au prochain rapport du périph.","Calibrates the illuminance value (percentual offset), takes into effect on next report of device.":"Calibration de la valeur d\'éclairement (décalage en pourcent), pris en compte au prochain rapport du périph.","Calibrates the illuminance_lux value (percentual offset), takes into effect on next report of device.":"Calibration de la valeur d\'éclairement (lux) (décalage en pourcent), pris en compte au prochain rapport du périph.","Calibrates the pressure value (absolute offset), takes into effect on next report of device.":"Calibration de la pression (décalage absolu), pris en compte au prochain rapport du périph.","Calibrates the temperature value (absolute offset), takes into effect on next report of device.":"Calibration de la température (décalage absolu), pris en compte au prochain rapport du périph.","Calibration time":"Temps de calibration","Color of this light expressed as hue/saturation":"Couleur de cette lumière exprimée en hue/saturation","Color temperature after cold power on of this light":"Température couleur après un allumage à froid de cette lumière","direction of movement from the point of view of the radar":"Direction du mouvement du point de vue du radar","Enabling prevents both relais being on at the same time":"Activer ceci permet d\'éviter que les deux relais soient activés ensemble","Indicates if CO (carbon monoxide) is detected":"Indique si du CO (monoxyde de carbone) est détecté","Remaining battery in %":"Batterie restante en %","Triggered action (e.g. a button click)":"Action déclenchée (ex : un clic bouton)","Measured temperature value":"Valeur de température mesurée","Measured relative humidity":"Valeur d\'humidité relative mesurée","The measured atmospheric pressure":"Valeur de pression atmosphérique mesurée","Voltage of the battery in millivolts":"Voltage de la batterie en millivolts","Indicates if the contact is closed (= true) or open (= false)":"Indique si le contact est fermé (= vrai) ou ouvert (= faux)","Indicates whether the device detected occupancy":"Indique si le périphérique a détecté une occupation","Indicates whether the device detected a water leak":"Indique si le périphérique a détecté une fuite d\'eau","Indicates whether the device detected presence":"Indique si le périphérique a détecté une présence","Indicates whether the device detected smoke":"Indique si le périphérique a détecté de la fumée","Instantaneous measured electrical current":"Mesure instantanée du courant électrique","Instantaneous measured power":"Mesure instantanée de la puissance électrique","Measured electrical potential value":"Valeur de Potentiel électrique mesurée","Motor speed":"Vitesse moteur","moving inside the range of the sensor":"Indique si un mouvement a été détecté dans le rayon du radar.","Number of digits after decimal point for humidity, takes into effect on next report of device.":"Nombre de décimales pour l\'humidité, pris en compte au prochain rapport du périph.","Number of digits after decimal point for illuminance_lux, takes into effect on next report of device.":"Nombre de décimales pour l\'éclairement (lux), pris en compte au prochain rapport du périph.","Number of digits after decimal point for illuminance, takes into effect on next report of device.":"Nombre de décimales pour l\'éclairement, pris en compte au prochain rapport du périph.","Number of digits after decimal point for pressure, takes into effect on next report of device.":"Nombre de décimales pour la pression, pris en compte au prochain rapport du périph.","Number of digits after decimal point for temperature, takes into effect on next report of device.":"Nombre de décimales pour la température, pris en compte au prochain rapport du périph.","Measured illuminance in lux":"Valeur d\'éclairement mesurée en lux","Indicates if the battery of this device is almost empty":"Indique si la batterie du périphérique est presque vide","Indicates whether the device is tampered":"Indique si le périphérique a été saboté","Color temperature of this light":"Température de couleur de cette lumière","Color of this light in the CIE 1931 color space (x/y)":"Couleur de cette lumière dans l\'espace couleur CIE 1931 (x/y)","Enables/disables physical input on the device":"Active/Désactive le verrouillage du périphérique","Enables/disables window detection on the device":"Active/Désactive la détection de fenêtre du périphérique","Position":"Position","Position of this cover":"Position du couvercle","presets for sensivity for presence and movement":"préréglage de sensibilité pour la présence et le mouvement","Raw measured illuminance":"Eclairement brut mesuré","Recover state after power outage":"Etat récupéré après coupure de courant","Sends a message the last time occupancy was detected. When setting this for example to [10, 60] a `{\\"no_occupancy_since\\": 10}` will be send after 10 seconds and a `{\\"no_occupancy_since\\": 60}` after 60 seconds.":"Envoi un message la dernière fois qu\'une occupation a été détectée. Si vous configurez par exemple [10, 60] , un `{\\"no_occupancy_since\\": 10}` sera envoyé après 10 secondes et un `{\\"no_occupancy_since\\": 60}` après 60 secondes.","sensitivity of the radar":"sensibilité du radar","Set to false to disable the legacy integration (highly recommended), will change structure of the published payload (default true).":"Mettre à Faux pour désactiver l\'ancienne intégration (fortement recommandé), changera la structure du payload publié (Vrai par défaut).","Side of the cube":"Face du cube","Speed of movement":"Vitesse du mouvement","Sum of consumed energy":"Somme d\'énergie consommée en kW/h","Time in seconds after which occupancy is cleared after detecting it (default 90 seconds).":"Temps en seconde après lequel l\'occupation est à nouveau vide après detection (90 secondes par défaut).","Temperature setpoint":"Consigne Température","Current temperature measured on the device":"Température Actuelle mesurée sur le périphérique","Mode of this device":"Mode du périphérique","Offset to be used in the local_temperature":"Décalage à appliquer sur la local_temperature","Away mode":"Mode absence","Mode of this device (similar to system_mode)":"Mode du périphérique (similaire à system_mode)","Enable/disable auto lock":"Active/Désactive auto-verrouillage","Enable/disable away mode":"Active/Désactive mode absent","Away preset days":"Jours d\'absence pré-définis","Boost time":"Durée de Boost","Comfort temperature":"Température Confort","Eco temperature":"Température Eco","Force the valve position":"Forcer la position de la valve","Maximum temperature":"Température Max","Minimum temperature":"Température Min","Week format user for schedule":"Format semaine du calendrier","Away preset temperature":"Température Absent pré-définie","On/off state of the switch":"Etat Allumé/Eteint de l\'interrupteur","ECO mode (energy saving mode)":"Mode éco (mode d\'économie d\'énergie)","Window status closed or open ":"Statut Fenêtre fermée ou ouverte ","MANUAL MODE ☝ - In this mode, the device executes manual temperature setting. When the set temperature is lower than the \\"minimum temperature\\", the valve is closed (forced closed). PROGRAMMING MODE ⏱ - In this mode, the device executes a preset week programming temperature time and temperature. HOLIDAY MODE ⛱ - In this mode, for example, the vacation mode is set for 10 days and the temperature is setto 15 degrees Celsius. After 10 days, the device will automatically switch to programming mode. TEMPORARY MANUAL MODE - In this mode, ☝ icon will flash. At this time, the device executes the manually set temperature and returns to the weekly programming mode in the next time period. ":"MODE PROGRAMMING ⏱ - Dans ce mode, la vanne utilise un horaire prédéfini d\'heures et de température pour la semaine. MODE MANUAL ☝ - Dans ce mode, la vanne utilise le paramètre de température manuelle. Lorsque la température définie est plus basse que la \\"température minimale\\", la vanne est fermée (de manière forcée). MODE TEMPORARY MANUAL - Dans ce mode, l\'icone ☝ clignottera. À ce moment, la vanne utilisera la température définie manuellement et reviendra au mode Programming à la prochaine période de temps. MODE HOLIDAY ⛱ - Dans ce mode, si par exemple le mode vacance est mis pour 10 jours et la température à 15°C. Après 10 jours, la vanne repassera en mode Programming. ","PROGRAMMING MODE ⏱ - In this mode, the device executes a preset week programming temperature time and temperature. ":"MODE PROGRAMMING ⏱ - Dans ce mode, la vanne utilise un horaire prédéfini d\'heures et de température pour la semaine. ","Boost Heating: press and hold \\"+\\" for 3 seconds, the device will enter the boost heating mode, and the ▷╵◁ will flash. The countdown will be displayed in the APP":"Boost Chauffage: appuyez et maintenez \\"+\\" pour 3 secondes, la vanne entrera en mode Boost Chauffage, et l\'icone ▷╵◁ clignottera. Le décompte sera affiché dans l\'app","Countdown in minutes":"Décompte en minutes","Boost Time Setting 100 sec - 900 sec, (default = 300 sec)":"Paramètre du temp de Boost 100 sec - 900 sec, (defaut = 300 sec)"},"groups":{"add_to_group":"Ajouter au groupe","create_group":"Créer groupe","new_group_id":"Nouvel ID groupe","new_group_id_placeholder":"Spécifiez l\'ID groupe si nécessaire","new_group_name":"Nouveau nom de groupe","new_group_name_placeholder":"exemple: mes_lumières_chambre","remove_group":"Supprimer groupe","group_id":"ID Groupe","group_name":"Nom Groupe","group_members":"Membres Groupe","group_scenes":"Scènes Groupe"},"logs":{"empty_logs_message":"Rien à afficher","filter_by_text":"Filtrer sur le texte","show_only":"Niveau"},"map":{"help_coordinator_link_description":"Les lignes pleines sont les liens avec le Coordinateur","help_end_device_description":"Les Périphérique Terminaux sont en vert","help_is_coordinator":"est le Coordinateur","help_lqi_description":"La qualité de lien est entre 0 - 255 (plus c\'est haut mieux c\'est), les valeurs avec un / représentent plusieurs types de liens","help_router_description":"Les Routeurs sont en bleu","help_router_links_description":"Les lignes en pointillés sont les liens avec les Routeurs","hide":"Cliquez-moi pour me cacher","load":"Charger le schéma","loading":"En fonction de la taille de votre réseau, ceci peut prendre entre 10 secondes et 2 minutes."},"navbar":{"all":"Tout","dashboard":"Tableau de bord","devices":"Périphériques","disable_join":"Désactiver Appairage","extensions":"Extensions","groups":"Groupes","logs":"Journaux","map":"Schéma","ota":"MàJ OTA","permit_join":"Activer Appairage","restart":"Redémarrer","settings":"Paramètres","toggle_dropdown":"Bascule menu","touchlink":"Touchlink"},"ota":{"check":"Vérifier nouvelles MàJ","check_all":"Vérifier tout","empty_ota_message":"Vous n\'avez aucun périphérique supportant les MàJ OTA","remaining_time":"Temps restant {{- remaining}}","update":"MàJ firmware des périphériques"},"settings":{"about":"À propos","advanced":"Avancé","availability":"Disponibilité","blocklist":"Liste de blocage","coordinator_revision":"Révision du Coordinateur","coordinator_type":"Type de Coordinateur","donate":"Don","donation_text":["Salut, %username%, vous pouvez ici nous remercier pour notre dur labeur","N\'hésitez pas à nous laisser un petit mot gentil ;)"],"download_state":"Téléchargement de l\'état","experimental":"Expérimental","external_converters":"Convertisseurs Externes","frontend":"Interface","frontend_version":"Version Interface","main":"Principal","mqtt":"MQTT","ota":"MàJ OTA","passlist":"Autorisés","raw":"Brut","restart_zigbee2mqtt":"Redémarrer Zigbee2MQTT","serial":"Port Série","settings":"Paramètres","tools":"Outils","zigbee2mqtt_version":"Version Zigbee2MQTT","translate":"Traduire"},"settingsSchemaTranslations":{"advanced-title":"Avancé","advanced_availability_blacklist__title":"Liste noire disponibilité (déprécié, utilisez Liste blocage disponibilité)","advanced_availability_blocklist__description":"Empèche que certains périphériques soient vérifiés pour la disponibilité","advanced_availability_blocklist__title":"Liste blocage disponibilité","advanced_availability_passlist__description":"Activer la disponibilité seulement sur certains périphériques","advanced_availability_passlist__title":"Liste autorisation disponibilité","advanced_availability_whitelist__title":"Liste blanche disponibilité (déprécié, utilisez Liste autorisation disponibilité)","advanced_ext_pan_id__description":"ID pan étendu zigbee, tout changement imposera un ré-appairage de tous les périphériques!","advanced_ext_pan_id__title":"ID Pan étendu","advanced_log_output__description":"Localisation des journaux de sorties, laissez vide pour supprimer la journalisation","advanced_log_output__title":"Journaux de Sortie","advanced_log_syslog-title":"syslog","blocklist__description":"Bloquer les périphériques sur le réseau (par adresse IEEE)","blocklist__title":"Liste blocage","experimental-title":"Expérimental","external_converters__description":"Vous pouvez définir des convertisseurs externes pour par exemple ajouter un support pour un périphérique fait maison","external_converters__title":"Convertisseurs externes","frontend-title":"Interface","mqtt-title":"MQTT","ota-title":"MàJ OTA","passlist__description":"Autorise seulement certains périphériques à joindre le réseau (par adresse ieee). Notez que tous les périphériques qui ne sont pas dans cette liste seront retirés du réseau !","passlist__title":"Liste autorisation","root-title":"Port Série","root__description":"Autoriser seulement certains périphériques à joindre le réseau (par adresse IEEE). Notez que tous les périphériques absents de la liste seront retirés du réseau!","root__title":"Liste Autorisation","root_availability_blacklist__title":"Liste noire disponibilité (déprécié, utilisez Liste blocage disponibilité)","root_availability_blocklist__description":"Empèche que certains périphériques soient vérifiés pour la disponibilité","root_availability_blocklist__title":"Liste blocage disponibilité","root_availability_passlist__description":"Activer la disponibilité seulement sur certains périphériques","root_availability_passlist__title":"Liste autorisation disponibilité","root_availability_whitelist__title":"Liste blanche disponibilité (déprécié, utilisez Liste autorisation disponibilité)","root_debounce_ignore__description":"Protège les valeurs des propriétés spécifiées d\'être remplacées pendant le temps d\'anti-rebond","root_debounce_ignore__title":"Ignorer anti-rebond","root_ext_pan_id__description":"ID pan étendu zigbee, tout changement imposera un ré-appairage de tous les périphériques!","root_ext_pan_id__title":"ID Pan étendu","root_filtered_attributes__description":"Permet d\'empêcher la publication de certains attributs","root_filtered_attributes__title":"Attributs filtrés","root_log_output__description":"Localisation des journaux de sorties, laissez vide pour supprimer la journalisation","root_log_output__title":"Journaux de Sortie","root_log_syslog-title":"syslog","serial-title":"Port Série","root_filtered_optimistic__title":"Attibuts optimistes filtrés","root_filtered_optimistic__description":"Attributs filtrés de la publication optimiste lors de l\'appel de /set. (Aucun effet si optimiste est à faux)."},"touchlink":{"detected_devices_message":"{{count}} périphériques Touchlink détectés.","rescan":"Rescanner","scan":"Scanner"},"values":{"clear":"RàS","Clear":"Inactif","closed":"Fermé","Closed":"Fermé","occupied":"Occupé","Occupied":"Occupé","open":"Ouvert","Open":"Ouvert","shake":"Secoué","slide":"Glissé","true":"Vrai","leaking":"Fuite","tampered":"Saboté","supported":"Supporté","not_supported":"Non supporté","null":"Nul","false":"Faux","empty_string":"Chaîne vide (\\"\\")","tap":"Tappé","wakeup":"Réveillé","fall":"Tombé"},"zigbee":{"actions":"Actions","attribute":"Attribut","battery":"Batterie","block_join":"Bloquer tout nouvel appairage","cluster":"Cluster","dc_source":"Source DC","description":"Description","device_type":"Type de Périph","device":"Périphérique","endpoint":"Endpoint","firmware_build_date":"Date Firmware","firmware_version":"Version Firmware","force_remove":"Forcer la suppression","friendly_name":"Nom Simplifié","ieee_address":"Adresse IEEE","input_clusters":"Clusters Entrants","interview_completed":"Interview terminé","interview_failed":"Echec de l\'Interview","interviewing":"Interview en cours","last_seen":"Vu il y a","lqi":"LQI","mains_single_phase":"Réseau (phase simple)","manufacturer":"Constructeur","max_rep_interval":"Interval max réponse","min_rep_change":"Changement min réponse","min_rep_interval":"Interval min réponse","model":"Modèle","network_address":"Adresse réseau","none":"Aucun(e)","output_clusters":"Clusters Sortants","pic":"Img","power":"Alim","power_level":"Niveau de charge","reconfigure":"Reconfigurer","remove_device":"Supprimer le périph","rename_device":"Renommer le périph","select_attribute":"Choisir Attribut","select_cluster":"Choisir Cluster","support_status":"Supporté","unsupported":"Non Supporté","updating_firmware":"Firmware en cours de MàJ","update_Home_assistant_entity_id":"MàJ de l\'ID d\'entité Home Assistant","zigbee_model":"Modèle Zigbee","zigbee_manufacturer":"Constructeur Zigbee"},"scene":{"scene_id":"ID Scène","scene_name":"Nom Scène","recall":"Rappeler","select_scene":"Choisir Scène","store":"Stocker","remove":"Supprimer","remove_all":"Supprimer tout","add":"Ajouter"}}');
|
4940
4987
|
;// CONCATENATED MODULE: ./src/i18n/locales/pl.json
|
4941
4988
|
const locales_pl_namespaceObject = JSON.parse('{"common":{"action":"Akcja","check_all":"Sprawdź wszystkie","clear":"Wyczyść","close":"Zamknij","delete":"Usuń","dialog_confirmation_prompt":"Czy jesteś pewien?","enter_search_criteria":"Wprowadź kryteria wyszukiwania","confirmation":"potwierdzenie","ok":"ok","source_endpoint":"źródłowy_endpoint","select_endpoint":"wybierz_endpoint","destination_endpoint":"przeznaczony_endpoint","the_only_endpoint":"tylko_endpoint","select_device":"wybierz_urządzenie","groups":"grupy","devices":"urządzenia","apply":"zatwierdź","destination":"kierunek","clusters":"klastry","bind":"powiąż","unbind":"rozwiąż","loading":"Ładowanie...","save":"Zapisz"},"devicePage":{"about":"O urządzeniu","bind":"Powiązania","clusters":"Klaster","dev_console":"Konsola","exposes":"Eksponowane","reporting":"Raportowanie","settings":"Ustawienia","scene":"Scena","settings_specific":"Ustawienia (specyficzne)","state":"Stan"},"extensions":{"extension_name_propmt":"Wprowadź nazwę nowego rozszerzenia","select_extension_to_edit":"Wybierz rozszerzenie do edycji"},"featureNames":{"brightness":"Poziom Jasności","color_temp":"Temperatura Barwowa","color_xy":"Kolor Xy","contact":"Kontakt","humidity":"Wilgotność","illuminance":"Natężenie światła","occupancy":"Obecność","pressure":"Ciśnienie","soil_moisture":"Wilgotność Gleby","state":"Stan","water_leak":"Wyciek Wody","position":"Pozycja","current_heating_setpoint":"Aktualna wartość zadana ogrzewania","local_temperature":"Temperatura Lokalna","system_mode":"Tryb Pracy","local_temperature_calibration":"Lokalna kalibracja temperatury","away_mode":"Tryb Z dala od domu","preset":"Preset","temperature":"Temperatura","power":"Moc","current":"Natężenie","voltage":"Napięcie","energy":"Energia"},"groups":{"add_to_group":"Dodaj do grupy","create_group":"Utwórz grupę","new_group_id":"ID nowej grupy","new_group_id_placeholder":"Podaj ID grupy jeśli potrzebujesz","new_group_name":"Nazwa nowej grupy","new_group_name_placeholder":"przykład: lampy_sypialnia","remove_group":"Usuń grupę"},"logs":{"empty_logs_message":"Brak logów do wyświetlenia","filter_by_text":"Filtruj po tekście","show_only":"Pokaż tylko"},"map":{"help_coordinator_link_description":"Linie ciągłe to połączenia z koordynatorem","help_end_device_description":"zielony to urządzenia końcowe","help_is_coordinator":"to koordynator","help_lqi_description":"Jakość połączenia to wartość 0 - 255 (im wyższa tym lepiej), wartości oddzielone / odnoszą się do różnych typów połączeń.","help_router_description":"niebieski to rutery","help_router_links_description":"Linie przerywane to połączenia z ruterami","hide":"Kliknij tutaj by ukryć","load":"Załaduj mapę","loading":"Ładowanie mapy może zająć od 10 sekund do 2 minut, w zależności od rozmiaru Twojej sieci."},"navbar":{"all":"Wszystkie","dashboard":"Pulpit","devices":"Urządzenia","disable_join":"Zabroń dołączania","extensions":"Rozszerzenia","groups":"Grupy","logs":"Logi","map":"Mapa","ota":"OTA","permit_join":"Zezwól na dołączanie","restart":"Restart","settings":"Ustawienia","toggle_dropdown":"Przełącz listę","touchlink":"Touchlink"},"ota":{"check":"Spradź dostępność aktualizacji","check_all":"Sprawdź wszystkie","empty_ota_message":"Nie posiadasz urządzeń wspierających OTA","remaining_time":"Pozostały czas: {{- remaining}}","update":"Zaktualizuj oprogramowanie układowe"},"settings":{"about":"O programie","advanced":"Zaawansowane","blocklist":"Lista zablokowanych","coordinator_revision":"Wersja oprogramowania koordynatora","coordinator_type":"Typ koordynatora","donate":"Wsparcie","donation_text":["Cześć %username%, tutaj możesz podziękować nam za ciężką pracę.","Byłoby miło gdybyś zostawił też jakieś dobre słowo ;)"],"download_state":"Pobierz stan","experimental":"Eksperymentalne","external_converters":"Konwertery zewnętrzne","frontend":"Aplikacja interfejsu użytkownika","frontend_version":"Wersja aplikacji interfejsu użytkownika","main":"Główne","translate":"Tłumaczenie","mqtt":"MQTT","ota":"Aktualizacje OTA","passlist":"Lista dopuszczonych","raw":"Wygenerowana konfiguracja","restart_zigbee2mqtt":"Zrestartuj Zigbee2MQTT","serial":"Port szeregowy","settings":"Ustawienia","tools":"Narzędzia","zigbee2mqtt_version":"Wersja Zigbee2MQTT"},"settingsSchemaTranslations":{"root-title":"Port szeregowy","root__description":"Pozwól tylko wybranym urządzeniom (identyfikowanym przez adres ieeeAddr) do sieci. Zwróc uwagę na fakt, że wszystkie urządzenia spoza tej listy zostaną usunięte z obecnej sieci!","root__title":"Lista dopuszczonych","root_availability_blacklist__title":"Czarna lista sprawdzania dostępności (ustawienie wycofywane, użyj listy blokad sprawdzania dostępności)","root_availability_blocklist__description":"Zablokuj sprawdzanie dostępności urządzeń z tej listy","root_availability_blocklist__title":"Lista blokad sprawdzania dostępności","root_availability_passlist__description":"Włącz sprawdzanie obecności tylko dla urządzeń z tej listy","root_availability_passlist__title":"Lista sprawdzania dostępności","root_availability_whitelist__title":"Bilała lista sprawdzania dostępności (ustawienie wycofywane, użyj listy sprawdzania obecności)","root_ext_pan_id__description":"Parametr Zigbee rozszerzonego identyfikatora sieci, zmiana wymaga ponownego sparowania wszystkich urządzeń!","root_ext_pan_id__title":"Ext Pan ID","root_log_output__description":"Położenie wyjściowego pliku logu, pozostaw puste by wyłączyć rejestrowanie logu zdarzeń","root_log_output__title":"Wyjście logowania","root_filtered_attributes__title":"Filtrowane opublikowane atrybuty","root_filtered_attributes__description":"Filtrowanie atrybutów z publikowanej zawartości.","root_debounce_ignore__title":"Ignorowanie odbicia","root_debounce_ignore__description":"Chroni unikalne wartości określonych właściwości payload przed nadpisaniem w czasie odbicia","root_filtered_optimistic__title":"Przefiltrowane atrybuty optimistic","root_filtered_optimistic__description":"Filtruj atrybuty z optimistic publish payload podczas wywoływania /set. (Nie ma to żadnego efektu jeśli optimistic jest ustawione na false)...","advanced-title":"Zaawansowane","advanced_availability_blacklist__title":"Czarna lista dostępności (przestarzała, użyj availability_blocklist)","advanced_availability_blocklist__title":"Lista blokad dostępności","advanced_availability_blocklist__description":"Uniemożliwienie sprawdzania dostępności urządzeń","advanced_availability_passlist__title":"Passlista dostępności","advanced_availability_passlist__description":"Włącz sprawdzanie dostępności tylko dla niektórych urządzeń","advanced_availability_whitelist__title":"Whitelista dostępności (przestarzała, użyj passlisty)","advanced_ext_pan_id__title":"Ext Pan ID","advanced_ext_pan_id__description":"Zigbee extended pan ID, zmiana wymaga naprawy wszystkich urządzeń!","advanced_log_output__title":"Wyjście logów","advanced_log_output__description":"Wyjściowa lokalizacja logu, pozostaw puste aby wyłączyć logowanie","advanced_log_syslog-title":"logi systemowe","blocklist__title":"Lista blokad","blocklist__description":"Blokowanie urządzeń z sieci (według ieeeAddr)","experimental-title":"Eksperymentalne","external_converters__title":"Konwertery zewnętrzne","external_converters__description":"Możesz zdefiniować zewnętrzne konwertery, aby np. dodać obsługę urządzenia DiY","frontend-title":"Frontend","mqtt-title":"MQTT","ota-title":"Aktualizacje OTA","passlist__title":"Passlista","passlist__description":"Zezwól tylko niektórym urządzeniom na dołączenie do sieci (według ieeeAddr). Uwaga, wszystkie urządzenia nie znajdujące się na passliście zostaną usunięte z sieci!","serial-title":"Serial","root_log_syslog-title":"Log systemowy"},"scene":{"scene_id":"id_sceny","store":"store","recall":"odwołaj","remove":"usuń","remove_all":"usuń_wszystko","select_scene":"wybierz_scene"},"touchlink":{"detected_devices_message":"Wykryte urządzenia touchlink: {{count}}. ","rescan":"Skanuj ponownie","scan":"Skanuj"},"values":{"Clear":"Brak","Closed":"Zamknięte","Occupied":"Wykryto Obecność","Open":"Otwarte","tampered":"Naruszenie","supported":"Obsługiwane","not_supported":"Nie Obsługiwane","leaking":"Wyciek","false":"Fałsz","true":"Prawda"},"featureDescriptions":{"Remaining battery in %":"Pozostały stan baterii w %","Measured temperature value":"Zmierzona wartość temperatury","Measured relative humidity":"Zmierzona wilgotność względna","Voltage of the battery in millivolts":"Napięcie akumulatora w miliwoltach","Link quality (signal strength)":"Jakość połączenia (siła sygnału)"},"zigbee":{"block_join":"Zablokuj ponowne dołączanie","device_type":"Typ urządzenia","endpoint":"Punkt końcowy","description":"Opis","cluster":"klaster","attribute":"atrybut","min_rep_interval":"min_rep_interval","max_rep_interval":"max_rep_interval","min_rep_change":"min_rep_change","actions":"akcje","select_cluster":"wybierz_klaster","none":"brak","select_attribute":"wybierz_atrybut","output_clusters":"wyjściowe_klastry","input_clusters":"wejściowe_klastry","zigbee_manufacturer":"zigbee_manufacturer(kod)","firmware_build_date":"Data firmware","firmware_version":"Wersja firmware","force_remove":"Wymuś usunięcie","friendly_name":"Przyjazna nazwa","ieee_address":"Adres IEEE","interview_completed":"Wywiad zakończony","last_seen":"Ostatnio widziane","lqi":"LQI","manufacturer":"Producent","model":"Model","network_address":"Adres sieciowy","pic":"Foto","power":"Zasilanie","reconfigure":"Przekonfiguruj","remove_device":"Usuń urządzenie","rename_device":"Zmień nazwę urządzenia","support_status":"Support status","unsupported":"Niewspierane","update_Home_assistant_entity_id":"Zaktualizuj ID encji Home Assistanta","zigbee_model":"Model Zigbee"}}');
|
4942
4989
|
;// CONCATENATED MODULE: ./src/i18n/locales/de.json
|
4943
|
-
const locales_de_namespaceObject = JSON.parse('{"common":{"action":"Aktion","actions":"Aktionen","apply":"Anwenden","attribute":"Attribute","bind":"verbinden","check_all":"Alle prüfen","clear":"Löschen","close":"Schliessen","cluster":"Cluster","clusters":"Clusters","confirmation":"Bestätigen","delete":"Löschen","destination":"Ziel","destination_endpoint":"Zielendpunkt","devices":"Geräte","dialog_confirmation_prompt":"Bist Du sicher?","disable":"Abschalten","enter_search_criteria":"Suchwort","groups":"Gruppen","loading":"Laden...","none":"Nichts","ok":"ok","read":"Lesen","save":"Speichern","select_device":"Wähle Gerät","select_endpoint":"Wähle Endpunkt","source_endpoint":"Quellen Endpunkt","the_only_endpoint":"Der einzige Endpunkt","unbind":"trennen","unknown":"Unbekannt","write":"Schreiben"},"devicePage":{"about":"Über","bind":"Bindungen","clusters":"Kluster","dev_console":"Dev Konsole","exposes":"Details","reporting":"Berichten","scene":"Szene","settings":"Einstellungen","settings_specific":"Einstellungen (spezifisch)","state":"Status","unknown_device":"unbekanntes Gerät"},"exposes":{"action":"Aktion","auto_off":"Automatisch abschalten","away_mode":"Abwesenheitsmodus","away_preset_days":"Abwesenheitszeit (in Tagen)","away_preset_temperature":"Temperatur bei Abwesenheit","backlight_mode":"Rücklicht Modus","battery":"Batterie","battery_low":"Batterie schwach","boost_time":"Boost Dauer","brightness":"Helligkeit","calibration":"Kalibrierung","carbon_monoxide":"Kohlenmonoxid","co2":"Kohlendioxid","color_hs":"Farbe hue/saturation","color_temp":"Farbtemperatur","color_temp_startup":"Farbtemperatur nach Einschalten","color_xy":"Farbe (XY)","comfort_temperature":"Komfort Temperature","consumer_connected":"Verbraucher angeschlossen","consumer_overload":"Verbraucherüberlastung","contact":"Kontakt","current":"Aktuell","current_heating_setpoint":"Aktuelle Solltemperatur","device_temperature":"Gerätetemperatur","eco_temperature":"Ökologische Temperatur","effect":"Effekt","empty_exposes_definition":"Exposes nicht definiert","energy":"Verbrauch","force":"Erzwungene Ventilposition","humidity":"Luftfeuchtigkeit","illuminance":"Beleuchtungsstärke","illuminance_lux":"Beleuchtungsstärke in Lux","led_disabled_night":"LED Nachts ausschalten","linkquality":"Linkqualität","local_temperature":"Raumtemperatur","local_temperature_calibration":"Kalibrierung Raumtemperatur","max_temperature":"Maximale Temperatur","min_temperature":"Minimale Temperatur","motion":"Bewegung","motion_direction":"Bewegungsrichtung","motor_reversal":"Richtung umkehren","motion_speed":"Bewegungsgeschwindigkeit","moving":"Bewegung","occupancy":"Belegung","operation_mode":"Betriebsmodus","options":"Optionen","position":"Position","power":"Leistung","power_on_behavior":"Zustand nach Stromausfall","power_outage_memory":"Zustand nach Stromausfall","presence":"Anwesenheit","preset":"Voreinstellung","Pressure":"Luftdruck","sensivity":"Empfindlichkeit","smoke":"Rauch","state":"Status","strength":"Stärke","system_mode":"Heizmodus","tamper":"Manipulation","temperature":"Temperatur","voltage":"Stromspannung","water_leak":"Wasserleck","week":"Woche"},"extensions":{"extension_name_propmt":"Name der neuen Erweiterung","select_extension_to_edit":"Wähle Erweiterung zum Bearbeiten","create_new_extension":"Neue Erweiterung erstellen"},"featureNames":{"action":"Aktion","action_angle":"Bewegung Winkel","action_from_side":"Bewegung von Seite","action_side":"Aktive Seite","action_to_side":"Bewegung zur Seite","alarm":"Alarm","angle_x":"Ausrichtung X","angle_y":"Ausrichtung Y","angle_z":"Ausrichtung Z","auto_lock":"Automatische Sperre","away_mode":"Abwesenheitsmodus","brightness":"Helligkeit","calibration_time":"Kalibrierungszeit","carbon_monoxide":"Kohlenmonoxid","child_lock":"Kindersicherung","co2":"Kohlendioxid","color_hs":"Farbe Hs","color_temp":"Farbtemperatur","color_temp_startup":"Start Farbtemperatur","color_xy":"Farbe Xy","consumer_connected":"Verbraucher angeschlossen","contact":"Kontakt","current":"Aktuell","current_heating_setpoint":"Aktuelle Solltemperatur","current_level_startup":"Aktuelles Startlevel","device_temperature":"Gerätetemperatur","energy":"Energie","friday_schedule":"Plan Freitag","heating":"Heizen","holidays_schedule":"Plan Urlaubszeit","humidity":"Feuchtigkeit","illuminance":"Beleuchtungsstärke","level_config":"Level Konfiguration","local_temperature":"Lokale Temperatur","local_temperature_calibration":"Kalibrierung lokale Temperatur","monday_schedule":"Plan Montag","motion":"Bewegung","motion_direction":"Bewegungsrichtung","motion_speed":"Bewegungsgeschwindigkeit","motor_speed":"Motorgeschwindigkeit","moving":"Bewegung","occupancy":"Belegung","on_off_transition_time":"Ein Aus Übergangszeit","options":"Optionen","position":"Position","power":"Leistung","presence":"Anwesenheit","preset":"Vorgabe","pressure":"Luftdruck","program_saturday":"Programm-Samstag","program_sunday":"Programm-Sonntag","program_weekday":"Programm-Wochentag","programming_mode":"Programmier-Modus","saturday_schedule":"Plan Samstag","smoke":"Rauch","smoke_density":"Stärke der Rauchentwicklung","soil_moisture":"Bodenfeuchtigkeit","state":"Status","state_l1":"Status L 1","state_l2":"Status L 2","state_l3":"Status L 3","state_l4":"Status L 4","sunday_schedule":"Plan Sonntag","system_mode":"System Mode","tamper":"Manipulation","temperature":"Temperatur","thursday_schedule":"Plan Donnerstag","tuesday_schedule":"Plan Dienstag","valve_detection":"Ventil Erkennung","voltage":"Volt","water_leak":"Wasserleck","week":"Woche","wednesday_schedule":"Plan Mittwoch","window_detection":"Fenster Erkennung","window":"Fenster","workdays_schedule":"Plan Werktags"},"featureDescriptions":{"Auto off after specific time.":"Automatische Abschaltung nach bestimmter Zeit.","Away mode":"Abwesenheitsmodus","Away preset days":"Abwesenheit in Tagen","Away preset temperature":"Definierte Temperatur für den Abwesenheitsmodus","Boost Heating: press and hold \\"+\\" for 3 seconds, the device will enter the boost heating mode, and the ▷╵◁ will flash. The countdown will be displayed in the APP":"Boost: Halten Sie \\"+ \\" 3 Sekunden lang gedrückt, das Ventil wechselt in den Boost-Modus und ▷╵◁ beginnt zu blinken. Die Dauer wird in der Anwendung angezeigt. ","Boost time":"Boost Zeit","Boost Time Setting 100 sec - 900 sec, (default = 300 sec)":"Boost-Zeiteinstellung 100 Sek. - 900 Sek., (Standard = 300 Sek.)","Brightness of this light":"Helligkeit des Leuchtmittels","Calibrates the humidity value (absolute offset), takes into effect on next report of device.":"Kalibriert den Luftfeuchtewert (absoluter Offset), wird beim nächsten Bericht des Gerätes wirksam.","Calibrates the illuminance value (percentual offset), takes into effect on next report of device.":"Kalibriert den Helligkeitswert (prozentualer Offset), wird beim nächsten Bericht des Geräts wirksam.","Calibrates the illuminance_lux value (percentual offset), takes into effect on next report of device.":"Kalibriert den Helligkeitswert (LUX) (prozentualer Offset), wird beim nächsten Bericht des Geräts wirksam.","Calibrates the pressure value (absolute offset), takes into effect on next report of device.":"Kalibriert den Luftdruckwert (absoluter Offset), wird beim nächsten Bericht des Geräts wirksam.","Calibrates the temperature value (absolute offset), takes into effect on next report of device.":"Kalibriert den Temperaturwert (absoluter Offset), wird beim nächsten Bericht des Geräts wirksam.","Calibration time":"Zeit zum Kalibrieren","Color of this light expressed as hue/saturation":"Farbe des Leuchtmittels übersetzt in hue/saturation","Color of this light in the CIE 1931 color space (x/y)":"Farbe des Leuchtmittels im CIE 1931 Farbraum (x/y)","Color temperature after cold power on of this light":"Farbtemperatur nach Trennung vom Stromnetz","Color temperature of this light":"Farbtemperatur des Leuchtmittels","Comfort temperature":"Komfort Temperatur","Controls the behaviour when the device is powered on":"Überprüft das Verhalten beim Einschalten des Device.","Countdown in minutes":"Countdown in Minuten.","Current temperature measured on the device":"Aktuelle Temperatur am Thermostat","Decoupled mode for center button":"Entkoppelter Modus für Mitteltaste","Decoupled mode for left button":"Entkoppelter Modus für linke Taste","Decoupled mode for right button":"Entkoppelter Modus für rechte Taste","direction of movement from the point of view of the radar":"Zeigt die Richtung der Bewegung aus sicht des Sensors an.","ECO mode (energy saving mode)":"Eco-Mode (Energiesparfunktion)","Eco temperature":"Öko-Temperatur","Enable/disable auto lock":"Aktivieren/Deaktivieren auto lock","Enable/disable away mode":"Aktivieren/Deaktivieren des Abwesenheitsmodus","Enables/disables physical input on the device":"Aktivieren/Deaktivieren der direkten Bedienung des Gerätes","Enables/disables window detection on the device":"Aktivieren/Deaktivieren der Fensterstatus Erkennung","Enabling prevents both relais being on at the same time":"Aktivierung schützt davor, beide Relais gleichzeitig zu aktivieren","Force the valve position":"Erzwingt die eingestellte Ventilposition","Indicates if CO (carbon monoxide) is detected":"Kohlenmonoxid entdeckt","Indicates if the battery of this device is almost empty":"Warnung, wenn Batterie schwach","Indicates if the contact is closed (= true) or open (= false)":"Kontakt geschlossen (= true) oder offen (= false)","Indicates whether the device detected a water leak":"Zeigt, ob ein Wasseraustritt erkannt wurde","Indicates whether the device detected occupancy":"Ermittelt, ob eine Bewegung erkannt wurde","Indicates whether the device detected presence":"Zeigt, ob eine Anwesenheit erkannt wurde.","Indicates whether the device detected smoke":"Raucherkennung","Indicates whether the device is tampered":"Zeigt, ob das Gerät manipuliert wurde","Instantaneous measured electrical current":"Aktuell gemessener Ampere-Bedarf","Instantaneous measured power":"Momentan gemessene Leistung","Link quality (signal strength)":"Link Qualität (Signalstärke)","Maximum temperature":"Maximale Temperatur","Measured electrical potential value":"Gemessene Stromstärke in Volt ankommend","Measured illuminance in lux":"Gemessene Helligkeit in Lux","Measured relative humidity":"Messung der relativen Luftfeuchtigkeit","Measured temperature value":"Gemessene Temperatur","Minimum temperature":"Minimale Temperatur","Mode of this device (similar to system_mode)":"Modus des Thermostats (identisch zu system_mode)","Mode of this device":"Modus des Thermostats","Motor speed":"Motor Geschwindigkeit","moving inside the range of the sensor":"Zeigt, ob eine Bewegung innerhalb des Radar-Radius erkannt wurde.","Number of digits after decimal point for humidity, takes into effect on next report of device.":"Anzahl der Nachkomma-Stellen für Luftfeuchtigkeit, Änderung wirksam beim nächsten Geräte-Report.","Number of digits after decimal point for illuminance, takes into effect on next report of device.":"Anzahl der Nachkomma-Stellen für Helligkeit, Änderung wirksam beim nächsten Geräte-Report.","Number of digits after decimal point for illuminance_lux, takes into effect on next report of device.":"Anzahl der Nachkomma-Stellen für Helligkeit in Lux, Änderung wirksam beim nächsten Geräte-Report.","Number of digits after decimal point for pressure, takes into effect on next report of device.":"Anzahl der Nachkomma-Stellen für Luftdruck, Änderung wirksam beim nächsten Geräte-Report.","Number of digits after decimal point for temperature, takes into effect on next report of device.":"Anzahl der Nachkomma-Stellen für Temperatur, Änderung wirksam beim nächsten Geräte-Report.","Offset to be used in the local_temperature":"Kallibrierung der Raumtemperatur am Thermostat","On/off state of the switch":"On/off Status des Schalters","On/off state of this light":"On/off Status des Leuchtmittels","Position of this cover":"Position des Vorhangs","Position":"Position","presets for sensivity for presence and movement":"Standardeinstellungen für die Sensibilität des Radar-Sensors (Bewegung und Anwesenheit).","PROGRAMMING MODE ⏱ - In this mode, the device executes a preset week programming temperature time and temperature. ":"PROGRAMMIERMODUS ⏱ - In diesem Modus verwendet das Ventil einen festgelegten Stunden- und Temperaturplan pro Woche.","Raw measured illuminance":"Gemessener Helligkeits-Rohwert","Recover state after power outage":"Eingestellter Zustand nach Stromabfall","Remaining battery in %":"Aktueller Batteriestatus in %","Sends a message the last time occupancy was detected. When setting this for example to [10, 60] a `{\\"no_occupancy_since\\": 10}` will be send after 10 seconds and a `{\\"no_occupancy_since\\": 60}` after 60 seconds.":"Sendet eine Nachricht, wann das letzte Mal eine Belegung erkannt wurde. Wenn dies beispielsweise auf [10, 60] eingestellt wird, wird nach 10 Sekunden ein `{\\"no_occupancy_since\\": 10}` gesendet und nach 60 Sekunden ein `{\\"no_occupancy_since\\": 60}`.","Set to false to disable the legacy integration (highly recommended), will change structure of the published payload (default true).":"Auf \\"false\\" gesetzt, um die Legacy-Integration zu deaktivieren (dringend empfohlen), ändert die Struktur der veröffentlichten payloads (Standardwert \\"true\\"). ","sensitivity of the radar":"Einstellen der Radar-Sensibilität","Side of the cube":"Würfelseite","Speed of movement":"Zeigt die Geschwindigkeit der Bewegung an.","Sum of consumed energy":"Seit Anfang verbrauchter Strom in kW/h","Temperature setpoint":"Temperatur Sollwert","The measured atmospheric pressure":"Gemessner Luftdruck","Time in seconds after which occupancy is cleared after detecting it (default 90 seconds).":"Zeit in Sekunden, nach der die Belegung zurück gesetzt wird, nachdem sie erkannt wurde (Standard 90 Sekunden).","Triggered action (e.g. a button click)":"Ausgelöstes Ereignis (z.B. ein Aktivieren eines Tasters)","Triggers an effect on the light (e.g. make light blink for a few seconds)":"Startet einen Effekt des Leuchtmittels (z.B. Blinken für ein paar Sekunden)","Voltage of the battery in millivolts":"Ladung der Batterie in Millivolt","Week format user for schedule":"Aufteilung der Wochentage für Heizprogramme","Window status closed or open ":"Zustand des Fensters (geöffnet oder geschlossen)"},"groups":{"add_to_group":"Zur Gruppe hinzufügen","create_group":"Gruppe erstellen","group_id":"Gruppen ID","group_name":"Gruppen Name","group_members":"Gruppen Mitglieder","group_scenes":"Gruppen Szenen","new_group_id":"Neue Gruppen-ID","new_group_id_placeholder":"Wenn benötigt, Gruppen-ID festlegen.","new_group_name":"Neuer Gruppenname","new_group_name_placeholder":"Beispiel: my_bedroom_lights","remove_group":"Gruppe entfernen"},"logs":{"empty_logs_message":"Nichts anzuzeigen","filter_by_text":"Filtere nach","show_only":"Log-Typ"},"map":{"help_coordinator_link_description":"Durchgehende Linien führen zum Coordinator","help_end_device_description":"Grün bedeutet: Endgerät","help_is_coordinator":"Koordinator","help_lqi_description":"Link Qualität zwischen 0 - 255 (höher ist besser), Angaben mit / bedeuten verschiedene Link-Typen.","help_router_description":"Blau bedeutet: Router","help_router_links_description":"Gestrichelte Linien führen zu Routern","hide":"Zum Verbergen klicken","load":"Karte laden","loading":"Abhängig von der Größe des Netzwerks kann es zwischen 10 Sekunden und 2 Minuten dauern."},"navbar":{"all":"Alle","dashboard":"Dashboard","devices":"Geräte","disable_join":"Anlernen deaktivieren","extensions":"Erweiterungen","groups":"Gruppen","logs":"Logs","map":"Karte","ota":"OTA","permit_join":"Anlernen aktivieren","restart":"Neustart","settings":"Einstellungen","toggle_dropdown":"Dropdown Auswahl","touchlink":"Touchlink"},"ota":{"check":"Prüfe auf neue Updates","check_all":"Alle überprüfen","empty_ota_message":"Keine OTA-fähigen Geräte vorhanden","remaining_time":"verbleibende Zeit {{- remaining}}","update":"Update Geräte Firmware"},"scene":{"add":"Hinzufügen","remove_all":"Alle entfernen","scene_id":"Szenen ID","scene_name":"Szenen Name","store":"Speichern","recall":"Abrufen","remove":"Entfernen","select_scene":"Szene auswählen"},"settings":{"about":"Über","advanced":"Erweitert","availability":"Erreichbar","blocklist":"Geblockte Geräte","coordinator_revision":"Coordinator Version","coordinator_type":"Coordinator Typ","donate":"Spende","donation_text":["Hallo, %username%, hier kannst Du unsere harte Arbeit unterstützen.","Ein netter, begleitender Kommentar würde uns ebenso freuen. ;)"],"download_state":"Download Status","experimental":"Experimentell","external_converters":"Externe Konverter","frontend":"Frontend","frontend_version":"Frontend Version","main":"Main","mqtt":"MQTT","ota":"OTA updates","passlist":"Passlist","raw":"Raw","restart_zigbee2mqtt":"Zigbee2MQTT neustarten","serial":"Serial","settings":"Einstellungen","tools":"Tools","zigbee2mqtt_version":"Zigbee2MQTT Version","translate":"Übersetzen"},"settingsSchemaTranslations":{"advanced_availability_blacklist__title":"Aktuelle Blacklist (veraltet, nutze availability_blocklist)","advanced_availability_blocklist__description":"Klammert Geräte bei dem Verfügbarkeits-Check aus.","advanced_availability_blocklist__title":"Aktuelle Blockliste","advanced_availability_passlist__description":"Ermögliche Anwesenheits-Check nur für gelistete Geräte","advanced_availability_passlist__title":"Aktuelle passlist","advanced_availability_whitelist__title":"Aktuelle whitelist (veraltet, nutze passlist)","advanced_ext_pan_id__description":"Zigbee erweiterte PAN ID, Änderung benötigt neues Anlernen aller Geräte!","advanced_ext_pan_id__title":"Erweiterte Pan ID","advanced_log_output__description":"Ablageort für das Log, leer lassen um das Logging zu unterbinden","advanced_log_output__title":"Log Ausgabe","advanced_log_syslog-title":"System-Log","advanced-title":"Erweitert","availability_active-description":"Optionen für aktive Geräte (Router/mit Netzanschluss)","availability_active-title":"Aktiv","availability_passive-description":"Optionen für passive Geräte (Batteriebetrieben)","availability_passive-title":"Passiv","availability-title":"Verfügbarkeit (erweitert)","blocklist__description":"Blockt Geräte vom Netzwerk (anhand der ieeeAddr)","blocklist__title":"Blocklist","experimental-title":"Experimentell","external_converters__description":"Festlegen von eigenen, externen Konvertern z. B. zum Einbinden eigener Zigbee-Devices","external_converters__title":"Externe Konverter","frontend-title":"Frontend","mqtt-title":"MQTT","ota-title":"OTA updates","passlist__description":"Erlaubt nur bestimmten Geräten, dem Netzwerk beizutreten (anhand der ieeeAddr). Beachte: Alle Geräte, die nicht in der Passlist sind, werden vom Netzwerk entfernt!","passlist__title":"Passlist","root__description":"Erlaubt nur bestimmten Geräten, dem Netzwerk beizutreten (anhand der ieeeAddr). Beachte: Alle Geräte, die nicht in der Passlist sind, werden vom Netzwerk entfernt!","root_availability_blacklist__title":"Aktuelle Blacklist (veraltet, nutze availability_blocklist)","root_availability_blocklist__description":"Klammert Geräte bei dem Verfügbarkeits-Check aus.","root_availability_blocklist__title":"Aktuelle Blockliste","root_availability_passlist__description":"Ermögliche Anwesenheits-Check nur für gelistete Geräte","root_availability_passlist__title":"Aktuelle passlist","root_availability_whitelist__title":"Aktuelle whitelist (veraltet, nutze passlist)","root_debounce_ignore__description":"Schützt einzelne payload Werte von spezifizierten payload Eigenschaften vor Überschreibung während der Entprellzeit","root_debounce_ignore__title":"Ignoriere doppelte Meldungen","root_ext_pan_id__description":"Zigbee erweiterte PAN ID, Änderung benötigt neues Anlernen aller Geräte!","root_ext_pan_id__title":"Erweiterte PAN ID","root_filtered_attributes__description":"Filter attribute vom veröffentlichten payload.","root_filtered_attributes__title":"Gefilterte, veröffentliche Attibute","root_filtered_optimistic__description":"Filtern von Attributen bei \\"optimistic publish payload\\" bei abruf oder setzen. (Diese Funktion ist abgeschaltet, wenn \\"optimistic\\" deaktiviert ist.).","root_filtered_optimistic__title":"Filtered optimistic attributes","root_log_output__description":"Ablageort für das Log, leer lassen um das Logging zu unterbinden","root_log_output__title":"Log Ausgabe","root_log_syslog-title":"System-Log","root-title":"Seriell","root__title":"Passlist","serial-title":"Seriell"},"touchlink":{"detected_devices_message":" {{count}} Touchlink Geräte entdeckt.","rescan":"Scan wiederholen","scan":"Scannen"},"values":{"Clear":"Inaktiv","clear":"nicht erkannt","Closed":"Geschlossen","closed":"Geschlossen","empty_string":"String ohne Inhalt","fall":"Fallen","false":"Nein","leaking":"Feuchtigkeit entdeckt","not_supported":"nicht unterstützt","null":"Null","Occupied":"Aktiv","occupied":"Aktiv","Open":"Offen","open":"offen","shake":"geschüttelt","slide":"schieben","supported":"unterstützt","tampered":"manipuliert","tap":"getippt","true":"Ja","wakeup":"aufgeweckt"},"zigbee":{"actions":"Aktionen","attribute":"Attribute","battery":"Batterie","block_join":"Blockieren vom Anlernen","cluster":"Cluster","dc_source":"Gleichstromquelle","description":"Beschreibung","device":"Gerät","device_type":"Geräte Typ","endpoint":"Endpunkt","firmware_build_date":"Firmware Datum","firmware_version":"Firmware Version","force_remove":"Erzwinge entfernen","friendly_name":"Gerätename","ieee_address":"IEEE Addresse","input_clusters":"Eingabe Cluster","interview_completed":"Interview erfolgreich","interview_failed":"Interview fehlgeschlagen","interviewing":"Interviewen","last_seen":"Zuletzt gesehen","lqi":"LQI","mains_single_phase":"Netz (einphasig)","manufacturer":"Hersteller","max_rep_interval":"Maximaler Report Intervall","min_rep_change":"Minimale Report Änderungen","min_rep_interval":"Minimaler Report Intervall","model":"Modell","network_address":"Netzwerk Adresse","none":"Nichts","output_clusters":"Ausgabe Cluster","pic":"Bild","power":"Spannungsversorgung","power_level":"Leistungspegel","reconfigure":"Neu konfigurieren","remove_device":"Gerät entfernen","rename_device":"Gerät umbenennen","select_attribute":"Wähle Attribut","select_cluster":"Wähle Cluster","support_status":"Unterstützungsstatus","unsupported":"Nicht unterstützt","update_Home_assistant_entity_id":"Update Home Assistant System ID","updating_firmware":"Firmware aktualisieren","zigbee_manufacturer":"Zigbee Hersteller","zigbee_model":"Zigbee Modell"}}');
|
4990
|
+
const locales_de_namespaceObject = JSON.parse('{"common":{"action":"Aktion","actions":"Aktionen","apply":"Anwenden","attribute":"Attribute","bind":"verbinden","check_all":"Alle prüfen","clear":"Löschen","close":"Schliessen","cluster":"Cluster","clusters":"Cluster","confirmation":"Bestätigen","delete":"Löschen","destination":"Ziel","destination_endpoint":"Zielendpunkt","devices":"Geräte","dialog_confirmation_prompt":"Bist Du sicher?","disable":"Abschalten","enter_search_criteria":"Suchwort","groups":"Gruppen","loading":"Laden...","none":"Nichts","ok":"ok","read":"Lesen","save":"Speichern","select_device":"Wähle Gerät","select_endpoint":"Wähle Endpunkt","source_endpoint":"Quellen Endpunkt","the_only_endpoint":"Der einzige Endpunkt","unbind":"trennen","unknown":"Unbekannt","write":"Schreiben"},"devicePage":{"about":"Über","bind":"Bindungen","clusters":"Cluster","dev_console":"Dev Konsole","exposes":"Details","reporting":"Berichten","scene":"Szene","settings":"Einstellungen","settings_specific":"Einstellungen (spezifisch)","state":"Status","unknown_device":"unbekanntes Gerät"},"exposes":{"action":"Aktion","auto_off":"Automatisch abschalten","away_mode":"Abwesenheitsmodus","away_preset_days":"Abwesenheitszeit (in Tagen)","away_preset_temperature":"Temperatur bei Abwesenheit","backlight_mode":"Rücklicht Modus","battery":"Batterie","battery_low":"Batterie schwach","boost_time":"Boost Dauer","brightness":"Helligkeit","calibration":"Kalibrierung","carbon_monoxide":"Kohlenmonoxid","co2":"Kohlendioxid","color_hs":"Farbe hue/saturation","color_temp":"Farbtemperatur","color_temp_startup":"Farbtemperatur nach Einschalten","color_xy":"Farbe (XY)","comfort_temperature":"Komfort Temperatur","consumer_connected":"Verbraucher angeschlossen","consumer_overload":"Verbraucherüberlastung","contact":"Kontakt","current":"Aktuell","current_heating_setpoint":"Aktuelle Solltemperatur","device_temperature":"Gerätetemperatur","eco_temperature":"Ökologische Temperatur","effect":"Effekt","empty_exposes_definition":"Exposes nicht definiert","energy":"Verbrauch","force":"Erzwungene Ventilposition","humidity":"Luftfeuchtigkeit","illuminance":"Beleuchtungsstärke","illuminance_lux":"Beleuchtungsstärke in Lux","led_disabled_night":"LED Nachts ausschalten","linkquality":"Linkqualität","local_temperature":"Raumtemperatur","local_temperature_calibration":"Kalibrierung Raumtemperatur","max_temperature":"Maximale Temperatur","min_temperature":"Minimale Temperatur","motion":"Bewegung","motion_direction":"Bewegungsrichtung","motor_reversal":"Richtung umkehren","motion_speed":"Bewegungsgeschwindigkeit","moving":"Bewegung","occupancy":"Belegung","operation_mode":"Betriebsmodus","options":"Optionen","position":"Position","power":"Leistung","power_on_behavior":"Zustand nach Anschalten","power_outage_memory":"Zustand nach Stromausfall","presence":"Anwesenheit","preset":"Voreinstellung","Pressure":"Luftdruck","sensivity":"Empfindlichkeit","smoke":"Rauch","state":"Status","strength":"Stärke","system_mode":"Heizmodus","tamper":"Manipulation","temperature":"Temperatur","voltage":"Spannung","water_leak":"Wasserleck","week":"Woche"},"extensions":{"extension_name_propmt":"Name der neuen Erweiterung","select_extension_to_edit":"Wähle Erweiterung zum Bearbeiten","create_new_extension":"Neue Erweiterung erstellen"},"featureNames":{"action":"Aktion","action_angle":"Bewegung Winkel","action_from_side":"Bewegung von Seite","action_side":"Aktive Seite","action_to_side":"Bewegung zur Seite","alarm":"Alarm","angle_x":"Ausrichtung X","angle_y":"Ausrichtung Y","angle_z":"Ausrichtung Z","auto_lock":"Automatische Sperre","away_mode":"Abwesenheitsmodus","brightness":"Helligkeit","calibration_time":"Kalibrierungszeit","carbon_monoxide":"Kohlenmonoxid","child_lock":"Kindersicherung","co2":"Kohlendioxid","color_hs":"Farbe Hs","color_temp":"Farbtemperatur","color_temp_startup":"Start Farbtemperatur","color_xy":"Farbe Xy","consumer_connected":"Verbraucher angeschlossen","contact":"Kontakt","current":"Aktuell","current_heating_setpoint":"Aktuelle Solltemperatur","current_level_startup":"Aktuelles Startlevel","device_temperature":"Gerätetemperatur","energy":"Energie","friday_schedule":"Plan Freitag","heating":"Heizen","holidays_schedule":"Plan Urlaubszeit","humidity":"Feuchtigkeit","illuminance":"Beleuchtungsstärke","level_config":"Level Konfiguration","local_temperature":"Lokale Temperatur","local_temperature_calibration":"Kalibrierung lokale Temperatur","monday_schedule":"Plan Montag","motion":"Bewegung","motion_direction":"Bewegungsrichtung","motion_speed":"Bewegungsgeschwindigkeit","motor_speed":"Motorgeschwindigkeit","moving":"Bewegung","occupancy":"Belegung","on_off_transition_time":"Ein/Aus Übergangszeit","options":"Optionen","position":"Position","power":"Leistung","presence":"Anwesenheit","preset":"Vorgabe","pressure":"Luftdruck","program_saturday":"Programm Samstag","program_sunday":"Programm Sonntag","program_weekday":"Programm Wochentag","programming_mode":"Programmier-Modus","saturday_schedule":"Plan Samstag","smoke":"Rauch","smoke_density":"Stärke der Rauchentwicklung","soil_moisture":"Bodenfeuchtigkeit","state":"Status","state_l1":"Status L 1","state_l2":"Status L 2","state_l3":"Status L 3","state_l4":"Status L 4","sunday_schedule":"Plan Sonntag","system_mode":"System Modus","tamper":"Manipulation","temperature":"Temperatur","thursday_schedule":"Plan Donnerstag","tuesday_schedule":"Plan Dienstag","valve_detection":"Ventil Erkennung","voltage":"Spannung","water_leak":"Wasserleck","week":"Woche","wednesday_schedule":"Plan Mittwoch","window_detection":"Fenster Erkennung","window":"Fenster","workdays_schedule":"Plan Werktags"},"featureDescriptions":{"Auto off after specific time.":"Automatische Abschaltung nach bestimmter Zeit.","Away mode":"Abwesenheitsmodus","Away preset days":"Abwesenheit in Tagen","Away preset temperature":"Definierte Temperatur für den Abwesenheitsmodus","Boost Heating: press and hold \\"+\\" for 3 seconds, the device will enter the boost heating mode, and the ▷╵◁ will flash. The countdown will be displayed in the APP":"Boost: Halten Sie \\"+ \\" 3 Sekunden lang gedrückt, das Ventil wechselt in den Boost-Modus und ▷╵◁ beginnt zu blinken. Die Dauer wird in der Anwendung angezeigt. ","Boost time":"Boost Zeit","Boost Time Setting 100 sec - 900 sec, (default = 300 sec)":"Boost-Zeiteinstellung 100 Sek. - 900 Sek., (Standard = 300 Sek.)","Brightness of this light":"Helligkeit des Leuchtmittels","Calibrates the humidity value (absolute offset), takes into effect on next report of device.":"Kalibriert den Luftfeuchtewert (absoluter Offset), wird beim nächsten Bericht des Gerätes wirksam.","Calibrates the illuminance value (percentual offset), takes into effect on next report of device.":"Kalibriert den Helligkeitswert (prozentualer Offset), wird beim nächsten Bericht des Geräts wirksam.","Calibrates the illuminance_lux value (percentual offset), takes into effect on next report of device.":"Kalibriert den Helligkeitswert (LUX) (prozentualer Offset), wird beim nächsten Bericht des Geräts wirksam.","Calibrates the pressure value (absolute offset), takes into effect on next report of device.":"Kalibriert den Luftdruckwert (absoluter Offset), wird beim nächsten Bericht des Geräts wirksam.","Calibrates the temperature value (absolute offset), takes into effect on next report of device.":"Kalibriert den Temperaturwert (absoluter Offset), wird beim nächsten Bericht des Geräts wirksam.","Calibration time":"Zeit zum Kalibrieren","Color of this light expressed as hue/saturation":"Farbe des Leuchtmittels übersetzt in hue/saturation","Color of this light in the CIE 1931 color space (x/y)":"Farbe des Leuchtmittels im CIE 1931 Farbraum (x/y)","Color temperature after cold power on of this light":"Farbtemperatur nach Trennung vom Stromnetz","Color temperature of this light":"Farbtemperatur des Leuchtmittels","Comfort temperature":"Komfort Temperatur","Controls the behaviour when the device is powered on":"Überprüft das Verhalten beim Einschalten des Geräts.","Countdown in minutes":"Countdown in Minuten.","Current temperature measured on the device":"Aktuelle Temperatur am Thermostat","Decoupled mode for center button":"Entkoppelter Modus für Mitteltaste","Decoupled mode for left button":"Entkoppelter Modus für linke Taste","Decoupled mode for right button":"Entkoppelter Modus für rechte Taste","direction of movement from the point of view of the radar":"Zeigt die Richtung der Bewegung aus sicht des Sensors an.","ECO mode (energy saving mode)":"Eco-Mode (Energiesparfunktion)","Eco temperature":"Öko-Temperatur","Enable/disable auto lock":"Aktivieren/Deaktivieren Auto Lock","Enable/disable away mode":"Aktivieren/Deaktivieren des Abwesenheitsmodus","Enables/disables physical input on the device":"Aktivieren/Deaktivieren der direkten Bedienung des Gerätes","Enables/disables window detection on the device":"Aktivieren/Deaktivieren der Fensterstatus Erkennung","Enabling prevents both relais being on at the same time":"Aktivierung schützt davor, beide Relais gleichzeitig zu aktivieren","Force the valve position":"Erzwingt die eingestellte Ventilposition","Indicates if CO (carbon monoxide) is detected":"Kohlenmonoxid entdeckt","Indicates if the battery of this device is almost empty":"Warnung, wenn Batterie schwach","Indicates if the contact is closed (= true) or open (= false)":"Kontakt geschlossen (= true) oder offen (= false)","Indicates whether the device detected a water leak":"Zeigt, ob ein Wasseraustritt erkannt wurde","Indicates whether the device detected occupancy":"Ermittelt, ob eine Bewegung erkannt wurde","Indicates whether the device detected presence":"Zeigt, ob eine Anwesenheit erkannt wurde.","Indicates whether the device detected smoke":"Raucherkennung","Indicates whether the device is tampered":"Zeigt, ob das Gerät manipuliert wurde","Instantaneous measured electrical current":"Aktuell gemessener Ampere-Bedarf","Instantaneous measured power":"Momentan gemessene Leistung","Link quality (signal strength)":"Link Qualität (Signalstärke)","Maximum temperature":"Maximale Temperatur","Measured electrical potential value":"Gemessene Stromstärke in Volt ankommend","Measured illuminance in lux":"Gemessene Helligkeit in Lux","Measured relative humidity":"Messung der relativen Luftfeuchtigkeit","Measured temperature value":"Gemessene Temperatur","Minimum temperature":"Minimale Temperatur","Mode of this device (similar to system_mode)":"Modus des Thermostats (identisch zu system_mode)","Mode of this device":"Modus des Thermostats","Motor speed":"Motor Geschwindigkeit","moving inside the range of the sensor":"Zeigt, ob eine Bewegung innerhalb des Radar-Radius erkannt wurde.","Number of digits after decimal point for humidity, takes into effect on next report of device.":"Anzahl der Nachkomma-Stellen für Luftfeuchtigkeit, wird beim nächsten Bericht des Geräts wirksam.","Number of digits after decimal point for illuminance, takes into effect on next report of device.":"Anzahl der Nachkomma-Stellen für Helligkeit, wird beim nächsten Bericht des Geräts wirksam.","Number of digits after decimal point for illuminance_lux, takes into effect on next report of device.":"Anzahl der Nachkomma-Stellen für Helligkeit in Lux, wird beim nächsten Bericht des Geräts wirksam.","Number of digits after decimal point for pressure, takes into effect on next report of device.":"Anzahl der Nachkomma-Stellen für Luftdruck, wird beim nächsten Bericht des Geräts wirksam.","Number of digits after decimal point for temperature, takes into effect on next report of device.":"Anzahl der Nachkomma-Stellen für Temperatur, wird beim nächsten Bericht des Geräts wirksam.","Offset to be used in the local_temperature":"Kallibrierung der Raumtemperatur am Thermostat","On/off state of the switch":"On/off Status des Schalters","On/off state of this light":"On/off Status des Leuchtmittels","Position of this cover":"Position des Vorhangs","Position":"Position","presets for sensivity for presence and movement":"Standardeinstellungen für die Sensibilität des Radar-Sensors (Bewegung und Anwesenheit).","PROGRAMMING MODE ⏱ - In this mode, the device executes a preset week programming temperature time and temperature. ":"PROGRAMMIERMODUS ⏱ - In diesem Modus verwendet das Ventil einen festgelegten Stunden- und Temperaturplan pro Woche.","Raw measured illuminance":"Gemessener Helligkeits-Rohwert","Recover state after power outage":"Eingestellter Zustand nach Stromausfall","Remaining battery in %":"Aktueller Batteriestatus in %","Sends a message the last time occupancy was detected. When setting this for example to [10, 60] a `{\\"no_occupancy_since\\": 10}` will be send after 10 seconds and a `{\\"no_occupancy_since\\": 60}` after 60 seconds.":"Sendet eine Nachricht, wann das letzte Mal eine Belegung erkannt wurde. Wenn dies beispielsweise auf [10, 60] eingestellt wird, wird nach 10 Sekunden ein `{\\"no_occupancy_since\\": 10}` gesendet und nach 60 Sekunden ein `{\\"no_occupancy_since\\": 60}`.","Set to false to disable the legacy integration (highly recommended), will change structure of the published payload (default true).":"Auf \\"false\\" gesetzt, um die Legacy-Integration zu deaktivieren (dringend empfohlen), ändert die Struktur der veröffentlichten payloads (Standardwert \\"true\\"). ","sensitivity of the radar":"Einstellen der Radar-Sensibilität","Side of the cube":"Würfelseite","Speed of movement":"Zeigt die Geschwindigkeit der Bewegung an.","Sum of consumed energy":"Seit Anfang verbrauchter Strom in kW/h","Temperature setpoint":"Temperatur Sollwert","The measured atmospheric pressure":"Gemessner Luftdruck","Time in seconds after which occupancy is cleared after detecting it (default 90 seconds).":"Zeit in Sekunden, nach der die Belegung zurück gesetzt wird, nachdem sie erkannt wurde (Standard 90 Sekunden).","Triggered action (e.g. a button click)":"Ausgelöstes Ereignis (z.B. ein Aktivieren eines Tasters)","Triggers an effect on the light (e.g. make light blink for a few seconds)":"Startet einen Effekt des Leuchtmittels (z.B. Blinken für ein paar Sekunden)","Voltage of the battery in millivolts":"Ladung der Batterie in Millivolt","Week format user for schedule":"Aufteilung der Wochentage für Heizprogramme","Window status closed or open ":"Zustand des Fensters (geöffnet oder geschlossen)","This device does not support reporting electric measurements so it is polled instead. The default poll interval is 60 seconds.":"Dieses Gerät unterstützt keine Meldung von elektrischen Messungen, daher wird stattdessen abgefragt. Das Standardabfrageintervall beträgt 60 Sekunden."},"groups":{"add_to_group":"Zur Gruppe hinzufügen","create_group":"Gruppe erstellen","group_id":"Gruppen ID","group_name":"Gruppen Name","group_members":"Gruppen Mitglieder","group_scenes":"Gruppen Szenen","new_group_id":"Neue Gruppen-ID","new_group_id_placeholder":"Wenn benötigt, Gruppen-ID festlegen.","new_group_name":"Neuer Gruppenname","new_group_name_placeholder":"Beispiel: my_bedroom_lights","remove_group":"Gruppe entfernen"},"logs":{"empty_logs_message":"Nichts anzuzeigen","filter_by_text":"Filtere nach","show_only":"Log-Typ"},"map":{"help_coordinator_link_description":"Durchgehende Linien führen zum Coordinator","help_end_device_description":"Grün bedeutet: Endgerät","help_is_coordinator":"Koordinator","help_lqi_description":"Link Qualität zwischen 0 - 255 (höher ist besser), Angaben mit / bedeuten verschiedene Link-Typen.","help_router_description":"Blau bedeutet: Router","help_router_links_description":"Gestrichelte Linien führen zu Routern","hide":"Zum Verbergen klicken","load":"Karte laden","loading":"Abhängig von der Größe des Netzwerks kann es zwischen 10 Sekunden und 2 Minuten dauern."},"navbar":{"all":"Alle","dashboard":"Dashboard","devices":"Geräte","disable_join":"Anlernen deaktivieren","extensions":"Erweiterungen","groups":"Gruppen","logs":"Logs","map":"Karte","ota":"OTA","permit_join":"Anlernen aktivieren","restart":"Neustart","settings":"Einstellungen","toggle_dropdown":"Dropdown Auswahl","touchlink":"Touchlink"},"ota":{"check":"Prüfe auf neue Updates","check_all":"Alle überprüfen","empty_ota_message":"Keine OTA-fähigen Geräte vorhanden","remaining_time":"verbleibende Zeit {{- remaining}}","update":"Update Geräte Firmware"},"scene":{"add":"Hinzufügen","remove_all":"Alle entfernen","scene_id":"Szenen ID","scene_name":"Szenen Name","store":"Speichern","recall":"Abrufen","remove":"Entfernen","select_scene":"Szene auswählen"},"settings":{"about":"Über","advanced":"Erweitert","availability":"Erreichbar","blocklist":"Geblockte Geräte","coordinator_revision":"Coordinator Version","coordinator_type":"Coordinator Typ","donate":"Spende","donation_text":["Hallo, %username%, hier kannst Du unsere harte Arbeit unterstützen.","Ein netter, begleitender Kommentar würde uns ebenso freuen. ;)"],"download_state":"Download Status","experimental":"Experimentell","external_converters":"Externe Konverter","frontend":"Frontend","frontend_version":"Frontend Version","main":"Hauptseite","mqtt":"MQTT","ota":"OTA Updates","passlist":"Passlist","raw":"Raw","restart_zigbee2mqtt":"Zigbee2MQTT neustarten","serial":"Seriell","settings":"Einstellungen","tools":"Tools","zigbee2mqtt_version":"Zigbee2MQTT Version","translate":"Übersetzen","stats":"Statistiken"},"settingsSchemaTranslations":{"advanced_availability_blacklist__title":"Aktuelle Blacklist (veraltet, nutze availability_blocklist)","advanced_availability_blocklist__description":"Klammert Geräte bei dem Verfügbarkeits-Check aus.","advanced_availability_blocklist__title":"Aktuelle Blockliste","advanced_availability_passlist__description":"Ermögliche Anwesenheits-Check nur für gelistete Geräte","advanced_availability_passlist__title":"Aktuelle Passlist","advanced_availability_whitelist__title":"Aktuelle Whitelist (veraltet, nutze Passlist)","advanced_ext_pan_id__description":"Zigbee erweiterte PAN ID, Änderung benötigt neues Anlernen aller Geräte!","advanced_ext_pan_id__title":"Erweiterte Pan ID","advanced_log_output__description":"Ablageort für das Log, leer lassen um das Logging zu unterbinden","advanced_log_output__title":"Log Ausgabe","advanced_log_syslog-title":"System-Log","advanced-title":"Erweitert","availability_active-description":"Optionen für aktive Geräte (Router/mit Netzanschluss)","availability_active-title":"Aktiv","availability_passive-description":"Optionen für passive Geräte (Batteriebetrieben)","availability_passive-title":"Passiv","availability-title":"Verfügbarkeit (erweitert)","blocklist__description":"Blockt Geräte vom Netzwerk (anhand der ieeeAddr)","blocklist__title":"Blocklist","experimental-title":"Experimentell","external_converters__description":"Festlegen von eigenen, externen Konvertern z. B. zum Einbinden eigener Zigbee-Devices","external_converters__title":"Externe Konverter","frontend-title":"Frontend","mqtt-title":"MQTT","ota-title":"OTA Updates","passlist__description":"Erlaubt nur bestimmten Geräten, dem Netzwerk beizutreten (anhand der ieeeAddr). Beachte: Alle Geräte, die nicht in der Passlist sind, werden vom Netzwerk entfernt!","passlist__title":"Passlist","root__description":"Erlaubt nur bestimmten Geräten, dem Netzwerk beizutreten (anhand der ieeeAddr). Beachte: Alle Geräte, die nicht in der Passlist sind, werden vom Netzwerk entfernt!","root_availability_blacklist__title":"Aktuelle Blacklist (veraltet, nutze availability_blocklist)","root_availability_blocklist__description":"Klammert Geräte bei dem Verfügbarkeits-Check aus.","root_availability_blocklist__title":"Aktuelle Blockliste","root_availability_passlist__description":"Ermögliche Anwesenheits-Check nur für gelistete Geräte","root_availability_passlist__title":"Aktuelle Passlist","root_availability_whitelist__title":"Aktuelle Whitelist (veraltet, nutze Passlist)","root_debounce_ignore__description":"Schützt einzelne Payload Werte von spezifizierten Payload Eigenschaften vor Überschreibung während der Entprellzeit","root_debounce_ignore__title":"Ignoriere doppelte Meldungen","root_ext_pan_id__description":"Zigbee erweiterte PAN ID, Änderung benötigt neues Anlernen aller Geräte!","root_ext_pan_id__title":"Erweiterte PAN ID","root_filtered_attributes__description":"Filter Attribute vom veröffentlichten Payload.","root_filtered_attributes__title":"Gefilterte, veröffentliche Attibute","root_filtered_optimistic__description":"Filtern von Attributen bei \\"optimistic publish payload\\" bei Abruf oder Setzen. (Diese Funktion ist abgeschaltet, wenn \\"optimistic\\" deaktiviert ist.).","root_filtered_optimistic__title":"Gefilterte, optimistische Attibute","root_log_output__description":"Ablageort für das Log, leer lassen um das Logging zu unterbinden","root_log_output__title":"Log Ausgabe","root_log_syslog-title":"System-Log","root-title":"Seriell","root__title":"Passlist","serial-title":"Seriell"},"stats":{"EndDevice":"Endgerät","Router":"Router","byType":"nach Typ","byPowerSource":"nach Stromquelle","byVendor":"nach Hersteller","byModel":"nach Modell","total":"Total"},"touchlink":{"detected_devices_message":" {{count}} Touchlink Geräte entdeckt.","rescan":"Scan wiederholen","scan":"Scannen"},"values":{"Clear":"Inaktiv","clear":"inaktiv","Closed":"Geschlossen","closed":"geschlossen","empty_string":"String ohne Inhalt","fall":"Fallend","false":"Falsch","leaking":"Feuchtigkeit entdeckt","not_supported":"nicht unterstützt","null":"Null","Occupied":"Aktiv","occupied":"aktiv","Open":"Offen","open":"offen","shake":"geschüttelt","slide":"schieben","supported":"unterstützt","tampered":"manipuliert","tap":"getippt","true":"Wahr","wakeup":"aufgeweckt"},"zigbee":{"actions":"Aktionen","attribute":"Attribute","battery":"Batterie","block_join":"Blockieren vom Anlernen","cluster":"Cluster","dc_source":"Gleichstromquelle","description":"Beschreibung","device":"Gerät","device_type":"Geräte Typ","endpoint":"Endpunkt","firmware_build_date":"Firmware Datum","firmware_version":"Firmware Version","force_remove":"Erzwinge entfernen","friendly_name":"Gerätename","ieee_address":"IEEE Addresse","input_clusters":"Eingabe Cluster","interview_completed":"Interview erfolgreich","interview_failed":"Interview fehlgeschlagen","interviewing":"Interviewen","last_seen":"Zuletzt gesehen","lqi":"LQI","mains_single_phase":"Netz (einphasig)","manufacturer":"Hersteller","max_rep_interval":"Maximales Report Intervall","min_rep_change":"Minimale Report Änderungen","min_rep_interval":"Minimales Report Intervall","model":"Modell","network_address":"Netzwerk Adresse","none":"Nichts","output_clusters":"Ausgabe Cluster","pic":"Bild","power":"Spannungsversorgung","power_level":"Leistungspegel","reconfigure":"Neu konfigurieren","remove_device":"Gerät entfernen","rename_device":"Gerät umbenennen","select_attribute":"Wähle Attribut","select_cluster":"Wähle Cluster","support_status":"Unterstützungsstatus","unsupported":"Nicht unterstützt","update_Home_assistant_entity_id":"Update Home Assistant System ID","updating_firmware":"Firmware aktualisieren","zigbee_manufacturer":"Zigbee Hersteller","zigbee_model":"Zigbee Modell"}}');
|
4944
4991
|
;// CONCATENATED MODULE: ./src/i18n/locales/ru.json
|
4945
4992
|
const locales_ru_namespaceObject = JSON.parse('{"common":{"action":"Действие","actions":"Действия","apply":"Применить","attribute":"Атрибут","bind":"Связать","check_all":"Выбрать все","clear":"Очистить","close":"Закрыть","cluster":"Кластер","clusters":"Кластеры","confirmation":"Запрос подтверждения","delete":"Удалить","destination":"Целевая конечная точка","devices":"Устройства","dialog_confirmation_prompt":"Вы уверены?","disable":"Отключить","enter_search_criteria":"Введите параметры поиска","groups":"Группы","loading":"Загружается...","none":"Нет","ok":"OK","read":"Считать","save":"Сохранить","select_device":"Выберите устройство","select_endpoint":"Выберите конечную точку","source_endpoint":"Исходная конечная точка","the_only_endpoint":"Единственная конечная точка","unbind":"Отвязать","unknown":"Неизвестно","write":"Записать"},"devicePage":{"about":"Об устройстве","bind":"Связь","clusters":"Кластеры","dev_console":"Консоль разработчика","exposes":"Данные","reporting":"Отчеты","scene":"Сцена","settings":"Настройки","settings_specific":"Настройки (особые)","state":"Состояние","unknown_device":"Неизвестное устройство"},"exposes":{"action":"Действие","auto_off":"Автоотключение","away_mode":"Режим отсутствия","away_preset_days":"Предустановка дней отсутствия","away_preset_temperature":"Предустановка температуры отсутствия","backlight_mode":"Режим подсветки","battery":"Батарейка","battery_low":"Батарейка разряжена","boost_time":"Время усиленной работы","brightness":"Яркость","calibration":"Калибровка","carbon_monoxide":"Угарный газ","co2":"Углекислый газ","color_hs":"Цвет (HS)","color_temp":"Цветовая температура","color_temp_startup":"Цветовая температура при старте","color_xy":"Цвет (XY)","comfort_temperature":"Комфортная температура","consumer_connected":"Потребитель подключен","consumer_overload":"Перегрузка потребителя","contact":"Контакт","current":"Ток","current_heating_setpoint":"Текущая заданная точка нагрева","device_temperature":"Температура устройства","eco_temperature":"Экономная температура","effect":"Эффект","empty_exposes_definition":"Данные отсутствуют","energy":"Энергия","force":"Принудительно","humidity":"Влажность","illuminance":"Освещенность","illuminance_lux":"Освещенность","led_disabled_night":"Ночной режим индикатора","linkquality":"Качество связи","local_temperature":"Местная температура","local_temperature_calibration":"Калибровка местной температуры","max_temperature":"Макс. температура","min_temperature":"Мин. температура","motion":"Движение","motion_direction":"Направление движения","motion_speed":"Скорость движения","motor_reversal":"Обратный ход двигателя","moving":"Перемещение","occupancy":"Занятость","operation_mode":"Режим работы","options":"Опции","position":"Позиция","power":"Питание","power_on_behavior":"Мощность при поведении","power_outage_memory":"Память при отключении питания","preset":"Предустановка","presence":"Пресутствие","pressure":"Давление","sensivity":"Чувствительность","smoke":"Дым","state":"Состояние","strength":"Сила","system_mode":"Системный режим","tamper":"Вмешательство","temperature":"Температура","voltage":"Напряжение","water_leak":"Протечка","week":"Неделя"},"extensions":{"create_new_extension":"Создать новое расширение","extension_name_propmt":"Введите имя нового расширения","select_extension_to_edit":"Выберите расширение для редактирования"},"featureNames":{"action":"Действие","action_angle":"Угол действия","action_from_side":"Действие со стороны","action_side":"Сторона действия","action_to_side":"Действие в сторону","alarm":"Тревога","angle_x":"Угол X","angle_y":"Угол Y","angle_z":"Угол Z","away_mode":"Режим отсутствия","brightness":"Яркость","calibration_time":"Время калибровки","carbon_monoxide":"Угарный газ","co2":"Углекислый газ","color_hs":"Цвет Hs","color_temp":"Цветовая температура","color_temp_startup":"Начальная цветовая температура","color_xy":"Цвет XY","consumer_connected":"Потребитель подключен","contact":"Контакт","current":"Ток","current_heating_setpoint":"Установленная температура","current_level_startup":"Установленный уровень запуска","device_temperature":"Температура прибора","energy":"Энергия","humidity":"Влажность","illuminance":"Освещенность","level_config":"Конфигурация уровня","local_temperature":"Фактическая температура","local_temperature_calibration":"Калибровка температуры","motor_speed":"Скорость двигателя","moving":"Движение","occupancy":"Занятость","on_off_transition_time":"Вкл./Выкл. время перехода","options":"Настройки","position":"Положение","preset":"Предустановка","pressure":"Давление","power":"Потребление энергии","smoke":"Дым","smoke_density":"Плотность дыма","soil_moisture":"Влажность почвы","state":"Состояние","system_mode":"Режим системы","tamper":"Вмешательство","temperature":"Температура","voltage":"Напряжение","water_leak":"Утечка воды"},"featureDescriptions":{"Auto off after specific time.":"Автоматическое выключение через определенное время","Away mode":"Режим отсутствия","Away preset days":"Предустановленные дни отсутствия","Away preset temperature":"Предустановленная температура отсутсвия","Boost time":"Время ускорения","Brightness of this light":"Яркость источника света","Calibrates the humidity value (absolute offset), takes into effect on next report of device.":"Калибрует значение влажности (абсолютное смещение), вступает в силу при следующем отчете устройства.","Calibrates the illuminance value (percentual offset), takes into effect on next report of device.":"Калибрует значение освещенности (процентное смещение), вступает в силу при следующем отчете устройства.","Calibrates the illuminance_lux value (percentual offset), takes into effect on next report of device.":"Калибрует значение освещения в люксах (процентное смещение), вступает в силу при следующем отчете устройства.","Calibrates the pressure value (absolute offset), takes into effect on next report of device.":"Калибрует значение давления (абсолютное смещение), вступает в силу при следующем отчете устройства.","Calibrates the temperature value (absolute offset), takes into effect on next report of device.":"Калибрует значение температуры (абсолютное смещение), вступает в силу при следующем отчете устройства.","Calibration time":"Время калибровки","Color of this light expressed as hue/saturation":"Цвет источника света, выраженный как оттенок/насыщенность","Color of this light in the CIE 1931 color space (x/y)":"Цвет источника света в цветовом пространстве CIE 1931 (x/y)","Color temperature after cold power on of this light":"Цветовая температура после отключения электричества","Color temperature of this light":"Цветовая температура источника цвета","Comfort temperature":"Комфортная температура","Controls the behaviour when the device is powered on":"Управляет поведением устройства при включении","Current temperature measured on the device":"Текущая температура, измеренная на устройством","Direction of movement from the point of view of the radar":"Направление движения с точки зрения радара","Eco temperature":"Еко температура","Enable/disable auto lock":"Вкл./Выкл. автоматической блокировки","Enable/disable away mode":"Вкл./Выкл. режима отсутствия","Enables/disables physical input on the device":"Вкл./Выкл. физический ввод на устройстве","Enables/disables window detection on the device":"Вкл./Выкл. определения окон на устройстве","Enabling prevents both relais being on at the same time":"Включение предотвращает одновременное включение обоих реле","Force the valve position":"Форсировать положение клапана","Indicates if CO (carbon monoxide) is detected":"Указывает, обнаружен ли СО (оксид углерода)","Indicates if the battery of this device is almost empty":"Указывает на то, что аккумулятор этого устройства почти разряжен","Indicates if the contact is closed (= true) or open (= false)":"Указывает, закрыт ли контакт (= true) или открыт (= false)","Indicates whether the device detected a water leak":"Указывает, обнаружена ли устройством протечка воды","Indicates whether the device detected occupancy":"Указывает, обнаружило ли устройство занятость","Indicates whether the device detected presence":"Указывает, обнаружило ли устройство присутствие","Indicates whether the device detected smoke":"Указывает, обнаружило ли устройство дым","Indicates whether the device is tampered":"Указывает, обнаружило ли устройство вмешательство","Instantaneous measured electrical current":"Мгновенный измеренный электрический ток","Instantaneous measured power":"Мгновенная измеренная мощность","Link quality (signal strength)":"Качество связи (мощность сигнала)","Maximum temperature":"Максимальная температура","Measured electrical potential value":"Измеренное значение электрического потенциала","Measured illuminance in lux":"Измеренная освещенность в люксах","Measured relative humidity":"Измеренная относительная влажность","Measured temperature value":"Измеренное значение температуры","Minimum temperature":"Минимальная температура","Mode of this device":"Режим этого устройства","Mode of this device (similar to system_mode)":"Режим этого устройства (аналог system_mode)","Moving inside the range of the sensor":"Перемещение в пределах диапазона датчика","Motor speed":"Скорость двигателя","Number of digits after decimal point for humidity, takes into effect on next report of device.":"Количество цифр после десятичной точки для влажности, вступает в силу при следующем отчете устройства.","Number of digits after decimal point for illuminance, takes into effect on next report of device.":"Количество цифр после десятичной точки для освещенности, вступает в силу при следующем отчете устройства.","Number of digits after decimal point for illuminance_lux, takes into effect on next report of device.":"Количество знаков после запятой для освещенности в люксах, вступает в силу при следующем отчете устройства.","Number of digits after decimal point for pressure, takes into effect on next report of device.":"Количество цифр после десятичной точки для давления, вступает в силу при следующем отчете устройства.","Number of digits after decimal point for temperature, takes into effect on next report of device.":"Количество цифр после десятичной точки для температуры, вступает в силу при следующем отчете устройства.","Offset to be used in the local_temperature":"Смещение, которое будет использоваться в локальной температуре","On/off state of the switch":"Состояние Вкл./Выкл. переключателя","On/off state of this light":"Состояние Вкл./Выкл. освещения","Position":"Положение","Position of this cover":"Положение шторы (занавески)","Presets for sensivity for presence and movement":"Предустановки чувствительности к присутствию и движению","Raw measured illuminance":"Необработанная измеренная освещенность","Recover state after power outage":"Восстановить состояние после отключения электроэнергии","Remaining battery in %":"Оставшийся заряд батареи в процентах","Sends a message the last time occupancy was detected. When setting this for example to [10, 60] a `{\\"no_occupancy_since\\": 10}` will be send after 10 seconds and a `{\\"no_occupancy_since\\": 60}` after 60 seconds.":"Отправляет сообщение о последнем обнаружении занятости. При установке, например, на [10, 60], `{\\"no_occupancy_since\\": 10}` будет отправлено через 10 секунд, а `{\\"no_occupancy_since\\": 60}` через 60 секунд.","Sensitivity of the radar":"Чувствительность радара","Set to false to disable the legacy integration (highly recommended), will change structure of the published payload (default true).":"Установите значение false, чтобы отключить устаревшую интеграцию (настоятельно рекомендуется), изменит структуру опубликованной полезной нагрузки (по умолчанию true).","Side of the cube":"Сторона куба","Speed of movement":"Скорость движения","Sum of consumed energy":"Сумма потребленной энергии","Temperature setpoint":"Уставка температуры","The measured atmospheric pressure":"Измеренное атмосферное давление","Time in seconds after which occupancy is cleared after detecting it (default 90 seconds).":"Время в секундах, по истечении которого занятость очищается после ее обнаружения (по умолчанию 90 секунд).","Triggered action (e.g. a button click)":"Инициированное действие (например, нажатие кнопки)","Triggers an effect on the light (e.g. make light blink for a few seconds)":"Запускает эффект на свет (например, заставляет свет мигать в течение нескольких секунд)","Voltage of the battery in millivolts":"Напряжение аккумулятора в милливольтах","Week format user for schedule":"Недельный формат пользователя для расписания"},"groups":{"add_to_group":"Добавить в группу","create_group":"Создать группу","group_id":"Идентификатор группы","group_name":"Название группы","group_members":"Члены группы","group_scenes":"Групповые сцены","new_group_id":"Новый идентификатор группы","new_group_id_placeholder":"Укажите идентификатор группы, если требуется","new_group_name":"Имя новой группы","new_group_name_placeholder":"Пример: my_bedroom_lights","remove_group":"Удалить группу"},"logs":{"empty_logs_message":"Нет информации для отображения","filter_by_text":"Фильтровать по тексту","show_only":"Только показать"},"map":{"help_coordinator_link_description":"Сплошные линии - связи с Координатором","help_end_device_description":"Зеленый означает Конечное устройство","help_is_coordinator":"это Координатор","help_lqi_description":"Качество связи в диапазоне 0 - 255 (больше - лучше). Значения с / означают несколько типов соединений","help_router_description":"Голубой означает Роутер","help_router_links_description":"Пунктирные лини - связи с Роутерами","hide":"Нажмите, чтобы скрыть","load":"Загрузить карту","loading":"В зависимости от размера вашей сети, это может занять от 10 секунд до 2 минут."},"navbar":{"all":"Все","dashboard":"Приборная панель","devices":"Устройства","disable_join":"Запретить подключения","extensions":"Расширения","groups":"Группы","logs":"Логи","map":"Карта","ota":"ОТА","permit_join":"Разрешить подключения","restart":"Перезапустить","settings":"Настройки","toggle_dropdown":"Toggle dropdown","touchlink":"Touchlink"},"ota":{"check":"Проверить на наличие новых обновлений","check_all":"Проверить все","empty_ota_message":"У вас нет устройств, поддерживающих обновление по воздуху (OTA)","remaining_time":"Оставшееся время {{- remaining}}","update":"Обновить прошивку устройства"},"scene":{"add":"Добавить","recall":"Вызвать","remove":"Удалить","remove_all":"Удалить все","scene_id":"Идентификатор сцены","scene_name":"Название сцены","select_scene":"Выбор сцены","store":"Сохранить"},"settings":{"about":"О программе","advanced":"Расширенные","availability":"Доступность","blocklist":"Черный список","coordinator_revision":"Версия координатора","coordinator_type":"Тип координатора","donate":"Пожертвования","donation_text":["Здравствуйте, %username%! Тут вы можете поблагодарить нас за нашу проделанную работу","Не стесняйтесь добавить приятные пожелания в комментариях ;)"],"download_state":"Скачать состояния","experimental":"Экспериментальные","external_converters":"Внешние конвертеры","frontend":"Веб интерфейс","frontend_version":"Версия веб интерфейса","main":"Главные","mqtt":"MQTT","ota":"Обновления по воздуху (OTA)","passlist":"Белый список","raw":"Исходные данные","restart_zigbee2mqtt":"Перезапустить Zigbee2MQTT","serial":"Последовательный интерфейс","settings":"Настройки","tools":"Инструменты","translate":"Перевод","zigbee2mqtt_version":"Версия Zigbee2MQTT"},"settingsSchemaTranslations":{"root-title":"Serial","root__description":"Позволить подключаться к сети только определенным устройствам (проверка по ieeeAddr). Обратите внимание, что все устройства, не включенные в список, будут удалены из сети!","root__title":"Белый список","root_availability_blacklist__title":"Черный список проверки доступности (устарело, используйте availability_blocklist)","root_availability_blocklist__description":"Исключить устройства из проверки на доступность","root_availability_blocklist__title":"Черный список проверки доступности","root_availability_passlist__description":"Включить проверку доступности только для определенных устройств","root_availability_passlist__title":"Белый список проверки доступности","root_availability_whitelist__title":"Белый список проверки доступности (устарело, используйте passlist)","root_debounce_ignore__description":"Позволяет публиковать указанные атрибуты без использования задержки фильтрации повторяющихся пакетов","root_debounce_ignore__title":"Игнорировать фильтр повторных пакетов","root_ext_pan_id__description":"Расширенный идентификатор сети Zigbee. Изменение потребует перепривязки всех устройств!","root_ext_pan_id__title":"Расш. идентификатор сети (Ext Pan ID)","root_filtered_attributes__description":"Позволяет отключить публикацию указанных атрибутов","root_filtered_attributes__title":"Фильтр атрибутов","root_log_output__description":"Папка, в которой будут формировать лог файлы. Оставьте поле пустым для отключения лог файлов.","root_log_output__title":"Папка для логов","root_log_syslog-title":"syslog"},"touchlink":{"detected_devices_message":"Найдено устройств, поддерживающих быстрое подключение (touchlink): {{count}}.","rescan":"Повторить поиск","scan":"Искать"},"values":{"clear":"Не обнаружено","closed":"Закрыт","empty_string":"Пустая строчка","false":"Выкл","leaking":"Утечка","not_supported":"Не поддерживается","null":"Ноль","occupied":"Занято","open":"Открыт","supported":"Поддерживается","tampered":"Сломано","true":"Вкл"},"zigbee":{"actions":"Действие","attribute":"Атрибут","battery":"Батарея","block_join":"Блокировать дальнейшие попытки подключения","cluster":"Кластер","description":"Описание","device":"Устройство","device_type":"Тип устройства","endpoint":"Конечная точка","firmware_build_date":"Дата создания прошивки","firmware_version":"Версия прошивки","force_remove":"Удалить принудительно","friendly_name":"Пользовательское имя","ieee_address":"Адрес IEEE","input_clusters":"Кластеры ввода","interview_completed":"Запрос информации об устройстве завершен","last_seen":"Последние данные","lqi":"Качество сигнала","manufacturer":"Производитель","max_rep_interval":"макс. интервал отчетов","min_rep_change":"Мин. интервал отчетов при изменении","min_rep_interval":"Мин. интервал отчетов","model":"Модель","network_address":"Сетевой адрес","none":"Ничего","output_clusters":"Кластеры вывода","pic":"Рис.","power":"Мощность","power_level":"Уровень мощности","reconfigure":"Перенастроить","remove_device":"Удалить устройство","rename_device":"Переименовать устройство","select_attribute":"Выберите атрибут","select_cluster":"Выберите кластер","support_status":"Статус поддержки","unsupported":"Не поддерживается","update_Home_assistant_entity_id":"Обновить идентификатор объекта Home Assistant","zigbee_manufacturer":"Производитель Zigbee","zigbee_model":"Модель Zigbee"}}');
|
4946
4993
|
;// CONCATENATED MODULE: ./src/i18n/locales/ptbr.json
|
@@ -4960,7 +5007,9 @@ const zh_namespaceObject = JSON.parse('{"common":{"action":"動作","actions":"
|
|
4960
5007
|
;// CONCATENATED MODULE: ./src/i18n/locales/ko.json
|
4961
5008
|
const ko_namespaceObject = JSON.parse('{"common":{"action":"액션","actions":"액션","apply":"적용","attribute":"속성","bind":"Bind","check_all":"전체 확인","clear":"초기화","close":"닫기","cluster":"클러스터","clusters":"클러스터","confirmation":"명령 확인","delete":"삭제","destination":"Destination","devices":"장치","dialog_confirmation_prompt":"실행할까요?","disable":"해제","enter_search_criteria":"Enter search criteria","groups":"그룹","loading":"Loading...","none":"None","ok":"확인","read":"읽기","save":"저장","select_device":"장치 선택","select_endpoint":"endpoint 선택","source_endpoint":"Source endpoint","the_only_endpoint":"The only endpoint","unbind":"Unbind","write":"쓰기"},"devicePage":{"about":"자세히","bind":"Bind","clusters":"클러스터","dev_console":"Dev console","exposes":"Exposes","reporting":"보고","settings":"설정","settings_specific":"설정 (specific)","state":"상태","unknown_device":"알 수 없는 장치"},"exposes":{"action":"액션","auto_off":"Auto off","away_mode":"외출 모드","away_preset_days":"Away preset days","away_preset_temperature":"Away preset temperature","backlight_mode":"Backlight mode","battery":"배터리","battery_low":"저전압 배터리","boost_time":"Boost time","brightness":"밝기","calibration":"캘리브레이션","carbon_monoxide":"일산화탄소","color_hs":"Color (HS)","color_temp":"색 온도","color_temp_startup":"Startup color temp","color_xy":"Color (XY)","comfort_temperature":"편안한 온도","consumer_connected":"Consumer connected","consumer_overload":"Consumer overload","contact":"접촉","current":"전류","current_heating_setpoint":"Current heating setpoint","eco_temperature":"Eco temperature","effect":"Effect","empty_exposes_definition":"Empty exposes definition","energy":"에너지","force":"Force","humidity":"습도","illuminance":"조도","illuminance_lux":"조도_lux","led_disabled_night":"Led disabled night","linkquality":"Linkquality","local_temperature":"Local 온도","local_temperature_calibration":"Local 온도 보정","max_temperature":"최대 온도","min_temperature":"최저 온도","motor_reversal":"역방향 모터회전","moving":"움직임","occupancy":"감지","operation_mode":"동작 모드","options":"옵션","position":"위치","power":"전원","power_on_behavior":"Power on behavior","power_outage_memory":"Power outage memory","preset":"프리셋","pressure":"압력","sensivity":"감도","smoke":"연기","state":"상태","strength":"강도","system_mode":"시스템 모드","tamper":"분리 감지","temperature":"온도","voltage":"전압","water_leak":"누수","week":"주","device_temperature":"장치 온도"},"extensions":{"create_new_extension":"새 익스텐션 만들기","extension_name_propmt":"새 익스텐션 이름 입력","select_extension_to_edit":"바꿀 익스텐션 선택"},"featureNames":{"action":"액션","angle_x":"X 각도","angle_y":"Y 각도","angle_z":"Z 각도","brightness":"밝기","color_temp":"색 온도","color_xy":"Color Xy","contact":"접촉","humidity":"습도","illuminance":"밝기","occupancy":"감지","options":"옵션","position":"위치","pressure":"압력","soil_moisture":"토양 습도","smoke":"연기","state":"상태","temperature":"온도","tamper":"분리 감지","device_temperature":"장치 온도"},"groups":{"add_to_group":"그룹 추가","create_group":"그룹 생성","new_group_id":"새 그룹 아이디","new_group_id_placeholder":"특별 그룹 ID (옵션)","new_group_name":"새 그룹 이름","new_group_name_placeholder":"예: my_bedroom_lights","remove_group":"그룹 삭제"},"logs":{"empty_logs_message":"Nothing to display","filter_by_text":"Filter by text","show_only":"Show only"},"map":{"help_coordinator_link_description":"실선 : Coordinator와 연결","help_end_device_description":"녹색 : End Device","help_is_coordinator":"is Coordinator","help_lqi_description":"Link quality 값은 0~255 (높을수록 좋음), 여러 유형의 링크를 나타냅니다.","help_router_description":"파랑 : Router","help_router_links_description":"점선 : Routes와 연결","hide":"숨기기","load":"맵 보기","loading":"네트워크 크기에 따라 다르며 10초~2분정도 소요됩니다."},"navbar":{"all":"전체","dashboard":"대쉬 보드","devices":"장치","disable_join":"페어링 오프","extensions":"익스텐션","groups":"그룹","logs":"로그","map":"지도","ota":"OTA","permit_join":"페어링 온","restart":"재시작","settings":"설정","toggle_dropdown":"Toggle dropdown","touchlink":"터치링크"},"ota":{"check":"업데이트 확인 중","check_all":"전체 업데이트 확인","empty_ota_message":"OTA 지원장치가 없습니다.","remaining_time":"남은 시간 {{- remaining}}","update":"장치 펌웨어 업데이트"},"settings":{"about":"자세히","advanced":"고급","blocklist":"차단 리스트","coordinator_revision":"Coordinator revision","coordinator_type":"Coordinator type","donate":"기부","donation_text":["Hello, %username%, here you can thank us for hardworking","Don\'t hesitate to say something nice as well ;)"],"download_state":"다운로드 상태","experimental":"Experimental","external_converters":"외부 컨버터","frontend":"Frontend","frontend_version":"Frontend 버전","main":"Main","mqtt":"MQTT","ota":"OTA 업데이트","passlist":"Passlist","raw":"Raw","restart_zigbee2mqtt":"재시작 Zigbee2MQTT","serial":"Serial","settings":"설정","tools":"도구","zigbee2mqtt_version":"Zigbee2MQTT 버전","translate":"번역"},"settingsSchemaTranslations":{"advanced-title":"Advanced","advanced_availability_blacklist__title":"Availability blacklist (deprecated, use availability_blocklist)","advanced_availability_blocklist__description":"Prevent devices from being checked for availability","advanced_availability_blocklist__title":"Availability Blocklist","advanced_availability_passlist__description":"Only enable availability check for certain devices","advanced_availability_passlist__title":"Availability passlist","advanced_availability_whitelist__title":"Availability whitelist (deprecated, use passlist)","advanced_ext_pan_id__description":"Zigbee extended pan ID, changing requires repairing all devices!","advanced_ext_pan_id__title":"Ext Pan ID","advanced_log_output__description":"Output location of the log, leave empty to supress logging","advanced_log_output__title":"Log output","advanced_log_syslog-title":"syslog","blocklist__description":"Block devices from the network (by ieeeAddr)","blocklist__title":"Blocklist","experimental-title":"Experimental","external_converters__description":"You can define external converters to e.g. add support for a DiY device","external_converters__title":"External converters","frontend-title":"Frontend","mqtt-title":"MQTT","ota-title":"OTA updates","passlist__description":"Allow only certain devices to join the network (by ieeeAddr). Note that all devices not on the passlist will be removed from the network!","passlist__title":"Passlist","root__description":"Allow only certain devices to join the network (by ieeeAddr). Note that all devices not on the passlist will be removed from the network!","root_availability_blacklist__title":"Availability blacklist (deprecated, use availability_blocklist)","root_availability_blocklist__description":"Prevent devices from being checked for availability","root_availability_blocklist__title":"Availability Blocklist","root_availability_passlist__description":"Only enable availability check for certain devices","root_availability_passlist__title":"Availability passlist","root_availability_whitelist__title":"Availability whitelist (deprecated, use passlist)","root_debounce_ignore__description":"Protects unique payload values of specified payload properties from overriding within debounce time","root_debounce_ignore__title":"Ignore debounce","root_ext_pan_id__description":"Zigbee extended pan ID, changing requires repairing all devices!","root_ext_pan_id__title":"Ext Pan ID","root_filtered_attributes__description":"Allows to prevent certain attributes from being published","root_filtered_attributes__title":"Filtered attributes","root_filtered_optimistic__description":"Filter attributes from optimistic publish payload when calling /set. (This has no effect if optimistic is set to false).","root_filtered_optimistic__title":"Filtered optimistic attributes","root_log_output__description":"Output location of the log, leave empty to supress logging","root_log_output__title":"Log output","root_log_syslog-title":"syslog","serial-title":"Serial"},"touchlink":{"detected_devices_message":"Detected {{count}} touchlink devices.","rescan":"재 탐색","scan":"탐색"},"values":{"clear":"정상","closed":"닫힘","false":"False","not_supported":"지원하지 않음","occupied":"Occupied","open":"열림","supported":"지원됨","true":"True","empty_string":"Empty string(\\"\\")","leaking":"누수","tampered":"분리 감지"},"zigbee":{"actions":"액션","attribute":"속성","block_join":"Block from joining again","cluster":"클러스터","description":"설명","device_type":"장치 종류","endpoint":"Endpoint","firmware_build_date":"펌웨어 제작일","firmware_version":"펌웨어 버전","force_remove":"강제 삭제","friendly_name":"Friendly name","ieee_address":"IEEE Address","input_clusters":"입력 클러스터","interview_completed":"인터뷰 성공","last_seen":"Last seen","lqi":"LQI","manufacturer":"제조사","max_rep_interval":"최대 보고 주기","min_rep_change":"최소 보고 변화값","min_rep_interval":"최소 보고 주기","model":"모델명","network_address":"네트워크 주소","none":"None","output_clusters":"출력 클러스터","pic":"사진","power":"파워","reconfigure":"재설정","remove_device":"장치 삭제","rename_device":"장치 이름 변경","select_attribute":"속성 선택","select_cluster":"클러스터 선택","support_status":"지원 상태","unsupported":"지원하지 않음","update_Home_assistant_entity_id":"Home Assistant entity ID 업데이트","zigbee_manufacturer":"Zigbee 제조사","zigbee_model":"Zigbee 모델명"}}');
|
4962
5009
|
;// CONCATENATED MODULE: ./src/i18n/locales/cs.json
|
4963
|
-
const cs_namespaceObject = JSON.parse('{"common":{"action":"Akce","actions":"Akce","apply":"Použít","attribute":"Atribut","bind":"Svázat","check_all":"Zkontrolovat vše","clear":"Vyčistit","close":"Zavřít","cluster":"Cluster","clusters":"Clustery","confirmation":"Výzva k potvrzení","delete":"Vymazat","destination":"Cíl","devices":"Zařízení","dialog_confirmation_prompt":"Jste si jistý?","disable":"Zakázat","enter_search_criteria":"Zadejte vyhledávací kritéria","groups":"Skupiny","loading":"Načítání...","none":"Žádné","ok":"Ok","read":"Načíst","save":"Uložit","select_device":"Vyberte zařízení","select_endpoint":"Vybrat koncový bod","source_endpoint":"Zdroj koncového bodu","the_only_endpoint":"Jediný koncový bod","unbind":"Rozvázat","write":"Zapsat"},"devicePage":{"about":"O mě","bind":"Svázat","clusters":"Clustery","dev_console":"Vývojářská konzole","exposes":"Detaily","reporting":"Hlašení","settings":"Nastavení","settings_specific":"Nastavení (specifické)","state":"Stav","scene":"Scéna","unknown_device":"Neznámé zařízení"},"exposes":{"action":"Akce","auto_off":"Automatické vypnutí","away_mode":"Režim nepřítomnosti","away_preset_days":"Přednastavené dny pro nepřítomnost","away_preset_temperature":"Přednastavená teplota pro nepřítomnost","backlight_mode":"Režim podsvícení","battery":"Baterie","battery_low":"Vybitá baterie","boost_time":"Doba pro navýšení teploty","brightness":"Jas","calibration":"Kalibrace","carbon_monoxide":"Oxid uhelnatý","color_hs":"Barva (HS)","color_temp":"Teplota barev","color_temp_startup":"Teplota barev při spuštění","color_xy":"Barva (XY)","comfort_temperature":"Komfortní teplota","consumer_connected":"Konzument připojen","consumer_overload":"Přetížení konzumenta","contact":"Kontakt","current":"Aktuální","current_heating_setpoint":"Aktuálně nastavená hodnota","eco_temperature":"Eko teplota","effect":"Efekt","empty_exposes_definition":"Vymazat exponované definice","energy":"Energie","force":"Síla","humidity":"Vlhkost","illuminance":"Osvětlení","illuminance_lux":"Osvětlení","led_disabled_night":"Led v noci vyplá","linkquality":"Kvalita signálu","local_temperature":"Místní teplota","local_temperature_calibration":"Kalibrace místní teploty","max_temperature":"Maximální teplota","min_temperature":"Minimální teplota","motor_reversal":"Zpětný chod motoru","moving":"V pohybu","occupancy":"Obsazenost","operation_mode":"Provozní režim","options":"Možnosti","position":"Pozice","power":"Napájení","power_on_behavior":"Chování při zapnutí","power_outage_memory":"Paměť při výpadku napájení","preset":"Předvolba","pressure":"Tlak","sensivity":"Citlivost","smoke":"Kouř","state":"Stav","strength":"Síla","system_mode":"Režim systému","tamper":"Manipulovat","temperature":"Teplota","voltage":"Napětí","water_leak":"Únik vody","week":"Týden"},"extensions":{"create_new_extension":"Vytvořit nové rozšíření","extension_name_propmt":"Zadejte nový název rozšíření","select_extension_to_edit":"Vyberte rozšíření, které chcete upravit"},"featureDescriptions":{"Auto off after specific time.":"Automatické vypnutí po dané době.","Away mode":"Režim pryč","Away preset days":"Přednastavené dny pro pryč","Away preset temperature":"Přednastavená teplota pro pryč","Boost time":"Doba zvýšení","Brightness of this light":"Jas tohoto světla","Calibration time":"Čas kalibrace","Color of this light expressed as hue/saturation":"Barva tohoto světla vyjádřená jako odstín/sytost","Color of this light in the CIE 1931 color space (x/y)":"Barva tohoto světla v barevném prostoru CIE 1931 (x/y)","Color temperature after cold power on of this light":"Barevná teplota po studeném zapnutí tohoto světla","Color temperature of this light":"Barevná teplota tohoto světla","Comfort temperature":"Komfortní teplota","Controls the behavior when the device is powered on":"Ovládá chování, když je zařízení zapnuté","Controls the behaviour when the device is powered on":"Ovládá chování, když je zařízení zapnuté","Current temperature measured on the device":"Aktuální teplota naměřená na zařízení","Decoupled mode for center button":"Oddělený režim pro střední tlačítko","Decoupled mode for left button":"Oddělený režim pro levé tlačítko","Decoupled mode for right button":"Oddělený režim pro pravé tlačítko","Eco temperature":"Eko teplota","Enable/disable auto lock":"Povolit/zakázat automatický zámek","Enable/disable away mode":"Povolit/zakázat režim nepřítomnosti","Enables/disables physical input on the device":"Povolí/zakáže fyzický vstup do zařízení","Enables/disables window detection on the device":"Povolí/zakáže detekci oken na zařízení","Enabling prevents both relais being on at the same time":"Povolení zabrání zapnutí obou relé současně","Force the valve position":"Vynutit polohu ventilu","Indicates if CO (carbon monoxide) is detected":"Ukazuje, zda je detekován CO (oxid uhelnatý)","Indicates if the battery of this device is almost empty":"Ukazuje, zda je baterie tohoto zařízení téměř vybitá","Indicates if the contact is closed (= true) or open (= false)":"Ukazuje, zda je kontakt sepnutý (= true) nebo otevřený (= false)","Indicates whether the device detected a water leak":"Ukazuje, zda zařízení detekovalo únik vody","Indicates whether the device detected occupancy":"Ukazuje, zda zařízení detekovalo obsazenost","Indicates whether the device detected smoke":"Ukazuje, zda zařízení detekovalo kouř","Indicates whether the device is tampered":"Ukazuje, zda je se zařízením neoprávněně manipulováno","Instantaneous measured electrical current":"Okamžitý naměřený elektrický proud","Instantaneous measured power":"Okamžitý naměřený výkon","Link quality (signal strength)":"Kvalita signálu (síla signálu)","Maximum temperature":"Maximální teplota","Measured electrical potential value":"Naměřená hodnota elektrického potenciálu","Measured illuminance in lux":"Naměřená osvětlenost v luxech","Measured relative humidity":"Naměřená relativní vlhkost","Measured temperature value":"Hodnota naměřené teploty","Minimum temperature":"Minimální teplota","Mode of this device (similar to system_mode)":"Režim tohoto zařízení (podobný system_mode)","Mode of this device":"Režim tohoto zařízení","Motor speed":"Rychlost motoru","Offset to be used in the local_temperature":"Offset, který má být použit v local_temperature","On/off state of the switch":"Stav spínače zapnuto/vypnuto","On/off state of this light":"Stav zapnuto/vypnuto tohoto světla","Position of this cover":"Pozice tohoto krytu","Position":"Pozice","Raw measured illuminance":"RAW naměřená osvětlenost","Recover state after power outage":"Obnovení stavu po výpadku napájení","Remaining battery in %":"Zbývající baterie v %","Side of the cube":"Strana krychle","Sum of consumed energy":"Součet spotřebované energie","Temperature setpoint":"Nastavená hodnota teploty","The measured atmospheric pressure":"Naměřený atmosférický tlak","Triggered action (e.g. a button click)":"Spuštěná akce (např. kliknutí na tlačítko)","Triggers an effect on the light (e.g. make light blink for a few seconds)":"Spustí efekt na světlo (např. nechá světlo na několik sekund blikat)","Voltage of the battery in millivolts":"Napětí baterie v milivoltech","Week format user for schedule":"Formát kalendářního týdne"},"featureNames":{"action":"Akce","angle_x":"Úhel X","angle_y":"Úhel Y","angle_z":"Úhel Z","brightness":"Jas","co2":"CO2","color_temp":"Teplota barev","color_xy":"Barva Xy","contact":"Kontakt","humidity":"Vlhkost","illuminance":"Osvětlení","occupancy":"Obsazenost","pressure":"Tlak","soil_moisture":"Vlhkost půdy","state":"Stav","temperature":"Teplota","tamper":"Manipulovat"},"groups":{"add_to_group":"Přidat do skupiny","create_group":"Vytvořit skupinu","new_group_id":"ID nové skupiny","new_group_id_placeholder":"V případě potřeby zadejte ID skupiny","new_group_name":"Nový název skupiny","new_group_name_placeholder":"příklad: my_bedroom_lights","remove_group":"Odebrat skupinu","group_id":"ID skupiny","group_name":"Název skupiny","group_members":"Členové skupiny","group_scenes":"Skupinové scény"},"logs":{"empty_logs_message":"Nic k zobrazení","filter_by_text":"Filtrovat podle textu","show_only":"Pouze zobrazit"},"map":{"help_coordinator_link_description":"Plné čáry jsou odkazem na koordinátora","help_end_device_description":"Zelená znamená koncové zařízení","help_is_coordinator":"je koordinátor","help_lqi_description":"Kvalita spojení je mezi 0 - 255 (vyšší je lepší), hodnota s / představuje více typů spojení","help_router_description":"Modrá znamená směrovač","help_router_links_description":"Přerušované čáry jsou spojením se směrovači","hide":"Kliknutím na mě skryješ","load":"Načíst mapu","loading":"V závislosti na velikosti vaší sítě může načtení trvat 10 sekund až 2 minuty."},"navbar":{"all":"Vše","dashboard":"Přehled","devices":"Zařízení","disable_join":"Zakázat připojení","extensions":"Rozšíření","groups":"Skupiny","logs":"Logy","map":"Mapa","ota":"OTA","permit_join":"Povolit připojení","restart":"Restartovat","settings":"Nastavení","toggle_dropdown":"Přepnout rozbalovací nabídku","touchlink":"Touchlink"},"ota":{"check":"Kontrola nových aktualizací","check_all":"Zkontrolovat vše","empty_ota_message":"Nemáte žádná zařízení, která podporují OTA","remaining_time":"Zbývající čas {{- remaining}}","update":"Aktualizovat firmware zařízení"},"settings":{"about":"O mě","advanced":"Pokročilé","availability":"Dostupnost","blocklist":"Seznam blokovaných","coordinator_revision":"Revize koordinátora","coordinator_type":"Typ koordinátora","donate":"Příspěvek","donation_text":["Dobrý den, %username%, zde nám můžete poděkovat za tvrdou práci","Neváhej a řekni taky něco hezkého ;)"],"download_state":"Stav stahování","experimental":"Experimentální","external_converters":"Externí převodníky","frontend":"Frontend","frontend_version":"Verze frontendu","main":"Hlavní","mqtt":"MQTT","ota":"Aktualizace OTA","passlist":"Přístupová práva","raw":"Raw","restart_zigbee2mqtt":"Restart Zigbee2MQTT","serial":"Sériový","settings":"Nastavení","tools":"Nástroje","zigbee2mqtt_version":"Verze Zigbee2MQTT","translate":"Přeložit"},"settingsSchemaTranslations":{"advanced-title":"Advanced","advanced_availability_blacklist__title":"Blacklist dostupnosti (zastaralé, použijte availability_blocklist)","advanced_availability_blocklist__description":"Zabránit kontrole dostupnosti zařízení","advanced_availability_blocklist__title":"Blacklist dostupnosti","advanced_availability_passlist__description":"Povolit kontrolu dostupnosti pouze pro určitá zařízení","advanced_availability_passlist__title":"Passlist dostupnosti","advanced_availability_whitelist__title":"Whitelist dostupnosti (zastaralá, použijte Passlist)","advanced_ext_pan_id__description":"Zigbee Extended Pan ID, změna vyžaduje opravu všech zařízení!","advanced_ext_pan_id__title":"Ext Pan ID","advanced_log_output__description":"Výstupní umístění logu, ponechte prázdné pro potlačení logování","advanced_log_output__title":"Výstup logu","advanced_log_syslog-title":"syslog","blocklist__description":"Blokovat zařízení ze sítě (pomocí ieeeAddr)","blocklist__title":"Blocklist","experimental-title":"Experimentální","external_converters__description":"Můžete definovat externí převodníky, např. přidat podporu pro DIY zařízení","external_converters__title":"Externí převodníky","frontend-title":"Frontend","mqtt-title":"MQTT","ota-title":"Aktualizace OTA","passlist__description":"Povolit připojení k síti pouze určitým zařízením (pomocí ieeeAddr). Pamatujte, že všechna zařízení, která nejsou na seznamu přístupů, budou ze sítě odstraněna!","passlist__title":"Passlist","root__description":"Povolit připojení k síti pouze určitým zařízením (pomocí ieeeAddr). Pamatujte, že všechna zařízení, která nejsou na seznamu přístupových práv, budou ze sítě odstraněna!","root_availability_blacklist__title":"Blacklist dostupnosti (zastaralé, použijte availability_blocklist)","root_availability_blocklist__description":"Zabránit kontrole dostupnosti zařízení","root_availability_blocklist__title":"Blacklist dostupnosti","root_availability_passlist__description":"Povolit kontrolu dostupnosti pouze pro určitá zařízení","root_availability_passlist__title":"Passlist dostupnosti","root_availability_whitelist__title":"Povolená listina dostupnosti (zastaralé, použijte passlist)","root_debounce_ignore__description":"Chrání jedinečné hodnoty vlastností užitečného zatížení před přepsáním během doby odskoku","root_debounce_ignore__title":"Ignorovat odskok","root_ext_pan_id__description":"Zigbee extended pan ID, změna vyžaduje opravu všech zařízení!","root_ext_pan_id__title":"Ext Pan ID","root_filtered_attributes__description":"Povolit zabránění zveřejnění určitých atributů ","root_filtered_attributes__title":"Filtrované atributy","root_filtered_optimistic__description":"Filtrujte atributy z optimistického publikování dat při dotazu /set (Toto nemá žádný vliv, pokud je optimistické nastaveno na false).","root_filtered_optimistic__title":"Filtrované optimistické atributy","root_log_output__description":"Výstupní umístění logu, ponechte prázdné pro potlačení logování","root_log_output__title":"Výstup logu","root_log_syslog-title":"syslog","serial-title":"Sériový"},"touchlink":{"detected_devices_message":"Zjištěno {{count}} zařízení touchlink.","rescan":"Hledat znova","scan":"Hledat"},"values":{"clear":"Vymazat","closed":"Zavřeno","false":"Nepravda","not_supported":"Není podporováno","occupied":"Obsazený","open":"Otevřeno","supported":"Podporováno","true":"Pravda","empty_string":"Prázdný řetězec(\\"\\")","leaking":"Netěsnost","tampered":"Manipulováno"},"zigbee":{"actions":"Akce","attribute":"Atribut","battery":"Baterie","block_join":"Zablokovat opětovné připojení","cluster":"Cluster","dc_source":"DC zdroj","description":"Popis","device_type":"Typ zařízení","endpoint":"Koncový bod","firmware_build_date":"Datum sestavení firmwaru","firmware_version":"Verze firmwaru","force_remove":"Vynutit odstranění","friendly_name":"Název","ieee_address":"IEEE adresa","input_clusters":"Vstupní clustery","interview_completed":"Párování dokončeno","interview_failed":"Párování selhalo","interviewing":"Párování","last_seen":"Naposledy viděno","lqi":"LQI","mains_single_phase":"Síť (jednofázová)","manufacturer":"Výrobce","max_rep_interval":"Max interval odezvy","min_rep_change":"Min změna odezvy","min_rep_interval":"Min interval odezvy","model":"Model","network_address":"Síťová adresa","none":"Žádný","output_clusters":"Výstupní clustery","pic":"Obr.","power":"Napájení","power_level":"úroveň napájení","reconfigure":"Přenastavit","remove_device":"Odebrat zařízení","rename_device":"Přejmenovat zařízení","select_attribute":"Vybrat atribut","select_cluster":"Vybrat cluster","support_status":"Stav podpory","unsupported":"Nepodporováno","updating_firmware":"Aktualizace firmwaru","update_Home_assistant_entity_id":"Aktualizovat ID entity v Home Assistant","zigbee_manufacturer":"Výrobce Zigbee","zigbee_model":"Model Zigbee","device":"Zařízení"},"scene":{"scene_id":"ID scény","recall":"Odvolání","store":"Obchod","remove":"Odstranit","remove_all":"Odstranit vše","add":"Přidat","select_scene":"Vybrat scénu","scene_name":"Název scény"}}');
|
5010
|
+
const cs_namespaceObject = JSON.parse('{"common":{"action":"Akce","actions":"Akce","apply":"Použít","attribute":"Atribut","bind":"Svázat","check_all":"Zkontrolovat vše","clear":"Vyčistit","close":"Zavřít","cluster":"Cluster","clusters":"Clustery","confirmation":"Výzva k potvrzení","delete":"Vymazat","destination":"Cíl","devices":"Zařízení","dialog_confirmation_prompt":"Jste si jistý?","disable":"Zakázat","enter_search_criteria":"Zadejte vyhledávací kritéria","groups":"Skupiny","loading":"Načítání...","none":"Žádné","ok":"Ok","read":"Načíst","save":"Uložit","select_device":"Vyberte zařízení","select_endpoint":"Vybrat koncový bod","source_endpoint":"Zdroj koncového bodu","the_only_endpoint":"Jediný koncový bod","unbind":"Rozvázat","write":"Zapsat"},"devicePage":{"about":"Informace","bind":"Svázat","clusters":"Clustery","dev_console":"Vývojářská konzole","exposes":"Detaily","reporting":"Hlašení","settings":"Nastavení","settings_specific":"Nastavení (specifické)","state":"Stav","scene":"Scéna","unknown_device":"Neznámé zařízení"},"exposes":{"action":"Akce","auto_off":"Automatické vypnutí","away_mode":"Režim nepřítomnosti","away_preset_days":"Přednastavené dny pro nepřítomnost","away_preset_temperature":"Přednastavená teplota pro nepřítomnost","backlight_mode":"Režim podsvícení","battery":"Baterie","battery_low":"Vybitá baterie","boost_time":"Doba pro navýšení teploty","brightness":"Jas","calibration":"Kalibrace","carbon_monoxide":"Oxid uhelnatý","color_hs":"Barva (HS)","color_temp":"Teplota barev","color_temp_startup":"Teplota barev při spuštění","color_xy":"Barva (XY)","comfort_temperature":"Komfortní teplota","consumer_connected":"Konzument připojen","consumer_overload":"Přetížení konzumenta","contact":"Kontakt","current":"Aktuální","current_heating_setpoint":"Aktuálně nastavená hodnota","eco_temperature":"Eko teplota","effect":"Efekt","empty_exposes_definition":"Vymazat exponované definice","energy":"Energie","force":"Síla","humidity":"Vlhkost","illuminance":"Osvětlení","illuminance_lux":"Osvětlení","led_disabled_night":"Led v noci vyplá","linkquality":"Kvalita signálu","local_temperature":"Místní teplota","local_temperature_calibration":"Kalibrace místní teploty","max_temperature":"Maximální teplota","min_temperature":"Minimální teplota","motor_reversal":"Zpětný chod motoru","moving":"V pohybu","occupancy":"Obsazenost","operation_mode":"Provozní režim","options":"Možnosti","position":"Pozice","power":"Napájení","power_on_behavior":"Chování při zapnutí","power_outage_memory":"Paměť při výpadku napájení","preset":"Předvolba","pressure":"Tlak","sensivity":"Citlivost","smoke":"Kouř","state":"Stav","strength":"Síla","system_mode":"Režim systému","tamper":"Manipulovat","temperature":"Teplota","voltage":"Napětí","water_leak":"Únik vody","week":"Týden"},"extensions":{"create_new_extension":"Vytvořit nové rozšíření","extension_name_propmt":"Zadejte nový název rozšíření","select_extension_to_edit":"Vyberte rozšíření, které chcete upravit"},"featureDescriptions":{"Auto off after specific time.":"Automatické vypnutí po dané době.","Away mode":"Režim pryč","Away preset days":"Přednastavené dny pro pryč","Away preset temperature":"Přednastavená teplota pro pryč","Boost time":"Doba zvýšení","Brightness of this light":"Jas tohoto světla","Calibration time":"Čas kalibrace","Color of this light expressed as hue/saturation":"Barva tohoto světla vyjádřená jako odstín/sytost","Color of this light in the CIE 1931 color space (x/y)":"Barva tohoto světla v barevném prostoru CIE 1931 (x/y)","Color temperature after cold power on of this light":"Barevná teplota po studeném zapnutí tohoto světla","Color temperature of this light":"Barevná teplota tohoto světla","Comfort temperature":"Komfortní teplota","Controls the behavior when the device is powered on":"Ovládá chování, když je zařízení zapnuté","Controls the behaviour when the device is powered on":"Ovládá chování, když je zařízení zapnuté","Current temperature measured on the device":"Aktuální teplota naměřená na zařízení","Decoupled mode for center button":"Oddělený režim pro střední tlačítko","Decoupled mode for left button":"Oddělený režim pro levé tlačítko","Decoupled mode for right button":"Oddělený režim pro pravé tlačítko","Eco temperature":"Eko teplota","Enable/disable auto lock":"Povolit/zakázat automatický zámek","Enable/disable away mode":"Povolit/zakázat režim nepřítomnosti","Enables/disables physical input on the device":"Povolí/zakáže fyzický vstup do zařízení","Enables/disables window detection on the device":"Povolí/zakáže detekci oken na zařízení","Enabling prevents both relais being on at the same time":"Povolení zabrání zapnutí obou relé současně","Force the valve position":"Vynutit polohu ventilu","Indicates if CO (carbon monoxide) is detected":"Ukazuje, zda je detekován CO (oxid uhelnatý)","Indicates if the battery of this device is almost empty":"Ukazuje, zda je baterie tohoto zařízení téměř vybitá","Indicates if the contact is closed (= true) or open (= false)":"Ukazuje, zda je kontakt sepnutý (= true) nebo otevřený (= false)","Indicates whether the device detected a water leak":"Ukazuje, zda zařízení detekovalo únik vody","Indicates whether the device detected occupancy":"Ukazuje, zda zařízení detekovalo obsazenost","Indicates whether the device detected smoke":"Ukazuje, zda zařízení detekovalo kouř","Indicates whether the device is tampered":"Ukazuje, zda je se zařízením neoprávněně manipulováno","Instantaneous measured electrical current":"Okamžitý naměřený elektrický proud","Instantaneous measured power":"Okamžitý naměřený výkon","Link quality (signal strength)":"Kvalita signálu (síla signálu)","Maximum temperature":"Maximální teplota","Measured electrical potential value":"Naměřená hodnota elektrického potenciálu","Measured illuminance in lux":"Naměřená osvětlenost v luxech","Measured relative humidity":"Naměřená relativní vlhkost","Measured temperature value":"Hodnota naměřené teploty","Minimum temperature":"Minimální teplota","Mode of this device (similar to system_mode)":"Režim tohoto zařízení (podobný system_mode)","Mode of this device":"Režim tohoto zařízení","Motor speed":"Rychlost motoru","Offset to be used in the local_temperature":"Offset, který má být použit v local_temperature","On/off state of the switch":"Stav spínače zapnuto/vypnuto","On/off state of this light":"Stav zapnuto/vypnuto tohoto světla","Position of this cover":"Pozice tohoto krytu","Position":"Pozice","Raw measured illuminance":"RAW naměřená osvětlenost","Recover state after power outage":"Obnovení stavu po výpadku napájení","Remaining battery in %":"Zbývající baterie v %","Side of the cube":"Strana krychle","Sum of consumed energy":"Součet spotřebované energie","Temperature setpoint":"Nastavená hodnota teploty","The measured atmospheric pressure":"Naměřený atmosférický tlak","Triggered action (e.g. a button click)":"Spuštěná akce (např. kliknutí na tlačítko)","Triggers an effect on the light (e.g. make light blink for a few seconds)":"Spustí efekt na světlo (např. nechá světlo na několik sekund blikat)","Voltage of the battery in millivolts":"Napětí baterie v milivoltech","Week format user for schedule":"Formát kalendářního týdne","Number of digits after decimal point for temperature, takes into effect on next report of device.":"Počet číslic za desetinnou čárkou pro teplotu, platí při dalším hlášení zařízení.","Calibrates the temperature value (absolute offset), takes into effect on next report of device.":"Kalibruje hodnotu teploty (absolutní odchylka), projeví se při dalším hlášení zařízení.","Number of digits after decimal point for humidity, takes into effect on next report of device.":"Počet číslic za desetinnou čárkou pro vlhkost, platí při dalším hlášení zařízení.","Calibrates the humidity value (absolute offset), takes into effect on next report of device.":"Kalibruje hodnotu vlhkosti (absolutní odchylka), projeví se při dalším hlášení zařízení.","Controls the transition time (in seconds) of on/off, brightness, color temperature (if applicable) and color (if applicable) changes. Defaults to `0` (no transition).":"Ovládá dobu přechodu (v sekundách) změn zapnutí/vypnutí, jasu, teploty barev (pokud je to možné) a barvy (pokud je to možné). Výchozí hodnota je „0“ (bez přechodu)."},"featureNames":{"action":"Akce","angle_x":"Úhel X","angle_y":"Úhel Y","angle_z":"Úhel Z","brightness":"Jas","co2":"CO2","color_temp":"Teplota barev","color_xy":"Barva Xy","contact":"Kontakt","humidity":"Vlhkost","illuminance":"Osvětlení","occupancy":"Obsazenost","pressure":"Tlak","soil_moisture":"Vlhkost půdy","state":"Stav","temperature":"Teplota","tamper":"Manipulovat","child_lock":"Dětský zámek","window_detection":"Detekce otevřeného okna","valve_detection":"Detekce hlavice","local_temperature":"Místní teplota","auto_lock":"Automatický zámek","away_mode":"Režim pryč","programming_mode":"Programovací režim","week":"Týden","workdays_schedule":"Týdenní kalendář","holidays_schedule":"Prázdninový kalendář"},"groups":{"add_to_group":"Přidat do skupiny","create_group":"Vytvořit skupinu","new_group_id":"ID nové skupiny","new_group_id_placeholder":"V případě potřeby zadejte ID skupiny","new_group_name":"Nový název skupiny","new_group_name_placeholder":"příklad: my_bedroom_lights","remove_group":"Odebrat skupinu","group_id":"ID skupiny","group_name":"Název skupiny","group_members":"Členové skupiny","group_scenes":"Skupinové scény"},"logs":{"empty_logs_message":"Nic k zobrazení","filter_by_text":"Filtrovat podle textu","show_only":"Filtrovat podle typu"},"map":{"help_coordinator_link_description":"Plné čáry jsou spojením s koordinátorem","help_end_device_description":"Zelená znamená koncové zařízení","help_is_coordinator":"je koordinátor","help_lqi_description":"Kvalita spojení je mezi 0 - 255 (vyšší je lepší), hodnota s / představuje více typů spojení","help_router_description":"Modrá znamená směrovač","help_router_links_description":"Přerušované čáry jsou spojením se směrovačem","hide":"Kliknutím na mě skryješ","load":"Načíst mapu","loading":"V závislosti na velikosti vaší sítě může načtení trvat 10 sekund až 2 minuty."},"navbar":{"all":"Vše","dashboard":"Přehled","devices":"Zařízení","disable_join":"Zakázat připojení","extensions":"Rozšíření","groups":"Skupiny","logs":"Logy","map":"Mapa","ota":"OTA","permit_join":"Povolit připojení","restart":"Restartovat","settings":"Nastavení","toggle_dropdown":"Přepnout rozbalovací nabídku","touchlink":"Touchlink"},"ota":{"check":"Kontrola nových aktualizací","check_all":"Zkontrolovat vše","empty_ota_message":"Nemáte žádná zařízení, která podporují OTA","remaining_time":"Zbývající čas {{- remaining}}","update":"Aktualizovat firmware zařízení"},"settings":{"about":"O mě","advanced":"Pokročilé","availability":"Dostupnost","blocklist":"Seznam blokovaných","coordinator_revision":"Revize koordinátora","coordinator_type":"Typ koordinátora","donate":"Příspěvek","donation_text":["Dobrý den, %username%, zde nám můžete poděkovat za tvrdou práci","Neváhej a řekni taky něco hezkého ;)"],"download_state":"Stáhnout konfiguraci","experimental":"Experimentální","external_converters":"Externí převodníky","frontend":"Frontend","frontend_version":"Verze frontendu","main":"Hlavní","mqtt":"MQTT","ota":"Aktualizace OTA","passlist":"Přístupová práva","raw":"Raw","restart_zigbee2mqtt":"Restartovat Zigbee2MQTT","serial":"Sériový","settings":"Nastavení","tools":"Nástroje","zigbee2mqtt_version":"Verze Zigbee2MQTT","translate":"Přeložit","stats":"statistiky"},"settingsSchemaTranslations":{"advanced-title":"Advanced","advanced_availability_blacklist__title":"Blacklist dostupnosti (zastaralé, použijte availability_blocklist)","advanced_availability_blocklist__description":"Zabránit kontrole dostupnosti zařízení","advanced_availability_blocklist__title":"Blacklist dostupnosti","advanced_availability_passlist__description":"Povolit kontrolu dostupnosti pouze pro určitá zařízení","advanced_availability_passlist__title":"Passlist dostupnosti","advanced_availability_whitelist__title":"Whitelist dostupnosti (zastaralá, použijte Passlist)","advanced_ext_pan_id__description":"Zigbee Extended Pan ID, změna vyžaduje opravu všech zařízení!","advanced_ext_pan_id__title":"Ext Pan ID","advanced_log_output__description":"Výstupní umístění logu, ponechte prázdné pro potlačení logování","advanced_log_output__title":"Výstup logu","advanced_log_syslog-title":"syslog","blocklist__description":"Blokovat zařízení ze sítě (pomocí ieeeAddr)","blocklist__title":"Blocklist","experimental-title":"Experimentální","external_converters__description":"Můžete definovat externí převodníky, např. přidat podporu pro DIY zařízení","external_converters__title":"Externí převodníky","frontend-title":"Frontend","mqtt-title":"MQTT","ota-title":"Aktualizace OTA","passlist__description":"Povolit připojení k síti pouze určitým zařízením (pomocí ieeeAddr). Pamatujte, že všechna zařízení, která nejsou na seznamu přístupů, budou ze sítě odstraněna!","passlist__title":"Passlist","root__description":"Povolit připojení k síti pouze určitým zařízením (pomocí ieeeAddr). Pamatujte, že všechna zařízení, která nejsou na seznamu přístupových práv, budou ze sítě odstraněna!","root_availability_blacklist__title":"Blacklist dostupnosti (zastaralé, použijte availability_blocklist)","root_availability_blocklist__description":"Zabránit kontrole dostupnosti zařízení","root_availability_blocklist__title":"Blacklist dostupnosti","root_availability_passlist__description":"Povolit kontrolu dostupnosti pouze pro určitá zařízení","root_availability_passlist__title":"Passlist dostupnosti","root_availability_whitelist__title":"Povolená listina dostupnosti (zastaralé, použijte passlist)","root_debounce_ignore__description":"Chrání jedinečné hodnoty vlastností užitečného zatížení před přepsáním během doby odskoku","root_debounce_ignore__title":"Ignorovat odskok","root_ext_pan_id__description":"Zigbee extended pan ID, změna vyžaduje opravu všech zařízení!","root_ext_pan_id__title":"Ext Pan ID","root_filtered_attributes__description":"Povolit zabránění zveřejnění určitých atributů ","root_filtered_attributes__title":"Filtrované atributy","root_filtered_optimistic__description":"Filtrujte atributy z optimistického publikování dat při dotazu /set (Toto nemá žádný vliv, pokud je optimistické nastaveno na false).","root_filtered_optimistic__title":"Filtrované optimistické atributy","root_log_output__description":"Výstupní umístění logu, ponechte prázdné pro potlačení logování","root_log_output__title":"Výstup logu","root_log_syslog-title":"syslog","serial-title":"Sériový"},"stats":{"EndDevice":"Koncové zařízení","Router":"Router","byType":"dle typu","byPowerSource":"dle zdroje napájení","byVendor":"dle výrobce","byModel":"dle modelu","total":"celkové"},"touchlink":{"detected_devices_message":"Zjištěno {{count}} zařízení touchlink.","rescan":"Hledat znova","scan":"Hledat"},"values":{"clear":"Vymazat","closed":"Zavřeno","false":"Ne","not_supported":"Není podporováno","occupied":"Obsazený","open":"Otevřeno","supported":"Podporováno","true":"Ano","empty_string":"Prázdný řetězec(\\"\\")","leaking":"Netěsnost","tampered":"Manipulováno"},"zigbee":{"actions":"Akce","attribute":"Atribut","battery":"Baterie","block_join":"Zablokovat opětovné připojení","cluster":"Cluster","dc_source":"DC zdroj","description":"Popis","device_type":"Typ zařízení","endpoint":"Koncový bod","firmware_build_date":"Datum sestavení firmwaru","firmware_version":"Verze firmwaru","force_remove":"Vynutit odstranění","friendly_name":"Název","ieee_address":"IEEE adresa","input_clusters":"Vstupní clustery","interview_completed":"Párování dokončeno","interview_failed":"Párování selhalo","interviewing":"Párování","last_seen":"Naposledy viděno","lqi":"LQI","mains_single_phase":"Síť (jednofázová)","manufacturer":"Výrobce","max_rep_interval":"Max interval odezvy","min_rep_change":"Min změna odezvy","min_rep_interval":"Min interval odezvy","model":"Model","network_address":"Síťová adresa","none":"Žádný","output_clusters":"Výstupní clustery","pic":"Obr.","power":"Napájení","power_level":"úroveň napájení","reconfigure":"Přenastavit","remove_device":"Odebrat zařízení","rename_device":"Přejmenovat zařízení","select_attribute":"Vybrat atribut","select_cluster":"Vybrat cluster","support_status":"Stav podpory","unsupported":"Nepodporováno","updating_firmware":"Aktualizace firmwaru","update_Home_assistant_entity_id":"Aktualizovat ID entity v Home Assistant","zigbee_manufacturer":"Výrobce Zigbee","zigbee_model":"Model Zigbee","device":"Zařízení"},"scene":{"scene_id":"ID scény","recall":"Odvolání","store":"Obchod","remove":"Odstranit","remove_all":"Odstranit vše","add":"Přidat","select_scene":"Vybrat scénu","scene_name":"Název scény"}}');
|
5011
|
+
;// CONCATENATED MODULE: ./src/i18n/locales/fi.json
|
5012
|
+
const locales_fi_namespaceObject = JSON.parse('{"common":{"action":"Toiminto","actions":"Toiminnot","apply":"Aseta","attribute":"Attribuutti","bind":"Sido","check_all":"Tarkista kaikki","clear":"Pyyhi","close":"Sulje","cluster":"Rypäs","clusters":"Ryppäät","confirmation":"Vahvistuskehote","delete":"Poista","destination":"Kohde","devices":"Laitteet","dialog_confirmation_prompt":"Oletko varma?","disable":"Poista käytöstä","enter_search_criteria":"Anna hakukriteeri","groups":"Ryhmät","loading":"Ladataan...","none":"Ei mitään","ok":"Ok","read":"Lue","save":"Tallenna","select_device":"Valitse laite","select_endpoint":"Valitse päätepiste","source_endpoint":"Lähdepäätepiste","the_only_endpoint":"Ainoa päätepiste","unbind":"Vapauta sidos","write":"Kirjoita"},"devicePage":{"about":"Tietoja","bind":"Sido","clusters":"Ryppäät","dev_console":"Kehityskonsoli","exposes":"Paljastaa","reporting":"Raportti","settings":"Asetukset","settings_specific":"Asetukset (erityiset)","state":"Tila","scene":"Näkymä","unknown_device":"Tuntematon laite"},"exposes":{"action":"Toiminto","auto_off":"Autom. pois","away_mode":"Poissa -tila","away_preset_days":"Poissa: päivät","away_preset_temperature":"Poissa: lämpötila","backlight_mode":"Taustavalotila","battery":"Paristo","battery_low":"Paristo vähissä","boost_time":"Tehostusaika","brightness":"Kirkkaus","calibration":"Kalibrointi","carbon_monoxide":"Hiilimonoksidi","color_hs":"Väri (HS)","color_temp":"Värilämpötila","color_temp_startup":"Värilämpötila alussa","color_xy":"Väri (XY)","comfort_temperature":"Mukavuuslämpötila","consumer_connected":"Kulutus kytketty","consumer_overload":"Kulutuksen ylikuorma","contact":"Kontakti","current":"Virta","current_heating_setpoint":"Nykyinen lämmityksen asetus","eco_temperature":"Säästölämpötila","effect":"Teho","empty_exposes_definition":"Exposes-määrittely on tyhjä","energy":"Energia","force":"Voima","humidity":"Kosteus","illuminance":"Valoisuus","illuminance_lux":"Valoisuus","led_disabled_night":"Led disabled night","linkquality":"Yhteyden laatu","local_temperature":"Paikallinen lämpötila","local_temperature_calibration":"Paikallisen lämpötilan kalibrointi","max_temperature":"Max lämpötila","min_temperature":"Min lämpötila","motor_reversal":"Moottorin peruutus","moving":"Liikkuu","occupancy":"Varattu","operation_mode":"Toimintomoodi","options":"Valinnat","position":"Paikka","power":"Virta","power_on_behavior":"Toiminta virtakatkon jälkeen","power_outage_memory":"Virtakatkomuisti","preset":"Esiasetus","pressure":"Ilmanpaine","sensivity":"Herkkyys","smoke":"Savu","state":"Tila","strength":"Voimakkuus","system_mode":"Järjestelmätila","tamper":"Peukalointi","temperature":"Lämpötila","voltage":"Jännite","water_leak":"Vesivuoto","week":"Viikko"},"extensions":{"create_new_extension":"Luo uusi laajennus","extension_name_propmt":"Anna laajennuksen nimi","select_extension_to_edit":"Valitse muokattava laajennus"},"featureDescriptions":{"Auto off after specific time.":"Autom. pois tietyn ajan jälkeen.","Away mode":"Poissa-tila","Away preset days":"Poissa: asetetut päivät","Away preset temperature":"Poissa: asetettu lämpötila","Boost time":"Tehostusaika","Brightness of this light":"Tämän valon kirkkaus","Calibration time":"Kalibrointiaika","Color of this light expressed as hue/saturation":"Tämän valon väri ilmaistuna sävy/kylläisyys","Color of this light in the CIE 1931 color space (x/y)":"Tämän valon väri CIE 1931 väritilassa (x/y)","Color temperature after cold power on of this light":"Tämän valon värilämpötila kylmäkäynnistyksen jälkeen","Color temperature of this light":"Tämän valon värilämpötila","Comfort temperature":"Mukavuuslämpötila","Controls the behavior when the device is powered on":"Ohjaa käyttäytymistä, kun laite on käynnistetty","Controls the behaviour when the device is powered on":"Ohjaa käyttäytymistä, kun laite on käynnistetty","Current temperature measured on the device":"Nykyinen laitteelta mitattu lämpötila","Decoupled mode for center button":"Irroitustila keskipainikkeelle mode for center button","Decoupled mode for left button":"Irroitustila vasemmalle painikkeelle","Decoupled mode for right button":"Irroitustila oikealle painikkeelle","Eco temperature":"Säästölämpötila","Enable/disable auto lock":"Salli/estä autom. lukitus","Enable/disable away mode":"Salli/estä poissa-tila","Enables/disables physical input on the device":"Sallii/estää laitteen fyysisen liitännän","Enables/disables window detection on the device":"Sallii/estää ikkunan havainnoinnin laitteella","Enabling prevents both relais being on at the same time":"Salliminen estää molempien releiden samanaikaisen päälläolon","Force the valve position":"Pakota venttiilin asento","Indicates if CO (carbon monoxide) is detected":"Osoittaa CO:n (hiilimonoksidin) havaitsemisen","Indicates if the battery of this device is almost empty":"Osoittaa, että paristo on vähissä","Indicates if the contact is closed (= true) or open (= false)":"Osoittaa, että kontaksti on suljettu (= true) tai avoin (= false)","Indicates whether the device detected a water leak":"Osoittaa laitteen havainneen vesivuodon","Indicates whether the device detected occupancy":"Osoittaa laitteen havainneen paikallaolon","Indicates whether the device detected smoke":"Osoittaa laitteen havainneen savua","Indicates whether the device is tampered":"Osoittaa laitteen peukaloinnin","Instantaneous measured electrical current":"Hetkellisesti mitattu sähkövirta","Instantaneous measured power":"Hetkellisesti mitattu teho","Link quality (signal strength)":"Linkin laatu (signaalivoimakkuus)","Maximum temperature":"Maksimilämpötila","Measured electrical potential value":"Mitattu jännitearvo","Measured illuminance in lux":"Mitattu valoisuus lukseina","Measured relative humidity":"Mitattu suhteellinen kosteus","Measured temperature value":"Mitattu lämpötila","Minimum temperature":"Minimilämpötila","Mode of this device (similar to system_mode)":"Tämän laitteen tila (kuten system_mode)","Mode of this device":"Tämän laitteen tila","Motor speed":"Moottorin nopeus","Offset to be used in the local_temperature":"Poikkeama, jota käytetään local_temperature:n yhteydessä","On/off state of the switch":"Kytkimem päällä/pois tila","On/off state of this light":"Tämän valon päällä/pois tila","Position of this cover":"Tämän peitteen asento","Position":"Asento","Raw measured illuminance":"Valoisuuden raaka-arvo","Recover state after power outage":"Toipumistila virtakatkon jälkeen","Remaining battery in %":"Pariston tila prosentteina","Side of the cube":"Kuution taho","Sum of consumed energy":"Kulutettu kokonaisenergia","Temperature setpoint":"Lämpötila-asetus","The measured atmospheric pressure":"Mitattu ilmanpaine","Triggered action (e.g. a button click)":"Liipaistu toiminto (esim. näppäinpainallus)","Triggers an effect on the light (e.g. make light blink for a few seconds)":"Liipaisee valoefektint (esim. laita valo vilkkumaan muutamaksi sekunniksi)","Voltage of the battery in millivolts":"Pariston jännite millivoltteina","Week format user for schedule":"Aikataulussa käytettävä viikkomuoto"},"featureNames":{"action":"Toiminta","angle_x":"Kulma X","angle_y":"Kulma Y","angle_z":"Kulma Z","brightness":"Kirkkaus","co2":"CO2","color_temp":"Värilämpötila","color_xy":"Väri Xy","contact":"Kontakti","humidity":"Kosteus","illuminance":"Valoisuus","occupancy":"Paikallaolo","pressure":"Ilmanpaine","soil_moisture":"Maaperän kosteus","state":"Tila","temperature":"Lämpötila","tamper":"Peukalointi"},"groups":{"add_to_group":"Lisää ryhmään","create_group":"Luo ryhmä","new_group_id":"Uuden ryhmän tunnus","new_group_id_placeholder":"Valitse ryhmätunnus, jos tarpeen","new_group_name":"Uuden ryhmän nimi","new_group_name_placeholder":"esimerkki: makkarin valot","remove_group":"Poista ryhmä","group_id":"Ryhmän ID","group_name":"Ryhmän nimi","group_members":"Ryhmän jäsenet","group_scenes":"Ryhmän näkymät"},"logs":{"empty_logs_message":"Ei näytettävää","filter_by_text":"Suodata tekstillä","show_only":"Näytä ainoastaan"},"map":{"help_coordinator_link_description":"Yhtenäiset viivat ovat linkki koordinaattoriin","help_end_device_description":"Vihreä tarkoittaa loppupään laitetta","help_is_coordinator":"on koordinaattori","help_lqi_description":"Yhteyden laatu 0 - 255 (suurempi on parempi), arvoi, joissa / edustavat useita yhteystyyppejä","help_router_description":"Sininen tarkoitaa reititintä","help_router_links_description":"Katkoviivat ovat yhteyksiä reitittimeen","hide":"Napsauta piilottaaksesi","load":"Lataa kartta","loading":"Riippuen verkon koosta tämä voi kestää 10 sekuntia tai jopa 2 minuuttia."},"navbar":{"all":"Kaikki","dashboard":"Kojelauta","devices":"Laitteet","disable_join":"Estä liitokset","extensions":"Laajennukset","groups":"Ryhmät","logs":"Lokit","map":"Kartta","ota":"OTA","permit_join":"Salli liitokset","restart":"Käynnistä uudelleen","settings":"Asetukset","toggle_dropdown":"Toggle dropdown","touchlink":"Touchlink"},"ota":{"check":"Tarkista päivitykset","check_all":"Tarkista kaikki","empty_ota_message":"Sinulla ei ole OTAa tukevia laitteita","remaining_time":"Aikaa jäljellä {{- jäljellä}}","update":"Päivitä laitteen firmis"},"settings":{"about":"Tietoja","advanced":"Edistyneet as.","blocklist":"Estolista","coordinator_revision":"Koordinaattorin revisio","coordinator_type":"Koordinaattorin tyyppi","donate":"Lahjoita","donation_text":["Moi, %username%, täällä voi kiittää meitä kovasta työstä","Älä epäröi sanoa myös jotain mukavaa ;)"],"download_state":"Latauksen tila","experimental":"Kokeellista","external_converters":"Ulkoiset muuntimet","frontend":"Etupää","frontend_version":"Etupään versio","main":"Päämenu","mqtt":"MQTT","ota":"OTA-päivitykset","passlist":"Pääsylista","raw":"Raaka","restart_zigbee2mqtt":"Käynnistä Zigbee2MQTT uudelleen","serial":"Sarjanumero","settings":"Asetukset","tools":"Työkalut","zigbee2mqtt_version":"Zigbee2MQTT:n versio","translate":"Käännä","stats":"Tilastot"},"settingsSchemaTranslations":{"advanced-title":"Kehittyneet as.","advanced_availability_blacklist__title":"Saavutettavuuden musta lista (vanhentunut, käytä saavutettavuuden estolistaa)","advanced_availability_blocklist__description":"Estä laitteiden saatavuuden tarkistus","advanced_availability_blocklist__title":"Saavutettavuuden estolista","advanced_availability_passlist__description":"Salli vain tiettyjen laitteiden saavutettavuuden tarkistus","advanced_availability_passlist__title":"Saavutettavuuden pääsylista","advanced_availability_whitelist__title":"Saavutettavuuden valkea lista (vanhentunut, käytä pääsylistaa)","advanced_ext_pan_id__description":"Zigbeen laajennettu pan ID, vaihtaminen vaatii kaikkien laitteiden uudelleenparituksen!","advanced_ext_pan_id__title":"Laajennettu Pan ID","advanced_log_output__description":"Lokin paikka, jätä tyhjäksi estääksesi lokituksen","advanced_log_output__title":"Loki","advanced_log_syslog-title":"syslog","blocklist__description":"Estä laitteet verkosta ( ieee-osoitteella)","blocklist__title":"Estolista","experimental-title":"Kokeellista","external_converters__description":"Voit määrittää ulkoisen muuntimen esim. omatekoisen laitteen tukemiseksi","external_converters__title":"Ulkoiset muuntimet","frontend-title":"Etupää","mqtt-title":"MQTT","ota-title":"OTA-päivitykset","passlist__description":"Salli tiettyjen laitteiden liittyminen verkkoon (ieee-osoitteella). Huomaa, että laitteet, jotka eiväi ole pääsylistalla, poistetaan verkosta!","passlist__title":"Pääsylista","root__description":"Salli tiettyjen laitteiden liittyminen verkkoon (ieee-osoitteella). Huomaa, että laitteet, jotka eiväi ole pääsylistalla, poistetaan verkosta!","root_availability_blacklist__title":"Saavutettavuuden musta lista (vanhentunut, käytä saavutettavuuden estolistaa)","root_availability_blocklist__description":"Estä laitteiden saatavuuden tarkistus","root_availability_blocklist__title":"Saavutettavuuden estolista","root_availability_passlist__description":"Salli vain tiettyjen laitteiden saavutettavuuden tarkistus","root_availability_passlist__title":"Saavutettavuuden pääsylista","root_availability_whitelist__title":"Saavutettavuuden valkea lista (vanhentunut, käytä pääsylistaa)","root_debounce_ignore__description":"Suojaa määriteltyjen payload-ominaisuuksen uniikkeja arvoja muutoksilta palautumisajan sisällä","root_debounce_ignore__title":"Jätä palautumisaika huomiotta","root_ext_pan_id__description":"Zigbeen laajennettu pan ID, vaihtaminen vaatii kaikkien laitteiden uudelleenparituksen!","root_ext_pan_id__title":"Laajennettu Pan ID","root_filtered_attributes__description":"Sallii tiettyjen attribuuttien julkaisemisen eston","root_filtered_attributes__title":"Suodatetut attribuutit","root_filtered_optimistic__description":"Suodata attribuutit optimistisesta julkaisu-hyötykuormasta, kun kutsutaan /set. (Tällä ei ole vaikutusta jos optimistic on asetettu tilaan false).","root_filtered_optimistic__title":"Suodatetut optimistiset attribuutit","root_log_output__description":"Lokin paikka, jätä tyhjäksi estääksesi lokituksen","root_log_output__title":"Loki","root_log_syslog-title":"syslog","serial-title":"Sarjanumero"},"touchlink":{"detected_devices_message":"Havaittu {{count}} touchlink-laitetta.","rescan":"Hae uudelleen","scan":"Hae"},"values":{"clear":"Pyyhi","closed":"Suljettu","false":"Epätosi","not_supported":"Ei tuettu","occupied":"Varattu","open":"Avoin","supported":"Tuettu","true":"Tosi","empty_string":"Tyhjä merkkkijono(\\"\\")","leaking":"Vuoto","tampered":"Peukaloitu"},"zigbee":{"actions":"Toiminnot","attribute":"Attribuutti","battery":"Paristo","block_join":"Estä uudelleenliittyminen","cluster":"Rypäs","dc_source":"DC lähde","description":"Kuvaus","device_type":"Laitetyyppi","endpoint":"Päätepiste","firmware_build_date":"Firmiksen päiväys","firmware_version":"Firmiksen versio","force_remove":"Pakota poisto","friendly_name":"Lempinimi","ieee_address":"IEEE-osoite","input_clusters":"Tuloryhmät","interview_completed":"Haastattelu päättynyt","interview_failed":"Haastattelu epäonnistui","interviewing":"Haastatellaan","last_seen":"Nähty viimeksi","lqi":"LQI","mains_single_phase":"Verkkovirta (yksivaiheinen)","manufacturer":"Valmistaja","max_rep_interval":"Maksimi raportointiväli","min_rep_change":"Min. raportoitava muutos","min_rep_interval":"Minimi raportointiväli","model":"Malli","network_address":"Verkko-osoite","none":"Ei mitään","output_clusters":"Lähtöryhmät","pic":"Kuva","power":"Virransyöttö","power_level":"tehotaso","reconfigure":"Konfiguroi uudelleen","remove_device":"Poista laite","rename_device":"Nimeä laite uudelleen","select_attribute":"Valitse attribuutti","select_cluster":"Valitse rypäs","support_status":"Tuen tila","unsupported":"Ei tuettu","updating_firmware":"Firmistä päivitetään","update_Home_assistant_entity_id":"Päivitä Home Assistant entity ID","zigbee_manufacturer":"Zigbee Valmistaja","zigbee_model":"Zigbee Malli","device":"Laite","channel":"Kanava"},"scene":{"scene_id":"Näkymän ID","recall":"Hae","store":"Talleta","remove":"Poista","remove_all":"Poista kaikki","add":"Lisää","select_scene":"Valitse näkymä","scene_name":"Näkymän nimi"},"stats":{"byType":"Laitetyypin mukaan","byPowerSource":"Virtalähteen mukaan","byVendor":"Toimittajan mukaan","byModel":"Mallin mukaan","total":"Yhteensä"}}');
|
4964
5013
|
// EXTERNAL MODULE: ./node_modules/timeago.js/lib/lang/pl.js
|
4965
5014
|
var lang_pl = __webpack_require__(76854);
|
4966
5015
|
// EXTERNAL MODULE: ./node_modules/timeago.js/lib/lang/fr.js
|
@@ -4987,6 +5036,8 @@ var zh_TW = __webpack_require__(81980);
|
|
4987
5036
|
var ko = __webpack_require__(52392);
|
4988
5037
|
// EXTERNAL MODULE: ./node_modules/timeago.js/lib/lang/cs.js
|
4989
5038
|
var cs = __webpack_require__(26026);
|
5039
|
+
// EXTERNAL MODULE: ./node_modules/timeago.js/lib/lang/fi.js
|
5040
|
+
var lang_fi = __webpack_require__(31011);
|
4990
5041
|
;// CONCATENATED MODULE: ./src/i18n/index.ts
|
4991
5042
|
|
4992
5043
|
|
@@ -5018,6 +5069,8 @@ var cs = __webpack_require__(26026);
|
|
5018
5069
|
|
5019
5070
|
|
5020
5071
|
|
5072
|
+
|
5073
|
+
|
5021
5074
|
|
5022
5075
|
|
5023
5076
|
|
@@ -5034,6 +5087,7 @@ var cs = __webpack_require__(26026);
|
|
5034
5087
|
(0,esm/* register */.z2)("ko", ko/* default */.Z);
|
5035
5088
|
(0,esm/* register */.z2)("zh", zh_TW/* default */.Z);
|
5036
5089
|
(0,esm/* register */.z2)("cs", cs/* default */.Z);
|
5090
|
+
(0,esm/* register */.z2)("fi", lang_fi/* default */.Z);
|
5037
5091
|
const resources = {
|
5038
5092
|
en: en_namespaceObject,
|
5039
5093
|
fr: locales_fr_namespaceObject,
|
@@ -5049,6 +5103,7 @@ const resources = {
|
|
5049
5103
|
zh: zh_namespaceObject,
|
5050
5104
|
ko: ko_namespaceObject,
|
5051
5105
|
cs: cs_namespaceObject,
|
5106
|
+
fi: locales_fi_namespaceObject,
|
5052
5107
|
};
|
5053
5108
|
window.missing = {};
|
5054
5109
|
const blacklistedNamespaces = ['localeNames'];
|
@@ -5059,7 +5114,10 @@ const missingKeyHandler = (lngs, ns, key, fallbackValue) => {
|
|
5059
5114
|
}
|
5060
5115
|
};
|
5061
5116
|
const debug = "production" !== 'production';
|
5062
|
-
i18next/* default.
|
5117
|
+
i18next/* default.on */.ZP.on("languageChanged", (lng) => {
|
5118
|
+
document.documentElement.lang = lng;
|
5119
|
+
});
|
5120
|
+
i18next/* default.use */.ZP.use(i18nextBrowserLanguageDetector/* default */.Z)
|
5063
5121
|
.use(context/* initReactI18next */.Db)
|
5064
5122
|
.init({
|
5065
5123
|
debug,
|
@@ -5068,11 +5126,11 @@ i18next/* default.use */.Z.use(i18nextBrowserLanguageDetector/* default */.Z)
|
|
5068
5126
|
saveMissing: true,
|
5069
5127
|
missingKeyHandler
|
5070
5128
|
});
|
5071
|
-
const currentLanguage = i18next/* default.language.split */.
|
5129
|
+
const currentLanguage = i18next/* default.language.split */.ZP.language.split('-')[0].toLocaleLowerCase();
|
5072
5130
|
if (!resources[currentLanguage]) {
|
5073
|
-
i18next/* default.changeLanguage */.
|
5131
|
+
i18next/* default.changeLanguage */.ZP.changeLanguage('en');
|
5074
5132
|
}
|
5075
|
-
/* harmony default export */ const i18n = (i18next/* default */.
|
5133
|
+
/* harmony default export */ const i18n = (i18next/* default */.ZP);
|
5076
5134
|
|
5077
5135
|
// EXTERNAL MODULE: ./node_modules/react-i18next/dist/es/I18nextProvider.js
|
5078
5136
|
var I18nextProvider = __webpack_require__(6339);
|
@@ -5181,6 +5239,13 @@ module.exports = __webpack_require__.p + "f089fd97c4f748dc240d.png";
|
|
5181
5239
|
|
5182
5240
|
/***/ }),
|
5183
5241
|
|
5242
|
+
/***/ 52358:
|
5243
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
5244
|
+
|
5245
|
+
module.exports = __webpack_require__.p + "225b8c008fbd33f5a9c4.png";
|
5246
|
+
|
5247
|
+
/***/ }),
|
5248
|
+
|
5184
5249
|
/***/ 98522:
|
5185
5250
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
5186
5251
|
|
@@ -5275,8 +5340,8 @@ module.exports = "class MyExampleExtension_TS_ {\n constructor(zigbee, mqtt,
|
|
5275
5340
|
},
|
5276
5341
|
/******/ __webpack_require__ => { // webpackRuntimeModules
|
5277
5342
|
/******/ var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
|
5278
|
-
/******/ __webpack_require__.O(0, [718], () => (__webpack_exec__(
|
5343
|
+
/******/ __webpack_require__.O(0, [718], () => (__webpack_exec__(78484)));
|
5279
5344
|
/******/ var __webpack_exports__ = __webpack_require__.O();
|
5280
5345
|
/******/ }
|
5281
5346
|
]);
|
5282
|
-
//# sourceMappingURL=main.
|
5347
|
+
//# sourceMappingURL=main.34bd7830a3129d1cb8c9.js.map
|