homebridge-config-ui-x 5.0.0-beta.7 → 5.0.0-beta.71
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +407 -31
- package/CONTRIBUTING.md +5 -4
- package/LICENSE +1 -1
- package/config.schema.json +34 -144
- package/dist/bin/hb-service.d.ts +2 -2
- package/dist/bin/hb-service.js +51 -50
- package/dist/bin/hb-service.js.map +1 -1
- package/dist/bin/platforms/darwin.js +2 -2
- package/dist/bin/platforms/darwin.js.map +1 -1
- package/dist/bin/platforms/win32.js +4 -2
- package/dist/bin/platforms/win32.js.map +1 -1
- package/dist/bin/standalone.js +1 -0
- package/dist/bin/standalone.js.map +1 -1
- package/dist/core/auth/auth.controller.d.ts +2 -2
- package/dist/core/auth/auth.controller.js.map +1 -1
- package/dist/core/auth/auth.module.js +1 -1
- package/dist/core/auth/auth.module.js.map +1 -1
- package/dist/core/auth/auth.service.js +10 -10
- package/dist/core/auth/auth.service.js.map +1 -1
- package/dist/core/auth/jwt.strategy.d.ts +3 -1
- package/dist/core/config/config.service.d.ts +4 -6
- package/dist/core/config/config.service.js +9 -9
- package/dist/core/config/config.service.js.map +1 -1
- package/dist/core/config/config.startup.js +2 -2
- package/dist/core/config/config.startup.js.map +1 -1
- package/dist/core/homebridge-ipc/homebridge-ipc.service.js +3 -3
- package/dist/core/homebridge-ipc/homebridge-ipc.service.js.map +1 -1
- package/dist/index.js +6 -77
- package/dist/index.js.map +1 -1
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/modules/accessories/accessories.controller.js +5 -5
- package/dist/modules/accessories/accessories.controller.js.map +1 -1
- package/dist/modules/accessories/accessories.service.js +8 -7
- package/dist/modules/accessories/accessories.service.js.map +1 -1
- package/dist/modules/backup/backup.controller.js +7 -7
- package/dist/modules/backup/backup.controller.js.map +1 -1
- package/dist/modules/backup/backup.service.js +19 -79
- package/dist/modules/backup/backup.service.js.map +1 -1
- package/dist/modules/child-bridges/child-bridges.service.js +0 -7
- package/dist/modules/child-bridges/child-bridges.service.js.map +1 -1
- package/dist/modules/config-editor/config-editor.controller.d.ts +1 -1
- package/dist/modules/config-editor/config-editor.controller.js +8 -8
- package/dist/modules/config-editor/config-editor.controller.js.map +1 -1
- package/dist/modules/config-editor/config-editor.service.d.ts +1 -1
- package/dist/modules/config-editor/config-editor.service.js +62 -64
- package/dist/modules/config-editor/config-editor.service.js.map +1 -1
- package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.d.ts +1 -1
- package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js +13 -11
- package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js.map +1 -1
- package/dist/modules/log/log.gateway.d.ts +2 -1
- package/dist/modules/log/log.gateway.js.map +1 -1
- package/dist/modules/log/log.service.js +3 -3
- package/dist/modules/log/log.service.js.map +1 -1
- package/dist/modules/platform-tools/docker/docker.controller.js +3 -3
- package/dist/modules/platform-tools/docker/docker.controller.js.map +1 -1
- package/dist/modules/platform-tools/docker/docker.service.js +1 -1
- package/dist/modules/platform-tools/docker/docker.service.js.map +1 -1
- package/dist/modules/platform-tools/hb-service/hb-service.controller.js +3 -3
- package/dist/modules/platform-tools/hb-service/hb-service.controller.js.map +1 -1
- package/dist/modules/platform-tools/hb-service/hb-service.service.js +6 -6
- package/dist/modules/platform-tools/hb-service/hb-service.service.js.map +1 -1
- package/dist/modules/platform-tools/linux/linux.controller.js +2 -2
- package/dist/modules/platform-tools/linux/linux.controller.js.map +1 -1
- package/dist/modules/platform-tools/linux/linux.service.js +2 -2
- package/dist/modules/platform-tools/linux/linux.service.js.map +1 -1
- package/dist/modules/platform-tools/terminal/terminal.gateway.d.ts +2 -1
- package/dist/modules/platform-tools/terminal/terminal.gateway.js.map +1 -1
- package/dist/modules/platform-tools/terminal/terminal.service.js +2 -2
- package/dist/modules/platform-tools/terminal/terminal.service.js.map +1 -1
- package/dist/modules/plugins/plugins.controller.js +4 -4
- package/dist/modules/plugins/plugins.controller.js.map +1 -1
- package/dist/modules/plugins/plugins.service.d.ts +4 -1
- package/dist/modules/plugins/plugins.service.js +168 -103
- package/dist/modules/plugins/plugins.service.js.map +1 -1
- package/dist/modules/server/server.controller.d.ts +22 -2
- package/dist/modules/server/server.controller.js +86 -18
- package/dist/modules/server/server.controller.js.map +1 -1
- package/dist/modules/server/server.service.d.ts +24 -6
- package/dist/modules/server/server.service.js +165 -66
- package/dist/modules/server/server.service.js.map +1 -1
- package/dist/modules/status/status.controller.d.ts +0 -1
- package/dist/modules/status/status.controller.js +3 -4
- package/dist/modules/status/status.controller.js.map +1 -1
- package/dist/modules/status/status.gateway.d.ts +1 -1
- package/dist/modules/status/status.service.d.ts +1 -1
- package/dist/modules/status/status.service.js +17 -41
- package/dist/modules/status/status.service.js.map +1 -1
- package/dist/modules/users/users.controller.js +7 -7
- package/dist/modules/users/users.controller.js.map +1 -1
- package/dist/self-check.js +6 -6
- package/dist/self-check.js.map +1 -1
- package/package.json +45 -43
- package/public/3rdpartylicenses.txt +145 -62
- package/public/assets/hap-icons/airpurifier.svg +49 -16
- package/public/assets/hap-icons/airquality.svg +24 -13
- package/public/assets/hap-icons/co-sensor.svg +72 -0
- package/public/assets/hap-icons/co2-sensor.svg +72 -0
- package/public/assets/hap-icons/contactsensor-closed.svg +35 -2
- package/public/assets/hap-icons/contactsensor-open.svg +80 -2
- package/public/assets/hap-icons/door-closed.svg +32 -2
- package/public/assets/hap-icons/door-open.svg +48 -2
- package/public/assets/hap-icons/fan-off.svg +24 -13
- package/public/assets/hap-icons/fan-on.svg +24 -13
- package/public/assets/hap-icons/garagedoor.svg +24 -13
- package/public/assets/hap-icons/humidity.svg +24 -13
- package/public/assets/hap-icons/irrigation-system.svg +47 -18
- package/public/assets/hap-icons/leaksensor.svg +52 -2
- package/public/assets/hap-icons/light.svg +47 -28
- package/public/assets/hap-icons/lightbulb.svg +24 -13
- package/public/assets/hap-icons/lock-locked.svg +24 -13
- package/public/assets/hap-icons/lock-unlocked.svg +24 -13
- package/public/assets/hap-icons/motionsensor.svg +100 -2
- package/public/assets/hap-icons/occupancysensor.svg +97 -2
- package/public/assets/hap-icons/outlet.svg +24 -13
- package/public/assets/hap-icons/securitysystem-active.svg +102 -2
- package/public/assets/hap-icons/securitysystem-off.svg +68 -2
- package/public/assets/hap-icons/smokesensor.svg +42 -9
- package/public/assets/hap-icons/speaker.svg +29 -13
- package/public/assets/hap-icons/statelessprogrammableswitch.svg +51 -2
- package/public/assets/hap-icons/switch.svg +24 -13
- package/public/assets/hap-icons/television.svg +15 -4
- package/public/assets/hap-icons/temperature.svg +24 -13
- package/public/assets/hap-icons/unknown.svg +24 -13
- package/public/assets/hap-icons/valve-generic.svg +27 -16
- package/public/assets/hap-icons/valve-irrigation.svg +37 -21
- package/public/assets/hap-icons/valve-showerhead.svg +52 -0
- package/public/assets/hap-icons/valve-waterfaucet.svg +21 -0
- package/public/assets/hap-icons/window-closed.svg +85 -2
- package/public/assets/hap-icons/window-open.svg +136 -2
- package/public/assets/hap-icons/windowcovering-closed.svg +45 -49
- package/public/assets/hap-icons/windowcovering-open.svg +40 -44
- package/public/assets/homebridge-color-round.svg +36 -1
- package/public/assets/homebridge-logo.svg +11 -1
- package/public/assets/mask-icon.svg +5 -1
- package/public/{chunk-7EUQWCP5.js → chunk-2FGEOEQD.js} +2 -2
- package/public/chunk-2OBPFCY2.js +1 -0
- package/public/chunk-2SXSAYFM.js +1 -0
- package/public/chunk-3EHBMPWY.js +6 -0
- package/public/{chunk-WNWWUCCZ.js → chunk-3VIG5M5R.js} +3 -3
- package/public/chunk-4CHNDLJI.js +1 -0
- package/public/chunk-4NDOCFGG.js +1 -0
- package/public/chunk-4WTLH2XC.js +1 -0
- package/public/{chunk-6TCHCTXZ.js → chunk-4XCUHCZU.js} +1 -1
- package/public/chunk-5CVOEJKH.js +1 -0
- package/public/chunk-5K7NARQK.js +20 -0
- package/public/chunk-5PQJRA5G.js +1 -0
- package/public/chunk-5T7JAJJE.js +1 -0
- package/public/chunk-752FLZDX.js +1 -0
- package/public/chunk-A2LWX7FC.js +1 -0
- package/public/chunk-AK4S37TG.js +1 -0
- package/public/chunk-ASBFWS7L.js +2 -0
- package/public/chunk-AWX3JVVV.js +1 -0
- package/public/chunk-AXOQXZMS.js +1 -0
- package/public/chunk-B4ZMGETB.js +1 -0
- package/public/chunk-C53ZM5K2.js +1 -0
- package/public/chunk-CAAUHMGY.js +1 -0
- package/public/chunk-CWBE5JGC.js +1 -0
- package/public/chunk-DJ7A6WCT.js +1 -0
- package/public/chunk-DJKI5XBW.js +1 -0
- package/public/chunk-ECZONFVO.js +1 -0
- package/public/chunk-EO357XL5.js +1 -0
- package/public/chunk-EWHDFFHL.js +1 -0
- package/public/chunk-F2OGU5FW.js +1 -0
- package/public/chunk-F6QHMWSD.js +1 -0
- package/public/{chunk-QE7DO6J3.js → chunk-FHMZVMZK.js} +2 -2
- package/public/chunk-FPFW7VCW.js +5 -0
- package/public/{chunk-SK5UJRQU.js → chunk-G6GTWDKY.js} +1 -1
- package/public/chunk-GJEQY7FK.js +1 -0
- package/public/chunk-IEOEU3PV.js +1 -0
- package/public/chunk-J75SJ6HL.js +1 -0
- package/public/chunk-JIG56QTE.js +14 -0
- package/public/chunk-JMCN2SQV.js +1 -0
- package/public/chunk-JOBKDXBH.js +1 -0
- package/public/chunk-JPVF3EPM.js +1 -0
- package/public/chunk-JX3E4VFM.js +1 -0
- package/public/chunk-KUE46RRU.js +1 -0
- package/public/chunk-LTDUXFUG.js +1 -0
- package/public/chunk-LXATRDDS.js +1 -0
- package/public/chunk-M6OQT53Y.js +1 -0
- package/public/chunk-N4VWPJ6S.js +1 -0
- package/public/chunk-NKGM5COZ.js +1 -0
- package/public/chunk-OCZ2H4UT.js +1 -0
- package/public/chunk-OGSVTVGE.js +8 -0
- package/public/chunk-OT3IJBCR.js +1 -0
- package/public/chunk-P3A42IW2.js +1 -0
- package/public/chunk-PKP4FSKB.js +1 -0
- package/public/chunk-PTJSEANH.js +1 -0
- package/public/chunk-Q5DVL6Z6.js +1 -0
- package/public/{chunk-CCUID66K.js → chunk-Q7VA22QV.js} +1 -1
- package/public/chunk-QELUTKQF.js +32 -0
- package/public/chunk-QR2DRJ5Q.js +1 -0
- package/public/chunk-QR7L4UUP.js +1 -0
- package/public/chunk-RHYCATQR.js +1 -0
- package/public/chunk-RSIXVZQ5.js +1 -0
- package/public/chunk-S4CZRO5L.js +1 -0
- package/public/chunk-TCKHBFBN.js +1 -0
- package/public/chunk-TCMMHINS.js +1 -0
- package/public/chunk-TJHYTY4K.js +1 -0
- package/public/{chunk-NDNK3KHG.js → chunk-TQNPIZF3.js} +1 -1
- package/public/chunk-TUHGKUZA.js +1 -0
- package/public/chunk-TVF7CAJN.js +1 -0
- package/public/chunk-U4V4ICSI.js +7 -0
- package/public/chunk-U6XLWNAV.js +1 -0
- package/public/{chunk-YP7JWH3J.js → chunk-UOC65WET.js} +1 -1
- package/public/{chunk-WHJSVGC7.js → chunk-UR24V3JB.js} +1 -1
- package/public/chunk-VISSPBAJ.js +1 -0
- package/public/chunk-VWAY3YX4.js +1 -0
- package/public/{chunk-EA5J2VEJ.js → chunk-WM3ZC7RY.js} +1 -1
- package/public/chunk-WNGOTZ3I.js +23 -0
- package/public/{chunk-JZZQRLNW.js → chunk-XZR7OZ6I.js} +1 -1
- package/public/chunk-YHABGXDF.js +5 -0
- package/public/chunk-YRCKAGKJ.js +1 -0
- package/public/chunk-YXEV6KOV.js +7 -0
- package/public/chunk-YZMZPZB3.js +1 -0
- package/public/{chunk-BVNJ63AC.js → chunk-Z2BKSNSC.js} +2 -2
- package/public/chunk-Z4W7FR2B.js +1 -0
- package/public/chunk-ZXXOJAVC.js +1 -0
- package/public/index.html +2 -2
- package/public/main-LJS4FW2X.js +1 -0
- package/public/media/fa-brands-400-Q3XCMWHQ.woff2 +0 -0
- package/public/media/{fa-brands-400-KOKGDU7E.ttf → fa-brands-400-R2XQZCET.ttf} +0 -0
- package/public/media/fa-regular-400-QSNYFYRT.woff2 +0 -0
- package/public/media/{fa-regular-400-IPMAEX5Y.ttf → fa-regular-400-XUOPSR7E.ttf} +0 -0
- package/public/media/fa-solid-900-5ZUYHGA7.woff2 +0 -0
- package/public/media/{fa-solid-900-SRFFQLRM.ttf → fa-solid-900-PJNKLK6W.ttf} +0 -0
- package/public/polyfills-4F4B5XMZ.js +2 -0
- package/public/styles-RBNVUC4M.css +1 -0
- package/scripts/upgrade-install-plugin.sh +1 -1
- package/public/chunk-26EDYJQW.js +0 -1
- package/public/chunk-2JDN5J3P.js +0 -1
- package/public/chunk-2PMXH77A.js +0 -1
- package/public/chunk-3C2OQ2W5.js +0 -1
- package/public/chunk-3IX3CLER.js +0 -1
- package/public/chunk-3JROOWCZ.js +0 -1
- package/public/chunk-4LLA7QYB.js +0 -1
- package/public/chunk-4N3YQA7W.js +0 -1
- package/public/chunk-52L2LAHB.js +0 -1
- package/public/chunk-5KIRKUWH.js +0 -1
- package/public/chunk-6HR4EKFX.js +0 -8
- package/public/chunk-7LUCJVXB.js +0 -1
- package/public/chunk-A4HS5JYI.js +0 -1
- package/public/chunk-A76FDQKF.js +0 -1
- package/public/chunk-AAVBU64J.js +0 -1
- package/public/chunk-AFRS7ZFI.js +0 -1
- package/public/chunk-BKUGARB4.js +0 -7
- package/public/chunk-BPMSJ2VF.js +0 -1
- package/public/chunk-BS2EMJX7.js +0 -1
- package/public/chunk-CJIFFTFC.js +0 -1
- package/public/chunk-CY55AES3.js +0 -1
- package/public/chunk-DAYZQW6Q.js +0 -1
- package/public/chunk-ED5XL3PD.js +0 -1
- package/public/chunk-EJKB2WDE.js +0 -1
- package/public/chunk-FA2N3XXT.js +0 -1
- package/public/chunk-HSJSWZHD.js +0 -1
- package/public/chunk-IB5GZVXD.js +0 -1
- package/public/chunk-IVORLBXB.js +0 -1
- package/public/chunk-IW3HI4LO.js +0 -1
- package/public/chunk-JU4PP2VY.js +0 -32
- package/public/chunk-KHNBODZR.js +0 -14
- package/public/chunk-KQJ7ONUG.js +0 -1
- package/public/chunk-KRNQN3FT.js +0 -1
- package/public/chunk-KVW76M4O.js +0 -1
- package/public/chunk-LMPCXQ23.js +0 -1
- package/public/chunk-LV2VCDOI.js +0 -1
- package/public/chunk-M6SHEAQY.js +0 -1
- package/public/chunk-MDDU475D.js +0 -1
- package/public/chunk-MPVSAJDU.js +0 -5
- package/public/chunk-NV6GUYHV.js +0 -1
- package/public/chunk-NW6AFAD7.js +0 -1
- package/public/chunk-NZNNTHFQ.js +0 -1
- package/public/chunk-OKKTO3UM.js +0 -1
- package/public/chunk-OOHFQB4Z.js +0 -1
- package/public/chunk-ORPWYWCL.js +0 -5
- package/public/chunk-QGDVQDUP.js +0 -20
- package/public/chunk-QHPDGSZ6.js +0 -1
- package/public/chunk-QKWNCNRW.js +0 -1
- package/public/chunk-RDAMEJPR.js +0 -1
- package/public/chunk-TCSXGQNF.js +0 -1
- package/public/chunk-TFEVMIHT.js +0 -23
- package/public/chunk-TXOB7R5K.js +0 -7
- package/public/chunk-U2KJ2IEE.js +0 -1
- package/public/chunk-UAQGK64S.js +0 -1
- package/public/chunk-UG5DK2RQ.js +0 -2
- package/public/chunk-UKAOVQ6N.js +0 -1
- package/public/chunk-UNVMI6CK.js +0 -1
- package/public/chunk-US5QSVJ2.js +0 -1
- package/public/chunk-UWLLEMGO.js +0 -1
- package/public/chunk-V2TYBIZV.js +0 -1
- package/public/chunk-V7D5U2P3.js +0 -1
- package/public/chunk-WHJOLAED.js +0 -1
- package/public/chunk-WNVJPPO7.js +0 -1
- package/public/chunk-WP6BKFEA.js +0 -1
- package/public/chunk-WSYFRV2X.js +0 -1
- package/public/chunk-XLY5QPTN.js +0 -6
- package/public/chunk-XY74TB4S.js +0 -1
- package/public/chunk-ZOKILXR3.js +0 -1
- package/public/chunk-ZT23DWNL.js +0 -1
- package/public/main-6PBYD25D.js +0 -1
- package/public/media/01-RQ3S2L53.png +0 -0
- package/public/media/02-VNCG2I2A.png +0 -0
- package/public/media/03-HI42L4ZG.png +0 -0
- package/public/media/04-FJLL55LZ.png +0 -0
- package/public/media/05-V3EO6SPT.png +0 -0
- package/public/media/06-EOJZCQZN.png +0 -0
- package/public/media/07-KMKB5PBD.png +0 -0
- package/public/media/08-UQJRF6B2.png +0 -0
- package/public/media/09-2DJQFRHH.png +0 -0
- package/public/media/arrow_left-CQT7FZM7.svg +0 -4
- package/public/media/arrow_right-SBUDRR2G.svg +0 -4
- package/public/media/fa-brands-400-6PJPV6JM.woff2 +0 -0
- package/public/media/fa-regular-400-OHB6J4OK.woff2 +0 -0
- package/public/media/fa-solid-900-ABTK6BNK.woff2 +0 -0
- package/public/polyfills-C6JHVXJJ.js +0 -2
- package/public/scripts-6GVLYD7F.js +0 -62
- package/public/styles-EG5MFQEM.css +0 -1
- /package/public/assets/{bootstrap-4 → bootstrap-5}/cssframework/assets.json +0 -0
package/public/main-6PBYD25D.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{a as $}from"./chunk-US5QSVJ2.js";import{a as mi}from"./chunk-TFEVMIHT.js";import{b as pi}from"./chunk-EA5J2VEJ.js";import{a as _i}from"./chunk-CY55AES3.js";import{a as oi}from"./chunk-M6SHEAQY.js";import{a as ri}from"./chunk-UWLLEMGO.js";import{a as ai,b as ni,c as li,d as di,e as ui,f as gi}from"./chunk-XLY5QPTN.js";import"./chunk-MPVSAJDU.js";import{f as xe}from"./chunk-UAQGK64S.js";import"./chunk-WHJSVGC7.js";import"./chunk-RDAMEJPR.js";import"./chunk-ZT23DWNL.js";import"./chunk-6TCHCTXZ.js";import"./chunk-JU4PP2VY.js";import"./chunk-KHNBODZR.js";import{c as ci}from"./chunk-7EUQWCP5.js";import"./chunk-WNWWUCCZ.js";import"./chunk-6HR4EKFX.js";import"./chunk-CCUID66K.js";import"./chunk-QE7DO6J3.js";import"./chunk-BKUGARB4.js";import"./chunk-BPMSJ2VF.js";import"./chunk-WHJOLAED.js";import"./chunk-JZZQRLNW.js";import"./chunk-KQJ7ONUG.js";import{q as Ce}from"./chunk-ORPWYWCL.js";import{y as be,z as he}from"./chunk-QHPDGSZ6.js";import"./chunk-SK5UJRQU.js";import{c as si,d as _e,g as we}from"./chunk-NZNNTHFQ.js";import{b as ii,c as pe}from"./chunk-YP7JWH3J.js";import{b as me}from"./chunk-V7D5U2P3.js";import{a as ce,c as k,d as G,e as ei,f as rt,g as ge,h as ot,i as Ie,k as ti}from"./chunk-WNVJPPO7.js";import{g as $t,h as Zt,i as Qt,j as Xt,k as st}from"./chunk-UG5DK2RQ.js";import{a as Ke,c as L}from"./chunk-3IX3CLER.js";import{Ga as qt,Gc as Yt,Oa as it,Qa as Vt,Sc as Wt,Yb as Gt,_c as H,a as Pe,c as Bt,d as Mt,e as y,ea as w,h as Te,ha as ee,ia as B,ma as Ue,md as te,na as E,ob as Ot,ra as Ft,rb as Lt,sb as M,sd as Jt,w as De}from"./chunk-TXOB7R5K.js";var ys=y((Sd,sa)=>{sa.exports={"accessories.button_add_room":"\u0414\u043E\u0431\u0430\u0432\u0435\u0442\u0435 \u0421\u0442\u0430\u044F","accessories.button_hidden_hide":"Hide Hidden","accessories.button_hidden_show":"Show Hidden","accessories.control.auto":"\u0410\u0432\u0442\u043E","accessories.control.away":"Away","accessories.control.battery_charging":"\u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043D\u0435","accessories.control.battery_notchargeable":"\u041D\u0435 \u0441\u0435 \u0437\u0430\u043F\u043B\u0430\u0449\u0430","accessories.control.battery_notcharging":"\u041D\u0435 \u0441\u0435 \u0437\u0430\u0440\u0435\u0436\u0434\u0430","accessories.control.brightness":"\u042F\u0440\u043A\u043E\u0441\u0442","accessories.control.closed":"\u0417\u0430\u0442\u0432\u043E\u0440\u0435\u043D\u043E","accessories.control.closing":"\u0417\u0430\u0442\u0432\u0430\u0440\u044F\u043D\u0435","accessories.control.cool":"\u041E\u0445\u043B\u0430\u0436\u0434\u0430\u043D\u0435","accessories.control.default_room":"\u0421\u0442\u0430\u044F \u043F\u043E \u043F\u043E\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043D\u0435","accessories.control.default_running_time":"Default Running Time","accessories.control.dehumidifying":"Dehumidifying","accessories.control.detected":"Detected","accessories.control.drag_here":"Drag Here","accessories.control.fan":"\u0412\u0435\u043D\u0442\u0438\u043B\u0430\u0442\u043E\u0440","accessories.control.heat":"\u0417\u0430\u0442\u043E\u043F\u043B\u044F\u043D\u0435","accessories.control.home":"Home","accessories.control.humidifying":"Humidifying","accessories.control.jammed":"\u0417\u0430\u0441\u0435\u0434\u043D\u0430\u043B","accessories.control.light":"\u041E\u0441\u0432\u0435\u0442\u043B\u0435\u043D\u0438\u0435","accessories.control.locked":"\u0417\u0430\u043A\u043B\u044E\u0447\u0435\u043D\u043E","accessories.control.mute":"Mute","accessories.control.night":"Night","accessories.control.not_detected":"Not Detected","accessories.control.not_mute":"On","accessories.control.off":"\u0418\u0437\u043A\u043B\u044E\u0447\u0435\u043D\u043E","accessories.control.on":"\u0412\u043A\u043B\u044E\u0447\u0435\u043D\u043E","accessories.control.open":"\u041E\u0442\u0432\u043E\u0440\u0435\u043D\u043E","accessories.control.opening":"\u041E\u0442\u0432\u0430\u0440\u044F\u043D\u0435","accessories.control.rotation_speed":"\u0421\u043A\u043E\u0440\u043E\u0441\u0442 \u043D\u0430 \u0432\u044A\u0440\u0442\u0435\u043D\u0435","accessories.control.running":"Running","accessories.control.speaker_volume":"\u0421\u0438\u043B\u0430 \u043D\u0430 \u0437\u0432\u0443\u043A\u0430","accessories.control.stopped":"\u0421\u043F\u0440\u044F\u043D\u043E","accessories.control.target":"\u0426\u0435\u043B","accessories.control.target_humidity":"Target Humidity","accessories.control.target_temperature":"\u0416\u0435\u043B\u0430\u043D\u0430 \u0442\u0435\u043C\u043F\u0435\u0440\u0430\u0442\u0443\u0440\u0430","accessories.control.triggered":"\u0417\u0430\u0434\u0435\u0439\u0441\u0442\u0432\u0430\u043D","accessories.control.unknown":"\u041D\u0435\u043F\u043E\u0437\u043D\u0430\u0442","accessories.control.unlocked":"\u041E\u0442\u043A\u043B\u044E\u0447\u0435\u043D\u043E","accessories.control_disabled":"Homebridge \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435\u0442\u043E \u043D\u0430 \u0430\u043A\u0441\u0435\u0441\u043E\u0430\u0440\u0438\u0442\u0435 \u0435 \u0438\u0437\u043A\u043B\u044E\u0447\u0435\u043D\u043E","accessories.hide_this_accessory":"\u0421\u043A\u0440\u0438\u0439 \u0430\u043A\u0441\u0435\u0441\u043E\u0430\u0440\u0430","accessories.message_for_more_information":"\u0437\u0430 \u043F\u043E\u0432\u0435\u0447\u0435 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F.","accessories.message_must_use_insecure_mode":"\u0417\u0430 \u0434\u0430 \u0443\u043F\u0440\u0430\u0432\u043B\u044F\u0432\u0430\u0442\u0435 \u0432\u0430\u0448\u0438\u0442\u0435 \u0430\u043A\u0441\u0435\u0441\u043E\u0430\u0440\u0438 Homebridge \u0442\u0440\u044F\u0431\u0432\u0430 \u0434\u0430 \u0440\u0430\u0431\u043E\u0442\u0438 \u0432 insecure \u0440\u0435\u0436\u0438\u043C.","accessories.message_please_see":"\u041C\u043E\u043B\u044F \u0432\u0438\u0436","accessories.name":"\u0418\u043C\u0435","accessories.room_name":"\u0418\u043C\u0435 \u043D\u0430 \u0441\u0442\u0430\u044F","accessories.rooms_not_appear_in_homekit":"The rooms you create here will not appear in HomeKit, they are only for the organisation of accessories in the Homebridge UI.","accessories.settings_link":"You can access the Homebridge Settings at any time from the cog icon in the side menu.","accessories.show_on_dashboard":"Show in dashboard widget","accessories.title_accessories":"\u0410\u043A\u0441\u0435\u0441\u043E\u0430\u0440\u0438","backup.backup_delete_failed":"Backup deletion failed. See logs for details.","backup.backup_download_failed":"Backup download failed.","backup.backup_exceeds_max_size":"Backup ({{ backupSize }}) exceeds maximum restore file size of {{ maxBackupSizeText }}","backup.backup_help_one":"Download a backup archive of your entire Homebridge environment. This will backup the entire contents of your Homebridge storage directory which you can later restore on any platform capable of running Homebridge UI.","backup.backup_help_two":"Plugins not hosted on npm, or plugins installed directly from GitHub will not be backed up or restored.","backup.backup_restored":"Backup Archive Restored","backup.backup_warning":"Backup archives contain sensitive information and should not be shared with others.","backup.button_restore_backup":"Restore Backup","backup.label_choose_backup_file_to_restore":"Choose backup file to restore\u2026","backup.label_uploading":"Uploading\u2026","backup.load_error":"Failed to load config backup.","backup.now":"Now","backup.restore_failed":"Restore Failed","backup.restore_help_one":"Restore a backup archive you previously made using the Homebridge UI. Your Homebridge config, cached accessories, HomeKit pairings and Homebridge UI user accounts will be restored. Any Homebridge plugins you had installed will also be downloaded from the npm registry.","backup.restore_help_two":"You will need to login to the Homebridge UI after doing a restore using the credentials from the restored instance.","backup.restore_max_size":"You can restore a backup archive up to {{ maxBackupSizeText }} in size.","backup.restore_warning":"Restoring from a backup will irreversibly overwrite the current Homebridge configuration.","backup.scheduled_backup_time":"A full backup of the Homebridge instance is automatically created every day at {{ backupTime }} and kept for {{ dayCount }} days.","backup.title_backup":"Backup","child_bridge.about":"Homebridge allows you to run your plugin's platform or accessory as an isolated child bridge. This can improve the general responsiveness and reliability of Homebridge.","child_bridge.bridge_connect":"Connect to HomeKit","child_bridge.bridge_settings":"Child Bridge Config","child_bridge.bridges":"HomeKit Bridges","child_bridge.bridges_paired":"Each child bridge platform or accessory will need to be paired with HomeKit separately.","child_bridge.config.debug":"Debug Mode","child_bridge.config.description":"These fields are not required, but can be used to override the HomeKit configuration for this bridge.","child_bridge.config.firmware":"Firmware Version","child_bridge.config.header":"Configuration","child_bridge.config.manufacturer":"Manufacturer","child_bridge.config.model":"Model","child_bridge.config.name":"Name","child_bridge.must_configure_plugin":"You need to configure this plugin before you can manage its bridge settings.","child_bridge.reset_accessories":"Reset Accessories","child_bridge.reset_accessories_list":"Choose from which child bridges you want to reset the accessories below:","child_bridge.restart":"Restart Child Bridges","child_bridge.restart_homebridge":"Restart Homebridge to finish setting up this child bridge.","child_bridge.restart_plural":"Restart Child Bridges","child_bridge.return_to_pair":"Return to this screen after Homebridge has restarted to view the pairing QR code.","child_bridge.select_type":"Select which platforms or accessories you want to run as a child bridge","child_bridge.setup":"Set Up Child Bridge","child_bridge.start":"Start Child Bridge","child_bridge.start_plural":"Start Child Bridges","child_bridge.stop":"Stop Child Bridge","child_bridge.stop_plural":"Stop Child Bridges","child_bridge.wiki_link":"Learn more about child bridges","config.config_accessory_must_be_array":"\u0430\u043A\u0441\u0435\u0441\u043E\u0430\u0440\u0438\u0442\u0435 \u0442\u0440\u044F\u0431\u0432\u0430 \u0434\u0430 \u0441\u0430 \u0432 \u0441\u043A\u043E\u0431\u0438 []","config.config_bridge_missing":"\u041B\u0438\u043F\u0441\u0432\u0430\u0442 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u0437\u0430 \u0431\u0440\u0438\u0434\u0436\u0430","config.config_invalid_json":"\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0442\u043E\u0440\u0430 \u0441\u044A\u0434\u044A\u0440\u0436\u0430 \u043D\u0435\u0432\u0430\u043B\u0438\u0434\u0435\u043D JSON","config.config_platform_must_be_array":"\u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0438\u0442\u0435 \u0442\u0440\u044F\u0431\u0432\u0430 \u0434\u0430 \u0441\u0430 \u0432 \u0441\u043A\u043E\u0431\u0438 []","config.config_username_error":"\u041F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B\u0441\u043A\u043E\u0442\u043E \u0438\u043C\u0435 \u043D\u0430 \u0431\u0440\u0438\u0434\u0436\u0430 \u0442\u0440\u044F\u0431\u0432\u0430 \u0434\u0430 \u0435 6 \u0434\u0432\u043E\u0439\u043A\u0438 \u0448\u0435\u0441\u0442\u043D\u0430\u0434\u0435\u0441\u0435\u0442\u0438\u0447\u043D\u0438 \u0437\u043D\u0430\u043A\u0430, \u0440\u0430\u0437\u0434\u0435\u043B\u0435\u043D\u0438 \u0441 \u0434\u0432\u043E\u0435\u0442\u043E\u0447\u0438\u0435 (A-F 0-9)","config.error_blocks_objects":"All {{ type }} blocks must be objects.","config.error_blocks_type":"All {{ type }} blocks must contain the {{ type }} attribute.","config.error_string_array":"Each item in the {{ key }} array must be a string.","config.error_string_type":"The {{ type }} attribute must be a string.","config.failed_to_save_config":"\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044F\u0442\u0430 \u043D\u0435 \u043C\u043E\u0436\u0430 \u0434\u0430 \u0441\u0435 \u0437\u0430\u043F\u0430\u043C\u0435\u0442\u0438","config.restore.confirm":"\u041D\u0430\u0442\u0438\u0441\u043D\u0435\u0442\u0435 \u0437\u0430\u043F\u0430\u043C\u0435\u0442\u0438 \u0437\u0430 \u0434\u0430 \u043F\u043E\u0442\u0432\u044A\u0440\u0434\u0438\u0442\u0435, \u0447\u0435 \u0438\u0441\u043A\u0430\u0442\u0435 \u0434\u0430 \u0432\u044A\u0437\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u0435 \u0442\u043E\u0432\u0430 \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u043E \u043A\u043E\u043F\u0438\u0435.","config.restore.copy_to_editor":"\u041A\u043E\u043F\u0438\u0440\u0430\u0439 \u0432 \u0440\u0435\u0434\u0430\u043A\u0442\u043E\u0440","config.restore.no_backups":"\u041D\u044F\u043C\u0430 \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u0438 \u043A\u043E\u043F\u0438\u044F","config.restore.title_restore_homebridge_backup":"\u0412\u044A\u0437\u0441\u0442\u0430\u043D\u043E\u0432\u0438 \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u043E \u043A\u043E\u043F\u0438\u0435 \u043D\u0430 \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0442\u043E\u0440\u0430 \u0437\u0430 Homebridge","config.restore.toast_backups_deleted":"\u0412\u0441\u0438\u0447\u043A\u0438 \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u0438 \u043A\u043E\u043F\u0438\u044F \u0441\u0430 \u0438\u0437\u0442\u0440\u0438\u0442\u0438","config.title_backup_loaded":"\u0420\u0435\u0437\u0435\u0440\u0432\u043D\u043E\u0442\u043E \u043A\u043E\u043F\u0438\u0435 \u0435 \u0437\u0430\u0440\u0435\u0434\u0435\u043D\u043E","form.button_cancel":"\u041E\u0442\u043A\u0430\u0437","form.button_close":"\u0417\u0430\u0442\u0432\u043E\u0440\u0438","form.button_delete":"\u0418\u0437\u0442\u0440\u0438\u0439","form.button_disable":"Disable","form.button_download":"Download","form.button_edit":"\u041F\u0440\u043E\u043C\u0435\u043D\u0438","form.button_enable":"Enable","form.button_hide":"Hide","form.button_lock":"Lock","form.button_more_info":"More Info","form.button_remove":"Remove","form.button_reset":"Reset","form.button_restore":"\u0412\u044A\u0437\u0441\u0442\u0430\u043D\u043E\u0432\u0438","form.button_save":"\u0417\u0430\u043F\u0430\u0437\u0438","form.button_show":"Show","form.button_unlock":"Unlock","form.button_unpair":"Unpair","form.label_invalid":"Config validation failed - you can still save your changes.","form.label_invalid_strict":"Config validation failed - please review the form before saving.","form.label_valid":"Config validation passed.","form.select.auto":"Automatic (Use Browser Settings)","login.button_login":"\u0412\u043F\u0438\u0441\u0432\u0430\u043D\u0435","login.invalid_credentials":"\u0413\u0440\u0435\u0448\u043D\u043E \u043F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B\u0441\u043A\u043E \u0438\u043C\u0435 \u0438\u043B\u0438 \u043F\u0430\u0440\u043E\u043B\u0430","login.label_2fa_code":"Two Factor Authentication Code","login.label_password":"\u041F\u0430\u0440\u043E\u043B\u0430","login.label_username":"\u041F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B\u0441\u043A\u043E \u0418\u043C\u0435","login.message_invalid_2fa_code":"The code entered is incorrect or has expired.","logs.download.error":"Failed to download log file.","logs.download_warning":"Homebridge log files may contain personal information, passwords or access tokens. Please review the log file and remove any sensitive information before sharing with others.","logs.log_file_truncated":"Log file truncated.","logs.title_download_log_file":"Download Log File","logs.title_truncate_log_file":"Delete Logs","logs.truncate.error":"Failed to truncate log file.","logs.truncate_log_warning":"This action will irreversibly delete your existing Homebridge logs. Are you sure you want to continue?","menu.config_json_editor":"JSON Config","menu.docker.restart_container":"\u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0439 \u041A\u043E\u043D\u0442\u0435\u0439\u043D\u0435\u0440\u0430","menu.docker.startup_script":"\u0421\u0442\u0430\u0440\u0442\u043E\u0432 \u0441\u043A\u0440\u0438\u043F\u0442","menu.docker.terminal":"\u0422\u0435\u0440\u043C\u0438\u043D\u0430\u043B","menu.hbrestart.confirm_hb":"Restart Homebridge","menu.hbrestart.confirm_ui":"Restart HB Service & UI","menu.hbrestart.title":"Restart Homebridge","menu.label_accessories":"\u0410\u043A\u0441\u0435\u0441\u043E\u0430\u0440\u0438","menu.label_plugins":"\u0414\u043E\u0431\u0430\u0432\u043A\u0438","menu.label_settings":"Settings","menu.label_settings_advanced":"UI Advanced Settings","menu.label_status":"\u0421\u0442\u0430\u0442\u0443\u0441","menu.linux.label_logs":"Logs","menu.linux.label_restart_server":"\u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0439 \u0421\u044A\u0440\u0432\u044A\u0440\u0430","menu.linux.label_shutdown_server":"\u0418\u0437\u043A\u043B\u044E\u0447\u0438 \u0421\u044A\u0440\u0432\u044A\u0440\u0430","menu.linux.label_terminal":"\u0422\u0435\u0440\u043C\u0438\u043D\u0430\u043B","menu.restart.title":"Power Options","menu.settings.title":"Settings","menu.tooltip_logout":"\u0418\u0437\u043B\u0435\u0437","menu.tooltip_restart":"\u0420\u0435\u0441\u0442\u0430\u0440\u0442","menu.tooltip_user_accounts":"\u041F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B\u0438","menu.tooltip_view_logs":"\u041F\u043E\u043A\u0430\u0436\u0438 \u041B\u043E\u0433\u043E\u0432\u0435\u0442\u0435","platform.docker.container_restarted":"Docker \u043A\u043E\u043D\u0442\u0435\u0439\u043D\u0435\u0440\u0430 \u0435 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043D","platform.docker.must_use_hashbang":"\u0421\u043A\u0440\u0438\u043F\u0442\u044A\u0442 \u0442\u0440\u044F\u0431\u0432\u0430 \u0434\u0430 \u0438\u0437\u043F\u043E\u043B\u0437\u0432\u0430 #!/bin/sh hashbang.","platform.docker.restart_required":"\u0422\u0440\u044F\u0431\u0432\u0430 \u0434\u0430 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0442\u0435 \u0442\u043E\u0437\u0438 Docker \u043A\u043E\u043D\u0442\u0435\u0439\u043D\u0435\u0440 \u0437\u0430 \u0434\u0430 \u0432\u043B\u0435\u0437\u043D\u0430\u0442 \u0432 \u0441\u0438\u043B\u0430 \u043F\u0440\u043E\u043C\u0435\u043D\u0438\u0442\u0435.","platform.docker.run_with_restart":"\u0423\u0432\u0435\u0440\u0435\u0442\u0435 \u0441\u0435, \u0447\u0435 \u0438\u043C\u0430\u0442\u0435 \u0440\u0430\u0431\u043E\u0442\u0435\u0449 Docker \u043A\u043E\u043D\u0442\u0435\u0439\u043D\u0435\u0440 \u0441 <code>--restart=always</code>","platform.docker.script_help":"\u0422\u043E\u0437\u0438 \u0441\u043A\u0440\u0438\u043F\u0442 \u0449\u0435 \u0441\u0435 \u0438\u0437\u043F\u044A\u043B\u043D\u044F\u0432\u0430 \u0432\u0441\u0435\u043A\u0438 \u043F\u044A\u0442, \u043A\u043E\u0433\u0430\u0442\u043E \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430 Docker \u043A\u043E\u043D\u0442\u0435\u0439\u043D\u0435\u0440\u0430. \u041C\u043E\u0436\u0435 \u0434\u0430 \u0438\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u0442\u0435 \u0442\u043E\u0432\u0430, \u0437\u0430 \u0434\u0430 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0442\u0435 \u0432\u0441\u0438\u0447\u043A\u0438 \u0434\u043E\u043F\u044A\u043B\u043D\u0438\u0442\u0435\u043B\u043D\u0438 \u043F\u0430\u043A\u0435\u0442\u0438, \u043E\u0442 \u043A\u043E\u0438\u0442\u043E \u0432\u0430\u0448\u0438\u0442\u0435 \u043F\u043B\u044A\u0433\u0438\u043D\u0438 \u043C\u043E\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043D\u0443\u0436\u0434\u0430\u044F\u0442 \u043A\u0430\u0442\u043E ffmpeg \u0438\u043B\u0438 libpcap-dev.","platform.docker.script_saved":"\u0421\u0442\u0430\u0440\u0442\u043E\u0432\u0438\u044F \u0441\u043A\u0440\u0438\u043F\u0442 \u0435 \u0437\u0430\u043F\u0430\u043C\u0435\u0442\u0435\u043D","platform.docker.server_long_time":"\u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043D\u0435to \u043D\u0430 \u0441\u044A\u0440\u0432\u044A\u0440\u0430 \u043E\u0442\u043D\u0435\u043C\u0430 \u043C\u043D\u043E\u0433\u043E \u0432\u0440\u0435\u043C\u0435. \u041C\u043E\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043D\u0430\u043B\u043E\u0436\u0438 \u0434\u0430 \u0432\u043A\u043B\u044E\u0447\u0438\u0442\u0435 Docker \u043A\u043E\u043D\u0442\u0435\u0439\u043D\u0435\u0440\u0430 \u0440\u044A\u0447\u043D\u043E.","platform.docker.title_restarting":"\u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043D\u0435 \u043D\u0430 Docker \u043A\u043E\u043D\u0442\u0435\u0439\u043D\u0435\u0440\u0430","platform.linux.long_time":"\u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043D\u0435\u0442\u043E \u043D\u0430 \u0441\u044A\u0440\u0432\u044A\u0440\u0430 \u043E\u0442\u043D\u0435\u043C\u0430 \u043C\u043D\u043E\u0433\u043E \u0432\u0440\u0435\u043C\u0435. \u041C\u043E\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043D\u0430\u043B\u043E\u0436\u0438 \u0434\u0430 \u0432\u043A\u043B\u044E\u0447\u0438\u0442\u0435 \u0441\u044A\u0440\u0432\u044A\u0440\u0430 \u0440\u044A\u0447\u043D\u043E.","platform.linux.restart":"\u041C\u043E\u043B\u044F \u0438\u0437\u0447\u0430\u043A\u0430\u0439\u0442\u0435. \u0421\u0442\u0440\u0430\u043D\u0438\u0446\u0430\u0442\u0430 \u0449\u0435 \u0441\u0435 \u043F\u0440\u0435\u0437\u0430\u0440\u0435\u0434\u0438 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E, \u043A\u043E\u0433\u0430\u0442\u043E Homebridge \u0435 \u043E\u0442\u043D\u043E\u0432\u043E \u043E\u043D\u043B\u0430\u0439\u043D.","platform.linux.restarting_server":"\u0421\u044A\u0440\u0432\u044A\u0440\u0430 \u0441\u0435 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430","platform.linux.server_restart_error":"\u0412\u044A\u0437\u043D\u0438\u043A\u043D\u0430 \u0433\u0440\u0435\u0448\u043A\u0430 \u043F\u0440\u0438 \u0438\u0437\u043F\u0440\u0430\u0449\u0430\u043D\u0435\u0442\u043E \u043D\u0430 \u043A\u043E\u043C\u0430\u043D\u0434\u0430\u0442\u0430 \u0437\u0430 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043D\u0435 \u043D\u0430 \u0441\u044A\u0440\u0432\u044A\u0440\u0430","platform.linux.server_restarted":"\u0421\u044A\u0440\u0432\u044A\u0440\u0430 \u0435 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043D","platform.linux.server_taking_long_time":"\u041E\u0442\u043D\u0435\u043C\u0430 \u043C\u043D\u043E\u0433\u043E \u0432\u0440\u0435\u043C\u0435 \u043D\u0430 \u0441\u044A\u0440\u0432\u044A\u0440\u0430 \u0437\u0430 \u0434\u0430 \u0431\u044A\u0434\u0435 \u043E\u0442\u043D\u043E\u0432\u043E \u043E\u043D\u043B\u0430\u0439\u043D","platform.linux.server_will_power_down":"\u0421\u044A\u0440\u0432\u044A\u0440\u0430 \u0449\u0435 \u0441\u0435 \u0438\u0437\u043A\u043B\u044E\u0447\u0438 \u0441\u043A\u043E\u0440\u043E.","platform.linux.shutting_down_server":"\u0421\u044A\u0440\u0432\u044A\u0440\u0430 \u0441\u0435 \u0438\u0437\u043A\u043B\u044E\u0447\u0432\u0430","platform.version.restart_required":"Homebridge UI v{{ uiVersion }} has been installed, but the server service is still running v{{ serverVersion }}.","platform.version.service_restart_required":"Restart Required","plugins.bridge.action_error":"Failed to {{ action }} child bridge(s).","plugins.button_homepage":"Plugin Homepage","plugins.button_set_up":"Set Up","plugins.button_settings":"\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438","plugins.button_uninstall":"\u0414\u0435\u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0439","plugins.button_update":"\u0410\u043A\u0442\u0443\u0430\u043B\u0438\u0437\u0438\u0440\u0430\u0439","plugins.compat.are_you_sure":"Are you sure you want to continue anyway?","plugins.compat.hb_node_too_low":"{{ packageName }} v{{ latestVersion }} requires Node.js v{{ minVersion }} or later. You are currently running Node.js {{ installedVersion }}.","plugins.compat.hb_too_low":"The {{ pluginName }} plugin recommends running on Homebridge v{{ minVersion }} or later. You are currently running Homebridge v{{ installedVersion }}.","plugins.compat.node_first":"Please upgrade Node.js before updating {{ packageName }}.","plugins.compat.node_link":"How To Update Node.js","plugins.compat.node_too_low":"The {{ pluginName }} plugin recommends running on Node.js v{{ minVersion }} or later. You are currently running Node.js {{ installedVersion }}.","plugins.compat.title":"Compatibility Check","plugins.config.load_error":"Failed to load plugin config.","plugins.config.must_be_array":"Plugin config must be an array.","plugins.config.must_be_array_objects":"Plugin config must be an array of objects.","plugins.config.must_be_object":"Config block must be an object.","plugins.config.name_property":'Accessory must have a valid "name" attribute',"plugins.config.please_fix":"Please fix validation errors before adding a new block.","plugins.config.remove_error":"Failed to remove plugin config.","plugins.disable.error":"Failed to disable plugin.","plugins.donate.button_not_verified":"Not Verified","plugins.donate.button_verified":"\u041F\u0440\u043E\u0432\u0435\u0440\u0435\u043D","plugins.donate.message_1":"As more users install their plugins through the Homebridge UI, they are less likely to visit the projects' GitHub page where the ways to support a developer would typically be displayed.","plugins.donate.message_2":"Adding donation links directly in the Homebridge UI ensures users know how to support Homebridge developers if they wish to do so.","plugins.donate.tile_donate_to":"Donate to {{ author }}","plugins.enable.error":"Failed to enable plugin.","plugins.manage.all_versions":"All versions","plugins.manage.child_bridge_restart":"Child bridge restarted successfully.","plugins.manage.child_bridge_restart_failed":"Plugin restart failed, please restart Homebridge manually.","plugins.manage.confirm_disable":"Are you sure you want to disable {{ pluginName }}?","plugins.manage.confirm_disable_accessory_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen and removed from HomeKit.","plugins.manage.confirm_disable_accessory_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and HomeKit. The accessories will lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_disable_platform_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen but remain in HomeKit with a 'No Response' label.","plugins.manage.confirm_disable_platform_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and become controllable again in HomeKit. The accessories will not lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_enable":"Are you sure you want to enable {{ pluginName }}?","plugins.manage.disable":"Disable","plugins.manage.enable":"Enable","plugins.manage.information":"Plugin Information","plugins.manage.install":"\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0439","plugins.manage.installed":"\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D","plugins.manage.json_config":"JSON Config","plugins.manage.manage_version":"Manage Version","plugins.manage.manual_update_command":"To upgrade the package run open a Node.js command prompt as an Administrator and run the following commands:","plugins.manage.manual_update_required":"Manual Update Required","plugins.manage.online_updates":"Online updates are not supported on Windows. You will need to upgrade Homebridge UI manually after stopping the Homebridge service.","plugins.manage.plugin_logs":"Plugin Logs","plugins.manage.release_notes":"Release Notes","plugins.manage.scoped.error":"An error occurred. You can download the logs below.","plugins.manage.scoped.info":"For more information about scoped plugins and why to switch, see the wiki page {{ link }}.","plugins.manage.scoped.process":"This process will not affect your Homebridge/HomeKit accessories. You will not be able to cancel the process once it has started. It will:","plugins.manage.scoped.switch":"Switch To Scoped Plugin","plugins.manage.scoped.windows":"Online updates are not supported on Windows. You will need to install the new plugin and uninstall the old plugin manually.","plugins.manage.scoped.windows_service":'You should <span class="font-weight-bold">not</span> restart Homebridge until both steps are complete.',"plugins.manage.select_version":"Select the version to install","plugins.manage.thanks_for_updating":"\u0411\u043B\u0430\u0433\u043E\u0434\u0430\u0440\u0438\u043C, \u0447\u0435 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0442\u0435 \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0430\u0442\u0430 \u0432\u0435\u0440\u0441\u0438\u044F \u043D\u0430 {{ pluginName }}.","plugins.manage.uninstall":"\u0414\u0435\u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0439","plugins.manage.uninstalled":"\u0418\u0437\u0442\u0440\u0438\u0442","plugins.manage.unverified_message":"Unverified Homebridge plugins indicate that they haven't undergone the review process by the Homebridge project team. Lack of verification does not necessarily imply inefficacy or safety concerns. Authors might have opted not to seek verification for various reasons.","plugins.manage.unverified_subtitle":"{{ pluginName }} is not verified","plugins.manage.unverified_title":"Unverified Plugins","plugins.manage.update":"\u0410\u043A\u0442\u0443\u0430\u043B\u0438\u0437\u0438\u0440\u0430\u0439","plugins.manage.updated":"\u0410\u043A\u0442\u0443\u0430\u043B\u0438\u0437\u0438\u0440\u0430\u043D","plugins.manage.verified_message":"Homebridge plugins that are marked as verified have been reviewed by the Homebridge project team to ensure they meet various requirements that encourage best practices and a trouble-free user experience.","plugins.manage.verified_subtitle":"{{ pluginName }} is verified","plugins.manage.verified_title":"Verified Plugins","plugins.node_update.continue":"Continue","plugins.placeholder_search_first":"Use the search bar above to find your first plugin","plugins.placeholder_search_plugin":"\u0422\u044A\u0440\u0441\u0435\u0442\u0435 \u0434\u043E\u0431\u0430\u0432\u043A\u0438, \u043A\u043E\u0438\u0442\u043E \u0434\u0430 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0442\u0435\u2026","plugins.settings.custom.homebridge-gsh.label_account_linked":"Account Linked","plugins.settings.custom.homebridge-gsh.label_link_account":"Link Account","plugins.settings.custom.homebridge-gsh.label_unlink_account":"Unlink Account","plugins.settings.custom.homebridge-gsh.message_about":"The Homebridge Google Smart Home plugin allows you to control your Homebridge accessories from a Google Home enabled smart speaker or the Google Home mobile app.","plugins.settings.custom.homebridge-gsh.message_account_link_required":"To enable this functionality you must sign in with your Google or GitHub account; make sure you use the same account when adding the Homebridge action in the Google Home mobile app.","plugins.settings.custom.homebridge-gsh.message_homebridge_restart_required":"Homebridge requires restarting for the changes to take effect.","plugins.settings.custom.homebridge-gsh.message_invalid_token":"Invalid account linking token in config.json","plugins.settings.deconz.dump_no_exist":"Homebridge deCONZ dump file does not exist yet.","plugins.settings.hue.dump_no_exist":"Homebridge Hue dump file does not exist yet.","plugins.settings.label_open_config_editor":"Open Config Editor","plugins.settings.message_consult_documentation":"Please consult the plugin documentation for instructions on how to correctly configure this plugin.","plugins.settings.message_manual_config_required":"This plugin must be configured manually using the Homebridge UI Config Editor.","plugins.settings.plugin_config_saved":"\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044F\u0442\u0430 \u043D\u0430 \u0434\u043E\u0431\u0430\u0432\u043A\u0430\u0442\u0430 \u0435 \u0437\u0430\u043F\u0430\u043C\u0435\u0442\u0435\u043D\u0430","plugins.settings.restart_required":"\u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0439 Homebridge \u0437\u0430 \u0434\u0430 \u0432\u043B\u0435\u0437\u043D\u0430\u0442 \u0432 \u0441\u0438\u043B\u0430 \u043F\u0440\u043E\u043C\u0435\u043D\u0438\u0442\u0435.","plugins.settings.title_settings":"\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438","plugins.status_disabled":"Disabled","plugins.status_installed":"\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D","plugins.toast_failed_to_load_plugin_schema":"Failed to load plugin config schema.","plugins.toast_failed_to_load_plugins":"\u041D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u043E \u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043D\u0435 \u043D\u0430 \u0434\u043E\u0431\u0430\u0432\u043A\u0438\u0442\u0435","plugins.uninstall_bridge_error":"Failed to remove child bridge.","plugins.uninstall_remove_config_required":"If you are permanently removing this plugin, make sure you remove any config for this plugin in the config.json before restarting Homebridge.","plugins.uninstall_remove_confirmation":"Are you sure you want to uninstall {{ pluginName }}?","plugins.uninstall_remove_plugin_config":"Remove plugin config?","plugins.uninstall_unpair_child_bridge":"Unpair plugin child bridge?","plugins.uninstall_unpair_child_bridges":"Unpair {{ count }} plugin child bridges?","reset.accessory_reset":"\u041D\u0443\u043B\u0438\u0440\u0430\u043D\u0435 \u043D\u0430 \u0430\u043A\u0441\u0435\u0441\u043E\u0430\u0440 \u0437\u0430 Homebridge","reset.action_is_irreversible":"\u0422\u043E\u0432\u0430 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0435 \u043D\u0435\u043E\u0431\u0440\u0430\u0442\u0438\u043C\u043E. \u041C\u043E\u043B\u044F, \u043F\u0440\u043E\u0447\u0435\u0442\u0435\u0442\u0435 \u0432\u043D\u0438\u043C\u0430\u0442\u0435\u043B\u043D\u043E, \u043F\u0440\u0435\u0434\u0438 \u0434\u0430 \u043F\u0440\u043E\u0434\u044A\u043B\u0436\u0438\u0442\u0435.","reset.bridges.desc":"If you are having trouble pairing Homebridge, an external accessory or a child bridge to HomeKit, you may need to unpair it from HomeKit to start again.","reset.bridges.empty":"You have no bridges to unpair from HomeKit.","reset.bridges.title":"Bridges","reset.bridges_all.desc":"Unpair all bridges from HomeKit. This includes the main Homebridge bridge, child bridges and bridges for external accessories.","reset.bridges_all.list_1":"This will unpair the Homebridge bridge, all child bridges and bridges for external accessories from HomeKit.","reset.bridges_all.list_2":"Note that your accessories will continue to show in HomeKit as no response, until the bridges are manually removed from HomeKit. You can do this in the Home app, by accessing Home Settings \u2192 Home Hubs & Bridges \u2192 {Bridge} \u2192 Remove Bridge from Home.","reset.bridges_all.list_3":"All your Homebridge to HomeKit accessories, scenes and automations will need to be reconfigured after the unpairing.","reset.bridges_all.list_4":"The pin for pairing your Homebridge bridge to HomeKit will be changed. You can see the new values in your Homebridge config after the unpairing.","reset.bridges_all.title":"Unpair All Bridges","reset.bridges_single.desc":"Unpair a single bridge from HomeKit. This may be a child bridge or a bridge for an external accessory like a camera or TV.","reset.bridges_single.list_1":"When unpairing a bridge, any accessories published by this bridge will be removed from the Homebridge cache.","reset.bridges_single.list_2":"The accessories will become stale in HomeKit (showing no response). To remove them, you will need to manually remove this bridge from HomeKit. You can do this in the Home app from the Home Settings section.","reset.bridges_single.list_3":"You can then attempt to pair the bridge again if required.","reset.bridges_single.title":"Unpair Single Bridge","reset.cached_accessory_removed":"Cached accessory removed.","reset.clear_cache_all.desc":"Remove all accessories from the cache.","reset.clear_cache_all.list_1":"When clicking on the remove button below, Homebridge will restart and all your existing accessories will be removed from Homebridge and HomeKit.","reset.clear_cache_all.list_2":"All associated HomeKit data will also be removed, this includes room associations, scenes and automations that this accessory uses.","reset.clear_cache_all.list_3":"After Homebridge restarts, your plugins will re-add any accessories as if the plugin was being installed for the first time.","reset.clear_cache_all.title":"Remove All Accessories","reset.clear_cache_bridge.desc":"Remove all accessories published by a bridge from the cache.","reset.clear_cache_bridge.empty":"You have no bridges from which to remove accessories.","reset.clear_cache_bridge.list_1":"This function can be used to reset a plugin's existing accessories in HomeKit. They will be removed from Homebridge/HomeKit and then re-added by the plugin as new accessories.","reset.clear_cache_bridge.list_2":"The child bridge's pairing details and status will remain the same.","reset.clear_cache_bridge.title":"Remove Bridge Accessories","reset.clear_cache_single.desc":"Remove a single accessory from the cache.","reset.clear_cache_single.list_1":"Some plugins don't clean up after themselves properly! If an accessory that you no longer have in Homebridge is still being displayed in HomeKit, you can remove it from the cache.","reset.clear_cache_single.list_2":"This function can be used to reset an existing accessory in HomeKit. It will be removed from Homebridge/HomeKit and then re-added by the plugin as a new accessory.","reset.clear_cache_single.list_3":"When removing an accessory from the cache, all its associated HomeKit data will be removed. This includes any associated scenes and automations that use this accessory.","reset.clear_cache_single.list_4":"Accessories can only be removed when Homebridge is not running. Homebridge will automatically restart when clicking on each of the remove buttons below. If you need to remove multiple accessories, please be patient and allow Homebridge to restart between each removal.","reset.clear_cache_single.title":"Remove Single Accessory","reset.delete_failed":"Failed to delete accessory.","reset.delete_success":"Restarting Homebridge and clearing accessory cache.","reset.error_message":"Accessory cache could not be loaded. You may not have any cached accessories.","reset.failed_to_reset":"\u041D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u043E \u043D\u0443\u043B\u0438\u0440\u0430\u043D\u0435 \u043D\u0430 Homebridge. \u0412\u0438\u0436 \u043B\u043E\u0433.","reset.force_restart_hb_help_text":"Use this action to force the hb-service service to do a full restart.","reset.remove_cached_accessories_single_empty":"You have no cached accessories to remove.","reset.removing_cached_accessory_please_wait":"Removing accessory from cache, please wait\u2026","restart.child_bridge_list":"Please restart these child bridges for the changes to apply:","restart.child_bridges":"Please restart the plugin's child bridges for the changes to apply.","restart.homebridge":"Please restart Homebridge for the changes to apply.","restart.label_restart_command_executed":"\u041A\u043E\u043C\u0430\u043D\u0434\u0430\u0442\u0430 \u0437\u0430 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043D\u0435 \u0435 \u0438\u0437\u043F\u044A\u043B\u043D\u0435\u043D\u0430","restart.please_wait_while_server_restarts":"\u041C\u043E\u043B\u044F, \u0438\u0437\u0447\u0430\u043A\u0430\u0439\u0442\u0435, \u0442\u0430\u0437\u0438 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E \u0449\u0435 \u0441\u0435 \u043F\u0440\u0435\u043D\u0430\u0441\u043E\u0447\u0438, \u043A\u043E\u0433\u0430\u0442\u043E \u0441\u044A\u0440\u0432\u044A\u0440\u044A\u0442 \u043E\u0442\u043D\u043E\u0432\u043E \u0435 \u043E\u043D\u043B\u0430\u0439\u043D.","restart.server_is_taking_long_time_to_restart":"\u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043D\u0435\u0442\u043E \u043D\u0430 \u0441\u044A\u0440\u0432\u044A\u0440\u0430 \u043E\u0442\u043D\u0435\u043C\u0430 \u043C\u043D\u043E\u0433\u043E \u0432\u0440\u0435\u043C\u0435. \u041C\u043E\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043D\u0430\u043B\u043E\u0436\u0438 \u0434\u0430 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0442\u0435 \u0443\u0441\u043B\u0443\u0433\u0430\u0442\u0430 Homebridge \u0440\u044A\u0447\u043D\u043E.","restart.service_ready":"Homebridge Server Ready","restart.title_restart":"\u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043D\u0435 \u043D\u0430 Homebridge","restart.toast_server_restart_error":"\u0412\u044A\u0437\u043D\u0438\u043A\u043D\u0430 \u0433\u0440\u0435\u0448\u043A\u0430 \u043F\u0440\u0438 \u0438\u0437\u043F\u0440\u0430\u0449\u0430\u043D\u0435 \u043D\u0430 \u043A\u043E\u043C\u0430\u043D\u0434\u0430\u0442\u0430 \u0437\u0430 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043D\u0435 \u043D\u0430 \u0441\u044A\u0440\u0432\u044A\u0440\u0430","restart.toast_server_restart_timeout":"\u041E\u0442\u043D\u0435\u043C\u0430 \u043C\u043D\u043E\u0433\u043E \u0432\u0440\u0435\u043C\u0435 \u043D\u0430 \u0441\u044A\u0440\u0432\u044A\u0440\u0430 \u0437\u0430 \u0434\u0430 \u0431\u044A\u0434\u0435 \u043E\u0442\u043D\u043E\u0432\u043E \u043E\u043D\u043B\u0430\u0439\u043D","restart.toast_server_restarted":"\u0421\u044A\u0440\u0432\u044A\u0440\u0430 \u0435 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043D","restart.ui_online":"Homebridge UI Online","rpi.throttled.currently_message":"This Raspberry Pi is reporting it is currently under-voltage; please check it is connected to an appropriate power supply. Under-voltage can result in system instability and SD card corruption.","rpi.throttled.previously_message":"This Raspberry Pi has reported an under-voltage event since it was last rebooted; please check it is connected to an appropriate power supply.","rpi.throttled.undervoltage_title":"Under Voltage","settings.cache.desc":"Homebridge maintains accessories in cache so they aren't removed and re-added to HomeKit each time Homebridge restarts. Sometimes this cache can become out of sync with the actual accessories in Homebridge.","settings.cache.title":"Accessories","settings.changes.saved":"Your changes have been saved and require a restart to take effect.","settings.datetime.incorrect":"The date and time on your Homebridge server seem to be incorrect. This may cause unexpected issues. Click here for more information.","settings.display.blue":"Blue","settings.display.bluegrey":"Blue Grey","settings.display.brown":"Brown","settings.display.cyan":"Cyan","settings.display.dark":"Dark","settings.display.deep_purple":"Deep Purple","settings.display.green":"Green","settings.display.grey":"Grey","settings.display.indigo":"Indigo","settings.display.lang":"Language","settings.display.light":"Light","settings.display.lighting_mode":"Lighting Mode","settings.display.login_wallpaper":"Login Wallpaper","settings.display.login_wallpaper_desc":"A custom login wallpaper can be set by adding a <code>ui-wallpaper.jpg</code> file to your Homebridge storage directory, or by providing a full path to a local image file here.","settings.display.orange":"Orange","settings.display.pink":"Pink","settings.display.purple":"Purple","settings.display.red":"Red","settings.display.teal":"Teal","settings.display.temp_units":"Temperature Units","settings.display.temp_units.c":"Celsius (\xB0C)","settings.display.temp_units.f":"Fahrenheit (\xB0F)","settings.display.theme":"Theme","settings.general.title_display":"Display","settings.general.title_general":"General","settings.mdns_advertiser":"mDNS Advertiser","settings.mdns_advertiser_exp":"experimental","settings.mdns_advertiser_help":"If you have trouble connecting Homebridge to HomeKit (all accessories showing 'No Response' in the Home app), try using one of the alternate mDNS advertisers.","settings.mdns_advertiser_not_connected":"Not Connected","settings.mdns_advertiser_rec":"recommended","settings.network.label_interface_name":"Interface Name","settings.network.label_ip_address":"IP Address","settings.network.message_network_interface":"If no network interfaces are selected, Homebridge will attempt to automatically determine which interfaces to advertise.","settings.network.port_hb":"Homebridge Port","settings.network.port_hb_desc":"The port number to run the Homebridge bridge on. This must be between 1025 and 65533, and should not be the same as the Homebridge UI port.","settings.network.port_ui":"UI Port","settings.network.port_ui_desc":"The port number to run the Homebridge UI on.","settings.network.title_network":"Network","settings.network.title_network_interfaces":"Network Interfaces","settings.service.debug_tooltip":"Some plugins require you to set the DEBUG environment variable to enable debug level logging.","settings.service.node_tooltip":"Node.js runtime options for this process. This should be kept blank unless you know what you are doing.","settings.startup.debug":"Homebridge Debug Mode","settings.startup.debug_desc_v1":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge as well as all child bridges. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.debug_desc_v2":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge. The setting for child bridges can be found in the child bridge configuration from the plugins page. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.insecure":"Homebridge 'Insecure' Mode","settings.startup.insecure_desc":"To control your accessories via the Homebridge UI you must be running Homebridge in insecure mode.","settings.startup.keep_accessories":"Keep Accessories Of Uninstalled Plugins","settings.startup.keep_accessories_desc":"If enabled, accessories of platform plugins will remain in the cache even after the plugin is uninstalled. This can be useful if you plan to reinstall the plugin later.","settings.title_startup_options":"Startup & Environment Options","settings.unpair_bridge.load_error":"Paired bridges could not be loaded.","settings.unpair_bridge.unpair_error":"Failed to unpair bridge.","setup.button_get_started":"Get Started","setup.create_account":"Create Account","setup.create_account_reason":"Password authentication to your Homebridge admin web interface must be configured. Even if Homebridge is accessible only in your local network, it is still important to protect it from unrestricted access.","setup.open_dashboard":"Open Dashboard","setup.welcome_to_homebridge":"Welcome to Homebridge",setup_wizard_message_complete_message:"The setup procedure is complete and you're now ready to start using Homebridge.",setup_wizard_message_complete_title:"Congratulations!",setup_wizard_message_restore:"Restore From Backup","status.code_scan":"\u0421\u043A\u0430\u043D\u0438\u0440\u0430\u0439\u0442\u0435, \u0437\u0430 \u0434\u0430 \u0434\u043E\u0431\u0430\u0432\u0438\u0442\u0435 \u043A\u044A\u043C Homekit","status.cpu.load":"\u0418\u0437\u043F\u043E\u043B\u0437\u0432\u0430","status.cpu.temp":"\u0422\u0435\u043C\u043F.","status.cpu.title_cpu":"\u041F\u0440\u043E\u0446\u0435\u0441\u043E\u0440","status.credits.title":"Credits","status.homebridge.checking":"\u041F\u0440\u0435\u0432\u0435\u0440\u044F\u0432\u0430 \u0441\u0435 \u0437\u0430 \u0430\u043A\u0442\u0443\u0430\u043B\u0438\u0437\u0430\u0446\u0438\u044F\u2026","status.homebridge.up_to_date":"\u0410\u043A\u0442\u0443\u0430\u043B\u0435\u043D","status.memory.label_available":"\u0421\u0432\u043E\u0431\u043E\u0434\u043D\u0430","status.memory.label_total":"\u041E\u0431\u0449\u043E","status.memory.title_memory":"\u0420\u0430\u043C \u041F\u0430\u043C\u0435\u0442","status.network.received_per_second":"Received","status.network.sent_per_second":"Sent","status.network.title_network":"Network Activity","status.plugin_out_of_date":"\u0414\u043E\u0431\u0430\u0432\u043A\u0430\u0442\u0430 \u0435 \u043E\u0441\u0442\u0430\u0440\u044F\u043B\u0430","status.plugins_out_of_date":"\u0414\u043E\u0431\u0430\u0432\u043A\u0438\u0442\u0435 \u0441\u0430 \u043E\u0441\u0442\u0430\u0440\u0435\u043B\u0438","status.services.label_not_running":"\u041D\u0435 \u0440\u0430\u0431\u043E\u0442\u0438","status.services.label_running":"\u0420\u0430\u0431\u043E\u0442\u0438","status.services.updates":"Update Centre","status.uptime.title_uptime":"\u0412\u0440\u0435\u043C\u0435 \u043D\u0430 \u0440\u0430\u0431\u043E\u0442\u0430","status.widget.accessories.choose_accessories":"Choose the accessories to display in this widget from the Accessories tab.","status.widget.add.label_pairing_code":"Pairing Code","status.widget.bridge.restart_error":"Failed to restart child bridge.","status.widget.clock":"Clock","status.widget.clock_dateformat":"Date Format","status.widget.clock_timeformat":"Time Format","status.widget.font_size":"Font Size","status.widget.font_weight":"Font Weight","status.widget.hide_on_mobile":"Hide in compact view (mobile displays)","status.widget.homebridge_logs":"Homebridge Logs","status.widget.info":"System Information","status.widget.info.config_path":"Config Path","status.widget.info.disabled":"Disabled","status.widget.info.docker":"Docker","status.widget.info.glibc_message":"This message indicates that your operating system does not support newer versions of Node.js. To resolve this and be able to install updated versions of Node.js in the future, you will need to update your operating system to a more recent version.","status.widget.info.glibc_title":"OS Update","status.widget.info.hostname":"Hostname","status.widget.info.ipv4":"IPv4","status.widget.info.ipv6":"IPv6","status.widget.info.no":"No","status.widget.info.node_unsupp":"Unsupported","status.widget.info.node_unsupp_message":"You are running a version of Node.js that is not officially supported by Homebridge. You should consider changing to a supported version.","status.widget.info.node_unsupp_title":"Unsupported Node Version","status.widget.info.node_update_message":"Homebridge requires Node.js installed on your system to run. From time to time, you will need to update the Node.js runtime to enable support for new features. Homebridge (and verified plugins) support all current Active and Maintenance LTS releases of Node.js.","status.widget.info.node_update_title":"Node Update","status.widget.info.nodejs_path":"Node.js Path","status.widget.info.nodejs_version":"Node.js Version","status.widget.info.os":"OS","status.widget.info.plugin_path":"Plugin Path","status.widget.info.service_mode":"Service Mode","status.widget.info.service_user":"User","status.widget.info.servicemode_message":"Standalone mode is no longer recommended. Setting up Homebridge and Homebridge UI with hb-service has the same benefits of standalone mode but is much easier to setup and maintain.","status.widget.info.servicemode_title":"Service Mode","status.widget.info.storage_path":"Storage Path","status.widget.info.synology_package":"Synology Package","status.widget.info.timezone":"Timezone","status.widget.info.yes":"Yes","status.widget.network.history_items":"History Items","status.widget.network.items":"items","status.widget.network.network_interface":"Network Interface","status.widget.network.none_selected":"None selected in settings - using default.","status.widget.network.refresh_interval":"Refresh Interval","status.widget.network.refresh_note":"Refresh the page after saving for changes to take effect.","status.widget.network.seconds":"seconds","status.widget.qr_paired":"Paired","status.widget.qr_unpaired":"Not Paired","status.widget.show_hide":"Show/Hide Widgets","status.widget.title_manage_widget":"Manage Widget","status.widget.uptime.label_process":"Process","status.widget.uptime.label_server":"Server","status.widget.weather.label_config_required_help":"Please select your city in the widget settings.","status.widget.weather.label_search_for_your_city":"Search for your city:","status.widget.weather.title_weather":"Weather","support.dev.api":"Homebridge API","support.dev.api_hap":"HAP-NodeJS API","support.dev.api_hap_sub":"HAP-NodeJS is an implementation of the HomeKit Accessory Server as specified in the HomeKit Accessory Protocol (HAP), which is defined by Apple as part of the HomeKit Framework.","support.dev.api_sub":"Homebridge is a lightweight Node.js server you can run on your home network to emulate the HomeKit Accessory Protocol (HAP).","support.dev.item_swagger":"Swagger Docs","support.dev.item_swagger_sub":"The Homebridge REST API allows you to interact with your Homebridge server using HTTP requests.","support.dev.template":"Plugin Template Repo","support.dev.template_sub":"A template Homebridge plugin that can be used as a base to help you get started developing your own plugin.","support.dev.title":"Developers","support.dev.verified":"Verified By Homebridge","support.dev.verified_sub":"The Verified By Homebridge program allows plugin developers to get their plugins reviewed and endorsed by the Homebridge project team.","support.links.discord":"Discord Server","support.links.discord_sub":"Join the Homebridge Discord chat server to chat with other users and developers.","support.links.documentation":"Documentation","support.links.documentation_sub":"The Homebridge documentation provides a wealth of information on how to get started with Homebridge and common issue resolutions.","support.links.issue":"Report An Issue","support.links.issue_sub":"If you are experiencing an issue with Homebridge, please open a new issue on GitHub. This should not be used for issues with specific plugins.","support.links.reddit":"Reddit Community","support.links.reddit_sub":"The Homebridge subreddit is a great place to share your Homebridge setup and ask for help.","support.links.title":"Useful Links","support.title":"Support","toast.no_auth":"Only administrators may access the requested page.","toast.title_error":"\u0413\u0440\u0435\u0448\u043A\u0430","toast.title_success":"\u0423\u0441\u043F\u0435\u0448\u043D\u043E","toast.title_warning":"\u0412\u043D\u0438\u043C\u0430\u043D\u0438\u0435","users.button_add_new_user":"\u0414\u043E\u0431\u0430\u0432\u0438 \u043D\u043E\u0432 \u043F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B","users.button_add_user":"\u0414\u043E\u0431\u0430\u0432\u0438 \u043F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B","users.label_admin_user":"\u0410\u0434\u043C\u0438\u043D\u0438\u0441\u0442\u0440\u0430\u0442\u043E\u0440\u0441\u043A\u0438 \u043F\u0440\u0430\u0432\u0430?","users.label_confirm_password":"\u041F\u043E\u0442\u0432\u044A\u0440\u0434\u0438 \u043F\u0430\u0440\u043E\u043B\u0430\u0442\u0430","users.label_full_name":"\u041F\u044A\u043B\u043D\u043E \u0438\u043C\u0435","users.label_new_password":"\u041D\u043E\u0432\u0430 \u043F\u0430\u0440\u043E\u043B\u0430","users.label_password":"\u041F\u0430\u0440\u043E\u043B\u0430","users.label_username":"\u0418\u043C\u0435","users.setup_2fa":"Setup 2FA","users.setup_2fa_activate_error":"An error occurred activating 2FA","users.setup_2fa_cannot_setup_2fa":"Cannot Setup 2FA","users.setup_2fa_disable":"Disable 2FA","users.setup_2fa_disable_current_password":"Enter your current password to disable two factor authentication:","users.setup_2fa_disable_success":"Two factor authentication has been disabled.","users.setup_2fa_enable":"Enable 2FA","users.setup_2fa_enable_error":"An error occurred setting up 2FA","users.setup_2fa_enabled_success":"Two factor authentication has been enabled.","users.setup_2fa_enter_code":"Enter the code from your authenticator app:","users.setup_2fa_scan_qr_code":"Scan the QR code below with your authenticator app:","users.setup_2fa_server_time_out":"Your server's clock is out by {{ timeDiffError }} ms. The maximum allowed is +/-5000 ms.","users.setup_2fa_warning":"Two Factor Authentication requires your Homebridge server to have a very accurate date and time to login. If your server does not have the ability to keep time accurately you should not enable 2FA or risk being locked out of the Homebridge UI.","users.title_add_user":"\u0414\u043E\u0431\u0430\u0432\u0438 \u043F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B","users.title_edit_user":"\u041F\u0440\u043E\u043C\u0435\u043D\u0438 \u043F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B","users.title_users":"\u041F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B\u0438","users.toast_added_new_user":"\u0414\u043E\u0431\u0430\u0432\u0435\u043D \u0435 \u043D\u043E\u0432 \u043F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B","users.toast_failed_to_add_user":"\u041D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u043E \u0434\u043E\u0431\u0430\u0432\u044F\u043D\u0435 \u043D\u0430 \u043F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B","users.toast_failed_to_delete_user":"\u041D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u043E \u0438\u0437\u0442\u0440\u0438\u0432\u0430\u043D\u0435 \u043D\u0430 \u043F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B\u044F","users.toast_updated_user":"\u041F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B\u044F \u0435 \u043E\u0431\u043D\u043E\u0432\u0435\u043D","users.toast_user_deleted":"\u041F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B\u044F \u0435 \u0438\u0437\u0442\u0440\u0438\u0442"}});var Hs=y((jd,ra)=>{ra.exports={"accessories.button_add_room":"Afegir Habitaci\xF3","accessories.button_hidden_hide":"Amaga amagats","accessories.button_hidden_show":"Mostra amagats","accessories.control.auto":"Auto","accessories.control.away":"Absent","accessories.control.battery_charging":"Carregant","accessories.control.battery_notchargeable":"No Carregable","accessories.control.battery_notcharging":"No Carregant","accessories.control.brightness":"Brillantor","accessories.control.closed":"Tancat","accessories.control.closing":"Tancant","accessories.control.cool":"Fred","accessories.control.default_room":"Habitaci\xF3 per defecte","accessories.control.default_running_time":"Temps d'execuci\xF3 per defecte","accessories.control.dehumidifying":"Deshumidificant","accessories.control.detected":"Detected","accessories.control.drag_here":"Arrossegar i deixar anar aqu\xED","accessories.control.fan":"Ventilador","accessories.control.heat":"Calor","accessories.control.home":"Casa","accessories.control.humidifying":"Humidificant","accessories.control.jammed":"Encallat","accessories.control.light":"Llum","accessories.control.locked":"Bloquejat","accessories.control.mute":"Silenci","accessories.control.night":"Nit","accessories.control.not_detected":"Not Detected","accessories.control.not_mute":"On","accessories.control.off":"Apagat","accessories.control.on":"Engegat","accessories.control.open":"Obert","accessories.control.opening":"Obrint","accessories.control.rotation_speed":"Velocitat de rotaci\xF3","accessories.control.running":"Funcionant","accessories.control.speaker_volume":"Volum","accessories.control.stopped":"Aturat","accessories.control.target":"Objectiu","accessories.control.target_humidity":"Humitat Objectiu","accessories.control.target_temperature":"Temperatura Objectiu","accessories.control.triggered":"Activat","accessories.control.unknown":"Desconegut","accessories.control.unlocked":"Desbloquejat","accessories.control_disabled":"Control d'accessoris Homebridge desactivat","accessories.hide_this_accessory":"Amaga aquest accessori","accessories.message_for_more_information":"per a m\xE9s informaci\xF3.","accessories.message_must_use_insecure_mode":"Per controlar els teus accessoris has d'executar Homebridge en la manera insegur","accessories.message_please_see":"Si us plau, mira","accessories.name":"Nom","accessories.room_name":"Nom de l'habitaci\xF3","accessories.rooms_not_appear_in_homekit":"Les habitacions creades aqu\xED no apareixeran en HomeKit, nom\xE9s s\xF3n per a organitzar els accessoris en Homebridge UI.","accessories.settings_link":"Pots accedir a la configuraci\xF3 de Homebridge en qualsevol moment des del men\xFA principal","accessories.show_on_dashboard":"Mostra al widget del tauler","accessories.title_accessories":"Accessoris","backup.backup_delete_failed":"Backup deletion failed. See logs for details.","backup.backup_download_failed":"Error al descarregar l'arxiu de c\xF2pia de seguretat","backup.backup_exceeds_max_size":"La c\xF2pia de seguretat ({{ backupSize }}) supera la mida m\xE0xima del fitxer de restauraci\xF3 de {{ maxBackupSizeText }}","backup.backup_help_one":"Descarregar un arxiu de c\xF2pia de seguretat de tot l'entorn de Homebridge. Aix\xF2 far\xE0 una c\xF2pia de seguretat de tot el contingut del seu directori d'emmagatzematge de Homebridge que m\xE9s tard podr\xE0 restaurar en qualsevol plataforma capa\xE7 d'executar Homebridge UI","backup.backup_help_two":"Els plugins no allotjats en npm, o els plugins instal\xB7lats directament de GitHub no seran recolzats o restaurats.","backup.backup_restored":"Arxiu de c\xF2pia de seguretat restaurat","backup.backup_warning":"Els arxius de c\xF2pia de seguretat contenen informaci\xF3 confidencial i no s'han de compartir amb els altres.","backup.button_restore_backup":"Restaurar c\xF2pia de seguretat","backup.label_choose_backup_file_to_restore":"Triar arxiu de c\xF2pia de seguretat per restaurar\u2026","backup.label_uploading":"Carregant\u2026","backup.load_error":"Failed to load config backup.","backup.now":"Now","backup.restore_failed":"Error al restaurar","backup.restore_help_one":"Restaurar una c\xF2pia de seguretat que pr\xE8viament vas fer usant Homebridge UI. La teva configuraci\xF3 de Homebridge, accessoris en mem\xF2ria cau, emparellaments de HomeKit i comptes d'usuari de Homebridge UI seran restaurats. Qualsevol plugin de Homebridge que hi hagis instal\xB7lat tamb\xE9 ser\xE0 descarregat de l'registre npm.","backup.restore_help_two":"Necessitar\xE0s accedir de nou a Homebridge UI despr\xE9s de realitzar la restauraci\xF3 i utilitzar les credencials de la inst\xE0ncia restaurada.","backup.restore_max_size":"Pots restaurar un arxiu de c\xF2pia de seguretat amb una mida de fins a {{ maxBackupSizeText }}.","backup.restore_warning":"Restaurar una c\xF2pia de seguretat \xE9s un proc\xE9s irreversible, sobreescriur\xE0 la configuraci\xF3 actual de Homebridge.","backup.scheduled_backup_time":"Es crear\xE0 una c\xF2pia de seguretat completa de tu inst\xE0ncia de Homebridge cada dia a les {{ backupTime }} i estar\xE0 disponible durant {{ dayCount }} dies.","backup.title_backup":"Backup","child_bridge.about":"Homebridge permet executar la plataforma o accessori del plugin com un pont fill a\xEFllat. Aix\xF2 pot ajudar a millorar la capacitat general de resposta i la fiabilitat de Homebridge.","child_bridge.bridge_connect":"Connectar a HomeKit","child_bridge.bridge_settings":"Configuraci\xF3 del pont","child_bridge.bridges":"HomeKit Bridges","child_bridge.bridges_paired":"Cada pont fill de plataforma o accessori ha de ser aparellat a HomeKit per separat.","child_bridge.config.debug":"Mode de Debug","child_bridge.config.description":"Aquests camps no s\xF3n obligatoris, per\xF2 es poden utilitzar per anul\xB7lar la configuraci\xF3 de HomeKit per a aquest pont.","child_bridge.config.firmware":"Versi\xF3 de Firmware","child_bridge.config.header":"Configuraci\xF3","child_bridge.config.manufacturer":"Fabricant","child_bridge.config.model":"Model","child_bridge.config.name":"Nom","child_bridge.must_configure_plugin":"Cal configurar aquest plugin per poder modificar la configuraci\xF3 de pont.","child_bridge.reset_accessories":"Reset Accessories","child_bridge.reset_accessories_list":"Choose from which child bridges you want to reset the accessories below:","child_bridge.restart":"Reiniciar el pont fill","child_bridge.restart_homebridge":"Reinicia Homebridge per acabar de configurar aquest pont fill.","child_bridge.restart_plural":"Reiniciar els ponts fills","child_bridge.return_to_pair":"Torna a aquesta pantalla despr\xE9s de reiniciar Homebridge per veure el codi QR d'aparellament.","child_bridge.select_type":"Selecciona quins plataformes o accessoris desitges executar com un pont fill","child_bridge.setup":"Configurar pont fill","child_bridge.start":"Iniciar pont fill","child_bridge.start_plural":"Iniciar ponts fills","child_bridge.stop":"Aturar pont fill","child_bridge.stop_plural":"Aturar ponts fills","child_bridge.wiki_link":"Obteniu m\xE9s informaci\xF3 sobre els ponts fills","config.config_accessory_must_be_array":"accessoris han de ser una col\xB7lecci\xF3 []","config.config_bridge_missing":"Falta configuraci\xF3 del pont","config.config_invalid_json":"La configuraci\xF3 cont\xE9 JSON no v\xE0lid","config.config_platform_must_be_array":"plataformes han de ser una col\xB7lecci\xF3 []","config.config_username_error":"El nom d'usuari de el pont ha de tenir 6 parells de car\xE0cters hexadecimals (A-F 0-9) separats per dos punts.","config.error_blocks_objects":"All {{ type }} blocks must be objects.","config.error_blocks_type":"All {{ type }} blocks must contain the {{ type }} attribute.","config.error_string_array":"Each item in the {{ key }} array must be a string.","config.error_string_type":"The {{ type }} attribute must be a string.","config.failed_to_save_config":"Error al guardar la configuraci\xF3","config.restore.confirm":"Fes clic a Guardar per confirmar la restauraci\xF3 d'aquesta c\xF2pia de seguretat.","config.restore.copy_to_editor":"Copiar a l'editor","config.restore.no_backups":"Sense c\xF2pies de seguretat","config.restore.title_restore_homebridge_backup":"Restaurar c\xF2pia de seguretat de configuraci\xF3 de Homebridge","config.restore.toast_backups_deleted":"Totes les c\xF2pies de seguretat eliminades","config.title_backup_loaded":"C\xF2pia de seguretat carregada","form.button_cancel":"Cancel\xB7lar","form.button_close":"Tancar","form.button_delete":"Eliminar","form.button_disable":"Desactivar","form.button_download":"Descarregar","form.button_edit":"Editar","form.button_enable":"Activar","form.button_hide":"Amagar","form.button_lock":"Bloquejar","form.button_more_info":"M\xE9s Informaci\xF3","form.button_remove":"Eliminar","form.button_reset":"Restablir","form.button_restore":"Restaurar","form.button_save":"Guardar","form.button_show":"Show","form.button_unlock":"Desbloquejar","form.button_unpair":"Unpair","form.label_invalid":"Config validation failed - you can still save your changes.","form.label_invalid_strict":"Config validation failed - please review the form before saving.","form.label_valid":"Config validation passed.","form.select.auto":"Automatic (Use Browser Settings)","login.button_login":"Iniciar Sesi\xF3n","login.invalid_credentials":"Usuari o contrasenya incorrecte","login.label_2fa_code":"Codi 2FA","login.label_password":"Contrasenya","login.label_username":"Usuari","login.message_invalid_2fa_code":"Usuario o contrase\xF1a incorrecto","logs.download.error":"Failed to download log file.","logs.download_warning":"L'arxiu de logs de Homebridge pot contenir informaci\xF3 personal, contrasenyes o tokens d'acc\xE9s. Si us plau revisi l'arxiu de log i elimini qualsevol informaci\xF3 sensible abans de compartir-lo amb els altres.","logs.log_file_truncated":"Arxiu de logs truncat.","logs.title_download_log_file":"Descarregar arxiu de logs","logs.title_truncate_log_file":"Truncar arxiu de logs","logs.truncate.error":"Failed to truncate log file.","logs.truncate_log_warning":"Aquesta acci\xF3 \xE9s irreversible i eliminar\xE0 els logs existents de Homebridge. Est\xE0s segur que vols continuar?","menu.config_json_editor":"JSON Config","menu.docker.restart_container":"Reiniciar Contenidor","menu.docker.startup_script":"Script d'inici","menu.docker.terminal":"Terminal","menu.hbrestart.confirm_hb":"Reiniciar Homebridge","menu.hbrestart.confirm_ui":"Reiniciar HB Service & UI","menu.hbrestart.title":"Reiniciar Homebridge","menu.label_accessories":"Accessoris","menu.label_plugins":"Plugins","menu.label_settings":"Ajustos","menu.label_settings_advanced":"Ajustos Avan\xE7ats de la IU","menu.label_status":"Estat","menu.linux.label_logs":"Logs","menu.linux.label_restart_server":"Reiniciar Servidor","menu.linux.label_shutdown_server":"Apagar Servidor","menu.linux.label_terminal":"Terminal","menu.restart.title":"Reiniciar","menu.settings.title":"Ajustos","menu.tooltip_logout":"Tancar Sessi\xF3","menu.tooltip_restart":"Reiniciar","menu.tooltip_user_accounts":"Comptes d'usuari","menu.tooltip_view_logs":"Veure els logs","platform.docker.container_restarted":"Contenidor Docker reiniciat","platform.docker.must_use_hashbang":"L'script necessita la cap\xE7alera #!/bin/sh","platform.docker.restart_required":"Necessitar\xE0s reiniciar el contenidor Docker perqu\xE8 els canvis tinguin efecte.","platform.docker.run_with_restart":"Assegura't que estiguis executant el contenidor Docker amb <code>--restart=always</code>","platform.docker.script_help":"Aquest script s'executa cada vegada que el contenidor de Docker es torni a arrencar. Pots utilitzar-lo per instal\xB7lar paquets extra que els teus plugins necessitin com ffmpeg o libpcap-dev.","platform.docker.script_saved":"Script d'inici guardat","platform.docker.server_long_time":"Reiniciar el servidor est\xE0 trigant molt. Potser hagis de iniciar el contenidor de Docker de forma manual.","platform.docker.title_restarting":"Reinici del contenidor Docker","platform.linux.long_time":"Reininiciar el servidor est\xE0 trigant molt. Potser hagis de iniciar-lo de forma manual.","platform.linux.restart":"Si us plau, espera, aquesta p\xE0gina et redirigeix a Homebridge quan es torna a arrencar.","platform.linux.restarting_server":"Reiniciant servidor","platform.linux.server_restart_error":"Un error ha ocorregut a l'enviar el comando de reinici al servidor","platform.linux.server_restarted":"Servidor reiniciat","platform.linux.server_taking_long_time":"El servidor est\xE0 trigant molt a tornar a estar disponible","platform.linux.server_will_power_down":"El servidor s'apagar\xE0 aviat.","platform.linux.shutting_down_server":"Apagant el servidor","platform.version.restart_required":"Homebridge UI v{{uiVersion}} ha estat instal\xB7lat, per\xF2 el servei encara segueix executant la v{{serverVersion}}.","platform.version.service_restart_required":"Reinici Obligatori","plugins.bridge.action_error":"Failed to {{ action }} child bridge(s).","plugins.button_homepage":"P\xE0gina del plugin","plugins.button_set_up":"Configurar","plugins.button_settings":"Ajustos","plugins.button_uninstall":"Desinstal\xB7lar","plugins.button_update":"Actualitzar","plugins.compat.are_you_sure":"Est\xE0s segur que vols continuar igualment?","plugins.compat.hb_node_too_low":"{{ packageName }} v{{ latestVersion }} requereix Node.js v{{ minVersion }} o superior. Actualment est\xE0s executant Node.js {{ installedVersion }}.","plugins.compat.hb_too_low":"El plugin {{pluginName}} recomana executar-se en Homebridge v{{ minVersion }} o superior. Actualment est\xE0s executant Homebridge v{{ installedVersion }}.","plugins.compat.node_first":"Si us plau actualitza Node.js abans d'actualitzar {{ packageName }}.","plugins.compat.node_link":"Com Actualitzar Node.js","plugins.compat.node_too_low":"El plugin {{pluginName}} recomana executar-se en Node.js v{{ minVersion }} o superior. Actualment est\xE0s executant Node.js {{ installedVersion }}.","plugins.compat.title":"Comprovaci\xF3 de Compatibilitat","plugins.config.load_error":"Failed to load plugin config.","plugins.config.must_be_array":"Plugin config must be an array.","plugins.config.must_be_array_objects":"Plugin config must be an array of objects.","plugins.config.must_be_object":"Config block must be an object.","plugins.config.name_property":'Accessory must have a valid "name" attribute',"plugins.config.please_fix":"Please fix validation errors before adding a new block.","plugins.config.remove_error":"Failed to remove plugin config.","plugins.disable.error":"Failed to disable plugin.","plugins.donate.button_not_verified":"No verificat","plugins.donate.button_verified":"Verificat","plugins.donate.message_1":"A mesura que m\xE9s usuaris instal\xB7len els seus plugins a trav\xE9s de la interf\xEDcie d'usuari d'Homebridge, \xE9s menys probable que visitin la p\xE0gina GitHub dels projectes on normalment es mostrarien les maneres de donar suport a un desenvolupador.","plugins.donate.message_2":"Afegir enlla\xE7os de donaci\xF3 directament a la interf\xEDcie d'usuari de Homebridge garanteix que els usuaris s\xE0piguen donar suport als desenvolupadors de Homebridge si ho desitgen.","plugins.donate.tile_donate_to":"Donar a {{ author }}","plugins.enable.error":"Failed to enable plugin.","plugins.manage.all_versions":"Totes les versions","plugins.manage.child_bridge_restart":"Pont fill reiniciat amb \xE8xit","plugins.manage.child_bridge_restart_failed":"Error al reiniciar el plugin, reinicia Homebridge manualment.","plugins.manage.confirm_disable":"Est\xE0s segur que vols desactivar {{ pluginName }}?","plugins.manage.confirm_disable_accessory_1":"Tots els accessoris exposats per aquest plugin s'eliminaran de la pantalla d'accessoris de la interf\xEDcie d'usuari de Homebridge i s'eliminaran de HomeKit.","plugins.manage.confirm_disable_accessory_2":"Quan tornis a habilitar aquest plugin, els accessoris tornaran a apar\xE8ixer a la interf\xEDcie d'usuari de Homebridge i a HomeKit. Els accessoris perdran les seves dades d'HomeKit (com escenes i automatitzacions relacionades).","plugins.manage.confirm_disable_platform_1":"Tots els accessoris exposats per aquest plugin s'eliminaran de la pantalla d'accessoris de la interf\xEDcie d'usuari de Homebridge, per\xF2 romandran a HomeKit amb l'etiqueta 'Sense resposta'.","plugins.manage.confirm_disable_platform_2":"Quan tornis a habilitar aquest plugin, els accessoris tornaran a apar\xE8ixer a la interf\xEDcie d'usuari de Homebridge i tornaran a ser controlables a HomeKit. Els accessoris no perdran les seves dades d'HomeKit (com escenes i automatitzacions relacionades).","plugins.manage.confirm_enable":"Est\xE0s segur que vols activar {{ pluginName }}?","plugins.manage.disable":"Desactivar","plugins.manage.enable":"Activar","plugins.manage.information":"Informaci\xF3 del plugin","plugins.manage.install":"Instal\xB7lar","plugins.manage.installed":"Instal\xB7lat","plugins.manage.json_config":"Configuraci\xF3 JSON","plugins.manage.manage_version":"Gestionar la versi\xF3","plugins.manage.manual_update_command":"Per actualitzar el paquet, executa un indicador d'ordres Node.js com a administrador i executa les ordres seg\xFCents:","plugins.manage.manual_update_required":"Reinici manual requerit","plugins.manage.online_updates":"Les actualitzacions en l\xEDnia no estan suportades en Windows. Necessitar\xE0s actualitzar manualment la Homebridge UI despr\xE9s d'aturar el servei de Homebridge.","plugins.manage.plugin_logs":"Logs del plugin","plugins.manage.release_notes":"Notes de la versi\xF3","plugins.manage.scoped.error":"An error occurred. You can download the logs below.","plugins.manage.scoped.info":"For more information about scoped plugins and why to switch, see the wiki page {{ link }}.","plugins.manage.scoped.process":"This process will not affect your Homebridge/HomeKit accessories. You will not be able to cancel the process once it has started. It will:","plugins.manage.scoped.switch":"Switch To Scoped Plugin","plugins.manage.scoped.windows":"Online updates are not supported on Windows. You will need to install the new plugin and uninstall the old plugin manually.","plugins.manage.scoped.windows_service":'You should <span class="font-weight-bold">not</span> restart Homebridge until both steps are complete.',"plugins.manage.select_version":"Tria la versi\xF3 que vols instal\xB7lar","plugins.manage.thanks_for_updating":"Gr\xE0cies per instal\xB7lar la versi\xF3 {{ targetVersion }} de {{ pluginName }}.","plugins.manage.uninstall":"Desinstal\xB7lar","plugins.manage.uninstalled":"Desinstal\xB7lat","plugins.manage.unverified_message":"Els plugins de Homebridge no verificats indiquen que no han estat sotmesos al proc\xE9s de revisi\xF3 per part de l'equip del projecte Homebridge. Cap verificaci\xF3 no implica la inefic\xE0cia o problemes de seguretat. \xC9s possible que els autors hagin optat per no sol\xB7licitar la verificaci\xF3 per diversos motius.","plugins.manage.unverified_subtitle":"{{ pluginName }} no est\xE0 verificat","plugins.manage.unverified_title":"Unverified Plugins","plugins.manage.update":"Actualitzar","plugins.manage.updated":"Actualitzat","plugins.manage.verified_message":"L'equip del projecte Homebridge ha revisat els plugins d'Homebridge que estan marcats com a verificats per assegurar-se que compleixen diversos requisits que fomenten les millors pr\xE0ctiques i una experi\xE8ncia d'usuari sense problemes.","plugins.manage.verified_subtitle":"{{ pluginName }} est\xE0 verificat","plugins.manage.verified_title":"Plugins Verificats","plugins.node_update.continue":"Continuar","plugins.placeholder_search_first":"Utiliza la barra de cerca de dalt per trobar el teu primer plugin","plugins.placeholder_search_plugin":"Cercar plugins per instal\xB7lar\u2026","plugins.settings.custom.homebridge-gsh.label_account_linked":"Compte vinculada","plugins.settings.custom.homebridge-gsh.label_link_account":"Vincular compte","plugins.settings.custom.homebridge-gsh.label_unlink_account":"Desvincular compte","plugins.settings.custom.homebridge-gsh.message_about":"El plugin Homebridge Google Smart Home et permet controlar les accessoris de Homebridge des d'un altaveu intel\xB7ligent Google Home o des de l'aplicaci\xF3 m\xF2bil Google Home.","plugins.settings.custom.homebridge-gsh.message_account_link_required":"Per activar aquesta funcionalitat has d'iniciar sessi\xF3 amb el teu compte Google o GitHub; assegura't que fas servir el mateix compte quan estiguis afegint l'acci\xF3 de Homebridge en l'aplicaci\xF3 m\xF2bil Google Home.","plugins.settings.custom.homebridge-gsh.message_homebridge_restart_required":"Homebridge necessita reiniciar perqu\xE8 els canvis tinguin efecte.","plugins.settings.custom.homebridge-gsh.message_invalid_token":"Invalid account linking token in config.json","plugins.settings.deconz.dump_no_exist":"Homebridge deCONZ dump file does not exist yet.","plugins.settings.hue.dump_no_exist":"Homebridge Hue dump file does not exist yet.","plugins.settings.label_open_config_editor":"Obrir editor de configuraci\xF3","plugins.settings.message_consult_documentation":"Si us plau consulte la documentaci\xF3 del plugin per a m\xE9s informaci\xF3 i instruccions de com configurar aquest plugin correctament.","plugins.settings.message_manual_config_required":"Aquest plugin s'ha de configurar manualment usant l'Editor de Homebridge UI.","plugins.settings.plugin_config_saved":"Configuraci\xF3 del plugin guardada","plugins.settings.restart_required":"Reiniciar Homebridge per aplicar els canvis.","plugins.settings.title_settings":"Ajustos","plugins.status_disabled":"Desactivat","plugins.status_installed":"Instal\xB7lat","plugins.toast_failed_to_load_plugin_schema":"Failed to load plugin config schema.","plugins.toast_failed_to_load_plugins":"Error al carregar els plugins","plugins.uninstall_bridge_error":"Failed to remove child bridge.","plugins.uninstall_remove_config_required":"Si eliminar\xE0s aquest plugin de forma permanent, assegura't de treure qualsevol configuraci\xF3 d'aquest plugin a l'arxiu config.json abans de reiniciar Homebridge.","plugins.uninstall_remove_confirmation":"Est\xE0s segur que vols desinstal\xB7lar {{ pluginName }}?","plugins.uninstall_remove_plugin_config":"Eliminar la configuraci\xF3 del plugin?","plugins.uninstall_unpair_child_bridge":"Desaparellar el pont fill?","plugins.uninstall_unpair_child_bridges":"Desaparellar els {{ count }} ponts fills?","reset.accessory_reset":"Restabliment d'accessori de Homebridge","reset.action_is_irreversible":"Aquesta acci\xF3 \xE9s irreversible. Si us plau, llegeix amb precauci\xF3 abans de continuar.","reset.bridges.desc":"If you are having trouble pairing Homebridge, an external accessory or a child bridge to HomeKit, you may need to unpair it from HomeKit to start again.","reset.bridges.empty":"You have no bridges to unpair from HomeKit.","reset.bridges.title":"Ponts","reset.bridges_all.desc":"Unpair all bridges from HomeKit. This includes the main Homebridge bridge, child bridges and bridges for external accessories.","reset.bridges_all.list_1":"This will unpair the Homebridge bridge, all child bridges and bridges for external accessories from HomeKit.","reset.bridges_all.list_2":"Note that your accessories will continue to show in HomeKit as no response, until the bridges are manually removed from HomeKit. You can do this in the Home app, by accessing Home Settings \u2192 Home Hubs & Bridges \u2192 {Bridge} \u2192 Remove Bridge from Home.","reset.bridges_all.list_3":"All your Homebridge to HomeKit accessories, scenes and automations will need to be reconfigured after the unpairing.","reset.bridges_all.list_4":"The pin for pairing your Homebridge bridge to HomeKit will be changed. You can see the new values in your Homebridge config after the unpairing.","reset.bridges_all.title":"Desvincular tots els ponts","reset.bridges_single.desc":"Unpair a single bridge from HomeKit. This may be a child bridge or a bridge for an external accessory like a camera or TV.","reset.bridges_single.list_1":"When unpairing a bridge, any accessories published by this bridge will be removed from the Homebridge cache.","reset.bridges_single.list_2":"The accessories will become stale in HomeKit (showing no response). To remove them, you will need to manually remove this bridge from HomeKit. You can do this in the Home app from the Home Settings section.","reset.bridges_single.list_3":"You can then attempt to pair the bridge again if required.","reset.bridges_single.title":"Desvincular un pont","reset.cached_accessory_removed":"Accessori eliminat de la mem\xF2ria cau.","reset.clear_cache_all.desc":"Remove all accessories from the cache.","reset.clear_cache_all.list_1":"When clicking on the remove button below, Homebridge will restart and all your existing accessories will be removed from Homebridge and HomeKit.","reset.clear_cache_all.list_2":"All associated HomeKit data will also be removed, this includes room associations, scenes and automations that this accessory uses.","reset.clear_cache_all.list_3":"After Homebridge restarts, your plugins will re-add any accessories as if the plugin was being installed for the first time.","reset.clear_cache_all.title":"Remove All Accessories","reset.clear_cache_bridge.desc":"Remove all accessories published by a bridge from the cache.","reset.clear_cache_bridge.empty":"You have no bridges from which to remove accessories.","reset.clear_cache_bridge.list_1":"This function can be used to reset a plugin's existing accessories in HomeKit. They will be removed from Homebridge/HomeKit and then re-added by the plugin as new accessories.","reset.clear_cache_bridge.list_2":"The child bridge's pairing details and status will remain the same.","reset.clear_cache_bridge.title":"Remove Bridge Accessories","reset.clear_cache_single.desc":"Remove a single accessory from the cache.","reset.clear_cache_single.list_1":"Some plugins don't clean up after themselves properly! If an accessory that you no longer have in Homebridge is still being displayed in HomeKit, you can remove it from the cache.","reset.clear_cache_single.list_2":"This function can be used to reset an existing accessory in HomeKit. It will be removed from Homebridge/HomeKit and then re-added by the plugin as a new accessory.","reset.clear_cache_single.list_3":"When removing an accessory from the cache, all its associated HomeKit data will be removed. This includes any associated scenes and automations that use this accessory.","reset.clear_cache_single.list_4":"Accessories can only be removed when Homebridge is not running. Homebridge will automatically restart when clicking on each of the remove buttons below. If you need to remove multiple accessories, please be patient and allow Homebridge to restart between each removal.","reset.clear_cache_single.title":"Remove Single Accessory","reset.delete_failed":"Error a l'eliminar accessori.","reset.delete_success":"Reiniciant Homebridge i eliminant mem\xF2ria cau d'accessoris.","reset.error_message":"Accessory cache could not be loaded. You may not have any cached accessories.","reset.failed_to_reset":"Error al reiniciar Homebridge. Mira els logs.","reset.force_restart_hb_help_text":"Fes servir aquesta acci\xF3 per for\xE7ar el servei hb-service a fer un reinici complet.","reset.remove_cached_accessories_single_empty":"You have no cached accessories to remove.","reset.removing_cached_accessory_please_wait":"Eliminant accessori de la mem\xF2ria cau, si us plau espera\u2026","restart.child_bridge_list":"Reinici aquests ponts fills perqu\xE8 s'apliquin els canvis.","restart.child_bridges":"Reinici els ponts fills d'aquest plugin perqu\xE8 s'apliquin els canvis.","restart.homebridge":"Reinici Homebridge perqu\xE8 s'apliquin els canvis.","restart.label_restart_command_executed":"Comando de reinici executat","restart.please_wait_while_server_restarts":"Si us plau, espera, aquesta p\xE0gina et redirigir\xE0 autom\xE0ticament quan el servidor torni a estar disponible.","restart.server_is_taking_long_time_to_restart":"El reinici est\xE0 trigant molt. Potser hagis de iniciar Homebridge de forma manual.","restart.service_ready":"El servidor Homebridge est\xE0 preparat","restart.title_restart":"Reiniciant Homebridge","restart.toast_server_restart_error":"S'ha produ\xEFt un error en enviar el comando reinici al servidor","restart.toast_server_restart_timeout":"El servidor est\xE0 trigant molt a tornar a estar disponible","restart.toast_server_restarted":"Servidor reiniciat","restart.ui_online":"Homebridge UI en l\xEDnia","rpi.throttled.currently_message":"Aquesta Raspberry Pi informa que actualment est\xE0 sota tensi\xF3; comproveu que estigui connectat a una font d'alimentaci\xF3 adequada. La baixa tensi\xF3 pot provocar inestabilitat del sistema i corrupci\xF3 de la targeta SD.","rpi.throttled.previously_message":"Aquest Raspberry Pi ha informat d'un esdeveniment de baixa tensi\xF3 des que es va reiniciar per \xFAltima vegada; comproveu que estigui connectat a una font d'alimentaci\xF3 adequada.","rpi.throttled.undervoltage_title":"Baixa de Tensi\xF3","settings.cache.desc":"Homebridge maintains accessories in cache so they aren't removed and re-added to HomeKit each time Homebridge restarts. Sometimes this cache can become out of sync with the actual accessories in Homebridge.","settings.cache.title":"Accessories","settings.changes.saved":"Your changes have been saved and require a restart to take effect.","settings.datetime.incorrect":"The date and time on your Homebridge server seem to be incorrect. This may cause unexpected issues. Click here for more information.","settings.display.blue":"Blue","settings.display.bluegrey":"Blue Grey","settings.display.brown":"Brown","settings.display.cyan":"Cyan","settings.display.dark":"Dark","settings.display.deep_purple":"Deep Purple","settings.display.green":"Green","settings.display.grey":"Grey","settings.display.indigo":"Indigo","settings.display.lang":"Language","settings.display.light":"Light","settings.display.lighting_mode":"Lighting Mode","settings.display.login_wallpaper":"Login Wallpaper","settings.display.login_wallpaper_desc":"A custom login wallpaper can be set by adding a <code>ui-wallpaper.jpg</code> file to your Homebridge storage directory, or by providing a full path to a local image file here.","settings.display.orange":"Orange","settings.display.pink":"Pink","settings.display.purple":"Purple","settings.display.red":"Red","settings.display.teal":"Teal","settings.display.temp_units":"Temperature Units","settings.display.temp_units.c":"Celsius (\xB0C)","settings.display.temp_units.f":"Fahrenheit (\xB0F)","settings.display.theme":"Theme","settings.general.title_display":"Display","settings.general.title_general":"General","settings.mdns_advertiser":"M\xE8tode de difusi\xF3 mDNS","settings.mdns_advertiser_exp":"experimental","settings.mdns_advertiser_help":"Si tens problemes per connectar a Homebridge, prova d\u2019utilitzar un m\xE8tode de difusi\xF3 mDNS alternatiu.","settings.mdns_advertiser_not_connected":"Not Connected","settings.mdns_advertiser_rec":"recommended","settings.network.label_interface_name":"Nom de la interf\xEDcie","settings.network.label_ip_address":"Adre\xE7a IP","settings.network.message_network_interface":"Si no es selecciona cap interf\xEDcie de xarxa, Homebridge intentar\xE0 determinar autom\xE0ticament quines interf\xEDcies difondre.","settings.network.port_hb":"Homebridge Port","settings.network.port_hb_desc":"The port number to run the Homebridge bridge on. This must be between 1025 and 65533, and should not be the same as the Homebridge UI port.","settings.network.port_ui":"UI Port","settings.network.port_ui_desc":"The port number to run the Homebridge UI on.","settings.network.title_network":"Xarxa","settings.network.title_network_interfaces":"Interf\xEDcies de xarxa","settings.service.debug_tooltip":"Some plugins require you to set the DEBUG environment variable to enable debug level logging.","settings.service.node_tooltip":"Node.js runtime options for this process. This should be kept blank unless you know what you are doing.","settings.startup.debug":"Homebridge Debug Mode","settings.startup.debug_desc_v1":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge as well as all child bridges. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.debug_desc_v2":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge. The setting for child bridges can be found in the child bridge configuration from the plugins page. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.insecure":"Homebridge 'Insecure' Mode","settings.startup.insecure_desc":"To control your accessories via the Homebridge UI you must be running Homebridge in insecure mode.","settings.startup.keep_accessories":"Keep Accessories Of Uninstalled Plugins","settings.startup.keep_accessories_desc":"If enabled, accessories of platform plugins will remain in the cache even after the plugin is uninstalled. This can be useful if you plan to reinstall the plugin later.","settings.title_startup_options":"Opcions d'arrencada","settings.unpair_bridge.load_error":"Paired bridges could not be loaded.","settings.unpair_bridge.unpair_error":"Failed to unpair bridge.","setup.button_get_started":"Comen\xE7ar","setup.create_account":"Crear Compte","setup.create_account_reason":"S'ha de configurar l'autenticaci\xF3 de contrasenya a la interf\xEDcie web d'administraci\xF3 de Homebridge. Encara que Homebridge nom\xE9s sigui accessible a la teva xarxa local, \xE9s important protegir-lo de l'acc\xE9s sense restriccions.","setup.open_dashboard":"Obriu Tauler","setup.welcome_to_homebridge":"Benvingut/da a Homebridge",setup_wizard_message_complete_message:"El procediment de configuraci\xF3 s'ha completat i ja est\xE0s preparat per comen\xE7ar a utilitzar Homebridge.",setup_wizard_message_complete_title:"Felicitats!",setup_wizard_message_restore:"Restore From Backup","status.code_scan":"Escaneja per afegir a HomeKit","status.cpu.load":"C\xE0rrega","status.cpu.temp":"Temperatura","status.cpu.title_cpu":"CPU","status.credits.title":"Credits","status.homebridge.checking":"Buscant actualitzacions\u2026","status.homebridge.up_to_date":"Actualitzat","status.memory.label_available":"Lliure","status.memory.label_total":"Total","status.memory.title_memory":"Mem\xF2ria","status.network.received_per_second":"Rebut","status.network.sent_per_second":"Enviat","status.network.title_network":"Activitat en xarxa","status.plugin_out_of_date":"Plugin sense actualitzar","status.plugins_out_of_date":"Plugins sense actualitzar","status.services.label_not_running":"Sense executar-se","status.services.label_running":"Executant-se","status.services.updates":"Update Centre","status.uptime.title_uptime":"Temps encesa","status.widget.accessories.choose_accessories":"Selecciona els accessoris per a mostrar en aquest widget des de la pestanya Accessoris.","status.widget.add.label_pairing_code":"Codi de aparellaments","status.widget.bridge.restart_error":"Failed to restart child bridge.","status.widget.clock":"Rellotge","status.widget.clock_dateformat":"Format de data","status.widget.clock_timeformat":"Format d'hora","status.widget.font_size":"Mida de la lletra","status.widget.font_weight":"Gruix de le lletra","status.widget.hide_on_mobile":"Amaga en vista compacta (vista de m\xF2bils)","status.widget.homebridge_logs":"Logs de Homebridge","status.widget.info":"Informaci\xF3 del sistema","status.widget.info.config_path":"Ruta de configuraci\xF3","status.widget.info.disabled":"No","status.widget.info.docker":"Docker","status.widget.info.glibc_message":"This message indicates that your operating system does not support newer versions of Node.js. To resolve this and be able to install updated versions of Node.js in the future, you will need to update your operating system to a more recent version.","status.widget.info.glibc_title":"Actualitzaci\xF3 del OS","status.widget.info.hostname":"Hostname","status.widget.info.ipv4":"IPv4","status.widget.info.ipv6":"IPv6","status.widget.info.no":"No","status.widget.info.node_unsupp":"Unsupported","status.widget.info.node_unsupp_message":"You are running a version of Node.js that is not officially supported by Homebridge. You should consider changing to a supported version.","status.widget.info.node_unsupp_title":"Unsupported Node Version","status.widget.info.node_update_message":"Homebridge requires Node.js installed on your system to run. From time to time, you will need to update the Node.js runtime to enable support for new features. Homebridge (and verified plugins) support all current Active and Maintenance LTS releases of Node.js.","status.widget.info.node_update_title":"Node Update","status.widget.info.nodejs_path":"Node.js Path","status.widget.info.nodejs_version":"Versi\xF3 de Node.js","status.widget.info.os":"Sistema operatiu","status.widget.info.plugin_path":"Ruta plugins","status.widget.info.service_mode":"Mode de Servei","status.widget.info.service_user":"Usuari","status.widget.info.servicemode_message":"Standalone mode is no longer recommended. Setting up Homebridge and Homebridge UI with hb-service has the same benefits of standalone mode but is much easier to setup and maintain.","status.widget.info.servicemode_title":"Service Mode","status.widget.info.storage_path":"Ruta d'emmagatzematge","status.widget.info.synology_package":"Synology Package","status.widget.info.timezone":"Zona hor\xE0ria","status.widget.info.yes":"S\xED","status.widget.network.history_items":"History Items","status.widget.network.items":"items","status.widget.network.network_interface":"Interf\xEDcie de Xarxa","status.widget.network.none_selected":"None selected in settings - using default.","status.widget.network.refresh_interval":"Interval d'actualitzaci\xF3","status.widget.network.refresh_note":"Actualitza la p\xE0gina perqu\xE8 els canvis tinguin efecte.","status.widget.network.seconds":"segons","status.widget.qr_paired":"Aparellat","status.widget.qr_unpaired":"No aparellat","status.widget.show_hide":"Show/Hide Widgets","status.widget.title_manage_widget":"Gestionar widget","status.widget.uptime.label_process":"Proc\xE9s","status.widget.uptime.label_server":"Servidor","status.widget.weather.label_config_required_help":"Si us plau, selecciona la teva ciutat en la configuraci\xF3 del widget","status.widget.weather.label_search_for_your_city":"Cerca la teva ciutat:","status.widget.weather.title_weather":"Clima","support.dev.api":"Homebridge API","support.dev.api_hap":"HAP-NodeJS API","support.dev.api_hap_sub":"HAP-NodeJS is an implementation of the HomeKit Accessory Server as specified in the HomeKit Accessory Protocol (HAP), which is defined by Apple as part of the HomeKit Framework.","support.dev.api_sub":"Homebridge is a lightweight Node.js server you can run on your home network to emulate the HomeKit Accessory Protocol (HAP).","support.dev.item_swagger":"Swagger Docs","support.dev.item_swagger_sub":"The Homebridge REST API allows you to interact with your Homebridge server using HTTP requests.","support.dev.template":"Plugin Template Repo","support.dev.template_sub":"A template Homebridge plugin that can be used as a base to help you get started developing your own plugin.","support.dev.title":"Developers","support.dev.verified":"Verified By Homebridge","support.dev.verified_sub":"The Verified By Homebridge program allows plugin developers to get their plugins reviewed and endorsed by the Homebridge project team.","support.links.discord":"Discord Server","support.links.discord_sub":"Join the Homebridge Discord chat server to chat with other users and developers.","support.links.documentation":"Documentation","support.links.documentation_sub":"The Homebridge documentation provides a wealth of information on how to get started with Homebridge and common issue resolutions.","support.links.issue":"Report An Issue","support.links.issue_sub":"If you are experiencing an issue with Homebridge, please open a new issue on GitHub. This should not be used for issues with specific plugins.","support.links.reddit":"Reddit Community","support.links.reddit_sub":"The Homebridge subreddit is a great place to share your Homebridge setup and ask for help.","support.links.title":"Enlla\xE7os \xDAtils","support.title":"Ajuda i Suport","toast.no_auth":"Only administrators may access the requested page.","toast.title_error":"Error","toast.title_success":"\xC8xit","toast.title_warning":"Av\xEDs","users.button_add_new_user":"Afegeix usuari nou","users.button_add_user":"Afegeix usuari","users.label_admin_user":"Usuari administrador?","users.label_confirm_password":"Confirmar contrasenya","users.label_full_name":"Nom complet","users.label_new_password":"Contrasenya nova","users.label_password":"Contrasenya","users.label_username":"Usuari","users.setup_2fa":"Configurar 2FA","users.setup_2fa_activate_error":"An error occurred activating 2FA","users.setup_2fa_cannot_setup_2fa":"No es pot configurar 2FA","users.setup_2fa_disable":"Desactivar 2FA","users.setup_2fa_disable_current_password":"Ingressa la teva contrasenya actual per desactivar 2FA:","users.setup_2fa_disable_success":"2FA desactivada.","users.setup_2fa_enable":"Activar 2FA","users.setup_2fa_enable_error":"An error occurred setting up 2FA","users.setup_2fa_enabled_success":"2FA activada.","users.setup_2fa_enter_code":"Ingressa el codi de la teva aplicaci\xF3 d'autenticaci\xF3:","users.setup_2fa_scan_qr_code":"Escaneja el seg\xFCent Codi QR amb la teva aplicaci\xF3 d'autenticaci\xF3:","users.setup_2fa_server_time_out":"El rellotge del teu servidor no est\xE0 actualitzat per {{ timeDiffError }}ms. El m\xE0xim perm\xE8s \xE9s +/- 5000 ms.","users.setup_2fa_warning":"2FA requereix que el servidor Homebridge tingui una data i hora molt precises per iniciar sessi\xF3. Si el vostre servidor no t\xE9 la capacitat de mantenir l'hora amb precisi\xF3 no has d'habilitar 2FA o s'arrisca a ser bloquejat de la interf\xEDcie de Homebridge.","users.title_add_user":"Afegir usuari","users.title_edit_user":"Editar usuari","users.title_users":"Usuaris","users.toast_added_new_user":"Nou usuari afegit","users.toast_failed_to_add_user":"Error a l'afegir l'usuari","users.toast_failed_to_delete_user":"Error a l'eliminar l'usuari","users.toast_updated_user":"Usuari actualitzat","users.toast_user_deleted":"Usuari eliminat"}});var zs=y((Ad,oa)=>{oa.exports={"accessories.button_add_room":"P\u0159idat m\xEDstnost","accessories.button_hidden_hide":"Hide Hidden","accessories.button_hidden_show":"Show Hidden","accessories.control.auto":"Auto","accessories.control.away":"Pry\u010D","accessories.control.battery_charging":"Nab\xEDjen\xED","accessories.control.battery_notchargeable":"Nelze nab\xEDjet","accessories.control.battery_notcharging":"Nenab\xEDj\xED se","accessories.control.brightness":"Jas","accessories.control.closed":"Zav\u0159eno","accessories.control.closing":"Zav\xEDr\xE1m","accessories.control.cool":"Chlazen\xED","accessories.control.default_room":"V\xFDchoz\xED m\xEDstnost","accessories.control.default_running_time":"V\xFDchoz\xED doba spu\u0161t\u011Bn\xED","accessories.control.dehumidifying":"Odvlh\u010Dov\xE1n\xED","accessories.control.detected":"Detected","accessories.control.drag_here":"P\u0159esunout Zde","accessories.control.fan":"V\u011Btr\xE1k","accessories.control.heat":"Topen\xED","accessories.control.home":"Dom\u016F","accessories.control.humidifying":"Zvlh\u010Dov\xE1n\xED","accessories.control.jammed":"Zaseknut\xFD","accessories.control.light":"Sv\u011Btlo","accessories.control.locked":"Zam\u010Deno","accessories.control.mute":"Ztlumit","accessories.control.night":"Noc","accessories.control.not_detected":"Not Detected","accessories.control.not_mute":"Zapnuto","accessories.control.off":"Vypnuto","accessories.control.on":"Zapnuto","accessories.control.open":"Otev\u0159eno","accessories.control.opening":"Otev\xEDr\xE1m","accessories.control.rotation_speed":"Rychlost ot\xE1\u010Den\xED","accessories.control.running":"Spu\u0161t\u011Bn\xFD","accessories.control.speaker_volume":"Hlasitost","accessories.control.stopped":"Zastaveno","accessories.control.target":"C\xEDl","accessories.control.target_humidity":"C\xEDlov\xE1 vlhkost","accessories.control.target_temperature":"C\xEDlov\xE1 teplota","accessories.control.triggered":"Spu\u0161t\u011Bno","accessories.control.unknown":"Nezn\xE1m\xFD","accessories.control.unlocked":"Odem\u010Den\xFD","accessories.control_disabled":"Ovl\xE1d\xE1n\xED p\u0159\xEDslu\u0161enstv\xED pro Homebridge je zak\xE1z\xE1no","accessories.hide_this_accessory":"Skr\xFDt toto p\u0159\xEDslu\u0161enstv\xED","accessories.message_for_more_information":"pro v\xEDce informac\xED.","accessories.message_must_use_insecure_mode":"Chcete-li ovl\xE1dat sv\xE9 p\u0159\xEDslu\u0161enstv\xED, mus\xEDte m\xEDt syst\xE9m Homebridge v re\u017Eimu insecure (ned\u016Fv\u011Bryhodn\xFD).","accessories.message_please_see":"Pros\xEDm pod\xEDvej se","accessories.name":"N\xE1zev","accessories.room_name":"Jm\xE9no m\xEDstnosti","accessories.rooms_not_appear_in_homekit":"M\xEDstnosti, kter\xE9 zde vytvo\u0159\xEDte, se v HomeKit neobjev\xED. Jsou pouze pro p\u0159ehlednost zobrazen\xED p\u0159\xEDslu\u0161enstv\xED v Homebridge UI.","accessories.settings_link":"You can access the Homebridge Settings at any time from the cog icon in the side menu.","accessories.show_on_dashboard":"Zobrazit ve widgetu na hlavn\xEDm panelu","accessories.title_accessories":"P\u0159\xEDslu\u0161enstv\xED","backup.backup_delete_failed":"Backup deletion failed. See logs for details.","backup.backup_download_failed":"Sta\u017Een\xED z\xE1lohy se nezda\u0159ilo","backup.backup_exceeds_max_size":"Backup ({{ backupSize }}) exceeds maximum restore file size of {{ maxBackupSizeText }}","backup.backup_help_one":"St\xE1hn\u011Bte si z\xE1lo\u017En\xED archiv cel\xE9ho va\u0161eho prost\u0159ed\xED Homebridge. T\xEDm se z\xE1lohuje cel\xFD obsah va\u0161eho adres\xE1\u0159e Homebridge, kter\xFD m\u016F\u017Eete pozd\u011Bji obnovit na jak\xE9koli platform\u011B, kter\xE1 je schopna provozovat Homebridge UI.","backup.backup_help_two":"Pluginy, kter\xE9 nejsou hostov\xE1ny na npm, nebo pluginy nainstalovan\xE9 p\u0159\xEDmo z GitHubu, nebudou z\xE1lohov\xE1ny ani obnoveny.","backup.backup_restored":"Z\xE1loha byla obnovena","backup.backup_warning":"Z\xE1lohy obsahuj\xED citliv\xE9 informace a nem\u011Bly by b\xFDt sd\xEDleny s ostatn\xEDmi.","backup.button_restore_backup":"Obnovit z\xE1lohu","backup.label_choose_backup_file_to_restore":"Vyberte z\xE1lo\u017En\xED soubor pro obnoven\xED\u2026","backup.label_uploading":"Nahr\xE1v\xE1m\u2026","backup.load_error":"Failed to load config backup.","backup.now":"Now","backup.restore_failed":"Obnoven\xED selhalo","backup.restore_help_one":"Obnovte z\xE1lohu, kterou jste d\u0159\xEDve vytvo\u0159ili pomoc\xED Homebridge UI. V\xE1\u0161 konfigura\u010Dn\xED soubor Homebridge, dopl\u0148ky v cache, p\xE1rov\xE1n\xED HomeKit a Homebridge UI budou obnoveny. V\u0161echny pluginy Homebridge, kter\xE9 jste nainstalovali, budou tak\xE9 sta\u017Eeny z npm.","backup.restore_help_two":"Po proveden\xED obnovy se budete muset p\u0159ihl\xE1sit k Homebridge UI pomoc\xED p\u016Fvodn\xEDch p\u0159ihla\u0161ovac\xEDch \xFAdaj\u016F.","backup.restore_max_size":"You can restore a backup archive up to {{ maxBackupSizeText }} in size.","backup.restore_warning":"Obnoven\xED ze z\xE1lohy nevratn\u011B p\u0159ep\xED\u0161e st\xE1vaj\xEDc\xED konfiguraci Homebridge.","backup.scheduled_backup_time":"\xDApln\xE1 z\xE1loha instance mostu Homebridge se automaticky vytvo\u0159\xED ka\u017Ed\xFD den v {{ backupTime }} a uchov\xE1v\xE1 se po dobu {{ dayCount }} dn\u016F.","backup.title_backup":"Z\xE1loha","child_bridge.about":"Homebridge umo\u017E\u0148uje spustit platformu nebo p\u0159\xEDslu\u0161enstv\xED z\xE1suvn\xE9ho modulu jako izolovan\xFD pod\u0159\xEDzen\xFD most. To m\u016F\u017Ee zlep\u0161it celkovou odezvu a spolehlivost syst\xE9mu Homebridge.","child_bridge.bridge_connect":"P\u0159ipojit k HomeKitu","child_bridge.bridge_settings":"Nastaven\xED Mostu","child_bridge.bridges":"HomeKit Bridges","child_bridge.bridges_paired":"Ka\u017Edou platformu nebo p\u0159\xEDslu\u0161enstv\xED pod\u0159azen\xE9ho m\u016Fstku je t\u0159eba sp\xE1rovat se syst\xE9mem HomeKit samostatn\u011B.","child_bridge.config.debug":"Debug Mode","child_bridge.config.description":"These fields are not required, but can be used to override the HomeKit configuration for this bridge.","child_bridge.config.firmware":"Firmware Version","child_bridge.config.header":"Configuration","child_bridge.config.manufacturer":"Manufacturer","child_bridge.config.model":"Model","child_bridge.config.name":"Name","child_bridge.must_configure_plugin":"Ne\u017E budete moci spravovat nastaven\xED mostu, mus\xEDte tento plugin nakonfigurovat..","child_bridge.reset_accessories":"Reset Accessories","child_bridge.reset_accessories_list":"Choose from which child bridges you want to reset the accessories below:","child_bridge.restart":"Restartovat Pod\u0159\xEDzen\xFD Most","child_bridge.restart_homebridge":"Restartujte m\u016Fstek Homebridge, abyste dokon\u010Dili nastaven\xED tohoto pod\u0159\xEDzen\xE9ho mostu.","child_bridge.restart_plural":"Restart Child Bridges","child_bridge.return_to_pair":"Po restartov\xE1n\xED za\u0159\xEDzen\xED Homebridge se vra\u0165te na tuto obrazovku a zobrazte p\xE1rovac\xED QR k\xF3d.","child_bridge.select_type":"Vyberte platformy nebo p\u0159\xEDslu\u0161enstv\xED, kter\xE9 chcete spustit jako pod\u0159\xEDzen\xFD most.","child_bridge.setup":"Set Up Child Bridge","child_bridge.start":"Start Child Bridge","child_bridge.start_plural":"Start Child Bridges","child_bridge.stop":"Stop Child Bridge","child_bridge.stop_plural":"Stop Child Bridges","child_bridge.wiki_link":"V\xEDce o pod\u0159\xEDzen\xFDch mostech","config.config_accessory_must_be_array":"p\u0159\xEDslu\u0161enstv\xED mus\xED b\xFDt pole []","config.config_bridge_missing":"Chyb\xED nastaven\xED mostu","config.config_invalid_json":"Konfigurace obsahuje chybn\xFD k\xF3d JSON","config.config_platform_must_be_array":"platformy mus\xED b\xFDt pole []","config.config_username_error":"U\u017Eivatelsk\xE9 jm\xE9no Bridge mus\xED b\xFDt 6 p\xE1r\u016F hexadecim\xE1ln\xEDch znak\u016F odd\u011Blen\xFDch dvojte\u010Dkami (A-F 0-9)","config.error_blocks_objects":"All {{ type }} blocks must be objects.","config.error_blocks_type":"All {{ type }} blocks must contain the {{ type }} attribute.","config.error_string_array":"Each item in the {{ key }} array must be a string.","config.error_string_type":"The {{ type }} attribute must be a string.","config.failed_to_save_config":"Nepoda\u0159ilo se ulo\u017Eit konfiguraci","config.restore.confirm":"Klepnut\xEDm na tla\u010D\xEDtko Ulo\u017Eit potvr\u010Fte, \u017Ee chcete tuto z\xE1lohu obnovit.","config.restore.copy_to_editor":"Kop\xEDrovat do editoru","config.restore.no_backups":"\u017D\xE1dn\xE9 z\xE1lohy","config.restore.title_restore_homebridge_backup":"Obnoven\xED z\xE1lohy konfigurace Homebridge Config","config.restore.toast_backups_deleted":"V\u0161echny z\xE1lohy byly smaz\xE1ny","config.title_backup_loaded":"Z\xE1loha byla na\u010Dtena","form.button_cancel":"Zru\u0161it","form.button_close":"Zav\u0159\xEDt","form.button_delete":"Vymazat","form.button_disable":"Disable","form.button_download":"St\xE1hnout","form.button_edit":"Editovat","form.button_enable":"Enable","form.button_hide":"Hide","form.button_lock":"Lock","form.button_more_info":"More Info","form.button_remove":"Remove","form.button_reset":"Reset","form.button_restore":"Obnovit","form.button_save":"Ulo\u017Eit","form.button_show":"Show","form.button_unlock":"Unlock","form.button_unpair":"Unpair","form.label_invalid":"Config validation failed - you can still save your changes.","form.label_invalid_strict":"Config validation failed - please review the form before saving.","form.label_valid":"Config validation passed.","form.select.auto":"Automatic (Use Browser Settings)","login.button_login":"P\u0159ihl\xE1sit se","login.invalid_credentials":"Neplatn\xE9 u\u017Eivatelsk\xE9 jm\xE9no a heslo","login.label_2fa_code":"Dvoufaktorov\xFD k\xF3d","login.label_password":"Heslo","login.label_username":"U\u017Eivatelsk\xE9 jm\xE9no","login.message_invalid_2fa_code":"Zadan\xFD k\xF3d je nespr\xE1vn\xFD nebo jeho platnost vypr\u0161ela.","logs.download.error":"Failed to download log file.","logs.download_warning":"Soubory protokolu Homebridge mohou obsahovat osobn\xED \xFAdaje, hesla nebo p\u0159\xEDstupov\xE9 tokeny. P\u0159ed sd\xEDlen\xEDm s ostatn\xEDmi si soubor protokolu prohl\xE9dn\u011Bte a odstra\u0148te z n\u011Bj ve\u0161ker\xE9 citliv\xE9 informace.","logs.log_file_truncated":"Soubor protokolu zkr\xE1cen.","logs.title_download_log_file":"St\xE1hnout Soubor Protokolu","logs.title_truncate_log_file":"Zkr\xE1cen\xED souboru protokolu","logs.truncate.error":"Failed to truncate log file.","logs.truncate_log_warning":"Tato akce nevratn\u011B odstran\xED existuj\xEDc\xED protokoly Homebridge. Jste si jisti, \u017Ee chcete pokra\u010Dovat?","menu.config_json_editor":"JSON Config","menu.docker.restart_container":"Restart kontejneru","menu.docker.startup_script":"Spou\u0161t\u011Bc\xED skript","menu.docker.terminal":"Termin\xE1l","menu.hbrestart.confirm_hb":"Restart Homebridge","menu.hbrestart.confirm_ui":"Restart HB Service & UI","menu.hbrestart.title":"Restart Homebridge","menu.label_accessories":"P\u0159\xEDslu\u0161enstv\xED","menu.label_plugins":"Pluginy","menu.label_settings":"Settings","menu.label_settings_advanced":"UI Advanced Settings","menu.label_status":"Stav","menu.linux.label_logs":"Logs","menu.linux.label_restart_server":"Restart serveru","menu.linux.label_shutdown_server":"Vypnut\xED serveru","menu.linux.label_terminal":"Termin\xE1l","menu.restart.title":"Power Options","menu.settings.title":"Settings","menu.tooltip_logout":"Odhl\xE1sit","menu.tooltip_restart":"Restartovat","menu.tooltip_user_accounts":"U\u017Eivatelsk\xFD \xFA\u010Det","menu.tooltip_view_logs":"Zobrazen\xED logu","platform.docker.container_restarted":"Kontejner Docker restartov\xE1n","platform.docker.must_use_hashbang":"Skript mus\xED pou\u017E\xEDvat #!/bin/sh hashbang.","platform.docker.restart_required":"Pro projeven\xED zm\u011Bn budete muset restartovat tento kontejner docker.","platform.docker.run_with_restart":"Ujist\u011Bte se, \u017Ee pou\u017E\xEDv\xE1te kontejner Docker s <code>--restart=always</code>","platform.docker.script_help":"Tento skript bude proveden p\u0159i ka\u017Ed\xE9m spu\u0161t\u011Bn\xED kontejneru docker. M\u016F\u017Eete jej pou\u017E\xEDt k instalaci dal\u0161\xEDch bal\xED\u010Dk\u016F, kter\xE9 va\u0161e pluginy mohou pot\u0159ebovat, nap\u0159\xEDklad ffmpeg nebo libpcap-dev.","platform.docker.script_saved":"Spou\u0161t\u011Bc\xED skript byl ulo\u017Een","platform.docker.server_long_time":"Restartov\xE1n\xED serveru trv\xE1 dlouhou dobu. Pravd\u011Bpodobn\u011B budete muset kontejner Docker spustit ru\u010Dn\u011B.","platform.docker.title_restarting":"Restartov\xE1n\xED Docker kontejneru ","platform.linux.long_time":"Restartov\xE1n\xED serveru trv\xE1 dlouhou dobu. Mo\u017En\xE1 budete muset ru\u010Dn\u011B spustit server.","platform.linux.restart":"Po\u010Dkejte pros\xEDm, tato str\xE1nka se automaticky p\u0159esm\u011Bruje, kdy\u017E Homebridge bude znovu online.","platform.linux.restarting_server":"Restartov\xE1n\xED serveru","platform.linux.server_restart_error":"Do\u0161lo k chyb\u011B p\u0159i odes\xEDl\xE1n\xED p\u0159\xEDkazu pro restartov\xE1n\xED serveru","platform.linux.server_restarted":"Server restartov\xE1n","platform.linux.server_taking_long_time":"Serveru trv\xE1 dlouhou dobu, ne\u017E se vr\xE1t\xED do online re\u017Eimu","platform.linux.server_will_power_down":"Server se brzy vypne.","platform.linux.shutting_down_server":"Vypnut\xED serveru","platform.version.restart_required":"Homebridge UI verze{{ uiVersion }} bylo nainstalov\xE1no, ale server st\xE1le b\u011B\u017E\xED na verzi{{ serverVersion }}.","platform.version.service_restart_required":"Je Vy\u017Eadov\xE1n Restart Slu\u017Eby","plugins.bridge.action_error":"Failed to {{ action }} child bridge(s).","plugins.button_homepage":"Plugin Homepage","plugins.button_set_up":"Set Up","plugins.button_settings":"Nastaven\xED","plugins.button_uninstall":"Odinstalovat","plugins.button_update":"Aktualizovat","plugins.compat.are_you_sure":"Are you sure you want to continue anyway?","plugins.compat.hb_node_too_low":"{{ packageName }} v{{ latestVersion }} vy\u017Eaduje pro b\u011Bh Node.js ve verzi v{{ minVersion }} nebo vy\u0161\u0161\xED. Va\u0161e aktu\xE1ln\u011B b\u011B\u017E\xEDc\xED verze Node.js {{ installedVersion }}.","plugins.compat.hb_too_low":"The {{ pluginName }} plugin recommends running on Homebridge v{{ minVersion }} or later. You are currently running Homebridge v{{ installedVersion }}.","plugins.compat.node_first":"P\u0159ed aktualizac\xED {{ packageName }} aktualizujte Node.js.","plugins.compat.node_link":"How To Update Node.js","plugins.compat.node_too_low":"Plugin {{ pluginName }} vy\u017Eaduje pro b\u011Bh Homebridge ve verzi v{{ minVersion }} nebo vy\u0161\u0161\xED. Va\u0161e aktu\xE1ln\u011B b\u011B\u017E\xEDc\xED verze Homebridge v{{ installedVersion }}.","plugins.compat.title":"Compatibility Check","plugins.config.load_error":"Failed to load plugin config.","plugins.config.must_be_array":"Plugin config must be an array.","plugins.config.must_be_array_objects":"Plugin config must be an array of objects.","plugins.config.must_be_object":"Config block must be an object.","plugins.config.name_property":'Accessory must have a valid "name" attribute',"plugins.config.please_fix":"Please fix validation errors before adding a new block.","plugins.config.remove_error":"Failed to remove plugin config.","plugins.disable.error":"Failed to disable plugin.","plugins.donate.button_not_verified":"Not Verified","plugins.donate.button_verified":"Ov\u011B\u0159eno","plugins.donate.message_1":"As more users install their plugins through the Homebridge UI, they are less likely to visit the projects' GitHub page where the ways to support a developer would typically be displayed.","plugins.donate.message_2":"Adding donation links directly in the Homebridge UI ensures users know how to support Homebridge developers if they wish to do so.","plugins.donate.tile_donate_to":"Podpo\u0159it {{ author }}","plugins.enable.error":"Failed to enable plugin.","plugins.manage.all_versions":"All versions","plugins.manage.child_bridge_restart":"Child bridge restarted successfully.","plugins.manage.child_bridge_restart_failed":"Plugin restart failed, please restart Homebridge manually.","plugins.manage.confirm_disable":"Are you sure you want to disable {{ pluginName }}?","plugins.manage.confirm_disable_accessory_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen and removed from HomeKit.","plugins.manage.confirm_disable_accessory_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and HomeKit. The accessories will lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_disable_platform_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen but remain in HomeKit with a 'No Response' label.","plugins.manage.confirm_disable_platform_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and become controllable again in HomeKit. The accessories will not lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_enable":"Opravdu chcete povolit {{ pluginName }}?","plugins.manage.disable":"Disable","plugins.manage.enable":"Enable","plugins.manage.information":"Plugin Information","plugins.manage.install":"Instalovat","plugins.manage.installed":"Instalov\xE1no","plugins.manage.json_config":"JSON Config","plugins.manage.manage_version":"Instalovat p\u0159ede\u0161lou verzi","plugins.manage.manual_update_command":"To upgrade the package run open a Node.js command prompt as an Administrator and run the following commands:","plugins.manage.manual_update_required":"Vy\u017Eaduje se ru\u010Dn\xED aktualizace","plugins.manage.online_updates":"Online aktualizace nejsou v syst\xE9mu Windows podporov\xE1ny. Po zastaven\xED slu\u017Eby Homebridge budete muset upgradovat Homebridge UI ru\u010Dn\u011B.","plugins.manage.plugin_logs":"Plugin Logs","plugins.manage.release_notes":"Release Notes","plugins.manage.scoped.error":"An error occurred. You can download the logs below.","plugins.manage.scoped.info":"For more information about scoped plugins and why to switch, see the wiki page {{ link }}.","plugins.manage.scoped.process":"This process will not affect your Homebridge/HomeKit accessories. You will not be able to cancel the process once it has started. It will:","plugins.manage.scoped.switch":"Switch To Scoped Plugin","plugins.manage.scoped.windows":"Online updates are not supported on Windows. You will need to install the new plugin and uninstall the old plugin manually.","plugins.manage.scoped.windows_service":'You should <span class="font-weight-bold">not</span> restart Homebridge until both steps are complete.',"plugins.manage.select_version":"Vyberte verzi k instalaci","plugins.manage.thanks_for_updating":"D\u011Bkujeme, \u017Ee jste nainstalovali nejnov\u011Bj\u0161\xED verzi rozhran\xED {{ pluginName }}.","plugins.manage.uninstall":"Odinstalovat","plugins.manage.uninstalled":"Vymazat","plugins.manage.unverified_message":"Unverified Homebridge plugins indicate that they haven't undergone the review process by the Homebridge project team. Lack of verification does not necessarily imply inefficacy or safety concerns. Authors might have opted not to seek verification for various reasons.","plugins.manage.unverified_subtitle":"{{ pluginName }} is not verified","plugins.manage.unverified_title":"Unverified Plugins","plugins.manage.update":"Aktualizovat","plugins.manage.updated":"Aktualizov\xE1no","plugins.manage.verified_message":"Homebridge plugins that are marked as verified have been reviewed by the Homebridge project team to ensure they meet various requirements that encourage best practices and a trouble-free user experience.","plugins.manage.verified_subtitle":"{{ pluginName }} is verified","plugins.manage.verified_title":"Verified Plugins","plugins.node_update.continue":"Continue","plugins.placeholder_search_first":"Use the search bar above to find your first plugin","plugins.placeholder_search_plugin":"Vyhledejte pluginy k instalaci\u2026","plugins.settings.custom.homebridge-gsh.label_account_linked":"\xDA\u010Det propojen","plugins.settings.custom.homebridge-gsh.label_link_account":"Propojit \xFA\u010Det","plugins.settings.custom.homebridge-gsh.label_unlink_account":"Odpojit \xFA\u010Det","plugins.settings.custom.homebridge-gsh.message_about":"Plugin Homebridge Google Smart Home v\xE1m umo\u017E\u0148uje ovl\xE1dat p\u0159\xEDslu\u0161enstv\xED Homebridge z chytr\xE9ho reproduktoru s aktivovanou slu\u017Ebou Google Home nebo z mobiln\xED aplikace Google Home.","plugins.settings.custom.homebridge-gsh.message_account_link_required":"Chcete-li tuto funkci povolit, mus\xEDte se p\u0159ihl\xE1sit pomoc\xED \xFA\u010Dtu Google nebo GitHub; P\u0159i p\u0159id\xE1v\xE1n\xED akce Homebridge do mobiln\xED aplikace Google Home se ujist\u011Bte, \u017Ee pou\u017E\xEDv\xE1te stejn\xFD \xFA\u010Det.","plugins.settings.custom.homebridge-gsh.message_homebridge_restart_required":"Aby se zm\u011Bny projevily, Homebridge vy\u017Eaduje restartov\xE1n\xED.","plugins.settings.custom.homebridge-gsh.message_invalid_token":"Invalid account linking token in config.json","plugins.settings.deconz.dump_no_exist":"Homebridge deCONZ dump file does not exist yet.","plugins.settings.hue.dump_no_exist":"Homebridge Hue dump file does not exist yet.","plugins.settings.label_open_config_editor":"Otev\u0159\xEDt editor konfigurace","plugins.settings.message_consult_documentation":"Prostudujte si pros\xEDm dokumentaci pluginu jak spr\xE1vn\u011B nakonfigurovat tento plugin.","plugins.settings.message_manual_config_required":"Tento plugin mus\xED b\xFDt manu\xE1ln\u011B nastaven pou\u017Eit\xEDm Homebridge UI Editoru konfigurace.","plugins.settings.plugin_config_saved":"Konfigurace pluginu byla ulo\u017Eena","plugins.settings.restart_required":"Chcete-li pou\u017E\xEDt zm\u011Bny, restartujte aplikaci Homebridge.","plugins.settings.title_settings":"Nastaven\xED","plugins.status_disabled":"Zak\xE1z\xE1no","plugins.status_installed":"Instalov\xE1no","plugins.toast_failed_to_load_plugin_schema":"Failed to load plugin config schema.","plugins.toast_failed_to_load_plugins":"Nepoda\u0159ilo se na\u010D\xEDst pluginy","plugins.uninstall_bridge_error":"Failed to remove child bridge.","plugins.uninstall_remove_config_required":"Pokud tento plugin trvale odstra\u0148ujete, ujist\u011Bte se, \u017Ee p\u0159ed restartov\xE1n\xEDm aplikace Homebridge odeberete i jeho konfiguraci v souboru config.json.","plugins.uninstall_remove_confirmation":"Opravdu chcete odinstalovat plugin {{ pluginName }}?","plugins.uninstall_remove_plugin_config":"Odebrat konfiguraci pluginu?","plugins.uninstall_unpair_child_bridge":"Unpair plugin child bridge?","plugins.uninstall_unpair_child_bridges":"Unpair {{ count }} plugin child bridges?","reset.accessory_reset":"Resetov\xE1n\xED p\u0159\xEDslu\u0161enstv\xED Homebridge","reset.action_is_irreversible":"Tato akce je nevratn\xE1. P\u0159ed pokra\u010Dov\xE1n\xEDm pros\xEDm pe\u010Dliv\u011B p\u0159e\u010Dt\u011Bte.","reset.bridges.desc":"If you are having trouble pairing Homebridge, an external accessory or a child bridge to HomeKit, you may need to unpair it from HomeKit to start again.","reset.bridges.empty":"You have no bridges to unpair from HomeKit.","reset.bridges.title":"Bridges","reset.bridges_all.desc":"Unpair all bridges from HomeKit. This includes the main Homebridge bridge, child bridges and bridges for external accessories.","reset.bridges_all.list_1":"This will unpair the Homebridge bridge, all child bridges and bridges for external accessories from HomeKit.","reset.bridges_all.list_2":"Note that your accessories will continue to show in HomeKit as no response, until the bridges are manually removed from HomeKit. You can do this in the Home app, by accessing Home Settings \u2192 Home Hubs & Bridges \u2192 {Bridge} \u2192 Remove Bridge from Home.","reset.bridges_all.list_3":"All your Homebridge to HomeKit accessories, scenes and automations will need to be reconfigured after the unpairing.","reset.bridges_all.list_4":"The pin for pairing your Homebridge bridge to HomeKit will be changed. You can see the new values in your Homebridge config after the unpairing.","reset.bridges_all.title":"Unpair All Bridges","reset.bridges_single.desc":"Unpair a single bridge from HomeKit. This may be a child bridge or a bridge for an external accessory like a camera or TV.","reset.bridges_single.list_1":"When unpairing a bridge, any accessories published by this bridge will be removed from the Homebridge cache.","reset.bridges_single.list_2":"The accessories will become stale in HomeKit (showing no response). To remove them, you will need to manually remove this bridge from HomeKit. You can do this in the Home app from the Home Settings section.","reset.bridges_single.list_3":"You can then attempt to pair the bridge again if required.","reset.bridges_single.title":"Unpair Single Bridge","reset.cached_accessory_removed":"Odstran\u011Bno p\u0159\xEDslu\u0161enstv\xED z cache.","reset.clear_cache_all.desc":"Remove all accessories from the cache.","reset.clear_cache_all.list_1":"When clicking on the remove button below, Homebridge will restart and all your existing accessories will be removed from Homebridge and HomeKit.","reset.clear_cache_all.list_2":"All associated HomeKit data will also be removed, this includes room associations, scenes and automations that this accessory uses.","reset.clear_cache_all.list_3":"After Homebridge restarts, your plugins will re-add any accessories as if the plugin was being installed for the first time.","reset.clear_cache_all.title":"Remove All Accessories","reset.clear_cache_bridge.desc":"Remove all accessories published by a bridge from the cache.","reset.clear_cache_bridge.empty":"You have no bridges from which to remove accessories.","reset.clear_cache_bridge.list_1":"This function can be used to reset a plugin's existing accessories in HomeKit. They will be removed from Homebridge/HomeKit and then re-added by the plugin as new accessories.","reset.clear_cache_bridge.list_2":"The child bridge's pairing details and status will remain the same.","reset.clear_cache_bridge.title":"Remove Bridge Accessories","reset.clear_cache_single.desc":"Remove a single accessory from the cache.","reset.clear_cache_single.list_1":"Some plugins don't clean up after themselves properly! If an accessory that you no longer have in Homebridge is still being displayed in HomeKit, you can remove it from the cache.","reset.clear_cache_single.list_2":"This function can be used to reset an existing accessory in HomeKit. It will be removed from Homebridge/HomeKit and then re-added by the plugin as a new accessory.","reset.clear_cache_single.list_3":"When removing an accessory from the cache, all its associated HomeKit data will be removed. This includes any associated scenes and automations that use this accessory.","reset.clear_cache_single.list_4":"Accessories can only be removed when Homebridge is not running. Homebridge will automatically restart when clicking on each of the remove buttons below. If you need to remove multiple accessories, please be patient and allow Homebridge to restart between each removal.","reset.clear_cache_single.title":"Remove Single Accessory","reset.delete_failed":"Nepoda\u0159ilo se smazat p\u0159\xEDslu\u0161enstv\xED.","reset.delete_success":"Restartov\xE1n\xED Homebridge a vymaz\xE1n\xED pam\u011Bti cache pro p\u0159\xEDslu\u0161enstv\xED.","reset.error_message":"Accessory cache could not be loaded. You may not have any cached accessories.","reset.failed_to_reset":"Resetov\xE1n\xED Homebridge se nezda\u0159ilo. Viz log.","reset.force_restart_hb_help_text":"Tato akce slou\u017E\xED k vynucen\xED slu\u017Eby hb-service, aby provedla \xFApln\xFD restart.","reset.remove_cached_accessories_single_empty":"You have no cached accessories to remove.","reset.removing_cached_accessory_please_wait":"Odeb\xEDr\xE1n\xED p\u0159\xEDslu\u0161enstv\xED z cache, \u010Dekejte pros\xEDm\u2026","restart.child_bridge_list":"Please restart these child bridges for the changes to apply:","restart.child_bridges":"Please restart the plugin's child bridges for the changes to apply.","restart.homebridge":"Please restart Homebridge for the changes to apply.","restart.label_restart_command_executed":"P\u0159\xEDkaz restartov\xE1n\xED spu\u0161t\u011Bn","restart.please_wait_while_server_restarts":"\u010Cekejte pros\xEDm, tato str\xE1nka se automaticky p\u0159esm\u011Bruje, kdy\u017E bude server znovu online.","restart.server_is_taking_long_time_to_restart":"Restartov\xE1n\xED serveru trv\xE1 dlouhou dobu. Mo\u017En\xE1 budete muset ru\u010Dn\u011B spustit slu\u017Ebu Homebridge.","restart.service_ready":"Homebridge Server Ready","restart.title_restart":"Restartov\xE1n\xED Homebridge","restart.toast_server_restart_error":"Do\u0161lo k chyb\u011B p\u0159i odes\xEDl\xE1n\xED p\u0159\xEDkazu restartov\xE1n\xED serveru","restart.toast_server_restart_timeout":"Serveru trv\xE1 del\u0161\xED dobu, ne\u017E se vr\xE1t\xED do online re\u017Eimu","restart.toast_server_restarted":"Server restartov\xE1n","restart.ui_online":"Homebridge UI Online","rpi.throttled.currently_message":"Toto Raspberry Pi hl\xE1s\xED podp\u011Bt\xED; zkontrolujte, zda je p\u0159ipojen ke vhodn\xE9mu zdroji nap\xE1jen\xED. Podp\u011Bt\xED m\u016F\u017Ee zp\u016Fsobit nestabilitu syst\xE9mu a po\u0161kozen\xED SD karty.","rpi.throttled.previously_message":"Toto Raspberry Pi hl\xE1silo podp\u011Bt\xED od posledn\xEDho restartu; zkontrolujte, zda je p\u0159ipojen ke vhodn\xE9mu zdroji nap\xE1jen\xED.","rpi.throttled.undervoltage_title":"Podp\u011Bt\xED","settings.cache.desc":"Homebridge maintains accessories in cache so they aren't removed and re-added to HomeKit each time Homebridge restarts. Sometimes this cache can become out of sync with the actual accessories in Homebridge.","settings.cache.title":"Accessories","settings.changes.saved":"Your changes have been saved and require a restart to take effect.","settings.datetime.incorrect":"The date and time on your Homebridge server seem to be incorrect. This may cause unexpected issues. Click here for more information.","settings.display.blue":"Blue","settings.display.bluegrey":"Blue Grey","settings.display.brown":"Brown","settings.display.cyan":"Cyan","settings.display.dark":"Dark","settings.display.deep_purple":"Deep Purple","settings.display.green":"Green","settings.display.grey":"Grey","settings.display.indigo":"Indigo","settings.display.lang":"Language","settings.display.light":"Light","settings.display.lighting_mode":"Lighting Mode","settings.display.login_wallpaper":"Login Wallpaper","settings.display.login_wallpaper_desc":"A custom login wallpaper can be set by adding a <code>ui-wallpaper.jpg</code> file to your Homebridge storage directory, or by providing a full path to a local image file here.","settings.display.orange":"Orange","settings.display.pink":"Pink","settings.display.purple":"Purple","settings.display.red":"Red","settings.display.teal":"Teal","settings.display.temp_units":"Temperature Units","settings.display.temp_units.c":"Celsius (\xB0C)","settings.display.temp_units.f":"Fahrenheit (\xB0F)","settings.display.theme":"Theme","settings.general.title_display":"Display","settings.general.title_general":"General","settings.mdns_advertiser":"mDNS Inzerent","settings.mdns_advertiser_exp":"experimental","settings.mdns_advertiser_help":"Pokud m\xE1te pot\xED\u017Ee s p\u0159ipojen\xEDm k Homebridge, zkuste pou\u017E\xEDt n\u011Bkter\xE9ho z alternativn\xEDch inzerent\u016F mDNS.","settings.mdns_advertiser_not_connected":"Not Connected","settings.mdns_advertiser_rec":"recommended","settings.network.label_interface_name":"Jm\xE9no rozhran\xED","settings.network.label_ip_address":"IP Adresa","settings.network.message_network_interface":"Pokud nejsou vybr\xE1na \u017E\xE1dn\xE1 s\xED\u0165ov\xE1 rozhran\xED, Homebridge se pokus\xED automaticky ur\u010Dit, na kter\xFDch rozhran\xEDch m\xE1 inzerovat.","settings.network.port_hb":"Homebridge Port","settings.network.port_hb_desc":"The port number to run the Homebridge bridge on. This must be between 1025 and 65533, and should not be the same as the Homebridge UI port.","settings.network.port_ui":"UI Port","settings.network.port_ui_desc":"The port number to run the Homebridge UI on.","settings.network.title_network":"Network","settings.network.title_network_interfaces":"Internetov\xE9 Rozhran\xED","settings.service.debug_tooltip":"Some plugins require you to set the DEBUG environment variable to enable debug level logging.","settings.service.node_tooltip":"Node.js runtime options for this process. This should be kept blank unless you know what you are doing.","settings.startup.debug":"Homebridge Debug Mode","settings.startup.debug_desc_v1":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge as well as all child bridges. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.debug_desc_v2":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge. The setting for child bridges can be found in the child bridge configuration from the plugins page. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.insecure":"Homebridge 'Insecure' Mode","settings.startup.insecure_desc":"To control your accessories via the Homebridge UI you must be running Homebridge in insecure mode.","settings.startup.keep_accessories":"Keep Accessories Of Uninstalled Plugins","settings.startup.keep_accessories_desc":"If enabled, accessories of platform plugins will remain in the cache even after the plugin is uninstalled. This can be useful if you plan to reinstall the plugin later.","settings.title_startup_options":"Mo\u017Enosti spu\u0161t\u011Bn\xED","settings.unpair_bridge.load_error":"Paired bridges could not be loaded.","settings.unpair_bridge.unpair_error":"Failed to unpair bridge.","setup.button_get_started":"Za\u010Dn\u011Bme","setup.create_account":"Vytvo\u0159it \xDA\u010Det","setup.create_account_reason":"Do webov\xE9ho rozhran\xED spr\xE1vce Homebridge mus\xED b\xFDt nakonfigurov\xE1no ov\u011B\u0159ov\xE1n\xED heslem. I kdy\u017E je Homebridge p\u0159\xEDstupn\xFD pouze ve va\u0161\xED m\xEDstn\xED s\xEDti, je st\xE1le d\u016Fle\u017Eit\xE9 jej chr\xE1nit p\u0159ed neomezen\xFDm p\u0159\xEDstupem.","setup.open_dashboard":"Otev\u0159\xEDt Dashboard","setup.welcome_to_homebridge":"V\xEDtejte v rozhran\xED Homebridge",setup_wizard_message_complete_message:"Postup nastaven\xED je dokon\u010Den. Nyn\xED m\u016F\u017Eete za\u010D\xEDt pou\u017E\xEDvat Homebridge.",setup_wizard_message_complete_title:"Gratulujeme!",setup_wizard_message_restore:"Restore From Backup","status.code_scan":"Naskenov\xE1n\xEDm p\u0159idejte do HomeKit","status.cpu.load":"Zat\xED\u017Een\xED","status.cpu.temp":"Teplota","status.cpu.title_cpu":"Procesor","status.credits.title":"Credits","status.homebridge.checking":"Kontrola aktualizac\xED\u2026","status.homebridge.up_to_date":"Aktu\xE1ln\xED","status.memory.label_available":"Voln\xE1","status.memory.label_total":"Celkov\xE1","status.memory.title_memory":"Pam\u011B\u0165 RAM","status.network.received_per_second":"P\u0159ijato","status.network.sent_per_second":"Odesl\xE1no","status.network.title_network":"Aktivita S\xEDt\u011B","status.plugin_out_of_date":"Neaktualizovan\xE1 plugin","status.plugins_out_of_date":"Neaktualizovan\xE9 pluginy","status.services.label_not_running":"Nefunguje","status.services.label_running":"B\u011B\u017E\xED","status.services.updates":"Update Centre","status.uptime.title_uptime":"Doba provozu","status.widget.accessories.choose_accessories":"Vyberte p\u0159\xEDslu\u0161enstv\xED, kter\xE9 se zobraz\xED v tomto widgetu na kart\u011B P\u0159\xEDslu\u0161enstv\xED.","status.widget.add.label_pairing_code":"P\xE1rovac\xED k\xF3d","status.widget.bridge.restart_error":"Failed to restart child bridge.","status.widget.clock":"Hodiny","status.widget.clock_dateformat":"Form\xE1t data","status.widget.clock_timeformat":"Form\xE1t \u010Dasu","status.widget.font_size":"Velikost fontu","status.widget.font_weight":"Tlou\u0161\u0165ka fontu","status.widget.hide_on_mobile":"Skr\xFDt v kompaktn\xEDm zobrazen\xED (mobiln\xED displeje)","status.widget.homebridge_logs":"Logy Homebridge","status.widget.info":"Syst\xE9mov\xE9 informace","status.widget.info.config_path":"Cesta ke konfiguraci","status.widget.info.disabled":"Disabled","status.widget.info.docker":"Docker","status.widget.info.glibc_message":"This message indicates that your operating system does not support newer versions of Node.js. To resolve this and be able to install updated versions of Node.js in the future, you will need to update your operating system to a more recent version.","status.widget.info.glibc_title":"OS Update","status.widget.info.hostname":"N\xE1zev hostitele","status.widget.info.ipv4":"IPv4","status.widget.info.ipv6":"IPv6","status.widget.info.no":"No","status.widget.info.node_unsupp":"Unsupported","status.widget.info.node_unsupp_message":"You are running a version of Node.js that is not officially supported by Homebridge. You should consider changing to a supported version.","status.widget.info.node_unsupp_title":"Unsupported Node Version","status.widget.info.node_update_message":"Homebridge requires Node.js installed on your system to run. From time to time, you will need to update the Node.js runtime to enable support for new features. Homebridge (and verified plugins) support all current Active and Maintenance LTS releases of Node.js.","status.widget.info.node_update_title":"Node Update","status.widget.info.nodejs_path":"Node.js Path","status.widget.info.nodejs_version":"Node.js verze","status.widget.info.os":"OS","status.widget.info.plugin_path":"Cesta k pluginu","status.widget.info.service_mode":"Servisn\xED re\u017Eim","status.widget.info.service_user":"U\u017Eivatel","status.widget.info.servicemode_message":"Standalone mode is no longer recommended. Setting up Homebridge and Homebridge UI with hb-service has the same benefits of standalone mode but is much easier to setup and maintain.","status.widget.info.servicemode_title":"Service Mode","status.widget.info.storage_path":"Cesta k programu","status.widget.info.synology_package":"Synology Bal\xED\u010Dek","status.widget.info.timezone":"\u010Casov\xE1 z\xF3na","status.widget.info.yes":"Yes","status.widget.network.history_items":"History Items","status.widget.network.items":"items","status.widget.network.network_interface":"Network Interface","status.widget.network.none_selected":"None selected in settings - using default.","status.widget.network.refresh_interval":"Refresh Interval","status.widget.network.refresh_note":"Refresh the page after saving for changes to take effect.","status.widget.network.seconds":"seconds","status.widget.qr_paired":"Sp\xE1rov\xE1no","status.widget.qr_unpaired":"Nesp\xE1rov\xE1no","status.widget.show_hide":"Show/Hide Widgets","status.widget.title_manage_widget":"Spravovat widgety","status.widget.uptime.label_process":"Proces","status.widget.uptime.label_server":"Server","status.widget.weather.label_config_required_help":"Vyberte sv\xE9 m\u011Bsto v nastaven\xED widgetu.","status.widget.weather.label_search_for_your_city":"Najd\u011Bte sv\xE9 m\u011Bsto:","status.widget.weather.title_weather":"Po\u010Das\xED","support.dev.api":"Homebridge API","support.dev.api_hap":"HAP-NodeJS API","support.dev.api_hap_sub":"HAP-NodeJS is an implementation of the HomeKit Accessory Server as specified in the HomeKit Accessory Protocol (HAP), which is defined by Apple as part of the HomeKit Framework.","support.dev.api_sub":"Homebridge is a lightweight Node.js server you can run on your home network to emulate the HomeKit Accessory Protocol (HAP).","support.dev.item_swagger":"Swagger Docs","support.dev.item_swagger_sub":"The Homebridge REST API allows you to interact with your Homebridge server using HTTP requests.","support.dev.template":"Plugin Template Repo","support.dev.template_sub":"A template Homebridge plugin that can be used as a base to help you get started developing your own plugin.","support.dev.title":"Developers","support.dev.verified":"Verified By Homebridge","support.dev.verified_sub":"The Verified By Homebridge program allows plugin developers to get their plugins reviewed and endorsed by the Homebridge project team.","support.links.discord":"Discord Server","support.links.discord_sub":"Join the Homebridge Discord chat server to chat with other users and developers.","support.links.documentation":"Documentation","support.links.documentation_sub":"The Homebridge documentation provides a wealth of information on how to get started with Homebridge and common issue resolutions.","support.links.issue":"Report An Issue","support.links.issue_sub":"If you are experiencing an issue with Homebridge, please open a new issue on GitHub. This should not be used for issues with specific plugins.","support.links.reddit":"Reddit Community","support.links.reddit_sub":"The Homebridge subreddit is a great place to share your Homebridge setup and ask for help.","support.links.title":"Useful Links","support.title":"Support","toast.no_auth":"Only administrators may access the requested page.","toast.title_error":"Chyba","toast.title_success":"\xDAsp\u011Bch","toast.title_warning":"Varov\xE1n\xED","users.button_add_new_user":"P\u0159idat nov\xE9ho u\u017Eivatele","users.button_add_user":"P\u0159idat u\u017Eivatele","users.label_admin_user":"Administr\xE1tor?","users.label_confirm_password":"Potvrzen\xED hesla","users.label_full_name":"Pln\xE9 jm\xE9no","users.label_new_password":"Nov\xE9 heslo","users.label_password":"Heslo","users.label_username":"U\u017Eivatelsk\xE9 jm\xE9no","users.setup_2fa":"Nastavit 2FA","users.setup_2fa_activate_error":"An error occurred activating 2FA","users.setup_2fa_cannot_setup_2fa":"Nelze nastavit 2FA","users.setup_2fa_disable":"Zak\xE1zat 2FA","users.setup_2fa_disable_current_password":"Zad\xE1n\xEDm sv\xE9ho aktu\xE1ln\xEDho hesla vypnete dvoufaktorov\xE9 ov\u011B\u0159ov\xE1n\xED:","users.setup_2fa_disable_success":"Dvoufaktorov\xE9 ov\u011B\u0159en\xED bylo zak\xE1z\xE1no.","users.setup_2fa_enable":"Povolit 2FA","users.setup_2fa_enable_error":"An error occurred setting up 2FA","users.setup_2fa_enabled_success":"Dvoufaktorov\xE9 ov\u011B\u0159en\xED bylo povoleno.","users.setup_2fa_enter_code":"Zadejte k\xF3d z autentifika\u010Dn\xED aplikace:","users.setup_2fa_scan_qr_code":"Naskenujte n\xED\u017Ee QR k\xF3d do autentifika\u010Dn\xED aplikace:","users.setup_2fa_server_time_out":"Hodiny va\u0161eho serveru jsou mimo o {{ timeDiffError }} ms. Maxim\xE1ln\u011B je povoleno +/-5000 ms.","users.setup_2fa_warning":"Dvoufaktorov\xE9 ov\u011B\u0159ov\xE1n\xED vy\u017Eaduje, aby server Homebridge m\u011Bl p\u0159i p\u0159ihla\u0161ov\xE1n\xED velmi p\u0159esn\xFD datum a \u010Das. Pokud v\xE1\u0161 server nem\xE1 schopnost udr\u017Eovat p\u0159esn\xFD \u010Das, nem\u011Bli byste 2FA povolovat, jinak riskujete, \u017Ee budete zablokov\xE1ni v u\u017Eivatelsk\xE9m rozhran\xED Homebridge..","users.title_add_user":"P\u0159idat u\u017Eivatele","users.title_edit_user":"Editovat u\u017Eivatele","users.title_users":"U\u017Eivatel","users.toast_added_new_user":"P\u0159id\xE1n nov\xFD u\u017Eivatel","users.toast_failed_to_add_user":"Nepoda\u0159ilo se p\u0159idat u\u017Eivatele","users.toast_failed_to_delete_user":"Smaz\xE1n\xED u\u017Eivatele se nezda\u0159ilo","users.toast_updated_user":"U\u017Eivatel byl aktualizovan\xFD","users.toast_user_deleted":"U\u017Eivatel byl smaz\xE1n"}});var Ss=y((Nd,aa)=>{aa.exports={"accessories.button_add_room":"Raum hinzuf\xFCgen","accessories.button_hidden_hide":"Versteckte ausblenden","accessories.button_hidden_show":"Versteckte einblenden","accessories.control.auto":"Auto","accessories.control.away":"Abwesend","accessories.control.battery_charging":"L\xE4dt","accessories.control.battery_notchargeable":"Nicht aufladbar","accessories.control.battery_notcharging":"Geladen","accessories.control.brightness":"Helligkeit","accessories.control.closed":"Geschlossen","accessories.control.closing":"Beim Schlie\xDFen","accessories.control.cool":"K\xFChlen","accessories.control.default_room":"Standardraum","accessories.control.default_running_time":"Voreingestellte Laufzeit","accessories.control.dehumidifying":"Entfeuchten","accessories.control.detected":"Erkannt","accessories.control.drag_here":"Hierher ziehen","accessories.control.fan":"Ventilator","accessories.control.heat":"Heizen","accessories.control.home":"Anwesend","accessories.control.humidifying":"Befeuchten","accessories.control.jammed":"Blockiert","accessories.control.light":"Licht","accessories.control.locked":"Abgeschlossen","accessories.control.mute":"Stummschalten","accessories.control.night":"Nacht","accessories.control.not_detected":"Nicht erkannt","accessories.control.not_mute":"An","accessories.control.off":"Aus","accessories.control.on":"An","accessories.control.open":"Offen","accessories.control.opening":"Beim \xD6ffnen","accessories.control.rotation_speed":"Umdrehungsgeschwindigkeit","accessories.control.running":"L\xE4uft","accessories.control.speaker_volume":"Lautst\xE4rke","accessories.control.stopped":"Gestoppt","accessories.control.target":"Ziel","accessories.control.target_humidity":"Zielfeuchte","accessories.control.target_temperature":"Zieltemperatur","accessories.control.triggered":"Ausgel\xF6st","accessories.control.unknown":"Unbekannt","accessories.control.unlocked":"Aufgeschlossen","accessories.control_disabled":"Homebridge-Ger\xE4testeuerung deaktiviert","accessories.hide_this_accessory":"Ger\xE4t versteckt","accessories.message_for_more_information":"f\xFCr mehr Informationen","accessories.message_must_use_insecure_mode":"Um deine Ger\xE4te zu steuern, musst du Homebridge im unsicheren Modus ausf\xFChren.","accessories.message_please_see":"Bitte beachten","accessories.name":"Name","accessories.room_name":"Raumname","accessories.rooms_not_appear_in_homekit":"Die R\xE4ume, die du hier erstellst, werden nicht in HomeKit erscheinen. Sie sind nur zum Ordnen der Ger\xE4te innerhalb von Homebridge UI gedacht.","accessories.settings_link":"Sie k\xF6nnen die Homebridge-Einstellungen jederzeit \xFCber das Hauptmen\xFC oder durch Klicken auf das Zahnrad","accessories.show_on_dashboard":"Im Dashboard Widget anzeigen","accessories.title_accessories":"Ger\xE4te","backup.backup_delete_failed":"Backup deletion failed. See logs for details.","backup.backup_download_failed":"Backup-Download fehlgeschlagen","backup.backup_exceeds_max_size":"Backup ({{ backupSize }}) exceeds maximum restore file size of {{ maxBackupSizeText }}","backup.backup_help_one":"Lade ein Backup-Archiv deiner gesamten Homebridge-Umgebung herunter. Dies wird den gesamten Inhalt deines Homebridge-Speicherverzeichnisses sichern, welches du sp\xE4ter auf jeder Plattform, die Homebridge UI laufen lassen kann, wiederherstellen kannst.","backup.backup_help_two":"Plugins, welche nicht auf npm gehostet werden oder direkt installierte Plugins von GitHub, werden nicht im Backup enthalten sein bzw. nicht wiederhergestellt werden.","backup.backup_restored":"Backup-Archiv wiederhergestellt","backup.backup_warning":"Backup-Archive enhalten sensitive Informationen und sollten nicht mit anderen geteilt werden.","backup.button_restore_backup":"Backup wiederherstellen","backup.label_choose_backup_file_to_restore":"Backup-Datei zur Wiederherstellung ausw\xE4hlen \u2026","backup.label_uploading":"L\xE4dt hoch \u2026","backup.load_error":"Config backup konnte nicht geladen werden.","backup.now":"Jetzt","backup.restore_failed":"Wiederherstellung fehlgeschlagen","backup.restore_help_one":"Stelle ein Backup-Archiv, welches zuvor mit Homebridge UI erstellt wurde, wieder her. Deine Homebridge-Konfiguration, Ger\xE4te im Cache, HomeKit-Verbindungen und Homebridge UI-Benutzerkonten werden wiederhergestellt. Auch die Homebridge-Plugins, die du installiert hattest, werden \xFCber die npm Registry heruntergeladen.","backup.restore_help_two":"Du musst dich nach der Wiederherstellung mit den Anmeldedaten aus der wiederhergestellten Instanz bei Homebridge UI anmelden.","backup.restore_max_size":"Sie k\xF6nnen ein Backup-Archiv bis zu einer Gr\xF6\xDFe von {{ maxBackupSizeText }} wiederherstellen.","backup.restore_warning":"Durch die Wiederherstellung von einem Backup wird die aktuelle Homebridge-Konfiguration unwiderruflich \xFCberschreiben.","backup.scheduled_backup_time":"Jeden Tag um {{ backupTime }} wird automatisch ein komplettes Backup der Homebridge-Instanz erstellt und f\xFCr {{ dayCount }} Tage gespeichert.","backup.title_backup":"Backup","child_bridge.about":"Homebridge erlaubt es dir, die Plattform oder Ger\xE4te deiner Plugins als eine isolierten Unter-Bridge zu betreiben. Das kann die allgemeine Reaktionsf\xE4higkeit und Zuverl\xE4ssigkeit von Homebridge verbessern.","child_bridge.bridge_connect":"Verbinde zu HomeKit","child_bridge.bridge_settings":"Bridge Einstellungen","child_bridge.bridges":"HomeKit Bridges","child_bridge.bridges_paired":"Jede Unter-Bridge Plattform oder Ger\xE4t muss separat mit HomeKit gekoppelt werden.","child_bridge.config.debug":"Debug Modus","child_bridge.config.description":"Diese Felder sind nicht erforderlich, k\xF6nnen aber verwendet werden, um die HomeKit-Konfiguration f\xFCr diese Bridge zu \xFCberschreiben.","child_bridge.config.firmware":"Firmware Version","child_bridge.config.header":"Konfiguration","child_bridge.config.manufacturer":"Hersteller","child_bridge.config.model":"Model","child_bridge.config.name":"Name","child_bridge.must_configure_plugin":"Du musst dieses Plugin konfigurieren, bevor du dessen Bridge Einstellungen verwalten kannst.","child_bridge.reset_accessories":"Zubeh\xF6r zur\xFCcksetzen","child_bridge.reset_accessories_list":"W\xE4hlen Sie unten aus, von welchen Unter-Bridges Sie das Zubeh\xF6r zur\xFCcksetzen m\xF6chten:","child_bridge.restart":"Unter-Bridge neustarten","child_bridge.restart_homebridge":"Homebridge neu starten, um die Einrichtung dieser Unter-Bridge abzuschlie\xDFen.","child_bridge.restart_plural":"Unter-Bridge neustarten","child_bridge.return_to_pair":"Zu dieser Seite zur\xFCckkehren, nachdem Homebridge neu gestartet wurde, um den Kopplungs-QR-Code zu sehen.","child_bridge.select_type":"W\xE4hle die Plattform oder das Ger\xE4t, welches du als Unter-Bridge betreiben m\xF6chtest","child_bridge.setup":"Unter-Bridges einrichten","child_bridge.start":"Unter-Bridge starten","child_bridge.start_plural":"Unter-Bridges starten","child_bridge.stop":"Unter-Bridge stoppen","child_bridge.stop_plural":"Unter-Bridges stoppen","child_bridge.wiki_link":"Mehr \xFCber Unter-Bridges erfahren","config.config_accessory_must_be_array":"accessories muss ein Array sein []","config.config_bridge_missing":"Bridge-Einstellungen fehlen","config.config_invalid_json":"Konfiguration enth\xE4lt ung\xFCltiges JSON","config.config_platform_must_be_array":"platforms muss ein Array sein []","config.config_username_error":"Der Bridge-Benutzername muss aus 6 Doppelpunkt-getrennten Hexadezimalzeichen (A-F 0-9) bestehen.","config.error_blocks_objects":"Alle {{ type }} Bl\xF6cke m\xFCssen Objekte sein.","config.error_blocks_type":"Alle {{ type }} Bl\xF6cke m\xFCssen {{ type }} Attribute verwenden.","config.error_string_array":"Jedes Element in {{ key }} Array muss ein String sein.","config.error_string_type":"Das {{ type }} Atteribut muss ein String sein.","config.failed_to_save_config":"Speichern der Konfiguration fehlgeschlagen","config.restore.confirm":"Klicke auf Speichern, um zu best\xE4tigen, dass diese Sicherung wiederhergestellt werden soll.","config.restore.copy_to_editor":"In den Editor kopieren","config.restore.no_backups":"Keine Sicherungen","config.restore.title_restore_homebridge_backup":"Wiederherstellen der Homebridge-Konfigurationssicherung","config.restore.toast_backups_deleted":"Alle Backups gel\xF6scht","config.title_backup_loaded":"Sicherung geladen","form.button_cancel":"Abbrechen","form.button_close":"Schlie\xDFen","form.button_delete":"L\xF6schen","form.button_disable":"Deaktivieren","form.button_download":"Download","form.button_edit":"Bearbeiten","form.button_enable":"Aktivieren","form.button_hide":"Verstecken","form.button_lock":"Sperren","form.button_more_info":"Mehr Informationen","form.button_remove":"Entfernen","form.button_reset":"Zur\xFCcksetzen","form.button_restore":"Restore","form.button_save":"Speichern","form.button_show":"Show","form.button_unlock":"Freischalten","form.button_unpair":"Unpair","form.label_invalid":"Config validation failed - you can still save your changes.","form.label_invalid_strict":"Config validation failed - please review the form before saving.","form.label_valid":"Config validation passed.","form.select.auto":"Automatisch (Browsereinstellungen verwenden)","login.button_login":"Anmeldung","login.invalid_credentials":"Ung\xFCltiger Benutzername und / oder Passwort","login.label_2fa_code":"Zwei-Faktor-Authentifizierungs-Code","login.label_password":"Passwort","login.label_username":"Benutzername","login.message_invalid_2fa_code":"Der eingegebene Code ist falsch oder abgelaufen.","logs.download.error":"Download der Protokolldatei fehlgeschlagen.","logs.download_warning":"Homebridge-Logdateien k\xF6nnen pers\xF6nliche Informationen, Passw\xF6rter or Zugrifftokens beinhalten. Bitte sieh dir die Logdatei an und entferne alle sensitiven Informationen, bevor du sie mit anderen teilst.","logs.log_file_truncated":"Logdatei abgeschnitten.","logs.title_download_log_file":"Logdatei herunterladen","logs.title_truncate_log_file":"Logdatei abscheiden","logs.truncate.error":"K\xFCrzen der Protokolldatei fehlgeschlagen.","logs.truncate_log_warning":"Durch diese Aktion werden deine bestehenden Homebridge-Logdateien unwiderruflich gel\xF6scht. Bist du sicher, dass du fortfahren willst?","menu.config_json_editor":"JSON Config","menu.docker.restart_container":"Container neustarten","menu.docker.startup_script":"Start-Skript","menu.docker.terminal":"Konsole","menu.hbrestart.confirm_hb":"Homebridge neustarten","menu.hbrestart.confirm_ui":"HB Service & UI neustarten","menu.hbrestart.title":"Homebridge neustarten","menu.label_accessories":"Ger\xE4te","menu.label_plugins":"Plugins","menu.label_settings":"Einstellungen","menu.label_settings_advanced":"UI Erweiterte Einstellungen","menu.label_status":"Status","menu.linux.label_logs":"Logs","menu.linux.label_restart_server":"Server neustarten","menu.linux.label_shutdown_server":"Server herunterfahren","menu.linux.label_terminal":"Konsole","menu.restart.title":"Energieoptionen","menu.settings.title":"Einstellungen","menu.tooltip_logout":"Ausloggen","menu.tooltip_restart":"Neustart","menu.tooltip_user_accounts":"Benutzerkonten","menu.tooltip_view_logs":"Protokoll anzeigen","platform.docker.container_restarted":"Docker-Container wurde neu gestartet","platform.docker.must_use_hashbang":"Skript muss #!/bin/sh hashbang verwenden.","platform.docker.restart_required":"Du musst diesen Docker-Container neu starten, damit die \xC4nderungen wirksam werden.","platform.docker.run_with_restart":"Stelle sicher, dass du den Docker-Container mit <code>--restart=always</code> ausf\xFChrst","platform.docker.script_help":"Dieses Skript wird jedes Mal ausgef\xFChrt, wenn der Docker-Container gestartet wird. Du kannst damit zus\xE4tzliche Pakete installieren, die deine Plugins ben\xF6tigen, wie zB ffmpeg oder libpcap-dev.","platform.docker.script_saved":"Startskript gespeichert","platform.docker.server_long_time":"Der Neustart des Servers dauert sehr lange. M\xF6glicherweise musst du den Docker-Container manuell aufrufen.","platform.docker.title_restarting":"Docker-Container neu starten","platform.linux.long_time":"Der Neustart des Servers dauert l\xE4nger als gew\xF6hnlich. M\xF6glicherweise muss der Homebridge-Dienst manuell gestartet werden.","platform.linux.restart":"Bitte warten, diese Seite wird automatisch umgeleitet, wenn Homebridge wieder online ist.","platform.linux.restarting_server":"Neustart des Servers","platform.linux.server_restart_error":"Beim Senden des Neustartbefehls an den Server ist ein Fehler aufgetreten","platform.linux.server_restarted":"Server wurde neu gestartet","platform.linux.server_taking_long_time":"Der Server braucht lange, um wieder online zu gehen","platform.linux.server_will_power_down":"Der Server wird in K\xFCrze heruntergefahren.","platform.linux.shutting_down_server":"Herunterfahren des Servers","platform.version.restart_required":"Homebridge UI v{{ uiVersion }} wurde installiert, aber der Serverdienst l\xE4uft immer noch mit v{{ serverVersion }}.","platform.version.service_restart_required":"Dienst-Neustart erforderlich","plugins.bridge.action_error":"Fehler bei {{ action }} der Unter-Bridge(s).","plugins.button_homepage":"Plugin Homepage","plugins.button_set_up":"Einrichten","plugins.button_settings":"Einstellungen","plugins.button_uninstall":"Deinstallieren","plugins.button_update":"Aktualisieren","plugins.compat.are_you_sure":"Sind Sie sicher, dass Sie trotzdem weitermachen wollen?","plugins.compat.hb_node_too_low":"{{ packageName }} v{{ latestVersion }} ben\xF6tigt Node.js v{{ minVersion }} oder neuer. Du nutzt derzeit Node.js {{ installedVersion }}.","plugins.compat.hb_too_low":"Das {{ pluginName }} Plugin ben\xF6tigt Homebridge v{{ minVersion }} oder neuer. Du nutzt derzeit Homebridge v{{ installedVersion }}.","plugins.compat.node_first":"Bitte update Node.js, bevor du {{ packageName }} updatest.","plugins.compat.node_link":"Wie man Node.js aktualisiert","plugins.compat.node_too_low":"Das {{ pluginName }}-Plugin empfiehlt Homebridge v{{ minVersion }} oder neuer. Du nutzt derzeit Homebridge v{{ installedVersion }}.","plugins.compat.title":"Kompatibilit\xE4tspr\xFCfung","plugins.config.load_error":"Fehler beim laden der Plugin-Konfiguration.","plugins.config.must_be_array":"Plugin-Konfiguration muss ein array sein.","plugins.config.must_be_array_objects":"Plugin-Konfigurationmsus ein Array aus Objekten sein.","plugins.config.must_be_object":"Config-Bl\xF6cke m\xFCssen Objekte seib.","plugins.config.name_property":'Accessory muss ein g\xFCltiges "name" Attribut besitzen',"plugins.config.please_fix":"PBitte beheben Sie Validierungsfehler, bevor Sie einen neuen Block hinzuf\xFCgen.","plugins.config.remove_error":"Plugin-Konfiguration konnte nicht entfernt werden.","plugins.disable.error":"Das Plugin konnte nicht deaktiviert werden.","plugins.donate.button_not_verified":"Nicht verifiziert","plugins.donate.button_verified":"Verifiziert","plugins.donate.message_1":"Da immer mehr Benutzer ihre Plugins \xFCber die Homebridge-UI installieren, ist es weniger wahrscheinlich, dass sie die GitHub-Seite des Projekts besuchen, wo normalerweise die M\xF6glichkeiten zur Unterst\xFCtzung eines Entwicklers angezeigt werden.","plugins.donate.message_2":"Das Hinzuf\xFCgen von Spendenlinks direkt in der Homebridge-UI stellt sicher, dass die Benutzer wissen, wie sie die Homebridge-Entwickler unterst\xFCtzen k\xF6nnen, wenn sie dies w\xFCnschen.","plugins.donate.tile_donate_to":"An {{ author }} spenden","plugins.enable.error":"Das Plugin konnte nicht aktiviert werden.","plugins.manage.all_versions":"Alle Versionen","plugins.manage.child_bridge_restart":"Unter-Bridge erfolgreich neugestartet.","plugins.manage.child_bridge_restart_failed":"Plugin-Neustart fehlgeschlagen. Bitte starte Homebridge manuell neu.","plugins.manage.confirm_disable":"Bist du sicher, dass du {{ pluginName }} deaktivieren m\xF6chtest?","plugins.manage.confirm_disable_accessory_1":"Alle Accessories, die von diesem Plugin angezeigt werden, werden aus Homebridge UI-Accessories und aus HomeKit entfernt.","plugins.manage.confirm_disable_accessory_2":"Wenn Sie das Plugin wieder aktivieren, wird das Zubeh\xF6r wieder in der Homebridge-UI und in HomeKit angezeigt. Die Accessories verlieren ihre HomeKit-Daten (wie zugeh\xF6rige Szenen und Automatisierungen).","plugins.manage.confirm_disable_platform_1":"Alle Accessories, die von diesem Plugin angezeigt werden, werden aus Homebridge UI-Accessorie der Homebridge-UI entfernt, bleiben aber in HomeKit mit dem Vermerk \u201EKeine Antwort\u201C erhalten.","plugins.manage.confirm_disable_platform_2":"Wenn Sie das Plugin wieder aktivieren, wird das Accessory wieder in der Homebridge-UI angezeigt und kann wieder \xFCber HomeKit gesteuert werden. Das Accessory verliert nicht seine HomeKit-Daten (wie zugeh\xF6rige Szenen und Automatisierungen).","plugins.manage.confirm_enable":"Bist du sicher, dass du {{ pluginName }} aktivieren m\xF6chtest?","plugins.manage.disable":"Deaktivieren","plugins.manage.enable":"Aktivieren","plugins.manage.information":"Plugin Information","plugins.manage.install":"Installieren","plugins.manage.installed":"Installiert","plugins.manage.json_config":"JSON Konfiguration","plugins.manage.manage_version":"Version verwalten","plugins.manage.manual_update_command":"Um das Paket zu aktualisieren, \xF6ffnen Sie eine Node.js-Eingabeaufforderung als Administrator und f\xFChren Sie die folgenden Befehle aus:","plugins.manage.manual_update_required":"Manuelles Update erforderlich","plugins.manage.online_updates":"Online-Updates werden unter Windows nicht unterst\xFCtzt. Du musst Homebridge UI manuell aktualisieren, nachdem du den Homebridge-Dienst beendet hast","plugins.manage.plugin_logs":"Plugin Logs","plugins.manage.release_notes":"Versionshinweise","plugins.manage.scoped.error":"An error occurred. You can download the logs below.","plugins.manage.scoped.info":"For more information about scoped plugins and why to switch, see the wiki page {{ link }}.","plugins.manage.scoped.process":"This process will not affect your Homebridge/HomeKit accessories. You will not be able to cancel the process once it has started. It will:","plugins.manage.scoped.switch":"Switch To Scoped Plugin","plugins.manage.scoped.windows":"Online updates are not supported on Windows. You will need to install the new plugin and uninstall the old plugin manually.","plugins.manage.scoped.windows_service":'You should <span class="font-weight-bold">not</span> restart Homebridge until both steps are complete.',"plugins.manage.select_version":"Zu installierende Version ausw\xE4hlen","plugins.manage.thanks_for_updating":"Vielen Dank f\xFCr die Installation der {{ targetVersion }} Version von {{ pluginName }}.","plugins.manage.uninstall":"Deinstallieren","plugins.manage.uninstalled":"Entfernt","plugins.manage.unverified_message":"Nicht verifizierte Homebridge-Plugins bedeuten, dass sie nicht vom Homebridge-Projektteam gepr\xFCft wurden. Eine fehlende \xDCberpr\xFCfung bedeutet nicht zwangsl\xE4ufig, dass sie ineffizient sind oder Sicherheitsbedenken bestehen. Die Autoren k\xF6nnen sich aus verschiedenen Gr\xFCnden daf\xFCr entschieden haben, keine \xDCberpr\xFCfung vorzunehmen.","plugins.manage.unverified_subtitle":"{{ pluginName }} ist nicht verifiziert","plugins.manage.unverified_title":"Unverifizierte Plugins","plugins.manage.update":"Aktualisieren","plugins.manage.updated":"aktualisiert","plugins.manage.verified_message":"Homebridge-Plugins, die als verifiziert gekennzeichnet sind, wurden vom Homebridge-Projektteam \xFCberpr\xFCft, um sicherzustellen, dass sie verschiedene Anforderungen erf\xFCllen, die Best Practices und eine problemlose Benutzererfahrung f\xF6rdern.","plugins.manage.verified_subtitle":"{{ pluginName }} ist verifiziert","plugins.manage.verified_title":"Verifizierte Plugins","plugins.node_update.continue":"Weiter","plugins.placeholder_search_first":"Verwenden Sie die Suchleiste oben, um Ihr erstes Plugin zu finden","plugins.placeholder_search_plugin":"Suche nach installierbaren Plugins \u2026","plugins.settings.custom.homebridge-gsh.label_account_linked":"Konto verbunden","plugins.settings.custom.homebridge-gsh.label_link_account":"Konto verbinden","plugins.settings.custom.homebridge-gsh.label_unlink_account":"Kontoverbindung aufheben","plugins.settings.custom.homebridge-gsh.message_about":"Das Homebridge Google Smart Home-Plugin erlaubt es dir, deine Homebridge-Ger\xE4te durch einen Google Home-f\xE4higen smarten Lautsprecher oder durch die Google Home Mobile-App zu steuern.","plugins.settings.custom.homebridge-gsh.message_account_link_required":"Um diese Funktionalit\xE4t zu aktivieren, musst du dich mit deinem Google- or GitHub-Konto anmelden. Stelle sicher, dass du dasselbe Konto verwendest, wenn du die Homebridge-Aktion in der Google Home Mobile-App hinzuf\xFCgst.","plugins.settings.custom.homebridge-gsh.message_homebridge_restart_required":"Homebridge muss neugestartet werden, damit die \xC4nderungen wirksam werden.","plugins.settings.custom.homebridge-gsh.message_invalid_token":"Ung\xFCltiger Account-Token in config.json","plugins.settings.deconz.dump_no_exist":"Homebridge deCONZ Dump-Datei existiert noch nicht.","plugins.settings.hue.dump_no_exist":"Homebridge Hue Dump-Datei existiert noch nicht.","plugins.settings.label_open_config_editor":"Konfigurations-Editor \xF6ffnen","plugins.settings.message_consult_documentation":"Bitte lese die Plugin Dokumentation, um das Plugin korrekt zu konfigurieren.","plugins.settings.message_manual_config_required":"Dieses Plugin muss mithilfe der Homebridge UI Config Editor manuell konfiguriert werden.","plugins.settings.plugin_config_saved":"Plugin-Konfiguration gespeichert","plugins.settings.restart_required":"Starte Homebridge neu, um die \xC4nderungen zu \xFCbernehmen.","plugins.settings.title_settings":"Einstellungen","plugins.status_disabled":"Deaktiviert","plugins.status_installed":"Installiert","plugins.toast_failed_to_load_plugin_schema":"Plugin-Konfigurationsschema konnte nicht geladen werden.","plugins.toast_failed_to_load_plugins":"Fehler beim Laden der Plugins","plugins.uninstall_bridge_error":"Die Unter-Bridge konnte nicht entfernt werden.","plugins.uninstall_remove_config_required":"Stelle sicher, dass wenn du dieses Plugin dauerhaft entfernst, jede Konfiguration f\xFCr dieses Plugin in der config.json entfernt hast, bevor du Homebridge neu startest.","plugins.uninstall_remove_confirmation":"Bist du sicher, dass du {{ pluginName }} entfernen m\xF6chtest?","plugins.uninstall_remove_plugin_config":"Plugin Konfiguration entfernen?","plugins.uninstall_unpair_child_bridge":"Plugin Unter-Bridge entkoppeln?","plugins.uninstall_unpair_child_bridges":"{{ count }} Plugin Unter-Bridges entkoppeln?","reset.accessory_reset":"Homebridge-Ger\xE4te zur\xFCcksetzen","reset.action_is_irreversible":"Diese Aktion ist nicht umkehrbar. Bitte pr\xFCfe sie sorgf\xE4ltig, bevor du fortf\xE4hrst.","reset.bridges.desc":"Wenn Sie Probleme haben, Homebridge, ein externes Accessory oder eine Unter-Bridge mit HomeKit zu koppeln, m\xFCssen Sie m\xF6glicherweise die Kopplung mit HomeKit aufheben, um neu zu beginnen.","reset.bridges.empty":"Sie haben keine Br\xFCcken zum Entkoppeln von HomeKit.","reset.bridges.title":"Bridges","reset.bridges_all.desc":"Alle Br\xFCcken von HomeKit entkoppeln. Dazu geh\xF6ren die Homebridge-Bridge, untergeordnete Bridges und Bridges f\xFCr externe Accessories.","reset.bridges_all.list_1":"Dadurch werden die Homebridge-Bridges, alle untergeordneten Bridges und Bridges f\xFCr externe Accessories von HomeKit getrennt.","reset.bridges_all.list_2":"Beachten Sie, dass Ihre Accessories in HomeKit weiterhin ohne Reaktion angezeigt werden, bis die Bridges manuell aus HomeKit entfernt werden. Sie k\xF6nnen dies in der Home-App erledigen, indem Sie Home-Einstellungen \u2192 Home Hubs & Bridges \u2192 {Bridge} \u2192 Bridge aus Home entfernen ausw\xE4hlen.","reset.bridges_all.list_3":"Alle Homebridge-zu-HomeKit-Accessories, -Szenen und -Automatisierungen m\xFCssen nach der Aufhebung des Pairings neu konfiguriert werden.","reset.bridges_all.list_4":"Der Pin f\xFCr die Kopplung Ihrer Homebridge-Bridge mit HomeKit wird ge\xE4ndert. Sie k\xF6nnen die neuen Werte in Ihrer Homebridge-Konfiguration nach der Aufhebung des Pairings sehen.","reset.bridges_all.title":"Entkoppel alle Bridges","reset.bridges_single.desc":"Entkoppeln Sie eine einzelne Bridge von HomeKit. Dies kann eine Child-Bridge oder eine Bridge f\xFCr ein externes Accessory wie eine Kamera oder einen Fernseher sein.","reset.bridges_single.list_1":"Wenn die Kopplung einer Bridge aufgehoben wird, werden alle von dieser Bridge ver\xF6ffentlichten Accessories aus dem Homebridge-Cache entfernt.","reset.bridges_single.list_2":"Das Accessory wird in HomeKit veraltet sein (es wird keine Reaktion angezeigt). Um es zu entfernen, m\xFCssen Sie diese Bridge manuell aus HomeKit entfernen. Sie k\xF6nnen dies in der Home-App im Abschnitt 'Home-Einstellungen' tun.","reset.bridges_single.list_3":"Sie k\xF6nnen dann bei Bedarf versuchen, die BNridge erneut zu koppeln.","reset.bridges_single.title":"Entkoppel einzelne Bridge","reset.cached_accessory_removed":"Ger\xE4t aus dem Cache entfernt.","reset.clear_cache_all.desc":"Entfernen Sie alle Accessories aus dem Cache.","reset.clear_cache_all.list_1":"Wenn Sie auf die Schaltfl\xE4che 'Entfernen' unten klicken, wird Homebridge neu gestartet und alle Ihre vorhandenen Accessories wird von Homebridge und HomeKit entfernt.","reset.clear_cache_all.list_2":"Alle zugeh\xF6rigen HomeKit-Daten werden ebenfalls entfernt, einschlie\xDFlich Raumzuordnungen, Szenen und Automatisierungen, die dieses Accessory verwendet.","reset.clear_cache_all.list_3":"Nach dem Neustart von Homebridge f\xFCgen Ihre Plugins Accessories erneut hinzu, als ob das Plugin zum ersten Mal installiert worden w\xE4re.","reset.clear_cache_all.title":"Entferne alle Accessories","reset.clear_cache_bridge.desc":"Entfernen Sie alle von einer Bridge ver\xF6ffentlichten Accessories aus dem Cache.","reset.clear_cache_bridge.empty":"Sie haben keine Bridges, von denen Sie Accessories entfernen k\xF6nnen.","reset.clear_cache_bridge.list_1":"Diese Funktion kann verwendet werden, um das vorhandene Accessory eines Plugins in HomeKit zur\xFCckzusetzen. Sie werden aus Homebridge/HomeKit entfernt und dann vom Plugin als neues Accessory wieder hinzugef\xFCgt.","reset.clear_cache_bridge.list_2":"Die Pairing-Details und der Status der Child-Bridge bleiben unver\xE4ndert.","reset.clear_cache_bridge.title":"Entferne Bridge Accessories","reset.clear_cache_single.desc":"Entferne ein einzelnes Accessory aus dem Cache.","reset.clear_cache_single.list_1":"Manche Plugins r\xE4umen nicht richtig hinter sich auf! Wenn ein Accessory, das Sie nicht mehr in Homebridge haben, noch in HomeKit angezeigt wird, k\xF6nnen Sie es aus dem Cache entfernen.","reset.clear_cache_single.list_2":"Diese Funktion kann verwendet werden, um ein vorhandenes Accessory in HomeKit zur\xFCckzusetzen. Es wird aus Homebridge/HomeKit entfernt und dann vom Plugin als neues Accessory wieder hinzugef\xFCgt.","reset.clear_cache_single.list_3":"Wenn Sie ein Accessory aus dem Cache entfernen, werden alle zugeh\xF6rigen HomeKit-Daten entfernt. Dazu geh\xF6ren alle zugeh\xF6rigen Szenen und Automatisierungen, die dieses Accessory verwendet.","reset.clear_cache_single.list_4":"Accessory kann nur entfernt werden, wenn Homebridge nicht ausgef\xFChrt wird. Homebridge wird automatisch neu gestartet, wenn Sie auf eine der Schaltfl\xE4chen zum Entfernen klicken. Wenn Sie mehrere Zubeh\xF6rteile entfernen m\xFCssen, haben Sie bitte etwas Geduld und erlauben Sie Homebridge, zwischen den einzelnen Entfernungen neu zu starten.","reset.clear_cache_single.title":"Entferne einzelnes Accessory","reset.delete_failed":"Ger\xE4t konnte nicht gel\xF6scht werden.","reset.delete_success":"Homebridge wird neugestartet und Ger\xE4te-Cache wird entfernt.","reset.error_message":"Der Ger\xE4te-Cache konnte nicht geladen werden. Sie haben m\xF6glicherweise keine Ger\xE4te im Cache.","reset.failed_to_reset":"Homebridge konnte nicht zur\xFCckgesetzt werden. Siehe Protokoll.","reset.force_restart_hb_help_text":"Benutze diese Aktion, damit der hb-service Dienst einen vollst\xE4ndigen Neustart erzwingt.","reset.remove_cached_accessories_single_empty":"Du hast kein zwischengespeichertes Zubeh\xF6r zum Entfernen.","reset.removing_cached_accessory_please_wait":"Ger\xE4t aus dem Cache entfernen, bitte warten \u2026","restart.child_bridge_list":"Bitte starten Sie diese Child-Bridges neu, damit die \xC4nderungen wirksam werden:","restart.child_bridges":"Bitte starte die Unter-Bridge des Plugins neu, damit die \xC4nderungen wirksam werden.","restart.homebridge":"Bitte starte Homebridge neu, damit die \xC4nderungen wirksam werden.","restart.label_restart_command_executed":"Neustart angesto\xDFen","restart.please_wait_while_server_restarts":"Bitte warte, du wirst automatisch umgeleitet, wenn der Server wieder online ist.","restart.server_is_taking_long_time_to_restart":"Der Neustart des Servers dauert l\xE4nger als gew\xF6hnlich. M\xF6glicherweise muss der Homebridge-Dienst manuell gestartet werden.","restart.service_ready":"Homebridge Server bereit","restart.title_restart":"Homebridge neustarten","restart.toast_server_restart_error":"Beim Senden des Neustartbefehls an den Server ist ein Fehler aufgetreten","restart.toast_server_restart_timeout":"Der Server braucht lange, um wieder online zu gehen","restart.toast_server_restarted":"Server wurde neu gestartet","restart.ui_online":"Homebridge UI Online","rpi.throttled.currently_message":"Dieser Raspberry Pi meldet, dass er derzeit unter zu niedriger Spannung steht; bitte \xFCberpr\xFCfen Sie, ob er an eine geeignete Stromversorgung angeschlossen ist. Eine Unterspannung kann zur Instabilit\xE4t des Systems und zur Besch\xE4digung der SD-Karte f\xFChren.","rpi.throttled.previously_message":"Dieser Raspberry Pi hat seit dem letzten Neustart ein Unterspannungsereignis gemeldet; bitte \xFCberpr\xFCfen Sie, ob er an eine geeignete Stromversorgung angeschlossen ist.","rpi.throttled.undervoltage_title":"Unterspannung","settings.cache.desc":"Homebridge verwaltet Accessories im Cache, damit es nicht bei jedem Neustart von Homebridge entfernt und neu zu HomeKit hinzugef\xFCgt wird. Manchmal kann dieser Cache nicht mehr mit den tats\xE4chlichen Accessories in Homebridge synchronisiert werden.","settings.cache.title":"Accessories","settings.changes.saved":"Ihre \xC4nderungen wurden gespeichert und erfordern einen Neustart, um wirksam zu werden..","settings.datetime.incorrect":"Das Datum und die Uhrzeit auf Ihrem Homebridge-Server scheinen falsch zu sein. Dies kann zu unerwarteten Problemen f\xFChren. Klicken Sie hier f\xFCr weitere Informationen.","settings.display.blue":"Blau","settings.display.bluegrey":"Blau-Grau","settings.display.brown":"Brown","settings.display.cyan":"Cyan","settings.display.dark":"Dunkel","settings.display.deep_purple":"Dunkles Lila","settings.display.green":"Gr\xFCn","settings.display.grey":"Grau","settings.display.indigo":"Indigo","settings.display.lang":"Sprache","settings.display.light":"Hell","settings.display.lighting_mode":"Helligkeitsmodus","settings.display.login_wallpaper":"Login-Hintergrundbild","settings.display.login_wallpaper_desc":"Ein benutzerdefiniertes Login-Hintergrundbild k\xF6nnen Sie festlegen, indem Sie eine <code>ui-wallpaper.jpg</code>-Datei zu Ihrem Homebridge-Speicherverzeichnis hinzuf\xFCgen, oder indem Sie einen vollst\xE4ndigen Pfad zu einer lokalen Bilddatei hier angeben.","settings.display.orange":"Orange","settings.display.pink":"Rosa","settings.display.purple":"Lila","settings.display.red":"Rot","settings.display.teal":"T\xFCrkis","settings.display.temp_units":"Temperature Units","settings.display.temp_units.c":"Celsius (\xB0C)","settings.display.temp_units.f":"Fahrenheit (\xB0F)","settings.display.theme":"Theme","settings.general.title_display":"Anzeige","settings.general.title_general":"Allgemein","settings.mdns_advertiser":"mDNS Advertiser","settings.mdns_advertiser_exp":"experimentell","settings.mdns_advertiser_help":"Wenn du Probleme hast, dich mit Homebridge zu verbinden, versuche einen der alternativen mDNS Advertiser zu verwenden.","settings.mdns_advertiser_not_connected":"Nicht verbunden","settings.mdns_advertiser_rec":"empfohlen","settings.network.label_interface_name":"Schnittstellen-Name","settings.network.label_ip_address":"IP-Adresse","settings.network.message_network_interface":"Wenn keine Netzwerkschnittstellen ausgew\xE4hlt sind, versucht Homebridge automatisch zu bestimmen, welche Schnittstellen angezeigt werden sollen.","settings.network.port_hb":"Homebridge Port","settings.network.port_hb_desc":"Die Portnummer, unter der die Homebridge-Bridge ausgef\xFChrt werden soll. Diese muss zwischen 1025 und 65533 liegen und sollte nicht mit dem Port der Homebridge-Benutzeroberfl\xE4che \xFCbereinstimmen.","settings.network.port_ui":"UI Port","settings.network.port_ui_desc":"Die Portnummer, \xFCber die die Homebridge UI ausgef\xFChrt werden soll.","settings.network.title_network":"Netzwerk","settings.network.title_network_interfaces":"Netzwerkschnittstellen","settings.service.debug_tooltip":"Bei einigen Plugins m\xFCssen Sie die Umgebungsvariable DEBUG setzen, um die Protokollierung auf Debug-Ebene zu aktivieren.","settings.service.node_tooltip":"Node.js-Laufzeitoptionen f\xFCr den Homebridge-Prozess. Dies sollte leer bleiben, wenn Sie nicht wissen, was Sie tun.","settings.startup.debug":"Homebridge Debug Mode","settings.startup.debug_desc_v1":"Aktivieren Sie diese Option, wenn Homebridge ausf\xFChrlichere Logs ausgeben soll. Diese Einstellung gilt sowohl f\xFCr die Haupt-Homebridge als auch f\xFCr alle Child-Bridges. Einige Plugins k\xF6nnen sich auch an diese Einstellung halten und ausf\xFChrlichere Protokolle ausgeben.","settings.startup.debug_desc_v2":"Aktivieren Sie diese Option, wenn Homebridge ausf\xFChrlichere Logs ausgeben soll. Diese Einstellung gilt f\xFCr die Main-Homebridge-Bridge. Die Einstellung f\xFCr Child-Bridges finden Sie in der Child-Bridge-Konfiguration auf der Plugins-Seite. Einige Plugins k\xF6nnen sich auch an diese Einstellung halten und ausf\xFChrlichere Protokolle ausgeben.","settings.startup.insecure":"Homebridge 'Insecure' Mode","settings.startup.insecure_desc":"Um Ihre Accessories \xFCber die Homebridge-Benutzeroberfl\xE4che zu steuern, m\xFCssen Sie Homebridge im 'Insecure' Mode ausf\xFChren.","settings.startup.keep_accessories":"Behalte Accessories von nicht installierten Plugins","settings.startup.keep_accessories_desc":"Wenn diese Option aktiviert ist, verbleiben Accessories von Plattform-Plugins im Cache, auch wenn das Plugin deinstalliert wird. Dies kann n\xFCtzlich sein, wenn Sie planen, das Plugin sp\xE4ter erneut zu installieren.","settings.title_startup_options":"Startoptionen","settings.unpair_bridge.load_error":"Gepairte Bridge konnten nicht geladen werden.","settings.unpair_bridge.unpair_error":"Entkopplung der Bridge fehlgeschlagen.","setup.button_get_started":"Los geht's","setup.create_account":"Konto erstellen","setup.create_account_reason":"Die Passwortauthentifizierung f\xFCr die Homebridge-Administrationsweboberfl\xE4che muss konfiguriert werden. Auch wenn Homebridge nur in deinem lokalen Netzwerk zug\xE4nglich ist, ist es wichtig, es vor ungehindertem Zugriff zu sch\xFCtzen.","setup.open_dashboard":"Dashboard \xF6ffnen","setup.welcome_to_homebridge":"Wilkommen bei Homebridge",setup_wizard_message_complete_message:"Der Einrichtungsvorgang ist abgeschlossen und du kannst Homebridge jetzt verwenden.",setup_wizard_message_complete_title:"Herzlichen Gl\xFCckwunsch!",setup_wizard_message_restore:"Wiederherstellen aus Backup","status.code_scan":"Scannen, um es zu HomeKit hinzuzuf\xFCgen","status.cpu.load":"Auslastung","status.cpu.temp":"Temperatur","status.cpu.title_cpu":"Prozessor","status.credits.title":"Credits","status.homebridge.checking":"Nach Updates suchen \u2026","status.homebridge.up_to_date":"Auf dem neuesten Stand","status.memory.label_available":"Frei","status.memory.label_total":"Gesamt","status.memory.title_memory":"Arbeitsspeicher","status.network.received_per_second":"Empfangen","status.network.sent_per_second":"Gesendet","status.network.title_network":"Netzwerkaktivit\xE4ten","status.plugin_out_of_date":"Plugin nicht mehr aktuell","status.plugins_out_of_date":"Plugins nicht mehr aktuell","status.services.label_not_running":"Gestoppt","status.services.label_running":"L\xE4uft","status.services.updates":"Update Centre","status.uptime.title_uptime":"Betriebszeit","status.widget.accessories.choose_accessories":"W\xE4hle die Ger\xE4te, die in diesem Widget vom Ger\xE4te-Tab angezeigt werden sollen.","status.widget.add.label_pairing_code":"Pairing-Code","status.widget.bridge.restart_error":"Neustart der Child-Bridge fehlgeschlagen.","status.widget.clock":"Uhr","status.widget.clock_dateformat":"Datumsformat","status.widget.clock_timeformat":"Zeitformat","status.widget.font_size":"Schriftgr\xF6\xDFe","status.widget.font_weight":"Schriftst\xE4rke","status.widget.hide_on_mobile":"In kompakter Anzeige verbergen (mobile Bildschirme)","status.widget.homebridge_logs":"Homebridge Protokoll","status.widget.info":"System Informationen","status.widget.info.config_path":"Konfigurationspfad","status.widget.info.disabled":"Deaktiviert","status.widget.info.docker":"Docker","status.widget.info.glibc_message":"Diese Meldung zeigt an, dass Ihr Betriebssystem keine neueren Versionen von Node.js unterst\xFCtzt. Um dieses Problem zu beheben und in Zukunft aktualisierte Versionen von Node.js installieren zu k\xF6nnen, m\xFCssen Sie Ihr Betriebssystem auf eine neuere Version aktualisieren.","status.widget.info.glibc_title":"OS Update","status.widget.info.hostname":"Hostname","status.widget.info.ipv4":"IPv4","status.widget.info.ipv6":"IPv6","status.widget.info.no":"Nein","status.widget.info.node_unsupp":"Unsupported","status.widget.info.node_unsupp_message":"Sie verwenden eine Version von Node.js, die nicht offiziell von Homebridge unterst\xFCtzt wird. Sie sollten den Wechsel zu einer unterst\xFCtzten Version in Betracht ziehen.","status.widget.info.node_unsupp_title":"Nicht unterst\xFCtzte Node Version","status.widget.info.node_update_message":"F\xFCr die Ausf\xFChrung von Homebridge muss Node.js auf Ihrem System installiert sein. Ab und an m\xFCssen Sie die Node.js-Laufzeitumgebung aktualisieren, um die Unterst\xFCtzung f\xFCr neue Funktionen zu aktivieren. Homebridge (und verifizierte Plugins) unterst\xFCtzen alle aktuellen Active und Maintenance LTS-Versionen von Node.js.","status.widget.info.node_update_title":"Node Update","status.widget.info.nodejs_path":"Node.js Pfad","status.widget.info.nodejs_version":"Node.js Version","status.widget.info.os":"OS","status.widget.info.plugin_path":"Pluginpfad","status.widget.info.service_mode":"Service-Modus","status.widget.info.service_user":"Benutzer","status.widget.info.servicemode_message":"Der Standalone-Modus wird nicht mehr empfohlen. Die Einrichtung von Homebridge und Homebridge UI mit hb-service bietet dieselben Vorteile wie der Standalone-Modus, ist aber viel einfacher einzurichten und zu warten.","status.widget.info.servicemode_title":"Service-Modus","status.widget.info.storage_path":"Speicherpfad","status.widget.info.synology_package":"Synology-Paket","status.widget.info.timezone":"Zeitzone","status.widget.info.yes":"Ja","status.widget.network.history_items":"History Items","status.widget.network.items":"items","status.widget.network.network_interface":"Netzwerkschnittstelle","status.widget.network.none_selected":"Keine in den Einstellungen ausgew\xE4hlt - Standardeinstellung verwenden.","status.widget.network.refresh_interval":"Aktualisierungsintervall","status.widget.network.refresh_note":"Aktualisiere die Seite, damit die \xC4nderungen des Aktualisierungsintervalls wirksam werden.","status.widget.network.seconds":"Sekunden","status.widget.qr_paired":"Gekoppelte","status.widget.qr_unpaired":"Nicht Gekoppelte","status.widget.show_hide":"Widgets anzeigen/verstecken","status.widget.title_manage_widget":"Widget verwalten","status.widget.uptime.label_process":"Prozess","status.widget.uptime.label_server":"Server","status.widget.weather.label_config_required_help":"Bitte w\xE4hle deine Stadt in den Widget-Einstellungen.","status.widget.weather.label_search_for_your_city":"Suche nach deiner Stadt:","status.widget.weather.title_weather":"Wetter","support.dev.api":"Homebridge API","support.dev.api_hap":"HAP-NodeJS API","support.dev.api_hap_sub":"HAP-NodeJS ist eine Implementierung des HomeKit Accessory Server, wie er im HomeKit Accessory Protocol (HAP) spezifiziert ist, das von Apple als Teil des HomeKit Frameworks definiert wurde.","support.dev.api_sub":"Homebridge ist ein leichtgewichtiger Node.js-Server, den Sie in Ihrem Heimnetzwerk ausf\xFChren k\xF6nnen, um das HomeKit Accessory Protocol (HAP) zu emulieren.","support.dev.item_swagger":"Swagger Docs","support.dev.item_swagger_sub":"Die Homebridge REST API erm\xF6glicht Ihnen die Interaktion mit Ihrem Homebridge-Server \xFCber HTTP-Anfragen.","support.dev.template":"Plugin Template Repo","support.dev.template_sub":"Eine Vorlage f\xFCr ein Homebridge-Plugin, die als Basis f\xFCr die Entwicklung eines eigenen Plugins verwendet werden kann.","support.dev.title":"Entwickler","support.dev.verified":"Verified By Homebridge","support.dev.verified_sub":"Das Verified By Homebridge Programm erm\xF6glicht es Plugin-Entwicklern, ihre Plugins vom Homebridge-Projektteam pr\xFCfen und best\xE4tigen zu lassen.","support.links.discord":"Discord-Server","support.links.discord_sub":"Treten Sie dem Homebridge Discord-Server bei, um dich mit anderen Benutzern und Entwicklern auszutauschen.","support.links.documentation":"Dokumentation","support.links.documentation_sub":"Die Homebridge-Dokumentation bietet eine F\xFClle von Informationen zu den ersten Schritten mit Homebridge und zur L\xF6sung g\xE4ngiger Probleme.","support.links.issue":"Ein Problem melden","support.links.issue_sub":"Wenn Sie ein Problem mit Homebridge haben, \xF6ffnen Sie bitte ein neues Issue auf GitHub. Dies sollte nicht f\xFCr Probleme mit bestimmten Plugins verwendet werden.","support.links.reddit":"Reddit Community","support.links.reddit_sub":"Der Homebridge-Subreddit ist ein gro\xDFartiger Ort, um Ihre Homebridge-Einrichtung zu teilen und um Hilfe zu bitten.","support.links.title":"N\xFCtzliche Links","support.title":"Support","toast.no_auth":"Nur Administratoren k\xF6nnen diese Seite aufrufen.","toast.title_error":"Fehler","toast.title_success":"Erfolgreich durchgef\xFChrt","toast.title_warning":"Warnung","users.button_add_new_user":"Neuen Benutzer hinzuf\xFCgen","users.button_add_user":"Benutzer hinzuf\xFCgen","users.label_admin_user":"Admin-Benutzer?","users.label_confirm_password":"Best\xE4tige das Passwort","users.label_full_name":"Vollst\xE4ndiger Name","users.label_new_password":"Neues Passwort","users.label_password":"Passwort","users.label_username":"Nutzername","users.setup_2fa":"2FA-Einstellungen","users.setup_2fa_activate_error":"Beim Aktivieren der Zwei-Faktor-Authentifizierung ist ein Fehler aufgetreten","users.setup_2fa_cannot_setup_2fa":"2FA kann nicht eingerichtet werden","users.setup_2fa_disable":"2FA deaktivieren","users.setup_2fa_disable_current_password":"Gib dein aktuelles Passwort ein, um die Zwei-Faktor-Authentifizierung zu deaktivieren:","users.setup_2fa_disable_success":"Zwei-Faktor-Authentifizierung wurde deaktiviert.","users.setup_2fa_enable":"2FA aktivieren","users.setup_2fa_enable_error":"An error occurred setting up 2FA","users.setup_2fa_enabled_success":"Zwei-Faktor-Authentifizierung wurde aktiviert.","users.setup_2fa_enter_code":"Gib den Code deiner Authentifikator-App ein:","users.setup_2fa_scan_qr_code":"Scanne den unten stehenden QR-Code mit deiner Authentifikator-App:","users.setup_2fa_server_time_out":"Deine Server-Uhr weicht um {{ timeDiffError }} ms ab. Der erlaubte Maximalwert betr\xE4gt +/-5000 ms.","users.setup_2fa_warning":"Die Zwei-Faktor-Authentifizierung verlangt, dass dein Homebridge-Server eine pr\xE4zise Datum- und Zeitangabe zum Anmelden aufweist. Sollte dein Server die aktuelle Zeit nicht pr\xE4zise angeben k\xF6nnen, solltest du 2FA nicht aktivieren. Andernfalls riskierst du, dass du dich nicht mehr in Homebridge UI anmelden kannst.","users.title_add_user":"Benutzer hinzuf\xFCgen","users.title_edit_user":"Benutzer bearbeiten","users.title_users":"Benutzer","users.toast_added_new_user":"Benutzer hinzugef\xFCgt","users.toast_failed_to_add_user":"Fehler beim Hinzuf\xFCgen des Benutzers","users.toast_failed_to_delete_user":"Fehler beim L\xF6schen des Benutzers","users.toast_updated_user":"Benutzer aktualisiert","users.toast_user_deleted":"Benutzer gel\xF6scht"}});var js=y((Pd,na)=>{na.exports={"accessories.button_add_room":"Add Room","accessories.button_hidden_hide":"Hide Hidden","accessories.button_hidden_show":"Show Hidden","accessories.control.auto":"Auto","accessories.control.away":"Away","accessories.control.battery_charging":"Charging","accessories.control.battery_notchargeable":"Not Chargeable","accessories.control.battery_notcharging":"Not Charging","accessories.control.brightness":"Brightness","accessories.control.closed":"Closed","accessories.control.closing":"Closing","accessories.control.cool":"Cool","accessories.control.default_room":"Default Room","accessories.control.default_running_time":"Default Running Time","accessories.control.dehumidifying":"Dehumidifying","accessories.control.detected":"Detected","accessories.control.drag_here":"Drag Here","accessories.control.fan":"Fan","accessories.control.heat":"Heat","accessories.control.home":"Home","accessories.control.humidifying":"Humidifying","accessories.control.jammed":"Jammed","accessories.control.light":"Light","accessories.control.locked":"Locked","accessories.control.mute":"Mute","accessories.control.night":"Night","accessories.control.not_detected":"Not Detected","accessories.control.not_mute":"On","accessories.control.off":"Off","accessories.control.on":"On","accessories.control.open":"Open","accessories.control.opening":"Opening","accessories.control.rotation_speed":"Rotation Speed","accessories.control.running":"Running","accessories.control.speaker_volume":"Volume","accessories.control.stopped":"Stopped","accessories.control.target":"Target","accessories.control.target_humidity":"Target Humidity","accessories.control.target_temperature":"Target Temperature","accessories.control.triggered":"Triggered","accessories.control.unknown":"Unknown","accessories.control.unlocked":"Unlocked","accessories.control_disabled":"Homebridge Accessory Control Disabled","accessories.hide_this_accessory":"Hide this accessory","accessories.message_for_more_information":"for more information.","accessories.message_must_use_insecure_mode":"To control your accessories you must be running Homebridge in insecure mode.","accessories.message_please_see":"Please see","accessories.name":"Name","accessories.room_name":"Room Name","accessories.rooms_not_appear_in_homekit":"The rooms you create here will not appear in HomeKit, they are only for the organisation of accessories in the Homebridge UI.","accessories.settings_link":"You can access the Homebridge Settings at any time from the cog icon in the side menu.","accessories.show_on_dashboard":"Show in dashboard widget","accessories.title_accessories":"Accessories","backup.backup_delete_failed":"Backup deletion failed. See logs for details.","backup.backup_download_failed":"Backup download failed.","backup.backup_exceeds_max_size":"Backup ({{ backupSize }}) exceeds maximum restore file size of {{ maxBackupSizeText }}","backup.backup_help_one":"Download a backup archive of your entire Homebridge environment. This will backup the entire contents of your Homebridge storage directory which you can later restore on any platform capable of running the Homebridge UI.","backup.backup_help_two":"Plugins not hosted on npm, or plugins installed directly from GitHub will not be backed up or restored.","backup.backup_restored":"Backup Archive Restored","backup.backup_warning":"Backup archives contain sensitive information and should not be shared with others.","backup.button_restore_backup":"Restore Backup","backup.label_choose_backup_file_to_restore":"Choose backup file to restore\u2026","backup.label_uploading":"Uploading\u2026","backup.load_error":"Failed to load config backup.","backup.now":"Now","backup.restore_failed":"Restore Failed","backup.restore_help_one":"Restore a backup archive you previously made using the Homebridge UI. Your Homebridge config, cached accessories, HomeKit pairings and Homebridge UI user accounts will be restored. Any Homebridge plugins you had installed will also be downloaded from the npm registry.","backup.restore_help_two":"You will need to login to the Homebridge UI using the credentials from the restored instance after doing a restore.","backup.restore_max_size":"You can restore a backup archive up to {{ maxBackupSizeText }} in size.","backup.restore_warning":"Restoring from a backup will irreversibly overwrite the current Homebridge configuration.","backup.scheduled_backup_time":"A full backup of the Homebridge instance is automatically created every day at {{ backupTime }} and kept for {{ dayCount }} days.","backup.title_backup":"Backup","child_bridge.about":"Homebridge allows you to run your plugin's platform or accessory as an isolated child bridge. This can improve the general responsiveness and reliability of Homebridge.","child_bridge.bridge_connect":"Connect to HomeKit","child_bridge.bridge_settings":"Child Bridge Config","child_bridge.bridges":"HomeKit Bridges","child_bridge.bridges_paired":"Each child bridge platform or accessory will need to be paired with HomeKit separately.","child_bridge.config.debug":"Debug Mode","child_bridge.config.description":"These fields are not required, but can be used to override the HomeKit configuration for this bridge.","child_bridge.config.firmware":"Firmware Version","child_bridge.config.header":"Configuration","child_bridge.config.manufacturer":"Manufacturer","child_bridge.config.model":"Model","child_bridge.config.name":"Name","child_bridge.must_configure_plugin":"You need to configure this plugin before you can manage its bridge settings.","child_bridge.reset_accessories":"Reset Accessories","child_bridge.reset_accessories_list":"Choose from which child bridges you want to reset the accessories below:","child_bridge.restart":"Restart Child Bridge","child_bridge.restart_homebridge":"Restart Homebridge to finish setting up this child bridge.","child_bridge.restart_plural":"Restart Child Bridges","child_bridge.return_to_pair":"Return to this screen after Homebridge has restarted to view the pairing QR code.","child_bridge.select_type":"Select which platforms or accessories you want to run as a child bridge","child_bridge.setup":"Set Up Child Bridge","child_bridge.start":"Start Child Bridge","child_bridge.start_plural":"Start Child Bridges","child_bridge.stop":"Stop Child Bridge","child_bridge.stop_plural":"Stop Child Bridges","child_bridge.wiki_link":"Learn more about child bridges","config.config_accessory_must_be_array":"accessories must be an array []","config.config_bridge_missing":"Bridge settings missing","config.config_invalid_json":"Config contains invalid JSON","config.config_platform_must_be_array":"platforms must be an array []","config.config_username_error":"Bridge username must be 6 pairs of colon-separated hexadecimal characters (A-F 0-9)","config.error_blocks_objects":"All {{ type }} blocks must be objects.","config.error_blocks_type":"All {{ type }} blocks must contain the {{ type }} attribute.","config.error_string_array":"Each item in the {{ key }} array must be a string.","config.error_string_type":"The {{ type }} attribute must be a string.","config.failed_to_save_config":"Failed to save config","config.restore.confirm":"Click Save to confirm you want to restore this backup.","config.restore.copy_to_editor":"Copy to Editor","config.restore.no_backups":"No Backups","config.restore.title_restore_homebridge_backup":"Restore Homebridge Config Backup","config.restore.toast_backups_deleted":"All Backups Deleted","config.title_backup_loaded":"Backup Loaded","form.button_cancel":"Cancel","form.button_close":"Close","form.button_delete":"Delete","form.button_disable":"Disable","form.button_download":"Download","form.button_edit":"Edit","form.button_enable":"Enable","form.button_hide":"Hide","form.button_lock":"Lock","form.button_more_info":"More Info","form.button_remove":"Remove","form.button_reset":"Reset","form.button_restore":"Restore","form.button_save":"Save","form.button_show":"Show","form.button_unlock":"Unlock","form.button_unpair":"Unpair","form.label_invalid":"Config validation failed - you can still save your changes.","form.label_invalid_strict":"Config validation failed - please review the form before saving.","form.label_valid":"Config validation passed.","form.select.auto":"Automatic (Use Browser Settings)","login.button_login":"Log in","login.invalid_credentials":"Invalid Username or Password","login.label_2fa_code":"Two Factor Authentication Code","login.label_password":"Password","login.label_username":"Username","login.message_invalid_2fa_code":"The code entered is incorrect or has expired.","logs.download.error":"Failed to download log file.","logs.download_warning":"Homebridge log files may contain personal information, passwords or access tokens. Please review the log file and remove any sensitive information before sharing with others.","logs.log_file_truncated":"Log file truncated.","logs.title_download_log_file":"Download Log File","logs.title_truncate_log_file":"Delete Logs","logs.truncate.error":"Failed to truncate log file.","logs.truncate_log_warning":"This action will irreversibly delete your existing Homebridge logs. Are you sure you want to continue?","menu.config_json_editor":"JSON Config","menu.docker.restart_container":"Restart Container","menu.docker.startup_script":"Startup Script","menu.docker.terminal":"Terminal","menu.hbrestart.confirm_hb":"Restart Homebridge","menu.hbrestart.confirm_ui":"Restart HB Service & UI","menu.hbrestart.title":"Restart Homebridge","menu.label_accessories":"Accessories","menu.label_plugins":"Plugins","menu.label_settings":"Settings","menu.label_settings_advanced":"UI Advanced Settings","menu.label_status":"Status","menu.linux.label_logs":"Logs","menu.linux.label_restart_server":"Restart OS","menu.linux.label_shutdown_server":"Shutdown OS","menu.linux.label_terminal":"Terminal","menu.restart.title":"Power Options","menu.settings.title":"Settings","menu.tooltip_logout":"Log Out","menu.tooltip_restart":"Restart","menu.tooltip_user_accounts":"User Accounts","menu.tooltip_view_logs":"View Logs","platform.docker.container_restarted":"Docker Container Restarted","platform.docker.must_use_hashbang":"Script must use #!/bin/sh hashbang.","platform.docker.restart_required":"You will need to restart this docker container for the changes to take effect.","platform.docker.run_with_restart":"Make sure you're running the Docker container with <code>--restart=always</code>","platform.docker.script_help":"This script will be executed each time the docker container starts. You can use this to install any extra packages your plugins may need such as ffmpeg or libpcap-dev.","platform.docker.script_saved":"Startup Script Saved","platform.docker.server_long_time":"Server restart is taking a long time. You may need to bring up the Docker container manually.","platform.docker.title_restarting":"Restarting Docker Container","platform.linux.long_time":"Server restart is taking a long time. You may need to bring up the server manually.","platform.linux.restart":"Please wait, this page will automatically redirect when the Homebridge is back online.","platform.linux.restarting_server":"Restarting Server","platform.linux.server_restart_error":"An error occurred sending the restart command to the server","platform.linux.server_restarted":"Server Restarted","platform.linux.server_taking_long_time":"The server is taking a long time to come back online","platform.linux.server_will_power_down":"The server will power down shortly.","platform.linux.shutting_down_server":"Shutting Down Server","platform.version.restart_required":"Homebridge UI v{{ uiVersion }} has been installed, but the server service is still running v{{ serverVersion }}.","platform.version.service_restart_required":"Restart Required","plugins.bridge.action_error":"Failed to {{ action }} child bridge(s).","plugins.button_homepage":"Plugin Homepage","plugins.button_set_up":"Set Up","plugins.button_settings":"Plugin Config","plugins.button_uninstall":"Uninstall","plugins.button_update":"Update","plugins.compat.are_you_sure":"Are you sure you want to continue anyway?","plugins.compat.hb_node_too_low":"{{ packageName }} v{{ latestVersion }} requires Node.js v{{ minVersion }} or later. You are currently running Node.js {{ installedVersion }}.","plugins.compat.hb_too_low":"The {{ pluginName }} plugin recommends running on Homebridge v{{ minVersion }} or later. You are currently running Homebridge v{{ installedVersion }}.","plugins.compat.node_first":"Please upgrade Node.js before updating {{ packageName }}.","plugins.compat.node_link":"How To Update Node.js","plugins.compat.node_too_low":"The {{ pluginName }} plugin recommends running on Node.js v{{ minVersion }} or later. You are currently running Node.js {{ installedVersion }}.","plugins.compat.title":"Compatibility Check","plugins.config.load_error":"Failed to load plugin config.","plugins.config.must_be_array":"Plugin config must be an array.","plugins.config.must_be_array_objects":"Plugin config must be an array of objects.","plugins.config.must_be_object":"Config block must be an object.","plugins.config.name_property":'Accessory must have a valid "name" attribute',"plugins.config.please_fix":"Please fix validation errors before adding a new block.","plugins.config.remove_error":"Failed to remove plugin config.","plugins.disable.error":"Failed to disable plugin.","plugins.donate.button_not_verified":"Not Verified","plugins.donate.button_verified":"Verified","plugins.donate.message_1":"As more users install their plugins through the Homebridge UI, they are less likely to visit the projects' GitHub page where the ways to support a developer would typically be displayed.","plugins.donate.message_2":"Adding donation links directly in the Homebridge UI ensures users know how to support Homebridge developers if they wish to do so.","plugins.donate.tile_donate_to":"Donate to {{ author }}","plugins.enable.error":"Failed to enable plugin.","plugins.manage.all_versions":"All versions","plugins.manage.child_bridge_restart":"Child bridge restarted successfully.","plugins.manage.child_bridge_restart_failed":"Plugin restart failed, please restart Homebridge manually.","plugins.manage.confirm_disable":"Are you sure you want to disable {{ pluginName }}?","plugins.manage.confirm_disable_accessory_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen and removed from HomeKit.","plugins.manage.confirm_disable_accessory_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and HomeKit. The accessories will lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_disable_platform_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen but remain in HomeKit with a 'No Response' label.","plugins.manage.confirm_disable_platform_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and become controllable again in HomeKit. The accessories will not lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_enable":"Are you sure you want to enable {{ pluginName }}?","plugins.manage.disable":"Disable","plugins.manage.enable":"Enable","plugins.manage.information":"Plugin Information","plugins.manage.install":"Install","plugins.manage.installed":"Installed","plugins.manage.json_config":"JSON Config","plugins.manage.manage_version":"Manage Version","plugins.manage.manual_update_command":"To upgrade the package run open a Node.js command prompt as an Administrator and run the following commands:","plugins.manage.manual_update_required":"Manual Update Required","plugins.manage.online_updates":"Online updates are not supported on Windows. You will need to upgrade Homebridge manually after stopping the Homebridge service.","plugins.manage.plugin_logs":"Plugin Logs","plugins.manage.release_notes":"Release Notes","plugins.manage.scoped.error":"An error occurred. You can download the logs below.","plugins.manage.scoped.info":"For more information about scoped plugins and why to switch, see the wiki page {{ link }}.","plugins.manage.scoped.process":"This process will not affect your Homebridge/HomeKit accessories. You will not be able to cancel the process once it has started. It will:","plugins.manage.scoped.switch":"Switch To Scoped Plugin","plugins.manage.scoped.windows":"Online updates are not supported on Windows. You will need to install the new plugin and uninstall the old plugin manually.","plugins.manage.scoped.windows_service":'You should <span class="font-weight-bold">not</span> restart Homebridge until both steps are complete.',"plugins.manage.select_version":"Select the version to install","plugins.manage.thanks_for_updating":"Thanks for installing the {{ targetVersion }} version of {{ pluginName }}.","plugins.manage.uninstall":"Uninstall","plugins.manage.uninstalled":"Removed","plugins.manage.unverified_message":"Unverified Homebridge plugins indicate that they haven't undergone the review process by the Homebridge project team. Lack of verification does not necessarily imply inefficacy or safety concerns. Authors might have opted not to seek verification for various reasons.","plugins.manage.unverified_subtitle":"{{ pluginName }} is not verified","plugins.manage.unverified_title":"Unverified Plugins","plugins.manage.update":"Update","plugins.manage.updated":"Updated","plugins.manage.verified_message":"Homebridge plugins that are marked as verified have been reviewed by the Homebridge project team to ensure they meet various requirements that encourage best practices and a trouble-free user experience.","plugins.manage.verified_subtitle":"{{ pluginName }} is verified","plugins.manage.verified_title":"Verified Plugins","plugins.node_update.continue":"Continue","plugins.placeholder_search_first":"Use the search bar above to find your first plugin","plugins.placeholder_search_plugin":"Search for plugins to install\u2026","plugins.settings.custom.homebridge-gsh.label_account_linked":"Account Linked","plugins.settings.custom.homebridge-gsh.label_link_account":"Link Account","plugins.settings.custom.homebridge-gsh.label_unlink_account":"Unlink Account","plugins.settings.custom.homebridge-gsh.message_about":"The <strong>Homebridge Google Smart Home</strong> plugin allows you to control your Homebridge accessories from a Google Home enabled smart speaker or the Google Home mobile app.","plugins.settings.custom.homebridge-gsh.message_account_link_required":"To enable this functionality you must sign in with your Google or GitHub account; make sure you use the same account when adding the Homebridge action in the Google Home mobile app.","plugins.settings.custom.homebridge-gsh.message_homebridge_restart_required":"Homebridge requires restarting for the changes to take effect.","plugins.settings.custom.homebridge-gsh.message_invalid_token":"Invalid account linking token in config.json","plugins.settings.deconz.dump_no_exist":"Homebridge deCONZ dump file does not exist yet.","plugins.settings.hue.dump_no_exist":"Homebridge Hue dump file does not exist yet.","plugins.settings.label_open_config_editor":"Open Config Editor","plugins.settings.message_consult_documentation":"Please consult the plugin documentation for instructions on how to correctly configure this plugin.","plugins.settings.message_manual_config_required":"This plugin must be configured manually using the Homebridge UI Config Editor.","plugins.settings.plugin_config_saved":"Plugin Config Saved","plugins.settings.restart_required":"Restart Homebridge to apply the changes.","plugins.settings.title_settings":"Config","plugins.status_disabled":"Disabled","plugins.status_installed":"Installed","plugins.toast_failed_to_load_plugin_schema":"Failed to load plugin config schema.","plugins.toast_failed_to_load_plugins":"Failed to load plugins","plugins.uninstall_bridge_error":"Failed to remove child bridge.","plugins.uninstall_remove_config_required":"If you are permanently removing this plugin, make sure you remove any config for this plugin in the config.json before restarting Homebridge.","plugins.uninstall_remove_confirmation":"Are you sure you want to uninstall {{ pluginName }}?","plugins.uninstall_remove_plugin_config":"Remove plugin config?","plugins.uninstall_unpair_child_bridge":"Unpair plugin child bridge?","plugins.uninstall_unpair_child_bridges":"Unpair {{ count }} plugin child bridges?","reset.accessory_reset":"Homebridge Bridge Reset","reset.action_is_irreversible":"This action is irreversible. Please read carefully before proceeding.","reset.bridges.desc":"If you are having trouble pairing Homebridge, an external accessory or a child bridge to HomeKit, you may need to unpair it from HomeKit to start again.","reset.bridges.empty":"You have no bridges to unpair from HomeKit.","reset.bridges.title":"Bridges","reset.bridges_all.desc":"Unpair all bridges from HomeKit. This includes the main Homebridge bridge, child bridges and bridges for external accessories.","reset.bridges_all.list_1":"This will unpair the Homebridge bridge, all child bridges and bridges for external accessories from HomeKit.","reset.bridges_all.list_2":"Note that your accessories will continue to show in HomeKit as no response, until the bridges are manually removed from HomeKit. You can do this in the Home app, by accessing Home Settings \u2192 Home Hubs & Bridges \u2192 {Bridge} \u2192 Remove Bridge from Home.","reset.bridges_all.list_3":"All your Homebridge to HomeKit accessories, scenes and automations will need to be reconfigured after the unpairing.","reset.bridges_all.list_4":"The pin for pairing your Homebridge bridge to HomeKit will be changed. You can see the new values in your Homebridge config after the unpairing.","reset.bridges_all.title":"Unpair All Bridges","reset.bridges_single.desc":"Unpair a single bridge from HomeKit. This may be a child bridge or a bridge for an external accessory like a camera or TV.","reset.bridges_single.list_1":"When unpairing a bridge, any accessories published by this bridge will be removed from the Homebridge cache.","reset.bridges_single.list_2":"The accessories will become stale in HomeKit (showing no response). To remove them, you will need to manually remove this bridge from HomeKit. You can do this in the Home app from the Home Settings section.","reset.bridges_single.list_3":"You can then attempt to pair the bridge again if required.","reset.bridges_single.title":"Unpair Single Bridge","reset.cached_accessory_removed":"Cached accessory removed.","reset.clear_cache_all.desc":"Remove all accessories from the cache.","reset.clear_cache_all.list_1":"When clicking on the remove button below, Homebridge will restart and all your existing accessories will be removed from Homebridge and HomeKit.","reset.clear_cache_all.list_2":"All associated HomeKit data will also be removed, this includes room associations, scenes and automations that this accessory uses.","reset.clear_cache_all.list_3":"After Homebridge restarts, your plugins will re-add any accessories as if the plugin was being installed for the first time.","reset.clear_cache_all.title":"Remove All Accessories","reset.clear_cache_bridge.desc":"Remove all accessories published by a bridge from the cache.","reset.clear_cache_bridge.empty":"You have no bridges from which to remove accessories.","reset.clear_cache_bridge.list_1":"This function can be used to reset a plugin's existing accessories in HomeKit. They will be removed from Homebridge/HomeKit and then re-added by the plugin as new accessories.","reset.clear_cache_bridge.list_2":"The child bridge's pairing details and status will remain the same.","reset.clear_cache_bridge.title":"Remove Bridge Accessories","reset.clear_cache_single.desc":"Remove a single accessory from the cache.","reset.clear_cache_single.list_1":"Some plugins don't clean up after themselves properly! If an accessory that you no longer have in Homebridge is still being displayed in HomeKit, you can remove it from the cache.","reset.clear_cache_single.list_2":"This function can be used to reset an existing accessory in HomeKit. It will be removed from Homebridge/HomeKit and then re-added by the plugin as a new accessory.","reset.clear_cache_single.list_3":"When removing an accessory from the cache, all its associated HomeKit data will be removed. This includes any associated scenes and automations that use this accessory.","reset.clear_cache_single.list_4":"Accessories can only be removed when Homebridge is not running. Homebridge will automatically restart when clicking on each of the remove buttons below. If you need to remove multiple accessories, please be patient and allow Homebridge to restart between each removal.","reset.clear_cache_single.title":"Remove Single Accessory","reset.delete_failed":"Failed to delete accessory.","reset.delete_success":"Restarting Homebridge and clearing accessory cache.","reset.error_message":"Accessory cache could not be loaded. You may not have any cached accessories.","reset.failed_to_reset":"Failed to reset Homebridge. See Logs.","reset.force_restart_hb_help_text":"Use this action to force the hb-service service to do a full restart.","reset.remove_cached_accessories_single_empty":"You have no cached accessories to remove.","reset.removing_cached_accessory_please_wait":"Removing accessory from cache, please wait\u2026","restart.child_bridge_list":"Please restart these child bridges for the changes to apply:","restart.child_bridges":"Please restart the plugin's child bridges for the changes to apply.","restart.homebridge":"Please restart Homebridge for the changes to apply.","restart.label_restart_command_executed":"Restart Command Executed","restart.please_wait_while_server_restarts":"Please wait, this page will automatically redirect when Homebridge is back online.","restart.server_is_taking_long_time_to_restart":"Homebridge restart is taking a long time. You may need to bring up the Homebridge service manually.","restart.service_ready":"Homebridge Ready","restart.title_restart":"Restarting Homebridge","restart.toast_server_restart_error":"An error occurred sending the restart command to the server","restart.toast_server_restart_timeout":"Homebridge is taking a long time to come back online","restart.toast_server_restarted":"Homebridge Restarted","restart.ui_online":"HB Service & UI Ready","rpi.throttled.currently_message":"This Raspberry Pi is reporting it is currently under-voltage; please check it is connected to an appropriate power supply. Under-voltage can result in system instability and SD card corruption.","rpi.throttled.previously_message":"This Raspberry Pi has reported an under-voltage event since it was last rebooted; please check it is connected to an appropriate power supply.","rpi.throttled.undervoltage_title":"Under Voltage","settings.cache.desc":"Homebridge maintains accessories in cache so they aren't removed and re-added to HomeKit each time Homebridge restarts. Sometimes this cache can become out of sync with the actual accessories in Homebridge.","settings.cache.title":"Accessories","settings.changes.saved":"Your changes have been saved and require a restart to take effect.","settings.datetime.incorrect":"The date and time on your Homebridge server seem to be incorrect. This may cause unexpected issues. Click here for more information.","settings.display.blue":"Blue","settings.display.bluegrey":"Blue Grey","settings.display.brown":"Brown","settings.display.cyan":"Cyan","settings.display.dark":"Dark","settings.display.deep_purple":"Deep Purple","settings.display.green":"Green","settings.display.grey":"Grey","settings.display.indigo":"Indigo","settings.display.lang":"Language","settings.display.light":"Light","settings.display.lighting_mode":"Lighting Mode","settings.display.login_wallpaper":"Login Wallpaper","settings.display.login_wallpaper_desc":"A custom login wallpaper can be set by adding a <code>ui-wallpaper.jpg</code> file to your Homebridge storage directory, or by providing a full path to a local image file here.","settings.display.orange":"Orange","settings.display.pink":"Pink","settings.display.purple":"Purple","settings.display.red":"Red","settings.display.teal":"Teal","settings.display.temp_units":"Temperature Units","settings.display.temp_units.c":"Celsius (\xB0C)","settings.display.temp_units.f":"Fahrenheit (\xB0F)","settings.display.theme":"Theme","settings.general.title_display":"Display","settings.general.title_general":"General","settings.mdns_advertiser":"mDNS Advertiser","settings.mdns_advertiser_exp":"experimental","settings.mdns_advertiser_help":"If you have trouble connecting Homebridge to HomeKit (all accessories showing 'No Response' in the Home app), try using one of the alternate mDNS advertisers.","settings.mdns_advertiser_not_connected":"Not Connected","settings.mdns_advertiser_rec":"recommended","settings.network.label_interface_name":"Interface Name","settings.network.label_ip_address":"IP Address","settings.network.message_network_interface":"If no network interfaces are selected, Homebridge will attempt to automatically determine on which interfaces to advertise.","settings.network.port_hb":"Homebridge Port","settings.network.port_hb_desc":"The port number to run the Homebridge bridge on. This must be between 1025 and 65533, and should not be the same as the Homebridge UI port.","settings.network.port_ui":"Homebridge UI Port","settings.network.port_ui_desc":"The port number to run the Homebridge UI on. This must be between 1025 and 65533, and should not be the same as the Homebridge port.","settings.network.title_network":"Network","settings.network.title_network_interfaces":"Network Interfaces","settings.service.debug_tooltip":"Some plugins require you to set the DEBUG environment variable to enable debug level logging.","settings.service.node_tooltip":"Node.js runtime options for this process. This should be kept blank unless you know what you are doing.","settings.startup.debug":"Homebridge Debug Mode","settings.startup.debug_desc_v1":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge as well as all child bridges. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.debug_desc_v2":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge. The setting for child bridges can be found in the child bridge configuration from the plugins page. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.insecure":"Homebridge 'Insecure' Mode","settings.startup.insecure_desc":"To control your accessories via the Homebridge UI you must be running Homebridge in insecure mode.","settings.startup.keep_accessories":"Keep Accessories Of Uninstalled Plugins","settings.startup.keep_accessories_desc":"If enabled, accessories of platform plugins will remain in the cache even after the plugin is uninstalled. This can be useful if you plan to reinstall the plugin later.","settings.title_startup_options":"Startup & Environment","settings.unpair_bridge.load_error":"Paired bridges could not be loaded.","settings.unpair_bridge.unpair_error":"Failed to unpair bridge.","setup.button_get_started":"Get Started","setup.create_account":"Create Account","setup.create_account_reason":"Password authentication to your Homebridge admin web interface must be configured. Even if Homebridge is accessible only in your local network, it is still important to protect it from unrestricted access.","setup.open_dashboard":"Open Dashboard","setup.welcome_to_homebridge":"Welcome to Homebridge",setup_wizard_message_complete_message:"The setup procedure is complete and you're now ready to start using Homebridge.",setup_wizard_message_complete_title:"Congratulations!",setup_wizard_message_restore:"Restore From Backup","status.code_scan":"Scan to add to HomeKit","status.cpu.load":"Load","status.cpu.temp":"Temp","status.cpu.title_cpu":"CPU","status.credits.title":"Credits","status.homebridge.checking":"Checking for updates\u2026","status.homebridge.up_to_date":"Up to Date","status.memory.label_available":"Available","status.memory.label_total":"Total","status.memory.title_memory":"Memory","status.network.received_per_second":"Received","status.network.sent_per_second":"Sent","status.network.title_network":"Network Activity","status.plugin_out_of_date":"Update Available","status.plugins_out_of_date":"Updates Available","status.services.label_not_running":"Not running","status.services.label_running":"Running","status.services.updates":"Update Centre","status.uptime.title_uptime":"Uptime","status.widget.accessories.choose_accessories":"Choose the accessories to display in this widget from the Accessories tab.","status.widget.add.label_pairing_code":"Pairing Code","status.widget.bridge.restart_error":"Failed to restart child bridge.","status.widget.clock":"Clock","status.widget.clock_dateformat":"Date Format","status.widget.clock_timeformat":"Time Format","status.widget.font_size":"Font Size","status.widget.font_weight":"Font Weight","status.widget.hide_on_mobile":"Hide in compact view (mobile displays)","status.widget.homebridge_logs":"Homebridge Logs","status.widget.info":"System Information","status.widget.info.config_path":"Config Path","status.widget.info.disabled":"Disabled","status.widget.info.docker":"Docker","status.widget.info.glibc_message":"This message indicates that your operating system does not support newer versions of Node.js. To resolve this and be able to install updated versions of Node.js in the future, you will need to update your operating system to a more recent version.","status.widget.info.glibc_title":"OS Update","status.widget.info.hostname":"Hostname","status.widget.info.ipv4":"IPv4","status.widget.info.ipv6":"IPv6","status.widget.info.no":"No","status.widget.info.node_unsupp":"Unsupported","status.widget.info.node_unsupp_message":"You are running a version of Node.js that is not officially supported by Homebridge. You should consider changing to a supported version.","status.widget.info.node_unsupp_title":"Unsupported Node Version","status.widget.info.node_update_message":"Homebridge requires Node.js installed on your system to run. From time to time, you will need to update the Node.js runtime to enable support for new features. Homebridge (and verified plugins) support all current Active and Maintenance LTS releases of Node.js.","status.widget.info.node_update_title":"Node Update","status.widget.info.nodejs_path":"Node.js Path","status.widget.info.nodejs_version":"Node.js Version","status.widget.info.os":"OS","status.widget.info.plugin_path":"Plugin Path","status.widget.info.service_mode":"Service Mode","status.widget.info.service_user":"User","status.widget.info.servicemode_message":"Standalone mode is no longer recommended. Setting up Homebridge and Homebridge UI with hb-service has the same benefits of standalone mode but is much easier to setup and maintain.","status.widget.info.servicemode_title":"Service Mode","status.widget.info.storage_path":"Storage Path","status.widget.info.synology_package":"Synology Package","status.widget.info.timezone":"Timezone","status.widget.info.yes":"Yes","status.widget.network.history_items":"History Items","status.widget.network.items":"items","status.widget.network.network_interface":"Network Interface","status.widget.network.none_selected":"None selected in settings - using default.","status.widget.network.refresh_interval":"Refresh Interval","status.widget.network.refresh_note":"Refresh the page after saving for changes to take effect.","status.widget.network.seconds":"seconds","status.widget.qr_paired":"Paired","status.widget.qr_unpaired":"Not Paired","status.widget.show_hide":"Show/Hide Widgets","status.widget.title_manage_widget":"Manage Widget","status.widget.uptime.label_process":"Process","status.widget.uptime.label_server":"Server","status.widget.weather.label_config_required_help":"Please select your city in the widget settings.","status.widget.weather.label_search_for_your_city":"Search for your city in English:","status.widget.weather.title_weather":"Weather","support.dev.api":"Homebridge API","support.dev.api_hap":"HAP-NodeJS API","support.dev.api_hap_sub":"HAP-NodeJS is an implementation of the HomeKit Accessory Server as specified in the HomeKit Accessory Protocol (HAP), which is defined by Apple as part of the HomeKit Framework.","support.dev.api_sub":"Homebridge is a lightweight Node.js server you can run on your home network to emulate the HomeKit Accessory Protocol (HAP).","support.dev.item_swagger":"Swagger Docs","support.dev.item_swagger_sub":"The Homebridge REST API allows you to interact with your Homebridge server using HTTP requests.","support.dev.template":"Plugin Template Repo","support.dev.template_sub":"A template Homebridge plugin that can be used as a base to help you get started developing your own plugin.","support.dev.title":"Developers","support.dev.verified":"Verified By Homebridge","support.dev.verified_sub":"The Verified By Homebridge program allows plugin developers to get their plugins reviewed and endorsed by the Homebridge project team.","support.links.discord":"Discord Server","support.links.discord_sub":"Join the Homebridge Discord chat server to chat with other users and developers.","support.links.documentation":"Documentation","support.links.documentation_sub":"The Homebridge documentation provides a wealth of information on how to get started with Homebridge and common issue resolutions.","support.links.issue":"Report An Issue","support.links.issue_sub":"If you are experiencing an issue with Homebridge, please open a new issue on GitHub. This should not be used for issues with specific plugins.","support.links.reddit":"Reddit Community","support.links.reddit_sub":"The Homebridge subreddit is a great place to share your Homebridge setup and ask for help.","support.links.title":"Useful Links","support.title":"Support","toast.no_auth":"Only administrators may access the requested page.","toast.title_error":"Error","toast.title_success":"Success","toast.title_warning":"Warning","users.button_add_new_user":"Add New User","users.button_add_user":"Add User","users.label_admin_user":"Admin User?","users.label_confirm_password":"Confirm Password","users.label_full_name":"Full Name","users.label_new_password":"New Password","users.label_password":"Password","users.label_username":"Username","users.setup_2fa":"Setup 2FA","users.setup_2fa_activate_error":"An error occurred activating 2FA","users.setup_2fa_cannot_setup_2fa":"Cannot Setup 2FA","users.setup_2fa_disable":"Disable 2FA","users.setup_2fa_disable_current_password":"Enter your current password to disable two factor authentication:","users.setup_2fa_disable_success":"Two factor authentication has been disabled.","users.setup_2fa_enable":"Enable 2FA","users.setup_2fa_enable_error":"An error occurred setting up 2FA","users.setup_2fa_enabled_success":"Two factor authentication has been enabled.","users.setup_2fa_enter_code":"Enter the code from your authenticator app:","users.setup_2fa_scan_qr_code":"Scan the QR code below with your authenticator app:","users.setup_2fa_server_time_out":"Your server's clock is out by {{ timeDiffError }} ms. The maximum allowed is +/-5000 ms.","users.setup_2fa_warning":"Two Factor Authentication requires your Homebridge server to have a very accurate date and time to login. If your server does not have the ability to keep time accurately you should not enable 2FA or risk being locked out of the Homebridge UI.","users.title_add_user":"Add User","users.title_edit_user":"Edit User","users.title_users":"Users","users.toast_added_new_user":"Added New User","users.toast_failed_to_add_user":"Failed to Add User","users.toast_failed_to_delete_user":"Failed to Delete user","users.toast_updated_user":"User Updated","users.toast_user_deleted":"User Deleted"}});var As=y((Td,la)=>{la.exports={"accessories.button_add_room":"A\xF1adir habitaci\xF3n","accessories.button_hidden_hide":"Ocultar ocultos","accessories.button_hidden_show":"Mostrar ocultos","accessories.control.auto":"Autom\xE1tico","accessories.control.away":"Ausente","accessories.control.battery_charging":"Cargando","accessories.control.battery_notchargeable":"No cargable","accessories.control.battery_notcharging":"No est\xE1 cargando","accessories.control.brightness":"Brillo","accessories.control.closed":"Cerrado","accessories.control.closing":"Cerrando","accessories.control.cool":"Fr\xEDo","accessories.control.default_room":"Habitaci\xF3n predeterminada","accessories.control.default_running_time":"Tiempo de ejecuci\xF3n predeterminado","accessories.control.dehumidifying":"Deshumidificando","accessories.control.detected":"Detected","accessories.control.drag_here":"Arrastrar y soltar aqu\xED.","accessories.control.fan":"Ventilador","accessories.control.heat":"Calor","accessories.control.home":"Casa","accessories.control.humidifying":"Humidificando","accessories.control.jammed":"Atascado","accessories.control.light":"Luz","accessories.control.locked":"Bloqueado","accessories.control.mute":"Silencio","accessories.control.night":"Noche","accessories.control.not_detected":"Not Detected","accessories.control.not_mute":"Encendido","accessories.control.off":"Apagado","accessories.control.on":"Encendido","accessories.control.open":"Abierto","accessories.control.opening":"Abriendo","accessories.control.rotation_speed":"Velocidad de rotaci\xF3n","accessories.control.running":"En funcionamiento","accessories.control.speaker_volume":"Volumen","accessories.control.stopped":"Detenido","accessories.control.target":"Objetivo","accessories.control.target_humidity":"Humedad deseada","accessories.control.target_temperature":"Temperatura deseada","accessories.control.triggered":"Activado","accessories.control.unknown":"Desconocido","accessories.control.unlocked":"Desbloqueado","accessories.control_disabled":"Control de accesorios Homebridge desactivado","accessories.hide_this_accessory":"Ocultar este accesorio","accessories.message_for_more_information":"para m\xE1s informaci\xF3n.","accessories.message_must_use_insecure_mode":"Para controlar tus accesorios debes ejecutar Homebridge en modo inseguro.","accessories.message_please_see":"Por favor, consulta","accessories.name":"Nombre","accessories.room_name":"Nombre de la habitaci\xF3n","accessories.rooms_not_appear_in_homekit":"Las habitaciones creadas aqu\xED no aparecer\xE1n en HomeKit, son s\xF3lo para organizar los accesorios en Homebridge UI.","accessories.settings_link":"Puedes acceder a la Configuraci\xF3n de Homebridge en cualquier momento desde el men\xFA principal o haciendo clic en el engranaje (icono de rueda dentada).","accessories.show_on_dashboard":"Mostrar en el widget del panel principal","accessories.title_accessories":"Accesorios","backup.backup_delete_failed":"Error al eliminar la copia de seguridad. Consulta los registros para m\xE1s detalles.","backup.backup_download_failed":"Error al descargar la copia de seguridad","backup.backup_exceeds_max_size":"La copia de seguridad ({{ backupSize }}) excede el tama\xF1o m\xE1ximo de archivo de restauraci\xF3n de {{ maxBackupSizeText }}","backup.backup_help_one":"Descarga un archivo de copia de seguridad de todo el entorno de Homebridge. Esto har\xE1 una copia de seguridad de todo el contenido de tu directorio de almacenamiento de Homebridge que m\xE1s tarde podr\xE1s restaurar en cualquier plataforma capaz de ejecutar Homebridge UI.","backup.backup_help_two":"Los plugins que no est\xE9n alojados en npm, ni los plugins que hayan sido instalados directamente desde GitHub no ser\xE1n respaldados o restaurados.","backup.backup_restored":"Copia de seguridad restaurada","backup.backup_warning":"Los archivos de copias de seguridad contienen informaci\xF3n confidencial que no deber\xEDas compartir con otros.","backup.button_restore_backup":"Restaurar una copia de seguridad","backup.label_choose_backup_file_to_restore":"Elige el archivo de copia de seguridad para restaurar...","backup.label_uploading":"Subiendo...","backup.load_error":"Error al cargar la copia de seguridad de la configuraci\xF3n.","backup.now":"Ahora","backup.restore_failed":"Error al restaurar","backup.restore_help_one":"Restaura una copia de seguridad que hayas realizado previamente usando Homebridge UI. Tu configuraci\xF3n de Homebridge, accesorios en cach\xE9, emparejamientos de HomeKit y cuentas de usuario de Homebridge UI ser\xE1n restaurados. Cualquier plugin de Homebridge que hayas instalado tambi\xE9n ser\xE1 descargado del registro npm.","backup.restore_help_two":"Necesitar\xE1s volver a acceder a Homebridge UI despu\xE9s de realizar la restauraci\xF3n y utilizar las credenciales de la instancia restaurada.","backup.restore_max_size":"Puedes restaurar un archivo de copia de seguridad de hasta {{ maxBackupSizeText }} de tama\xF1o.","backup.restore_warning":"Restaurar una copia de seguridad es un proceso irreversible, sobrescribir\xE1 la configuraci\xF3n actual de Homebridge.","backup.scheduled_backup_time":"Se crear\xE1 una copia de seguridad completa de tu instancia de Homebridge todos los d\xEDas a las {{ backupTime }} y estar\xE1 disponible por {{ dayCount }} d\xEDas.","backup.title_backup":"Respaldar","child_bridge.about":"Homebridge permite ejecutar la plataforma o accesorio del plugin como un puente hijo aislado. Esto puede ayudar a mejorar la capacidad general de respuesta y la fiabilidad de Homebridge.","child_bridge.bridge_connect":"Conectar a HomeKit","child_bridge.bridge_settings":"Ajustes de Puente","child_bridge.bridges":"HomeKit Bridges","child_bridge.bridges_paired":"Cada puente hijo de plataforma o accesorio deber\xE1 ser emparejado a HomeKit por separado.","child_bridge.config.debug":"Modo Debug","child_bridge.config.description":"Estos campos no son obligatorios, pero se pueden usar para anular la configuraci\xF3n de HomeKit para este puente.","child_bridge.config.firmware":"Versi\xF3n del Firmware","child_bridge.config.header":"Configuraci\xF3n","child_bridge.config.manufacturer":"Fabricante","child_bridge.config.model":"Modelo","child_bridge.config.name":"Nombre","child_bridge.must_configure_plugin":"Es necesario configurar este plugin para poder modificar los ajustes del puente.","child_bridge.reset_accessories":"Restablecer Accesorios","child_bridge.reset_accessories_list":"Elige de qu\xE9 puentes hijos quieres restablecer los accesorios a continuaci\xF3n:","child_bridge.restart":"Reiniciar Puente Hijo","child_bridge.restart_homebridge":"Reinicia Homebridge para terminar de configurar este puente hijo.","child_bridge.restart_plural":"Reiniciar Puentes Hijos","child_bridge.return_to_pair":"Vuelve a esta pantalla despu\xE9s de reiniciar Homebridge para ver el C\xF3digo QR de emparejamiento.","child_bridge.select_type":"Selecciona qu\xE9 plataformas o accesorios deseas ejecutar como un puente hijo","child_bridge.setup":"Configurar Puente Hijo","child_bridge.start":"Iniciar Puente Hijo","child_bridge.start_plural":"Iniciar Puentes Hijos","child_bridge.stop":"Detener Puente Hijo","child_bridge.stop_plural":"Detener Puentes Hijos","child_bridge.wiki_link":"M\xE1s informaci\xF3n sobre los puentes hijo","config.config_accessory_must_be_array":"los accesorios deben estar en una colecci\xF3n []","config.config_bridge_missing":"Falta la configuraci\xF3n del puente","config.config_invalid_json":"La configuraci\xF3n contiene JSON inv\xE1lido","config.config_platform_must_be_array":"las plataformas deben estar en una colecci\xF3n []","config.config_username_error":"El nombre de usuario del puente debe tener 6 pares de caracteres hexadecimales (A-F 0-9) separados por dos puntos.","config.error_blocks_objects":"Todos los bloques {{ type }} deben ser objetos.","config.error_blocks_type":"Todos los bloques {{ type }} deben contener el atributo {{ type }}.","config.error_string_array":"Cada elemento en el array {{ key }} debe ser una cadena de texto.","config.error_string_type":"El atributo {{ type }} debe ser una cadena de texto.","config.failed_to_save_config":"Error al guardar la configuraci\xF3n","config.restore.confirm":"Haz clic en Guardar para confirmar la restauraci\xF3n de esta copia de seguridad.","config.restore.copy_to_editor":"Copiar al editor","config.restore.no_backups":"Sin copias de seguridad","config.restore.title_restore_homebridge_backup":"Restaurar copia de seguridad de configuraci\xF3n de Homebridge.","config.restore.toast_backups_deleted":"Todas las copias de seguridad eliminadas","config.title_backup_loaded":"Copia de seguridad cargada","form.button_cancel":"Cancelar","form.button_close":"Cerrar","form.button_delete":"Eliminar","form.button_disable":"Desactivar","form.button_download":"Descargar","form.button_edit":"Editar","form.button_enable":"Activar","form.button_hide":"Ocultar","form.button_lock":"Bloquear","form.button_more_info":"M\xE1s Informaci\xF3n","form.button_remove":"Eliminar","form.button_reset":"Restablecer","form.button_restore":"Restaurar","form.button_save":"Guardar","form.button_show":"Mostrar","form.button_unlock":"Desbloquear","form.button_unpair":"Desvincular","form.label_invalid":"Config validation failed - you can still save your changes.","form.label_invalid_strict":"Config validation failed - please review the form before saving.","form.label_valid":"Config validation passed.","form.select.auto":"Autom\xE1tico (Usar ajustes del navegador)","login.button_login":"Iniciar sesi\xF3n","login.invalid_credentials":"Usuario o contrase\xF1a incorrectos","login.label_2fa_code":"C\xF3digo de autenticaci\xF3n de dos factores","login.label_password":"Contrase\xF1a","login.label_username":"Usuario","login.message_invalid_2fa_code":"El c\xF3digo ingresado es incorrecto o ha expirado.","logs.download.error":"Error al descargar el archivo de registro.","logs.download_warning":"El archivo de registros de Homebridge puede contener informaci\xF3n personal, contrase\xF1as o tokens de acceso. Por favor, revisa el archivo de registro y elimina cualquier informaci\xF3n sensible antes de compartirlo con otros.","logs.log_file_truncated":"Archivo de registros truncado.","logs.title_download_log_file":"Descargar archivo de registros","logs.title_truncate_log_file":"Truncar archivo de registros","logs.truncate.error":"Error al truncar el archivo de registro.","logs.truncate_log_warning":"Esta acci\xF3n es irreversible y eliminar\xE1 los registros existentes de Homebridge. \xBFEst\xE1s seguro de que deseas continuar?","menu.config_json_editor":"Editor JSON de Configuraci\xF3n","menu.docker.restart_container":"Reiniciar contenedor","menu.docker.startup_script":"Script de inicio","menu.docker.terminal":"Terminal","menu.hbrestart.confirm_hb":"Reiniciar Homebridge","menu.hbrestart.confirm_ui":"Reiniciar el servicio Homebridge y la interfaz","menu.hbrestart.title":"Reiniciar Homebridge","menu.label_accessories":"Accesorios","menu.label_plugins":"Plugins","menu.label_settings":"Configuraci\xF3n","menu.label_settings_advanced":"Ajustes Avanzados de la Interfaz","menu.label_status":"Estado","menu.linux.label_logs":"Registros","menu.linux.label_restart_server":"Reiniciar Servidor","menu.linux.label_shutdown_server":"Apagar Servidor","menu.linux.label_terminal":"Terminal","menu.restart.title":"Inicio/Apagado","menu.settings.title":"Configuraci\xF3n","menu.tooltip_logout":"Cerrar Sesi\xF3n","menu.tooltip_restart":"Reiniciar","menu.tooltip_user_accounts":"Cuentas de Usuario","menu.tooltip_view_logs":"Ver registros","platform.docker.container_restarted":"Contenedor Docker reiniciado","platform.docker.must_use_hashbang":"El script necesita el encabezado #!/bin/sh","platform.docker.restart_required":"Necesitar\xE1s reiniciar el contenedor Docker para que los cambios surtan efecto.","platform.docker.run_with_restart":"Aseg\xFArate de que est\xE9s ejecutando el contenedor Docker con <code>--restart=always</code>","platform.docker.script_help":"Este script se ejecutar\xE1 cada vez que se reinicie el contenedor de Docker. Puedes utilizarlo para instalar paquetes adicionales que tus plugins necesiten, como ffmpeg o libpcap-dev.","platform.docker.script_saved":"Script de inicio guardado","platform.docker.server_long_time":"El reinicio del servidor est\xE1 tardando mucho. Quiz\xE1 debas iniciar el contenedor de Docker manualmente.","platform.docker.title_restarting":"Reiniciando contenedor Docker","platform.linux.long_time":"El reinicio del servidor est\xE1 tardando demasiado tiempo. Quiz\xE1 debas iniciarlo de nuevo manualmente.","platform.linux.restart":"Por favor, espera, esta p\xE1gina te redireccionar\xE1 a Homebridge cuando se reinicie.","platform.linux.restarting_server":"Reiniciando Servidor","platform.linux.server_restart_error":"Un error ha ocurrido al enviar el comando de reinicio al servidor","platform.linux.server_restarted":"Servidor reiniciado","platform.linux.server_taking_long_time":"El servidor est\xE1 tardando demasiado tiempo en volver a estar disponible","platform.linux.server_will_power_down":"El servidor se apagar\xE1 pronto.","platform.linux.shutting_down_server":"Apagando el servidor","platform.version.restart_required":"Homebridge UI v{{ uiVersion }} ha sido instalado, pero el servicio a\xFAn sigue ejecutando la v{{ serverVersion }}.","platform.version.service_restart_required":"Reinicio requerido","plugins.bridge.action_error":"Error al {{ action }} puente(s) hijo(s).","plugins.button_homepage":"Inicio de Plugins","plugins.button_set_up":"Configurar","plugins.button_settings":"Ajustes","plugins.button_uninstall":"Desinstalar","plugins.button_update":"Actualizar","plugins.compat.are_you_sure":"\xBFEst\xE1s seguro de que deseas continuar de todos modos?","plugins.compat.hb_node_too_low":"{{ packageName }} v{{ latestVersion }} requiere Node.js v{{ minVersion }} o superior. Actualmente est\xE1s ejecutando Node.js {{ installedVersion }}.","plugins.compat.hb_too_low":"El plugin {{ pluginName }} recomienda ejecutarse en Homebridge v{{ minVersion }} o superior. Actualmente est\xE1s ejecutando Homebridge v{{ installedVersion }}.","plugins.compat.node_first":"Por favor actualiza Node.js antes de actualizar {{ packageName }}.","plugins.compat.node_link":"C\xF3mo actualizar Node.js","plugins.compat.node_too_low":"El plugin {{ pluginName }} recomienda ejecutarse en Node.js v{{ minVersion }} o superior. Actualmente est\xE1s ejecutando Node.js {{ installedVersion }}.","plugins.compat.title":"Verificaci\xF3n de Compatibilidad","plugins.config.load_error":"Error al cargar la configuraci\xF3n del plugin.","plugins.config.must_be_array":"La configuraci\xF3n del plugin debe ser un array.","plugins.config.must_be_array_objects":"La configuraci\xF3n del plugin debe ser un array de objetos.","plugins.config.must_be_object":"El bloque de configuraci\xF3n debe ser un objeto.","plugins.config.name_property":'El accesorio debe tener un atributo "name" v\xE1lido',"plugins.config.please_fix":"Por favor, corrige los errores de validaci\xF3n antes de a\xF1adir un nuevo bloque.","plugins.config.remove_error":"Error al eliminar la configuraci\xF3n del plugin.","plugins.disable.error":"Error al deshabilitar el plugin.","plugins.donate.button_not_verified":"No verificado","plugins.donate.button_verified":"Verificado","plugins.donate.message_1":"A medida que m\xE1s usuarios instalan los plugins a trav\xE9s de la interfaz de usuario de Homebridge, es menos probable que visiten la p\xE1gina de GitHub del proyecto, donde normalmente se mostrar\xEDan las formas de apoyar a un desarrollador.","plugins.donate.message_2":"Incluir enlaces de donaci\xF3n directamente en la interfaz de usuario de Homebridge permite a los usuarios saber c\xF3mo apoyar a los desarrolladores de Homebridge, si as\xED lo desean.","plugins.donate.tile_donate_to":"Donar a {{ author }}","plugins.enable.error":"Error al habilitar el plugin.","plugins.manage.all_versions":"Todas las versiones","plugins.manage.child_bridge_restart":"Puente hijo reiniciado correctamente.","plugins.manage.child_bridge_restart_failed":"Error al reiniciar el plugin, reinicia Homebridge manualmente.","plugins.manage.confirm_disable":"\xBFEst\xE1s seguro de que deseas deshabilitar {{ pluginName }}?","plugins.manage.confirm_disable_accessory_1":"Los accesorios expuestos por este plugin ser\xE1n eliminados de la pantalla de accesorios de Homebridge UI y eliminados de HomeKit.","plugins.manage.confirm_disable_accessory_2":"Cuando vuelvas a habilitar el plugin, los accesorios reaparecer\xE1n en la UI de Homebridge y HomeKit. Los accesorios perder\xE1n sus datos de HomeKit (como escenas y automatizaciones relacionadas).","plugins.manage.confirm_disable_platform_1":"Los accesorios expuestos por este plugin ser\xE1n eliminados de la pantalla de accesorios de Homebridge UI pero permanecer\xE1n en HomeKit con la etiqueta 'Sin respuesta'.","plugins.manage.confirm_disable_platform_2":"Cuando vuelvas a habilitar el plugin, los accesorios reaparecer\xE1n en la UI de Homebridge y volver\xE1n a ser controlables en HomeKit. Los accesorios no perder\xE1n sus datos de HomeKit (como escenas y automatizaciones relacionadas).","plugins.manage.confirm_enable":"\xBFSeguro que deseas activar {{ pluginName }}?","plugins.manage.disable":"Deshabilitar","plugins.manage.enable":"Habilitar","plugins.manage.information":"Informaci\xF3n del Plugin","plugins.manage.install":"Instalar","plugins.manage.installed":"Instalado","plugins.manage.json_config":"Configuraci\xF3n JSON","plugins.manage.manage_version":"Gestionar la versi\xF3n","plugins.manage.manual_update_command":"Para actualizar el paquete, abre un s\xEDmbolo del sistema de Node.js como Administrador y ejecuta los siguientes comandos:","plugins.manage.manual_update_required":"Reinicio Manual Requerido","plugins.manage.online_updates":"Las actualizaciones en l\xEDnea no est\xE1n soportadas en Windows. Necesitar\xE1s actualizar manualmente la UI de Homebridge despu\xE9s de detener el servicio de Homebridge.","plugins.manage.plugin_logs":"Logs del plugin","plugins.manage.release_notes":"Notas de la actualizaci\xF3n","plugins.manage.scoped.error":"An error occurred. You can download the logs below.","plugins.manage.scoped.info":"For more information about scoped plugins and why to switch, see the wiki page {{ link }}.","plugins.manage.scoped.process":"This process will not affect your Homebridge/HomeKit accessories. You will not be able to cancel the process once it has started. It will:","plugins.manage.scoped.switch":"Switch To Scoped Plugin","plugins.manage.scoped.windows":"Online updates are not supported on Windows. You will need to install the new plugin and uninstall the old plugin manually.","plugins.manage.scoped.windows_service":'You should <span class="font-weight-bold">not</span> restart Homebridge until both steps are complete.',"plugins.manage.select_version":"Elige la versi\xF3n para instalar","plugins.manage.thanks_for_updating":"Gracias por instalar la \xFAltima versi\xF3n de {{ pluginName }}.","plugins.manage.uninstall":"Desinstalar","plugins.manage.uninstalled":"Desinstalado","plugins.manage.unverified_message":'Los plugins de Homebridge que no est\xE1n marcados como "verificados" indican que no han pasado por el proceso de revisi\xF3n del equipo de Homebridge. La falta de verificaci\xF3n no necesariamente implica que el plugin no funcione bien o tenga problemas de seguridad. Los autores pueden haber optado por no solicitar la verificaci\xF3n por diversas razones.',"plugins.manage.unverified_subtitle":"{{ pluginName }} no est\xE1 verificado","plugins.manage.unverified_title":"Plugins sin verificar","plugins.manage.update":"Actualizar","plugins.manage.updated":"Actualizado","plugins.manage.verified_message":'Los plugins de Homebridge marcados como "verificados" han sido revisados por el equipo del proyecto Homebridge para garantizar que cumplan con diversos requisitos que fomentan las buenas pr\xE1cticas y una experiencia de usuario sin problemas.',"plugins.manage.verified_subtitle":"{{ pluginName }} est\xE1 verificado","plugins.manage.verified_title":"Plugins verificados","plugins.node_update.continue":"Continuar","plugins.placeholder_search_first":"Usa la barra de b\xFAsqueda que encontrar\xE1s arriba para buscar tu primer plugin.","plugins.placeholder_search_plugin":"Buscar plugins disponibles para instalar\u2026","plugins.settings.custom.homebridge-gsh.label_account_linked":"Cuenta vinculada","plugins.settings.custom.homebridge-gsh.label_link_account":"Vincular cuenta","plugins.settings.custom.homebridge-gsh.label_unlink_account":"Desvincular cuenta","plugins.settings.custom.homebridge-gsh.message_about":"El plugin Homebridge Google Smart Home te permite controlar tus accesorios de Homebridge desde un altavoz inteligente Google Home o desde la aplicaci\xF3n m\xF3vil Google Home.","plugins.settings.custom.homebridge-gsh.message_account_link_required":"Para activar esta funcionalidad debes iniciar sesi\xF3n con tu cuenta Google o GitHub; aseg\xFArate que usas la misma cuenta cuando est\xE9s a\xF1adiendo la acci\xF3n de Homebridge en la aplicaci\xF3n m\xF3vil Google Home.","plugins.settings.custom.homebridge-gsh.message_homebridge_restart_required":"Homebridge necesita reiniciarse para que los cambios tengan efecto.","plugins.settings.custom.homebridge-gsh.message_invalid_token":"Token de vinculaci\xF3n de cuenta inv\xE1lido en config.json","plugins.settings.deconz.dump_no_exist":"El archivo de volcado de Homebridge deCONZ a\xFAn no existe.","plugins.settings.hue.dump_no_exist":"El archivo de volcado de Homebridge Hue a\xFAn no existe.","plugins.settings.label_open_config_editor":"Abrir Editor de Configuraci\xF3n","plugins.settings.message_consult_documentation":"Por favor consulta la documentaci\xF3n del plugin para m\xE1s informaci\xF3n e instrucciones de c\xF3mo configurar correctamente este plugin.","plugins.settings.message_manual_config_required":"Este plugin debe ser configurado manualmente usando el Editor de Configuraci\xF3n de Homebridge UI.","plugins.settings.plugin_config_saved":"Configuraci\xF3n del plugin guardada","plugins.settings.restart_required":"Reinicia Homebridge para aplicar los cambios.","plugins.settings.title_settings":"Ajustes","plugins.status_disabled":"Deshabilitado","plugins.status_installed":"Instalado","plugins.toast_failed_to_load_plugin_schema":"Error al cargar el esquema de configuraci\xF3n del plugin.","plugins.toast_failed_to_load_plugins":"Error al cargar los plugins","plugins.uninstall_bridge_error":"Error al eliminar el puente hijo.","plugins.uninstall_remove_config_required":"Si eliminar\xE1s este plugin de forma permanente, aseg\xFArate de quitar cualquier configuraci\xF3n de este plugin en el archivo config.json antes de reiniciar Homebridge.","plugins.uninstall_remove_confirmation":"\xBFEst\xE1s seguro que deseas desinstalar {{ pluginName }}?","plugins.uninstall_remove_plugin_config":"\xBFEliminar la configuraci\xF3n del plugin?","plugins.uninstall_unpair_child_bridge":"\xBFDesvincular el puente hijo del plugin?","plugins.uninstall_unpair_child_bridges":"\xBFDesvincular {{ count }} puentes hijo del plugin?","reset.accessory_reset":"Accesorio Homebridge reiniciado","reset.action_is_irreversible":"Esta acci\xF3n es irreversible. Por favor, lee con precauci\xF3n antes de continuar.","reset.bridges.desc":"Si tienes problemas para vincular Homebridge, un accesorio externo o un puente hijo a HomeKit, es posible que necesites desvincularlo de HomeKit para empezar de nuevo.","reset.bridges.empty":"No tienes puentes para desvincular de HomeKit.","reset.bridges.title":"Puentes","reset.bridges_all.desc":"Desvincular todos los puentes de HomeKit. Esto incluye el puente principal de Homebridge, los puentes hijo y los puentes para accesorios externos.","reset.bridges_all.list_1":"Esto desvincular\xE1 el puente de Homebridge, todos los puentes hijo y puentes para accesorios externos de HomeKit.","reset.bridges_all.list_2":"Ten en cuenta que tus accesorios seguir\xE1n mostr\xE1ndose en HomeKit como sin respuesta, hasta que los puentes sean eliminados manualmente de HomeKit. Puedes hacer esto en la aplicaci\xF3n Casa, accediendo a Ajustes de Casa \u2192 Concentradores y Puentes \u2192 {Puente} \u2192 Eliminar Puente del Hogar.","reset.bridges_all.list_3":"Todos tus accesorios de Homebridge a HomeKit, escenas y automatizaciones necesitar\xE1n ser reconfigurados despu\xE9s de la desvinculaci\xF3n.","reset.bridges_all.list_4":"El PIN para vincular tu puente Homebridge a HomeKit ser\xE1 cambiado. Podr\xE1s ver los nuevos valores en tu configuraci\xF3n de Homebridge despu\xE9s de la desvinculaci\xF3n.","reset.bridges_all.title":"Desvincular Todos los Puentes","reset.bridges_single.desc":"Desvincular un solo puente de HomeKit. Esto puede ser un puente hijo o un puente para un accesorio externo como una c\xE1mara o TV.","reset.bridges_single.list_1":"Al desvincular un puente, cualquier accesorio publicado por este puente ser\xE1 eliminado de la cach\xE9 de Homebridge.","reset.bridges_single.list_2":"Los accesorios quedar\xE1n obsoletos en HomeKit (mostrando sin respuesta). Para eliminarlos, necesitar\xE1s eliminar manualmente este puente de HomeKit. Puedes hacer esto en la aplicaci\xF3n Casa desde la secci\xF3n de Ajustes de Casa.","reset.bridges_single.list_3":"Luego podr\xE1s intentar vincular el puente nuevamente si es necesario.","reset.bridges_single.title":"Desvincular Puente Individual","reset.cached_accessory_removed":"Accesorio eliminado de la cach\xE9.","reset.clear_cache_all.desc":"Eliminar todos los accesorios de la cach\xE9.","reset.clear_cache_all.list_1":"Al hacer clic en el bot\xF3n de eliminar abajo, Homebridge se reiniciar\xE1 y todos tus accesorios existentes ser\xE1n eliminados de Homebridge y HomeKit.","reset.clear_cache_all.list_2":"Todos los datos asociados de HomeKit tambi\xE9n ser\xE1n eliminados, esto incluye asociaciones de habitaciones, escenas y automatizaciones que use este accesorio.","reset.clear_cache_all.list_3":"Despu\xE9s de que Homebridge se reinicie, tus plugins volver\xE1n a a\xF1adir los accesorios como si el plugin se estuviera instalando por primera vez.","reset.clear_cache_all.title":"Eliminar Todos los Accesorios","reset.clear_cache_bridge.desc":"Eliminar todos los accesorios publicados por un puente de la cach\xE9.","reset.clear_cache_bridge.empty":"No tienes puentes de los cuales eliminar accesorios.","reset.clear_cache_bridge.list_1":"Esta funci\xF3n puede usarse para restablecer los accesorios existentes de un plugin en HomeKit. Ser\xE1n eliminados de Homebridge/HomeKit y luego el plugin los volver\xE1 a a\xF1adir como nuevos accesorios.","reset.clear_cache_bridge.list_2":"Los detalles de emparejamiento y el estado del puente hijo permanecer\xE1n igual.","reset.clear_cache_bridge.title":"Eliminar Accesorios del Puente","reset.clear_cache_single.desc":"Eliminar un solo accesorio de la cach\xE9.","reset.clear_cache_single.list_1":"\xA1Algunos plugins no se limpian correctamente! Si un accesorio que ya no tienes en Homebridge todav\xEDa se muestra en HomeKit, puedes eliminarlo de la cach\xE9.","reset.clear_cache_single.list_2":"Esta funci\xF3n puede usarse para restablecer un accesorio existente en HomeKit. Ser\xE1 eliminado de Homebridge/HomeKit y luego el plugin lo volver\xE1 a a\xF1adir como un nuevo accesorio.","reset.clear_cache_single.list_3":"Al eliminar un accesorio de la cach\xE9, todos sus datos asociados de HomeKit ser\xE1n eliminados. Esto incluye cualquier escena y automatizaci\xF3n asociada que use este accesorio.","reset.clear_cache_single.list_4":"Los accesorios solo pueden eliminarse cuando Homebridge no est\xE1 en ejecuci\xF3n. Homebridge se reiniciar\xE1 autom\xE1ticamente al hacer clic en cada uno de los botones de eliminaci\xF3n a continuaci\xF3n. Si necesitas eliminar varios accesorios, ten paciencia y permite que Homebridge se reinicie entre cada eliminaci\xF3n.","reset.clear_cache_single.title":"Eliminar Accesorio Individual","reset.delete_failed":"Error al eliminar accesorio.","reset.delete_success":"Reiniciando Homebridge y limpiando cach\xE9 de accesorios.","reset.error_message":"No se pudo cargar la cach\xE9 de accesorios. Quiz\xE1s no haya ning\xFAn accesorio en cach\xE9.","reset.failed_to_reset":"Error al reiniciar Homebridge. Comprueba los logs.","reset.force_restart_hb_help_text":"Usa esta acci\xF3n para forzar al servicio hb-service a hacer un reinicio completo.","reset.remove_cached_accessories_single_empty":"No tienes accesorios en cach\xE9 para eliminar.","reset.removing_cached_accessory_please_wait":"Eliminando accesorio de la cach\xE9, por favor espera\u2026","restart.child_bridge_list":"Por favor, reinicia estos puentes hijos para aplicar los cambios:","restart.child_bridges":"Por favor, reinicia los puentes hijos de este plugin para aplicar los cambios.","restart.homebridge":"Por favor, reinicia Homebridge para aplicar los cambios.","restart.label_restart_command_executed":"Comando de reinicio ejecutado","restart.please_wait_while_server_restarts":"Por favor, espera, esta p\xE1gina te redireccionar\xE1 autom\xE1ticamente cuando el servidor vuelva a estar disponible.","restart.server_is_taking_long_time_to_restart":"El reinicio est\xE1 tardando demasiado tiempo. Quiz\xE1 debas iniciar Homebridge de forma manual.","restart.service_ready":"Servidor Homebridge Listo","restart.title_restart":"Reiniciando Homebridge","restart.toast_server_restart_error":"Ocurri\xF3 un error al enviar el comando de reinicio al servidor","restart.toast_server_restart_timeout":"El servidor est\xE1 tardando demasiado tiempo en volver a estar disponible","restart.toast_server_restarted":"Servidor reiniciado","restart.ui_online":"Interfaz de Homebridge En L\xEDnea","rpi.throttled.currently_message":"Esta Raspberry Pi est\xE1 reportando una baja de voltaje; por favor, compruebe que est\xE1 conectada a una fuente de alimentaci\xF3n adecuada. El bajo voltaje puede provocar la inestabilidad del sistema y da\xF1os en la tarjeta SD.","rpi.throttled.previously_message":"Esta Raspberry Pi ha reportado una baja en el voltaje desde que se reinici\xF3 por \xFAltima vez; por favor, compruebe que est\xE1 conectada a una fuente de alimentaci\xF3n adecuada.","rpi.throttled.undervoltage_title":"Baja de Voltaje","settings.cache.desc":"Homebridge mantiene los accesorios en cach\xE9 para que no sean eliminados y vueltos a a\xF1adir a HomeKit cada vez que Homebridge se reinicia. A veces esta cach\xE9 puede desincronizarse con los accesorios reales en Homebridge.","settings.cache.title":"Accesorios","settings.changes.saved":"Tus cambios se han guardado y requieren un reinicio para surtir efecto.","settings.datetime.incorrect":"La fecha y hora en tu servidor Homebridge parecen ser incorrectas. Esto puede causar problemas inesperados. Haz clic aqu\xED para m\xE1s informaci\xF3n.","settings.display.blue":"Azul","settings.display.bluegrey":"Gris Azulado","settings.display.brown":"Marr\xF3n","settings.display.cyan":"Cian","settings.display.dark":"Oscuro","settings.display.deep_purple":"Morado Oscuro","settings.display.green":"Verde","settings.display.grey":"Gris","settings.display.indigo":"\xCDndigo","settings.display.lang":"Idioma","settings.display.light":"Claro","settings.display.lighting_mode":"Modo de Iluminaci\xF3n","settings.display.login_wallpaper":"Fondo de Inicio de Sesi\xF3n","settings.display.login_wallpaper_desc":"Se puede establecer un fondo de inicio de sesi\xF3n personalizado a\xF1adiendo un archivo <code>ui-wallpaper.jpg</code> a tu directorio de almacenamiento de Homebridge, o proporcionando aqu\xED una ruta completa a un archivo de imagen local.","settings.display.orange":"Naranja","settings.display.pink":"Rosa","settings.display.purple":"Morado","settings.display.red":"Rojo","settings.display.teal":"Verde Azulado","settings.display.temp_units":"Unidades de Temperatura","settings.display.temp_units.c":"Celsius (\xB0C)","settings.display.temp_units.f":"Fahrenheit (\xB0F)","settings.display.theme":"Tema","settings.general.title_display":"Pantalla","settings.general.title_general":"General","settings.mdns_advertiser":"Difusi\xF3n mDNS","settings.mdns_advertiser_exp":"experimental","settings.mdns_advertiser_help":"Si experimentas problemas para conectarte a Homebridge, prueba con alguna de las alternativas de difusi\xF3n mDNS.","settings.mdns_advertiser_not_connected":"No Conectado","settings.mdns_advertiser_rec":"recomendado","settings.network.label_interface_name":"Nombre de la Interfaz","settings.network.label_ip_address":"Direcci\xF3n IP","settings.network.message_network_interface":"Si no se seleccionan interfaces de red, Homebridge intentar\xE1 determinar autom\xE1ticamente qu\xE9 interfaces difundir.","settings.network.port_hb":"Puerto de Homebridge","settings.network.port_hb_desc":"El n\xFAmero de puerto en el que se ejecutar\xE1 el puente Homebridge. Debe estar entre 1025 y 65533, y no debe ser el mismo que el puerto de la interfaz de Homebridge.","settings.network.port_ui":"Puerto de la Interfaz","settings.network.port_ui_desc":"El n\xFAmero de puerto en el que se ejecutar\xE1 la interfaz de Homebridge.","settings.network.title_network":"Red","settings.network.title_network_interfaces":"Interfaces de Red","settings.service.debug_tooltip":"Algunos plugins requieren que configures la variable DEBUG para habilitar el registro a nivel debug.","settings.service.node_tooltip":"Opciones de ejecuci\xF3n de Node.js para este proceso. Se recomienda dejar esta secci\xF3n en blanco a menos que sepas lo que est\xE1s haciendo.","settings.startup.debug":"Modo Debug de Homebridge","settings.startup.debug_desc_v1":"Activa esto si necesitas que Homebridge genere registros m\xE1s detallados. Esta configuraci\xF3n se aplica tanto al puente principal de Homebridge como a todos los puentes hijos. Algunos plugins tambi\xE9n pueden adherirse a esta configuraci\xF3n y generar registros m\xE1s detallados.","settings.startup.debug_desc_v2":"Activa esto si necesitas que Homebridge genere registros m\xE1s detallados. Esta configuraci\xF3n se aplica al puente principal de Homebridge. La configuraci\xF3n para los puentes hijos se encuentra en la configuraci\xF3n del puente hijo desde la p\xE1gina de plugins. Algunos plugins tambi\xE9n pueden adherirse a esta configuraci\xF3n y generar registros m\xE1s detallados.","settings.startup.insecure":"Modo 'Inseguro' de Homebridge","settings.startup.insecure_desc":"Para controlar tus accesorios a trav\xE9s de la interfaz de Homebridge, debes ejecutar Homebridge en modo inseguro.","settings.startup.keep_accessories":"Mantener accesorios de los plugins desinstalados","settings.startup.keep_accessories_desc":"Si est\xE1 activado, los accesorios de los plugins de plataforma permanecer\xE1n en la cach\xE9 incluso despu\xE9s de que el plugin sea desinstalado. Esto puede ser \xFAtil si planeas reinstalar el plugin m\xE1s tarde.","settings.title_startup_options":"Opciones de Arranque","settings.unpair_bridge.load_error":"No se pudieron cargar los puentes emparejados.","settings.unpair_bridge.unpair_error":"Error al desemparejar el puente.","setup.button_get_started":"Empezar","setup.create_account":"Crear Cuenta","setup.create_account_reason":"Debe configurar una contrase\xF1a de autenticaci\xF3n para su interfaz web de Homebridge. Aunque Homebridge sea accesible solo desde la red local, es importante protegerlo de accesos no autorizados.","setup.open_dashboard":"Abrir Panel de Control","setup.welcome_to_homebridge":"Bienvenido a Homebridge",setup_wizard_message_complete_message:"El procedimiento de configuraci\xF3n se ha completado y ya est\xE1 listo para empezar a utilizar Homebridge.",setup_wizard_message_complete_title:"\xA1Felicidades!",setup_wizard_message_restore:"Restaurar desde Copia de Seguridad","status.code_scan":"Escanear para agregar a HomeKit.","status.cpu.load":"Carga","status.cpu.temp":"Temperatura","status.cpu.title_cpu":"CPU","status.credits.title":"Cr\xE9ditos","status.homebridge.checking":"Buscando actualizaciones\u2026","status.homebridge.up_to_date":"Actualizado","status.memory.label_available":"Libre","status.memory.label_total":"Total","status.memory.title_memory":"Memoria","status.network.received_per_second":"Recibido","status.network.sent_per_second":"Enviado","status.network.title_network":"Actividad de la Red","status.plugin_out_of_date":"Plugin desactualizado","status.plugins_out_of_date":"Plugins desactualizados","status.services.label_not_running":"Detenido","status.services.label_running":"Ejecut\xE1ndose","status.services.updates":"Update Centre","status.uptime.title_uptime":"Tiempo encendido","status.widget.accessories.choose_accessories":"Selecciona los accesorios para mostrar en este widget desde la pesta\xF1a Accesorios.","status.widget.add.label_pairing_code":"C\xF3digo de Emparejamiento","status.widget.bridge.restart_error":"Error al reiniciar el puente hijo.","status.widget.clock":"Reloj","status.widget.clock_dateformat":"Formato de Fecha","status.widget.clock_timeformat":"Formato de Hora","status.widget.font_size":"Tama\xF1o de Fuente","status.widget.font_weight":"Grosor de Fuente","status.widget.hide_on_mobile":"Ocultar en vista compacta (vista de m\xF3viles)","status.widget.homebridge_logs":"Logs de Homebridge","status.widget.info":"Informaci\xF3n del Sistema","status.widget.info.config_path":"Ruta de Configuraci\xF3n","status.widget.info.disabled":"No","status.widget.info.docker":"Docker","status.widget.info.glibc_message":"Este mensaje indica que tu sistema operativo no es compatible con versiones m\xE1s nuevas de Node.js. Para solucionar esto y poder instalar actualizaciones futuras de Node.js, deber\xE1s actualizar tu sistema operativo a una versi\xF3n m\xE1s reciente.","status.widget.info.glibc_title":"Actualizaci\xF3n del SO","status.widget.info.hostname":"Nombre del Host","status.widget.info.ipv4":"IPv4","status.widget.info.ipv6":"IPv6","status.widget.info.no":"No","status.widget.info.node_unsupp":"Unsupported","status.widget.info.node_unsupp_message":"\xA1Atenci\xF3n! Est\xE1s utilizando una versi\xF3n de Node.js que no es oficialmente compatible con Homebridge. Te recomendamos cambiar a una versi\xF3n compatible para garantizar un funcionamiento \xF3ptimo.","status.widget.info.node_unsupp_title":"Versi\xF3n de Node no soportada","status.widget.info.node_update_message":"Homebridge necesita Node.js instalado en tu sistema para funcionar. Ocasionalmente, deber\xE1s actualizar el entorno de ejecuci\xF3n de Node.js para habilitar nuevas funcionalidades. Homebridge (y los plugins verificados) son compatibles con todas las versiones activas y de soporte LTS (Long-Term Support) actuales de Node.js.","status.widget.info.node_update_title":"Actualizaci\xF3n de Node","status.widget.info.nodejs_path":"Ruta de Node.js","status.widget.info.nodejs_version":"Versi\xF3n de Node.js","status.widget.info.os":"Sistema Operativo","status.widget.info.plugin_path":"Ruta de Plugins","status.widget.info.service_mode":"Modo de Servicio","status.widget.info.service_user":"Usuario","status.widget.info.servicemode_message":"El modo independiente ya no se recomienda. Configurar Homebridge y Homebridge UI con hb-service ofrece las mismas ventajas que el modo independiente, pero es mucho m\xE1s f\xE1cil de instalar y mantener.","status.widget.info.servicemode_title":"Modo de Servicio","status.widget.info.storage_path":"Ruta de Almacenamiento","status.widget.info.synology_package":"Paquete de Synology","status.widget.info.timezone":"Zona Horaria","status.widget.info.yes":"S\xED","status.widget.network.history_items":"Elementos del historial","status.widget.network.items":"elementos","status.widget.network.network_interface":"Interfaz de Red","status.widget.network.none_selected":"Ninguno seleccionado en ajustes - usando el predeterminado.","status.widget.network.refresh_interval":"Intervalo de actualizaci\xF3n","status.widget.network.refresh_note":"Actualiza la p\xE1gina despu\xE9s de guardar para que los cambios surtan efecto.","status.widget.network.seconds":"segundos","status.widget.qr_paired":"Emparejado","status.widget.qr_unpaired":"No emparejado","status.widget.show_hide":"Mostrar/Ocultar Widgets","status.widget.title_manage_widget":"Gestionar Widget","status.widget.uptime.label_process":"Proceso","status.widget.uptime.label_server":"Servidor","status.widget.weather.label_config_required_help":"Por favor, selecciona tu ciudad en los ajustes del widget.","status.widget.weather.label_search_for_your_city":"Busca tu ciudad:","status.widget.weather.title_weather":"Clima","support.dev.api":"API de Homebridge","support.dev.api_hap":"API de Hap-NodeJS","support.dev.api_hap_sub":"HAP-NodeJS es una implementaci\xF3n del Servidor de Accesorios HomeKit seg\xFAn lo especificado en el Protocolo de Accesorios HomeKit (HAP), que est\xE1 definido por Apple como parte del Framework HomeKit.","support.dev.api_sub":"Homebridge es un servidor Node.js ligero que puedes ejecutar en tu red dom\xE9stica para emular el Protocolo de Accesorios HomeKit (HAP).","support.dev.item_swagger":"Documentaci\xF3n Swagger","support.dev.item_swagger_sub":"La API REST de Homebridge te permite interactuar con tu servidor Homebridge utilizando peticiones HTTP.","support.dev.template":"Repositorio de plantillas para plugins","support.dev.template_sub":"Una plantilla de plugin para Homebridge que puede usarse como base para ayudarte a empezar a desarrollar tu propio plugin.","support.dev.title":"Desarrolladores","support.dev.verified":"Verificado por Homebridge","support.dev.verified_sub":"El programa Verificado por Homebridge permite a los desarrolladores de plugins que sus plugins sean revisados y respaldados por el equipo del proyecto Homebridge.","support.links.discord":"Servidor de Discord","support.links.discord_sub":"\xDAnete al servidor de chat de Discord de Homebridge para charlar con otros usuarios y desarrolladores.","support.links.documentation":"Documentaci\xF3n","support.links.documentation_sub":"La documentaci\xF3n de Homebridge proporciona abundante informaci\xF3n sobre c\xF3mo empezar con Homebridge y resoluciones de problemas comunes.","support.links.issue":"Informar un problema","support.links.issue_sub":"Si est\xE1s experimentando un problema con Homebridge, por favor abre un nuevo issue en GitHub. Esto no debe usarse para problemas con plugins espec\xEDficos.","support.links.reddit":"Comunidad en Reddit","support.links.reddit_sub":"El subreddit de Homebridge es un excelente lugar para compartir tu configuraci\xF3n de Homebridge y pedir ayuda.","support.links.title":"Enlaces \xFAtiles","support.title":"Soporte","toast.no_auth":"Solo los administradores pueden acceder a la p\xE1gina solicitada.","toast.title_error":"Error","toast.title_success":"Correcto","toast.title_warning":"Aviso","users.button_add_new_user":"A\xF1adir nuevo usuario","users.button_add_user":"A\xF1adir usuario","users.label_admin_user":"\xBFUsuario Administrador?","users.label_confirm_password":"Confirmar contrase\xF1a","users.label_full_name":"Nombre completo","users.label_new_password":"Nueva contrase\xF1a","users.label_password":"Contrase\xF1a","users.label_username":"Usuario","users.setup_2fa":"Configurar 2FA","users.setup_2fa_activate_error":"Se produjo un error al activar 2FA","users.setup_2fa_cannot_setup_2fa":"No se puede configurar 2FA","users.setup_2fa_disable":"Desactivar 2FA","users.setup_2fa_disable_current_password":"Ingresa tu contrase\xF1a actual para desactivar 2FA:","users.setup_2fa_disable_success":"2FA desactivada.","users.setup_2fa_enable":"Activar 2FA","users.setup_2fa_enable_error":"Se produjo un error al configurar 2FA","users.setup_2fa_enabled_success":"2FA activada.","users.setup_2fa_enter_code":"Ingresa el c\xF3digo de tu aplicaci\xF3n de autenticaci\xF3n:","users.setup_2fa_scan_qr_code":"Escanea el siguiente C\xF3digo QR con tu aplicaci\xF3n de autenticaci\xF3n:","users.setup_2fa_server_time_out":"El reloj de tu servidor est\xE1 desactualizado por {{ timeDiffError }}ms. El m\xE1ximo permitido es +/-5000 ms.","users.setup_2fa_warning":"2FA requiere que tu servidor Homebridge tenga una fecha y hora muy precisas para iniciar sesi\xF3n. Si tu servidor no tiene la capacidad de mantener la hora con precisi\xF3n, no debes habilitar la 2FA o te arriesgas a ser bloqueado de la interfaz de Homebridge.","users.title_add_user":"A\xF1adir usuario","users.title_edit_user":"Editar usuario","users.title_users":"Usuarios","users.toast_added_new_user":"A\xF1adido nuevo usuario","users.toast_failed_to_add_user":"Error al a\xF1adir el usuario","users.toast_failed_to_delete_user":"Error al eliminar el usuario","users.toast_updated_user":"Usuario actualizado","users.toast_user_deleted":"Usuario eliminado"}});var Ns=y((Dd,da)=>{da.exports={"accessories.button_add_room":"Lis\xE4\xE4 huone","accessories.button_hidden_hide":"Piilota piilotettu","accessories.button_hidden_show":"N\xE4yt\xE4 piilotettu","accessories.control.auto":"Automaattinen","accessories.control.away":"Pois","accessories.control.battery_charging":"Lataa","accessories.control.battery_notchargeable":"Ei ladattava","accessories.control.battery_notcharging":"Ei lataa","accessories.control.brightness":"Kirkkaus","accessories.control.closed":"Suljettu","accessories.control.closing":"Sulkeutuu","accessories.control.cool":"J\xE4\xE4hdytys","accessories.control.default_room":"Oletus huone","accessories.control.default_running_time":"Oletus k\xE4yntiaika","accessories.control.dehumidifying":"Kosteuden poisto","accessories.control.detected":"Detected","accessories.control.drag_here":"Raaha t\xE4h\xE4n","accessories.control.fan":"Tuuletin","accessories.control.heat":"L\xE4mmitys","accessories.control.home":"Koti","accessories.control.humidifying":"Kosteutus","accessories.control.jammed":"Juuttunut","accessories.control.light":"Valo","accessories.control.locked":"Lukittu","accessories.control.mute":"Vaimennus","accessories.control.night":"Y\xF6","accessories.control.not_detected":"Not Detected","accessories.control.not_mute":"P\xE4\xE4ll\xE4","accessories.control.off":"Pois","accessories.control.on":"P\xE4\xE4ll\xE4","accessories.control.open":"Auki","accessories.control.opening":"Avautuu","accessories.control.rotation_speed":"Py\xF6rimisnopeus","accessories.control.running":"K\xE4ynniss\xE4","accessories.control.speaker_volume":"\xC4\xE4nenvoimakkuus","accessories.control.stopped":"Pys\xE4ytetty","accessories.control.target":"Kohde","accessories.control.target_humidity":"Haluttu kosteus","accessories.control.target_temperature":"Haluttu l\xE4mp\xF6tila","accessories.control.triggered":"Liipaistunut","accessories.control.unknown":"Tuntematon","accessories.control.unlocked":"Lukitsematon","accessories.control_disabled":"Homebridge laitehallinta pois k\xE4yt\xF6st\xE4","accessories.hide_this_accessory":"Piilota t\xE4m\xE4 laite","accessories.message_for_more_information":"lis\xE4tietoja.","accessories.message_must_use_insecure_mode":"Laitteiden hallitsemiseksi Homebridge on on oltava suojaamattomassa tilassa.","accessories.message_please_see":"Katso","accessories.name":"Nimi","accessories.room_name":"Huoneen Nimi","accessories.rooms_not_appear_in_homekit":"Huoneet jotka luot t\xE4\xE4ll\xE4 eiv\xE4t n\xE4y HomeKit:s\xE4, ne ovat vain Homebridge UI:ta varten","accessories.settings_link":"P\xE4\xE4set tarvittaessa Homebridge asetuksiin sivuvalikosta","accessories.show_on_dashboard":"N\xE4yt\xE4 hallintapaneelissa","accessories.title_accessories":"Laitteet","backup.backup_delete_failed":"Varmuuskopion poisto ep\xE4onnistui. Katso lokitiedoista tarkemmin.","backup.backup_download_failed":"Varmuuskopion lataus ep\xE4onnistui","backup.backup_exceeds_max_size":"Varmuuskopion koko ({{ backupSize }}) ylitt\xE4\xE4 maksimikoon {{ maxBackupSizeText }}","backup.backup_help_one":"Lataa varmuuskopio koko Homebridge ymp\xE4rist\xF6st\xE4. Varmuuskopioidaan koko Homebridge talletus hakemisto. Voit palauttaa varmuuskopion mihin tahansa Homebridge asennukseen","backup.backup_help_two":"Laajennukset joita ei hallita npm:st\xE4 ja laajennukset jotka on asennettu suoraan GitHub:sta eiv\xE4t sis\xE4lly varmuuskopiointiin tai palautukseen.","backup.backup_restored":"Varmuuskopio palautettu","backup.backup_warning":"Varmuuskopio sis\xE4lt\xE4\xE4 arkaluontoista tietoa, \xE4l\xE4 jaa sit\xE4 muille.","backup.button_restore_backup":"Palauta varmuuskopio","backup.label_choose_backup_file_to_restore":"Valitse palautettava varmuuskopio","backup.label_uploading":"Ladataan","backup.load_error":"Asetus varmuuskopion lataus ep\xE4onnistui.","backup.now":"Nyt","backup.restore_failed":"Palautus ep\xE4onnistui","backup.restore_help_one":"Palauta aiemmin Homebridge-k\xE4ytt\xF6liittym\xE4ll\xE4 luomasi varmuuskopioarkisto. Homebridge-kokoonpanosi, v\xE4limuistissa olevat lis\xE4varusteet, HomeKit-pariliitokset ja Homebridge-k\xE4ytt\xF6liittym\xE4n k\xE4ytt\xE4j\xE4tilit palautetaan. Kaikki asentamasi Homebridge-laajennukset ladataan my\xF6s npm-rekisterist\xE4.","backup.restore_help_two":"Palautuksen j\xE4lkeen sinun on kirjauduttava Homebridge-k\xE4ytt\xF6liittym\xE4\xE4n k\xE4ytt\xE4m\xE4ll\xE4 palautetun ilmentym\xE4n tunnistetietoja.","backup.restore_max_size":"Palautettavan varmuuskoion maksimikoko on {{ maxBackupSizeText }}.","backup.restore_warning":"Varmuuskopiosta palauttaminen korvaa peruuttamattomasti nykyisen Homebridge-kokoonpanon.","backup.scheduled_backup_time":"Homebridgen t\xE4ydellinen varmuuskopio luodaan automaattisesti joka p\xE4iv\xE4 klo {{ backupTime }}, ja sit\xE4 s\xE4ilytet\xE4\xE4n {{ dayCount }} p\xE4iv\xE4\xE4.","backup.title_backup":"Varmuuskopioi","child_bridge.about":"Homebridgen avulla voit k\xE4ytt\xE4\xE4 laajennuksen alustaa tai lis\xE4laitetta erillisen\xE4 lapsisiltana. T\xE4m\xE4 voi parantaa Homebridgen yleist\xE4 reagointikyky\xE4 ja luotettavuutta.","child_bridge.bridge_connect":"Yhdist\xE4 HomeKit","child_bridge.bridge_settings":"Lapsisillan asetukset","child_bridge.bridges":"HomeKit Sillat","child_bridge.bridges_paired":"Jokainen lapsisilta, alusta ja laite t\xE4ytyy parittaa HomeKit:in kanssa erikseen.","child_bridge.config.debug":"Vianhaku tila","child_bridge.config.description":"N\xE4m\xE4 tiedot eiv\xE4t ole pakollisia, Mutta niit\xE4 voidaan k\xE4ytt\xE4\xE4 korvaamaan HomeKit:in asetukset t\xE4ss\xE4 sillassa.","child_bridge.config.firmware":"Firmware Versio","child_bridge.config.header":"Kokoonpano","child_bridge.config.manufacturer":"Valmistaja","child_bridge.config.model":"Malli","child_bridge.config.name":"Nimi","child_bridge.must_configure_plugin":"Sinun t\xE4ytyy m\xE4\xE4ritell\xE4 lis\xE4osan asetukset ennnekuin voit hallita sen silta-asetuksia.","child_bridge.reset_accessories":"Nollaa laitteet","child_bridge.reset_accessories_list":"Valitse alla olevasta listasta mitk\xE4 lapsisillat haluat nollata:","child_bridge.restart":"Uudelleenk\xE4ynnist\xE4 lapsisilta","child_bridge.restart_homebridge":"Uudelleenk\xE4ynnist\xE4 Homebridge viimeistell\xE4ksesi t\xE4m\xE4n lapsisillan m\xE4\xE4rittely.","child_bridge.restart_plural":"Uudellenk\xE4ynnist\xE4 lapsisillat","child_bridge.return_to_pair":"Palaa t\xE4h\xE4n n\xE4kym\xE4\xE4n Homebridgen uudelleenk\xE4ynnistyksen j\xE4lkeen n\xE4hd\xE4ksesi parituksen QR koodi.","child_bridge.select_type":"Valitse alustat tai laitteet joiden haluat toimivan lapsisiltana","child_bridge.setup":"M\xE4\xE4rittele lapsisilta","child_bridge.start":"K\xE4ynnist\xE4 lapsisilta","child_bridge.start_plural":"K\xE4ynnist\xE4 lapsisillat","child_bridge.stop":"Pys\xE4yt\xE4 lapsisilta","child_bridge.stop_plural":"Pys\xE4yt\xE4 lapsisillat","child_bridge.wiki_link":"Lue lis\xE4\xE4 lapsisilloista","config.config_accessory_must_be_array":"laitelistan on oltava array []","config.config_bridge_missing":"Sillan asetukset puuttuvat","config.config_invalid_json":"Asetuksissa on virheellinen JSON","config.config_platform_must_be_array":"alustalistan on oltava array []","config.config_username_error":"Sillan k\xE4ytt\xE4j\xE4nimen on oltava 6 paria pisteell\xE4 erotettuja heksadesimaali merkkej\xE4 (A-F 0-9)","config.error_blocks_objects":"Kaikkien {{ type }} lohkojen on oltava objekteja.","config.error_blocks_type":"kaikkien {{ type }} lohkojen pit\xE4\xE4 sis\xE4lt\xE4\xE4 {{ type }} ominaisuus.","config.error_string_array":"Jokaisen arvon {{ key }} joukossa pit\xE4\xE4 olla merkkijono.","config.error_string_type":"{{ type }} ominaisuuden pit\xE4\xE4 olla merkkijono.","config.failed_to_save_config":"Asetusten talletus ep\xE4onnistui","config.restore.confirm":"Napauta Talleta hyv\xE4ksy\xE4ksesi t\xE4m\xE4n varmuuskopion palautuksen.","config.restore.copy_to_editor":"Kopioi muokattavaksi","config.restore.no_backups":"Ei varmuuskopioita","config.restore.title_restore_homebridge_backup":"Palauta Homebridge asetusten varmuuskopio","config.restore.toast_backups_deleted":"Kaikki varmuuskopiot poistettu","config.title_backup_loaded":"Varmuuskopio ladattu","form.button_cancel":"Peru","form.button_close":"Sulje","form.button_delete":"Poista","form.button_disable":"Poista k\xE4yt\xF6st\xE4","form.button_download":"Lataa","form.button_edit":"Muokkaa","form.button_enable":"Ota k\xE4ytt\xF6\xF6n","form.button_hide":"Piilota","form.button_lock":"Lukitse","form.button_more_info":"Lis\xE4\xE4 tietoa","form.button_remove":"Poista","form.button_reset":"Nollaa","form.button_restore":"Palauta","form.button_save":"Talleta","form.button_show":"N\xE4yt\xE4","form.button_unlock":"Poista lukitus","form.button_unpair":"Pura pariliitos","form.label_invalid":"Config validation failed - you can still save your changes.","form.label_invalid_strict":"Config validation failed - please review the form before saving.","form.label_valid":"Config validation passed.","form.select.auto":"Automattinen (K\xE4yt\xE4 selaimen asetuksia)","login.button_login":"Kirjaudu","login.invalid_credentials":"V\xE4\xE4r\xE4 k\xE4ytt\xE4j\xE4tunnus tai salasana","login.label_2fa_code":"Kaksivaiheisen tunnistautumisen koodi","login.label_password":"Salasana","login.label_username":"K\xE4ytt\xE4j\xE4tunnus","login.message_invalid_2fa_code":"Sy\xF6tetty koodi on v\xE4\xE4r\xE4 tai vanhentunut.","logs.download.error":"Lokitiedoston lataus ep\xE4onnistui.","logs.download_warning":"Homebridge lokitiedosto voi sis\xE4lt\xE4\xE4 henkil\xF6kohtaisia tietoja, salasanoja tai p\xE4\xE4sykoodeja. Ole hyv\xE4 ja tarkasta lokitiedosto ja poista arkaluontoiset tiedot ennen jakamista.","logs.log_file_truncated":"Lokitiedosto katkaistu.","logs.title_download_log_file":"Lataa lokitiedosto","logs.title_truncate_log_file":"Poista lokitiedot","logs.truncate.error":"Lokitiedoston katkaisu ep\xE4onnistui.","logs.truncate_log_warning":"T\xE4m\xE4 toiminto poistaa peruuttamattomasti Homebridgen lokitiedot. Haluatko varmasti jatkaa?","menu.config_json_editor":"JSON Asetukset","menu.docker.restart_container":"Uudellenk\xE4ynnist\xE4 Container","menu.docker.startup_script":"K\xE4ynnistys skripti","menu.docker.terminal":"P\xE4\xE4te","menu.hbrestart.confirm_hb":"Uudelleenk\xE4ynnist\xE4 Homebridge","menu.hbrestart.confirm_ui":"Uudelleenk\xE4ynnist\xE4 HB Palvelu & UI","menu.hbrestart.title":"Uudelleenk\xE4ynnist\xE4 Homebridge","menu.label_accessories":"Laitteet","menu.label_plugins":"Laajennukset","menu.label_settings":"Asetukset","menu.label_settings_advanced":"UI kehittyneet asetukset","menu.label_status":"Tila","menu.linux.label_logs":"Lokitiedot","menu.linux.label_restart_server":"Uudellenk\xE4ynnist\xE4 j\xE4rjestelm\xE4","menu.linux.label_shutdown_server":"Sulje j\xE4rjestelm\xE4","menu.linux.label_terminal":"P\xE4\xE4te","menu.restart.title":"K\xE4ynnistys optiot","menu.settings.title":"Asetukset","menu.tooltip_logout":"Kirjaudu ulos","menu.tooltip_restart":"Uudelleenk\xE4ynnist\xE4","menu.tooltip_user_accounts":"K\xE4ytt\xE4j\xE4tunnukset","menu.tooltip_view_logs":"N\xE4yt\xE4 lokitiedot","platform.docker.container_restarted":"Docker Container uudelleenk\xE4ynnistetty","platform.docker.must_use_hashbang":"Komentojonossa pt\xE4\xE4 olla #!/bin/sh hashbang.","platform.docker.restart_required":"Docker container t\xE4ytyy uudelleenk\xE4ynnist\xE4\xE4 muutosten k\xE4ytt\xF6\xF6nottamiseksi.","platform.docker.run_with_restart":"Varmista ett\xE4 Docker containerin k\xE4ynnistys komennossa on parametri: <code>--restart=always</code>","platform.docker.script_help":"T\xE4m\xE4 komentojono suoritetaan aina kun docker container k\xE4ynnistyy. Voita k\xE4ytt\xE4\xE4 t\xE4t\xE4 asentaaksesi lis\xE4-asennuksia joita laajennukset saattavat tarvita, kuten ffmpeg tai libpcap-dev.","platform.docker.script_saved":"K\xE4ynnistys komentojono talletettu","platform.docker.server_long_time":"Uudelleenk\xE4ynnistys tuntuu kest\xE4v\xE4n. Sinun t\xE4ytyy ehk\xE4 k\xE4ynnist\xE4\xE4 Docker container k\xE4sin.","platform.docker.title_restarting":"Uudelleenk\xE4ynnistet\xE4\xE4n Docker Container","platform.linux.long_time":"Palvelimen uudelleenk\xE4ynnistys tuntuu kest\xE4v\xE4n. Sinun t\xE4ytyy ehk\xE4 k\xE4ynnist\xE4\xE4 palvelin k\xE4sin.","platform.linux.restart":"Odota ole hyv\xE4, t\xE4m\xE4 sivu p\xE4ivittyy automaattisesti kun Homebridge on taas k\xE4ynniss\xE4.","platform.linux.restarting_server":"Uudellenk\xE4ynnistet\xE4\xE4n palvelin","platform.linux.server_restart_error":"Tapahtui virhe uudelleenk\xE4ynnistys komennon l\xE4hett\xE4misess\xE4 palvelimelle","platform.linux.server_restarted":"Palvelin uudelleenk\xE4ynnistetty","platform.linux.server_taking_long_time":"Palvelimen k\xE4ynnistyminen tuntuu kest\xE4v\xE4n","platform.linux.server_will_power_down":"Palvelin sammutetaan piakkoin.","platform.linux.shutting_down_server":"Palvelinta sammutetaan","platform.version.restart_required":"Homebridge UI v{{ uiVersion }} on asennettu, mutta k\xE4ynniss\xE4 olevan palvelimen versio on viel\xE4 v{{ serverVersion }}.","platform.version.service_restart_required":"Tarvitaan uudellenk\xE4ynnistys","plugins.bridge.action_error":"Virhe toiminnossa: {{ action }} lapsisillassa.","plugins.button_homepage":"Laajennuksen kotisivu","plugins.button_set_up":"M\xE4\xE4rit\xE4 asetukset","plugins.button_settings":"Laajennuksen asetukset","plugins.button_uninstall":"Poista asennus","plugins.button_update":"P\xE4ivit\xE4","plugins.compat.are_you_sure":"Haluatko kuitenkin jatkaa?","plugins.compat.hb_node_too_low":"{{ packageName }} v{{ latestVersion }} tarvitsee Node.js v{{ minVersion }} tai uudemman. K\xE4yt\xF6ss\xE4 on Node.js {{ installedVersion }}.","plugins.compat.hb_too_low":"{{ pluginName }} laajennus suosittelee Homebridge v{{ minVersion }} tai uudemman k\xE4ytt\xF6\xE4. K\xE4yt\xF6ss\xE4 on Homebridge v{{ installedVersion }}.","plugins.compat.node_first":"Ole hyv\xE4 ja p\xE4ivit\xE4 Node.js ennen {{ packageName }} p\xE4ivitt\xE4mist\xE4.","plugins.compat.node_link":"Kuinka p\xE4ivitt\xE4\xE4 Node.js","plugins.compat.node_too_low":"{{ pluginName }} laajennus suosittelee Node.js v{{ minVersion }} tai uudemman k\xE4ytt\xF6\xE4. K\xE4yt\xF6ss\xE4 on Node.js {{ installedVersion }}.","plugins.compat.title":"Yhteensopivuuden tarkastus","plugins.config.load_error":"Laajennuksen asetusten lataus ep\xE4onnistui.","plugins.config.must_be_array":"Laajennuksen asetusten on oltava joukko.","plugins.config.must_be_array_objects":"Laajennuksen asetusten on oltava oliojoukko.","plugins.config.must_be_object":"Asetusten osion pit\xE4\xE4 olla olio.","plugins.config.name_property":'Laitteella on oltava "name" ominaisuus',"plugins.config.please_fix":"Ole hyv\xE4 ja korjaa l\xF6ydetyt virheet ennen uuden osion lis\xE4\xE4mist\xE4.","plugins.config.remove_error":"Laajennuksen asetusten poisto ep\xE4onnistui.","plugins.disable.error":"Laajennuksen k\xE4yt\xF6st\xE4 poisto ep\xE4onnistui.","plugins.donate.button_not_verified":"Ei tarkastettu","plugins.donate.button_verified":"Tarkastettu","plugins.donate.message_1":"Useammiten k\xE4ytt\xE4j\xE4t asentavat laajennuksiaan suoraan Homebridge-k\xE4ytt\xF6liittym\xE4n kautta joten he eiv\xE4t todenn\xE4k\xF6isesti vieraile projektien GitHub-sivulla jossa kerrotaan tavoista tukea kehitt\xE4j\xE4\xE4.","plugins.donate.message_2":"Lahjoituslinkkien lis\xE4\xE4minen suoraan Homebridge-k\xE4ytt\xF6liittym\xE4\xE4n varmistaa, ett\xE4 k\xE4ytt\xE4j\xE4t osaavat halutessaan tukea Homebridge-kehitt\xE4ji\xE4.","plugins.donate.tile_donate_to":"Lahjoita {{ author }}","plugins.enable.error":"Laajennuksen k\xE4ytt\xF6\xF6notto ep\xE4onnistui.","plugins.manage.all_versions":"Kaikki versiot","plugins.manage.child_bridge_restart":"Lapsisilta uudellenk\xE4ynnistetty onnistuneesti.","plugins.manage.child_bridge_restart_failed":"Laajennuksen uudelleenk\xE4ynnistys ep\xE4onnistui, ole hyv\xE4 ja uudelleenk\xE4ynnist\xE4 Homebridge k\xE4sin.","plugins.manage.confirm_disable":"Haluatko varmasti poistaa k\xE4yt\xF6st\xE4 {{ pluginName }}?","plugins.manage.confirm_disable_accessory_1":"Kaikki t\xE4m\xE4n laajennuksen k\xE4ytt\xE4m\xE4t lis\xE4varusteet poistetaan Homebridge UI -lis\xE4varusten\xE4yt\xF6st\xE4 ja HomeKitist\xE4.","plugins.manage.confirm_disable_accessory_2":"Kun otat laajennuksen uudelleen k\xE4ytt\xF6\xF6n, lis\xE4varusteet tulevat takaisin Homebridge-k\xE4ytt\xF6liittym\xE4\xE4n ja HomeKitiin. Lis\xE4varusteet menett\xE4v\xE4t HomeKit-tietonsa (kuten liittyv\xE4t kohtaukset ja automaatio).","plugins.manage.confirm_disable_platform_1":"Kaikki t\xE4m\xE4n laajennuksen k\xE4ytt\xE4m\xE4t lis\xE4varusteet poistetaan Homebridge-k\xE4ytt\xF6liittym\xE4n lis\xE4laiten\xE4yt\xF6st\xE4, mutta ne j\xE4\xE4v\xE4t HomeKitiin Ei vastausta -merkinn\xE4ll\xE4.","plugins.manage.confirm_disable_platform_2":"Kun otat laajennuksen uudelleen k\xE4ytt\xF6\xF6n, lis\xE4varusteet tulevat takaisin Homebridge-k\xE4ytt\xF6liittym\xE4\xE4n ja niit\xE4 voidaan taas ohjata HomeKitissa. Lis\xE4varusteet eiv\xE4t menet\xE4 HomeKit-tietojaan (kuten niihin liittyvi\xE4 kohtauksia ja automaatioita).","plugins.manage.confirm_enable":"Haluatko varmasti ottaa k\xE4ytt\xF6\xF6n {{ pluginName }}?","plugins.manage.disable":"Poista k\xE4yt\xF6st\xE4","plugins.manage.enable":"Ota k\xE4ytt\xF6\xF6n","plugins.manage.information":"Tietoja laajennuksesta","plugins.manage.install":"Asenna","plugins.manage.installed":"Asennettu","plugins.manage.json_config":"JSON asetukset","plugins.manage.manage_version":"Hallitse versioita","plugins.manage.manual_update_command":"P\xE4ivit\xE4 paketti suorittamalla Node.js-komentokehote P\xE4\xE4k\xE4ytt\xE4j\xE4n oikeuksilla ja suorita seuraavat komennot:","plugins.manage.manual_update_required":"P\xE4ivitys on teht\xE4v\xE4 k\xE4sin","plugins.manage.online_updates":"Online p\xE4ivitykset eiv\xE4t toimi Windowsissa. Sinun on teht\xE4v\xE4 p\xE4ivitys k\xE4sin Homebridge palvelun pys\xE4ytt\xE4misen j\xE4lkeen.","plugins.manage.plugin_logs":"Laajennusten lokitiedot","plugins.manage.release_notes":"Julkaisusaatteet","plugins.manage.scoped.error":"An error occurred. You can download the logs below.","plugins.manage.scoped.info":"For more information about scoped plugins and why to switch, see the wiki page {{ link }}.","plugins.manage.scoped.process":"This process will not affect your Homebridge/HomeKit accessories. You will not be able to cancel the process once it has started. It will:","plugins.manage.scoped.switch":"Switch To Scoped Plugin","plugins.manage.scoped.windows":"Online updates are not supported on Windows. You will need to install the new plugin and uninstall the old plugin manually.","plugins.manage.scoped.windows_service":'You should <span class="font-weight-bold">not</span> restart Homebridge until both steps are complete.',"plugins.manage.select_version":"Valitse asennettava versio","plugins.manage.thanks_for_updating":"Kiitos kun asensit version {{ targetVersion }} laajennuksesta {{ pluginName }}.","plugins.manage.uninstall":"Poista asennus","plugins.manage.uninstalled":"Poistettu","plugins.manage.unverified_message":"Vahvistamaton laajennus tarkoittaa ett\xE4 sille ei ole suoritettu Homebridge project teamin hyv\xE4ksymisprosessia. Hyv\xE4ksymisen puuttuminen ei v\xE4ltt\xE4m\xE4tt\xE4 ole haitallista. Laajennuksen yll\xE4pit\xE4jill\xE4 on erilaisia syit\xE4 j\xE4tt\xE4\xE4 hyv\xE4ksyminen hakematta.","plugins.manage.unverified_subtitle":"{{ pluginName }} on vahvistamaton","plugins.manage.unverified_title":"Vahvistamattomat laajennukset","plugins.manage.update":"P\xE4ivit\xE4","plugins.manage.updated":"P\xE4ivitetty","plugins.manage.verified_message":"Laajennukset jotka on merkitty vahvistetuksi ovat l\xE4p\xE4isseet Homebridge project teamin hyv\xE4ksymisprosessin jossa varmistetaan ett\xE4 ne t\xE4ytt\xE4v\xE4t erilaisia vaatimuksia jotka kannustavat parhaisiin k\xE4yt\xE4nt\xF6ihin ja ongelmattomaan k\xE4ytt\xF6kokemukseen.","plugins.manage.verified_subtitle":"{{ pluginName }} on vahvistettu","plugins.manage.verified_title":"Vahvistetut laajennukset","plugins.node_update.continue":"Jatka","plugins.placeholder_search_first":"K\xE4yt\xE4 yl\xE4puolista hakukentt\xE4\xE4 l\xF6yt\xE4\xE4ksesi ensimm\xE4isen laajennuksesi","plugins.placeholder_search_plugin":"Etsi aennettavia laajennuksia","plugins.settings.custom.homebridge-gsh.label_account_linked":"Tili Linkitetty","plugins.settings.custom.homebridge-gsh.label_link_account":"Linkit\xE4 Tili","plugins.settings.custom.homebridge-gsh.label_unlink_account":"Pura tilin linkitys","plugins.settings.custom.homebridge-gsh.message_about":"<strong>Homebridge Google Smart Home</strong> laajennus mahdollistaa Homebridge laitteidesi hallinnan Google Home \xE4lykaiuttimella tai sovelluksella.","plugins.settings.custom.homebridge-gsh.message_account_link_required":"Toiminnon k\xE4ytt\xF6\xF6nottamiseksi sinun on kirjauduttava Google tai GitHub tilillesi; varmista ett\xE4 k\xE4yt\xE4t samaa tili\xE4 kun lis\xE4\xE4t Homebridge toiminnon Google Home sovellukseesi.","plugins.settings.custom.homebridge-gsh.message_homebridge_restart_required":"Homebridge t\xE4ytyy uudelleenk\xE4ynnist\xE4\xE4 toimintojen k\xE4ytt\xF6\xF6nottamiseksi.","plugins.settings.custom.homebridge-gsh.message_invalid_token":"Virheellinen tilin linkitys config.json:ssa","plugins.settings.deconz.dump_no_exist":"Homebridge deCONZ dump tiedostoa ei viel\xE4 ole.","plugins.settings.hue.dump_no_exist":"Homebridge Hue dump tiedostoa ei viel\xE4 ole.","plugins.settings.label_open_config_editor":"Avaa Asetusten muokkain","plugins.settings.message_consult_documentation":"Ole hyv\xE4 ja tutustu laajennuksen ohjeisiin asetusten m\xE4\xE4rittelelmiseksi.","plugins.settings.message_manual_config_required":"T\xE4m\xE4 laajennus t\xE4ytyy m\xE4\xE4ritell\xE4 k\xE4sin Homebridge UI Asetusten muokkaimella.","plugins.settings.plugin_config_saved":"Laajennuksen asetukset talletettu","plugins.settings.restart_required":"Uudelleenk\xE4ynnist\xE4 Homebridge toimintojen k\xE4ytt\xF6\xF6nottamiseksi.","plugins.settings.title_settings":"Asetukset","plugins.status_disabled":"Poistettu k\xE4yt\xF6st\xE4","plugins.status_installed":"Asennettu","plugins.toast_failed_to_load_plugin_schema":"Laajennuksen asetusten m\xE4\xE4rittelyn lataaminen ep\xE4onnistui.","plugins.toast_failed_to_load_plugins":"Laajennusten lataaminen eop\xE4onnistui","plugins.uninstall_bridge_error":"Lapsisillan poisto ep\xE4onnistui.","plugins.uninstall_remove_config_required":"Jos poistat laajennuksen pysyv\xE4sti, poista my\xF6s kaikki siihen liittyv\xE4t asetukset config.json tiedostosta ennen uudelleenk\xE4ynnistyst\xE4.","plugins.uninstall_remove_confirmation":"Haluatko varmasti poistaa {{ pluginName }}?","plugins.uninstall_remove_plugin_config":"Poistetaanko laajennuksen asetukset?","plugins.uninstall_unpair_child_bridge":"Poistetaanko laajennuksen lapsisillan pariliitos?","plugins.uninstall_unpair_child_bridges":"Poista pariliitokset {{ count }} laajennuksen lapsisilloista?","reset.accessory_reset":"Homebridge sillan nollaus","reset.action_is_irreversible":"T\xE4m\xE4 toiminto on peruuttamaton. Ole hyv\xE4 ja lue huolellisesti ennen hyv\xE4ksymist\xE4.","reset.bridges.desc":"Jos sinulla on ongelmia Homebridgen, ulkoisen lis\xE4laitteen tai lapsisillan yhdist\xE4misess\xE4 HomeKitiin, saatat joutua poistamaan sen pariliitoksen HomeKitista aloittaaksesi uudelleen.","reset.bridges.empty":"Sinulla ei ole siltoja HomeKit-parin muodostamiseksi.","reset.bridges.title":"Sillat","reset.bridges_all.desc":"Poista kaikkien siltojen pariliitos HomeKitista. T\xE4m\xE4 sis\xE4lt\xE4\xE4 Homebridgen p\xE4\xE4sillan, lapsisillat ja sillat ulkoisille lis\xE4varusteille.","reset.bridges_all.list_1":"T\xE4m\xE4 poistaa Homebridge-sillan, kaikki lapsisillat ja ulkoisten lis\xE4varusteiden sillat HomeKitista.","reset.bridges_all.list_2":"Huomaa, ett\xE4 lis\xE4varusteet n\xE4kyv\xE4t HomeKitissa ilman vastausta, kunnes sillat on poistettu manuaalisesti HomeKitista. Voit tehd\xE4 t\xE4m\xE4n Home-sovelluksessa avaamalla Kodin asetukset > Koti keskittimet & sillat > {Bridge} > Poista Silta.","reset.bridges_all.list_3":"Kaikki Homebridgeen liittyyv\xE4t HomeKitin lis\xE4varusteet, kohtaukset ja automaatiot on m\xE4\xE4ritett\xE4v\xE4 uudelleen pariliitoksen purkamisen j\xE4lkeen.","reset.bridges_all.list_4":"Homebridge-sillan ja HomeKitin pariliitoksen PIN-koodi vaihdetaan. N\xE4et uudet arvot Homebridge-kokoonpanossa pariliitoksen purkamisen j\xE4lkeen.","reset.bridges_all.title":"Poista kaikkien siltojen pariliitos","reset.bridges_single.desc":"Pura yhden sillan pariliitos HomeKitista. T\xE4m\xE4 voi olla lapsisilta tai silta ulkoiselle lis\xE4varusteelle, kuten kameralle tai televisiolle.","reset.bridges_single.list_1":"Kun sillan pariliitos puretaan, kaikki t\xE4m\xE4n sillan julkaisemat lis\xE4varusteet poistetaan Homebridgen v\xE4limuistista.","reset.bridges_single.list_2":"Lis\xE4varusteet vanhenevat HomeKitissa (ei vastausta). Poistaaksesi ne, sinun on poistettava t\xE4m\xE4 silta manuaalisesti HomeKitista. Voit tehd\xE4 t\xE4m\xE4n Home-sovelluksessa Kotiasetukset-osiosta.","reset.bridges_single.list_3":"Voit sitten yritt\xE4\xE4 yhdist\xE4\xE4 sillan uudelleen tarvittaessa.","reset.bridges_single.title":"Poista yhden sillan pariliitos","reset.cached_accessory_removed":"Lis\xE4laite poistettu v\xE4limuistista.","reset.clear_cache_all.desc":"Poista kaikki lis\xE4varusteet v\xE4limuistista.","reset.clear_cache_all.list_1":"Kun napautat alla olevaa poistopainiketta, Homebridge k\xE4ynnistyy uudelleen ja kaikki nykyiset lis\xE4varusteet poistetaan Homebridgest\xE4 ja HomeKitist\xE4.","reset.clear_cache_all.list_2":"My\xF6s kaikki siihen liittyv\xE4t HomeKit-tiedot poistetaan, mukaan lukien t\xE4m\xE4n lis\xE4varusteen k\xE4ytt\xE4m\xE4t huoneyhteydet, kohtaukset ja automatiikat.","reset.clear_cache_all.list_3":"Kun Homebridge on k\xE4ynnistetty uudelleen, laajennukset lis\xE4\xE4v\xE4t kaikki lis\xE4laitteet uudelleen ik\xE4\xE4n kuin laajennus asennettaisiin ensimm\xE4ist\xE4 kertaa.","reset.clear_cache_all.title":"Poista kaikki lis\xE4varusteet","reset.clear_cache_bridge.desc":"Poista kaikki sillan julkaisemat lis\xE4varusteet v\xE4limuistista.","reset.clear_cache_bridge.empty":"Sinulla ei ole siltoja, joista voit poistaa lis\xE4varusteita.","reset.clear_cache_bridge.list_1":"T\xE4t\xE4 toimintoa voidaan k\xE4ytt\xE4\xE4 nollaamaan laajennuksen olemassa olevat lis\xE4laitteet HomeKitissa. Ne poistetaan Homebridgesta/HomeKitist\xE4, ja laajennus lis\xE4\xE4 ne sitten uudelleen uusina lis\xE4varusteina.","reset.clear_cache_bridge.list_2":"Lapsisillan paritustiedot ja tila pysyv\xE4t ennallaan.","reset.clear_cache_bridge.title":"Poista siltojen lis\xE4varusteita","reset.clear_cache_single.desc":"Poista yksi lis\xE4varuste v\xE4limuistista.","reset.clear_cache_single.list_1":"Jotkut laajennukset eiv\xE4t siivoa itsest\xE4\xE4n kunnolla! Jos lis\xE4laite, jota sinulla ei en\xE4\xE4 ole Homebridgess\xE4, n\xE4kyy edelleen HomeKitissa, voit poistaa sen v\xE4limuistista.","reset.clear_cache_single.list_2":"T\xE4t\xE4 toimintoa voidaan k\xE4ytt\xE4\xE4 HomeKitin olemassa olevan lis\xE4varusteen nollaamiseen. Se poistetaan Homebridge/HomeKitist\xE4 ja laajennus lis\xE4\xE4 sen sitten uudelleen uutena lis\xE4varusteena.","reset.clear_cache_single.list_3":"Kun lis\xE4varuste poistetaan v\xE4limuistista, kaikki siihen liittyv\xE4t HomeKit-tiedot poistetaan. T\xE4m\xE4 sis\xE4lt\xE4\xE4 kaikki kohtaukset ja automaatiot, jotka k\xE4ytt\xE4v\xE4t t\xE4t\xE4 lis\xE4varustetta.","reset.clear_cache_single.list_4":"Lis\xE4varusteet voidaan poistaa vain, kun Homebridge ei ole k\xE4ynniss\xE4. Homebridge k\xE4ynnistyy automaattisesti uudelleen, kun napsautat jokaista alla olevaa poistopainiketta. Jos sinun on poistettava useita lis\xE4varusteita, ole k\xE4rsiv\xE4llinen ja anna Homebridgen k\xE4ynnisty\xE4 uudelleen jokaisen poiston v\xE4lill\xE4.","reset.clear_cache_single.title":"Poista yksi laite","reset.delete_failed":"Laitteen poistaminen ep\xE4onnistui","reset.delete_success":"Homebridgen uudelleenk\xE4ynnistys ja laitteiden v\xE4limuistin tyhjent\xE4minen.","reset.error_message":"Laitteiden v\xE4limuistia ei voitu ladata. Sinulla ei ehk\xE4 ole v\xE4limuistissa olevia laitteita.","reset.failed_to_reset":"Homebridgen nollaus ep\xE4onnistui. Katso lokitiedot.","reset.force_restart_hb_help_text":"K\xE4yt\xE4 t\xE4t\xE4 toimintoa pakottaaksesi hb-service-palvelu suorittamaan t\xE4yden uudelleenk\xE4ynnistyksen.","reset.remove_cached_accessories_single_empty":"Sinulla ei ole v\xE4limuistissa olevia laitteita poistettaviksi.","reset.removing_cached_accessory_please_wait":"Poistetaan laitetta v\xE4limuistista, odota","restart.child_bridge_list":"Ole hyv\xE4 ja k\xE4ynnist\xE4 uudelleen n\xE4m\xE4 lapsisillat, jotta muutokset tulevat voimaan:","restart.child_bridges":"Ole hyv\xE4 ja k\xE4ynnist\xE4 laajennuksen lapsisillat uudelleen, jotta muutokset tulevat voimaan.","restart.homebridge":"Ole hyv\xE4 ja k\xE4ynnist\xE4 Homebridge uudelleen, jotta muutokset tulevat voimaan.","restart.label_restart_command_executed":"Uudelleenk\xE4ynnistys komento suoritettu","restart.please_wait_while_server_restarts":"Ole hyv\xE4 ja odota, t\xE4m\xE4 sivu p\xE4ivittyy automaattisesti kun Homebridge on taas toiminnassa.","restart.server_is_taking_long_time_to_restart":"Homebridgen k\xE4ynnistyminen tuntuu kest\xE4v\xE4n. Voi olla ett\xE4 joudut k\xE4ynnist\xE4m\xE4\xE4n Homebridge palvelun k\xE4sin.","restart.service_ready":"Homebridge valmiina","restart.title_restart":"Homebridge k\xE4ynnistyy uudelleen","restart.toast_server_restart_error":"Tapahtui virhe uudellenk\xE4ynnistys komennon l\xE4hett\xE4misess\xE4 palvelimelle","restart.toast_server_restart_timeout":"Homebridgen k\xE4ynnistyminen tuntuu kest\xE4v\xE4n","restart.toast_server_restarted":"Homebridge Uudellenk\xE4ynnistetty","restart.ui_online":"HB Palvelin & UI Valmiina","rpi.throttled.currently_message":"Raspberry Pi ilmoittaa juuri havainneensa alij\xE4nnitteen; tarkista, ett\xE4 se on kytketty sopivaan virtal\xE4hteeseen. Alij\xE4nnite voi johtaa j\xE4rjestelm\xE4n ep\xE4vakauteen ja SD-kortin vioittumiseen.","rpi.throttled.previously_message":"Raspberry Pi ilmoittaa havainneensa alij\xE4nnitteen uudelleenk\xE4ynnistyksen j\xE4lkeenkin; tarkista, ett\xE4 se on kytketty sopivaan virtal\xE4hteeseen.","rpi.throttled.undervoltage_title":"Alij\xE4nnite","settings.cache.desc":"Homebridge s\xE4ilytt\xE4\xE4 tietoja laitteista v\xE4limuistissa joten niit\xE4 ei poisteta ja lis\xE4t\xE4 uudelleen HomeKit:in joka kerta kun Homebridge k\xE4ynnistyy uudelleen. Joskus n\xE4m\xE4 tiedot poikkeavat Homebridgen todellisesta laitteistosta.","settings.cache.title":"Laitteet","settings.changes.saved":"Muutokset on tallennettu ja niiden k\xE4ytt\xF6\xF6notto vaatii uudellenk\xE4ynnistyksen.","settings.datetime.incorrect":"J\xE4rjestelm\xE4n aika n\xE4ytt\xE4isi olevan virheellinen. Sill\xE4 voi olla yll\xE4tt\xE4vi\xE4 vaikutuksia toimintaan. Lis\xE4tietoja t\xE4st\xE4.","settings.display.blue":"Sininen","settings.display.bluegrey":"Siniharmaa","settings.display.brown":"Ruskea","settings.display.cyan":"Syaani","settings.display.dark":"Tumma","settings.display.deep_purple":"Syv\xE4 purppura","settings.display.green":"Vihre\xE4","settings.display.grey":"Harmaa","settings.display.indigo":"Indigo","settings.display.lang":"Kieli","settings.display.light":"Valoisa","settings.display.lighting_mode":"N\xE4kym\xE4n valoisuus","settings.display.login_wallpaper":"Kirjautumisen taustakuva","settings.display.login_wallpaper_desc":"Kirjautumisen taustakuvan saat muutettua lis\xE4\xE4m\xE4ll\xE4 <code>ui-wallpaper.jpg</code> tiedoston Homebridgen tallennus hakemistoon, tai kirjoittamalla kuvatiedoston koko polun ja tiedostonimen t\xE4h\xE4n.","settings.display.orange":"Oranssi","settings.display.pink":"Pinkki","settings.display.purple":"Puppura","settings.display.red":"Punainen","settings.display.teal":"Sinivihre\xE4","settings.display.temp_units":"L\xE4mp\xF6tilan yksikk\xF6","settings.display.temp_units.c":"Celsius (\xB0C)","settings.display.temp_units.f":"Fahrenheit (\xB0F)","settings.display.theme":"Teema","settings.general.title_display":"N\xE4ytt\xF6","settings.general.title_general":"Yleiset","settings.mdns_advertiser":"mDNS mainostaja","settings.mdns_advertiser_exp":"kokeellinen","settings.mdns_advertiser_help":"Jos sinulla on ongelmia Homebridgen yhdist\xE4misess\xE4 HomeKitiin (kaikki lis\xE4varusteet n\xE4ytt\xE4v\xE4t Home-sovelluksessa No Response), yrit\xE4 k\xE4ytt\xE4\xE4 jotakin vaihtoehtoista mDNS-mainostajaa.","settings.mdns_advertiser_not_connected":"Ei yhdistetty","settings.mdns_advertiser_rec":"suositeltava","settings.network.label_interface_name":"Sovittimen nimi","settings.network.label_ip_address":"IP osoite","settings.network.message_network_interface":"Jos verkkosovitinta ei valita, Homebridge yritt\xE4\xE4 automaattisesti valita sovittimen jota k\xE4ytt\xE4\xE4.","settings.network.port_hb":"Homebridgen Portti","settings.network.port_hb_desc":"Homebridgen k\xE4ytt\xE4m\xE4n portin numero. On oltava v\xE4lilt\xE4 1025-65533, ei saa olla sama kuin Homebridge UI:n portti.","settings.network.port_ui":"Homebridge UI:n Portti","settings.network.port_ui_desc":"Homebridge UI:n k\xE4ytt\xE4m\xE4n portin numero. On oltava v\xE4lilt\xE4 1025-65533, ei saa olla sama kuin Homebridgen portti.","settings.network.title_network":"Verkkosovitin","settings.network.title_network_interfaces":"Verkkosovittimet","settings.service.debug_tooltip":"Jotkut laajennukset tarvitsevat DEBUG ymp\xE4rist\xF6muuttujan jotta voivat kirjata debug tason lokitietoja.","settings.service.node_tooltip":"Node.js ajonaikaiset asetukset t\xE4lle prosessille. J\xE4t\xE4 tyhj\xE4ksi, ellet tied\xE4 mit\xE4 olet tekem\xE4ss\xE4.","settings.startup.debug":"Homebridge vianhaku tila","settings.startup.debug_desc_v1":"Ota t\xE4m\xE4 k\xE4ytt\xF6\xF6n, jos tarvitset yksityiskohtaisempia lokeja. T\xE4m\xE4 asetus koskee Homebridgen p\xE4\xE4siltaa sek\xE4 kaikkia lapsisiltoja. Jotkut laajennukset voivat my\xF6s noudattaa t\xE4t\xE4 asetusta ja tuottaa yksityiskohtaisempia lokeja.","settings.startup.debug_desc_v2":"Ota t\xE4m\xE4 k\xE4ytt\xF6\xF6n, jos tarvitset yksityiskohtaisempia lokeja. T\xE4m\xE4 asetus koskee Homebridgen p\xE4\xE4siltaa. Lapsisiltojen asetukset l\xF6ytyv\xE4t liit\xE4nn\xE4issivun lapsisiltam\xE4\xE4rityksist\xE4. Jotkut laajennukset voivat my\xF6s noudattaa t\xE4t\xE4 asetusta ja tuottaa yksityiskohtaisempia lokeja.","settings.startup.insecure":"Homebridge 'Turvaton' tila","settings.startup.insecure_desc":"Hallitaksesi laitteitasi Homebridge UI:n kautta Homebridgen on toimittava turvattomassa tilassa.","settings.startup.keep_accessories":"Pid\xE4 poistettujen lis\xE4osien laitteet","settings.startup.keep_accessories_desc":"Jos valittu, niin laitteiden tiedot s\xE4ilytet\xE4\xE4n v\xE4limuistissa vaikka siihen liittyv\xE4 lis\xE4osa poistetaan. T\xE4st\xE4 voi olla hy\xF6ty\xE4 jos my\xF6hemmin asennat lis\xE4osan uudelleen.","settings.title_startup_options":"K\xE4ynnist\xE4minen ja ymp\xE4rist\xF6","settings.unpair_bridge.load_error":"Paritettuja siltoja ei voitu otta k\xE4ytt\xF6\xF6n.","settings.unpair_bridge.unpair_error":"Sillan parituksen purku ep\xE4onnistui.","setup.button_get_started":"Aloitetaan","setup.create_account":"Luo k\xE4ytt\xE4j\xE4tunnus","setup.create_account_reason":"Kirjautuminen Homebridgen web hallintaan t\xE4ytyy m\xE4\xE4ritell\xE4. Vaikka Homebridge on vain omassa l\xE4hiverkossasi on siltikin t\xE4rke\xE4\xE4 est\xE4\xE4 rajoittamaton p\xE4\xE4sy j\xE4rjestelm\xE4\xE4n.","setup.open_dashboard":"Avaa k\xE4ytt\xF6paneeli","setup.welcome_to_homebridge":"Tervetuloa Homebridge j\xE4rjestelm\xE4\xE4n",setup_wizard_message_complete_message:"Asetukset ovat valmiit ja Homebridge on valmis k\xE4ytt\xF6\xF6n.",setup_wizard_message_complete_title:"Onnea!",setup_wizard_message_restore:"Palauta varmuuskopiosta","status.code_scan":"Skannaa lis\xE4t\xE4ksesi HomeKit j\xE4rjestelm\xE4\xE4n","status.cpu.load":"K\xE4ytt\xF6aste","status.cpu.temp":"L\xE4mp\xF6tila","status.cpu.title_cpu":"CPU","status.credits.title":"Ansiot","status.homebridge.checking":"Tarkistetaan p\xE4ivityksi\xE4","status.homebridge.up_to_date":"Ajan tasalla","status.memory.label_available":"Saatavilla","status.memory.label_total":"Yhteens\xE4","status.memory.title_memory":"Muisti","status.network.received_per_second":"Vastaanotettu","status.network.sent_per_second":"L\xE4hetetty","status.network.title_network":"Verkon aktiivisuus","status.plugin_out_of_date":"P\xE4ivitys saatavilla","status.plugins_out_of_date":"P\xE4ivityksi\xE4 saatavilla","status.services.label_not_running":"Ei k\xE4ynniss\xE4","status.services.label_running":"K\xE4ynniss\xE4","status.services.updates":"Update Centre","status.uptime.title_uptime":"K\xE4yntiaika","status.widget.accessories.choose_accessories":"Valitse t\xE4ss\xE4 sovelmassa n\xE4ytett\xE4v\xE4t lis\xE4varusteet Lis\xE4varusteet-v\xE4lilehdelt\xE4.","status.widget.add.label_pairing_code":"Paritus koodi","status.widget.bridge.restart_error":"Lapsisillan uudelleenk\xE4ynnistys ep\xE4onnistui.","status.widget.clock":"Kello","status.widget.clock_dateformat":"P\xE4iv\xE4yksen muoto","status.widget.clock_timeformat":"Ajan muoto","status.widget.font_size":"Kirjasinkoko","status.widget.font_weight":"Kirjasimen paksuus","status.widget.hide_on_mobile":"Piilota supistetussa n\xE4kym\xE4ss\xE4 (mobiilin\xE4yt\xF6t)","status.widget.homebridge_logs":"Homebridge lokitiedot","status.widget.info":"Tietoja j\xE4rjestelm\xE4st\xE4","status.widget.info.config_path":"asetusten Polku","status.widget.info.disabled":"Poistettu k\xE4yt\xF6st\xE4","status.widget.info.docker":"Docker","status.widget.info.glibc_message":"Nykyinen k\xE4ytt\xF6j\xE4rjestelm\xE4si versio ei tue Node.js:n uudempia versioita. Jotta voit ratkaista t\xE4m\xE4n ja pysty\xE4 asentamaan p\xE4ivitetyt versiot Node.js:st\xE4 tulevaisuudessa, sinun on p\xE4ivitett\xE4v\xE4 k\xE4ytt\xF6j\xE4rjestelm\xE4si uudempaan versioon.","status.widget.info.glibc_title":"K\xE4ytt\xF6j\xE4rjestelm\xE4n P\xE4ivitys","status.widget.info.hostname":"Hostname","status.widget.info.ipv4":"IPv4","status.widget.info.ipv6":"IPv6","status.widget.info.no":"Ei","status.widget.info.node_unsupp":"Unsupported","status.widget.info.node_unsupp_message":"K\xE4yt\xE4t Node.js-versiota, jota Homebridge ei tue virallisesti. Sinun tulisi harkita vaihtamista tuettuun versioon.","status.widget.info.node_unsupp_title":"Ei tuettu Node versio","status.widget.info.node_update_message":"Homebridge vaatii toimiakseen Node.js:n, joka on asennettu j\xE4rjestelm\xE4\xE4n. Sinun on aika ajoin p\xE4ivitett\xE4v\xE4 Node.js, jotta voit ottaa k\xE4ytt\xF6\xF6n tuen uusille ominaisuuksille. Homebridge (ja vahvistetut laajennukset) tukevat kaikkia Node.js:n nykyisi\xE4 Active- ja Maintenance LTS -julkaisuja.","status.widget.info.node_update_title":"Node p\xE4ivitys","status.widget.info.nodejs_path":"Node.js polku","status.widget.info.nodejs_version":"Node.js versio","status.widget.info.os":"K\xE4ytt\xF6j\xE4rjestelm\xE4","status.widget.info.plugin_path":"Laajennusten polku","status.widget.info.service_mode":"Palvelun tila","status.widget.info.service_user":"K\xE4ytt\xE4j\xE4","status.widget.info.servicemode_message":"Itsen\xE4ist\xE4 tilaa ei en\xE4\xE4 suositella. Homebridgen ja Homebridge-UI:n m\xE4\xE4ritt\xE4minen hb-palvelun kanssa tarjoaa samat edut kuin itsen\xE4isess\xE4 tilassa, mutta se on paljon helpompi asentaa ja yll\xE4pit\xE4\xE4.","status.widget.info.servicemode_title":"Palvelun tila","status.widget.info.storage_path":"Tallennuskansio","status.widget.info.synology_package":"Synology ohjelmisto","status.widget.info.timezone":"Aikavy\xF6hyke","status.widget.info.yes":"Kyll\xE4","status.widget.network.history_items":"edelliset kohteet","status.widget.network.items":"kohteet","status.widget.network.network_interface":"Verkkosovitin","status.widget.network.none_selected":"Ei asetusta m\xE4\xE4riteltyn\xE4 - k\xE4ytet\xE4\xE4n oletusta.","status.widget.network.refresh_interval":"P\xE4ivityksen aikav\xE4li ","status.widget.network.refresh_note":"lataa sivu uudelleen n\xE4hd\xE4ksesi muutokset.","status.widget.network.seconds":"sekuntia","status.widget.qr_paired":"Paritettu","status.widget.qr_unpaired":"Ei paritettu","status.widget.show_hide":"Show/Hide Widgets","status.widget.title_manage_widget":"Hallitse sovelmaa","status.widget.uptime.label_process":"Prosessi","status.widget.uptime.label_server":"Palvelin","status.widget.weather.label_config_required_help":"Ole hyv\xE4 ja valitse kaupunki sovelman asetuksissa.","status.widget.weather.label_search_for_your_city":"Hae kaupunkia Englanniksi:","status.widget.weather.title_weather":"S\xE4\xE4","support.dev.api":"Homebridge API","support.dev.api_hap":"HAP-NodeJS API","support.dev.api_hap_sub":"HAP-NodeJS on HomeKit Accessory Server -sovelluksen toteutus, joka on m\xE4\xE4ritelty HomeKit Accessory Protocol (HAP) -protokollassa, jonka Apple m\xE4\xE4rittelee osaksi HomeKit Frameworkia.","support.dev.api_sub":"Homebridge on kevyt Node.js-palvelin, jota voit k\xE4ytt\xE4\xE4 kotiverkossasi k\xE4ytt\xE4\xE4ksesi HomeKit Accessory Protocol (HAP) -protokollaa.","support.dev.item_swagger":"Swagger Docs","support.dev.item_swagger_sub":"Homebridge REST API antaa sinun olla vuorovaikutuksessa Homebridge-palvelimesi kanssa HTTP-pyynt\xF6jen avulla.","support.dev.template":"Plugin Template Repo","support.dev.template_sub":"Malli Homebridge-laajennus, jota voidaan k\xE4ytt\xE4\xE4 pohjana oman laajennuksen kehitt\xE4miseen.","support.dev.title":"Kehitt\xE4j\xE4t","support.dev.verified":"Verified By Homebridge","support.dev.verified_sub":"Verified By Homebridge -ohjelman avulla laajennuskehitt\xE4j\xE4t voivat saada Homebridge-projektitiimin tarkistamaan ja hyv\xE4ksym\xE4\xE4n lis\xE4osat.","support.links.discord":"Discord Palvelin","support.links.discord_sub":"Liity Homebridge Discord -chat-palvelimeen keskustellaksesi muiden k\xE4ytt\xE4jien ja kehitt\xE4jien kanssa.","support.links.documentation":"Dokumentaatio","support.links.documentation_sub":"Homebridgen dokumentaatiossa on runsaasti tietoa Homebridgen k\xE4yt\xF6n aloittamisesta ja yleisist\xE4 ongelmien ratkaisuista.","support.links.issue":"Raportoi virhetoiminto","support.links.issue_sub":"Jos sinulla ilmenee virhetoiminto Homebridge:sa, ole hyv\xE4 ja avaa asiasta uusi aihe GitHub:sa. T\xE4m\xE4 ei koske laajennuksiin liittyvi\xE4 virheit\xE4.","support.links.reddit":"Reddit yhteis\xF6","support.links.reddit_sub":"Homebridge subreddit on hyv\xE4 paikka jakaa Homebridge asetuksesi ja etsi\xE4 apua.","support.links.title":"Hy\xF6dyllisi\xE4 linkkej\xE4","support.title":"Tuki","toast.no_auth":"Vain p\xE4\xE4k\xE4ytt\xE4jill\xE4 on p\xE4\xE4sy pyydetylle sivulle.","toast.title_error":"Virhe","toast.title_success":"Onnistui","toast.title_warning":"Varoitus","users.button_add_new_user":"Lis\xE4\xE4 uusi K\xE4ytt\xE4j\xE4","users.button_add_user":"Lis\xE4\xE4 K\xE4ytt\xE4j\xE4","users.label_admin_user":"P\xE4\xE4k\xE4ytt\xE4j\xE4","users.label_confirm_password":"Vahvista salasana","users.label_full_name":"Koko nimi","users.label_new_password":"Uusi salasana","users.label_password":"Salasana","users.label_username":"K\xE4ytt\xE4j\xE4tunnus","users.setup_2fa":"M\xE4\xE4rittele 2FA","users.setup_2fa_activate_error":"2FA:n aktivoinnissa tapahtui virhe","users.setup_2fa_cannot_setup_2fa":"2FA:ta ei voitu m\xE4\xE4ritell\xE4","users.setup_2fa_disable":"Lopeta 2FA:n k\xE4ytt\xF6","users.setup_2fa_disable_current_password":"Sy\xF6t\xE4 salasana poistaaksesi kaksivaiheinen tunnistautuminen k\xE4yt\xF6st\xE4:","users.setup_2fa_disable_success":"Kaksivaiheinen tunnistautuminen on poistettu k\xE4yt\xF6st\xE4.","users.setup_2fa_enable":"Ota k\xE4ytt\xF6\xF6n 2FA","users.setup_2fa_enable_error":"Tapahtui virhe 2FA:n k\xE4ytt\xF6\xF6notossa","users.setup_2fa_enabled_success":"Kaksivaiheinen tunnistautuminen on otettu k\xE4ytt\xF6\xF6n.","users.setup_2fa_enter_code":"Sy\xF6t\xE4 authenticator sovelluksesi koodi:","users.setup_2fa_scan_qr_code":"Lue alapuolinen QR koodi authenticator sovelluksellasi:","users.setup_2fa_server_time_out":"Palvelimesi aika eroaa oikeasta ajasta {{ timeDiffError }} ms. maksimi virhe on +/-5000 ms.","users.setup_2fa_warning":"Kaksivaiheinen tunnistautuminen vaatii Homebridge palvelimen olevan tarkasti oikeassa ajassa. Jos palvelimen aikaa ei ole mahdollista synkronoida niin 2FA:ta ei kannata ottaa k\xE4ytt\xF6\xF6n koska on olemassa riski ett\xE4 kirjautuminen estyy.","users.title_add_user":"Lis\xE4\xE4 k\xE4ytt\xE4j\xE4","users.title_edit_user":"Muokkaa k\xE4ytt\xE4j\xE4\xE4","users.title_users":"K\xE4ytt\xE4j\xE4t","users.toast_added_new_user":"Uusi k\xE4ytt\xE4j\xE4 lis\xE4tty","users.toast_failed_to_add_user":"K\xE4ytt\xE4j\xE4n lis\xE4ys ep\xE4onnistui","users.toast_failed_to_delete_user":"K\xE4ytt\xE4j\xE4n poisto ep\xE4onnistui","users.toast_updated_user":"K\xE4ytt\xE4j\xE4 p\xE4ivitetty","users.toast_user_deleted":"K\xE4ytt\xE4j\xE4 poistettu"}});var Ps=y((Ud,ua)=>{ua.exports={"accessories.button_add_room":"Ajouter une pi\xE8ce","accessories.button_hidden_hide":"Masquer les accessoires masqu\xE9s","accessories.button_hidden_show":"Afficher les accessoires masqu\xE9s","accessories.control.auto":"Auto","accessories.control.away":"Absent","accessories.control.battery_charging":"En charge","accessories.control.battery_notchargeable":"Non rechargeable","accessories.control.battery_notcharging":"Pas en charge","accessories.control.brightness":"Luminosit\xE9","accessories.control.closed":"Ferm\xE9","accessories.control.closing":"Fermeture","accessories.control.cool":"Refroidir","accessories.control.default_room":"Pi\xE8ce par d\xE9faut","accessories.control.default_running_time":"Dur\xE9e d'ex\xE9cution par d\xE9faut","accessories.control.dehumidifying":"D\xE9shumidifier","accessories.control.detected":"Detected","accessories.control.drag_here":"Glisser-d\xE9poser ici","accessories.control.fan":"Ventilateur","accessories.control.heat":"Chauffer","accessories.control.home":"Maison","accessories.control.humidifying":"Humidifier","accessories.control.jammed":"Coinc\xE9","accessories.control.light":"Lumi\xE8re","accessories.control.locked":"Verrouill\xE9","accessories.control.mute":"Son Coup\xE9","accessories.control.night":"Nuit","accessories.control.not_detected":"Not Detected","accessories.control.not_mute":"Son Actif","accessories.control.off":"Off","accessories.control.on":"On","accessories.control.open":"Ouvert","accessories.control.opening":"Ouverture","accessories.control.rotation_speed":"Vitesse de rotation","accessories.control.running":"En cours d'ex\xE9cution","accessories.control.speaker_volume":"Volume","accessories.control.stopped":"Arr\xEAt\xE9","accessories.control.target":"Cible","accessories.control.target_humidity":"Taux d'Humidit\xE9 Cible","accessories.control.target_temperature":"Temp\xE9rature Cible","accessories.control.triggered":"D\xE9clench\xE9","accessories.control.unknown":"Inconnu","accessories.control.unlocked":"D\xE9verrouill\xE9","accessories.control_disabled":"Contr\xF4le des accessoires Homebridge d\xE9sactiv\xE9","accessories.hide_this_accessory":"Masquer cet accessoire","accessories.message_for_more_information":"pour plus d'informations.","accessories.message_must_use_insecure_mode":"Pour contr\xF4ler vos accessoires vous devez lancer Homebridge en mode non s\xE9curis\xE9.","accessories.message_please_see":"Merci de voir","accessories.name":"Nom","accessories.room_name":"Nom de la pi\xE8ce","accessories.rooms_not_appear_in_homekit":"Les pi\xE8ces que vous cr\xE9ez ici n'appairaitront pas dans HomeKit et ne sont utiles que pour aider \xE0 l'organisation des accessoires dans Homebridge UI.","accessories.settings_link":"Vous pouvez acc\xE9der aux param\xE8tres Homebridge \xE0 tout moment \xE0 partir du menu principal ou en cliquant sur la roue crant\xE9e","accessories.show_on_dashboard":"Afficher dans un widget sur le dashboard","accessories.title_accessories":"Accessoires","backup.backup_delete_failed":"Backup deletion failed. See logs for details.","backup.backup_download_failed":"Echec du t\xE9l\xE9chargement de la sauvegarde","backup.backup_exceeds_max_size":"Backup ({{ backupSize }}) exceeds maximum restore file size of {{ maxBackupSizeText }}","backup.backup_help_one":"T\xE9l\xE9charger une archive de sauvegarde de votre environnement Homebridge complet. Cela sauvegardera l'ensemble du contenu du r\xE9pertoire de stockage d'Homebridge qui pourra par la suite \xEAtre restaur\xE9 sur n'importe quelle plateforme pouvant ex\xE9cuter Homebridge UI.","backup.backup_help_two":"Les Plugins non h\xE9berg\xE9s sur npm, ou les plugins install\xE9s directement \xE0 partir de GitHub ne pourront ni \xEAtre sauvegard\xE9s ni \xEAtre restaur\xE9s.","backup.backup_restored":"Archive de sauvegarde restaur\xE9e","backup.backup_warning":"Les archives de sauvegarde contiennent des informations sensibles et ne doivent pas \xEAtre partag\xE9es \xE0 des tiers.","backup.button_restore_backup":"Restaurer une Sauvegarde","backup.label_choose_backup_file_to_restore":"Choisissez un fichier de sauvegarde \xE0 restaurer\u2026","backup.label_uploading":"Envoi en cours\u2026","backup.load_error":"Failed to load config backup.","backup.now":"Now","backup.restore_failed":"Echec de la Restauration","backup.restore_help_one":"Restaurer une archive de sauvegarde faite pr\xE9c\xE9demment par Homebridge UI. Votre config Homebridge, les accessoires en cache, les appairages HomeKit et comptes utilisateurs Homebridge UI seront restaur\xE9s. Tous les plugins Homebridge pr\xE9c\xE9demment install\xE9s seront t\xE9l\xE9charg\xE9s directement du registre npm.","backup.restore_help_two":"Vous devrez vous authentifier dans Homebridge UI apr\xE8s une restauration en utilisant les identifiants de l'instance restaur\xE9e.","backup.restore_max_size":"You can restore a backup archive up to {{ maxBackupSizeText }} in size.","backup.restore_warning":"Restaurer \xE0 partir d'une sauvegarde \xE9crasera de mani\xE8re irr\xE9versible la configuration Homebridge courante.","backup.scheduled_backup_time":"Une sauvegarde compl\xE8te d'Homebridge est cr\xE9\xE9e automatiquement chaque jour \xE0 {{ backupTime }} et est gard\xE9e durant {{ dayCount }} jours.","backup.title_backup":"Sauvegarder","child_bridge.about":"Homebridge vous permet de faire fonctionner la plateforme ou l'accessoire g\xE9r\xE9 par votre plugin en tant que pont secondaire isol\xE9. Cela peut am\xE9liorer la r\xE9activit\xE9 et la fiabilit\xE9 g\xE9n\xE9rale d'Homebridge.","child_bridge.bridge_connect":"Connecter \xE0 HomeKit","child_bridge.bridge_settings":"R\xE9glages du Pont","child_bridge.bridges":"HomeKit Bridges","child_bridge.bridges_paired":"Chaque plateforme ou accessoire d'un Pont secondaire devra \xEAtre appair\xE9 avec Homebridge de mani\xE8re s\xE9par\xE9e.","child_bridge.config.debug":"Debug Mode","child_bridge.config.description":"These fields are not required, but can be used to override the HomeKit configuration for this bridge.","child_bridge.config.firmware":"Firmware Version","child_bridge.config.header":"Configuration","child_bridge.config.manufacturer":"Manufacturer","child_bridge.config.model":"Model","child_bridge.config.name":"Name","child_bridge.must_configure_plugin":"Vous devez configurer ce plugin avant de pouvoir modifier les r\xE9glages de son Pont.","child_bridge.reset_accessories":"Reset Accessories","child_bridge.reset_accessories_list":"Choose from which child bridges you want to reset the accessories below:","child_bridge.restart":"Red\xE9marrer le Pont secondaire","child_bridge.restart_homebridge":"Red\xE9marrer Homebridge pour appliquer les modifications de r\xE9glage de ce Pont secondaire.","child_bridge.restart_plural":"Red\xE9marrer les Ponts secondaires","child_bridge.return_to_pair":"Retourner \xE0 cet \xE9cran apr\xE8s le red\xE9marrage d'Homebridge pour voir le QR code d'appairage.","child_bridge.select_type":"S\xE9lectionner quelles plateformes ou accessoires vous souhaitez lancer en tant que Pont secondaire","child_bridge.setup":"Mise en place des Ponts secondaires","child_bridge.start":"D\xE9marrer le Pont secondaire","child_bridge.start_plural":"D\xE9marrer les Ponts secondaires","child_bridge.stop":"Arr\xEAter le Pont secondaire","child_bridge.stop_plural":"Arr\xEAter les Ponts secondaires","child_bridge.wiki_link":"En savoir plus sur les Ponts secondaires","config.config_accessory_must_be_array":"Accessories doit \xEAtre un tableau []","config.config_bridge_missing":"R\xE9glages du pont manquant","config.config_invalid_json":"La configuration contient du JSON invalide","config.config_platform_must_be_array":"Platform doit \xEAtre un tableau []","config.config_username_error":"Le nom du Pont doit \xEAtre compos\xE9 de 6 paires de caract\xE8res hexad\xE9cimaux (A-F 0-9) s\xE9par\xE9es par des ':'","config.error_blocks_objects":"All {{ type }} blocks must be objects.","config.error_blocks_type":"All {{ type }} blocks must contain the {{ type }} attribute.","config.error_string_array":"Each item in the {{ key }} array must be a string.","config.error_string_type":"The {{ type }} attribute must be a string.","config.failed_to_save_config":"Erreur d'enregistrement de la configuration","config.restore.confirm":"Cliquez sur Enregistrer pour confirmer la restauration de cette sauvegarde.","config.restore.copy_to_editor":"Copier dans l'\xE9diteur","config.restore.no_backups":"Aucune sauvegarde","config.restore.title_restore_homebridge_backup":"Restaurer la configuration Homebridge sauvegard\xE9e","config.restore.toast_backups_deleted":"Toutes les sauvegardes ont \xE9t\xE9 supprim\xE9es","config.title_backup_loaded":"Sauvegarde charg\xE9e","form.button_cancel":"Annuler","form.button_close":"Fermer","form.button_delete":"Supprimer","form.button_disable":"D\xE9sactiver","form.button_download":"T\xE9l\xE9charger","form.button_edit":"Modifier","form.button_enable":"Activer","form.button_hide":"Hide","form.button_lock":"Verrouiller","form.button_more_info":"Plus d'informations","form.button_remove":"Supprimer","form.button_reset":"R\xE9initialiser","form.button_restore":"Restaurer","form.button_save":"Enregistrer","form.button_show":"Show","form.button_unlock":"D\xE9verrouiller","form.button_unpair":"Unpair","form.label_invalid":"Config validation failed - you can still save your changes.","form.label_invalid_strict":"Config validation failed - please review the form before saving.","form.label_valid":"Config validation passed.","form.select.auto":"Automatic (Use Browser Settings)","login.button_login":"Connexion","login.invalid_credentials":"Nom d'utilisateur ou mot de passe incorrect","login.label_2fa_code":"Code d'authentification \xE0 deux facteurs","login.label_password":"Mot de passe","login.label_username":"Nom d'utilisateur","login.message_invalid_2fa_code":"Le code entr\xE9 est incorrect ou a expir\xE9.","logs.download.error":"Failed to download log file.","logs.download_warning":"Les fichiers de journalisation d'Homebridge peuvent contenir des informations personnelles, des mots de passe ou des jetons d'acc\xE8s. V\xE9rifiez vos fichiers de journalisation et supprimez toute information sensible si vous souhaitez les partager avec des tiers SVP.","logs.log_file_truncated":"Fichier de journalisation tronqu\xE9.","logs.title_download_log_file":"T\xE9l\xE9charger le fichier de journalisation","logs.title_truncate_log_file":"Tronquer le fichier de journalisation","logs.truncate.error":"Failed to truncate log file.","logs.truncate_log_warning":"Cette action supprimera de mani\xE8re irr\xE9versible vos journaux Homebridge. Etes-vous s\xFBr de vouloir continuer ?","menu.config_json_editor":"JSON Config","menu.docker.restart_container":"Red\xE9marrer le container","menu.docker.startup_script":"Script de d\xE9marrage","menu.docker.terminal":"Terminal","menu.hbrestart.confirm_hb":"Red\xE9marrer Homebridge","menu.hbrestart.confirm_ui":"Red\xE9marrer HB Service et l'interface utilisateur","menu.hbrestart.title":"Red\xE9marrer Homebridge","menu.label_accessories":"Accessoires","menu.label_plugins":"Plugins","menu.label_settings":"Settings","menu.label_settings_advanced":"UI Advanced Settings","menu.label_status":"Statut","menu.linux.label_logs":"Journaux","menu.linux.label_restart_server":"Red\xE9marrer le Serveur","menu.linux.label_shutdown_server":"\xC9teindre le Serveur","menu.linux.label_terminal":"Terminal","menu.restart.title":"Options d'alimentation","menu.settings.title":"Param\xE8tres","menu.tooltip_logout":"D\xE9connexion","menu.tooltip_restart":"Red\xE9marrer","menu.tooltip_user_accounts":"Comptes utilisateurs","menu.tooltip_view_logs":"Voir les Journaux","platform.docker.container_restarted":"Container Docker red\xE9marr\xE9","platform.docker.must_use_hashbang":"Les scripts doivent utiliser le hashbang #!/bin/sh","platform.docker.restart_required":"Vous aurez besoin de red\xE9marrer ce container docker pour que les changement prennent effet.","platform.docker.run_with_restart":"V\xE9rifiez d'avoir lanc\xE9 le container Docker avec <code>--restart=always</code>","platform.docker.script_help":"Ce script sera ex\xE9cut\xE9 \xE0 chaque d\xE9marrage du container docker. Vous pouvez l'utiliser pour installer n'importe quel paquet dont votre plugin aurait besoin, comme ffmpeg ou libcap-dev.","platform.docker.script_saved":"Script de d\xE9marrage enregistr\xE9","platform.docker.server_long_time":"Le red\xE9marrage du serveur met beaucoup de temps. Vous aurez peut-\xEAtre besoin de d\xE9marrer le container Docker manuellement.","platform.docker.title_restarting":"Red\xE9marrage du container Docker","platform.linux.long_time":"Le red\xE9marrage du serveur met beaucoup de temps. Vous aurez peut-\xEAtre besoin de le d\xE9marrer manuellement.","platform.linux.restart":"Merci de patienter, cette page sera automatiquement recharg\xE9e quand Homebridge sera de nouveau en ligne.","platform.linux.restarting_server":"Red\xE9marrage du serveur","platform.linux.server_restart_error":"Une erreur est survenue lors de l'envoi de la commande de red\xE9marrage au serveur.","platform.linux.server_restarted":"Serveur red\xE9marr\xE9","platform.linux.server_taking_long_time":"Le serveur met beaucoup de temps \xE0 revenir en ligne","platform.linux.server_will_power_down":"Le serveur va s'\xE9teindre sous peu.","platform.linux.shutting_down_server":"Arr\xEAt du serveur","platform.version.restart_required":"Homebridge UI v{{ uiVersion }} a \xE9t\xE9 install\xE9, mais le service install\xE9 sur le serveur tourne toujours en v{{ serverVersion }}.","platform.version.service_restart_required":"Le red\xE9marrage du service est requis","plugins.bridge.action_error":"Failed to {{ action }} child bridge(s).","plugins.button_homepage":"Site du Plugin","plugins.button_set_up":"Mettre en place","plugins.button_settings":"R\xE9glages","plugins.button_uninstall":"D\xE9sinstaller","plugins.button_update":"Mettre \xE0 jour","plugins.compat.are_you_sure":"Are you sure you want to continue anyway?","plugins.compat.hb_node_too_low":"{{ packageName }} v{{ latestVersion }} n\xE9cessite Node.js v{{ minVersion }} ou ult\xE9rieur. La version actuellement install\xE9e est Node.js {{ installedVersion }}.","plugins.compat.hb_too_low":"Le plugin {{ pluginName }} recommande l'utilisation de Homebridge v{{ minVersion }} ou ult\xE9rieur. La version actuellement install\xE9e est Homebridge v{{ installedVersion }}.","plugins.compat.node_first":"Mettez \xE0 niveau Node.js avant de mettre \xE0 jour {{ packageName }}.","plugins.compat.node_link":"How To Update Node.js","plugins.compat.node_too_low":"Le plugin {{ pluginName }} recommande l'utilisation de Node.js v{{ minVersion }} ou ult\xE9rieur. La version actuellement install\xE9e est Node.js {{ installedVersion }}.","plugins.compat.title":"Compatibility Check","plugins.config.load_error":"Failed to load plugin config.","plugins.config.must_be_array":"Plugin config must be an array.","plugins.config.must_be_array_objects":"Plugin config must be an array of objects.","plugins.config.must_be_object":"Config block must be an object.","plugins.config.name_property":'Accessory must have a valid "name" attribute',"plugins.config.please_fix":"Please fix validation errors before adding a new block.","plugins.config.remove_error":"Failed to remove plugin config.","plugins.disable.error":"Failed to disable plugin.","plugins.donate.button_not_verified":"Non Verifi\xE9","plugins.donate.button_verified":"Verifi\xE9","plugins.donate.message_1":"Comme de plus en plus d'utilisateurs installent leurs plugins via l'interface Homebridge, ils sont moins susceptibles de visiter la page GitHub du projet, o\xF9 les moyens de soutenir un d\xE9veloppeur seraient normalement affich\xE9s.","plugins.donate.message_2":"L'ajout de liens de donation directement dans l'interface utilisateur de Homebridge permet aux utilisateurs de savoir comment soutenir les d\xE9veloppeurs de Homebridge s'ils le souhaitent.","plugins.donate.tile_donate_to":"Faire un don \xE0 {{ author }}","plugins.enable.error":"Failed to enable plugin.","plugins.manage.all_versions":"All versions","plugins.manage.child_bridge_restart":"Child bridge restarted successfully.","plugins.manage.child_bridge_restart_failed":"Le red\xE9marrage du Plugin a \xE9chou\xE9, red\xE9marrez Homebridge manuellement.","plugins.manage.confirm_disable":"Are you sure you want to disable {{ pluginName }}?","plugins.manage.confirm_disable_accessory_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen and removed from HomeKit.","plugins.manage.confirm_disable_accessory_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and HomeKit. The accessories will lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_disable_platform_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen but remain in HomeKit with a 'No Response' label.","plugins.manage.confirm_disable_platform_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and become controllable again in HomeKit. The accessories will not lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_enable":"Etes-vous s\xFBr de vouloir activer {{ pluginName }}?","plugins.manage.disable":"D\xE9sactiver","plugins.manage.enable":"Activer","plugins.manage.information":"Informations sur le plugin","plugins.manage.install":"Installer","plugins.manage.installed":"Install\xE9","plugins.manage.json_config":"Config JSON","plugins.manage.manage_version":"Installer une autre Version","plugins.manage.manual_update_command":"To upgrade the package run open a Node.js command prompt as an Administrator and run the following commands:","plugins.manage.manual_update_required":"Mise \xE0 jour manuelle requise","plugins.manage.online_updates":"Les mises \xE0 jour en ligne ne sont pas support\xE9es sous Windows. Vous devrez mettre \xE0 jour Homebridge UI manuellement apr\xE8s avoir arr\xEAt\xE9 le service Homebridge.","plugins.manage.plugin_logs":"Journaux du Plugin","plugins.manage.release_notes":"Notes de Version","plugins.manage.scoped.error":"An error occurred. You can download the logs below.","plugins.manage.scoped.info":"For more information about scoped plugins and why to switch, see the wiki page {{ link }}.","plugins.manage.scoped.process":"This process will not affect your Homebridge/HomeKit accessories. You will not be able to cancel the process once it has started. It will:","plugins.manage.scoped.switch":"Switch To Scoped Plugin","plugins.manage.scoped.windows":"Online updates are not supported on Windows. You will need to install the new plugin and uninstall the old plugin manually.","plugins.manage.scoped.windows_service":'You should <span class="font-weight-bold">not</span> restart Homebridge until both steps are complete.',"plugins.manage.select_version":"S\xE9lectionner la version \xE0 installer","plugins.manage.thanks_for_updating":"Merci d'avoir install\xE9 la derni\xE8re version d'{{ pluginName }}.","plugins.manage.uninstall":"D\xE9sinstaller","plugins.manage.uninstalled":"D\xE9sinstall\xE9","plugins.manage.unverified_message":"Les plugins Homebridge non v\xE9rifi\xE9s indiquent qu'ils n'ont pas \xE9t\xE9 soumis au processus d'examen par l'\xE9quipe du projet Homebridge. L'absence de v\xE9rification n'implique pas n\xE9cessairement une inefficacit\xE9 ou des probl\xE8mes de s\xE9curit\xE9. Les auteurs peuvent avoir choisi de ne pas demander de v\xE9rification pour diverses raisons.","plugins.manage.unverified_subtitle":"{{ pluginName }} n'est pas v\xE9rifi\xE9","plugins.manage.unverified_title":"Plugins non v\xE9rifi\xE9s","plugins.manage.update":"Mettre \xE0 jour","plugins.manage.updated":"Mis \xE0 jour","plugins.manage.verified_message":"Les Plugins d'Homebridge indiqu\xE9s comme v\xE9rifi\xE9s ont fait l'objet d'une v\xE9rification par l'\xE9quipe du projet Homebridge afin de s'assurer qu'ils remplissaient diff\xE9rentes exigences encourageant les bonnes pratiques et une exp\xE9rience utilisateur optimale.","plugins.manage.verified_subtitle":"{{ pluginName }} est v\xE9rifi\xE9","plugins.manage.verified_title":"Plugins v\xE9rifi\xE9s","plugins.node_update.continue":"Continue","plugins.placeholder_search_first":"Utilisez la barre de recherche ci-dessus pour trouver votre premier plugin","plugins.placeholder_search_plugin":"Rechercher des plugins \xE0 installer\u2026","plugins.settings.custom.homebridge-gsh.label_account_linked":"Compte associ\xE9","plugins.settings.custom.homebridge-gsh.label_link_account":"Associer le compte","plugins.settings.custom.homebridge-gsh.label_unlink_account":"Dissocier le compte","plugins.settings.custom.homebridge-gsh.message_about":"Le plugin Homebridge Google Smart Home vous permet de contr\xF4ler vos accessoires Homebridge \xE0 partir d'un haut-parleur intelligent compatible avec Google Home ou de l'application mobile Google Home.","plugins.settings.custom.homebridge-gsh.message_account_link_required":"Pour activer cette fonctionnalit\xE9, vous devez vous connecter avec votre compte Google ou GitHub. Assurez-vous d'utiliser le m\xEAme compte lors de l'ajout de l'action Homebridge dans l'application mobile Google Home.","plugins.settings.custom.homebridge-gsh.message_homebridge_restart_required":"Homebridge n\xE9cessite un red\xE9marrage pour que les modifications prennent effet.","plugins.settings.custom.homebridge-gsh.message_invalid_token":"Invalid account linking token in config.json","plugins.settings.deconz.dump_no_exist":"Homebridge deCONZ dump file does not exist yet.","plugins.settings.hue.dump_no_exist":"Homebridge Hue dump file does not exist yet.","plugins.settings.label_open_config_editor":"Ouvrir l'\xE9diteur de Config","plugins.settings.message_consult_documentation":"Consultez la documentation du plugin pour le configurer de mani\xE8re correcte.","plugins.settings.message_manual_config_required":"Ce plugin doit \xEAtre configur\xE9 manuellement en utilisant l'\xE9diteur de Config de Homebridge UI.","plugins.settings.plugin_config_saved":"Configuration du plugin enregistr\xE9e","plugins.settings.restart_required":"Red\xE9marrer Homebridge pour appliquer les changements.","plugins.settings.title_settings":"R\xE9glages","plugins.status_disabled":"D\xE9sactiv\xE9","plugins.status_installed":"Install\xE9","plugins.toast_failed_to_load_plugin_schema":"Failed to load plugin config schema.","plugins.toast_failed_to_load_plugins":"Erreur de chargement des plugins","plugins.uninstall_bridge_error":"Failed to remove child bridge.","plugins.uninstall_remove_config_required":"Si vous d\xE9sinstallez de mani\xE8re permanente ce plugin, prenez gare \xE0 supprimer toute configuration li\xE9e \xE0 ce plugin dans config.json avant de red\xE9marrer Homebridge.","plugins.uninstall_remove_confirmation":"Etes-vous s\xFBr de vouloir d\xE9sinstaller {{ pluginName }} ?","plugins.uninstall_remove_plugin_config":"Supprimer la configuration du plugin ?","plugins.uninstall_unpair_child_bridge":"Unpair plugin child bridge?","plugins.uninstall_unpair_child_bridges":"Unpair {{ count }} plugin child bridges?","reset.accessory_reset":"R\xE9initialisation de l'accessoire Homebridge","reset.action_is_irreversible":"Cette action est irr\xE9versible. Merci de lire avec attention avant de continuer.","reset.bridges.desc":"If you are having trouble pairing Homebridge, an external accessory or a child bridge to HomeKit, you may need to unpair it from HomeKit to start again.","reset.bridges.empty":"You have no bridges to unpair from HomeKit.","reset.bridges.title":"Bridges","reset.bridges_all.desc":"Unpair all bridges from HomeKit. This includes the main Homebridge bridge, child bridges and bridges for external accessories.","reset.bridges_all.list_1":"This will unpair the Homebridge bridge, all child bridges and bridges for external accessories from HomeKit.","reset.bridges_all.list_2":"Note that your accessories will continue to show in HomeKit as no response, until the bridges are manually removed from HomeKit. You can do this in the Home app, by accessing Home Settings \u2192 Home Hubs & Bridges \u2192 {Bridge} \u2192 Remove Bridge from Home.","reset.bridges_all.list_3":"All your Homebridge to HomeKit accessories, scenes and automations will need to be reconfigured after the unpairing.","reset.bridges_all.list_4":"The pin for pairing your Homebridge bridge to HomeKit will be changed. You can see the new values in your Homebridge config after the unpairing.","reset.bridges_all.title":"Unpair All Bridges","reset.bridges_single.desc":"Unpair a single bridge from HomeKit. This may be a child bridge or a bridge for an external accessory like a camera or TV.","reset.bridges_single.list_1":"When unpairing a bridge, any accessories published by this bridge will be removed from the Homebridge cache.","reset.bridges_single.list_2":"The accessories will become stale in HomeKit (showing no response). To remove them, you will need to manually remove this bridge from HomeKit. You can do this in the Home app from the Home Settings section.","reset.bridges_single.list_3":"You can then attempt to pair the bridge again if required.","reset.bridges_single.title":"Unpair Single Bridge","reset.cached_accessory_removed":"Accessoire supprim\xE9 du cache.","reset.clear_cache_all.desc":"Remove all accessories from the cache.","reset.clear_cache_all.list_1":"When clicking on the remove button below, Homebridge will restart and all your existing accessories will be removed from Homebridge and HomeKit.","reset.clear_cache_all.list_2":"All associated HomeKit data will also be removed, this includes room associations, scenes and automations that this accessory uses.","reset.clear_cache_all.list_3":"After Homebridge restarts, your plugins will re-add any accessories as if the plugin was being installed for the first time.","reset.clear_cache_all.title":"Remove All Accessories","reset.clear_cache_bridge.desc":"Remove all accessories published by a bridge from the cache.","reset.clear_cache_bridge.empty":"You have no bridges from which to remove accessories.","reset.clear_cache_bridge.list_1":"This function can be used to reset a plugin's existing accessories in HomeKit. They will be removed from Homebridge/HomeKit and then re-added by the plugin as new accessories.","reset.clear_cache_bridge.list_2":"The child bridge's pairing details and status will remain the same.","reset.clear_cache_bridge.title":"Remove Bridge Accessories","reset.clear_cache_single.desc":"Remove a single accessory from the cache.","reset.clear_cache_single.list_1":"Some plugins don't clean up after themselves properly! If an accessory that you no longer have in Homebridge is still being displayed in HomeKit, you can remove it from the cache.","reset.clear_cache_single.list_2":"This function can be used to reset an existing accessory in HomeKit. It will be removed from Homebridge/HomeKit and then re-added by the plugin as a new accessory.","reset.clear_cache_single.list_3":"When removing an accessory from the cache, all its associated HomeKit data will be removed. This includes any associated scenes and automations that use this accessory.","reset.clear_cache_single.list_4":"Accessories can only be removed when Homebridge is not running. Homebridge will automatically restart when clicking on each of the remove buttons below. If you need to remove multiple accessories, please be patient and allow Homebridge to restart between each removal.","reset.clear_cache_single.title":"Remove Single Accessory","reset.delete_failed":"Echec lors de la suppression de l'accessoire.","reset.delete_success":"Red\xE9marrage d'Homebridge et remise \xE0 z\xE9ro du cache.","reset.error_message":"Le cache des accessoires n'a pas pu \xEAtre charg\xE9. Il se peut que vous n'ayez pas d'accessoires en cache.","reset.failed_to_reset":"Erreur lors de la r\xE9initialisation d'Homebridge. Regarder les fichiers de journalisation.","reset.force_restart_hb_help_text":"Utiliser cette action pour forcer le service hb-service \xE0 proc\xE9der \xE0 un red\xE9marrage complet.","reset.remove_cached_accessories_single_empty":"Vous n'avez pas d'accessoires en cache \xE0 supprimer.","reset.removing_cached_accessory_please_wait":"Suppression de l'accessoire du cache, patientez SVP\u2026","restart.child_bridge_list":"Please restart these child bridges for the changes to apply:","restart.child_bridges":"Red\xE9marrez les Ponts secondaires des plugins pour appliquer les changements effectu\xE9s.","restart.homebridge":"Red\xE9marrez Homebridge pour appliquer les changements effectu\xE9s.","restart.label_restart_command_executed":"Commande de red\xE9marrage ex\xE9cut\xE9e","restart.please_wait_while_server_restarts":"Merci de patienter, cette page se r\xE9actualisera automatiquement quand le serveur sera de nouveau en ligne.","restart.server_is_taking_long_time_to_restart":"Le red\xE9marrage du serveur met beaucoup de temps. Vous aurez peut-\xEAtre besoin de d\xE9marrer le service Homebridge manuellement.","restart.service_ready":"Serveur Homebridge Pr\xEAt","restart.title_restart":"Red\xE9marrage d'Homebridge","restart.toast_server_restart_error":"Une erreur est survenue lors de l'envoi de la commande de red\xE9marrage au serveur","restart.toast_server_restart_timeout":"Le serveur met beaucoup de temps \xE0 revenir en ligne","restart.toast_server_restarted":"Serveur red\xE9marr\xE9","restart.ui_online":"Interface Homebridge UI en Ligne","rpi.throttled.currently_message":"Ce Raspberry Pi rencontre actuellement une situation de sous-tension ; V\xE9rifiez qu'il est connect\xE9 \xE0 une alimentation adapt\xE9e. Une sous-tension peut engendrer une instabilit\xE9 du syst\xE8me et une corruption de sa carte SD.","rpi.throttled.previously_message":"Ce Raspberry Pi a rencontr\xE9 une situation de sous-tension depuis son dernier red\xE9marrage ; V\xE9rifiez qu'il est connect\xE9 \xE0 une alimentation adapt\xE9e.","rpi.throttled.undervoltage_title":"Sous Tension","settings.cache.desc":"Homebridge maintains accessories in cache so they aren't removed and re-added to HomeKit each time Homebridge restarts. Sometimes this cache can become out of sync with the actual accessories in Homebridge.","settings.cache.title":"Accessories","settings.changes.saved":"Your changes have been saved and require a restart to take effect.","settings.datetime.incorrect":"The date and time on your Homebridge server seem to be incorrect. This may cause unexpected issues. Click here for more information.","settings.display.blue":"Blue","settings.display.bluegrey":"Blue Grey","settings.display.brown":"Brown","settings.display.cyan":"Cyan","settings.display.dark":"Dark","settings.display.deep_purple":"Deep Purple","settings.display.green":"Green","settings.display.grey":"Grey","settings.display.indigo":"Indigo","settings.display.lang":"Language","settings.display.light":"Light","settings.display.lighting_mode":"Lighting Mode","settings.display.login_wallpaper":"Login Wallpaper","settings.display.login_wallpaper_desc":"A custom login wallpaper can be set by adding a <code>ui-wallpaper.jpg</code> file to your Homebridge storage directory, or by providing a full path to a local image file here.","settings.display.orange":"Orange","settings.display.pink":"Pink","settings.display.purple":"Purple","settings.display.red":"Red","settings.display.teal":"Teal","settings.display.temp_units":"Temperature Units","settings.display.temp_units.c":"Celsius (\xB0C)","settings.display.temp_units.f":"Fahrenheit (\xB0F)","settings.display.theme":"Theme","settings.general.title_display":"Display","settings.general.title_general":"G\xE9n\xE9ral","settings.mdns_advertiser":"Diffuseur mDNS","settings.mdns_advertiser_exp":"experimental","settings.mdns_advertiser_help":"Si vous avez des difficult\xE9s \xE0 vous connecter \xE0 Homebridge, essayez d'utiliser un des diffuseurs mDNS alternatif.","settings.mdns_advertiser_not_connected":"Not Connected","settings.mdns_advertiser_rec":"recommended","settings.network.label_interface_name":"Nom de l'Interface","settings.network.label_ip_address":"Adresse IP","settings.network.message_network_interface":"Si aucune interface r\xE9seau n'est s\xE9lectionn\xE9e, Homebridge essaiera de d\xE9terminer automatiquement les interfaces \xE0 g\xE9rer.","settings.network.port_hb":"Homebridge Port","settings.network.port_hb_desc":"The port number to run the Homebridge bridge on. This must be between 1025 and 65533, and should not be the same as the Homebridge UI port.","settings.network.port_ui":"UI Port","settings.network.port_ui_desc":"The port number to run the Homebridge UI on.","settings.network.title_network":"R\xE9seau","settings.network.title_network_interfaces":"Interfaces R\xE9seau","settings.service.debug_tooltip":"Certains plugins exigent que vous d\xE9finissiez la variable d'environnement DEBUG pour activer le niveau de journalisation de d\xE9bogage.","settings.service.node_tooltip":"Options d'ex\xE9cution Node.js pour le processus Homebridge. Ce champ doit rester vide sauf si vous savez ce que vous faites.","settings.startup.debug":"Mode de d\xE9bogage Homebridge","settings.startup.debug_desc_v1":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge as well as all child bridges. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.debug_desc_v2":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge. The setting for child bridges can be found in the child bridge configuration from the plugins page. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.insecure":"Mode 'Insecure' de Homebridge","settings.startup.insecure_desc":"To control your accessories via the Homebridge UI you must be running Homebridge in insecure mode.","settings.startup.keep_accessories":"Conserver les accessoires des plugins non install\xE9s","settings.startup.keep_accessories_desc":"If enabled, accessories of platform plugins will remain in the cache even after the plugin is uninstalled. This can be useful if you plan to reinstall the plugin later.","settings.title_startup_options":"Options de d\xE9marrage","settings.unpair_bridge.load_error":"Paired bridges could not be loaded.","settings.unpair_bridge.unpair_error":"Failed to unpair bridge.","setup.button_get_started":"D\xE9marrer","setup.create_account":"Cr\xE9er un Compte","setup.create_account_reason":"Le Mot de passe d'authentification \xE0 l'interface d'administration d'Homebridge doit \xEAtre configur\xE9. M\xEAme si Homebridge n'est accessible que depuis votre r\xE9seau local, il est important de prot\xE9g\xE9r son acc\xE8s.","setup.open_dashboard":"Ouvrir le Dashboard","setup.welcome_to_homebridge":"Bienvenue sur Homebridge",setup_wizard_message_complete_message:"La proc\xE9dure d'installation est termin\xE9e et vous \xEAtes maintenant pr\xEAt \xE0 utiliser Homebridge.",setup_wizard_message_complete_title:"F\xE9licitations!",setup_wizard_message_restore:"Restore From Backup","status.code_scan":"Scannez pour ajouter \xE0 HomeKit","status.cpu.load":"Charge","status.cpu.temp":"Temp","status.cpu.title_cpu":"CPU","status.credits.title":"Credits","status.homebridge.checking":"V\xE9rification des mises \xE0 jour\u2026","status.homebridge.up_to_date":"\xC0 jour","status.memory.label_available":"Disponible","status.memory.label_total":"Totale","status.memory.title_memory":"M\xE9moire","status.network.received_per_second":"Re\xE7u","status.network.sent_per_second":"Envoy\xE9","status.network.title_network":"Activit\xE9 R\xE9seau","status.plugin_out_of_date":"Plugin obsol\xE8te","status.plugins_out_of_date":"Plugins obsol\xE8tes","status.services.label_not_running":"Non d\xE9marr\xE9","status.services.label_running":"D\xE9marr\xE9","status.services.updates":"Update Centre","status.uptime.title_uptime":"Temps de fonctionnement","status.widget.accessories.choose_accessories":"Choisissez les accessoires \xE0 afficher dans ce widget dans l'onglet Accessoires.","status.widget.add.label_pairing_code":"Code d'appairage","status.widget.bridge.restart_error":"Failed to restart child bridge.","status.widget.clock":"Horloge","status.widget.clock_dateformat":"Format de Date","status.widget.clock_timeformat":"Format de Temps","status.widget.font_size":"Taille de Police","status.widget.font_weight":"Epaisseur de Police","status.widget.hide_on_mobile":"Cacher en vue compacte (affichage pour mobile)","status.widget.homebridge_logs":"Journaux d'Homebridge","status.widget.info":"Informations Syst\xE8me","status.widget.info.config_path":"R\xE9pertoire de la Config","status.widget.info.disabled":"D\xE9sactiv\xE9","status.widget.info.docker":"Docker","status.widget.info.glibc_message":"Ce message indique que votre syst\xE8me d'exploitation ne supporte pas les versions r\xE9centes de Node.js. Pour r\xE9soudre cela et pouvoir installer des versions plus r\xE9centes de Node.js dans le futur, vous devrez mettre \xE0 jour votre syst\xE8me d'exploitation pour une versions plus r\xE9cente.","status.widget.info.glibc_title":"Mise \xE0 jour de l'OS","status.widget.info.hostname":"Hostname","status.widget.info.ipv4":"IPv4","status.widget.info.ipv6":"IPv6","status.widget.info.no":"Non","status.widget.info.node_unsupp":"Unsupported","status.widget.info.node_unsupp_message":"You are running a version of Node.js that is not officially supported by Homebridge. You should consider changing to a supported version.","status.widget.info.node_unsupp_title":"Unsupported Node Version","status.widget.info.node_update_message":"Homebridge n\xE9cessite l'installation de Node.js sur votre syst\xE8me pour fonctionner. De temps \xE0 autre, vous devrez mettre \xE0 jour le moteur d'ex\xE9cution Node.js pour permettre la prise en charge de nouvelles fonctionnalit\xE9s. Homebridge (et les plugins v\xE9rifi\xE9s) prend en charge toutes les versions actuelles LTS Active et de Maintenance de Node.js.","status.widget.info.node_update_title":"Mise \xE0 jour de Node","status.widget.info.nodejs_path":"R\xE9pertoire de Node.js","status.widget.info.nodejs_version":"Version de Node.js","status.widget.info.os":"OS","status.widget.info.plugin_path":"R\xE9pertoire des plugins","status.widget.info.service_mode":"Ex\xE9cuter en tant que Service","status.widget.info.service_user":"Utilisateur","status.widget.info.servicemode_message":"Le mode Standalone n'est plus recommand\xE9. La configuration de Homebridge et de Homebridge UI avec hb-service pr\xE9sente les m\xEAmes avantages que le mode Standalone mais est beaucoup plus facile \xE0 mettre en place et \xE0 maintenir.","status.widget.info.servicemode_title":"Mode de service","status.widget.info.storage_path":"R\xE9pertoire de stockage","status.widget.info.synology_package":"Paquet Synology","status.widget.info.timezone":"Fuseau Horaire","status.widget.info.yes":"Oui","status.widget.network.history_items":"History Items","status.widget.network.items":"items","status.widget.network.network_interface":"Network Interface","status.widget.network.none_selected":"None selected in settings - using default.","status.widget.network.refresh_interval":"Refresh Interval","status.widget.network.refresh_note":"Refresh the page after saving for changes to take effect.","status.widget.network.seconds":"seconds","status.widget.qr_paired":"Appair\xE9","status.widget.qr_unpaired":"Non appair\xE9","status.widget.show_hide":"Show/Hide Widgets","status.widget.title_manage_widget":"G\xE9rer le Widget","status.widget.uptime.label_process":"Process","status.widget.uptime.label_server":"Serveur","status.widget.weather.label_config_required_help":"S\xE9lectionnez votre ville dans les r\xE9glages du widget.","status.widget.weather.label_search_for_your_city":"Recherchez votre ville:","status.widget.weather.title_weather":"M\xE9t\xE9o","support.dev.api":"Homebridge API","support.dev.api_hap":"HAP-NodeJS API","support.dev.api_hap_sub":"HAP-NodeJS is an implementation of the HomeKit Accessory Server as specified in the HomeKit Accessory Protocol (HAP), which is defined by Apple as part of the HomeKit Framework.","support.dev.api_sub":"Homebridge is a lightweight Node.js server you can run on your home network to emulate the HomeKit Accessory Protocol (HAP).","support.dev.item_swagger":"Swagger Docs","support.dev.item_swagger_sub":"The Homebridge REST API allows you to interact with your Homebridge server using HTTP requests.","support.dev.template":"Plugin Template Repo","support.dev.template_sub":"A template Homebridge plugin that can be used as a base to help you get started developing your own plugin.","support.dev.title":"Developers","support.dev.verified":"Verified By Homebridge","support.dev.verified_sub":"The Verified By Homebridge program allows plugin developers to get their plugins reviewed and endorsed by the Homebridge project team.","support.links.discord":"Serveur Discord","support.links.discord_sub":"Join the Homebridge Discord chat server to chat with other users and developers.","support.links.documentation":"Documentation","support.links.documentation_sub":"The Homebridge documentation provides a wealth of information on how to get started with Homebridge and common issue resolutions.","support.links.issue":"Signaler un probl\xE8me","support.links.issue_sub":"If you are experiencing an issue with Homebridge, please open a new issue on GitHub. This should not be used for issues with specific plugins.","support.links.reddit":"Communaut\xE9 Reddit","support.links.reddit_sub":"The Homebridge subreddit is a great place to share your Homebridge setup and ask for help.","support.links.title":"Liens utiles","support.title":"Support","toast.no_auth":"Only administrators may access the requested page.","toast.title_error":"Erreur","toast.title_success":"Succ\xE8s","toast.title_warning":"Attention","users.button_add_new_user":"Ajouter un nouvel utilisateur","users.button_add_user":"Ajouter un utilisateur","users.label_admin_user":"Administrateur ?","users.label_confirm_password":"Confirmer le mot de passe","users.label_full_name":"Nom complet","users.label_new_password":"Nouveau mot de passe","users.label_password":"Mot de passe","users.label_username":"Identifiant","users.setup_2fa":"Configuration 2FA","users.setup_2fa_activate_error":"An error occurred activating 2FA","users.setup_2fa_cannot_setup_2fa":"Echec lors de la configuration 2FA","users.setup_2fa_disable":"D\xE9sactiver 2FA","users.setup_2fa_disable_current_password":"Entrez votre mot de passe courant pour d\xE9sactiver l'authentification \xE0 deux facteurs :","users.setup_2fa_disable_success":"L'authentification \xE0 deux facteurs a \xE9t\xE9 d\xE9sactiv\xE9e.","users.setup_2fa_enable":"Activer 2FA","users.setup_2fa_enable_error":"An error occurred setting up 2FA","users.setup_2fa_enabled_success":"L'authentification \xE0 deux facteurs a \xE9t\xE9 activ\xE9e.","users.setup_2fa_enter_code":"Entrez le code de votre app d'authentification :","users.setup_2fa_scan_qr_code":"Scannez le QR code ci-dessous avec votre app d'authentification :","users.setup_2fa_server_time_out":"L'horloge de votre serveur est d\xE9r\xE9gl\xE9e de {{ timeDiffError }} ms. Le maximum autoris\xE9 est de +/-5000 ms.","users.setup_2fa_warning":"L'authentification \xE0 deux facteurs n\xE9cessite que votre serveur Homebridge puisse garder un r\xE9glage tr\xE8s pr\xE9cis de la date et de l'heure pour pouvoir se connecter. Si votre serveur n'a pas la capacit\xE9 de garder une horloge pr\xE9cise, vous ne devez pas activer 2FA afin d'\xE9viter de ne plus pouvoir vous connecter \xE0 Homebridge UI par la suite.","users.title_add_user":"Ajouter un utilisateur","users.title_edit_user":"Modifier l'utilisateur","users.title_users":"Utilisateurs","users.toast_added_new_user":"Utilisateur ajout\xE9","users.toast_failed_to_add_user":"Erreur lors de l'ajout de l'utilisateur","users.toast_failed_to_delete_user":"Erreur lors de la suppression de l'utilisateur","users.toast_updated_user":"Utilisateur mis \xE0 jour","users.toast_user_deleted":"Utilisateur supprim\xE9"}});var Ts=y((Kd,ca)=>{ca.exports={"accessories.button_add_room":"\u05D4\u05D5\u05E1\u05E3 \u05D7\u05D3\u05E8","accessories.button_hidden_hide":"Hide Hidden","accessories.button_hidden_show":"Show Hidden","accessories.control.auto":"\u05D0\u05D5\u05D8\u05D5\u05DE\u05D8\u05D9","accessories.control.away":"\u05DC\u05D0 \u05E0\u05DE\u05E6\u05D0","accessories.control.battery_charging":"\u05D8\u05D5\u05E2\u05DF","accessories.control.battery_notchargeable":"\u05DC\u05D0 \u05E0\u05D9\u05EA\u05DF \u05DC\u05D8\u05E2\u05D9\u05E0\u05D4","accessories.control.battery_notcharging":"\u05DC\u05D0 \u05D8\u05D5\u05E2\u05DF","accessories.control.brightness":"\u05D1\u05D4\u05D9\u05E8\u05D5\u05EA","accessories.control.closed":"\u05E1\u05D2\u05D5\u05E8","accessories.control.closing":"\u05E0\u05E1\u05D2\u05E8","accessories.control.cool":"\u05E7\u05E8","accessories.control.default_room":"\u05D7\u05D3\u05E8 \u05D1\u05E8\u05D9\u05E8\u05EA \u05DE\u05D7\u05D3\u05DC","accessories.control.default_running_time":"\u05D6\u05DE\u05DF \u05E8\u05D9\u05E6\u05D4 \u05D3\u05D9\u05E4\u05D5\u05DC\u05D8\u05D9\u05D1\u05D9","accessories.control.dehumidifying":"\u05DE\u05D5\u05E8\u05D9\u05D3 \u05DC\u05D7\u05D5\u05EA","accessories.control.detected":"Detected","accessories.control.drag_here":"\u05D2\u05E8\u05D5\u05E8 \u05DC\u05DB\u05D0\u05DF","accessories.control.fan":"\u05DE\u05D0\u05D5\u05D5\u05E8\u05E8","accessories.control.heat":"\u05D7\u05D5\u05DD","accessories.control.home":"\u05D1\u05D9\u05EA","accessories.control.humidifying":"\u05DE\u05E2\u05DC\u05D4 \u05DC\u05D7\u05D5\u05EA","accessories.control.jammed":"\u05EA\u05E7\u05D5\u05E2","accessories.control.light":"\u05D0\u05D5\u05E8","accessories.control.locked":"\u05E0\u05E2\u05D5\u05DC","accessories.control.mute":"\u05D4\u05E9\u05EA\u05E7","accessories.control.night":"\u05DC\u05D9\u05DC\u05D4","accessories.control.not_detected":"Not Detected","accessories.control.not_mute":"\u05E4\u05D5\u05E2\u05DC","accessories.control.off":"\u05DB\u05D1\u05D5\u05D9","accessories.control.on":"\u05E4\u05D5\u05E2\u05DC","accessories.control.open":"\u05E4\u05EA\u05D7","accessories.control.opening":"\u05E4\u05D5\u05EA\u05D7","accessories.control.rotation_speed":"\u05DE\u05D4\u05D9\u05E8\u05D5\u05EA \u05E1\u05D9\u05D1\u05D5\u05D1","accessories.control.running":"\u05E2\u05D5\u05D1\u05D3","accessories.control.speaker_volume":"\u05D5\u05D5\u05DC\u05D9\u05D5\u05DD","accessories.control.stopped":"\u05E2\u05E6\u05D5\u05E8","accessories.control.target":"\u05DE\u05D8\u05E8\u05D4","accessories.control.target_humidity":"\u05DC\u05D7\u05D5\u05EA \u05DE\u05D8\u05E8\u05D4","accessories.control.target_temperature":"\u05D8\u05DE\u05E4\u05E8\u05D8\u05D5\u05E8\u05EA \u05DE\u05D8\u05E8\u05D4","accessories.control.triggered":"\u05E2\u05D5\u05E8\u05E8","accessories.control.unknown":"\u05DC\u05D0 \u05D9\u05D3\u05D5\u05E2","accessories.control.unlocked":"\u05DC\u05D0 \u05E0\u05E2\u05D5\u05DC","accessories.control_disabled":"\u05D0\u05D1\u05D9\u05D6\u05E8 \u05D4\u05D5\u05DE\u05D1\u05E8\u05D9\u05D3\u05D2' \u05DC\u05D0 \u05E4\u05E2\u05D9\u05DC","accessories.hide_this_accessory":"\u05D4\u05E1\u05EA\u05E8 \u05D0\u05D1\u05D9\u05D6\u05E8 \u05D6\u05D4","accessories.message_for_more_information":"\u05DC\u05DE\u05D9\u05D3\u05E2 \u05E0\u05D5\u05E1\u05E3.","accessories.message_must_use_insecure_mode":"\u05E2\u05DC \u05DE\u05E0\u05EA \u05DC\u05E9\u05DC\u05D5\u05D8 \u05D1\u05D0\u05D9\u05D1\u05D6\u05E8\u05D9\u05DA \u05D9\u05E9 \u05E6\u05D5\u05E8\u05DA \u05DC\u05D4\u05E4\u05E2\u05D9\u05DC \u05D0\u05EA \u05D4\u05D5\u05DE\u05D1\u05E8\u05D9\u05D3\u05D2' \u05D1\u05DE\u05E6\u05D1 \u05DC\u05D0 \u05D1\u05D8\u05D5\u05D7.","accessories.message_please_see":"\u05D0\u05E0\u05D0 \u05E8\u05D0\u05D4","accessories.name":"\u05E9\u05DD","accessories.room_name":"\u05E9\u05DD \u05D7\u05D3\u05E8","accessories.rooms_not_appear_in_homekit":"The rooms you create here will not appear in HomeKit, they are only for the organisation of accessories in the Homebridge UI.","accessories.settings_link":"You can access the Homebridge Settings at any time from the cog icon in the side menu.","accessories.show_on_dashboard":"\u05D4\u05E6\u05D3 \u05D1\u05D3\u05E9\u05D1\u05D5\u05E8\u05D3 \u05D4\u05D5\u05D5\u05D9\u05D3\u05D2'\u05D8\u05D9\u05DD","accessories.title_accessories":"\u05D0\u05D1\u05D9\u05D6\u05E8\u05D9\u05DD","backup.backup_delete_failed":"Backup deletion failed. See logs for details.","backup.backup_download_failed":"\u05D4\u05D5\u05E8\u05D3\u05EA \u05D2\u05D9\u05D1\u05D5\u05D9 \u05E0\u05DB\u05E9\u05DC\u05D4","backup.backup_exceeds_max_size":"Backup ({{ backupSize }}) exceeds maximum restore file size of {{ maxBackupSizeText }}","backup.backup_help_one":"Download a backup archive of your entire Homebridge environment. This will backup the entire contents of your Homebridge storage directory which you can later restore on any platform capable of running Homebridge UI.","backup.backup_help_two":"Plugins not hosted on npm, or plugins installed directly from GitHub will not be backed up or restored.","backup.backup_restored":"\u05D2\u05D9\u05D1\u05D5\u05D9 \u05E9\u05D7\u05D6\u05D5\u05E8","backup.backup_warning":"\u05D2\u05D9\u05D1\u05D5\u05D9 \u05DE\u05DB\u05D9\u05DC \u05DE\u05D9\u05D3\u05E2 \u05E8\u05D2\u05D9\u05E9 \u05D5\u05DC\u05D0 \u05D0\u05DE\u05D5\u05E8 \u05DC\u05D4\u05D9\u05D5\u05EA \u05DE\u05E9\u05D5\u05EA\u05E3 \u05E2\u05DD \u05D0\u05E0\u05E9\u05D9\u05DD \u05D0\u05D7\u05E8\u05D9\u05DD","backup.button_restore_backup":"\u05E9\u05D7\u05D6\u05E8 \u05DE\u05D2\u05D9\u05D1\u05D5\u05D9","backup.label_choose_backup_file_to_restore":"\u05D1\u05D7\u05E8 \u05E7\u05D5\u05D1\u05E5 \u05D2\u05D9\u05D1\u05D5\u05D9 \u05E2\u05DC \u05DE\u05E0\u05EA \u05DC\u05E9\u05D7\u05D6\u05E8..","backup.label_uploading":"\u05DE\u05E2\u05DC\u05D4\u2026","backup.load_error":"Failed to load config backup.","backup.now":"Now","backup.restore_failed":"\u05E9\u05D7\u05D6\u05D5\u05E8 \u05E0\u05DB\u05E9\u05DC","backup.restore_help_one":"Restore a backup archive you previously made using the Homebridge UI. Your Homebridge config, cached accessories, HomeKit pairings and Homebridge UI user accounts will be restored. Any Homebridge plugins you had installed will also be downloaded from the npm registry.","backup.restore_help_two":"You will need to login to the Homebridge UI after doing a restore using the credentials from the restored instance.","backup.restore_max_size":"You can restore a backup archive up to {{ maxBackupSizeText }} in size.","backup.restore_warning":"\u05E9\u05D7\u05D6\u05D5\u05E8 \u05DE\u05D2\u05D9\u05D1\u05D5\u05D9 \u05D9\u05D7\u05DC\u05D9\u05E3 \u05D1\u05E6\u05D5\u05E8\u05D4 \u05D1\u05DC\u05EA\u05D9 \u05E0\u05D9\u05EA\u05E0\u05EA \u05DC\u05E9\u05D7\u05D6\u05D5\u05E8 \u05D0\u05EA \u05D4\u05E7\u05D5\u05E0\u05E4\u05D9\u05D2\u05D5\u05E8\u05E6\u05D9\u05D4 \u05E9\u05DC \u05D4\u05D4\u05D5\u05DE\u05D1\u05E8\u05D9\u05D3\u05D2'","backup.scheduled_backup_time":"A full backup of the Homebridge instance is automatically created every day at {{ backupTime }} and kept for {{ dayCount }} days.","backup.title_backup":"\u05D2\u05D9\u05D1\u05D5\u05D9","child_bridge.about":"Homebridge allows you to run your plugin's platform or accessory as an isolated child bridge. This can improve the general responsiveness and reliability of Homebridge.","child_bridge.bridge_connect":"Connect to HomeKit","child_bridge.bridge_settings":"\u05D4\u05D2\u05D3\u05E8\u05D5\u05EA \u05DE\u05D2\u05E9\u05E8","child_bridge.bridges":"HomeKit Bridges","child_bridge.bridges_paired":"Each child bridge platform or accessory will need to be paired with HomeKit separately.","child_bridge.config.debug":"Debug Mode","child_bridge.config.description":"These fields are not required, but can be used to override the HomeKit configuration for this bridge.","child_bridge.config.firmware":"Firmware Version","child_bridge.config.header":"Configuration","child_bridge.config.manufacturer":"Manufacturer","child_bridge.config.model":"Model","child_bridge.config.name":"Name","child_bridge.must_configure_plugin":"You need to configure this plugin before you can manage its bridge settings.","child_bridge.reset_accessories":"Reset Accessories","child_bridge.reset_accessories_list":"Choose from which child bridges you want to reset the accessories below:","child_bridge.restart":"Restart Child Bridges","child_bridge.restart_homebridge":"Restart Homebridge to finish setting up this child bridge.","child_bridge.restart_plural":"Restart Child Bridges","child_bridge.return_to_pair":"Return to this screen after Homebridge has restarted to view the pairing QR code.","child_bridge.select_type":"Select which platforms or accessories you want to run as a child bridge","child_bridge.setup":"Set Up Child Bridge","child_bridge.start":"Start Child Bridge","child_bridge.start_plural":"Start Child Bridges","child_bridge.stop":"Stop Child Bridge","child_bridge.stop_plural":"Stop Child Bridges","child_bridge.wiki_link":"\u05DC\u05DE\u05D3 \u05E2\u05D5\u05D3 \u05E2\u05DC \u05DE\u05D2\u05E9\u05E8 \u05D9\u05DC\u05D3","config.config_accessory_must_be_array":"\u05D0\u05D1\u05D9\u05D6\u05E8\u05D9\u05DD \u05D7\u05D9\u05D9\u05D1\u05D9\u05DD \u05DC\u05D4\u05D9\u05D5\u05EA \u05DE\u05E2\u05E8\u05DA []","config.config_bridge_missing":"\u05D7\u05E1\u05E8\u05D5\u05EA \u05D4\u05D2\u05D3\u05E8\u05D5\u05EA \u05DE\u05D2\u05E9\u05E8","config.config_invalid_json":"\u05E7\u05D5\u05D1\u05E5 \u05D4\u05E7\u05D5\u05E0\u05E4\u05D9\u05D2\u05D5\u05E8\u05E6\u05D9\u05D4 \u05D7\u05D9\u05D9\u05D1\u05EA \u05DC\u05D4\u05DB\u05D9\u05DC \u05D2'\u05D9\u05E1\u05D5\u05DF \u05D5\u05DC\u05D9\u05D3\u05D9","config.config_platform_must_be_array":"\u05E4\u05DC\u05D8\u05E4\u05D5\u05E8\u05DE\u05D4 \u05D7\u05D9\u05D9\u05D1\u05EA \u05DC\u05D4\u05D9\u05D5\u05EA \u05DE\u05E2\u05E8\u05DA","config.config_username_error":"\u05E9\u05DD \u05DE\u05EA\u05DE\u05E9 \u05E9\u05DC \u05D4\u05DE\u05D2\u05E9\u05E8 \u05E6\u05E8\u05D9\u05DA \u05DC\u05D4\u05D9\u05D5\u05EA 6 \u05D6\u05D5\u05D2\u05D5\u05EA \u05E9\u05DC \u05E2\u05E8\u05DB\u05D9\u05DD \u05DE\u05D5\u05E4\u05E8\u05D3\u05D9\u05DD \u05D1\u05E0\u05E7\u05D5\u05D3\u05D5\u05EA\u05D9\u05D9\u05DD \u05EA\u05D5\u05D5\u05D9\u05DD \u05D1\u05D8\u05D5\u05D5\u05D7 \u05D4\u05D1\u05D0 (A-F 0-9)","config.error_blocks_objects":"All {{ type }} blocks must be objects.","config.error_blocks_type":"All {{ type }} blocks must contain the {{ type }} attribute.","config.error_string_array":"Each item in the {{ key }} array must be a string.","config.error_string_type":"The {{ type }} attribute must be a string.","config.failed_to_save_config":"\u05DB\u05E9\u05DC \u05D1\u05E9\u05DE\u05D9\u05E8\u05EA \u05D4\u05E7\u05D5\u05E0\u05E4\u05D9\u05D2\u05D5\u05E8\u05E6\u05D9\u05D4","config.restore.confirm":"\u05DC\u05D7\u05E5 \u05E9\u05DE\u05D9\u05E8\u05D4 \u05DC\u05D0\u05E9\u05E8 \u05E9\u05D0\u05EA\u05D4 \u05E8\u05D5\u05E6\u05D4 \u05DC\u05E9\u05D7\u05D6\u05E8 \u05DE\u05D2\u05D9\u05D1\u05D5\u05D9 \u05D6\u05D4","config.restore.copy_to_editor":"\u05D4\u05E2\u05EA\u05E7 \u05DC\u05E2\u05D5\u05E8\u05DA","config.restore.no_backups":"\u05D0\u05D9\u05DF \u05D2\u05D9\u05D1\u05D5\u05D9\u05D9\u05DD","config.restore.title_restore_homebridge_backup":"\u05E9\u05D7\u05D6\u05E8 ","config.restore.toast_backups_deleted":"\u05DB\u05DC \u05D4\u05D2\u05D9\u05D1\u05D5\u05D9\u05D9\u05DD \u05E0\u05DE\u05D7\u05E7\u05D5","config.title_backup_loaded":"\u05D2\u05D9\u05D1\u05D5\u05D9 \u05E0\u05D8\u05E2\u05DF","form.button_cancel":"\u05D1\u05D8\u05DC","form.button_close":"\u05E1\u05D2\u05D5\u05E8","form.button_delete":"\u05DE\u05D7\u05E7","form.button_disable":"Disable","form.button_download":"\u05D4\u05D5\u05E8\u05D3","form.button_edit":"\u05E2\u05E8\u05D5\u05DA","form.button_enable":"Enable","form.button_hide":"Hide","form.button_lock":"Lock","form.button_more_info":"More Info","form.button_remove":"Remove","form.button_reset":"Reset","form.button_restore":"\u05E9\u05D7\u05D6\u05D5\u05E8","form.button_save":"\u05E9\u05DE\u05D5\u05E8","form.button_show":"Show","form.button_unlock":"Unlock","form.button_unpair":"Unpair","form.label_invalid":"Config validation failed - you can still save your changes.","form.label_invalid_strict":"Config validation failed - please review the form before saving.","form.label_valid":"Config validation passed.","form.select.auto":"Automatic (Use Browser Settings)","login.button_login":"\u05D4\u05EA\u05D7\u05D1\u05E8","login.invalid_credentials":"\u05E9\u05DD \u05DE\u05E9\u05EA\u05DE\u05E9 \u05D5\u05E1\u05D9\u05E1\u05DE\u05D4 \u05DC\u05D0 \u05EA\u05E7\u05D9\u05E0\u05D9\u05DD","login.label_2fa_code":"\u05E7\u05D5\u05D3 \u05D2\u05D9\u05E9\u05D4 \u05D3\u05D5 \u05E9\u05DC\u05D1\u05D9\u05EA","login.label_password":"\u05E1\u05D9\u05E1\u05DE\u05D0","login.label_username":"\u05E9\u05DD \u05DE\u05E9\u05EA\u05DE\u05E9","login.message_invalid_2fa_code":"\u05D4\u05E7\u05D5\u05D3 \u05E9\u05D4\u05D5\u05DB\u05E0\u05E1 \u05DC\u05D0 \u05E0\u05DB\u05D5\u05DF \u05D0\u05D5 \u05E4\u05D2 \u05EA\u05D5\u05E7\u05E3.","logs.download.error":"Failed to download log file.","logs.download_warning":"Homebridge log files may contain personal information, passwords or access tokens. Please review the log file and remove any sensitive information before sharing with others.","logs.log_file_truncated":"\u05E7\u05D5\u05D1\u05E5 \u05D4\u05DC\u05D5\u05D2 \u05E0\u05DE\u05D7\u05E7 \u05DC\u05D2\u05DE\u05E8\u05D9","logs.title_download_log_file":"\u05D4\u05D5\u05E8\u05D3 \u05E7\u05D5\u05D1\u05E5 \u05DC\u05D5\u05D2","logs.title_truncate_log_file":"\u05DE\u05D7\u05E7 \u05E7\u05D5\u05D1\u05E5 \u05DC\u05D5\u05D2","logs.truncate.error":"Failed to truncate log file.","logs.truncate_log_warning":"This action will irreversibly delete your existing Homebridge logs. Are you sure you want to continue?","menu.config_json_editor":"JSON Config","menu.docker.restart_container":"\u05D0\u05EA\u05D7\u05DC \u05DE\u05D7\u05D3\u05E9 \u05DE\u05D9\u05DB\u05DC","menu.docker.startup_script":"Startup Script","menu.docker.terminal":"\u05E7\u05D5\u05E0\u05E1\u05D5\u05DC\u05D4","menu.hbrestart.confirm_hb":"Restart Homebridge","menu.hbrestart.confirm_ui":"Restart HB Service & UI","menu.hbrestart.title":"Restart Homebridge","menu.label_accessories":"\u05D0\u05D1\u05D9\u05D6\u05E8\u05D9\u05DD","menu.label_plugins":"\u05EA\u05D5\u05E1\u05E4\u05D9\u05DD","menu.label_settings":"Settings","menu.label_settings_advanced":"UI Advanced Settings","menu.label_status":"\u05E1\u05D8\u05D0\u05D8\u05D5\u05E1","menu.linux.label_logs":"Logs","menu.linux.label_restart_server":"\u05D0\u05EA\u05D7\u05DC \u05DE\u05D7\u05D3\u05E9 \u05E9\u05E8\u05EA","menu.linux.label_shutdown_server":"\u05DB\u05D1\u05D4 \u05E9\u05E8\u05EA","menu.linux.label_terminal":"\u05E7\u05D5\u05E0\u05E1\u05D5\u05DC\u05D4","menu.restart.title":"Power Options","menu.settings.title":"Settings","menu.tooltip_logout":"\u05D4\u05EA\u05E0\u05EA\u05E7","menu.tooltip_restart":"\u05D4\u05EA\u05D7\u05DC \u05DE\u05D7\u05D3\u05E9","menu.tooltip_user_accounts":"\u05DE\u05E9\u05EA\u05DE\u05E9\u05D9\u05DD","menu.tooltip_view_logs":"\u05E8\u05D0\u05D4 \u05DC\u05D5\u05D2\u05D9\u05DD","platform.docker.container_restarted":"Docker Container Restarted","platform.docker.must_use_hashbang":"Script must use #!/bin/sh hashbang.","platform.docker.restart_required":"You will need to restart this docker container for the changes to take effect.","platform.docker.run_with_restart":"Make sure you're running the Docker container with <code>--restart=always</code>","platform.docker.script_help":"This script will be executed each time the docker container starts. You can use this to install any extra packages your plugins may need such as ffmpeg or libpcap-dev.","platform.docker.script_saved":"Startup Script Saved","platform.docker.server_long_time":"Server restart is taking a long time. You may need to bring up the Docker container manually.","platform.docker.title_restarting":"Restarting Docker Container","platform.linux.long_time":"Server restart is taking a long time. You may need to bring up the server manually.","platform.linux.restart":"Please wait, this page will automatically redirect when the Homebridge is back online.","platform.linux.restarting_server":"\u05DE\u05D0\u05EA\u05D7\u05DC \u05E9\u05E8\u05EA","platform.linux.server_restart_error":"An error occured sending the restart command to the server","platform.linux.server_restarted":"\u05E9\u05E8\u05EA \u05D0\u05D5\u05EA\u05D7\u05DC","platform.linux.server_taking_long_time":"\u05DC\u05E9\u05E8\u05EA \u05DC\u05D5\u05E7\u05D7 \u05D6\u05DE\u05DF \u05E8\u05D1 \u05DC\u05D7\u05D6\u05D5\u05E8 \u05DC\u05D4\u05D9\u05D5\u05EA \u05DE\u05D7\u05D5\u05D1\u05E8","platform.linux.server_will_power_down":"\u05D4\u05E9\u05E8\u05EA \u05D9\u05DB\u05D1\u05D4 \u05EA\u05D5\u05DA \u05D6\u05DE\u05DF \u05E7\u05E6\u05E8.","platform.linux.shutting_down_server":"\u05DE\u05DB\u05D1\u05D4 \u05E9\u05E8\u05EA","platform.version.restart_required":"\u05D0\u05D6\u05D4\u05E8\u05D4: \u05DE\u05DE\u05E9\u05E7 \u05D4\u05D4\u05D5\u05DE\u05D1\u05E8\u05D9\u05D3\u05D2' v{{ uiVersion }} has been installed, but the server service is still running v{{ serverVersion }}.","platform.version.service_restart_required":"\u05D0\u05EA\u05D7\u05D5\u05DC \u05E9\u05D9\u05E8\u05D5\u05EA \u05E0\u05D3\u05E8\u05E9","plugins.bridge.action_error":"Failed to {{ action }} child bridge(s).","plugins.button_homepage":"Plugin Homepage","plugins.button_set_up":"Set Up","plugins.button_settings":"\u05D4\u05D2\u05D3\u05E8\u05D5\u05EA","plugins.button_uninstall":"\u05D4\u05E1\u05E8","plugins.button_update":"\u05E2\u05D3\u05DB\u05DF","plugins.compat.are_you_sure":"Are you sure you want to continue anyway?","plugins.compat.hb_node_too_low":"{{ packageName }} v{{ latestVersion }} requires Node.js v{{ minVersion }} or later. You are currently running Node.js {{ installedVersion }}.","plugins.compat.hb_too_low":"The {{ pluginName }} plugin recommends running on Homebridge v{{ minVersion }} or later. You are currently running Homebridge v{{ installedVersion }}.","plugins.compat.node_first":"Please upgrade Node.js before updating {{ packageName }}.","plugins.compat.node_link":"How To Update Node.js","plugins.compat.node_too_low":"The {{ pluginName }} plugin recommends running on Node.js v{{ minVersion }} or later. You are currently running Node.js {{ installedVersion }}.","plugins.compat.title":"Compatibility Check","plugins.config.load_error":"Failed to load plugin config.","plugins.config.must_be_array":"Plugin config must be an array.","plugins.config.must_be_array_objects":"Plugin config must be an array of objects.","plugins.config.must_be_object":"Config block must be an object.","plugins.config.name_property":'Accessory must have a valid "name" attribute',"plugins.config.please_fix":"Please fix validation errors before adding a new block.","plugins.config.remove_error":"Failed to remove plugin config.","plugins.disable.error":"Failed to disable plugin.","plugins.donate.button_not_verified":"Not Verified","plugins.donate.button_verified":"\u05DE\u05B0\u05D0\u05D5\u05BC\u05DE\u05B8\u05EA","plugins.donate.message_1":"As more users install their plugins through the Homebridge UI, they are less likely to visit the projects' GitHub page where the ways to support a developer would typically be displayed.","plugins.donate.message_2":"Adding donation links directly in the Homebridge UI ensures users know how to support Homebridge developers if they wish to do so.","plugins.donate.tile_donate_to":"\u05EA\u05E8\u05D5\u05DD \u05DC {{ author }}","plugins.enable.error":"Failed to enable plugin.","plugins.manage.all_versions":"All versions","plugins.manage.child_bridge_restart":"Child bridge restarted successfully.","plugins.manage.child_bridge_restart_failed":"Plugin restart failed, please restart Homebridge manually.","plugins.manage.confirm_disable":"Are you sure you want to disable {{ pluginName }}?","plugins.manage.confirm_disable_accessory_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen and removed from HomeKit.","plugins.manage.confirm_disable_accessory_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and HomeKit. The accessories will lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_disable_platform_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen but remain in HomeKit with a 'No Response' label.","plugins.manage.confirm_disable_platform_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and become controllable again in HomeKit. The accessories will not lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_enable":"\u05D4\u05D0\u05DD \u05D0\u05EA\u05D4 \u05D1\u05D8\u05D5\u05D7 \u05E9\u05D0\u05EA\u05D4 \u05E8\u05D5\u05E6\u05D4 \u05DC\u05D0\u05E4\u05E9\u05E8 {{ pluginName }}?","plugins.manage.disable":"\u05DC\u05D0 \u05E4\u05E2\u05D9\u05DC","plugins.manage.enable":"\u05DE\u05D0\u05D5\u05E4\u05E9\u05E8","plugins.manage.information":"Plugin Information","plugins.manage.install":"\u05D4\u05EA\u05E7\u05DF","plugins.manage.installed":"\u05D4\u05D5\u05EA\u05E7\u05DF","plugins.manage.json_config":"\u05D4\u05D2\u05D3\u05E8\u05D5\u05EA \u05D2'\u05E1\u05D5\u05DF","plugins.manage.manage_version":"\u05D4\u05EA\u05E7\u05DF \u05D2\u05E8\u05E1\u05D0 \u05E7\u05D5\u05D3\u05DE\u05EA","plugins.manage.manual_update_command":"To upgrade the package run open a Node.js command prompt as an Administrator and run the following commands:","plugins.manage.manual_update_required":"\u05E2\u05D3\u05DB\u05D5\u05DF \u05D9\u05D3\u05E0\u05D9 \u05DE\u05EA\u05D1\u05E7\u05E9","plugins.manage.online_updates":"Online updates are not supported on Windows. You will need to upgrade Homebridge manually after stopping the Homebridge service.","plugins.manage.plugin_logs":"Plugin Logs","plugins.manage.release_notes":"Release Notes","plugins.manage.scoped.error":"An error occurred. You can download the logs below.","plugins.manage.scoped.info":"For more information about scoped plugins and why to switch, see the wiki page {{ link }}.","plugins.manage.scoped.process":"This process will not affect your Homebridge/HomeKit accessories. You will not be able to cancel the process once it has started. It will:","plugins.manage.scoped.switch":"Switch To Scoped Plugin","plugins.manage.scoped.windows":"Online updates are not supported on Windows. You will need to install the new plugin and uninstall the old plugin manually.","plugins.manage.scoped.windows_service":'You should <span class="font-weight-bold">not</span> restart Homebridge until both steps are complete.',"plugins.manage.select_version":"\u05D1\u05D7\u05E8 \u05D2\u05E8\u05E1\u05D4 \u05DC\u05D4\u05EA\u05E7\u05E0\u05D4","plugins.manage.thanks_for_updating":"Thanks for installing the {{ targetVersion }} version of {{ pluginName }}.","plugins.manage.uninstall":"\u05D4\u05E1\u05E8","plugins.manage.uninstalled":"\u05D4\u05D5\u05E1\u05E8","plugins.manage.unverified_message":"Unverified Homebridge plugins indicate that they haven't undergone the review process by the Homebridge project team. Lack of verification does not necessarily imply inefficacy or safety concerns. Authors might have opted not to seek verification for various reasons.","plugins.manage.unverified_subtitle":"{{ pluginName }} is not verified","plugins.manage.unverified_title":"Unverified Plugins","plugins.manage.update":"\u05E2\u05D3\u05DB\u05DF","plugins.manage.updated":"\u05E2\u05D5\u05D3\u05DB\u05DF","plugins.manage.verified_message":"Homebridge plugins that are marked as verified have been reviewed by the Homebridge project team to ensure they meet various requirements that encourage best practices and a trouble-free user experience.","plugins.manage.verified_subtitle":"{{ pluginName }} is verified","plugins.manage.verified_title":"Verified Plugins","plugins.node_update.continue":"Continue","plugins.placeholder_search_first":"Use the search bar above to find your first plugin","plugins.placeholder_search_plugin":"\u05D7\u05E4\u05E9 \u05EA\u05D5\u05E1\u05E4\u05D9\u05DD \u05DC\u05D4\u05EA\u05E7\u05E0\u05D4\u2026","plugins.settings.custom.homebridge-gsh.label_account_linked":"\u05D7\u05E9\u05D1\u05D5\u05DF \u05E7\u05D5\u05E9\u05E8","plugins.settings.custom.homebridge-gsh.label_link_account":"\u05E7\u05E9\u05E8 \u05D7\u05E9\u05D1\u05D5\u05DF","plugins.settings.custom.homebridge-gsh.label_unlink_account":"\u05E0\u05EA\u05E7 \u05E7\u05E9\u05E8 \u05DC\u05D7\u05E9\u05D1\u05D5\u05DF","plugins.settings.custom.homebridge-gsh.message_about":"The Homebridge Google Smart Home plugin allows you to control your Homebridge accessories from a Google Home enabled smart speaker or the Google Home mobile app.","plugins.settings.custom.homebridge-gsh.message_account_link_required":"To enable this functionality you must sign in with your Google or GitHub account; make sure you use the same account when adding the Homebridge action in the Google Home mobile app.","plugins.settings.custom.homebridge-gsh.message_homebridge_restart_required":"\u05D4\u05D5\u05DE\u05D1\u05E8\u05D9\u05D3\u05D2' \u05D7\u05D9\u05D9\u05D1 \u05DC\u05D4\u05D9\u05D5\u05EA \u05DE\u05D0\u05D5\u05EA\u05D7\u05DC \u05E2\u05DC \u05DE\u05E0\u05EA \u05E9\u05D4\u05E9\u05D9\u05E0\u05D5\u05D9\u05D9\u05DD \u05D9\u05D7\u05D5\u05DC\u05D5","plugins.settings.custom.homebridge-gsh.message_invalid_token":"Invalid account linking token in config.json","plugins.settings.deconz.dump_no_exist":"Homebridge deCONZ dump file does not exist yet.","plugins.settings.hue.dump_no_exist":"Homebridge Hue dump file does not exist yet.","plugins.settings.label_open_config_editor":"\u05E4\u05EA\u05D7 \u05E2\u05D5\u05E8\u05DA \u05E7\u05D5\u05E0\u05E4\u05D9\u05D2\u05D5\u05E8\u05E6\u05D9\u05D4","plugins.settings.message_consult_documentation":"\u05D0\u05E0\u05D0 \u05D1\u05D5\u05D3\u05E7 \u05D0\u05EA \u05D4\u05EA\u05D9\u05E2\u05D5\u05D3 \u05E9\u05DC \u05D4\u05EA\u05D5\u05E1\u05E3 \u05E2\u05DC \u05DE\u05E0\u05EA \u05DC\u05E7\u05D1\u05DC \u05D4\u05D5\u05E8\u05D0\u05D5\u05EA \u05E7\u05D5\u05E0\u05E4\u05D9\u05D2\u05D5\u05E8\u05E6\u05D9\u05D4 \u05DC\u05EA\u05D5\u05E1\u05E3","plugins.settings.message_manual_config_required":"\u05D4\u05EA\u05D5\u05E1\u05E3 \u05D4\u05D6\u05D4 \u05D7\u05D9\u05D9\u05D1 \u05DC\u05D4\u05D9\u05D5\u05EA \u05DE\u05D5\u05D2\u05D3\u05E8 \u05D9\u05D3\u05E0\u05D9\u05EA \u05D1\u05E2\u05D6\u05E8\u05EA \u05E2\u05D5\u05E8\u05DA \u05D4\u05E7\u05D5\u05E0\u05E4\u05D9\u05D2\u05D5\u05E8\u05E6\u05D9\u05D4 \u05E9\u05DC \u05D4\u05D5\u05DE\u05D1\u05E8\u05D9\u05D3\u05D2'","plugins.settings.plugin_config_saved":"\u05E7\u05D5\u05E0\u05E4\u05D5\u05D2\u05E8\u05D5\u05E6\u05D9\u05D4 \u05E9\u05DC \u05EA\u05D5\u05E1\u05E3 \u05E0\u05E9\u05DE\u05E8\u05D4","plugins.settings.restart_required":"\u05D0\u05EA\u05D7\u05DC \u05D0\u05EA \u05D4\u05D5\u05DE\u05D1\u05E8\u05D9\u05D3\u05D2' \u05DB\u05D3\u05D9 \u05DC\u05D4\u05D7\u05D9\u05DC \u05D0\u05EA \u05D4\u05E9\u05D9\u05E0\u05D5\u05D9\u05D9\u05DD","plugins.settings.title_settings":"\u05D4\u05D2\u05D3\u05E8\u05D5\u05EA","plugins.status_disabled":"\u05DC\u05D0 \u05E4\u05E2\u05D9\u05DC","plugins.status_installed":"\u05DE\u05D5\u05EA\u05E7\u05DF","plugins.toast_failed_to_load_plugin_schema":"Failed to load plugin config schema.","plugins.toast_failed_to_load_plugins":"\u05DB\u05E9\u05DC \u05D1\u05D4\u05E2\u05DC\u05D0\u05EA \u05D4\u05EA\u05D5\u05E1\u05E4\u05D9\u05DD","plugins.uninstall_bridge_error":"Failed to remove child bridge.","plugins.uninstall_remove_config_required":"If you are permanently removing this plugin, make sure you remove any config for this plugin in the config.json before restarting Homebridge.","plugins.uninstall_remove_confirmation":"\u05D4\u05D0\u05DD \u05D0\u05EA\u05D4 \u05D1\u05D8\u05D5\u05D7 \u05E9\u05D1\u05E8\u05E6\u05D5\u05E0\u05DA \u05DC\u05D4\u05E1\u05D9\u05E8 \u05D0\u05EA {{ pluginName }}?","plugins.uninstall_remove_plugin_config":"\u05D4\u05E1\u05E8 \u05D4\u05D2\u05D3\u05E8\u05D5\u05EA \u05EA\u05D5\u05E1\u05E3","plugins.uninstall_unpair_child_bridge":"Unpair plugin child bridge?","plugins.uninstall_unpair_child_bridges":"Unpair {{ count }} plugin child bridges?","reset.accessory_reset":"\u05D0\u05D9\u05E4\u05D5\u05E1 \u05D0\u05D1\u05D9\u05D6\u05E8 \u05D4\u05D5\u05DE\u05D1\u05E8\u05D9\u05D3\u05D2'","reset.action_is_irreversible":"\u05E4\u05E2\u05D5\u05DC\u05D4 \u05D6\u05D5 \u05DC\u05D0 \u05E0\u05D9\u05EA\u05E0\u05EA \u05DC\u05D1\u05D9\u05D8\u05D5\u05DC, \u05E0\u05D0 \u05E7\u05E8\u05D0 \u05D1\u05D6\u05D4\u05D9\u05E8\u05D5\u05EA \u05DC\u05E4\u05E0\u05D9 \u05E9\u05EA\u05DE\u05E9\u05D9\u05DA","reset.bridges.desc":"If you are having trouble pairing Homebridge, an external accessory or a child bridge to HomeKit, you may need to unpair it from HomeKit to start again.","reset.bridges.empty":"You have no bridges to unpair from HomeKit.","reset.bridges.title":"Bridges","reset.bridges_all.desc":"Unpair all bridges from HomeKit. This includes the main Homebridge bridge, child bridges and bridges for external accessories.","reset.bridges_all.list_1":"This will unpair the Homebridge bridge, all child bridges and bridges for external accessories from HomeKit.","reset.bridges_all.list_2":"Note that your accessories will continue to show in HomeKit as no response, until the bridges are manually removed from HomeKit. You can do this in the Home app, by accessing Home Settings \u2192 Home Hubs & Bridges \u2192 {Bridge} \u2192 Remove Bridge from Home.","reset.bridges_all.list_3":"All your Homebridge to HomeKit accessories, scenes and automations will need to be reconfigured after the unpairing.","reset.bridges_all.list_4":"The pin for pairing your Homebridge bridge to HomeKit will be changed. You can see the new values in your Homebridge config after the unpairing.","reset.bridges_all.title":"Unpair All Bridges","reset.bridges_single.desc":"Unpair a single bridge from HomeKit. This may be a child bridge or a bridge for an external accessory like a camera or TV.","reset.bridges_single.list_1":"When unpairing a bridge, any accessories published by this bridge will be removed from the Homebridge cache.","reset.bridges_single.list_2":"The accessories will become stale in HomeKit (showing no response). To remove them, you will need to manually remove this bridge from HomeKit. You can do this in the Home app from the Home Settings section.","reset.bridges_single.list_3":"You can then attempt to pair the bridge again if required.","reset.bridges_single.title":"Unpair Single Bridge","reset.cached_accessory_removed":"\u05DE\u05D8\u05DE\u05D5\u05DF \u05E9\u05DC \u05D0\u05D1\u05D9\u05D6\u05E8 \u05D4\u05D5\u05E1\u05E8","reset.clear_cache_all.desc":"Remove all accessories from the cache.","reset.clear_cache_all.list_1":"When clicking on the remove button below, Homebridge will restart and all your existing accessories will be removed from Homebridge and HomeKit.","reset.clear_cache_all.list_2":"All associated HomeKit data will also be removed, this includes room associations, scenes and automations that this accessory uses.","reset.clear_cache_all.list_3":"After Homebridge restarts, your plugins will re-add any accessories as if the plugin was being installed for the first time.","reset.clear_cache_all.title":"Remove All Accessories","reset.clear_cache_bridge.desc":"Remove all accessories published by a bridge from the cache.","reset.clear_cache_bridge.empty":"You have no bridges from which to remove accessories.","reset.clear_cache_bridge.list_1":"This function can be used to reset a plugin's existing accessories in HomeKit. They will be removed from Homebridge/HomeKit and then re-added by the plugin as new accessories.","reset.clear_cache_bridge.list_2":"The child bridge's pairing details and status will remain the same.","reset.clear_cache_bridge.title":"Remove Bridge Accessories","reset.clear_cache_single.desc":"Remove a single accessory from the cache.","reset.clear_cache_single.list_1":"Some plugins don't clean up after themselves properly! If an accessory that you no longer have in Homebridge is still being displayed in HomeKit, you can remove it from the cache.","reset.clear_cache_single.list_2":"This function can be used to reset an existing accessory in HomeKit. It will be removed from Homebridge/HomeKit and then re-added by the plugin as a new accessory.","reset.clear_cache_single.list_3":"When removing an accessory from the cache, all its associated HomeKit data will be removed. This includes any associated scenes and automations that use this accessory.","reset.clear_cache_single.list_4":"Accessories can only be removed when Homebridge is not running. Homebridge will automatically restart when clicking on each of the remove buttons below. If you need to remove multiple accessories, please be patient and allow Homebridge to restart between each removal.","reset.clear_cache_single.title":"Remove Single Accessory","reset.delete_failed":"\u05DB\u05E9\u05DC \u05D1\u05DE\u05D7\u05D9\u05E7\u05EA \u05D0\u05D1\u05D9\u05D6\u05E8","reset.delete_success":"\u05D0\u05EA\u05D7\u05D5\u05DC \u05E9\u05E8\u05EA \u05D4\u05D5\u05DE\u05D1\u05E8\u05D9\u05D3\u05D2' \u05D5\u05E0\u05D9\u05E7\u05D5\u05D9 \u05DE\u05D8\u05DE\u05D5\u05DF \u05D0\u05D1\u05D9\u05D6\u05E8\u05D9\u05DD","reset.error_message":"Accessory cache could not be loaded. You may not have any cached accessories.","reset.failed_to_reset":"\u05DB\u05E9\u05DC \u05D1\u05D0\u05D9\u05E4\u05D5\u05E1 \u05D4\u05D5\u05DE\u05D1\u05E8\u05D9\u05D3\u05D2' \u05D0\u05E0\u05D0 \u05D1\u05D5\u05D3\u05E7 \u05D0\u05EA \u05D4\u05DC\u05D5\u05D2","reset.force_restart_hb_help_text":"Use this action to force the hb-service service to do a full restart.","reset.remove_cached_accessories_single_empty":"You have no cached accessories to remove.","reset.removing_cached_accessory_please_wait":"\u05DE\u05E1\u05D9\u05E8 \u05D0\u05D1\u05D9\u05D6\u05E8 \u05DE\u05D8\u05DE\u05D5\u05DF, \u05D0\u05E0\u05D0 \u05D4\u05DE\u05EA\u05DF\u2026","restart.child_bridge_list":"Please restart these child bridges for the changes to apply:","restart.child_bridges":"Please restart the plugin's child bridges for the changes to apply.","restart.homebridge":"Please restart Homebridge for the changes to apply.","restart.label_restart_command_executed":"\u05E4\u05E7\u05D5\u05D3\u05EA \u05D0\u05EA\u05D7\u05D5\u05DC \u05D1\u05D5\u05E6\u05E2\u05D4","restart.please_wait_while_server_restarts":"Please wait, this page will automatically redirect when the server is back online.","restart.server_is_taking_long_time_to_restart":"Server restart is taking a long time. You may need to bring up the Homebridge service manually.","restart.service_ready":"\u05E9\u05E8\u05EA \u05D4\u05D5\u05DE\u05D1\u05E8\u05D9\u05D3\u05D2' \u05DE\u05D5\u05DB\u05DF","restart.title_restart":"\u05DE\u05EA\u05D7\u05D9\u05DC \u05DE\u05D7\u05D3\u05E9 \u05D4\u05D5\u05DE\u05D1\u05E8\u05D9\u05D3\u05D2'","restart.toast_server_restart_error":"\u05E7\u05E8\u05EA\u05D4 \u05E9\u05D2\u05D9\u05D0\u05D4 \u05D1\u05D6\u05DE\u05DF \u05D4\u05D1\u05E7\u05E9\u05D4 \u05DC\u05D0\u05EA\u05D7\u05DC \u05D0\u05EA \u05D4\u05E9\u05E8\u05EA","restart.toast_server_restart_timeout":"\u05DC\u05D5\u05E7\u05D7 \u05DC\u05E9\u05E8\u05EA \u05D6\u05DE\u05DF \u05E8\u05D1 \u05DC\u05D7\u05D6\u05D5\u05E8 \u05DC\u05D4\u05D9\u05D5\u05EA \u05E4\u05E2\u05D9\u05DC","restart.toast_server_restarted":"\u05E9\u05E8\u05EA \u05D0\u05D5\u05EA\u05D7\u05DC","restart.ui_online":"\u05E9\u05E8\u05EA \u05D4\u05D5\u05DE\u05D1\u05E8\u05D9\u05D3\u05D2' \u05D6\u05DE\u05D9\u05DF","rpi.throttled.currently_message":"This Raspberry Pi is reporting it is currently under-voltage; please check it is connected to an appropriate power supply. Under-voltage can result in system instability and SD card corruption.","rpi.throttled.previously_message":"This Raspberry Pi has reported an under-voltage event since it was last rebooted; please check it is connected to an appropriate power supply.","rpi.throttled.undervoltage_title":"Under Voltage","settings.cache.desc":"Homebridge maintains accessories in cache so they aren't removed and re-added to HomeKit each time Homebridge restarts. Sometimes this cache can become out of sync with the actual accessories in Homebridge.","settings.cache.title":"Accessories","settings.changes.saved":"Your changes have been saved and require a restart to take effect.","settings.datetime.incorrect":"The date and time on your Homebridge server seem to be incorrect. This may cause unexpected issues. Click here for more information.","settings.display.blue":"Blue","settings.display.bluegrey":"Blue Grey","settings.display.brown":"Brown","settings.display.cyan":"Cyan","settings.display.dark":"Dark","settings.display.deep_purple":"Deep Purple","settings.display.green":"Green","settings.display.grey":"Grey","settings.display.indigo":"Indigo","settings.display.lang":"Language","settings.display.light":"Light","settings.display.lighting_mode":"Lighting Mode","settings.display.login_wallpaper":"Login Wallpaper","settings.display.login_wallpaper_desc":"A custom login wallpaper can be set by adding a <code>ui-wallpaper.jpg</code> file to your Homebridge storage directory, or by providing a full path to a local image file here.","settings.display.orange":"Orange","settings.display.pink":"Pink","settings.display.purple":"Purple","settings.display.red":"Red","settings.display.teal":"Teal","settings.display.temp_units":"Temperature Units","settings.display.temp_units.c":"Celsius (\xB0C)","settings.display.temp_units.f":"Fahrenheit (\xB0F)","settings.display.theme":"Theme","settings.general.title_display":"Display","settings.general.title_general":"General","settings.mdns_advertiser":"mDNS Advertiser","settings.mdns_advertiser_exp":"experimental","settings.mdns_advertiser_help":"If you have trouble connecting Homebridge to HomeKit (all accessories showing 'No Response' in the Home app), try using one of the alternate mDNS advertisers.","settings.mdns_advertiser_not_connected":"Not Connected","settings.mdns_advertiser_rec":"recommended","settings.network.label_interface_name":"\u05E9\u05DD \u05DE\u05DE\u05E9\u05E7","settings.network.label_ip_address":"\u05DB\u05EA\u05D5\u05D1\u05EA \u05D0\u05D9\u05E4\u05D9","settings.network.message_network_interface":"If no network interfaces are selected, Homebridge will attempt to automatically determine which interfaces to advertise.","settings.network.port_hb":"Homebridge Port","settings.network.port_hb_desc":"The port number to run the Homebridge bridge on. This must be between 1025 and 65533, and should not be the same as the Homebridge UI port.","settings.network.port_ui":"UI Port","settings.network.port_ui_desc":"The port number to run the Homebridge UI on.","settings.network.title_network":"\u05E8\u05E9\u05EA","settings.network.title_network_interfaces":"\u05DE\u05DE\u05E9\u05E7 \u05E8\u05E9\u05EA","settings.service.debug_tooltip":"Some plugins require you to set the DEBUG environment variable to enable debug level logging.","settings.service.node_tooltip":"Node.js runtime options for this process. This should be kept blank unless you know what you are doing.","settings.startup.debug":"Homebridge Debug Mode","settings.startup.debug_desc_v1":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge as well as all child bridges. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.debug_desc_v2":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge. The setting for child bridges can be found in the child bridge configuration from the plugins page. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.insecure":"Homebridge 'Insecure' Mode","settings.startup.insecure_desc":"To control your accessories via the Homebridge UI you must be running Homebridge in insecure mode.","settings.startup.keep_accessories":"Keep Accessories Of Uninstalled Plugins","settings.startup.keep_accessories_desc":"If enabled, accessories of platform plugins will remain in the cache even after the plugin is uninstalled. This can be useful if you plan to reinstall the plugin later.","settings.title_startup_options":"Startup & Environment Options","settings.unpair_bridge.load_error":"Paired bridges could not be loaded.","settings.unpair_bridge.unpair_error":"Failed to unpair bridge.","setup.button_get_started":"Get Started","setup.create_account":"Create Account","setup.create_account_reason":"Password authentication to your Homebridge admin web interface must be configured. Even if Homebridge is accessible only in your local network, it is still important to protect it from unrestricted access.","setup.open_dashboard":"Open Dashboard","setup.welcome_to_homebridge":"Welcome to Homebridge",setup_wizard_message_complete_message:"The setup procedure is complete and you're now ready to start using Homebridge.",setup_wizard_message_complete_title:"Congratulations!",setup_wizard_message_restore:"Restore From Backup","status.code_scan":"\u05E1\u05E8\u05D5\u05E7 \u05DB\u05D3\u05D9 \u05DC\u05D4\u05D5\u05E1\u05D9\u05E3 \u05DC-HomeKit","status.cpu.load":"\u05E2\u05D5\u05DE\u05E1","status.cpu.temp":"\u05D8\u05DE\u05E4\u05E8\u05D8\u05D5\u05E8\u05D4","status.cpu.title_cpu":"\u05DE\u05E2\u05D1\u05D3","status.credits.title":"Credits","status.homebridge.checking":"\u05D1\u05D5\u05D3\u05E7 \u05E2\u05D3\u05DB\u05D5\u05E0\u05D9\u05DD\u2026","status.homebridge.up_to_date":"\u05DE\u05E2\u05D5\u05D3\u05DB\u05DF","status.memory.label_available":"\u05E4\u05E0\u05D5\u05D9","status.memory.label_total":"\u05E1\u05D4\u05F4\u05DB","status.memory.title_memory":"\u05D6\u05DB\u05E8\u05D5\u05DF","status.network.received_per_second":"Received","status.network.sent_per_second":"Sent","status.network.title_network":"Network Activity","status.plugin_out_of_date":"\u05EA\u05D5\u05E1\u05E3 \u05DC\u05D0 \u05DE\u05E2\u05D5\u05D3\u05DB\u05DF","status.plugins_out_of_date":"\u05EA\u05D5\u05E1\u05E3 \u05DC\u05D0 \u05DE\u05E2\u05D5\u05D3\u05DB\u05DF","status.services.label_not_running":"\u05DC\u05D0 \u05E4\u05D5\u05E2\u05DC","status.services.label_running":"\u05E4\u05D5\u05E2\u05DC","status.services.updates":"Update Centre","status.uptime.title_uptime":"Uptime","status.widget.accessories.choose_accessories":"\u05D1\u05D7\u05E8 \u05D0\u05EA \u05D4\u05D0\u05D1\u05D9\u05D6\u05E8 \u05DC\u05D4\u05E6\u05D2\u05D4 \u05D1\u05D5\u05D5\u05D9\u05D3\u05D2'\u05D8 \u05DE\u05DC\u05E9\u05D5\u05E0\u05D9\u05EA \u05D4\u05D0\u05D9\u05D1\u05D6\u05E8\u05D9\u05DD","status.widget.add.label_pairing_code":"\u05E7\u05D5\u05D3 \u05E6\u05D9\u05DE\u05D5\u05D3","status.widget.bridge.restart_error":"Failed to restart child bridge.","status.widget.clock":"\u05E9\u05E2\u05D5\u05DF","status.widget.clock_dateformat":"\u05E4\u05D5\u05E8\u05DE\u05D8 \u05EA\u05D0\u05E8\u05D9\u05DA","status.widget.clock_timeformat":"\u05E4\u05D5\u05E8\u05DE\u05D8 \u05D6\u05DE\u05DF","status.widget.font_size":"\u05D2\u05D5\u05D3\u05DC \u05E4\u05D5\u05E0\u05D8","status.widget.font_weight":"\u05DE\u05E9\u05E7\u05DC \u05E4\u05D5\u05E0\u05D8","status.widget.hide_on_mobile":"\u05D4\u05E1\u05EA\u05E8 \u05D1\u05DE\u05E6\u05D1 \u05E7\u05D5\u05DE\u05E4\u05E7\u05D8\u05D9 (\u05D1\u05DE\u05E6\u05D1 \u05DE\u05D5\u05D1\u05D9\u05D9\u05DC)","status.widget.homebridge_logs":"\u05DC\u05D5\u05D2\u05D9\u05DD \u05D4\u05D5\u05DE\u05D1\u05E8\u05D9\u05D3\u05D2,","status.widget.info":"\u05DE\u05D9\u05D3\u05E2 \u05DE\u05E2\u05E8\u05DB\u05EA","status.widget.info.config_path":"\u05E9\u05D1\u05D9\u05DC \u05E7\u05D5\u05E0\u05E4\u05D9\u05D2\u05D5\u05E8\u05E6\u05D9\u05D4","status.widget.info.disabled":"Disabled","status.widget.info.docker":"Docker","status.widget.info.glibc_message":"This message indicates that your operating system does not support newer versions of Node.js. To resolve this and be able to install updated versions of Node.js in the future, you will need to update your operating system to a more recent version.","status.widget.info.glibc_title":"OS Update","status.widget.info.hostname":"Hostname","status.widget.info.ipv4":"IPv4","status.widget.info.ipv6":"IPv6","status.widget.info.no":"No","status.widget.info.node_unsupp":"Unsupported","status.widget.info.node_unsupp_message":"You are running a version of Node.js that is not officially supported by Homebridge. You should consider changing to a supported version.","status.widget.info.node_unsupp_title":"Unsupported Node Version","status.widget.info.node_update_message":"Homebridge requires Node.js installed on your system to run. From time to time, you will need to update the Node.js runtime to enable support for new features. Homebridge (and verified plugins) support all current Active and Maintenance LTS releases of Node.js.","status.widget.info.node_update_title":"Node Update","status.widget.info.nodejs_path":"Node.js Path","status.widget.info.nodejs_version":"Node.js \u05D2\u05E8\u05E1\u05D0\u05EA","status.widget.info.os":"\u05DE\u05E2\u05E8\u05DB\u05EA \u05D4\u05E4\u05E2\u05DC\u05D4","status.widget.info.plugin_path":"\u05E0\u05EA\u05D9\u05D1 \u05DC\u05EA\u05D5\u05E1\u05E3","status.widget.info.service_mode":"\u05DE\u05E6\u05D1 \u05E9\u05D9\u05E8\u05D5\u05EA","status.widget.info.service_user":"\u05DE\u05E9\u05EA\u05DE\u05E9","status.widget.info.servicemode_message":"Standalone mode is no longer recommended. Setting up Homebridge and Homebridge UI with hb-service has the same benefits of standalone mode but is much easier to setup and maintain.","status.widget.info.servicemode_title":"Service Mode","status.widget.info.storage_path":"\u05E9\u05D1\u05D9\u05DC \u05D0\u05D7\u05E1\u05D5\u05DF","status.widget.info.synology_package":"Synology Package","status.widget.info.timezone":"\u05D0\u05D6\u05D5\u05E8 \u05D6\u05DE\u05DF","status.widget.info.yes":"Yes","status.widget.network.history_items":"History Items","status.widget.network.items":"items","status.widget.network.network_interface":"Network Interface","status.widget.network.none_selected":"None selected in settings - using default.","status.widget.network.refresh_interval":"Refresh Interval","status.widget.network.refresh_note":"Refresh the page after saving for changes to take effect.","status.widget.network.seconds":"seconds","status.widget.qr_paired":"\u05DE\u05B0\u05D7\u05D5\u05BC\u05D1\u05BC\u05B8\u05E8","status.widget.qr_unpaired":"\u05DC\u05D0 \u05DE\u05D7\u05D5\u05D1\u05E8","status.widget.show_hide":"Show/Hide Widgets","status.widget.title_manage_widget":"\u05E0\u05D4\u05DC \u05D5\u05D5\u05D9\u05D3\u05D2'\u05D8\u05D9\u05DD","status.widget.uptime.label_process":"\u05EA\u05D4\u05DC\u05D9\u05DA","status.widget.uptime.label_server":"\u05E9\u05E8\u05EA","status.widget.weather.label_config_required_help":"\u05D0\u05E0\u05D0 \u05D1\u05D7\u05E8 \u05D0\u05EA \u05E2\u05D9\u05E8\u05DA \u05D1\u05D4\u05D2\u05D3\u05E8\u05D5\u05EA \u05D4\u05D5\u05D5\u05D9\u05D3\u05D2'\u05D8","status.widget.weather.label_search_for_your_city":"\u05D7\u05E4\u05E9 \u05D0\u05EA \u05E2\u05D9\u05E8\u05DA:","status.widget.weather.title_weather":"\u05DE\u05D6\u05D2 \u05D0\u05D5\u05D5\u05D9\u05E8","support.dev.api":"Homebridge API","support.dev.api_hap":"HAP-NodeJS API","support.dev.api_hap_sub":"HAP-NodeJS is an implementation of the HomeKit Accessory Server as specified in the HomeKit Accessory Protocol (HAP), which is defined by Apple as part of the HomeKit Framework.","support.dev.api_sub":"Homebridge is a lightweight Node.js server you can run on your home network to emulate the HomeKit Accessory Protocol (HAP).","support.dev.item_swagger":"Swagger Docs","support.dev.item_swagger_sub":"The Homebridge REST API allows you to interact with your Homebridge server using HTTP requests.","support.dev.template":"Plugin Template Repo","support.dev.template_sub":"A template Homebridge plugin that can be used as a base to help you get started developing your own plugin.","support.dev.title":"Developers","support.dev.verified":"Verified By Homebridge","support.dev.verified_sub":"The Verified By Homebridge program allows plugin developers to get their plugins reviewed and endorsed by the Homebridge project team.","support.links.discord":"Discord Server","support.links.discord_sub":"Join the Homebridge Discord chat server to chat with other users and developers.","support.links.documentation":"Documentation","support.links.documentation_sub":"The Homebridge documentation provides a wealth of information on how to get started with Homebridge and common issue resolutions.","support.links.issue":"Report An Issue","support.links.issue_sub":"If you are experiencing an issue with Homebridge, please open a new issue on GitHub. This should not be used for issues with specific plugins.","support.links.reddit":"Reddit Community","support.links.reddit_sub":"The Homebridge subreddit is a great place to share your Homebridge setup and ask for help.","support.links.title":"Useful Links","support.title":"Support","toast.no_auth":"Only administrators may access the requested page.","toast.title_error":"\u05E9\u05D2\u05D9\u05D0\u05D4","toast.title_success":"\u05D4\u05E6\u05DC\u05D7\u05D4","toast.title_warning":"\u05D0\u05D6\u05D4\u05E8\u05D4","users.button_add_new_user":"\u05D4\u05D5\u05E1\u05E3 \u05DE\u05E9\u05EA\u05DE\u05E9 \u05D7\u05D3\u05E9","users.button_add_user":"\u05D4\u05D5\u05E1\u05E3 \u05DE\u05E9\u05EA\u05DE\u05E9","users.label_admin_user":"\u05DE\u05E9\u05EA\u05DE\u05E9 \u05DE\u05E0\u05D4\u05DC?","users.label_confirm_password":"\u05D0\u05E9\u05E8 \u05E1\u05D9\u05E1\u05DE\u05D0","users.label_full_name":"\u05E9\u05DD \u05DE\u05DC\u05D0","users.label_new_password":"\u05E1\u05D9\u05E1\u05DE\u05D0 \u05D7\u05D3\u05E9\u05D4","users.label_password":"\u05E1\u05D9\u05E1\u05DE\u05D0","users.label_username":"\u05E9\u05DD \u05DE\u05E9\u05EA\u05DE\u05E9","users.setup_2fa":"\u05D4\u05D2\u05D3\u05E8 \u05D0\u05D1\u05D8\u05D7\u05D4 \u05D3\u05D5 \u05E9\u05DC\u05D1\u05D9\u05EA","users.setup_2fa_activate_error":"An error occurred activating 2FA","users.setup_2fa_cannot_setup_2fa":"\u05DC\u05D0 \u05E0\u05D9\u05EA\u05DF \u05DC\u05D4\u05D2\u05D3\u05D9\u05E8 \u05D0\u05D1\u05D8\u05D7\u05D4 \u05D3\u05D5 \u05E9\u05DC\u05D1\u05D9\u05EA","users.setup_2fa_disable":"\u05D1\u05D8\u05DC \u05D0\u05D1\u05D8\u05D7\u05D4 \u05D3\u05D5 \u05E9\u05DC\u05D1\u05D9\u05EA","users.setup_2fa_disable_current_password":"\u05D4\u05DB\u05E0\u05E1 \u05D0\u05EA \u05D4\u05E7\u05D5\u05D3 \u05D4\u05E0\u05D5\u05DB\u05D7\u05D9 \u05E9\u05DC\u05DA \u05E2\u05DC \u05DE\u05E0\u05EA \u05DC\u05D1\u05D8\u05DC \u05D0\u05EA \u05D4\u05D0\u05D9\u05DE\u05D5\u05EA \u05D4\u05D3\u05D5 \u05E9\u05DC\u05D1\u05D9","users.setup_2fa_disable_success":"\u05D0\u05D9\u05DE\u05D5\u05EA \u05D3\u05D9 \u05E9\u05DC\u05D1\u05D9 \u05D1\u05D5\u05D8\u05DC \u05D1\u05D4\u05E6\u05DC\u05D7\u05D4","users.setup_2fa_enable":"\u05D4\u05E4\u05E2\u05DC \u05D0\u05D1\u05D8\u05D7\u05D4 \u05D3\u05D5 \u05E9\u05DC\u05D1\u05D9\u05EA","users.setup_2fa_enable_error":"An error occurred setting up 2FA","users.setup_2fa_enabled_success":"\u05D0\u05D9\u05DE\u05D5\u05EA \u05D3\u05D9 \u05E9\u05DC\u05D1\u05D9 \u05D4\u05D5\u05E4\u05E2\u05DC \u05D1\u05D4\u05E6\u05DC\u05D7\u05D4","users.setup_2fa_enter_code":"\u05D4\u05DB\u05E0\u05E1 \u05D0\u05EA \u05D4\u05E7\u05D5\u05D3 \u05DE\u05D0\u05E4\u05DC\u05D9\u05E7\u05E6\u05D9\u05EA \u05D4\u05D0\u05D9\u05DE\u05D5\u05EA \u05E9\u05DC\u05DA","users.setup_2fa_scan_qr_code":"\u05E1\u05E8\u05D5\u05E7 \u05D0\u05EA \u05E7\u05D5\u05D3 \u05D4\u05E7\u05D9\u05D5 \u05D0\u05E8 \u05DE\u05D0\u05E4\u05DC\u05D9\u05E7\u05E6\u05D9\u05EA \u05D4\u05D0\u05D9\u05DE\u05D5\u05EA \u05E9\u05DC\u05DA:","users.setup_2fa_server_time_out":"\u05E9\u05E2\u05D5\u05DF \u05D4\u05E9\u05E8\u05EA \u05E9\u05DC\u05DA \u05DC\u05D0 \u05DE\u05E2\u05D5\u05D3\u05DB\u05DF {{ timeDiffError }} \u05DE\u05D9\u05DC\u05D9\u05E9\u05E0\u05D9\u05D5\u05EA. \u05D4\u05DE\u05E7\u05E1\u05D9\u05DE\u05D5\u05DD \u05D4\u05DE\u05D5\u05EA\u05E8 \u05D4\u05D5\u05D0 +/-5000 \u05DE\u05D9\u05DC\u05D9\u05E9\u05E0\u05D9\u05D5\u05EA.","users.setup_2fa_warning":"\u05D6\u05D9\u05D4\u05D5\u05D9 \u05D3\u05D5 \u05E9\u05DC\u05D1\u05D9 \u05D3\u05D5\u05E8\u05E9 \u05DE\u05E9\u05E2\u05D5\u05DF \u05D4\u05E9\u05E8\u05EA \u05E9\u05DC\u05DB\u05DD \u05DC\u05D4\u05D9\u05D5\u05EA \u05DE\u05D0\u05D5\u05D3 \u05DE\u05D3\u05D5\u05D9\u05E7. \u05D0\u05DD \u05DC\u05E9\u05E8\u05EA \u05E9\u05DC\u05DA \u05D0\u05D9\u05DF \u05D0\u05EA \u05D4\u05D9\u05DB\u05D5\u05DC\u05EA \u05DC\u05E9\u05DE\u05D5\u05E8 \u05E2\u05DC \u05D6\u05DE\u05DF \u05DE\u05D3\u05D5\u05D9\u05E7 \u05E2\u05D3\u05D9\u05E3 \u05E9\u05DC\u05D0 \u05DC\u05D4\u05DB\u05D9\u05DC \u05D6\u05D9\u05D4\u05D5\u05D9 \u05D3\u05D5 \u05E9\u05DC\u05D1\u05D9 \u05DE\u05D4\u05E1\u05D9\u05DB\u05D5\u05DF \u05DC\u05D4\u05E0\u05E2\u05DC \u05DE\u05D7\u05D5\u05E5 \u05DC\u05DE\u05DE\u05E9\u05E7 \u05D4\u05DE\u05E9\u05EA\u05DE\u05E9","users.title_add_user":"\u05D4\u05D5\u05E1\u05E3 \u05DE\u05E9\u05EA\u05DE\u05E9","users.title_edit_user":"\u05E2\u05E8\u05D5\u05DA \u05DE\u05E9\u05EA\u05DE\u05E9","users.title_users":"\u05DE\u05E9\u05EA\u05DE\u05E9\u05D9\u05DD","users.toast_added_new_user":"\u05D4\u05D5\u05E1\u05E4\u05EA \u05DE\u05E9\u05EA\u05DE\u05E9 \u05D7\u05D3\u05E9","users.toast_failed_to_add_user":"\u05DB\u05E9\u05DC\u05D5\u05DF \u05D1\u05D4\u05D5\u05E1\u05E4\u05EA \u05DE\u05E9\u05EA\u05DE\u05E9","users.toast_failed_to_delete_user":"\u05DB\u05E9\u05DC\u05D5\u05DF \u05D1\u05DE\u05D7\u05D9\u05E7\u05EA \u05DE\u05E9\u05EA\u05DE\u05E9","users.toast_updated_user":"\u05DE\u05E9\u05EA\u05DE\u05E9 \u05E2\u05D5\u05D3\u05DB\u05DF","users.toast_user_deleted":"\u05DE\u05E9\u05EA\u05DE\u05E9 \u05E0\u05DE\u05D7\u05E7"}});var Ds=y((Id,ga)=>{ga.exports={"accessories.button_add_room":"Szoba hozz\xE1ad\xE1sa","accessories.button_hidden_hide":"Hide Hidden","accessories.button_hidden_show":"Show Hidden","accessories.control.auto":"Auto","accessories.control.away":"Away","accessories.control.battery_charging":"T\xF6lt\xE9s","accessories.control.battery_notchargeable":"Nem t\xF6lthet\u0151 fel","accessories.control.battery_notcharging":"Nem t\xF6lt","accessories.control.brightness":"Brightness","accessories.control.closed":"Closed","accessories.control.closing":"Closing","accessories.control.cool":"Cool","accessories.control.default_room":"Default Room","accessories.control.default_running_time":"Default Running Time","accessories.control.dehumidifying":"Dehumidifying","accessories.control.detected":"Detected","accessories.control.drag_here":"Drag Here","accessories.control.fan":"Fan","accessories.control.heat":"Heat","accessories.control.home":"Home","accessories.control.humidifying":"Humidifying","accessories.control.jammed":"Jammed","accessories.control.light":"Light","accessories.control.locked":"Locked","accessories.control.mute":"Mute","accessories.control.night":"Night","accessories.control.not_detected":"Not Detected","accessories.control.not_mute":"On","accessories.control.off":"Off","accessories.control.on":"On","accessories.control.open":"Open","accessories.control.opening":"Opening","accessories.control.rotation_speed":"Rotation Speed","accessories.control.running":"Running","accessories.control.speaker_volume":"Hanger\u0151","accessories.control.stopped":"Stopped","accessories.control.target":"Target","accessories.control.target_humidity":"Target Humidity","accessories.control.target_temperature":"Target Temperature","accessories.control.triggered":"Triggered","accessories.control.unknown":"Unknown","accessories.control.unlocked":"Unlocked","accessories.control_disabled":"Homebridge kieg\xE9sz\xEDt\u0151 vez\xE9rl\u0151 kikapcsolva","accessories.hide_this_accessory":"Kieg\xE9sz\xEDt\u0151 elrejt\xE9se","accessories.message_for_more_information":"tov\xE1bbi inform\xE1ci\xF3k\xE9rt.","accessories.message_must_use_insecure_mode":"A kieg\xE9sz\xEDt\u0151k vez\xE9rl\xE9seihez a Homebridge-t insecure m\xF3dban kell futtatni.","accessories.message_please_see":"Keresd meg","accessories.name":"N\xE9v","accessories.room_name":"Szoba neve","accessories.rooms_not_appear_in_homekit":"The rooms you create here will not appear in HomeKit, they are only for the organisation of accessories in the Homebridge UI.","accessories.settings_link":"You can access the Homebridge Settings at any time from the cog icon in the side menu.","accessories.show_on_dashboard":"Show in dashboard widget","accessories.title_accessories":"Kieg\xE9sz\xEDt\u0151k","backup.backup_delete_failed":"Backup deletion failed. See logs for details.","backup.backup_download_failed":"Backup download failed.","backup.backup_exceeds_max_size":"Backup ({{ backupSize }}) exceeds maximum restore file size of {{ maxBackupSizeText }}","backup.backup_help_one":"Download a backup archive of your entire Homebridge environment. This will backup the entire contents of your Homebridge storage directory which you can later restore on any platform capable of running Homebridge UI.","backup.backup_help_two":"Plugins not hosted on npm, or plugins installed directly from GitHub will not be backed up or restored.","backup.backup_restored":"Backup Archive Restored","backup.backup_warning":"Backup archives contain sensitive information and should not be shared with others.","backup.button_restore_backup":"Restore Backup","backup.label_choose_backup_file_to_restore":"Choose backup file to restore\u2026","backup.label_uploading":"Uploading\u2026","backup.load_error":"Failed to load config backup.","backup.now":"Now","backup.restore_failed":"Restore Failed","backup.restore_help_one":"Restore a backup archive you previously made using the Homebridge UI. Your Homebridge config, cached accessories, HomeKit pairings and Homebridge UI user accounts will be restored. Any Homebridge plugins you had installed will also be downloaded from the npm registry.","backup.restore_help_two":"You will need to login to the Homebridge UI after doing a restore using the credentials from the restored instance.","backup.restore_max_size":"You can restore a backup archive up to {{ maxBackupSizeText }} in size.","backup.restore_warning":"Restoring from a backup will irreversibly overwrite the current Homebridge configuration.","backup.scheduled_backup_time":"A full backup of the Homebridge instance is automatically created every day at {{ backupTime }} and kept for {{ dayCount }} days.","backup.title_backup":"Backup","child_bridge.about":"Homebridge allows you to run your plugin's platform or accessory as an isolated child bridge. This can improve the general responsiveness and reliability of Homebridge.","child_bridge.bridge_connect":"Connect to HomeKit","child_bridge.bridge_settings":"Child Bridge Config","child_bridge.bridges":"HomeKit Bridges","child_bridge.bridges_paired":"Each child bridge platform or accessory will need to be paired with HomeKit separately.","child_bridge.config.debug":"Debug Mode","child_bridge.config.description":"These fields are not required, but can be used to override the HomeKit configuration for this bridge.","child_bridge.config.firmware":"Firmware Version","child_bridge.config.header":"Configuration","child_bridge.config.manufacturer":"Manufacturer","child_bridge.config.model":"Model","child_bridge.config.name":"Name","child_bridge.must_configure_plugin":"You need to configure this plugin before you can manage its bridge settings.","child_bridge.reset_accessories":"Reset Accessories","child_bridge.reset_accessories_list":"Choose from which child bridges you want to reset the accessories below:","child_bridge.restart":"Restart Child Bridges","child_bridge.restart_homebridge":"Restart Homebridge to finish setting up this child bridge.","child_bridge.restart_plural":"Restart Child Bridges","child_bridge.return_to_pair":"Return to this screen after Homebridge has restarted to view the pairing QR code.","child_bridge.select_type":"Select which platforms or accessories you want to run as a child bridge","child_bridge.setup":"Set Up Child Bridge","child_bridge.start":"Start Child Bridge","child_bridge.start_plural":"Start Child Bridges","child_bridge.stop":"Stop Child Bridge","child_bridge.stop_plural":"Stop Child Bridges","child_bridge.wiki_link":"Learn more about child bridges","config.config_accessory_must_be_array":"a kieg\xE9sz\xEDt\u0151nek sz\xF6gletes z\xE1r\xF3jelben kell lennie []","config.config_bridge_missing":"Hi\xE1nyzik a Bridge konfigur\xE1ci\xF3","config.config_invalid_json":"A konfigur\xE1ci\xF3 hib\xE1s JSON f\xE1jlt tartalmaz","config.config_platform_must_be_array":"a platformnak sz\xF6gletes z\xE1r\xF3jelben kell lennie []","config.config_username_error":"Bridge felhaszn\xE1l\xF3n\xE9vnek 6 p\xE1r kett\u0151sponttal elv\xE1lasztott hexadecim\xE1lis karakternek kell lennie (A-F 0-9)","config.error_blocks_objects":"All {{ type }} blocks must be objects.","config.error_blocks_type":"All {{ type }} blocks must contain the {{ type }} attribute.","config.error_string_array":"Each item in the {{ key }} array must be a string.","config.error_string_type":"The {{ type }} attribute must be a string.","config.failed_to_save_config":"Hiba l\xE9pett fel a konfigur\xE1ci\xF3 ment\xE9se k\xF6zben","config.restore.confirm":"Kattintson a ment\xE9sre, ha vissza szeretn\xE9 \xE1ll\xEDtani a biztons\xE1gi ment\xE9st.","config.restore.copy_to_editor":"M\xE1sold a szerkeszt\u0151be","config.restore.no_backups":"Nincs biztons\xE1gi ment\xE9s","config.restore.title_restore_homebridge_backup":"Homebridge be\xE1ll\xEDt\xE1sok vissza\xE1ll\xEDt\xE1sa","config.restore.toast_backups_deleted":"Minden biztons\xE1gi ment\xE9s t\xF6r\xF6lve","config.title_backup_loaded":"Biztons\xE1gi ment\xE9s vissza\xE1ll\xEDtva","form.button_cancel":"M\xE9gse","form.button_close":"Bez\xE1r","form.button_delete":"T\xF6rl\xE9s","form.button_disable":"Disable","form.button_download":"Download","form.button_edit":"Szerkeszt\xE9s","form.button_enable":"Enable","form.button_hide":"Hide","form.button_lock":"Lock","form.button_more_info":"More Info","form.button_remove":"Remove","form.button_reset":"Reset","form.button_restore":"Helyre\xE1ll\xEDt\xE1s","form.button_save":"Ment\xE9s","form.button_show":"Show","form.button_unlock":"Unlock","form.button_unpair":"Unpair","form.label_invalid":"Config validation failed - you can still save your changes.","form.label_invalid_strict":"Config validation failed - please review the form before saving.","form.label_valid":"Config validation passed.","form.select.auto":"Automatic (Use Browser Settings)","login.button_login":"Bejelentkez\xE9s","login.invalid_credentials":"Hib\xE1s felhaszn\xE1l\xF3n\xE9v vagy jelsz\xF3","login.label_2fa_code":"Two Factor Authentication Code","login.label_password":"Jelsz\xF3","login.label_username":"Felhaszn\xE1l\xF3n\xE9v","login.message_invalid_2fa_code":"The code entered is incorrect or has expired.","logs.download.error":"Failed to download log file.","logs.download_warning":"Homebridge log files may contain personal information, passwords or access tokens. Please review the log file and remove any sensitive information before sharing with others.","logs.log_file_truncated":"Log file truncated.","logs.title_download_log_file":"Download Log File","logs.title_truncate_log_file":"Delete Logs","logs.truncate.error":"Failed to truncate log file.","logs.truncate_log_warning":"This action will irreversibly delete your existing Homebridge logs. Are you sure you want to continue?","menu.config_json_editor":"JSON Config","menu.docker.restart_container":"Kont\xE9ner \xFAjraind\xEDt\xE1sa","menu.docker.startup_script":"Startup Script","menu.docker.terminal":"Termin\xE1l","menu.hbrestart.confirm_hb":"Restart Homebridge","menu.hbrestart.confirm_ui":"Restart HB Service & UI","menu.hbrestart.title":"Restart Homebridge","menu.label_accessories":"Kieg\xE9sz\xEDt\u0151k","menu.label_plugins":"Pluginek","menu.label_settings":"Settings","menu.label_settings_advanced":"UI Advanced Settings","menu.label_status":"St\xE1tusz","menu.linux.label_logs":"Logs","menu.linux.label_restart_server":"Szerver \xFAjraind\xEDt\xE1sa","menu.linux.label_shutdown_server":"Szerver le\xE1ll\xEDt\xE1sa","menu.linux.label_terminal":"Termin\xE1l","menu.restart.title":"Power Options","menu.settings.title":"Settings","menu.tooltip_logout":"Kijelentkez\xE9s","menu.tooltip_restart":"\xDAjraind\xEDt\xE1s","menu.tooltip_user_accounts":"Felhaszn\xE1l\xF3i fi\xF3kok","menu.tooltip_view_logs":"Logok","platform.docker.container_restarted":"Docker Container Restarted","platform.docker.must_use_hashbang":"Script must use #!/bin/sh hashbang.","platform.docker.restart_required":"You will need to restart this docker container for the changes to take effect.","platform.docker.run_with_restart":"Make sure you're running the Docker container with <code>--restart=always</code>","platform.docker.script_help":"This script will be executed each time the docker container starts. You can use this to install any extra packages your plugins may need such as ffmpeg or libpcap-dev.","platform.docker.script_saved":"Startup Script elmentve","platform.docker.server_long_time":"Server restart is taking a long time. You may need to bring up the Docker container manually.","platform.docker.title_restarting":"Restarting Docker Container","platform.linux.long_time":"Server restart is taking a long time. You may need to bring up the server manually.","platform.linux.restart":"Please wait, this page will automatically redirect when the Homebridge is back online.","platform.linux.restarting_server":"Szerver \xFAjraindul","platform.linux.server_restart_error":"Valami probl\xE9ma t\xF6rt\xE9nt az \xFAjraint\xE1s utas\xEDt\xE1sa k\xF6zben","platform.linux.server_restarted":"Szerver \xFAjraind\xEDtva","platform.linux.server_taking_long_time":"A szervernek t\xFAl sok\xE1ig tart visszat\xE9rni online.","platform.linux.server_will_power_down":"A szerver hamarosan le\xE1ll.","platform.linux.shutting_down_server":"Szerver le\xE1ll\xEDt\xE1sa","platform.version.restart_required":"Homebridge UI v{{ uiVersion }} has been installed, but the server service is still running v{{ serverVersion }}.","platform.version.service_restart_required":"Restart Required","plugins.bridge.action_error":"Failed to {{ action }} child bridge(s).","plugins.button_homepage":"Plugin Homepage","plugins.button_set_up":"Set Up","plugins.button_settings":"Be\xE1ll\xEDt\xE1sok","plugins.button_uninstall":"Elt\xE1vol\xEDt\xE1s","plugins.button_update":"Friss\xEDt\xE9s (update)","plugins.compat.are_you_sure":"Are you sure you want to continue anyway?","plugins.compat.hb_node_too_low":"{{ packageName }} v{{ latestVersion }} requires Node.js v{{ minVersion }} or later. You are currently running Node.js {{ installedVersion }}.","plugins.compat.hb_too_low":"The {{ pluginName }} plugin recommends running on Homebridge v{{ minVersion }} or later. You are currently running Homebridge v{{ installedVersion }}.","plugins.compat.node_first":"Please upgrade Node.js before updating {{ packageName }}.","plugins.compat.node_link":"How To Update Node.js","plugins.compat.node_too_low":"The {{ pluginName }} plugin recommends running on Node.js v{{ minVersion }} or later. You are currently running Node.js {{ installedVersion }}.","plugins.compat.title":"Compatibility Check","plugins.config.load_error":"Failed to load plugin config.","plugins.config.must_be_array":"Plugin config must be an array.","plugins.config.must_be_array_objects":"Plugin config must be an array of objects.","plugins.config.must_be_object":"Config block must be an object.","plugins.config.name_property":'Accessory must have a valid "name" attribute',"plugins.config.please_fix":"Please fix validation errors before adding a new block.","plugins.config.remove_error":"Failed to remove plugin config.","plugins.disable.error":"Failed to disable plugin.","plugins.donate.button_not_verified":"Not Verified","plugins.donate.button_verified":"Ellen\u0151rz\xF6tt","plugins.donate.message_1":"As more users install their plugins through the Homebridge UI, they are less likely to visit the projects' GitHub page where the ways to support a developer would typically be displayed.","plugins.donate.message_2":"Adding donation links directly in the Homebridge UI ensures users know how to support Homebridge developers if they wish to do so.","plugins.donate.tile_donate_to":"Donate to {{ author }}","plugins.enable.error":"Failed to enable plugin.","plugins.manage.all_versions":"All versions","plugins.manage.child_bridge_restart":"Child bridge restarted successfully.","plugins.manage.child_bridge_restart_failed":"Plugin restart failed, please restart Homebridge manually.","plugins.manage.confirm_disable":"Are you sure you want to disable {{ pluginName }}?","plugins.manage.confirm_disable_accessory_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen and removed from HomeKit.","plugins.manage.confirm_disable_accessory_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and HomeKit. The accessories will lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_disable_platform_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen but remain in HomeKit with a 'No Response' label.","plugins.manage.confirm_disable_platform_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and become controllable again in HomeKit. The accessories will not lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_enable":"Are you sure you want to enable {{ pluginName }}?","plugins.manage.disable":"Disable","plugins.manage.enable":"Enable","plugins.manage.information":"Plugin Information","plugins.manage.install":"Telep\xEDt\xE9s","plugins.manage.installed":"Telep\xEDtve","plugins.manage.json_config":"JSON Config","plugins.manage.manage_version":"Manage Version","plugins.manage.manual_update_command":"To upgrade the package run open a Node.js command prompt as an Administrator and run the following commands:","plugins.manage.manual_update_required":"Manual Update Required","plugins.manage.online_updates":"Online updates are not supported on Windows. You will need to upgrade Homebridge UI manually after stopping the Homebridge service.","plugins.manage.plugin_logs":"Plugin Logs","plugins.manage.release_notes":"Release Notes","plugins.manage.scoped.error":"An error occurred. You can download the logs below.","plugins.manage.scoped.info":"For more information about scoped plugins and why to switch, see the wiki page {{ link }}.","plugins.manage.scoped.process":"This process will not affect your Homebridge/HomeKit accessories. You will not be able to cancel the process once it has started. It will:","plugins.manage.scoped.switch":"Switch To Scoped Plugin","plugins.manage.scoped.windows":"Online updates are not supported on Windows. You will need to install the new plugin and uninstall the old plugin manually.","plugins.manage.scoped.windows_service":'You should <span class="font-weight-bold">not</span> restart Homebridge until both steps are complete.',"plugins.manage.select_version":"Select the version to install","plugins.manage.thanks_for_updating":"K\xF6sz\xF6nj\xFCk, hogy telep\xEDtette a {{ pluginName }} legfrissebb verzi\xF3j\xE1t.","plugins.manage.uninstall":"Elt\xE1vol\xEDt\xE1s","plugins.manage.uninstalled":"Elt\xE1vol\xEDtva","plugins.manage.unverified_message":"Unverified Homebridge plugins indicate that they haven't undergone the review process by the Homebridge project team. Lack of verification does not necessarily imply inefficacy or safety concerns. Authors might have opted not to seek verification for various reasons.","plugins.manage.unverified_subtitle":"{{ pluginName }} is not verified","plugins.manage.unverified_title":"Unverified Plugins","plugins.manage.update":"Friss\xEDt\xE9s (update)","plugins.manage.updated":"Friss\xEDtve","plugins.manage.verified_message":"Homebridge plugins that are marked as verified have been reviewed by the Homebridge project team to ensure they meet various requirements that encourage best practices and a trouble-free user experience.","plugins.manage.verified_subtitle":"{{ pluginName }} is verified","plugins.manage.verified_title":"Verified Plugins","plugins.node_update.continue":"Continue","plugins.placeholder_search_first":"Use the search bar above to find your first plugin","plugins.placeholder_search_plugin":"Pluginek keres\xE9se\u2026","plugins.settings.custom.homebridge-gsh.label_account_linked":"Account Linked","plugins.settings.custom.homebridge-gsh.label_link_account":"Link Account","plugins.settings.custom.homebridge-gsh.label_unlink_account":"Unlink Account","plugins.settings.custom.homebridge-gsh.message_about":"The Homebridge Google Smart Home plugin allows you to control your Homebridge accessories from a Google Home enabled smart speaker or the Google Home mobile app.","plugins.settings.custom.homebridge-gsh.message_account_link_required":"To enable this functionality you must sign in with your Google or GitHub account; make sure you use the same account when adding the Homebridge action in the Google Home mobile app.","plugins.settings.custom.homebridge-gsh.message_homebridge_restart_required":"Homebridge requires restarting for the changes to take effect.","plugins.settings.custom.homebridge-gsh.message_invalid_token":"Invalid account linking token in config.json","plugins.settings.deconz.dump_no_exist":"Homebridge deCONZ dump file does not exist yet.","plugins.settings.hue.dump_no_exist":"Homebridge Hue dump file does not exist yet.","plugins.settings.label_open_config_editor":"Open Config Editor","plugins.settings.message_consult_documentation":"Please consult the plugin documentation for instructions on how to correctly configure this plugin.","plugins.settings.message_manual_config_required":"This plugin must be configured manually using the Homebridge UI Config Editor.","plugins.settings.plugin_config_saved":"Plugin be\xE1ll\xEDt\xE1sok mentve","plugins.settings.restart_required":"Ind\xEDtsa \xFAjra a Homebridge-t a be\xE1ll\xEDt\xE1sok alkalmaz\xE1s\xE1hoz.","plugins.settings.title_settings":"Be\xE1ll\xEDt\xE1sok","plugins.status_disabled":"Disabled","plugins.status_installed":"Telep\xEDtve","plugins.toast_failed_to_load_plugin_schema":"Failed to load plugin config schema.","plugins.toast_failed_to_load_plugins":"Nem siker\xFClt bet\xF6lteni a plugineket","plugins.uninstall_bridge_error":"Failed to remove child bridge.","plugins.uninstall_remove_config_required":"If you are permanently removing this plugin, make sure you remove any config for this plugin in the config.json before restarting Homebridge.","plugins.uninstall_remove_confirmation":"Are you sure you want to uninstall {{ pluginName }}?","plugins.uninstall_remove_plugin_config":"Remove plugin config?","plugins.uninstall_unpair_child_bridge":"Unpair plugin child bridge?","plugins.uninstall_unpair_child_bridges":"Unpair {{ count }} plugin child bridges?","reset.accessory_reset":"Homebridge Kieg\xE9sz\xEDt\u0151 resetel\xE9se","reset.action_is_irreversible":"Ez a m\xE1velet visszavonhatatlan. Figyelmesen olvassa el, miel\u0151tt megtenn\xE9.","reset.bridges.desc":"If you are having trouble pairing Homebridge, an external accessory or a child bridge to HomeKit, you may need to unpair it from HomeKit to start again.","reset.bridges.empty":"You have no bridges to unpair from HomeKit.","reset.bridges.title":"Bridges","reset.bridges_all.desc":"Unpair all bridges from HomeKit. This includes the main Homebridge bridge, child bridges and bridges for external accessories.","reset.bridges_all.list_1":"This will unpair the Homebridge bridge, all child bridges and bridges for external accessories from HomeKit.","reset.bridges_all.list_2":"Note that your accessories will continue to show in HomeKit as no response, until the bridges are manually removed from HomeKit. You can do this in the Home app, by accessing Home Settings \u2192 Home Hubs & Bridges \u2192 {Bridge} \u2192 Remove Bridge from Home.","reset.bridges_all.list_3":"All your Homebridge to HomeKit accessories, scenes and automations will need to be reconfigured after the unpairing.","reset.bridges_all.list_4":"The pin for pairing your Homebridge bridge to HomeKit will be changed. You can see the new values in your Homebridge config after the unpairing.","reset.bridges_all.title":"Unpair All Bridges","reset.bridges_single.desc":"Unpair a single bridge from HomeKit. This may be a child bridge or a bridge for an external accessory like a camera or TV.","reset.bridges_single.list_1":"When unpairing a bridge, any accessories published by this bridge will be removed from the Homebridge cache.","reset.bridges_single.list_2":"The accessories will become stale in HomeKit (showing no response). To remove them, you will need to manually remove this bridge from HomeKit. You can do this in the Home app from the Home Settings section.","reset.bridges_single.list_3":"You can then attempt to pair the bridge again if required.","reset.bridges_single.title":"Unpair Single Bridge","reset.cached_accessory_removed":"Cached accessory removed.","reset.clear_cache_all.desc":"Remove all accessories from the cache.","reset.clear_cache_all.list_1":"When clicking on the remove button below, Homebridge will restart and all your existing accessories will be removed from Homebridge and HomeKit.","reset.clear_cache_all.list_2":"All associated HomeKit data will also be removed, this includes room associations, scenes and automations that this accessory uses.","reset.clear_cache_all.list_3":"After Homebridge restarts, your plugins will re-add any accessories as if the plugin was being installed for the first time.","reset.clear_cache_all.title":"Remove All Accessories","reset.clear_cache_bridge.desc":"Remove all accessories published by a bridge from the cache.","reset.clear_cache_bridge.empty":"You have no bridges from which to remove accessories.","reset.clear_cache_bridge.list_1":"This function can be used to reset a plugin's existing accessories in HomeKit. They will be removed from Homebridge/HomeKit and then re-added by the plugin as new accessories.","reset.clear_cache_bridge.list_2":"The child bridge's pairing details and status will remain the same.","reset.clear_cache_bridge.title":"Remove Bridge Accessories","reset.clear_cache_single.desc":"Remove a single accessory from the cache.","reset.clear_cache_single.list_1":"Some plugins don't clean up after themselves properly! If an accessory that you no longer have in Homebridge is still being displayed in HomeKit, you can remove it from the cache.","reset.clear_cache_single.list_2":"This function can be used to reset an existing accessory in HomeKit. It will be removed from Homebridge/HomeKit and then re-added by the plugin as a new accessory.","reset.clear_cache_single.list_3":"When removing an accessory from the cache, all its associated HomeKit data will be removed. This includes any associated scenes and automations that use this accessory.","reset.clear_cache_single.list_4":"Accessories can only be removed when Homebridge is not running. Homebridge will automatically restart when clicking on each of the remove buttons below. If you need to remove multiple accessories, please be patient and allow Homebridge to restart between each removal.","reset.clear_cache_single.title":"Remove Single Accessory","reset.delete_failed":"Failed to delete accessory.","reset.delete_success":"Restarting Homebridge and clearing accessory cache.","reset.error_message":"Accessory cache could not be loaded. You may not have any cached accessories.","reset.failed_to_reset":"Nem siker\xFClt resetelni a Homebridge-t. Logok megtekint\xE9se.","reset.force_restart_hb_help_text":"Use this action to force the hb-service service to do a full restart.","reset.remove_cached_accessories_single_empty":"You have no cached accessories to remove.","reset.removing_cached_accessory_please_wait":"Removing accessory from cache, please wait\u2026","restart.child_bridge_list":"Please restart these child bridges for the changes to apply:","restart.child_bridges":"Please restart the plugin's child bridges for the changes to apply.","restart.homebridge":"Please restart Homebridge for the changes to apply.","restart.label_restart_command_executed":"\xDAjraind\xEDt\xE1s k\xE9relem kik\xFCldve","restart.please_wait_while_server_restarts":"K\xE9rj\xFCk v\xE1rjon, ez az oldal automatikusan friss\xFCl, amint visszat\xE9r a szerver.","restart.server_is_taking_long_time_to_restart":"T\xFAl sok\xE1ig tart a szerver \xFAjraind\xEDt\xE1sa. K\xE9zi m\xF3don kellene a Homebridge szervizt \xFAjraind\xEDtani","restart.service_ready":"Homebridge Server Ready","restart.title_restart":"Homebridge \xFAjraind\xEDt\xE1sa","restart.toast_server_restart_error":"Valami probl\xE9ma t\xF6rt\xE9nt az \xFAjraint\xE1s utas\xEDt\xE1sa k\xF6zben","restart.toast_server_restart_timeout":"A szerver nehezen indul \xFAjra","restart.toast_server_restarted":"Szerver \xFAjraind\xEDtva","restart.ui_online":"Homebridge UI Online","rpi.throttled.currently_message":"This Raspberry Pi is reporting it is currently under-voltage; please check it is connected to an appropriate power supply. Under-voltage can result in system instability and SD card corruption.","rpi.throttled.previously_message":"This Raspberry Pi has reported an under-voltage event since it was last rebooted; please check it is connected to an appropriate power supply.","rpi.throttled.undervoltage_title":"Under Voltage","settings.cache.desc":"Homebridge maintains accessories in cache so they aren't removed and re-added to HomeKit each time Homebridge restarts. Sometimes this cache can become out of sync with the actual accessories in Homebridge.","settings.cache.title":"Accessories","settings.changes.saved":"Your changes have been saved and require a restart to take effect.","settings.datetime.incorrect":"The date and time on your Homebridge server seem to be incorrect. This may cause unexpected issues. Click here for more information.","settings.display.blue":"Blue","settings.display.bluegrey":"Blue Grey","settings.display.brown":"Brown","settings.display.cyan":"Cyan","settings.display.dark":"Dark","settings.display.deep_purple":"Deep Purple","settings.display.green":"Green","settings.display.grey":"Grey","settings.display.indigo":"Indigo","settings.display.lang":"Language","settings.display.light":"Light","settings.display.lighting_mode":"Lighting Mode","settings.display.login_wallpaper":"Login Wallpaper","settings.display.login_wallpaper_desc":"A custom login wallpaper can be set by adding a <code>ui-wallpaper.jpg</code> file to your Homebridge storage directory, or by providing a full path to a local image file here.","settings.display.orange":"Orange","settings.display.pink":"Pink","settings.display.purple":"Purple","settings.display.red":"Red","settings.display.teal":"Teal","settings.display.temp_units":"Temperature Units","settings.display.temp_units.c":"Celsius (\xB0C)","settings.display.temp_units.f":"Fahrenheit (\xB0F)","settings.display.theme":"Theme","settings.general.title_display":"Display","settings.general.title_general":"General","settings.mdns_advertiser":"mDNS Advertiser","settings.mdns_advertiser_exp":"experimental","settings.mdns_advertiser_help":"If you have trouble connecting Homebridge to HomeKit (all accessories showing 'No Response' in the Home app), try using one of the alternate mDNS advertisers.","settings.mdns_advertiser_not_connected":"Not Connected","settings.mdns_advertiser_rec":"recommended","settings.network.label_interface_name":"Interface Name","settings.network.label_ip_address":"IP Address","settings.network.message_network_interface":"If no network interfaces are selected, Homebridge will attempt to automatically determine which interfaces to advertise.","settings.network.port_hb":"Homebridge Port","settings.network.port_hb_desc":"The port number to run the Homebridge bridge on. This must be between 1025 and 65533, and should not be the same as the Homebridge UI port.","settings.network.port_ui":"UI Port","settings.network.port_ui_desc":"The port number to run the Homebridge UI on.","settings.network.title_network":"Network","settings.network.title_network_interfaces":"Network Interfaces","settings.service.debug_tooltip":"Some plugins require you to set the DEBUG environment variable to enable debug level logging.","settings.service.node_tooltip":"Node.js runtime options for this process. This should be kept blank unless you know what you are doing.","settings.startup.debug":"Homebridge Debug Mode","settings.startup.debug_desc_v1":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge as well as all child bridges. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.debug_desc_v2":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge. The setting for child bridges can be found in the child bridge configuration from the plugins page. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.insecure":"Homebridge 'Insecure' Mode","settings.startup.insecure_desc":"To control your accessories via the Homebridge UI you must be running Homebridge in insecure mode.","settings.startup.keep_accessories":"Keep Accessories Of Uninstalled Plugins","settings.startup.keep_accessories_desc":"If enabled, accessories of platform plugins will remain in the cache even after the plugin is uninstalled. This can be useful if you plan to reinstall the plugin later.","settings.title_startup_options":"Startup & Environment Options","settings.unpair_bridge.load_error":"Paired bridges could not be loaded.","settings.unpair_bridge.unpair_error":"Failed to unpair bridge.","setup.button_get_started":"Get Started","setup.create_account":"Create Account","setup.create_account_reason":"Password authentication to your Homebridge admin web interface must be configured. Even if Homebridge is accessible only in your local network, it is still important to protect it from unrestricted access.","setup.open_dashboard":"Open Dashboard","setup.welcome_to_homebridge":"Welcome to Homebridge",setup_wizard_message_complete_message:"The setup procedure is complete and you're now ready to start using Homebridge.",setup_wizard_message_complete_title:"Congratulations!",setup_wizard_message_restore:"Restore From Backup","status.code_scan":"Szkennelje be, hogy hozz\xE1adja a HomeKit","status.cpu.load":"Terhel\xE9s","status.cpu.temp":"H\u0151m\xE9rs\xE9klet","status.cpu.title_cpu":"CPU","status.credits.title":"Credits","status.homebridge.checking":"Friss\xEDt\xE9sek keres\xE9se\u2026","status.homebridge.up_to_date":"Legfrissebb","status.memory.label_available":"Szabad","status.memory.label_total":"\xD6sszesen","status.memory.title_memory":"Mem\xF3ria","status.network.received_per_second":"Received","status.network.sent_per_second":"Sent","status.network.title_network":"Network Activity","status.plugin_out_of_date":"A b\u0151v\xEDtm\xE9nyek elavultak","status.plugins_out_of_date":"A b\u0151v\xEDtm\xE9nyek elavultak","status.services.label_not_running":"Nem fut","status.services.label_running":"Fut\xF3","status.services.updates":"Update Centre","status.uptime.title_uptime":"M\xFCk\xF6d\xE9si id\u0151","status.widget.accessories.choose_accessories":"Choose the accessories to display in this widget from the Accessories tab.","status.widget.add.label_pairing_code":"Pairing Code","status.widget.bridge.restart_error":"Failed to restart child bridge.","status.widget.clock":"Clock","status.widget.clock_dateformat":"Date Format","status.widget.clock_timeformat":"Time Format","status.widget.font_size":"Font Size","status.widget.font_weight":"Font Weight","status.widget.hide_on_mobile":"Hide in compact view (mobile displays)","status.widget.homebridge_logs":"Homebridge Logs","status.widget.info":"System Information","status.widget.info.config_path":"Config Path","status.widget.info.disabled":"Disabled","status.widget.info.docker":"Docker","status.widget.info.glibc_message":"This message indicates that your operating system does not support newer versions of Node.js. To resolve this and be able to install updated versions of Node.js in the future, you will need to update your operating system to a more recent version.","status.widget.info.glibc_title":"OS Update","status.widget.info.hostname":"Hostname","status.widget.info.ipv4":"IPv4","status.widget.info.ipv6":"IPv6","status.widget.info.no":"No","status.widget.info.node_unsupp":"Unsupported","status.widget.info.node_unsupp_message":"You are running a version of Node.js that is not officially supported by Homebridge. You should consider changing to a supported version.","status.widget.info.node_unsupp_title":"Unsupported Node Version","status.widget.info.node_update_message":"Homebridge requires Node.js installed on your system to run. From time to time, you will need to update the Node.js runtime to enable support for new features. Homebridge (and verified plugins) support all current Active and Maintenance LTS releases of Node.js.","status.widget.info.node_update_title":"Node Update","status.widget.info.nodejs_path":"Node.js Path","status.widget.info.nodejs_version":"Node.js Version","status.widget.info.os":"OS","status.widget.info.plugin_path":"Plugin Path","status.widget.info.service_mode":"Service Mode","status.widget.info.service_user":"User","status.widget.info.servicemode_message":"Standalone mode is no longer recommended. Setting up Homebridge and Homebridge UI with hb-service has the same benefits of standalone mode but is much easier to setup and maintain.","status.widget.info.servicemode_title":"Service Mode","status.widget.info.storage_path":"Storage Path","status.widget.info.synology_package":"Synology Package","status.widget.info.timezone":"Timezone","status.widget.info.yes":"Yes","status.widget.network.history_items":"History Items","status.widget.network.items":"items","status.widget.network.network_interface":"Network Interface","status.widget.network.none_selected":"None selected in settings - using default.","status.widget.network.refresh_interval":"Refresh Interval","status.widget.network.refresh_note":"Refresh the page after saving for changes to take effect.","status.widget.network.seconds":"seconds","status.widget.qr_paired":"Paired","status.widget.qr_unpaired":"Not Paired","status.widget.show_hide":"Show/Hide Widgets","status.widget.title_manage_widget":"Manage Widget","status.widget.uptime.label_process":"Process","status.widget.uptime.label_server":"Server","status.widget.weather.label_config_required_help":"Please select your city in the widget settings.","status.widget.weather.label_search_for_your_city":"Search for your city:","status.widget.weather.title_weather":"Weather","support.dev.api":"Homebridge API","support.dev.api_hap":"HAP-NodeJS API","support.dev.api_hap_sub":"HAP-NodeJS is an implementation of the HomeKit Accessory Server as specified in the HomeKit Accessory Protocol (HAP), which is defined by Apple as part of the HomeKit Framework.","support.dev.api_sub":"Homebridge is a lightweight Node.js server you can run on your home network to emulate the HomeKit Accessory Protocol (HAP).","support.dev.item_swagger":"Swagger Docs","support.dev.item_swagger_sub":"The Homebridge REST API allows you to interact with your Homebridge server using HTTP requests.","support.dev.template":"Plugin Template Repo","support.dev.template_sub":"A template Homebridge plugin that can be used as a base to help you get started developing your own plugin.","support.dev.title":"Developers","support.dev.verified":"Verified By Homebridge","support.dev.verified_sub":"The Verified By Homebridge program allows plugin developers to get their plugins reviewed and endorsed by the Homebridge project team.","support.links.discord":"Discord Server","support.links.discord_sub":"Join the Homebridge Discord chat server to chat with other users and developers.","support.links.documentation":"Documentation","support.links.documentation_sub":"The Homebridge documentation provides a wealth of information on how to get started with Homebridge and common issue resolutions.","support.links.issue":"Report An Issue","support.links.issue_sub":"If you are experiencing an issue with Homebridge, please open a new issue on GitHub. This should not be used for issues with specific plugins.","support.links.reddit":"Reddit Community","support.links.reddit_sub":"The Homebridge subreddit is a great place to share your Homebridge setup and ask for help.","support.links.title":"Useful Links","support.title":"Support","toast.no_auth":"Only administrators may access the requested page.","toast.title_error":"Hiba","toast.title_success":"Siker","toast.title_warning":"Figyelmeztet\xE9s","users.button_add_new_user":"\xDAj felhaszn\xE1l\xF3 hozz\xE1ad\xE1sa","users.button_add_user":"Felhaszn\xE1l\xF3 hozz\xE1ad\xE1sa","users.label_admin_user":"Adminisztr\xE1tor?","users.label_confirm_password":"Jelsz\xF3 meger\u0151s\xEDt\xE9se","users.label_full_name":"Teljes n\xE9v","users.label_new_password":"\xDAj jelsz\xF3","users.label_password":"Jelsz\xF3","users.label_username":"Felhaszn\xE1l\xF3n\xE9v","users.setup_2fa":"Setup 2FA","users.setup_2fa_activate_error":"An error occurred activating 2FA","users.setup_2fa_cannot_setup_2fa":"Cannot Setup 2FA","users.setup_2fa_disable":"Disable 2FA","users.setup_2fa_disable_current_password":"Enter your current password to disable two factor authentication:","users.setup_2fa_disable_success":"Two factor authentication has been disabled.","users.setup_2fa_enable":"Enable 2FA","users.setup_2fa_enable_error":"An error occurred setting up 2FA","users.setup_2fa_enabled_success":"Two factor authentication has been enabled.","users.setup_2fa_enter_code":"Enter the code from your authenticator app:","users.setup_2fa_scan_qr_code":"Scan the QR code below with your authenticator app:","users.setup_2fa_server_time_out":"Your server's clock is out by {{ timeDiffError }} ms. The maximum allowed is +/-5000 ms.","users.setup_2fa_warning":"Two Factor Authentication requires your Homebridge server to have a very accurate date and time to login. If your server does not have the ability to keep time accurately you should not enable 2FA or risk being locked out of the Homebridge UI.","users.title_add_user":"Felhaszn\xE1l\xF3 hozz\xE1ad\xE1sa","users.title_edit_user":"Felhaszn\xE1l\xF3 szerkeszt\xE9se","users.title_users":"Felhaszn\xE1l\xF3k","users.toast_added_new_user":"Felhaszn\xE1l\xF3 hozz\xE1adva","users.toast_failed_to_add_user":"Probl\xE9ma hozz\xE1ad\xE1skor","users.toast_failed_to_delete_user":"Probl\xE9ma t\xF6rl\xE9skor","users.toast_updated_user":"Felhaszn\xE1l\xF3 friss\xEDtve","users.toast_user_deleted":"Felhaszn\xE1l\xF3 t\xF6r\xF6lve"}});var Us=y((Cd,ma)=>{ma.exports={"accessories.button_add_room":"Tambah Ruangan","accessories.button_hidden_hide":"Hide Hidden","accessories.button_hidden_show":"Show Hidden","accessories.control.auto":"Otomatis","accessories.control.away":"Tidak di tempat","accessories.control.battery_charging":"Pengisian Daya","accessories.control.battery_notchargeable":"Tidak Bisa Melakukan Pengisian Daya","accessories.control.battery_notcharging":"Tidak Melakukan Pengisian Daya","accessories.control.brightness":"Kecerahan","accessories.control.closed":"Tutup","accessories.control.closing":"Penutupan","accessories.control.cool":"Dingin","accessories.control.default_room":"Ruangan Standar","accessories.control.default_running_time":"Waktu Berjalan Bawaan","accessories.control.dehumidifying":"Hilangkan Kelembaban","accessories.control.detected":"Detected","accessories.control.drag_here":"Seret Ke sini","accessories.control.fan":"Kipas","accessories.control.heat":"Panas","accessories.control.home":"Rumah","accessories.control.humidifying":"Pelembaban","accessories.control.jammed":"Tersendat","accessories.control.light":"Cahaya","accessories.control.locked":"Terkunci","accessories.control.mute":"Bisu","accessories.control.night":"Malam","accessories.control.not_detected":"Not Detected","accessories.control.not_mute":"Hidup","accessories.control.off":"Mati","accessories.control.on":"Hidup","accessories.control.open":"Buka","accessories.control.opening":"Membuka","accessories.control.rotation_speed":"Kecepatan Rotasi","accessories.control.running":"Berjalan","accessories.control.speaker_volume":"Volume","accessories.control.stopped":"Terhenti","accessories.control.target":"Target","accessories.control.target_humidity":"Target Kelembaban","accessories.control.target_temperature":"Target Suhu","accessories.control.triggered":"Terpicu","accessories.control.unknown":"Tidak Dikenal","accessories.control.unlocked":"Tidak Dikunci","accessories.control_disabled":"Homebridge Kontrol Aksesoris Dinonaktifkan","accessories.hide_this_accessory":"Sembunyikan aksesoris ini","accessories.message_for_more_information":"untuk informasi lebih lanjut.","accessories.message_must_use_insecure_mode":"Untuk mengontrol aksesoris anda, anda harus menjalankan Homebridge dalam mode tidak aman.","accessories.message_please_see":"Tolong lihat","accessories.name":"Nama","accessories.room_name":"Nama Ruangan","accessories.rooms_not_appear_in_homekit":"Ruangan yang anda buat di sini tidak akan muncul di HomeKit, hanya untuk pengaturan aksesoris di Homebridge UI.","accessories.settings_link":"You can access the Homebridge Settings at any time from the cog icon in the side menu.","accessories.show_on_dashboard":"Tampilkan di widget dasbor","accessories.title_accessories":"Aksesoris","backup.backup_delete_failed":"Backup deletion failed. See logs for details.","backup.backup_download_failed":"Gagal Mengunduh Cadangan","backup.backup_exceeds_max_size":"Backup ({{ backupSize }}) exceeds maximum restore file size of {{ maxBackupSizeText }}","backup.backup_help_one":"Unduh arsip cadangan dari keseluruhan lingkunan Homebirdge anda. Proses ini akan mencadangkan seluruh konten dari direktori Homebridge anda yang nantinya dapat anda pulihkan pada platform lainnya yang mampu menjalankan Homebridge UI.","backup.backup_help_two":"Plugin tidak di host di npm, atau plugin yang dipasang langsung dari GitHub tidak akan dicadangkan atau dikembalikan.","backup.backup_restored":"Arsip Cadangan Dipulihkan","backup.backup_warning":"Arsip cadangan berisikan informasi sensitif dan sebaiknya tidak dibagikan kepada orang lain.","backup.button_restore_backup":"Pulihkan Cadangan","backup.label_choose_backup_file_to_restore":"Pilih berkas cadangan untuk dipulihkan\u2026","backup.label_uploading":"Mengunggah\u2026","backup.load_error":"Failed to load config backup.","backup.now":"Now","backup.restore_failed":"Pemulihan Gagal","backup.restore_help_one":"Pulihkan arsip cadangan yang sebelumnya dibuat menggunakan Homebridge UI. Konfigurasi Homebridge Anda, aksesoris yang di-cache, pasangan HomeKit dan akun pengguna Homebridge UI akan dipulihkan. Setiap plugin Homebridge yang telah Anda instal juga akan diunduh dari registri npm.","backup.restore_help_two":"Anda harus masuk ke Homebridge UI setelah melakukan pemulihan menggunakan kredensial dari instance yang dipulihkan.","backup.restore_max_size":"You can restore a backup archive up to {{ maxBackupSizeText }} in size.","backup.restore_warning":"Mengembalikan dari cadangan akan menimpa konfigurasi Homebridge saat ini dan tidak dapat dikembalikan.","backup.scheduled_backup_time":"Cadangan menyeluruh dari Homebridge dibuat secara otomatis setiap hari pada jam {{ backupTime }} dan akan disimpan selama {{ dayCount }} hari.","backup.title_backup":"Cadangan","child_bridge.about":"Homebridge memungkinkan Anda menjalankan platform plugin atau aksesori sebagai jembatan Anak Bridge yang terisolasi. Ini dapat meningkatkan daya tanggap dan keandalan Homebridge secara umum.","child_bridge.bridge_connect":"Connect to HomeKit","child_bridge.bridge_settings":"Pengaturan Bridge","child_bridge.bridges":"HomeKit Bridges","child_bridge.bridges_paired":"Setiap platform atau aksesori Anak Bridge perlu dipasangkan dengan HomeKit secara terpisah.","child_bridge.config.debug":"Debug Mode","child_bridge.config.description":"These fields are not required, but can be used to override the HomeKit configuration for this bridge.","child_bridge.config.firmware":"Firmware Version","child_bridge.config.header":"Configuration","child_bridge.config.manufacturer":"Manufacturer","child_bridge.config.model":"Model","child_bridge.config.name":"Name","child_bridge.must_configure_plugin":"Anda perlu mengkonfigurasi plugin ini sebelum Anda dapat mengelola pengaturan bridge-nya.","child_bridge.reset_accessories":"Reset Accessories","child_bridge.reset_accessories_list":"Choose from which child bridges you want to reset the accessories below:","child_bridge.restart":"Restart Child Bridges","child_bridge.restart_homebridge":"Mulai ulang Homebridge untuk menyelesaikan penyiapan Anak Bridge ini.","child_bridge.restart_plural":"Restart Child Bridges","child_bridge.return_to_pair":"Kembali ke layar ini setelah Homebridge dimulai ulang untuk melihat kode QR.","child_bridge.select_type":"Pilih platform atau aksesori mana yang ingin Anda jalankan sebagai Anak Bridge","child_bridge.setup":"Set Up Child Bridge","child_bridge.start":"Start Child Bridge","child_bridge.start_plural":"Start Child Bridges","child_bridge.stop":"Stop Child Bridge","child_bridge.stop_plural":"Stop Child Bridges","child_bridge.wiki_link":"Pelajari lebih lanjut tentang Anak Bridge","config.config_accessory_must_be_array":"Aksesoris harus berupa array []","config.config_bridge_missing":"Pengaturan Bridge yang Hilang","config.config_invalid_json":"Konfigurasi berisi JSON yang tidak valid","config.config_platform_must_be_array":"platform harus berupa array []","config.config_username_error":"Nama pengguna Bridge harus terdiri dari 6 pasang karakter heksadesimal yang dipisahkan oleh titik dua (A-F 0-9)","config.error_blocks_objects":"All {{ type }} blocks must be objects.","config.error_blocks_type":"All {{ type }} blocks must contain the {{ type }} attribute.","config.error_string_array":"Each item in the {{ key }} array must be a string.","config.error_string_type":"The {{ type }} attribute must be a string.","config.failed_to_save_config":"Gagal menyimpan konfigurasi","config.restore.confirm":"Klik Simpan untuk mengonfirmasi bahwa Anda ingin memulihkan cadangan ini.","config.restore.copy_to_editor":"Salin ke Editor","config.restore.no_backups":"Tidak Ada Cadangan","config.restore.title_restore_homebridge_backup":"Pulihkan Konfigurasi Cadangan Homebridge","config.restore.toast_backups_deleted":"Semua Cadangan Dihapus","config.title_backup_loaded":"Cadangan Dimuat","form.button_cancel":"Batal","form.button_close":"Tutup","form.button_delete":"Hapus","form.button_disable":"Disable","form.button_download":"Unduh","form.button_edit":"Ubah","form.button_enable":"Enable","form.button_hide":"Hide","form.button_lock":"Lock","form.button_more_info":"More Info","form.button_remove":"Remove","form.button_reset":"Reset","form.button_restore":"Pulihkan","form.button_save":"Simpan","form.button_show":"Show","form.button_unlock":"Unlock","form.button_unpair":"Unpair","form.label_invalid":"Config validation failed - you can still save your changes.","form.label_invalid_strict":"Config validation failed - please review the form before saving.","form.label_valid":"Config validation passed.","form.select.auto":"Automatic (Use Browser Settings)","login.button_login":"Masuk","login.invalid_credentials":"Nama Pengguna dan Kata Sandi Salah","login.label_2fa_code":"Kode Otentikasi Dua Faktor (2FA)","login.label_password":"Kata Sandi","login.label_username":"Nama Pengguna","login.message_invalid_2fa_code":"Kode yang dimasukkan salah atau telah kedaluwarsa.","logs.download.error":"Failed to download log file.","logs.download_warning":"Berkas catatan berkas log Homebridge mungkin mengandung informasi personal, password atau token akses. Harap review berkas catatan dan hapus informasi sensitif sebelum dibagikan.","logs.log_file_truncated":"Berkas catatan terpotong.","logs.title_download_log_file":"Unduh Berkas Catatan","logs.title_truncate_log_file":"Potong Berkas Catatan","logs.truncate.error":"Failed to truncate log file.","logs.truncate_log_warning":"Aksi ini akan menghapus catatan Homebridge secara permanen. Apakah anda yakin yakin ingin melanjutkan?","menu.config_json_editor":"JSON Config","menu.docker.restart_container":"Memulai Kembali Kontainer","menu.docker.startup_script":"Skrip Startup","menu.docker.terminal":"Terminal","menu.hbrestart.confirm_hb":"Restart Homebridge","menu.hbrestart.confirm_ui":"Restart HB Service & UI","menu.hbrestart.title":"Restart Homebridge","menu.label_accessories":"Aksesoris","menu.label_plugins":"Plugin","menu.label_settings":"Settings","menu.label_settings_advanced":"UI Advanced Settings","menu.label_status":"Status","menu.linux.label_logs":"Logs","menu.linux.label_restart_server":"Mengulang Kembali Server","menu.linux.label_shutdown_server":"Mematikan Server","menu.linux.label_terminal":"Terminal","menu.restart.title":"Power Options","menu.settings.title":"Settings","menu.tooltip_logout":"Keluar","menu.tooltip_restart":"Mengulang Kembali","menu.tooltip_user_accounts":"Akun Pengguna","menu.tooltip_view_logs":"Lihat catatan","platform.docker.container_restarted":"Kontainer Docker Dimuat Ulang","platform.docker.must_use_hashbang":"Skrip harus menggunakan #!/bin/sh hashbang.","platform.docker.restart_required":"Anda harus mengulang kembali Kontainer Docker ini agar perubahan diterapkan.","platform.docker.run_with_restart":"Pastikan Anda menjalankan Kontainer Docker dengan parameter <code>--restart=always</code>","platform.docker.script_help":"Skrip ini akan dieksekusi setiap saat docker container mulai. Anda dapat menggunakan proses ini untuk menginstal paket tambahan yang dibutuhkan plugin anda seperti ffmpeg atau libpcap-dev.","platform.docker.script_saved":"Skrip Mengulang Tersimpan","platform.docker.server_long_time":"Mengulang kembali server membutuhkan waktu lebih lama. Anda mungkin perlu menjalankan Kontainer Docker secara manual.","platform.docker.title_restarting":"Mengulang Kembali Kontainer Docker","platform.linux.long_time":"Proses mengulang kembali server sudah terjadi terlalu lama. Anda mungkin perlu menghidupkan server cadangan secara manual.","platform.linux.restart":"Harap tunggu, halaman ini akan dialihkan secara otomatis ketika Homebridge kembali online.","platform.linux.restarting_server":"Mengulang Kembali Server","platform.linux.server_restart_error":"Terjadi kesalahan saat mengirim perintah restart ke server","platform.linux.server_restarted":"Server Telah Dimulai Kembali","platform.linux.server_taking_long_time":"Server membutuhkan waktu lebih lama untuk kembali online","platform.linux.server_will_power_down":"Server akan segera dimatikan.","platform.linux.shutting_down_server":"Mematikan Server","platform.version.restart_required":"Homebridge UI v{{ uiVersion }} telah dipasang, namun server masih menjalankan v{{ serverVersion }}.","platform.version.service_restart_required":"Mengulang Kembali Layanan Diperlukan","plugins.bridge.action_error":"Failed to {{ action }} child bridge(s).","plugins.button_homepage":"Plugin Homepage","plugins.button_set_up":"Set Up","plugins.button_settings":"Pengaturan","plugins.button_uninstall":"Copot","plugins.button_update":"Pembaruan","plugins.compat.are_you_sure":"Are you sure you want to continue anyway?","plugins.compat.hb_node_too_low":"{{ packageName }} v{{ latestVersion }} membutuhkan Node.js v{{ minVersion }} atau lebih baru. Saat ini anda menjalankan Node.js {{ installedVersion }}.","plugins.compat.hb_too_low":"Plugin {{ pluginName }} merekomendasikan Homebridge v{{ minVersion }} atau lebih baru. Saat ini anda menjalankan Homebridge v{{ installedVersion }}.","plugins.compat.node_first":"Harap tingkatkan Node.js sebelum memperbaharui {{ packageName }}.","plugins.compat.node_link":"How To Update Node.js","plugins.compat.node_too_low":"Plugin {{ pluginName }} merekomendasikan Node.js v{{ minVersion }} atau lebih baru. Saat ini anda menjalankan Node.js {{ installedVersion }}.","plugins.compat.title":"Compatibility Check","plugins.config.load_error":"Failed to load plugin config.","plugins.config.must_be_array":"Plugin config must be an array.","plugins.config.must_be_array_objects":"Plugin config must be an array of objects.","plugins.config.must_be_object":"Config block must be an object.","plugins.config.name_property":'Accessory must have a valid "name" attribute',"plugins.config.please_fix":"Please fix validation errors before adding a new block.","plugins.config.remove_error":"Failed to remove plugin config.","plugins.disable.error":"Failed to disable plugin.","plugins.donate.button_not_verified":"Not Verified","plugins.donate.button_verified":"Diverifikasi","plugins.donate.message_1":"As more users install their plugins through the Homebridge UI, they are less likely to visit the projects' GitHub page where the ways to support a developer would typically be displayed.","plugins.donate.message_2":"Adding donation links directly in the Homebridge UI ensures users know how to support Homebridge developers if they wish to do so.","plugins.donate.tile_donate_to":"Donasi ke {{ author }}","plugins.enable.error":"Failed to enable plugin.","plugins.manage.all_versions":"All versions","plugins.manage.child_bridge_restart":"Child bridge restarted successfully.","plugins.manage.child_bridge_restart_failed":"Plugin restart failed, please restart Homebridge manually.","plugins.manage.confirm_disable":"Are you sure you want to disable {{ pluginName }}?","plugins.manage.confirm_disable_accessory_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen and removed from HomeKit.","plugins.manage.confirm_disable_accessory_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and HomeKit. The accessories will lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_disable_platform_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen but remain in HomeKit with a 'No Response' label.","plugins.manage.confirm_disable_platform_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and become controllable again in HomeKit. The accessories will not lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_enable":"Apakah Anda yakin ingin mengaktifkan {{ pluginName }}?","plugins.manage.disable":"Nonaktifkan","plugins.manage.enable":"Aktifkan","plugins.manage.information":"Plugin Information","plugins.manage.install":"Pasang","plugins.manage.installed":"Terpasang","plugins.manage.json_config":"Konfigurasi JSON","plugins.manage.manage_version":"Pasang Versi Sebelumnya","plugins.manage.manual_update_command":"To upgrade the package run open a Node.js command prompt as an Administrator and run the following commands:","plugins.manage.manual_update_required":"Diperlukan Pembaruan Secara Manual","plugins.manage.online_updates":"Pembaruan online tidak didukung di Windows. Anda perlu memutakhirkan Homebridge UI secara manual setelah menghentikan layanan Homebridge.","plugins.manage.plugin_logs":"Plugin Logs","plugins.manage.release_notes":"Release Notes","plugins.manage.scoped.error":"An error occurred. You can download the logs below.","plugins.manage.scoped.info":"For more information about scoped plugins and why to switch, see the wiki page {{ link }}.","plugins.manage.scoped.process":"This process will not affect your Homebridge/HomeKit accessories. You will not be able to cancel the process once it has started. It will:","plugins.manage.scoped.switch":"Switch To Scoped Plugin","plugins.manage.scoped.windows":"Online updates are not supported on Windows. You will need to install the new plugin and uninstall the old plugin manually.","plugins.manage.scoped.windows_service":'You should <span class="font-weight-bold">not</span> restart Homebridge until both steps are complete.',"plugins.manage.select_version":"Pilih versi yang akan diinstal","plugins.manage.thanks_for_updating":"Terima kasih telah menginstal versi terbaru dari {{ pluginName }} \u{1F618}.","plugins.manage.uninstall":"Hapus Pemasangan","plugins.manage.uninstalled":"Terhapus","plugins.manage.unverified_message":"Unverified Homebridge plugins indicate that they haven't undergone the review process by the Homebridge project team. Lack of verification does not necessarily imply inefficacy or safety concerns. Authors might have opted not to seek verification for various reasons.","plugins.manage.unverified_subtitle":"{{ pluginName }} is not verified","plugins.manage.unverified_title":"Unverified Plugins","plugins.manage.update":"Pembaruan","plugins.manage.updated":"Diperbarui","plugins.manage.verified_message":"Homebridge plugins that are marked as verified have been reviewed by the Homebridge project team to ensure they meet various requirements that encourage best practices and a trouble-free user experience.","plugins.manage.verified_subtitle":"{{ pluginName }} is verified","plugins.manage.verified_title":"Verified Plugins","plugins.node_update.continue":"Continue","plugins.placeholder_search_first":"Use the search bar above to find your first plugin","plugins.placeholder_search_plugin":"Cari plugin untuk dipasang\u2026","plugins.settings.custom.homebridge-gsh.label_account_linked":"Akun Terhubung","plugins.settings.custom.homebridge-gsh.label_link_account":"Hubungkan Akun","plugins.settings.custom.homebridge-gsh.label_unlink_account":"Putuskan Hubungan Akun","plugins.settings.custom.homebridge-gsh.message_about":"Plugin Homebridge Google Smart Home memungkinkan anda untuk mengontrol aksesoris Homebridge dari pengeras suara berkemampuan Google Home atau aplikasi seluler Google Home.","plugins.settings.custom.homebridge-gsh.message_account_link_required":"Untuk mengaktifkan fungsi ini, anda harus masuk dengan akun Google atau GitHub anda; pastikan anda menggunakan akun yang sama saat menambahkan tindakan Homebridge di aplikasi seluler Google Home.","plugins.settings.custom.homebridge-gsh.message_homebridge_restart_required":"Homebridge membutuhkan pengaktifan ulang agar perubahan dapat diterapkan.","plugins.settings.custom.homebridge-gsh.message_invalid_token":"Invalid account linking token in config.json","plugins.settings.deconz.dump_no_exist":"Homebridge deCONZ dump file does not exist yet.","plugins.settings.hue.dump_no_exist":"Homebridge Hue dump file does not exist yet.","plugins.settings.label_open_config_editor":"Buka Editor Konfigurasi","plugins.settings.message_consult_documentation":"Silakan baca dokumentasi plugin untuk instruksi tentang cara mengkonfigurasi plugin ini dengan benar.","plugins.settings.message_manual_config_required":"Plugin ini harus dikonfigurasi secara manual menggunakan Homebridge UI Config Editor","plugins.settings.plugin_config_saved":"Konfigurasi Plugin Tersimpan","plugins.settings.restart_required":"Homebridge perlu diulang kembali untuk menerapkan perubahan.","plugins.settings.title_settings":"Pengaturan","plugins.status_disabled":"Disabled","plugins.status_installed":"Terpasang","plugins.toast_failed_to_load_plugin_schema":"Failed to load plugin config schema.","plugins.toast_failed_to_load_plugins":"Gagal memuat plugin","plugins.uninstall_bridge_error":"Failed to remove child bridge.","plugins.uninstall_remove_config_required":"Jika anda menghapus plugin ini secara permanen, pastikan anda menghapus konfigurasi untuk plugin ini di config.json sebelum mengulang kembali Homebridge.","plugins.uninstall_remove_confirmation":"Anda yakin ingin mencopot pemasangan {{ pluginName }}?","plugins.uninstall_remove_plugin_config":"Hapus konfigurasi plugin?","plugins.uninstall_unpair_child_bridge":"Unpair plugin child bridge?","plugins.uninstall_unpair_child_bridges":"Unpair {{ count }} plugin child bridges?","reset.accessory_reset":"Atur Ulang Aksesoris Homebridge","reset.action_is_irreversible":"Tindakan ini tidak dapat dipulihkan. Harap baca dengan seksama sebelum melanjutkan.","reset.bridges.desc":"If you are having trouble pairing Homebridge, an external accessory or a child bridge to HomeKit, you may need to unpair it from HomeKit to start again.","reset.bridges.empty":"You have no bridges to unpair from HomeKit.","reset.bridges.title":"Bridges","reset.bridges_all.desc":"Unpair all bridges from HomeKit. This includes the main Homebridge bridge, child bridges and bridges for external accessories.","reset.bridges_all.list_1":"This will unpair the Homebridge bridge, all child bridges and bridges for external accessories from HomeKit.","reset.bridges_all.list_2":"Note that your accessories will continue to show in HomeKit as no response, until the bridges are manually removed from HomeKit. You can do this in the Home app, by accessing Home Settings \u2192 Home Hubs & Bridges \u2192 {Bridge} \u2192 Remove Bridge from Home.","reset.bridges_all.list_3":"All your Homebridge to HomeKit accessories, scenes and automations will need to be reconfigured after the unpairing.","reset.bridges_all.list_4":"The pin for pairing your Homebridge bridge to HomeKit will be changed. You can see the new values in your Homebridge config after the unpairing.","reset.bridges_all.title":"Unpair All Bridges","reset.bridges_single.desc":"Unpair a single bridge from HomeKit. This may be a child bridge or a bridge for an external accessory like a camera or TV.","reset.bridges_single.list_1":"When unpairing a bridge, any accessories published by this bridge will be removed from the Homebridge cache.","reset.bridges_single.list_2":"The accessories will become stale in HomeKit (showing no response). To remove them, you will need to manually remove this bridge from HomeKit. You can do this in the Home app from the Home Settings section.","reset.bridges_single.list_3":"You can then attempt to pair the bridge again if required.","reset.bridges_single.title":"Unpair Single Bridge","reset.cached_accessory_removed":"Aksesoris di Cache Terhapus.","reset.clear_cache_all.desc":"Remove all accessories from the cache.","reset.clear_cache_all.list_1":"When clicking on the remove button below, Homebridge will restart and all your existing accessories will be removed from Homebridge and HomeKit.","reset.clear_cache_all.list_2":"All associated HomeKit data will also be removed, this includes room associations, scenes and automations that this accessory uses.","reset.clear_cache_all.list_3":"After Homebridge restarts, your plugins will re-add any accessories as if the plugin was being installed for the first time.","reset.clear_cache_all.title":"Remove All Accessories","reset.clear_cache_bridge.desc":"Remove all accessories published by a bridge from the cache.","reset.clear_cache_bridge.empty":"You have no bridges from which to remove accessories.","reset.clear_cache_bridge.list_1":"This function can be used to reset a plugin's existing accessories in HomeKit. They will be removed from Homebridge/HomeKit and then re-added by the plugin as new accessories.","reset.clear_cache_bridge.list_2":"The child bridge's pairing details and status will remain the same.","reset.clear_cache_bridge.title":"Remove Bridge Accessories","reset.clear_cache_single.desc":"Remove a single accessory from the cache.","reset.clear_cache_single.list_1":"Some plugins don't clean up after themselves properly! If an accessory that you no longer have in Homebridge is still being displayed in HomeKit, you can remove it from the cache.","reset.clear_cache_single.list_2":"This function can be used to reset an existing accessory in HomeKit. It will be removed from Homebridge/HomeKit and then re-added by the plugin as a new accessory.","reset.clear_cache_single.list_3":"When removing an accessory from the cache, all its associated HomeKit data will be removed. This includes any associated scenes and automations that use this accessory.","reset.clear_cache_single.list_4":"Accessories can only be removed when Homebridge is not running. Homebridge will automatically restart when clicking on each of the remove buttons below. If you need to remove multiple accessories, please be patient and allow Homebridge to restart between each removal.","reset.clear_cache_single.title":"Remove Single Accessory","reset.delete_failed":"Gagal menghapus aksesoris.","reset.delete_success":"Mengulang kembali Homebridge dan membersihkan cache aksesoris.","reset.error_message":"Accessory cache could not be loaded. You may not have any cached accessories.","reset.failed_to_reset":"Gagal mengatur-ulang Homebridge. Lihat catatan.","reset.force_restart_hb_help_text":"Gunakan tindakan ini untuk memaksa layanan hb-service untuk mengulang kembali secara menyeluruh.","reset.remove_cached_accessories_single_empty":"You have no cached accessories to remove.","reset.removing_cached_accessory_please_wait":"Menghapus aksesoris dari cache, harap tunggu\u2026","restart.child_bridge_list":"Please restart these child bridges for the changes to apply:","restart.child_bridges":"Please restart the plugin's child bridges for the changes to apply.","restart.homebridge":"Please restart Homebridge for the changes to apply.","restart.label_restart_command_executed":"Perintah mengulang kembali dieksekusi","restart.please_wait_while_server_restarts":"Harap tunggu, halaman ini akan secara otomatis mengarahkan ulang ketika server kembali online.","restart.server_is_taking_long_time_to_restart":"Mengulang kembali server membutuhkan waktu lebih lama. Anda mungkin perlu menjalankan layanan Homebridge secara manual.","restart.service_ready":"Server Homebridge Siap","restart.title_restart":"Mengulang Kembali Homebridge","restart.toast_server_restart_error":"Terjadi kesalahan saat mengirim perintah mengulang kembali ke server","restart.toast_server_restart_timeout":"Server membutuhkan waktu lebih lama untuk kembali online","restart.toast_server_restarted":"Server Dimulai Kembali","restart.ui_online":"Homebridge UI Online","rpi.throttled.currently_message":"This Raspberry Pi is reporting it is currently under-voltage; please check it is connected to an appropriate power supply. Under-voltage can result in system instability and SD card corruption.","rpi.throttled.previously_message":"This Raspberry Pi has reported an under-voltage event since it was last rebooted; please check it is connected to an appropriate power supply.","rpi.throttled.undervoltage_title":"Under Voltage","settings.cache.desc":"Homebridge maintains accessories in cache so they aren't removed and re-added to HomeKit each time Homebridge restarts. Sometimes this cache can become out of sync with the actual accessories in Homebridge.","settings.cache.title":"Accessories","settings.changes.saved":"Your changes have been saved and require a restart to take effect.","settings.datetime.incorrect":"The date and time on your Homebridge server seem to be incorrect. This may cause unexpected issues. Click here for more information.","settings.display.blue":"Blue","settings.display.bluegrey":"Blue Grey","settings.display.brown":"Brown","settings.display.cyan":"Cyan","settings.display.dark":"Dark","settings.display.deep_purple":"Deep Purple","settings.display.green":"Green","settings.display.grey":"Grey","settings.display.indigo":"Indigo","settings.display.lang":"Language","settings.display.light":"Light","settings.display.lighting_mode":"Lighting Mode","settings.display.login_wallpaper":"Login Wallpaper","settings.display.login_wallpaper_desc":"A custom login wallpaper can be set by adding a <code>ui-wallpaper.jpg</code> file to your Homebridge storage directory, or by providing a full path to a local image file here.","settings.display.orange":"Orange","settings.display.pink":"Pink","settings.display.purple":"Purple","settings.display.red":"Red","settings.display.teal":"Teal","settings.display.temp_units":"Temperature Units","settings.display.temp_units.c":"Celsius (\xB0C)","settings.display.temp_units.f":"Fahrenheit (\xB0F)","settings.display.theme":"Theme","settings.general.title_display":"Display","settings.general.title_general":"General","settings.mdns_advertiser":"Pengiklan mDNS","settings.mdns_advertiser_exp":"experimental","settings.mdns_advertiser_help":"Jika Anda mengalami masalah saat menghubungkan ke Homebridge, coba gunakan salah satu pengiklan mDNS alternatif.","settings.mdns_advertiser_not_connected":"Not Connected","settings.mdns_advertiser_rec":"recommended","settings.network.label_interface_name":"Nama Antarmuka","settings.network.label_ip_address":"Alamat IP","settings.network.message_network_interface":"Jika tidak ada antarmuka jaringan yang terpilih, Homebridge akan mencoba menentukan secara otomatis antarmuka yang akan diumumkan.","settings.network.port_hb":"Homebridge Port","settings.network.port_hb_desc":"The port number to run the Homebridge bridge on. This must be between 1025 and 65533, and should not be the same as the Homebridge UI port.","settings.network.port_ui":"UI Port","settings.network.port_ui_desc":"The port number to run the Homebridge UI on.","settings.network.title_network":"Jaringan","settings.network.title_network_interfaces":"Antarmuka Jaringan","settings.service.debug_tooltip":"Some plugins require you to set the DEBUG environment variable to enable debug level logging.","settings.service.node_tooltip":"Node.js runtime options for this process. This should be kept blank unless you know what you are doing.","settings.startup.debug":"Homebridge Debug Mode","settings.startup.debug_desc_v1":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge as well as all child bridges. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.debug_desc_v2":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge. The setting for child bridges can be found in the child bridge configuration from the plugins page. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.insecure":"Homebridge 'Insecure' Mode","settings.startup.insecure_desc":"To control your accessories via the Homebridge UI you must be running Homebridge in insecure mode.","settings.startup.keep_accessories":"Keep Accessories Of Uninstalled Plugins","settings.startup.keep_accessories_desc":"If enabled, accessories of platform plugins will remain in the cache even after the plugin is uninstalled. This can be useful if you plan to reinstall the plugin later.","settings.title_startup_options":"Opsi Startup","settings.unpair_bridge.load_error":"Paired bridges could not be loaded.","settings.unpair_bridge.unpair_error":"Failed to unpair bridge.","setup.button_get_started":"Get Started","setup.create_account":"Create Account","setup.create_account_reason":"Password authentication to your Homebridge admin web interface must be configured. Even if Homebridge is accessible only in your local network, it is still important to protect it from unrestricted access.","setup.open_dashboard":"Open Dashboard","setup.welcome_to_homebridge":"Welcome to Homebridge",setup_wizard_message_complete_message:"The setup procedure is complete and you're now ready to start using Homebridge.",setup_wizard_message_complete_title:"Congratulations!",setup_wizard_message_restore:"Restore From Backup","status.code_scan":"Pindai untuk menambahkan ke HomeKit","status.cpu.load":"Beban","status.cpu.temp":"Suhu","status.cpu.title_cpu":"CPU","status.credits.title":"Credits","status.homebridge.checking":"Memeriksa pembaruan\u2026","status.homebridge.up_to_date":"Terkini","status.memory.label_available":"Tersedia","status.memory.label_total":"Total","status.memory.title_memory":"Memori","status.network.received_per_second":"Diterima","status.network.sent_per_second":"Dikirim","status.network.title_network":"Aktivitas Jaringan","status.plugin_out_of_date":"Plugin Kadaluarsa","status.plugins_out_of_date":"Plugin Kadaluarsa","status.services.label_not_running":"Tidak berjalan","status.services.label_running":"Berjalan","status.services.updates":"Update Centre","status.uptime.title_uptime":"Waktu Aktif","status.widget.accessories.choose_accessories":"Pilih Aksesoris yang akan ditampilkan dalam widget ini dari tab Aksesoris.","status.widget.add.label_pairing_code":"Kode Pemasangan","status.widget.bridge.restart_error":"Failed to restart child bridge.","status.widget.clock":"Jam","status.widget.clock_dateformat":"Format Tanggal","status.widget.clock_timeformat":"Format Waktu","status.widget.font_size":"Ukuran Huruf","status.widget.font_weight":"Lebar Huruf","status.widget.hide_on_mobile":"Sembunyikan dalam tampilan ringkas (tampilan seluler)","status.widget.homebridge_logs":"Catatan Homebridge","status.widget.info":"Informasi Sistem","status.widget.info.config_path":"Path Konfigurasi","status.widget.info.disabled":"Disabled","status.widget.info.docker":"Docker","status.widget.info.glibc_message":"This message indicates that your operating system does not support newer versions of Node.js. To resolve this and be able to install updated versions of Node.js in the future, you will need to update your operating system to a more recent version.","status.widget.info.glibc_title":"OS Update","status.widget.info.hostname":"Nama Host","status.widget.info.ipv4":"IPv4","status.widget.info.ipv6":"IPv6","status.widget.info.no":"No","status.widget.info.node_unsupp":"Unsupported","status.widget.info.node_unsupp_message":"You are running a version of Node.js that is not officially supported by Homebridge. You should consider changing to a supported version.","status.widget.info.node_unsupp_title":"Unsupported Node Version","status.widget.info.node_update_message":"Homebridge requires Node.js installed on your system to run. From time to time, you will need to update the Node.js runtime to enable support for new features. Homebridge (and verified plugins) support all current Active and Maintenance LTS releases of Node.js.","status.widget.info.node_update_title":"Node Update","status.widget.info.nodejs_path":"Node.js Path","status.widget.info.nodejs_version":"Versi Node.js","status.widget.info.os":"OS","status.widget.info.plugin_path":"Path Plugin","status.widget.info.service_mode":"Mode Servis","status.widget.info.service_user":"Pengguna","status.widget.info.servicemode_message":"Standalone mode is no longer recommended. Setting up Homebridge and Homebridge UI with hb-service has the same benefits of standalone mode but is much easier to setup and maintain.","status.widget.info.servicemode_title":"Service Mode","status.widget.info.storage_path":"Path Penyimpanan","status.widget.info.synology_package":"Paket Synology","status.widget.info.timezone":"Zona Waktu","status.widget.info.yes":"Yes","status.widget.network.history_items":"History Items","status.widget.network.items":"items","status.widget.network.network_interface":"Network Interface","status.widget.network.none_selected":"None selected in settings - using default.","status.widget.network.refresh_interval":"Refresh Interval","status.widget.network.refresh_note":"Refresh the page after saving for changes to take effect.","status.widget.network.seconds":"seconds","status.widget.qr_paired":"Terpasang","status.widget.qr_unpaired":"Tidak Terpasang","status.widget.show_hide":"Show/Hide Widgets","status.widget.title_manage_widget":"Kelola Widget","status.widget.uptime.label_process":"Proses","status.widget.uptime.label_server":"Server","status.widget.weather.label_config_required_help":"Silakan pilih kota anda di pengaturan widget.","status.widget.weather.label_search_for_your_city":"Cari kota anda:","status.widget.weather.title_weather":"Cuaca","support.dev.api":"Homebridge API","support.dev.api_hap":"HAP-NodeJS API","support.dev.api_hap_sub":"HAP-NodeJS is an implementation of the HomeKit Accessory Server as specified in the HomeKit Accessory Protocol (HAP), which is defined by Apple as part of the HomeKit Framework.","support.dev.api_sub":"Homebridge is a lightweight Node.js server you can run on your home network to emulate the HomeKit Accessory Protocol (HAP).","support.dev.item_swagger":"Swagger Docs","support.dev.item_swagger_sub":"The Homebridge REST API allows you to interact with your Homebridge server using HTTP requests.","support.dev.template":"Plugin Template Repo","support.dev.template_sub":"A template Homebridge plugin that can be used as a base to help you get started developing your own plugin.","support.dev.title":"Developers","support.dev.verified":"Verified By Homebridge","support.dev.verified_sub":"The Verified By Homebridge program allows plugin developers to get their plugins reviewed and endorsed by the Homebridge project team.","support.links.discord":"Discord Server","support.links.discord_sub":"Join the Homebridge Discord chat server to chat with other users and developers.","support.links.documentation":"Documentation","support.links.documentation_sub":"The Homebridge documentation provides a wealth of information on how to get started with Homebridge and common issue resolutions.","support.links.issue":"Report An Issue","support.links.issue_sub":"If you are experiencing an issue with Homebridge, please open a new issue on GitHub. This should not be used for issues with specific plugins.","support.links.reddit":"Reddit Community","support.links.reddit_sub":"The Homebridge subreddit is a great place to share your Homebridge setup and ask for help.","support.links.title":"Useful Links","support.title":"Support","toast.no_auth":"Only administrators may access the requested page.","toast.title_error":"Kesalahan","toast.title_success":"Sukses","toast.title_warning":"Peringatan","users.button_add_new_user":"Tambah Pengguna Baru","users.button_add_user":"Tambah Pengguna","users.label_admin_user":"Pengguna adalah Admin?","users.label_confirm_password":"Konfirmasi Kata Sandi","users.label_full_name":"Nama Lengkap","users.label_new_password":"Kata Sandi Baru","users.label_password":"Kata Sandi","users.label_username":"Nama Pengguna","users.setup_2fa":"Siapkan 2FA","users.setup_2fa_activate_error":"An error occurred activating 2FA","users.setup_2fa_cannot_setup_2fa":"Tidak Dapat Menyiapkan 2FA","users.setup_2fa_disable":"Nonaktifkan 2FA","users.setup_2fa_disable_current_password":"Masukkan kata sandi Anda saat ini untuk menonaktifkan otentikasi dua faktor (2FA):","users.setup_2fa_disable_success":"Otentikasi dua faktor (2FA) telah dinonaktifkan.","users.setup_2fa_enable":"Aktifkan 2FA","users.setup_2fa_enable_error":"An error occurred setting up 2FA","users.setup_2fa_enabled_success":"Otentikasi dua faktor (2FA) telah diaktifkan.","users.setup_2fa_enter_code":"Masukkan kode dari aplikasi autentikator anda:","users.setup_2fa_scan_qr_code":"Pindai kode QR di bawah ini dengan aplikasi autentikator anda:","users.setup_2fa_server_time_out":"Jam server anda meleset {{ timeDiffError }} milidetik. Maksimum perbedaan adalah +/-5000 milidetik.","users.setup_2fa_warning":"Otentikasi Dua Faktor (2FA) mengharuskan server Homebridge anda memiliki tanggal dan waktu yang sangat akurat untuk masuk. Jika server Anda tidak memiliki kemampuan untuk menjaga waktu secara akurat, sebaiknya anda tidak mengaktifkan 2FA atau berisiko terkunci dari Homebridge UI.","users.title_add_user":"Tambah Pengguna","users.title_edit_user":"Ubah Pengguna","users.title_users":"Pengguna","users.toast_added_new_user":"Menambahkan Pengguna Baru","users.toast_failed_to_add_user":"Gagal Menambah Pengguna","users.toast_failed_to_delete_user":"Gagal Menghapus Pengguna","users.toast_updated_user":"Pengguna yang Diperbarui","users.toast_user_deleted":"Pengguna Dihapus"}});var Ks=y((xd,pa)=>{pa.exports={"accessories.button_add_room":"Aggiungi stanza","accessories.button_hidden_hide":"Hide Hidden","accessories.button_hidden_show":"Show Hidden","accessories.control.auto":"Automatico","accessories.control.away":"Assente","accessories.control.battery_charging":"In ricarica","accessories.control.battery_notchargeable":"Non ricaricabile","accessories.control.battery_notcharging":"Non in carica","accessories.control.brightness":"Luminosit\xE0","accessories.control.closed":"Chiuso","accessories.control.closing":"In chiusura","accessories.control.cool":"Freddo","accessories.control.default_room":"Stanza predefinita","accessories.control.default_running_time":"Tempo di esecuzione predefinito","accessories.control.dehumidifying":"Deumidificando","accessories.control.detected":"Detected","accessories.control.drag_here":"Trascina qui","accessories.control.fan":"Ventola","accessories.control.heat":"Caldo","accessories.control.home":"Casa","accessories.control.humidifying":"Umidificando","accessories.control.jammed":"Inceppato","accessories.control.light":"Luce","accessories.control.locked":"Chiuso","accessories.control.mute":"Muto","accessories.control.night":"Notte","accessories.control.not_detected":"Not Detected","accessories.control.not_mute":"Acceso","accessories.control.off":"Spento","accessories.control.on":"Acceso","accessories.control.open":"Aperto","accessories.control.opening":"In apertura","accessories.control.rotation_speed":"Velocit\xE0 di rotazione","accessories.control.running":"In esecuzione","accessories.control.speaker_volume":"Volume","accessories.control.stopped":"Fermato","accessories.control.target":"Obiettivo","accessories.control.target_humidity":"Umidit\xE0 obiettivo","accessories.control.target_temperature":"Temperatura obiettivo","accessories.control.triggered":"Azionato","accessories.control.unknown":"Sconosciuto","accessories.control.unlocked":"Sbloccato","accessories.control_disabled":"Controllo degli accessori disabilitato","accessories.hide_this_accessory":"Nascondi accessorio","accessories.message_for_more_information":"per pi\xF9 informazioni.","accessories.message_must_use_insecure_mode":"Per controllare i tuoi accessori devi avviare Homebridge in modalit\xE0 non sicura.","accessories.message_please_see":"Attenzione","accessories.name":"Nome","accessories.room_name":"Nome stanza","accessories.rooms_not_appear_in_homekit":"Le stanze create qui non appariranno in HomeKit, servono solo per organizzare gli accessori in Homebridge UI.","accessories.settings_link":"You can access the Homebridge Settings at any time from the cog icon in the side menu.","accessories.show_on_dashboard":"Mostra widget nella dashboard","accessories.title_accessories":"Accessori","backup.backup_delete_failed":"Backup deletion failed. See logs for details.","backup.backup_download_failed":"Scaricamento del backup fallito","backup.backup_exceeds_max_size":"Backup ({{ backupSize }}) exceeds maximum restore file size of {{ maxBackupSizeText }}","backup.backup_help_one":"Scarica un archivio di backup del tuo ambiente Homebridge. Questo salver\xE0 tutto il contenuto della cartella Homebridge che successivamente potr\xE0 essere ripristinato su qualunque piattaforma supportata da Homebridge UI.","backup.backup_help_two":"I plugin non installati da npm, o plugin installati direttamente da GitHub non verranno salvati o ripristinati.","backup.backup_restored":"Archivio di backup ripristinato","backup.backup_warning":"Gli archivi di backup contengono informazioni sensibili e non dovrebbero essere condivisi con altre persone.","backup.button_restore_backup":"Ripristina Backup","backup.label_choose_backup_file_to_restore":"Scegli un file di backup da ripristinare\u2026","backup.label_uploading":"Caricamento in corso\u2026","backup.load_error":"Failed to load config backup.","backup.now":"Now","backup.restore_failed":"Ripristino fallito","backup.restore_help_one":"Ripristina un archivio di backup precedentemente creato con Homebridge UI. La tua configurazione di Homebridge, gli accessori, gli abbinamenti di HomeKit e gli account utente di Homebridge UI saranno ripristinati. I plugin Homebridge che erano stati installati verranno scaricati da npm.","backup.restore_help_two":"Dopo il ripristino sar\xE0 necessario autenticarsi con Homebridge UI usando le credenziali contenute nel backup ripristinato.","backup.restore_max_size":"You can restore a backup archive up to {{ maxBackupSizeText }} in size.","backup.restore_warning":"Ripristinare un backup sovrascriver\xE0 irreversibilmente l'attuale configurazione di Homebridge.","backup.scheduled_backup_time":"Un backup completo di questa istanza di Homebridge verr\xE0 automaticamente creato ogni giorno alle ore {{ backupTime }} e conservato per {{ dayCount }} giorni.","backup.title_backup":"Backup","child_bridge.about":"Homebridge permette di eseguire i plugin delle piattaforme o degli accessori all'intero di un bridge figlio isolato dall'istanza principale. Questo pu\xF2 migliorare la reattivit\xE0 e la stabilit\xE0 di Homebridge.","child_bridge.bridge_connect":"Collega a HomeKit","child_bridge.bridge_settings":"Impostazioni del bridge","child_bridge.bridges":"HomeKit Bridges","child_bridge.bridges_paired":"Ogni piattaforma o accessorio eseguito in un bridge figlio dovr\xE0 essere abbinato separatamente a HomeKit.","child_bridge.config.debug":"Debug Mode","child_bridge.config.description":"These fields are not required, but can be used to override the HomeKit configuration for this bridge.","child_bridge.config.firmware":"Firmware Version","child_bridge.config.header":"Configuration","child_bridge.config.manufacturer":"Manufacturer","child_bridge.config.model":"Model","child_bridge.config.name":"Name","child_bridge.must_configure_plugin":"\xC8 necessario configurare questo plugin prima di poter gestire le impostazioni del suo bridge.","child_bridge.reset_accessories":"Reset Accessories","child_bridge.reset_accessories_list":"Choose from which child bridges you want to reset the accessories below:","child_bridge.restart":"Riavvia bridge figlio","child_bridge.restart_homebridge":"Riavvia Homebridge per completare la messa in servizio di questo bridge figlio.","child_bridge.restart_plural":"Restart Child Bridges","child_bridge.return_to_pair":"Ritorna a questa videata dopo il riavvio di Homebridge per visualizzare il codice QR di abbinamento.","child_bridge.select_type":"Seleziona quali piattaforme o accessori vuoi eseguire in un bridge figlio","child_bridge.setup":"Set Up Child Bridge","child_bridge.start":"Start Child Bridge","child_bridge.start_plural":"Start Child Bridges","child_bridge.stop":"Stop Child Bridge","child_bridge.stop_plural":"Stop Child Bridges","child_bridge.wiki_link":"Informazioni sui bridge figlio","config.config_accessory_must_be_array":"gli accessori devono essere tra []","config.config_bridge_missing":"Impostazioni del bridge mancanti","config.config_invalid_json":"JSON non valido","config.config_platform_must_be_array":"le piattaforme devono essere tra []","config.config_username_error":"Il nome del bridge deve essere composto da 6 paia di caratteri esadecimali (A-F 0-9) separate dal carattere due punti (XX:XX:XX:XX:XX:XX)","config.error_blocks_objects":"All {{ type }} blocks must be objects.","config.error_blocks_type":"All {{ type }} blocks must contain the {{ type }} attribute.","config.error_string_array":"Each item in the {{ key }} array must be a string.","config.error_string_type":"The {{ type }} attribute must be a string.","config.failed_to_save_config":"Configurazione non salvata","config.restore.confirm":"Clicca Salva per recuperare questo backup","config.restore.copy_to_editor":"Copia nell'editor","config.restore.no_backups":"Nessun backup","config.restore.title_restore_homebridge_backup":"Ripristina backup","config.restore.toast_backups_deleted":"Backup eliminati","config.title_backup_loaded":"Backup caricato","form.button_cancel":"Cancella","form.button_close":"Chiudi","form.button_delete":"Cancella","form.button_disable":"Disable","form.button_download":"Scarica","form.button_edit":"Modifica","form.button_enable":"Enable","form.button_hide":"Hide","form.button_lock":"Lock","form.button_more_info":"More Info","form.button_remove":"Remove","form.button_reset":"Reset","form.button_restore":"Ripristina","form.button_save":"Salva","form.button_show":"Show","form.button_unlock":"Unlock","form.button_unpair":"Unpair","form.label_invalid":"Config validation failed - you can still save your changes.","form.label_invalid_strict":"Config validation failed - please review the form before saving.","form.label_valid":"Config validation passed.","form.select.auto":"Automatic (Use Browser Settings)","login.button_login":"Accedi","login.invalid_credentials":"Utente o password non validi","login.label_2fa_code":"Codice di autenticazione a 2 fattori","login.label_password":"Password","login.label_username":"Utente","login.message_invalid_2fa_code":"Il codice inserito \xE8 sbagliato o scaduto.","logs.download.error":"Failed to download log file.","logs.download_warning":"I file dei log di Homebridge potrebbero contenere informazioni personali, password o chiavi di accesso. Per piacere verifica il file dei log e rimuovi qualunque informazione riservata prima di condividerlo con terzi.","logs.log_file_truncated":"File di log troncato.","logs.title_download_log_file":"Scarica i log","logs.title_truncate_log_file":"Tronca il file di log","logs.truncate.error":"Failed to truncate log file.","logs.truncate_log_warning":"Questa operazione canceller\xE0 irreversibilmente i tuoi log di Homebridge. Sei sicuro di voler continuare?","menu.config_json_editor":"JSON Config","menu.docker.restart_container":"Riavvia Container","menu.docker.startup_script":"Avvia script","menu.docker.terminal":"Terminale","menu.hbrestart.confirm_hb":"Restart Homebridge","menu.hbrestart.confirm_ui":"Restart HB Service & UI","menu.hbrestart.title":"Restart Homebridge","menu.label_accessories":"Accessori","menu.label_plugins":"Plugin","menu.label_settings":"Settings","menu.label_settings_advanced":"UI Advanced Settings","menu.label_status":"Stato","menu.linux.label_logs":"Logs","menu.linux.label_restart_server":"Riavvia sistema","menu.linux.label_shutdown_server":"Arresta sistema","menu.linux.label_terminal":"Terminale","menu.restart.title":"Power Options","menu.settings.title":"Settings","menu.tooltip_logout":"Scollegati","menu.tooltip_restart":"Riavvia","menu.tooltip_user_accounts":"Account utente","menu.tooltip_view_logs":"Mostra i log","platform.docker.container_restarted":"Container Docker riavviato","platform.docker.must_use_hashbang":"Lo script deve usare l'hashbang #!/bin/sh.","platform.docker.restart_required":"\xC8 necessario riavviare docker affinch\xE9 le modifiche abbiano effetto.","platform.docker.run_with_restart":"Accertati di aver avviato il container Docker in modalit\xE0 <code>--restart=always</code>","platform.docker.script_help":"Questo script verr\xE0 eseguito ogni volta che docker viene avviato. Puoi usarlo per installare eventuali pacchetti aggiuntivi necessari ai tuoi plugin come ffmpeg o libpcap-dev.","platform.docker.script_saved":"Script di avvio salvato","platform.docker.server_long_time":"Il riavvio richiede troppo tempo. Prova a riavviare Docker manualmente.","platform.docker.title_restarting":"Riavvio container Docker","platform.linux.long_time":"Il riavvio del sistema sta richiedendo molto tempo. Potrebbe essere necessario avviare manualmente il sistema.","platform.linux.restart":"Attendi, questa pagina verr\xE0 reindirizzata automaticamente quando Homebridge sar\xE0 di nuovo online.","platform.linux.restarting_server":"Riavvio del sistema","platform.linux.server_restart_error":"Si \xE8 verificato un errore durante l'invio del comando di riavvio al sistema","platform.linux.server_restarted":"Sistema riavviato","platform.linux.server_taking_long_time":"Il sistema impiega molto tempo per tornare online","platform.linux.server_will_power_down":"Il sistema si spegner\xE0 a breve.","platform.linux.shutting_down_server":"Arresto del sistema","platform.version.restart_required":"Homebridge UI v{{ uiVersion }} \xE8 stato installato, ma la versione in esecuzione del suo servizio \xE8 la v{{ serverVersion }}.","platform.version.service_restart_required":"\xC8 necessario riavviare il servizio","plugins.bridge.action_error":"Failed to {{ action }} child bridge(s).","plugins.button_homepage":"Plugin Homepage","plugins.button_set_up":"Set Up","plugins.button_settings":"Impostazioni","plugins.button_uninstall":"Disinstalla","plugins.button_update":"Aggiorna","plugins.compat.are_you_sure":"Are you sure you want to continue anyway?","plugins.compat.hb_node_too_low":"{{ packageName }} v{{ latestVersion }} richiede Node.js v{{ minVersion }} o successivo. Stai attualmente eseguendo Node.js {{ installedVersion }}.","plugins.compat.hb_too_low":"Il plugin {{ pluginName }} raccomanda l'esecuzione su Homebridge v{{ minVersion }} o successivo. Stai attualmente eseguendo Homebridge v{{ installedVersion }}.","plugins.compat.node_first":"Per piacere aggiornare Node.js prima di aggiornare {{ packageName }}.","plugins.compat.node_link":"How To Update Node.js","plugins.compat.node_too_low":"Il plugin {{ pluginName }} raccomanda l'esecuzione su Node.js v{{ minVersion }} o successivo. Stai attualmente eseguendo Node.js {{ installedVersion }}.","plugins.compat.title":"Compatibility Check","plugins.config.load_error":"Failed to load plugin config.","plugins.config.must_be_array":"Plugin config must be an array.","plugins.config.must_be_array_objects":"Plugin config must be an array of objects.","plugins.config.must_be_object":"Config block must be an object.","plugins.config.name_property":'Accessory must have a valid "name" attribute',"plugins.config.please_fix":"Please fix validation errors before adding a new block.","plugins.config.remove_error":"Failed to remove plugin config.","plugins.disable.error":"Failed to disable plugin.","plugins.donate.button_not_verified":"Not Verified","plugins.donate.button_verified":"Verificato","plugins.donate.message_1":"As more users install their plugins through the Homebridge UI, they are less likely to visit the projects' GitHub page where the ways to support a developer would typically be displayed.","plugins.donate.message_2":"Adding donation links directly in the Homebridge UI ensures users know how to support Homebridge developers if they wish to do so.","plugins.donate.tile_donate_to":"Dona a {{ author }}","plugins.enable.error":"Failed to enable plugin.","plugins.manage.all_versions":"All versions","plugins.manage.child_bridge_restart":"Child bridge restarted successfully.","plugins.manage.child_bridge_restart_failed":"Plugin restart failed, please restart Homebridge manually.","plugins.manage.confirm_disable":"Are you sure you want to disable {{ pluginName }}?","plugins.manage.confirm_disable_accessory_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen and removed from HomeKit.","plugins.manage.confirm_disable_accessory_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and HomeKit. The accessories will lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_disable_platform_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen but remain in HomeKit with a 'No Response' label.","plugins.manage.confirm_disable_platform_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and become controllable again in HomeKit. The accessories will not lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_enable":"Sei sicuro di voler attivare {{ pluginName }}?","plugins.manage.disable":"Disattiva","plugins.manage.enable":"Attiva","plugins.manage.information":"Plugin Information","plugins.manage.install":"Installa","plugins.manage.installed":"Installato","plugins.manage.json_config":"Configurazione JSON","plugins.manage.manage_version":"Installa la versione precedente","plugins.manage.manual_update_command":"To upgrade the package run open a Node.js command prompt as an Administrator and run the following commands:","plugins.manage.manual_update_required":"Aggiornamento manuale richiesto","plugins.manage.online_updates":"Gli aggiornamenti in linea non sono supportati su Windows. Sar\xE0 necessario aggiornare manualmente Homebridge UI dopo aver fermato il servizio Homebridge.","plugins.manage.plugin_logs":"Plugin Logs","plugins.manage.release_notes":"Release Notes","plugins.manage.scoped.error":"An error occurred. You can download the logs below.","plugins.manage.scoped.info":"For more information about scoped plugins and why to switch, see the wiki page {{ link }}.","plugins.manage.scoped.process":"This process will not affect your Homebridge/HomeKit accessories. You will not be able to cancel the process once it has started. It will:","plugins.manage.scoped.switch":"Switch To Scoped Plugin","plugins.manage.scoped.windows":"Online updates are not supported on Windows. You will need to install the new plugin and uninstall the old plugin manually.","plugins.manage.scoped.windows_service":'You should <span class="font-weight-bold">not</span> restart Homebridge until both steps are complete.',"plugins.manage.select_version":"Scegli la versione da installare","plugins.manage.thanks_for_updating":"Grazie per aver installato l'ultima versione di {{ pluginName }}.","plugins.manage.uninstall":"Disinstalla","plugins.manage.uninstalled":"Disinstallato","plugins.manage.unverified_message":"Unverified Homebridge plugins indicate that they haven't undergone the review process by the Homebridge project team. Lack of verification does not necessarily imply inefficacy or safety concerns. Authors might have opted not to seek verification for various reasons.","plugins.manage.unverified_subtitle":"{{ pluginName }} is not verified","plugins.manage.unverified_title":"Unverified Plugins","plugins.manage.update":"Aggiorna","plugins.manage.updated":"Aggiornato","plugins.manage.verified_message":"Homebridge plugins that are marked as verified have been reviewed by the Homebridge project team to ensure they meet various requirements that encourage best practices and a trouble-free user experience.","plugins.manage.verified_subtitle":"{{ pluginName }} is verified","plugins.manage.verified_title":"Verified Plugins","plugins.node_update.continue":"Continue","plugins.placeholder_search_first":"Use the search bar above to find your first plugin","plugins.placeholder_search_plugin":"Cerca plugin da installare\u2026","plugins.settings.custom.homebridge-gsh.label_account_linked":"Account collegato","plugins.settings.custom.homebridge-gsh.label_link_account":"Collega account","plugins.settings.custom.homebridge-gsh.label_unlink_account":"Scollega account","plugins.settings.custom.homebridge-gsh.message_about":"Il plugin Homebridge Google Smart Home permette di controllare gli accessori Homebridge da un altoparlante intelligente Google Home abilitato o dall'applicazione Google Home.","plugins.settings.custom.homebridge-gsh.message_account_link_required":"L'attivazione di questa funzione richiede l'accesso con un account Google or GitHub; assicurarsi di usare lo stesso account quanto si aggiunge l'azione Homebridge nell'applicazione Google Home.","plugins.settings.custom.homebridge-gsh.message_homebridge_restart_required":"Homebridge deve essere riavviato affinch\xE9 le modifiche abbiano effetto.","plugins.settings.custom.homebridge-gsh.message_invalid_token":"Invalid account linking token in config.json","plugins.settings.deconz.dump_no_exist":"Homebridge deCONZ dump file does not exist yet.","plugins.settings.hue.dump_no_exist":"Homebridge Hue dump file does not exist yet.","plugins.settings.label_open_config_editor":"Apri l'editor della configurazione","plugins.settings.message_consult_documentation":"Per piacere consulta la documentazione del plugin per sapere come configurarlo correttamente.","plugins.settings.message_manual_config_required":"Questo plugin deve essere configurato manualmente usando l'editor della configurazione di Homebridge UI X.","plugins.settings.plugin_config_saved":"Configurazione dei plugin salvata","plugins.settings.restart_required":"Riavvia Homebridge per applicare le modifiche.","plugins.settings.title_settings":"Impostazioni","plugins.status_disabled":"Disattivato","plugins.status_installed":"Installato","plugins.toast_failed_to_load_plugin_schema":"Failed to load plugin config schema.","plugins.toast_failed_to_load_plugins":"Impossibile caricare i plugin","plugins.uninstall_bridge_error":"Failed to remove child bridge.","plugins.uninstall_remove_config_required":"Se si sta disinstallando definitivamente questo plugin, assicurarsi di rimuovere la configurazione di questo plugin da config.json prima di riavviare Homebridge.","plugins.uninstall_remove_confirmation":"Sei sicuro di vole disinstallare {{ pluginName }}?","plugins.uninstall_remove_plugin_config":"Rimuovere la configurazione del plugin?","plugins.uninstall_unpair_child_bridge":"Unpair plugin child bridge?","plugins.uninstall_unpair_child_bridges":"Unpair {{ count }} plugin child bridges?","reset.accessory_reset":"Ripristino accessorio Homebridge","reset.action_is_irreversible":"Questa azione \xE8 irreversibile. Si prega di leggere attentamente prima di procedere.","reset.bridges.desc":"If you are having trouble pairing Homebridge, an external accessory or a child bridge to HomeKit, you may need to unpair it from HomeKit to start again.","reset.bridges.empty":"You have no bridges to unpair from HomeKit.","reset.bridges.title":"Bridges","reset.bridges_all.desc":"Unpair all bridges from HomeKit. This includes the main Homebridge bridge, child bridges and bridges for external accessories.","reset.bridges_all.list_1":"This will unpair the Homebridge bridge, all child bridges and bridges for external accessories from HomeKit.","reset.bridges_all.list_2":"Note that your accessories will continue to show in HomeKit as no response, until the bridges are manually removed from HomeKit. You can do this in the Home app, by accessing Home Settings \u2192 Home Hubs & Bridges \u2192 {Bridge} \u2192 Remove Bridge from Home.","reset.bridges_all.list_3":"All your Homebridge to HomeKit accessories, scenes and automations will need to be reconfigured after the unpairing.","reset.bridges_all.list_4":"The pin for pairing your Homebridge bridge to HomeKit will be changed. You can see the new values in your Homebridge config after the unpairing.","reset.bridges_all.title":"Unpair All Bridges","reset.bridges_single.desc":"Unpair a single bridge from HomeKit. This may be a child bridge or a bridge for an external accessory like a camera or TV.","reset.bridges_single.list_1":"When unpairing a bridge, any accessories published by this bridge will be removed from the Homebridge cache.","reset.bridges_single.list_2":"The accessories will become stale in HomeKit (showing no response). To remove them, you will need to manually remove this bridge from HomeKit. You can do this in the Home app from the Home Settings section.","reset.bridges_single.list_3":"You can then attempt to pair the bridge again if required.","reset.bridges_single.title":"Unpair Single Bridge","reset.cached_accessory_removed":"L'accessorio \xE8 stato cancellato dalla cache degli accessori.","reset.clear_cache_all.desc":"Remove all accessories from the cache.","reset.clear_cache_all.list_1":"When clicking on the remove button below, Homebridge will restart and all your existing accessories will be removed from Homebridge and HomeKit.","reset.clear_cache_all.list_2":"All associated HomeKit data will also be removed, this includes room associations, scenes and automations that this accessory uses.","reset.clear_cache_all.list_3":"After Homebridge restarts, your plugins will re-add any accessories as if the plugin was being installed for the first time.","reset.clear_cache_all.title":"Remove All Accessories","reset.clear_cache_bridge.desc":"Remove all accessories published by a bridge from the cache.","reset.clear_cache_bridge.empty":"You have no bridges from which to remove accessories.","reset.clear_cache_bridge.list_1":"This function can be used to reset a plugin's existing accessories in HomeKit. They will be removed from Homebridge/HomeKit and then re-added by the plugin as new accessories.","reset.clear_cache_bridge.list_2":"The child bridge's pairing details and status will remain the same.","reset.clear_cache_bridge.title":"Remove Bridge Accessories","reset.clear_cache_single.desc":"Remove a single accessory from the cache.","reset.clear_cache_single.list_1":"Some plugins don't clean up after themselves properly! If an accessory that you no longer have in Homebridge is still being displayed in HomeKit, you can remove it from the cache.","reset.clear_cache_single.list_2":"This function can be used to reset an existing accessory in HomeKit. It will be removed from Homebridge/HomeKit and then re-added by the plugin as a new accessory.","reset.clear_cache_single.list_3":"When removing an accessory from the cache, all its associated HomeKit data will be removed. This includes any associated scenes and automations that use this accessory.","reset.clear_cache_single.list_4":"Accessories can only be removed when Homebridge is not running. Homebridge will automatically restart when clicking on each of the remove buttons below. If you need to remove multiple accessories, please be patient and allow Homebridge to restart between each removal.","reset.clear_cache_single.title":"Remove Single Accessory","reset.delete_failed":"Cancellazione dell'accessorio fallita.","reset.delete_success":"Riavvio Homebridge e cancellazione della cache degli accessori in corso.","reset.error_message":"Accessory cache could not be loaded. You may not have any cached accessories.","reset.failed_to_reset":"Impossibile ripristinare Homebridge. Controlla i log.","reset.force_restart_hb_help_text":"Usa questa azione per forzare il servizio hb-service a eseguire un riavvio completo.","reset.remove_cached_accessories_single_empty":"You have no cached accessories to remove.","reset.removing_cached_accessory_please_wait":"Cancello l'accessorio dalla cache, attendi\u2026","restart.child_bridge_list":"Please restart these child bridges for the changes to apply:","restart.child_bridges":"Please restart the plugin's child bridges for the changes to apply.","restart.homebridge":"Please restart Homebridge for the changes to apply.","restart.label_restart_command_executed":"Riavvio richiesto","restart.please_wait_while_server_restarts":"Attendi, questa pagina verr\xE0 reindirizzata automaticamente quando il sistema sar\xE0 di nuovo online.","restart.server_is_taking_long_time_to_restart":"Il riavvio del sistema richiede molto tempo. Potrebbe essere necessario riavviare manualmente Homebridge.","restart.service_ready":"Riavvio server Homebridge","restart.title_restart":"Riavvio Homebridge","restart.toast_server_restart_error":"Si \xE8 verificato un errore durante l'invio del comando di riavvio al sistema","restart.toast_server_restart_timeout":"Il sistema impiega molto tempo per tornare online","restart.toast_server_restarted":"Sistema riavviato","restart.ui_online":"Riavvio Homebridge UI","rpi.throttled.currently_message":"Questo Raspberry Pi segnala che la sua tensione di alimentazione \xE8 bassa; verificare che sia collegato a un'alimentazione adeguata. Una tensione di alimentazione bassa pu\xF2 causare l'instabilit\xE0 del sistema e la corruzione della scheda SD.","rpi.throttled.previously_message":"Questo Raspberry Pi ha segnalato un calo della tensione di alimentazione dall'ultimo riavvio; verificare che sia collegato a un'alimentazione adeguata.","rpi.throttled.undervoltage_title":"Calo di Tensione","settings.cache.desc":"Homebridge maintains accessories in cache so they aren't removed and re-added to HomeKit each time Homebridge restarts. Sometimes this cache can become out of sync with the actual accessories in Homebridge.","settings.cache.title":"Accessories","settings.changes.saved":"Your changes have been saved and require a restart to take effect.","settings.datetime.incorrect":"The date and time on your Homebridge server seem to be incorrect. This may cause unexpected issues. Click here for more information.","settings.display.blue":"Blue","settings.display.bluegrey":"Blue Grey","settings.display.brown":"Brown","settings.display.cyan":"Cyan","settings.display.dark":"Dark","settings.display.deep_purple":"Deep Purple","settings.display.green":"Green","settings.display.grey":"Grey","settings.display.indigo":"Indigo","settings.display.lang":"Language","settings.display.light":"Light","settings.display.lighting_mode":"Lighting Mode","settings.display.login_wallpaper":"Login Wallpaper","settings.display.login_wallpaper_desc":"A custom login wallpaper can be set by adding a <code>ui-wallpaper.jpg</code> file to your Homebridge storage directory, or by providing a full path to a local image file here.","settings.display.orange":"Orange","settings.display.pink":"Pink","settings.display.purple":"Purple","settings.display.red":"Red","settings.display.teal":"Teal","settings.display.temp_units":"Temperature Units","settings.display.temp_units.c":"Celsius (\xB0C)","settings.display.temp_units.f":"Fahrenheit (\xB0F)","settings.display.theme":"Theme","settings.general.title_display":"Display","settings.general.title_general":"General","settings.mdns_advertiser":"Annunciatore mDNS","settings.mdns_advertiser_exp":"experimental","settings.mdns_advertiser_help":"Se stai avendo problemi a collegarti a Homebridge, prova a utilizzare un altro annunciatore mDNS.","settings.mdns_advertiser_not_connected":"Not Connected","settings.mdns_advertiser_rec":"recommended","settings.network.label_interface_name":"Nome dell'interfaccia","settings.network.label_ip_address":"Indirizzo IP","settings.network.message_network_interface":"Se nessuna interfaccia di rete \xE8 selezionata, Homebridge sceglier\xE0 automaticamente su quali annunciarsi.","settings.network.port_hb":"Homebridge Port","settings.network.port_hb_desc":"The port number to run the Homebridge bridge on. This must be between 1025 and 65533, and should not be the same as the Homebridge UI port.","settings.network.port_ui":"UI Port","settings.network.port_ui_desc":"The port number to run the Homebridge UI on.","settings.network.title_network":"Rete","settings.network.title_network_interfaces":"Interfacce di rete","settings.service.debug_tooltip":"Some plugins require you to set the DEBUG environment variable to enable debug level logging.","settings.service.node_tooltip":"Node.js runtime options for this process. This should be kept blank unless you know what you are doing.","settings.startup.debug":"Homebridge Debug Mode","settings.startup.debug_desc_v1":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge as well as all child bridges. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.debug_desc_v2":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge. The setting for child bridges can be found in the child bridge configuration from the plugins page. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.insecure":"Homebridge 'Insecure' Mode","settings.startup.insecure_desc":"To control your accessories via the Homebridge UI you must be running Homebridge in insecure mode.","settings.startup.keep_accessories":"Keep Accessories Of Uninstalled Plugins","settings.startup.keep_accessories_desc":"If enabled, accessories of platform plugins will remain in the cache even after the plugin is uninstalled. This can be useful if you plan to reinstall the plugin later.","settings.title_startup_options":"Opzioni di avvio","settings.unpair_bridge.load_error":"Paired bridges could not be loaded.","settings.unpair_bridge.unpair_error":"Failed to unpair bridge.","setup.button_get_started":"Inizia","setup.create_account":"Crea un account utente","setup.create_account_reason":"\xC8 necessario configurare una password di autenticazione per l'interfaccia web di amministrazione di Homebridge. Anche se Homebridge \xE8 accessibile solo dalla rete locale, \xE8 comunque importante proteggerlo da accessi non autorizzati.","setup.open_dashboard":"Apri la dashboard","setup.welcome_to_homebridge":"Benvenuto in Homebridge",setup_wizard_message_complete_message:"La procedura di configurazione \xE8 stata completata ed \xE8 ora possibile iniziare a utilizzare Homebridge.",setup_wizard_message_complete_title:"Congratulazioni!",setup_wizard_message_restore:"Restore From Backup","status.code_scan":"Scansiona per aggiungere a HomeKit","status.cpu.load":"Carico della CPU","status.cpu.temp":"Temperatura","status.cpu.title_cpu":"CPU","status.credits.title":"Credits","status.homebridge.checking":"Verifico aggiornamenti\u2026","status.homebridge.up_to_date":"Aggiornato","status.memory.label_available":"Libera","status.memory.label_total":"Totale","status.memory.title_memory":"Memoria","status.network.received_per_second":"Ricevuti","status.network.sent_per_second":"Inviati","status.network.title_network":"Attivit\xE0 di rete","status.plugin_out_of_date":"Plugin da aggiornare","status.plugins_out_of_date":"Plugin da aggiornare","status.services.label_not_running":"Non in esecuzione","status.services.label_running":"In esecuzione","status.services.updates":"Update Centre","status.uptime.title_uptime":"Avviato da","status.widget.accessories.choose_accessories":"Scegli gli accessori da mostrare in questo widget dalla scheda Accessori.","status.widget.add.label_pairing_code":"Codice di abbinamento","status.widget.bridge.restart_error":"Failed to restart child bridge.","status.widget.clock":"Orologio","status.widget.clock_dateformat":"Formato della data","status.widget.clock_timeformat":"Formato dell'orario","status.widget.font_size":"Dimensione dei caratteri","status.widget.font_weight":"Stile dei caratteri","status.widget.hide_on_mobile":"Nascondi nella vista compatta (schermi dei cellulari)","status.widget.homebridge_logs":"Log di Homebridge","status.widget.info":"Informazioni di sistema","status.widget.info.config_path":"Percorso configurazione","status.widget.info.disabled":"Disabled","status.widget.info.docker":"Docker","status.widget.info.glibc_message":"This message indicates that your operating system does not support newer versions of Node.js. To resolve this and be able to install updated versions of Node.js in the future, you will need to update your operating system to a more recent version.","status.widget.info.glibc_title":"OS Update","status.widget.info.hostname":"Nome host","status.widget.info.ipv4":"IPv4","status.widget.info.ipv6":"IPv6","status.widget.info.no":"No","status.widget.info.node_unsupp":"Unsupported","status.widget.info.node_unsupp_message":"You are running a version of Node.js that is not officially supported by Homebridge. You should consider changing to a supported version.","status.widget.info.node_unsupp_title":"Unsupported Node Version","status.widget.info.node_update_message":"Homebridge requires Node.js installed on your system to run. From time to time, you will need to update the Node.js runtime to enable support for new features. Homebridge (and verified plugins) support all current Active and Maintenance LTS releases of Node.js.","status.widget.info.node_update_title":"Node Update","status.widget.info.nodejs_path":"Node.js Path","status.widget.info.nodejs_version":"Versione Node.js","status.widget.info.os":"Sistema operativo","status.widget.info.plugin_path":"Percorso plugin","status.widget.info.service_mode":"Modalit\xE0 servizio","status.widget.info.service_user":"Utente","status.widget.info.servicemode_message":"Standalone mode is no longer recommended. Setting up Homebridge and Homebridge UI with hb-service has the same benefits of standalone mode but is much easier to setup and maintain.","status.widget.info.servicemode_title":"Service Mode","status.widget.info.storage_path":"Percorso salvataggio","status.widget.info.synology_package":"Pacchetto Synology","status.widget.info.timezone":"Fuso orario","status.widget.info.yes":"Yes","status.widget.network.history_items":"History Items","status.widget.network.items":"items","status.widget.network.network_interface":"Network Interface","status.widget.network.none_selected":"None selected in settings - using default.","status.widget.network.refresh_interval":"Refresh Interval","status.widget.network.refresh_note":"Refresh the page after saving for changes to take effect.","status.widget.network.seconds":"seconds","status.widget.qr_paired":"Abbinato","status.widget.qr_unpaired":"No abbinato","status.widget.show_hide":"Show/Hide Widgets","status.widget.title_manage_widget":"Gestisci widget","status.widget.uptime.label_process":"Processo","status.widget.uptime.label_server":"Sistema","status.widget.weather.label_config_required_help":"Seleziona la tua citt\xE0 nelle impostazioni del widget.","status.widget.weather.label_search_for_your_city":"Cerca la tua citt\xE0:","status.widget.weather.title_weather":"Meteo","support.dev.api":"Homebridge API","support.dev.api_hap":"HAP-NodeJS API","support.dev.api_hap_sub":"HAP-NodeJS is an implementation of the HomeKit Accessory Server as specified in the HomeKit Accessory Protocol (HAP), which is defined by Apple as part of the HomeKit Framework.","support.dev.api_sub":"Homebridge is a lightweight Node.js server you can run on your home network to emulate the HomeKit Accessory Protocol (HAP).","support.dev.item_swagger":"Swagger Docs","support.dev.item_swagger_sub":"The Homebridge REST API allows you to interact with your Homebridge server using HTTP requests.","support.dev.template":"Plugin Template Repo","support.dev.template_sub":"A template Homebridge plugin that can be used as a base to help you get started developing your own plugin.","support.dev.title":"Developers","support.dev.verified":"Verified By Homebridge","support.dev.verified_sub":"The Verified By Homebridge program allows plugin developers to get their plugins reviewed and endorsed by the Homebridge project team.","support.links.discord":"Discord Server","support.links.discord_sub":"Join the Homebridge Discord chat server to chat with other users and developers.","support.links.documentation":"Documentation","support.links.documentation_sub":"The Homebridge documentation provides a wealth of information on how to get started with Homebridge and common issue resolutions.","support.links.issue":"Report An Issue","support.links.issue_sub":"If you are experiencing an issue with Homebridge, please open a new issue on GitHub. This should not be used for issues with specific plugins.","support.links.reddit":"Reddit Community","support.links.reddit_sub":"The Homebridge subreddit is a great place to share your Homebridge setup and ask for help.","support.links.title":"Useful Links","support.title":"Support","toast.no_auth":"Only administrators may access the requested page.","toast.title_error":"Errore","toast.title_success":"Completato","toast.title_warning":"Attenzione","users.button_add_new_user":"Aggiungi nuovo utente","users.button_add_user":"Aggiungi utente","users.label_admin_user":"Utente amministratore?","users.label_confirm_password":"Conferma password","users.label_full_name":"Nome completo","users.label_new_password":"Nuova password","users.label_password":"Password","users.label_username":"Utente","users.setup_2fa":"Configura l'autenticazione a 2 fattori","users.setup_2fa_activate_error":"An error occurred activating 2FA","users.setup_2fa_cannot_setup_2fa":"Impossibile configurare l'autenticazione a 2 fattori","users.setup_2fa_disable":"Disattiva l'autenticazione a 2 fattori","users.setup_2fa_disable_current_password":"Inserisci la tua password per disattivare l'autenticazione a 2 fattori:","users.setup_2fa_disable_success":"L'autenticazione a 2 fattori \xE8 stata disattivata.","users.setup_2fa_enable":"Attiva l'autenticazione a 2 fattori","users.setup_2fa_enable_error":"An error occurred setting up 2FA","users.setup_2fa_enabled_success":"L'autenticazione a 2 fattori \xE8 stata attivata.","users.setup_2fa_enter_code":"Inserisci il codice dalla tua app di autenticazione:","users.setup_2fa_scan_qr_code":"Acquisisci questo codice QR con la tua app di autenticazione:","users.setup_2fa_server_time_out":"L'orologio del tuo server \xE8 sbagliato di {{ timeDiffError }} ms. L'errore massimo ammesso \xE8 +/-5000 ms.","users.setup_2fa_warning":"Per il suo corretto funzionamento l'autenticazione a 2 fattori richiede che il tuo server Homebridge abbia un orario molto preciso. Se il tuo server non pu\xF2 mantenere preciso il suo orologio l'autenticazione a 2 fattori non dovrebbe essere attivata, pena il rischio di rimanere chiusi fuori dall'interfaccia di Homebridge.","users.title_add_user":"Aggiungi utente","users.title_edit_user":"Modifica utente","users.title_users":"Utenti","users.toast_added_new_user":"Nuovo utente aggiunto","users.toast_failed_to_add_user":"Impossibile aggiungere utente","users.toast_failed_to_delete_user":"Impossibile eliminare utente","users.toast_updated_user":"Utente aggiornato","users.toast_user_deleted":"Utente eliminato"}});var Is=y((Ed,_a)=>{_a.exports={"accessories.button_add_room":"\u90E8\u5C4B\u3092\u8FFD\u52A0","accessories.button_hidden_hide":"\u96A0\u3055\u308C\u305F\u9805\u76EE\u3092\u975E\u8868\u793A","accessories.button_hidden_show":"\u96A0\u3055\u308C\u305F\u9805\u76EE\u3092\u8868\u793A","accessories.control.auto":"\u81EA\u52D5","accessories.control.away":"\u5C4B\u5916","accessories.control.battery_charging":"\u5145\u96FB\u4E2D","accessories.control.battery_notchargeable":"\u5145\u96FB\u4E0D\u53EF","accessories.control.battery_notcharging":"\u653E\u96FB\u4E2D","accessories.control.brightness":"\u660E\u308B\u3055","accessories.control.closed":"\u9589\u9396\u6E08\u307F","accessories.control.closing":"\u9589\u9396\u4E2D","accessories.control.cool":"\u51B7\u623F","accessories.control.default_room":"\u30C7\u30D5\u30A9\u30EB\u30C8\u306E\u90E8\u5C4B","accessories.control.default_running_time":"\u30C7\u30D5\u30A9\u30EB\u30C8\u306E\u7A3C\u50CD\u6642\u9593","accessories.control.dehumidifying":"\u9664\u6E7F","accessories.control.detected":"Detected","accessories.control.drag_here":"\u3053\u3053\u306B\u30C9\u30E9\u30C3\u30B0","accessories.control.fan":"\u6247\u98A8\u6A5F","accessories.control.heat":"\u6696\u623F","accessories.control.home":"\u30DB\u30FC\u30E0","accessories.control.humidifying":"\u52A0\u6E7F","accessories.control.jammed":"\u5F15\u3063\u639B\u304B\u308B","accessories.control.light":"\u7167\u660E","accessories.control.locked":"\u65BD\u9320\u6E08\u307F","accessories.control.mute":"\u30DF\u30E5\u30FC\u30C8","accessories.control.night":"\u591C\u9593","accessories.control.not_detected":"Not Detected","accessories.control.not_mute":"\u30AA\u30F3","accessories.control.off":"\u30AA\u30D5","accessories.control.on":"\u30AA\u30F3","accessories.control.open":"\u958B\u653E\u6E08\u307F","accessories.control.opening":"\u958B\u653E\u4E2D","accessories.control.rotation_speed":"\u56DE\u8EE2\u901F\u5EA6","accessories.control.running":"\u7A3C\u50CD\u4E2D","accessories.control.speaker_volume":"\u30DC\u30EA\u30E5\u30FC\u30E0","accessories.control.stopped":"\u505C\u6B62\u6E08\u307F","accessories.control.target":"\u76EE\u6A19","accessories.control.target_humidity":"\u76EE\u6A19\u6E7F\u5EA6","accessories.control.target_temperature":"\u76EE\u6A19\u6E29\u5EA6","accessories.control.triggered":"\u691C\u77E5","accessories.control.unknown":"\u4E0D\u660E","accessories.control.unlocked":"\u89E3\u9320\u6E08\u307F","accessories.control_disabled":"Homebridge\u30A2\u30AF\u30BB\u30B5\u30EA\u64CD\u4F5C\u306F\u7121\u52B9\u3067\u3059","accessories.hide_this_accessory":"\u3053\u306E\u30A2\u30AF\u30BB\u30B5\u30EA\u3092\u975E\u8868\u793A","accessories.message_for_more_information":"\u8A73\u7D30","accessories.message_must_use_insecure_mode":"\u30A2\u30AF\u30BB\u30B5\u30EA\u3092\u64CD\u4F5C\u3059\u308B\u306B\u306FHomebridge\u3092 \u975E\u30BB\u30AD\u30E5\u30A2 \u30E2\u30FC\u30C9\u3067\u8D77\u52D5\u3059\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059","accessories.message_please_see":"\u6CE8\u610F","accessories.name":"\u540D\u524D","accessories.room_name":"\u90E8\u5C4B\u306E\u540D\u524D","accessories.rooms_not_appear_in_homekit":"\u3053\u3053\u3067\u4F5C\u6210\u3057\u305F\u90E8\u5C4B\u306FHomebridge UI\u3067\u30A2\u30AF\u30BB\u30B5\u30EA\u3092\u6574\u7406\u3059\u308B\u305F\u3081\u306E\u3082\u306E\u3067\u3001HomeKit\u30A2\u30D7\u30EA\u306B\u306F\u53CD\u6620\u3055\u308C\u307E\u305B\u3093\u3002","accessories.settings_link":"Homebridge\u306E\u8A2D\u5B9A\u306B\u306F\u3001\u30E1\u30A4\u30F3\u30E1\u30CB\u30E5\u30FC\u304B\u3089\u3044\u3064\u3067\u3082\u30A2\u30AF\u30BB\u30B9\u3067\u304D\u307E\u3059\u3002","accessories.show_on_dashboard":"\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u30A6\u30A3\u30B8\u30A7\u30C3\u30C8\u306B\u8868\u793A","accessories.title_accessories":"\u30A2\u30AF\u30BB\u30B5\u30EA","backup.backup_delete_failed":"Backup deletion failed. See logs for details.","backup.backup_download_failed":"\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u306E\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9\u306B\u5931\u6557\u3057\u307E\u3057\u305F","backup.backup_exceeds_max_size":"Backup ({{ backupSize }}) exceeds maximum restore file size of {{ maxBackupSizeText }}","backup.backup_help_one":"\u3042\u306A\u305F\u306EHomebridge\u74B0\u5883\u5168\u4F53\u306E\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u30A2\u30FC\u30AB\u30A4\u30D6\u3092\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9\u3057\u3066\u304F\u3060\u3055\u3044\u3002\u3053\u308C\u306B\u3088\u3063\u3066Homebridge\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u306E\u5168\u30B3\u30F3\u30C6\u30F3\u30C4\u304C\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u3055\u308C\u3001\u5F8C\u3067Homebridge UI\u3092\u5B9F\u884C\u3067\u304D\u308B\u74B0\u5883\u3092\u4EFB\u610F\u306E\u30D7\u30E9\u30C3\u30C8\u30D5\u30A9\u30FC\u30E0\u306B\u5FA9\u5143\u3059\u308B\u3053\u3068\u304C\u3067\u304D\u308B\u3088\u3046\u306B\u306A\u308A\u307E\u3059\u3002","backup.backup_help_two":"npm\u3067\u30DB\u30B9\u30C8\u3055\u308C\u3066\u3044\u306A\u3044\u3001\u307E\u305F\u306FGitHub\u304B\u3089\u76F4\u63A5\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u3055\u308C\u305F\u30D7\u30E9\u30B0\u30A4\u30F3\u306F\u3001\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u3057\u305F\u308A\u5FA9\u5143\u3057\u305F\u308A\u3059\u308B\u3053\u3068\u304C\u3067\u304D\u307E\u305B\u3093\u3002","backup.backup_restored":"\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u30A2\u30FC\u30AB\u30A4\u30D6\u3092\u5FA9\u5143\u3057\u307E\u3057\u305F","backup.backup_warning":"\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u30A2\u30FC\u30AB\u30A4\u30D6\u306B\u306F\u6A5F\u5BC6\u60C5\u5831\u304C\u542B\u307E\u308C\u3066\u3044\u308B\u305F\u3081\u3001\u7B2C\u4E09\u8005\u3068\u5171\u6709\u3059\u308B\u3053\u3068\u306F\u63A8\u5968\u3057\u307E\u305B\u3093\u3002","backup.button_restore_backup":"\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u3092\u5FA9\u5143","backup.label_choose_backup_file_to_restore":"\u5FA9\u5143\u3059\u308B\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u30D5\u30A1\u30A4\u30EB\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044\u2026","backup.label_uploading":"\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u4E2D\u2026","backup.load_error":"Failed to load config backup.","backup.now":"Now","backup.restore_failed":"\u5FA9\u5143\u306B\u5931\u6557\u3057\u307E\u3057\u305F","backup.restore_help_one":"Homebridge UI\u3092\u4F7F\u7528\u3057\u3066\u4EE5\u524D\u306B\u4F5C\u6210\u3057\u305F\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u30A2\u30FC\u30AB\u30A4\u30D6\u3092\u5FA9\u5143\u3057\u307E\u3059\u3002Homebridge\u8A2D\u5B9A/\u30AD\u30E3\u30C3\u30B7\u30E5\u3055\u308C\u305F\u30A2\u30AF\u30BB\u30B5\u30EA/HomeKit\u306E\u63A5\u7D9A\u60C5\u5831/Homebridge UI\u306E\u30E6\u30FC\u30B6\u30A2\u30AB\u30A6\u30F3\u30C8\u304C\u5FA9\u5143\u3055\u308C\u307E\u3059\u3002\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u3057\u3066\u3044\u305FHomebridge\u30D7\u30E9\u30B0\u30A4\u30F3\u3082npm\u7D4C\u7531\u3067\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9\u3055\u308C\u307E\u3059\u3002","backup.restore_help_two":"\u5FA9\u5143\u3057\u305F\u30A4\u30F3\u30B9\u30BF\u30F3\u30B9\u304B\u3089\u306E\u8CC7\u683C\u60C5\u5831\u3092\u4F7F\u7528\u3057\u3066\u5FA9\u5143\u3092\u884C\u306A\u3063\u305F\u5834\u5408\u3001Homebridge UI\u306B\u30ED\u30B0\u30A4\u30F3\u3059\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059\u3002","backup.restore_max_size":"You can restore a backup archive up to {{ maxBackupSizeText }} in size.","backup.restore_warning":"\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u304B\u3089\u306E\u5FA9\u5143\u306FHomebridge\u306E\u8A2D\u5B9A\u3092\u4E0A\u66F8\u304D\u3057\u307E\u3059\u3002\u5FA9\u5143\u5F8C\u306B\u5FA9\u5143\u524D\u306E\u30C7\u30FC\u30BF\u3092\u5FA9\u5143\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093\u3002","backup.scheduled_backup_time":"Homebridge\u30A4\u30F3\u30B9\u30BF\u30F3\u30B9\u306E\u5B8C\u5168\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u306F\u6BCE\u65E5 {{ backupTime }} \u306B\u81EA\u52D5\u3067\u4F5C\u6210\u3055\u308C\u3001 {{ dayCount }} \u65E5\u5206\u304C\u4FDD\u7BA1\u3055\u308C\u307E\u3059\u3002","backup.title_backup":"\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7","child_bridge.about":"Homebridge\u3067\u306F\u3001\u30D7\u30E9\u30B0\u30A4\u30F3\u306E\u30D7\u30E9\u30C3\u30C8\u30D5\u30A9\u30FC\u30E0\u3084\u30A2\u30AF\u30BB\u30B5\u30EA\u30FC\u3092\u3001\u5206\u96E2\u3055\u308C\u305F\u5B50\u30D6\u30EA\u30C3\u30B8\u3068\u3057\u3066\u5B9F\u884C\u3059\u308B\u3053\u3068\u304C\u3067\u304D\u307E\u3059\u3002\u3053\u308C\u306B\u3088\u308A\u3001Homebridge\u306E\u4E00\u822C\u7684\u306A\u5FDC\u7B54\u6027\u3068\u4FE1\u983C\u6027\u304C\u5411\u4E0A\u3057\u307E\u3059\u3002","child_bridge.bridge_connect":"HomeKit\u306B\u63A5\u7D9A","child_bridge.bridge_settings":"\u5B50\u30D6\u30EA\u30C3\u30B8\u306E\u8A2D\u5B9A","child_bridge.bridges":"HomeKit Bridges","child_bridge.bridges_paired":"\u5B50\u30D6\u30EA\u30C3\u30B8\u306E\u30D7\u30E9\u30C3\u30C8\u30D5\u30A9\u30FC\u30E0\u3084\u30A2\u30AF\u30BB\u30B5\u30EA\u30FC\u306F\u3001\u305D\u308C\u305E\u308C\u500B\u5225\u306BHomeKit\u3068\u30DA\u30A2\u30EA\u30F3\u30B0\u3059\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059\u3002","child_bridge.config.debug":"Debug Mode","child_bridge.config.description":"These fields are not required, but can be used to override the HomeKit configuration for this bridge.","child_bridge.config.firmware":"Firmware Version","child_bridge.config.header":"Configuration","child_bridge.config.manufacturer":"Manufacturer","child_bridge.config.model":"Model","child_bridge.config.name":"Name","child_bridge.must_configure_plugin":"\u30D6\u30EA\u30C3\u30B8\u8A2D\u5B9A\u3092\u7BA1\u7406\u3059\u308B\u524D\u306B\u3001\u3053\u306E\u30D7\u30E9\u30B0\u30A4\u30F3\u3092\u8A2D\u5B9A\u3059\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059\u3002","child_bridge.reset_accessories":"Reset Accessories","child_bridge.reset_accessories_list":"Choose from which child bridges you want to reset the accessories below:","child_bridge.restart":"\u5B50\u30D6\u30EA\u30C3\u30B8\u3092\u518D\u8D77\u52D5","child_bridge.restart_homebridge":"Homebridge\u3092\u518D\u8D77\u52D5\u3057\u3066\u3001\u3053\u306E\u5B50\u30D6\u30EA\u30C3\u30B8\u306E\u8A2D\u5B9A\u3092\u7D42\u4E86\u3057\u307E\u3059\u3002","child_bridge.restart_plural":"\u5B50\u30D6\u30EA\u30C3\u30B8\u3092\u518D\u8D77\u52D5","child_bridge.return_to_pair":"Homebridge\u306E\u518D\u8D77\u52D5\u5F8C\u306B\u3053\u306E\u753B\u9762\u306B\u623B\u308A\u3001\u30DA\u30A2\u30EA\u30F3\u30B0\u7528\u306EQR\u30B3\u30FC\u30C9\u3092\u8868\u793A\u3057\u307E\u3059\u3002","child_bridge.select_type":"\u5B50\u30D6\u30EA\u30C3\u30B8\u3068\u3057\u3066\u5B9F\u884C\u3059\u308B\u30D7\u30E9\u30C3\u30C8\u30D5\u30A9\u30FC\u30E0\u307E\u305F\u306F\u30A2\u30AF\u30BB\u30B5\u30EA\u3092\u9078\u629E\u3057\u307E\u3059\u3002","child_bridge.setup":"\u5B50\u30D6\u30EA\u30C3\u30B8\u3092\u8A2D\u5B9A","child_bridge.start":"\u5B50\u30D6\u30EA\u30C3\u30B8\u3092\u958B\u59CB","child_bridge.start_plural":"\u5B50\u30D6\u30EA\u30C3\u30B8\u3092\u958B\u59CB","child_bridge.stop":"\u5B50\u30D6\u30EA\u30C3\u30B8\u3092\u505C\u6B62","child_bridge.stop_plural":"\u5B50\u30D6\u30EA\u30C3\u30B8\u3092\u505C\u6B62","child_bridge.wiki_link":"\u5B50\u30D6\u30EA\u30C3\u30B8\u306B\u3064\u3044\u3066\u306E\u8A73\u7D30\u60C5\u5831","config.config_accessory_must_be_array":"accessories\u306F\u914D\u5217 [] \u3067\u306A\u3051\u308C\u3070\u306A\u308A\u307E\u305B\u3093","config.config_bridge_missing":"\u30D6\u30EA\u30C3\u30B8\u306E\u8A2D\u5B9A\u304C\u4E0D\u8DB3\u3057\u3066\u3044\u307E\u3059","config.config_invalid_json":"\u30B3\u30F3\u30D5\u30A3\u30B0\u306B\u4E0D\u6B63\u306AJSON\u304C\u542B\u307E\u308C\u3066\u3044\u307E\u3059","config.config_platform_must_be_array":"platforms\u306F\u914D\u5217 [] \u3067\u306A\u3051\u308C\u3070\u306A\u308A\u307E\u305B\u3093","config.config_username_error":"\u30D6\u30EA\u30C3\u30B8\u306E\u30E6\u30FC\u30B6\u30FC\u540D\u306F\u3001\u30B3\u30ED\u30F3\u3067\u533A\u5207\u3089\u308C\u305F6\u7D44\u306E16\u9032\u6587\u5B57\uFF08A-F 0-9\uFF09\u3067\u3042\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059\u3002","config.error_blocks_objects":"All {{ type }} blocks must be objects.","config.error_blocks_type":"All {{ type }} blocks must contain the {{ type }} attribute.","config.error_string_array":"Each item in the {{ key }} array must be a string.","config.error_string_type":"The {{ type }} attribute must be a string.","config.failed_to_save_config":"\u30B3\u30F3\u30D5\u30A3\u30B0\u306E\u4FDD\u5B58\u306B\u5931\u6557\u3057\u307E\u3057\u305F","config.restore.confirm":"[\u4FDD\u5B58]\u3092\u30AF\u30EA\u30C3\u30AF\u3057\u3066\u3053\u306E\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u3092\u5FA9\u5143\u3059\u308B\u3053\u3068\u3092\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044","config.restore.copy_to_editor":"\u30A8\u30C7\u30A3\u30BF\u306B\u8907\u88FD","config.restore.no_backups":"\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u306A\u3057","config.restore.title_restore_homebridge_backup":"Homebridge\u30B3\u30F3\u30D5\u30A3\u30B0\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u3092\u5FA9\u5143","config.restore.toast_backups_deleted":"\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u306F\u5168\u3066\u524A\u9664\u3055\u308C\u307E\u3057\u305F","config.title_backup_loaded":"\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u3092\u8AAD\u307F\u8FBC\u307F\u307E\u3057\u305F","form.button_cancel":"\u30AD\u30E3\u30F3\u30BB\u30EB","form.button_close":"\u9589\u3058\u308B","form.button_delete":"\u524A\u9664","form.button_disable":"\u7121\u52B9\u5316","form.button_download":"\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9","form.button_edit":"\u7DE8\u96C6","form.button_enable":"\u6709\u52B9\u5316","form.button_hide":"Hide","form.button_lock":"\u30ED\u30C3\u30AF","form.button_more_info":"\u8A73\u7D30\u60C5\u5831","form.button_remove":"\u524A\u9664","form.button_reset":"\u30EA\u30BB\u30C3\u30C8","form.button_restore":"\u5FA9\u5143","form.button_save":"\u4FDD\u5B58","form.button_show":"Show","form.button_unlock":"\u30ED\u30C3\u30AF\u89E3\u9664","form.button_unpair":"Unpair","form.label_invalid":"Config validation failed - you can still save your changes.","form.label_invalid_strict":"Config validation failed - please review the form before saving.","form.label_valid":"Config validation passed.","form.select.auto":"Automatic (Use Browser Settings)","login.button_login":"\u30ED\u30B0\u30A4\u30F3","login.invalid_credentials":"\u30E6\u30FC\u30B6\u30FC\u540D\u30FB\u30D1\u30B9\u30EF\u30FC\u30C9\u304C\u9593\u9055\u3063\u3066\u3044\u307E\u3059","login.label_2fa_code":"\u4E8C\u6BB5\u968E\u8A8D\u8A3C\u30B3\u30FC\u30C9","login.label_password":"\u30D1\u30B9\u30EF\u30FC\u30C9","login.label_username":"\u30E6\u30FC\u30B6\u30FC\u540D","login.message_invalid_2fa_code":"\u5165\u529B\u3055\u308C\u305F\u30B3\u30FC\u30C9\u306F\u9593\u9055\u3063\u3066\u3044\u308B\u304B\u3001\u671F\u9650\u5207\u308C\u3067\u3059\u3002","logs.download.error":"Failed to download log file.","logs.download_warning":"Homebridge\u306E\u30ED\u30B0\u30D5\u30A1\u30A4\u30EB\u306B\u306F\u3001\u500B\u4EBA\u60C5\u5831\u3001\u30D1\u30B9\u30EF\u30FC\u30C9\u3001\u307E\u305F\u306F\u30A2\u30AF\u30BB\u30B9\u30C8\u30FC\u30AF\u30F3\u304C\u542B\u307E\u308C\u3066\u3044\u308B\u53EF\u80FD\u6027\u304C\u3042\u308A\u307E\u3059\u3002\u7B2C\u4E09\u8005\u3068\u5171\u6709\u3059\u308B\u524D\u306B\u30ED\u30B0\u30D5\u30A1\u30A4\u30EB\u3092\u78BA\u8A8D\u3057\u3001\u6A5F\u5BC6\u60C5\u5831\u3092\u524A\u9664\u3057\u3066\u304F\u3060\u3055\u3044\u3002","logs.log_file_truncated":"\u30ED\u30B0\u30D5\u30A1\u30A4\u30EB\u3092\u524A\u9664\u3057\u307E\u3057\u305F","logs.title_download_log_file":"\u30ED\u30B0\u30D5\u30A1\u30A4\u30EB\u3092\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9","logs.title_truncate_log_file":"\u30ED\u30B0\u30D5\u30A1\u30A4\u30EB\u3092\u524A\u9664","logs.truncate.error":"Failed to truncate log file.","logs.truncate_log_warning":"\u3053\u306E\u64CD\u4F5C\u306B\u3088\u3063\u3066\u30ED\u30B0\u30D5\u30A1\u30A4\u30EB\u3092\u524A\u9664\u3057\u307E\u3059\u3002\u524A\u9664\u5F8C\u3001\u5FA9\u5143\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093\u3002\u7D9A\u884C\u3057\u307E\u3059\u304B\uFF1F","menu.config_json_editor":"JSON Config","menu.docker.restart_container":"\u30B3\u30F3\u30C6\u30CA\u3092\u518D\u8D77\u52D5","menu.docker.startup_script":"\u8D77\u52D5\u30B9\u30AF\u30EA\u30D7\u30C8","menu.docker.terminal":"\u30BF\u30FC\u30DF\u30CA\u30EB","menu.hbrestart.confirm_hb":"Homebridge\u3092\u518D\u8D77\u52D5","menu.hbrestart.confirm_ui":"HB \u30B5\u30FC\u30D3\u30B9\u3068UI\u3092\u518D\u8D77\u52D5","menu.hbrestart.title":"Homebridge\u3092\u518D\u8D77\u52D5","menu.label_accessories":"\u30A2\u30AF\u30BB\u30B5\u30EA","menu.label_plugins":"\u30D7\u30E9\u30B0\u30A4\u30F3","menu.label_settings":"Settings","menu.label_settings_advanced":"UI Advanced Settings","menu.label_status":"\u72B6\u614B","menu.linux.label_logs":"Logs","menu.linux.label_restart_server":"\u30B5\u30FC\u30D0\u30FC\u3092\u518D\u8D77\u52D5","menu.linux.label_shutdown_server":"\u30B5\u30FC\u30D0\u30FC\u3092\u7D42\u4E86","menu.linux.label_terminal":"\u30BF\u30FC\u30DF\u30CA\u30EB","menu.restart.title":"\u96FB\u6E90\u30AA\u30D7\u30B7\u30E7\u30F3","menu.settings.title":"\u8A2D\u5B9A","menu.tooltip_logout":"\u30ED\u30B0\u30A2\u30A6\u30C8","menu.tooltip_restart":"\u518D\u8D77\u52D5","menu.tooltip_user_accounts":"\u30E6\u30FC\u30B6\u30FC\u30A2\u30AB\u30A6\u30F3\u30C8","menu.tooltip_view_logs":"\u30ED\u30B0\u3092\u898B\u308B","platform.docker.container_restarted":"Docker\u30B3\u30F3\u30C6\u30CA\u3092\u518D\u8D77\u52D5\u3057\u307E\u3057\u305F","platform.docker.must_use_hashbang":"\u30B9\u30AF\u30EA\u30D7\u30C8\u306B\u30CF\u30C3\u30B7\u30E5\u30BF\u30B0[#!/bin/sh]\u3092\u4F7F\u7528\u3057\u306A\u3051\u308C\u3070\u306A\u308A\u307E\u305B\u3093","platform.docker.restart_required":"\u5909\u66F4\u3092\u6709\u52B9\u306B\u3059\u308B\u306B\u306F\u3001\u3053\u306EDocker\u30B3\u30F3\u30C6\u30CA\u3092\u518D\u8D77\u52D5\u3059\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059\u3002","platform.docker.run_with_restart":"Docker\u30B3\u30F3\u30C6\u30CA\u3092 <code>--restart=always</code>\u3067\u8D77\u52D5\u3057\u3066\u3044\u308B\u3053\u3068\u3092\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044","platform.docker.script_help":"\u3053\u306E\u30B9\u30AF\u30EA\u30D7\u30C8\u306FDocker\u30B3\u30F3\u30C6\u30CA\u304C\u8D77\u52D5\u3059\u308B\u305F\u3073\u306B\u5B9F\u884C\u3055\u308C\u307E\u3059\u3002\u3053\u308C\u3092\u4F7F\u7528\u3057\u3066\u3001ffmpeg\u3084libpcap-dev\u306A\u3069\u3001\u30D7\u30E9\u30B0\u30A4\u30F3\u304C\u5FC5\u8981\u3068\u3059\u308B\u53EF\u80FD\u6027\u304C\u3042\u308B\u8FFD\u52A0\u306E\u30D1\u30C3\u30B1\u30FC\u30B8\u3092\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u3067\u304D\u307E\u3059\u3002","platform.docker.script_saved":"\u8D77\u52D5\u30B9\u30AF\u30EA\u30D7\u30C8\u3092\u4FDD\u5B58\u3057\u307E\u3057\u305F","platform.docker.server_long_time":"\u30B5\u30FC\u30D0\u30FC\u306E\u518D\u8D77\u52D5\u306B\u6642\u9593\u304C\u304B\u304B\u3063\u3066\u3044\u307E\u3059\u3002\u624B\u52D5\u3067Docker\u30B3\u30F3\u30C6\u30CA\u3092\u518D\u8D77\u52D5\u3059\u308B\u5FC5\u8981\u304C\u3042\u308B\u53EF\u80FD\u6027\u304C\u3042\u308A\u307E\u3059\u3002","platform.docker.title_restarting":"Docker\u30B3\u30F3\u30C6\u30CA\u3092\u518D\u8D77\u52D5\u3057\u3066\u3044\u307E\u3059","platform.linux.long_time":"\u30B5\u30FC\u30D0\u30FC\u306E\u518D\u8D77\u52D5\u306B\u6642\u9593\u304C\u304B\u304B\u3063\u3066\u3044\u307E\u3059\u3002\u624B\u52D5\u3067\u30B5\u30FC\u30D0\u30FC\u3092\u518D\u8D77\u52D5\u3059\u308B\u5FC5\u8981\u304C\u3042\u308B\u53EF\u80FD\u6027\u304C\u3042\u308A\u307E\u3059\u3002","platform.linux.restart":"\u3053\u306E\u30DA\u30FC\u30B8\u306F\u30B5\u30FC\u30D0\u30FC\u304C\u30AA\u30F3\u30E9\u30A4\u30F3\u306B\u5FA9\u5E30\u3059\u308B\u3068\u81EA\u52D5\u3067\u30EA\u30C0\u30A4\u30EC\u30AF\u30C8\u3057\u307E\u3059\u3002\u3057\u3070\u3089\u304F\u304A\u5F85\u3061\u304F\u3060\u3055\u3044\u3002","platform.linux.restarting_server":"\u30B5\u30FC\u30D0\u30FC\u3092\u518D\u8D77\u52D5\u4E2D","platform.linux.server_restart_error":"\u30B5\u30FC\u30D0\u30FC\u518D\u8D77\u52D5\u30B3\u30DE\u30F3\u30C9\u3092\u9001\u4FE1\u4E2D\u306B\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u307E\u3057\u305F","platform.linux.server_restarted":"\u30B5\u30FC\u30D0\u30FC\u304C\u518D\u8D77\u52D5\u3057\u307E\u3057\u305F","platform.linux.server_taking_long_time":"\u30B5\u30FC\u30D0\u30FC\u304C\u30AA\u30F3\u30E9\u30A4\u30F3\u306B\u5FA9\u5E30\u3059\u308B\u306E\u306B\u6642\u9593\u304C\u304B\u304B\u3063\u3066\u3044\u307E\u3059","platform.linux.server_will_power_down":"\u30B5\u30FC\u30D0\u30FC\u306F\u307E\u3082\u306A\u304F\u505C\u6B62\u3057\u307E\u3059","platform.linux.shutting_down_server":"\u30B5\u30FC\u30D0\u30FC\u3092\u7D42\u4E86\u3057\u3066\u3044\u307E\u3059","platform.version.restart_required":"Homebridge UI v{{ uiVersion }} \u304C\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u3055\u308C\u307E\u3057\u305F\u304C\u3001, \u30B5\u30FC\u30D0\u30FC\u30B5\u30FC\u30D3\u30B9\u306F\u4F9D\u7136\u3068\u3057\u3066 v{{ serverVersion }} \u3092\u5B9F\u884C\u3057\u3066\u3044\u307E\u3059\u3002","platform.version.service_restart_required":"\u518D\u8D77\u52D5\u304C\u5FC5\u8981","plugins.bridge.action_error":"Failed to {{ action }} child bridge(s).","plugins.button_homepage":"\u30D7\u30E9\u30B0\u30A4\u30F3\u306E\u30DB\u30FC\u30E0\u30DA\u30FC\u30B8","plugins.button_set_up":"\u521D\u671F\u8A2D\u5B9A","plugins.button_settings":"\u8A2D\u5B9A","plugins.button_uninstall":"\u30A2\u30F3\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB","plugins.button_update":"\u66F4\u65B0","plugins.compat.are_you_sure":"Are you sure you want to continue anyway?","plugins.compat.hb_node_too_low":"{{ packageName }} v{{ latestVersion }} \u306E\u7A3C\u50CD\u306B\u306FNode.js v{{ minVersion }} \u4EE5\u964D\u304C\u5FC5\u8981\u3067\u3059\u3002\u73FE\u5728\u3001Node.js {{ installedVersion }} \u3092\u5B9F\u884C\u3057\u3066\u3044\u307E\u3059\u3002","plugins.compat.hb_too_low":"\u30D7\u30E9\u30B0\u30A4\u30F3 {{ pluginName }} Homebridge v{{ minVersion }} \u4EE5\u964D\u3067\u306E\u7A3C\u50CD\u3092\u63A8\u5968\u3057\u3066\u3044\u307E\u3059\u3002\u73FE\u5728\u3001Homebridge v{{ installedVersion }} \u3092\u5B9F\u884C\u3057\u3066\u3044\u307E\u3059\u3002","plugins.compat.node_first":"{{ packageName }}\u3092\u66F4\u65B0\u3059\u308B\u524D\u306BNode.js\u3092\u66F4\u65B0\u3057\u3066\u304F\u3060\u3055\u3044\u3002","plugins.compat.node_link":"How To Update Node.js","plugins.compat.node_too_low":"\u30D7\u30E9\u30B0\u30A4\u30F3 {{ pluginName }} Node.js v{{ minVersion }} \u4EE5\u964D\u3067\u306E\u7A3C\u50CD\u3092\u63A8\u5968\u3057\u3066\u3044\u307E\u3059\u3002\u73FE\u5728\u3001Node.js {{ installedVersion }} \u3092\u5B9F\u884C\u3057\u3066\u3044\u307E\u3059\u3002","plugins.compat.title":"Compatibility Check","plugins.config.load_error":"Failed to load plugin config.","plugins.config.must_be_array":"Plugin config must be an array.","plugins.config.must_be_array_objects":"Plugin config must be an array of objects.","plugins.config.must_be_object":"Config block must be an object.","plugins.config.name_property":'Accessory must have a valid "name" attribute',"plugins.config.please_fix":"Please fix validation errors before adding a new block.","plugins.config.remove_error":"Failed to remove plugin config.","plugins.disable.error":"Failed to disable plugin.","plugins.donate.button_not_verified":"\u672A\u78BA\u8A8D","plugins.donate.button_verified":"\u78BA\u8A8D\u6E08\u307F","plugins.donate.message_1":"\u3088\u308A\u591A\u304F\u306E\u30E6\u30FC\u30B6\u30FC\u304CHomebridge UI\u3092\u901A\u3058\u3066\u30D7\u30E9\u30B0\u30A4\u30F3\u3092\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u3059\u308B\u305F\u3081\u3001\u958B\u767A\u8005\u3092\u30B5\u30DD\u30FC\u30C8\u3059\u308B\u65B9\u6CD5\u304C\u901A\u5E38\u8868\u793A\u3055\u308C\u308B\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u306EGitHub\u30DA\u30FC\u30B8\u306B\u30A2\u30AF\u30BB\u30B9\u3059\u308B\u53EF\u80FD\u6027\u306F\u4F4E\u304F\u306A\u308A\u307E\u3059\u3002","plugins.donate.message_2":"Homebridge\u306EUI\u306B\u76F4\u63A5\u5BC4\u4ED8\u30EA\u30F3\u30AF\u3092\u8FFD\u52A0\u3059\u308B\u3053\u3068\u3067\u3001\u30E6\u30FC\u30B6\u30FC\u304CHomebridge\u306E\u958B\u767A\u8005\u3092\u30B5\u30DD\u30FC\u30C8\u3059\u308B\u65B9\u6CD5\u3092\u78BA\u5B9F\u306B\u77E5\u308B\u3053\u3068\u304C\u3067\u304D\u307E\u3059\u3002","plugins.donate.tile_donate_to":"{{ author }} \u306B\u5BC4\u4ED8\u3059\u308B","plugins.enable.error":"Failed to enable plugin.","plugins.manage.all_versions":"All versions","plugins.manage.child_bridge_restart":"Child bridge restarted successfully.","plugins.manage.child_bridge_restart_failed":"\u30D7\u30E9\u30B0\u30A4\u30F3\u306E\u518D\u8D77\u52D5\u306B\u5931\u6557\u3057\u307E\u3057\u305F\u3002Homebridge\u3092\u624B\u52D5\u3067\u518D\u8D77\u52D5\u3057\u3066\u304F\u3060\u3055\u3044\u3002","plugins.manage.confirm_disable":"Are you sure you want to disable {{ pluginName }}?","plugins.manage.confirm_disable_accessory_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen and removed from HomeKit.","plugins.manage.confirm_disable_accessory_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and HomeKit. The accessories will lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_disable_platform_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen but remain in HomeKit with a 'No Response' label.","plugins.manage.confirm_disable_platform_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and become controllable again in HomeKit. The accessories will not lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_enable":"\u672C\u5F53\u306B {{ pluginName }} \u3092\u6709\u52B9\u306B\u3057\u307E\u3059\u304B\uFF1F","plugins.manage.disable":"\u7121\u52B9\u5316","plugins.manage.enable":"\u6709\u52B9\u5316","plugins.manage.information":"\u30D7\u30E9\u30B0\u30A4\u30F3\u60C5\u5831","plugins.manage.install":"\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB","plugins.manage.installed":"\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u6E08","plugins.manage.json_config":"JSON\u306E\u30B3\u30F3\u30D5\u30A3\u30B0","plugins.manage.manage_version":"\u4EE5\u524D\u306E\u30D0\u30FC\u30B8\u30E7\u30F3\u3092\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB","plugins.manage.manual_update_command":"To upgrade the package run open a Node.js command prompt as an Administrator and run the following commands:","plugins.manage.manual_update_required":"\u624B\u52D5\u66F4\u65B0\u304C\u5FC5\u8981\u3067\u3059","plugins.manage.online_updates":"Windows\u3067\u306F\u30AA\u30F3\u30E9\u30A4\u30F3\u66F4\u65B0\u306F\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002Homebridge\u30B5\u30FC\u30D3\u30B9\u3092\u505C\u6B62\u3057\u305F\u5F8C\u3001\u624B\u52D5\u3067Homebridge UI\u3092\u30A2\u30C3\u30D7\u30B0\u30EC\u30FC\u30C9\u3059\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059\u3002","plugins.manage.plugin_logs":"\u30D7\u30E9\u30B0\u30A4\u30F3\u306E\u30ED\u30B0","plugins.manage.release_notes":"\u30EA\u30EA\u30FC\u30B9\u30CE\u30FC\u30C8","plugins.manage.scoped.error":"An error occurred. You can download the logs below.","plugins.manage.scoped.info":"For more information about scoped plugins and why to switch, see the wiki page {{ link }}.","plugins.manage.scoped.process":"This process will not affect your Homebridge/HomeKit accessories. You will not be able to cancel the process once it has started. It will:","plugins.manage.scoped.switch":"Switch To Scoped Plugin","plugins.manage.scoped.windows":"Online updates are not supported on Windows. You will need to install the new plugin and uninstall the old plugin manually.","plugins.manage.scoped.windows_service":'You should <span class="font-weight-bold">not</span> restart Homebridge until both steps are complete.',"plugins.manage.select_version":"\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u3059\u308B\u30D0\u30FC\u30B8\u30E7\u30F3\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044\u3002","plugins.manage.thanks_for_updating":"{{ pluginName }} \u306E\u6700\u65B0\u30D0\u30FC\u30B8\u30E7\u30F3\u3092\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u3057\u3066\u3044\u305F\u3060\u304D\u3042\u308A\u304C\u3068\u3046\u3054\u3056\u3044\u307E\u3059\u3002","plugins.manage.uninstall":"\u30A2\u30F3\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB","plugins.manage.uninstalled":"\u524A\u9664\u6E08","plugins.manage.unverified_message":"\u672A\u691C\u8A3C\u306EHomebridge\u30D7\u30E9\u30B0\u30A4\u30F3\u306F\u3001Homebridge\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30C1\u30FC\u30E0\u306B\u3088\u308B\u30EC\u30D3\u30E5\u30FC\u30D7\u30ED\u30BB\u30B9\u3092\u7D4C\u3066\u3044\u306A\u3044\u3053\u3068\u3092\u793A\u3057\u307E\u3059\u3002\u691C\u8A3C\u306E\u6B20\u5982\u306F\u3001\u5FC5\u305A\u3057\u3082\u975E\u52B9\u7387\u6027\u3084\u5B89\u5168\u6027\u306E\u61F8\u5FF5\u3092\u610F\u5473\u3059\u308B\u3082\u306E\u3067\u306F\u3042\u308A\u307E\u305B\u3093\u3002\u4F5C\u8005\u306F\u3055\u307E\u3056\u307E\u306A\u7406\u7531\u3067\u691C\u8A3C\u3092\u884C\u308F\u306A\u3044\u3053\u3068\u3092\u9078\u629E\u3057\u305F\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002","plugins.manage.unverified_subtitle":"{{ pluginName }} \u306F\u691C\u8A3C\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002","plugins.manage.unverified_title":"\u691C\u8A3C\u3055\u308C\u3066\u3044\u306A\u3044\u30D7\u30E9\u30B0\u30A4\u30F3","plugins.manage.update":"\u66F4\u65B0","plugins.manage.updated":"\u66F4\u65B0\u6E08","plugins.manage.verified_message":"\u691C\u8A3C\u6E08\u307F\u3068\u8868\u793A\u3055\u308C\u3066\u3044\u308BHomebridge\u30D7\u30E9\u30B0\u30A4\u30F3\u306F\u3001Homebridge\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30C1\u30FC\u30E0\u306B\u3088\u3063\u3066\u30EC\u30D3\u30E5\u30FC\u3055\u308C\u3001\u30D9\u30B9\u30C8\u30D7\u30E9\u30AF\u30C6\u30A3\u30B9\u3068\u30C8\u30E9\u30D6\u30EB\u306E\u306A\u3044\u30E6\u30FC\u30B6\u30FC\u30A8\u30AF\u30B9\u30DA\u30EA\u30A8\u30F3\u30B9\u3092\u4FC3\u9032\u3059\u308B\u69D8\u3005\u306A\u8981\u4EF6\u3092\u6E80\u305F\u3057\u3066\u3044\u308B\u3053\u3068\u304C\u78BA\u8A8D\u3055\u308C\u3066\u3044\u307E\u3059\u3002","plugins.manage.verified_subtitle":"{{ pluginName }} \u306F\u691C\u8A3C\u6E08\u307F","plugins.manage.verified_title":"\u691C\u8A3C\u3055\u308C\u305F\u30D7\u30E9\u30B0\u30A4\u30F3","plugins.node_update.continue":"Continue","plugins.placeholder_search_first":"\u4E0A\u90E8\u306E\u691C\u7D22\u30D0\u30FC\u3092\u4F7F\u3063\u3066\u6700\u521D\u306E\u30D7\u30E9\u30B0\u30A4\u30F3\u3092\u898B\u3064\u3051\u308B","plugins.placeholder_search_plugin":"\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u3059\u308B\u30D7\u30E9\u30B0\u30A4\u30F3\u3092\u691C\u7D22\u2026","plugins.settings.custom.homebridge-gsh.label_account_linked":"\u30A2\u30AB\u30A6\u30F3\u30C8\u9023\u643A\u6E08\u307F","plugins.settings.custom.homebridge-gsh.label_link_account":"\u30A2\u30AB\u30A6\u30F3\u30C8\u3068\u9023\u643A\u3059\u308B","plugins.settings.custom.homebridge-gsh.label_unlink_account":"\u30A2\u30AB\u30A6\u30F3\u30C8\u3068\u306E\u9023\u643A\u3092\u89E3\u9664\u3059\u308B","plugins.settings.custom.homebridge-gsh.message_about":"Homebridge Google Smart Home \u30D7\u30E9\u30B0\u30A4\u30F3\u3092\u4F7F\u7528\u3059\u308B\u3068\u3001Google Home\u5BFE\u5FDC\u5C0F\u91CE\u30B9\u30DE\u30FC\u30C8\u30B9\u30D4\u30FC\u30AB\u30FC\u3084Google Home\u30E2\u30D0\u30A4\u30EB\u30A2\u30D7\u30EA\u304B\u3089Homebridge\u30A2\u30AF\u30BB\u30B5\u30EA\u3092\u5236\u5FA1\u3059\u308B\u3053\u3068\u304C\u3067\u304D\u307E\u3059\u3002","plugins.settings.custom.homebridge-gsh.message_account_link_required":"\u3053\u306E\u6A5F\u80FD\u3092\u6709\u52B9\u306B\u3059\u308B\u306B\u306F\u3001Google\u307E\u305F\u306FGitHub\u30A2\u30AB\u30A6\u30F3\u30C8\u3067\u30ED\u30B0\u30A4\u30F3\u3059\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059\u3002Google Home\u30E2\u30D0\u30A4\u30EB\u30A2\u30D7\u30EA\u306BHomebridge\u30A2\u30AF\u30B7\u30E7\u30F3\u3092\u8FFD\u52A0\u3059\u308B\u969B\u306B\u306F\u3001\u540C\u3058\u30A2\u30AB\u30A6\u30F3\u30C8\u3092\u4F7F\u7528\u3057\u3066\u304F\u3060\u3055\u3044\u3002","plugins.settings.custom.homebridge-gsh.message_homebridge_restart_required":"\u5909\u66F4\u3092\u53CD\u6620\u3059\u308B\u306B\u306F\u3001Homebridge\u306E\u518D\u8D77\u52D5\u304C\u5FC5\u8981\u3067\u3059\u3002","plugins.settings.custom.homebridge-gsh.message_invalid_token":"Invalid account linking token in config.json","plugins.settings.deconz.dump_no_exist":"Homebridge deCONZ dump file does not exist yet.","plugins.settings.hue.dump_no_exist":"Homebridge Hue dump file does not exist yet.","plugins.settings.label_open_config_editor":"\u30B3\u30F3\u30D5\u30A3\u30B0\u30A8\u30C7\u30A3\u30BF\u3092\u958B\u304F","plugins.settings.message_consult_documentation":"\u3053\u306E\u30D7\u30E9\u30B0\u30A4\u30F3\u3092\u6B63\u3057\u304F\u8A2D\u5B9A\u3059\u308B\u65B9\u6CD5\u306B\u3064\u3044\u3066\u306F\u3001\u30D7\u30E9\u30B0\u30A4\u30F3\u306E\u30C9\u30AD\u30E5\u30E1\u30F3\u30C8\u3092\u53C2\u7167\u3057\u3066\u304F\u3060\u3055\u3044\u3002","plugins.settings.message_manual_config_required":"\u3053\u306E\u30D7\u30E9\u30B0\u30A4\u30F3\u306F\u3001Homebridge UI Config Editor\u3092\u4F7F\u7528\u3057\u3066\u624B\u52D5\u3067\u8A2D\u5B9A\u3059\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059\u3002","plugins.settings.plugin_config_saved":"\u30D7\u30E9\u30B0\u30A4\u30F3\u306E\u30B3\u30F3\u30D5\u30A3\u30B0\u304C\u4FDD\u5B58\u3055\u308C\u307E\u3057\u305F","plugins.settings.restart_required":"\u5909\u66F4\u3092\u9069\u7528\u3059\u308B\u305F\u3081\u306BHomebridge\u3092\u518D\u8D77\u52D5\u3057\u3066\u304F\u3060\u3055\u3044","plugins.settings.title_settings":"\u8A2D\u5B9A","plugins.status_disabled":"\u7121\u52B9","plugins.status_installed":"\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u6E08","plugins.toast_failed_to_load_plugin_schema":"Failed to load plugin config schema.","plugins.toast_failed_to_load_plugins":"\u30D7\u30E9\u30B0\u30A4\u30F3\u306E\u8AAD\u307F\u8FBC\u307F\u306B\u5931\u6557\u3057\u307E\u3057\u305F","plugins.uninstall_bridge_error":"Failed to remove child bridge.","plugins.uninstall_remove_config_required":"\u3053\u306E\u30D7\u30E9\u30B0\u30A4\u30F3\u3092\u6C38\u4E45\u306B\u524A\u9664\u3059\u308B\u5834\u5408\u306F\u3001Homebridge\u3092\u518D\u8D77\u52D5\u3059\u308B\u524D\u306BConfig.json\u3067\u3053\u306E\u30D7\u30E9\u30B0\u30A4\u30F3\u306E\u8A2D\u5B9A\u3092\u524A\u9664\u3057\u3066\u304F\u3060\u3055\u3044\u3002","plugins.uninstall_remove_confirmation":"\u672C\u5F53\u306B\u30D7\u30E9\u30B0\u30A4\u30F3 {{ pluginName }} \u3092\u30A2\u30F3\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u3057\u307E\u3059\u304B\uFF1F","plugins.uninstall_remove_plugin_config":"\u30D7\u30E9\u30B0\u30A4\u30F3\u30B3\u30F3\u30D5\u30A3\u30B0\u3092\u524A\u9664\u3057\u307E\u3059\u304B\uFF1F","plugins.uninstall_unpair_child_bridge":"Unpair plugin child bridge?","plugins.uninstall_unpair_child_bridges":"Unpair {{ count }} plugin child bridges?","reset.accessory_reset":"Homebridge\u30A2\u30AF\u30BB\u30B5\u30EA\u306E\u521D\u671F\u5316","reset.action_is_irreversible":"\u3053\u306E\u64CD\u4F5C\u306F\u5143\u306B\u623B\u305B\u307E\u305B\u3093\u3002\u6C7A\u5B9A\u3059\u308B\u524D\u306B\u3088\u304F\u304A\u8AAD\u307F\u304F\u3060\u3055\u3044\u3002","reset.bridges.desc":"If you are having trouble pairing Homebridge, an external accessory or a child bridge to HomeKit, you may need to unpair it from HomeKit to start again.","reset.bridges.empty":"You have no bridges to unpair from HomeKit.","reset.bridges.title":"Bridges","reset.bridges_all.desc":"Unpair all bridges from HomeKit. This includes the main Homebridge bridge, child bridges and bridges for external accessories.","reset.bridges_all.list_1":"This will unpair the Homebridge bridge, all child bridges and bridges for external accessories from HomeKit.","reset.bridges_all.list_2":"Note that your accessories will continue to show in HomeKit as no response, until the bridges are manually removed from HomeKit. You can do this in the Home app, by accessing Home Settings \u2192 Home Hubs & Bridges \u2192 {Bridge} \u2192 Remove Bridge from Home.","reset.bridges_all.list_3":"All your Homebridge to HomeKit accessories, scenes and automations will need to be reconfigured after the unpairing.","reset.bridges_all.list_4":"The pin for pairing your Homebridge bridge to HomeKit will be changed. You can see the new values in your Homebridge config after the unpairing.","reset.bridges_all.title":"Unpair All Bridges","reset.bridges_single.desc":"Unpair a single bridge from HomeKit. This may be a child bridge or a bridge for an external accessory like a camera or TV.","reset.bridges_single.list_1":"When unpairing a bridge, any accessories published by this bridge will be removed from the Homebridge cache.","reset.bridges_single.list_2":"The accessories will become stale in HomeKit (showing no response). To remove them, you will need to manually remove this bridge from HomeKit. You can do this in the Home app from the Home Settings section.","reset.bridges_single.list_3":"You can then attempt to pair the bridge again if required.","reset.bridges_single.title":"Unpair Single Bridge","reset.cached_accessory_removed":"\u30AD\u30E3\u30C3\u30B7\u30E5\u3055\u308C\u305F\u30A2\u30AF\u30BB\u30B5\u30EA\u304C\u524A\u9664\u3055\u308C\u307E\u3057\u305F\u3002","reset.clear_cache_all.desc":"Remove all accessories from the cache.","reset.clear_cache_all.list_1":"When clicking on the remove button below, Homebridge will restart and all your existing accessories will be removed from Homebridge and HomeKit.","reset.clear_cache_all.list_2":"All associated HomeKit data will also be removed, this includes room associations, scenes and automations that this accessory uses.","reset.clear_cache_all.list_3":"After Homebridge restarts, your plugins will re-add any accessories as if the plugin was being installed for the first time.","reset.clear_cache_all.title":"Remove All Accessories","reset.clear_cache_bridge.desc":"Remove all accessories published by a bridge from the cache.","reset.clear_cache_bridge.empty":"You have no bridges from which to remove accessories.","reset.clear_cache_bridge.list_1":"This function can be used to reset a plugin's existing accessories in HomeKit. They will be removed from Homebridge/HomeKit and then re-added by the plugin as new accessories.","reset.clear_cache_bridge.list_2":"The child bridge's pairing details and status will remain the same.","reset.clear_cache_bridge.title":"Remove Bridge Accessories","reset.clear_cache_single.desc":"Remove a single accessory from the cache.","reset.clear_cache_single.list_1":"Some plugins don't clean up after themselves properly! If an accessory that you no longer have in Homebridge is still being displayed in HomeKit, you can remove it from the cache.","reset.clear_cache_single.list_2":"This function can be used to reset an existing accessory in HomeKit. It will be removed from Homebridge/HomeKit and then re-added by the plugin as a new accessory.","reset.clear_cache_single.list_3":"When removing an accessory from the cache, all its associated HomeKit data will be removed. This includes any associated scenes and automations that use this accessory.","reset.clear_cache_single.list_4":"Accessories can only be removed when Homebridge is not running. Homebridge will automatically restart when clicking on each of the remove buttons below. If you need to remove multiple accessories, please be patient and allow Homebridge to restart between each removal.","reset.clear_cache_single.title":"Remove Single Accessory","reset.delete_failed":"\u30A2\u30AF\u30BB\u30B5\u30EA\u306E\u524A\u9664\u306B\u5931\u6557\u3057\u307E\u3057\u305F","reset.delete_success":"Homebridge\u3092\u518D\u8D77\u52D5\u3057\u3066\u30A2\u30AF\u30BB\u30B5\u30EA\u30AD\u30E3\u30C3\u30B7\u30E5\u3092\u524A\u9664","reset.error_message":"\u30A2\u30AF\u30BB\u30B5\u30EA\u30FC\u306E\u30AD\u30E3\u30C3\u30B7\u30E5\u3092\u30ED\u30FC\u30C9\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F\u3002\u30AD\u30E3\u30C3\u30B7\u30E5\u3055\u308C\u305F\u30A2\u30AF\u30BB\u30B5\u30EA\u30FC\u304C\u306A\u3044\u53EF\u80FD\u6027\u304C\u3042\u308A\u307E\u3059\u3002","reset.failed_to_reset":"\u30DB\u30FC\u30E0\u30DA\u30FC\u30B8\u306E\u518D\u8AAD\u307F\u8FBC\u307F\u306B\u5931\u6557\u3057\u307E\u3057\u305F\u3002\u30ED\u30B0\u3092\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044\u3002","reset.force_restart_hb_help_text":"\u3053\u306E\u64CD\u4F5C\u3092\u4F7F\u7528\u3057\u3066\u30B5\u30FC\u30D3\u30B9 hb-servuce \u3092\u5B8C\u5168\u306B\u5F37\u5236\u518D\u8D77\u52D5\u3057\u307E\u3059\u3002","reset.remove_cached_accessories_single_empty":"You have no cached accessories to remove.","reset.removing_cached_accessory_please_wait":"\u30AD\u30E3\u30C3\u30B7\u30E5\u304B\u3089\u30A2\u30AF\u30BB\u30B5\u30EA\u3092\u524A\u9664\u3057\u3066\u3044\u307E\u3059\u3001\u304A\u5F85\u3061\u304F\u3060\u3055\u3044\u2026","restart.child_bridge_list":"Please restart these child bridges for the changes to apply:","restart.child_bridges":"\u5909\u66F4\u3092\u9069\u7528\u3059\u308B\u306B\u306F\u3001\u30D7\u30E9\u30B0\u30A4\u30F3\u306E\u5B50\u30D6\u30EA\u30C3\u30B8\u3092\u518D\u8D77\u52D5\u3057\u3066\u304F\u3060\u3055\u3044\u3002","restart.homebridge":"\u5909\u66F4\u3092\u9069\u7528\u3059\u308B\u306B\u306F\u3001Homebridge\u3092\u518D\u8D77\u52D5\u3057\u3066\u304F\u3060\u3055\u3044\u3002","restart.label_restart_command_executed":"\u518D\u8D77\u52D5\u30B3\u30DE\u30F3\u30C9\u304C\u5B9F\u884C\u3055\u308C\u307E\u3057\u305F","restart.please_wait_while_server_restarts":"\u3053\u306E\u30DA\u30FC\u30B8\u306F\u30B5\u30FC\u30D0\u30FC\u304C\u30AA\u30F3\u30E9\u30A4\u30F3\u306B\u5FA9\u5E30\u3059\u308B\u3068\u81EA\u52D5\u3067\u30EA\u30C0\u30A4\u30EC\u30AF\u30C8\u3057\u307E\u3059\u3002\u3057\u3070\u3089\u304F\u304A\u5F85\u3061\u304F\u3060\u3055\u3044\u3002","restart.server_is_taking_long_time_to_restart":"\u30B5\u30FC\u30D0\u30FC\u306E\u518D\u8D77\u52D5\u306B\u6642\u9593\u304C\u304B\u304B\u3063\u3066\u3044\u307E\u3059\u3002\u624B\u52D5\u3067\u30B5\u30FC\u30D0\u30FC\u3092\u518D\u8D77\u52D5\u3059\u308B\u5FC5\u8981\u304C\u3042\u308B\u53EF\u80FD\u6027\u304C\u3042\u308A\u307E\u3059\u3002","restart.service_ready":"Homebridge\u30B5\u30FC\u30D0\u30FC\u306E\u6E96\u5099\u5B8C\u4E86","restart.title_restart":"\u518D\u8D77\u52D5\u3057\u3066\u3044\u307E\u3059","restart.toast_server_restart_error":"\u30B5\u30FC\u30D0\u30FC\u518D\u8D77\u52D5\u30B3\u30DE\u30F3\u30C9\u3092\u9001\u4FE1\u4E2D\u306B\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u307E\u3057\u305F","restart.toast_server_restart_timeout":"\u30B5\u30FC\u30D0\u30FC\u304C\u30AA\u30F3\u30E9\u30A4\u30F3\u306B\u5FA9\u5E30\u3059\u308B\u306E\u306B\u6642\u9593\u304C\u304B\u304B\u3063\u3066\u3044\u307E\u3059","restart.toast_server_restarted":"\u30B5\u30FC\u30D0\u30FC\u306F\u518D\u8D77\u52D5\u3055\u308C\u307E\u3057\u305F","restart.ui_online":"Homebridge UI\u30AA\u30F3\u30E9\u30A4\u30F3","rpi.throttled.currently_message":"\u3053\u306ERaspberry Pi\u306F\u73FE\u5728\u96FB\u5727\u4E0D\u8DB3\u3067\u3042\u308B\u3068\u5831\u544A\u3057\u3066\u3044\u307E\u3059\u3002\u9069\u5207\u306A\u96FB\u6E90\u306B\u63A5\u7D9A\u3055\u308C\u3066\u3044\u308B\u304B\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044\u3002\u96FB\u5727\u4E0D\u8DB3\u306F\u30B7\u30B9\u30C6\u30E0\u3092\u4E0D\u5B89\u5B9A\u306B\u3057\u3001SD\u30AB\u30FC\u30C9\u306E\u7834\u640D\u3092\u5F15\u304D\u8D77\u3053\u3059\u53EF\u80FD\u6027\u304C\u3042\u308A\u307E\u3059\u3002","rpi.throttled.previously_message":"\u3053\u306ERaspberry Pi\u306F\u3001\u6700\u5F8C\u306B\u518D\u8D77\u52D5\u3057\u3066\u304B\u3089\u96FB\u5727\u4E0D\u8DB3\u304C\u767A\u751F\u3057\u3066\u3044\u307E\u3059\u3002","rpi.throttled.undervoltage_title":"\u96FB\u5727\u4E0D\u8DB3\u3092\u691C\u51FA","settings.cache.desc":"Homebridge maintains accessories in cache so they aren't removed and re-added to HomeKit each time Homebridge restarts. Sometimes this cache can become out of sync with the actual accessories in Homebridge.","settings.cache.title":"Accessories","settings.changes.saved":"Your changes have been saved and require a restart to take effect.","settings.datetime.incorrect":"The date and time on your Homebridge server seem to be incorrect. This may cause unexpected issues. Click here for more information.","settings.display.blue":"Blue","settings.display.bluegrey":"Blue Grey","settings.display.brown":"Brown","settings.display.cyan":"Cyan","settings.display.dark":"Dark","settings.display.deep_purple":"Deep Purple","settings.display.green":"Green","settings.display.grey":"Grey","settings.display.indigo":"Indigo","settings.display.lang":"Language","settings.display.light":"Light","settings.display.lighting_mode":"Lighting Mode","settings.display.login_wallpaper":"Login Wallpaper","settings.display.login_wallpaper_desc":"A custom login wallpaper can be set by adding a <code>ui-wallpaper.jpg</code> file to your Homebridge storage directory, or by providing a full path to a local image file here.","settings.display.orange":"Orange","settings.display.pink":"Pink","settings.display.purple":"Purple","settings.display.red":"Red","settings.display.teal":"Teal","settings.display.temp_units":"Temperature Units","settings.display.temp_units.c":"Celsius (\xB0C)","settings.display.temp_units.f":"Fahrenheit (\xB0F)","settings.display.theme":"Theme","settings.general.title_display":"Display","settings.general.title_general":"General","settings.mdns_advertiser":"mDNS\u5E83\u544A\u4E3B","settings.mdns_advertiser_exp":"experimental","settings.mdns_advertiser_help":"Homebridge\u3078\u306E\u63A5\u7D9A\u306B\u554F\u984C\u304C\u3042\u308B\u5834\u5408\u306F\u3001\u5225\u306EmDNS\u5E83\u544A\u4E3B\u3092\u4F7F\u7528\u3057\u3066\u307F\u3066\u304F\u3060\u3055\u3044\u3002","settings.mdns_advertiser_not_connected":"Not Connected","settings.mdns_advertiser_rec":"recommended","settings.network.label_interface_name":"\u30A4\u30F3\u30BF\u30FC\u30D5\u30A7\u30A4\u30B9\u540D","settings.network.label_ip_address":"IP\u30A2\u30C9\u30EC\u30B9","settings.network.message_network_interface":"\u30CD\u30C3\u30C8\u30EF\u30FC\u30AF\u30A4\u30F3\u30BF\u30FC\u30D5\u30A7\u30A4\u30B9\u304C\u9078\u629E\u3055\u308C\u3066\u3044\u306A\u3044\u5834\u5408\u3001Homebridge\u306F\u9001\u53D7\u4FE1\u3059\u308B\u30A4\u30F3\u30BF\u30FC\u30D5\u30A7\u30A4\u30B9\u3092\u81EA\u52D5\u7684\u306B\u8A2D\u5B9A\u3057\u3088\u3046\u3068\u3057\u307E\u3059\u3002","settings.network.port_hb":"Homebridge Port","settings.network.port_hb_desc":"The port number to run the Homebridge bridge on. This must be between 1025 and 65533, and should not be the same as the Homebridge UI port.","settings.network.port_ui":"UI Port","settings.network.port_ui_desc":"The port number to run the Homebridge UI on.","settings.network.title_network":"\u30CD\u30C3\u30C8\u30EF\u30FC\u30AF","settings.network.title_network_interfaces":"\u30CD\u30C3\u30C8\u30EF\u30FC\u30AF\u30A4\u30F3\u30BF\u30FC\u30D5\u30A7\u30A4\u30B9","settings.service.debug_tooltip":"\u30D7\u30E9\u30B0\u30A4\u30F3\u306B\u3088\u3063\u3066\u306F\u3001\u30C7\u30D0\u30C3\u30B0\u30EC\u30D9\u30EB\u306E\u30ED\u30AE\u30F3\u30B0\u3092\u6709\u52B9\u306B\u3059\u308B\u305F\u3081\u306BDEBUG\u74B0\u5883\u5909\u6570\u3092\u8A2D\u5B9A\u3059\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059\u3002","settings.service.node_tooltip":"Homebridge\u30D7\u30ED\u30BB\u30B9\u306ENode.js\u30E9\u30F3\u30BF\u30A4\u30E0\u30FB\u30AA\u30D7\u30B7\u30E7\u30F3\u3002\u3088\u304F\u308F\u304B\u3089\u306A\u3044\u5834\u5408\u306F\u3001\u7A7A\u767D\u306E\u307E\u307E\u304C\u826F\u3044\u3067\u3057\u3087\u3046\u3002","settings.startup.debug":"Homebridge \u30C7\u30D0\u30C3\u30B0\u30E2\u30FC\u30C9","settings.startup.debug_desc_v1":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge as well as all child bridges. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.debug_desc_v2":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge. The setting for child bridges can be found in the child bridge configuration from the plugins page. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.insecure":"Homebridge\u306E\u300C\u5B89\u5168\u300D\u30E2\u30FC\u30C9","settings.startup.insecure_desc":"To control your accessories via the Homebridge UI you must be running Homebridge in insecure mode.","settings.startup.keep_accessories":"\u672A\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u306E\u30D7\u30E9\u30B0\u30A4\u30F3\u306E\u30A2\u30AF\u30BB\u30B5\u30EA\u30FC\u3092\u4FDD\u7BA1\u3059\u308B","settings.startup.keep_accessories_desc":"If enabled, accessories of platform plugins will remain in the cache even after the plugin is uninstalled. This can be useful if you plan to reinstall the plugin later.","settings.title_startup_options":"\u8D77\u52D5\u30AA\u30D7\u30B7\u30E7\u30F3","settings.unpair_bridge.load_error":"Paired bridges could not be loaded.","settings.unpair_bridge.unpair_error":"Failed to unpair bridge.","setup.button_get_started":"\u3055\u3041\u3001\u59CB\u3081\u3088\u3046\uFF01","setup.create_account":"\u30A2\u30AB\u30A6\u30F3\u30C8\u3092\u4F5C\u6210","setup.create_account_reason":"Homebridge\u306E\u7BA1\u7406\u8005\u7528Web\u30A4\u30F3\u30BF\u30FC\u30D5\u30A7\u30A4\u30B9\u3078\u306E\u30D1\u30B9\u30EF\u30FC\u30C9\u8A8D\u8A3C\u3092\u8A2D\u5B9A\u3059\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059\u3002Homebridge\u304C\u30ED\u30FC\u30AB\u30EB\u30CD\u30C3\u30C8\u30EF\u30FC\u30AF\u3067\u306E\u307F\u30A2\u30AF\u30BB\u30B9\u53EF\u80FD\u306A\u5834\u5408\u3067\u3082\u3001\u4E0D\u6B63\u306A\u30A2\u30AF\u30BB\u30B9\u304B\u3089\u4FDD\u8B77\u3059\u308B\u3053\u3068\u304C\u91CD\u8981\u3067\u3059\u3002","setup.open_dashboard":"\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u958B\u304F","setup.welcome_to_homebridge":"Homebridge\u3078\u3088\u3046\u3053\u305D\uFF01",setup_wizard_message_complete_message:"\u3053\u308C\u3067\u30BB\u30C3\u30C8\u30A2\u30C3\u30D7\u306F\u5B8C\u4E86\u3067\u3059\u3002Homebridge\u3092\u4F7F\u7528\u3067\u304D\u307E\u3059\uFF01",setup_wizard_message_complete_title:"\u304A\u3081\u3067\u3068\u3046\uFF01",setup_wizard_message_restore:"Restore From Backup","status.code_scan":"\u30B9\u30AD\u30E3\u30F3\u3057\u3066 HomeKit \u306B\u8FFD\u52A0\u3057\u307E\u3059","status.cpu.load":"\u8CA0\u8377","status.cpu.temp":"\u6E29\u5EA6","status.cpu.title_cpu":"CPU","status.credits.title":"\u30AF\u30EC\u30B8\u30C3\u30C8","status.homebridge.checking":"\u66F4\u65B0\u3092\u78BA\u8A8D\u4E2D\u2026","status.homebridge.up_to_date":"\u6700\u65B0","status.memory.label_available":"\u7A7A\u304D","status.memory.label_total":"\u5408\u8A08","status.memory.title_memory":"\u30E1\u30E2\u30EA","status.network.received_per_second":"\u53D7\u4FE1\u6E08","status.network.sent_per_second":"\u9001\u4FE1\u6E08","status.network.title_network":"\u30CD\u30C3\u30C8\u30EF\u30FC\u30AF\u6D3B\u52D5","status.plugin_out_of_date":"\u671F\u9650\u5207\u308C\u306E\u30D7\u30E9\u30B0\u30A4\u30F3","status.plugins_out_of_date":"\u671F\u9650\u5207\u308C\u306E\u30D7\u30E9\u30B0\u30A4\u30F3","status.services.label_not_running":"\u505C\u6B62\u4E2D","status.services.label_running":"\u30E9\u30F3\u30CB\u30F3\u30B0","status.services.updates":"Update Centre","status.uptime.title_uptime":"\u7A3C\u50CD\u6642\u9593","status.widget.accessories.choose_accessories":"\u30A2\u30AF\u30BB\u30B5\u30EA\u30FC\u30BF\u30D6\u304B\u3089\u3001\u3053\u306E\u30A6\u30A3\u30B8\u30A7\u30C3\u30C8\u306B\u8868\u793A\u3059\u308B\u30A2\u30AF\u30BB\u30B5\u30EA\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044\u3002","status.widget.add.label_pairing_code":"\u63A5\u7D9A\u30B3\u30FC\u30C9","status.widget.bridge.restart_error":"Failed to restart child bridge.","status.widget.clock":"\u6642\u8A08","status.widget.clock_dateformat":"\u65E5\u4ED8\u8868\u793A\u5F62\u5F0F","status.widget.clock_timeformat":"\u6642\u523B\u8868\u793A\u5F62\u5F0F","status.widget.font_size":"\u6587\u5B57\u306E\u5927\u304D\u3055","status.widget.font_weight":"\u6587\u5B57\u306E\u592A\u3055","status.widget.hide_on_mobile":"\u7E2E\u5C0F\u8868\u793A(\u30E2\u30D0\u30A4\u30EB\u753B\u9762)\u3067\u306F\u975E\u8868\u793A","status.widget.homebridge_logs":"Homebridge\u30ED\u30B0","status.widget.info":"\u30B7\u30B9\u30C6\u30E0\u60C5\u5831","status.widget.info.config_path":"\u30B3\u30F3\u30D5\u30A3\u30B0\u306E\u5834\u6240","status.widget.info.disabled":"\u7121\u52B9","status.widget.info.docker":"Docker","status.widget.info.glibc_message":"\u3053\u306E\u30E1\u30C3\u30BB\u30FC\u30B8\u306F\u3001\u304A\u4F7F\u3044\u306E\u30AA\u30DA\u30EC\u30FC\u30C6\u30A3\u30F3\u30B0\u30B7\u30B9\u30C6\u30E0\u304CNode.js\u306E\u65B0\u3057\u3044\u30D0\u30FC\u30B8\u30E7\u30F3\u3092\u30B5\u30DD\u30FC\u30C8\u3057\u3066\u3044\u306A\u3044\u3053\u3068\u3092\u793A\u3057\u3066\u3044\u307E\u3059\u3002\u3053\u306E\u554F\u984C\u3092\u89E3\u6C7A\u3057\u3001\u5C06\u6765Node.js\u306E\u66F4\u65B0\u30D0\u30FC\u30B8\u30E7\u30F3\u3092\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u3067\u304D\u308B\u3088\u3046\u306B\u3059\u308B\u306B\u306F\u3001\u30AA\u30DA\u30EC\u30FC\u30C6\u30A3\u30F3\u30B0\u30B7\u30B9\u30C6\u30E0\u3092\u3088\u308A\u65B0\u3057\u3044\u30D0\u30FC\u30B8\u30E7\u30F3\u306B\u66F4\u65B0\u3059\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059\u3002","status.widget.info.glibc_title":"OS\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8","status.widget.info.hostname":"\u30DB\u30B9\u30C8\u30CD\u30FC\u30E0","status.widget.info.ipv4":"IPv4","status.widget.info.ipv6":"IPv6","status.widget.info.no":"\u3044\u3044\u3048","status.widget.info.node_unsupp":"Unsupported","status.widget.info.node_unsupp_message":"Homebridge\u304C\u6B63\u5F0F\u306B\u30B5\u30DD\u30FC\u30C8\u3057\u3066\u3044\u306A\u3044\u30D0\u30FC\u30B8\u30E7\u30F3\u306ENode.js\u3092\u4F7F\u7528\u3057\u3066\u3044\u307E\u3059\u3002\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u3066\u3044\u308B\u30D0\u30FC\u30B8\u30E7\u30F3\u3078\u306E\u5909\u66F4\u3092\u691C\u8A0E\u3057\u3066\u304F\u3060\u3055\u3044\u3002","status.widget.info.node_unsupp_title":"\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u3066\u3044\u306A\u3044Node\u306E\u30D0\u30FC\u30B8\u30E7\u30F3","status.widget.info.node_update_message":"Homebridge\u3092\u5B9F\u884C\u3059\u308B\u306B\u306F\u3001\u30B7\u30B9\u30C6\u30E0\u306BNode.js\u304C\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u3055\u308C\u3066\u3044\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059\u3002\u6642\u3005\u3001\u65B0\u6A5F\u80FD\u306E\u30B5\u30DD\u30FC\u30C8\u3092\u6709\u52B9\u306B\u3059\u308B\u305F\u3081\u306B\u3001Node.js\u30E9\u30F3\u30BF\u30A4\u30E0\u3092\u66F4\u65B0\u3059\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059\u3002Homebridge\uFF08\u304A\u3088\u3073\u691C\u8A3C\u6E08\u307F\u306E\u30D7\u30E9\u30B0\u30A4\u30F3\uFF09\u306F\u3001Node.js\u306E\u73FE\u5728\u306EActive\u304A\u3088\u3073Maintenance LTS\u30EA\u30EA\u30FC\u30B9\u3092\u3059\u3079\u3066\u30B5\u30DD\u30FC\u30C8\u3057\u3066\u3044\u307E\u3059\u3002","status.widget.info.node_update_title":"Node\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8","status.widget.info.nodejs_path":"Node.js Path","status.widget.info.nodejs_version":"Node.js \u30D0\u30FC\u30B8\u30E7\u30F3","status.widget.info.os":"OS","status.widget.info.plugin_path":"\u30D7\u30E9\u30B0\u30A4\u30F3\u306E\u5834\u6240","status.widget.info.service_mode":"\u30B5\u30FC\u30D3\u30B9\u30E2\u30FC\u30C9","status.widget.info.service_user":"\u30E6\u30FC\u30B6","status.widget.info.servicemode_message":"\u30B9\u30BF\u30F3\u30C9\u30A2\u30ED\u30F3\u30E2\u30FC\u30C9\u306F\u63A8\u5968\u3055\u308C\u307E\u305B\u3093\u3002hb-service\u3067Homebridge\u3068Homebridge UI\u3092\u30BB\u30C3\u30C8\u30A2\u30C3\u30D7\u3059\u308B\u3068\u3001\u30B9\u30BF\u30F3\u30C9\u30A2\u30ED\u30F3\u30E2\u30FC\u30C9\u3068\u540C\u3058\u5229\u70B9\u304C\u3042\u308A\u307E\u3059\u304C\u3001\u30BB\u30C3\u30C8\u30A2\u30C3\u30D7\u3068\u30E1\u30F3\u30C6\u30CA\u30F3\u30B9\u304C\u3088\u308A\u7C21\u5358\u306B\u306A\u308A\u307E\u3059\u3002","status.widget.info.servicemode_title":"\u30B5\u30FC\u30D3\u30B9\u30E2\u30FC\u30C9","status.widget.info.storage_path":"\u30B9\u30C8\u30EC\u30FC\u30B8\u306E\u5834\u6240","status.widget.info.synology_package":"Synology\u30D1\u30C3\u30B1\u30FC\u30B8","status.widget.info.timezone":"\u30BF\u30A4\u30E0\u30BE\u30FC\u30F3","status.widget.info.yes":"\u306F\u3044","status.widget.network.history_items":"History Items","status.widget.network.items":"items","status.widget.network.network_interface":"Network Interface","status.widget.network.none_selected":"None selected in settings - using default.","status.widget.network.refresh_interval":"Refresh Interval","status.widget.network.refresh_note":"Refresh the page after saving for changes to take effect.","status.widget.network.seconds":"seconds","status.widget.qr_paired":"\u30DA\u30A2\u306B\u306A\u3063\u305F","status.widget.qr_unpaired":"\u30DA\u30A2\u30EA\u30F3\u30B0\u3055\u308C\u3066\u3044\u307E\u305B\u3093","status.widget.show_hide":"Show/Hide Widgets","status.widget.title_manage_widget":"\u30A6\u30A3\u30B8\u30A7\u30C3\u30C8\u3092\u7BA1\u7406","status.widget.uptime.label_process":"\u30D7\u30ED\u30BB\u30B9","status.widget.uptime.label_server":"\u30B5\u30FC\u30D0","status.widget.weather.label_config_required_help":"\u30A6\u30A3\u30B8\u30A7\u30C3\u30C8\u306E\u8A2D\u5B9A\u3067\u304A\u4F4F\u307E\u3044\u306E\u5730\u57DF\u3092\u6307\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044\u3002","status.widget.weather.label_search_for_your_city":"\u5C45\u4F4F\u5730\u3092\u691C\u7D22:","status.widget.weather.title_weather":"\u5929\u6C17","support.dev.api":"Homebridge API","support.dev.api_hap":"Hap-NodeJS API","support.dev.api_hap_sub":"HAP-NodeJS is an implementation of the HomeKit Accessory Server as specified in the HomeKit Accessory Protocol (HAP), which is defined by Apple as part of the HomeKit Framework.","support.dev.api_sub":"Homebridge is a lightweight Node.js server you can run on your home network to emulate the HomeKit Accessory Protocol (HAP).","support.dev.item_swagger":"Swagger\u30C9\u30AD\u30E5\u30E1\u30F3\u30C8","support.dev.item_swagger_sub":"The Homebridge REST API allows you to interact with your Homebridge server using HTTP requests.","support.dev.template":"\u30D7\u30E9\u30B0\u30A4\u30F3\u30FB\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u306E\u30EA\u30DD\u30B8\u30C8\u30EA","support.dev.template_sub":"A template Homebridge plugin that can be used as a base to help you get started developing your own plugin.","support.dev.title":"\u30C7\u30D9\u30ED\u30C3\u30D1\u30FC","support.dev.verified":"Verified By Homebridge","support.dev.verified_sub":"The Verified By Homebridge program allows plugin developers to get their plugins reviewed and endorsed by the Homebridge project team.","support.links.discord":"Discord\u30B5\u30FC\u30D0\u30FC","support.links.discord_sub":"Join the Homebridge Discord chat server to chat with other users and developers.","support.links.documentation":"\u30C9\u30AD\u30E5\u30E1\u30F3\u30C8","support.links.documentation_sub":"The Homebridge documentation provides a wealth of information on how to get started with Homebridge and common issue resolutions.","support.links.issue":"\u554F\u984C\u3092\u5831\u544A","support.links.issue_sub":"If you are experiencing an issue with Homebridge, please open a new issue on GitHub. This should not be used for issues with specific plugins.","support.links.reddit":"Reddit\u30B3\u30DF\u30E5\u30CB\u30C6\u30A3","support.links.reddit_sub":"The Homebridge subreddit is a great place to share your Homebridge setup and ask for help.","support.links.title":"\u4FBF\u5229\u306A\u30EA\u30F3\u30AF","support.title":"\u30B5\u30DD\u30FC\u30C8","toast.no_auth":"Only administrators may access the requested page.","toast.title_error":"\u30A8\u30E9\u30FC","toast.title_success":"\u6210\u529F","toast.title_warning":"\u6CE8\u610F","users.button_add_new_user":"\u65B0\u3057\u3044\u30E6\u30FC\u30B6\u30FC\u3092\u8FFD\u52A0","users.button_add_user":"\u30E6\u30FC\u30B6\u30FC\u3092\u8FFD\u52A0","users.label_admin_user":"\u7BA1\u7406\u8005","users.label_confirm_password":"\u30D1\u30B9\u30EF\u30FC\u30C9\u306E\u78BA\u8A8D","users.label_full_name":"\u30D5\u30EB\u30CD\u30FC\u30E0","users.label_new_password":"\u65B0\u3057\u3044\u30D1\u30B9\u30EF\u30FC\u30C9","users.label_password":"\u30D1\u30B9\u30EF\u30FC\u30C9","users.label_username":"\u30E6\u30FC\u30B6\u30FC\u540D","users.setup_2fa":"\u4E8C\u6BB5\u968E\u8A8D\u8A3C\u3092\u8A2D\u5B9A","users.setup_2fa_activate_error":"An error occurred activating 2FA","users.setup_2fa_cannot_setup_2fa":"\u4E8C\u6BB5\u968E\u8A8D\u8A3C\u3092\u8A2D\u5B9A\u3067\u304D\u307E\u305B\u3093","users.setup_2fa_disable":"\u4E8C\u6BB5\u968E\u8A8D\u8A3C\u3092\u7121\u52B9\u5316","users.setup_2fa_disable_current_password":"\u73FE\u5728\u306E\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u5165\u529B\u3057\u3066\u3001\u4E8C\u6BB5\u968E\u8A8D\u8A3C\u3092\u7121\u52B9\u5316\u3057\u307E\u3059\u3002","users.setup_2fa_disable_success":"\u4E8C\u6BB5\u968E\u8A8D\u8A3C\u3092\u7121\u52B9\u5316\u3057\u307E\u3057\u305F\u3002","users.setup_2fa_enable":"\u4E8C\u6BB5\u968E\u8A8D\u8A3C\u3092\u6709\u52B9\u5316","users.setup_2fa_enable_error":"An error occurred setting up 2FA","users.setup_2fa_enabled_success":"\u4E8C\u6BB5\u968E\u8A8D\u8A3C\u3092\u6709\u52B9\u5316\u3057\u307E\u3057\u305F\u3002","users.setup_2fa_enter_code":"\u8A8D\u8A3C\u30A2\u30D7\u30EA\u304B\u3089\u30B3\u30FC\u30C9\u3092\u5165\u529B","users.setup_2fa_scan_qr_code":"\u4EE5\u4E0B\u306EQR\u30B3\u30FC\u30C9\u3092\u8A8D\u8A3C\u30A2\u30D7\u30EA\u3067\u30B9\u30AD\u30E3\u30F3\u3057\u3066\u304F\u3060\u3055\u3044\u3002","users.setup_2fa_server_time_out":"\u304A\u4F7F\u3044\u306E\u30B5\u30FC\u30D0\u306E\u6642\u9593\u304C {{ timeDiffError }} ms\u305A\u308C\u3066\u3044\u307E\u3059\u3002\u8A31\u5BB9\u8AA4\u5DEE\u306F +/-5000 ms\u3067\u3059\u3002","users.setup_2fa_warning":"\u4E8C\u6BB5\u968E\u8A8D\u8A3C\u3067\u306FHomebridge\u30B5\u30FC\u30D0\u306B\u6B63\u78BA\u306A\u65E5\u6642\u3067\u30ED\u30B0\u30A4\u30F3\u3059\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059\u3002\u30B5\u30FC\u30D0\u304C\u6B63\u78BA\u306A\u65E5\u6642\u3092\u4FDD\u3066\u306A\u3044\u5834\u5408\u306F\u3001\u4E8C\u6BB5\u968E\u8A8D\u8A3C\u3092\u6709\u52B9\u306B\u3059\u308B\u3053\u3068\u3092\u63A8\u5968\u3057\u307E\u305B\u3093\u3002\u3053\u308C\u306B\u5F93\u308F\u306A\u3044\u5834\u5408\u3001Homebridge UI\u306B\u30A2\u30AF\u30BB\u30B9\u3067\u304D\u306A\u304F\u306A\u308B\u5371\u967A\u6027\u304C\u3042\u308A\u307E\u3059\u3002","users.title_add_user":"\u30E6\u30FC\u30B6\u30FC\u3092\u8FFD\u52A0","users.title_edit_user":"\u30E6\u30FC\u30B6\u30FC\u3092\u7DE8\u96C6","users.title_users":"\u30E6\u30FC\u30B6\u30FC","users.toast_added_new_user":"\u65B0\u3057\u3044\u30E6\u30FC\u30B6\u30FC\u3092\u8FFD\u52A0\u3057\u307E\u3057\u305F","users.toast_failed_to_add_user":"\u30E6\u30FC\u30B6\u30FC\u306E\u8FFD\u52A0\u306B\u5931\u6557\u3057\u307E\u3057\u305F","users.toast_failed_to_delete_user":"\u30E6\u30FC\u30B6\u30FC\u306E\u524A\u9664\u306B\u5931\u6557\u3057\u307E\u3057\u305F","users.toast_updated_user":"\u30E6\u30FC\u30B6\u30FC\u3092\u66F4\u65B0\u3057\u307E\u3057\u305F","users.toast_user_deleted":"\u30E6\u30FC\u30B6\u30FC\u3092\u524A\u9664\u3057\u307E\u3057\u305F"}});var Cs=y((Rd,ba)=>{ba.exports={"accessories.button_add_room":"\uBC29 \uCD94\uAC00","accessories.button_hidden_hide":"\uC228\uAE34\uAC83 \uAC00\uB9AC\uAE30","accessories.button_hidden_show":"\uC228\uAE34\uAC83 \uBCF4\uC774\uAE30","accessories.control.auto":"\uC790\uB3D9","accessories.control.away":"\uC678\uCD9C","accessories.control.battery_charging":"\uCDA9\uC804 \uC911","accessories.control.battery_notchargeable":"\uCDA9\uC804 \uBD88\uAC00","accessories.control.battery_notcharging":"\uCDA9\uC804 \uC548\uD568","accessories.control.brightness":"\uBC1D\uAE30","accessories.control.closed":"\uB2EB\uD798","accessories.control.closing":"\uB2EB\uB294 \uC911","accessories.control.cool":"\uB0C9\uBC29","accessories.control.default_room":"\uAE30\uBCF8 \uBC29","accessories.control.default_running_time":"\uAE30\uBCF8 \uC2E4\uD589 \uC2DC\uAC04","accessories.control.dehumidifying":"\uC81C\uC2B5 \uC911","accessories.control.detected":"Detected","accessories.control.drag_here":"\uC5EC\uAE30\uB85C \uB4DC\uB798\uADF8","accessories.control.fan":"\uD32C","accessories.control.heat":"\uB09C\uBC29","accessories.control.home":"\uC9D1","accessories.control.humidifying":"\uAC00\uC2B5 \uC911","accessories.control.jammed":"\uAC78\uB9BC","accessories.control.light":"\uC870\uBA85","accessories.control.locked":"\uC7A0\uAE40","accessories.control.mute":"\uC74C\uC18C\uAC70","accessories.control.night":"\uC57C\uAC04","accessories.control.not_detected":"\uBC1C\uACAC\uB418\uC9C0 \uC54A\uC74C","accessories.control.not_mute":"\uC74C\uC18C\uAC70 \uD574\uC81C","accessories.control.off":"\uAEBC\uC9D0","accessories.control.on":"\uCF1C\uC9D0","accessories.control.open":"\uC5F4\uB9BC","accessories.control.opening":"\uC5EC\uB294 \uC911","accessories.control.rotation_speed":"\uD68C\uC804 \uC18D\uB3C4","accessories.control.running":"\uC2E4\uD589 \uC911","accessories.control.speaker_volume":"\uBCFC\uB968","accessories.control.stopped":"\uC815\uC9C0","accessories.control.target":"\uB300\uC0C1","accessories.control.target_humidity":"\uBAA9\uD45C \uC2B5\uB3C4","accessories.control.target_temperature":"\uBAA9\uD45C \uC628\uB3C4","accessories.control.triggered":"\uC791\uB3D9 \uB428","accessories.control.unknown":"\uC54C \uC218 \uC5C6\uC74C","accessories.control.unlocked":"\uC7A0\uAE08\uD574\uC81C","accessories.control_disabled":"Homebridge \uC561\uC138\uC11C\uB9AC \uC81C\uC5B4 \uBE44\uD65C\uC131\uD654 \uB428","accessories.hide_this_accessory":"\uC774 \uC561\uC138\uC11C\uB9AC \uC228\uAE30\uAE30","accessories.message_for_more_information":"\uB97C \uD655\uC778\uD558\uC138\uC694.","accessories.message_must_use_insecure_mode":"\uC561\uC138\uC11C\uB9AC\uB97C \uC81C\uC5B4\uD558\uB824\uBA74 \uD648\uBE0C\uB9BF\uC9C0\uB97C insecure \uBAA8\uB4DC\uB85C \uC2E4\uD589\uD574\uC57C\uD569\uB2C8\uB2E4.","accessories.message_please_see":"\uC790\uC138\uD55C \uC815\uBCF4\uB294","accessories.name":"\uC774\uB984","accessories.room_name":"\uBC29 \uC774\uB984","accessories.rooms_not_appear_in_homekit":"\uC5EC\uAE30\uC11C \uCD94\uAC00\uB41C \uBC29\uC740 HomeKit\uC5D0 \uB098\uD0C0\uB098\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4. Homebridge UI\uC758 \uC561\uC138\uC11C\uB9AC \uAD6C\uC131\uC5D0\uB9CC \uC0AC\uC6A9\uB429\uB2C8\uB2E4.","accessories.settings_link":"\uC0AC\uC774\uB4DC \uBA54\uB274\uC758 \uD1B1\uB2C8\uBC14\uD034 \uC544\uC774\uCF58\uC744 \uD074\uB9AD\uD558\uC5EC \uC5B8\uC81C\uB4E0\uC9C0 \uD648\uBE0C\uB9BF\uC9C0 \uC124\uC815\uC5D0 \uC811\uADFC\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.","accessories.show_on_dashboard":"\uB300\uC2DC \uBCF4\uB4DC \uC704\uC82F\uC5D0 \uD45C\uC2DC","accessories.title_accessories":"\uC561\uC138\uC11C\uB9AC","backup.backup_delete_failed":"\uBC31\uC5C5 \uC0AD\uC81C\uC5D0 \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4. \uC790\uC138\uD55C \uB0B4\uC6A9\uC740 \uB85C\uADF8\uB97C \uD655\uC778\uD558\uC138\uC694.","backup.backup_download_failed":"\uBC31\uC5C5 \uB2E4\uC6B4\uB85C\uB4DC \uC2E4\uD328","backup.backup_exceeds_max_size":"\uBC31\uC5C5 ({{ backupSize }})\uC774(\uAC00) \uCD5C\uB300 \uBCF5\uC6D0 \uD30C\uC77C \uD06C\uAE30 {{ maxBackupSizeText }}\uB97C \uCD08\uACFC\uD588\uC2B5\uB2C8\uB2E4.","backup.backup_help_one":"\uC804\uCCB4 Homebridge \uD658\uACBD\uC5D0 \uB300\uD55C \uBC31\uC5C5 \uAE30\uB85D\uD30C\uC77C\uC744 \uB2E4\uC6B4\uB85C\uB4DC\uD558\uC138\uC694. Homebridge \uC800\uC7A5\uC18C \uD3F4\uB354\uC758 \uBAA8\uB4E0 \uB0B4\uC6A9\uC774 \uBC31\uC5C5\uB418\uBA70, \uCD94\uD6C4 Homebridge UI \uD638\uD658 \uD50C\uB81B\uD3FC\uC5D0\uC11C \uBCF5\uC6D0\uC5D0 \uC0AC\uC6A9\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.","backup.backup_help_two":"npm\uC5D0\uC11C \uD638\uC2A4\uD2B8\uB418\uC9C0 \uC54A\uC740 \uD50C\uB7EC\uADF8\uC778\uC774\uB098 GitHub\uC5D0\uC11C \uC9C1\uC811 \uC124\uCE58\uB41C \uD50C\uB7EC\uADF8\uC778\uC740 \uBC31\uC5C5\uB418\uAC70\uB098 \uBCF5\uC6D0\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.","backup.backup_restored":"\uBC31\uC5C5 \uAE30\uB85D\uD30C\uC77C \uBCF5\uC6D0\uB428","backup.backup_warning":"\uBC31\uC5C5 \uAE30\uB85D\uD30C\uC77C\uC5D0\uB294 \uBBFC\uAC10\uD55C \uC815\uBCF4\uAC00 \uD3EC\uD568\uB418\uC5B4 \uC788\uAE30 \uB54C\uBB38\uC5D0 \uB2E4\uB978\uC0AC\uB78C\uACFC \uACF5\uC720\uD574\uC11C\uB294 \uC548\uB429\uB2C8\uB2E4.","backup.button_restore_backup":"\uBC31\uC5C5 \uBCF5\uC6D0","backup.label_choose_backup_file_to_restore":"\uBCF5\uC6D0\uD560 \uBC31\uC5C5 \uD30C\uC77C\uC744 \uC120\uD0DD\uD574\uC8FC\uC138\uC694\u2026","backup.label_uploading":"\uC5C5\uB85C\uB4DC \uC911\u2026","backup.load_error":"\uC124\uC815 \uBC31\uC5C5\uC744 \uB85C\uB4DC\uD558\uC9C0 \uBABB\uD588\uC2B5\uB2C8\uB2E4.","backup.now":"\uD604\uC7AC","backup.restore_failed":"\uBCF5\uC6D0 \uC2E4\uD328","backup.restore_help_one":"Homebridge UI\uC744 \uC0AC\uC6A9\uD558\uC5EC \uC0DD\uC131\uD55C \uBC31\uC5C5 \uAE30\uB85D\uD30C\uC77C\uC744 \uBCF5\uC6D0\uD558\uC138\uC694. Homebridge \uAD6C\uC131, \uCE90\uC2DC\uB41C \uC561\uC138\uC11C\uB9AC, HomeKit \uD398\uC5B4\uB9C1\uACFC Homebridge UI \uC0AC\uC6A9\uC790 \uACC4\uC815\uC774 \uBCF5\uC6D0\uB420 \uAC83\uC785\uB2C8\uB2E4. \uC124\uCE58\uD588\uB358 Homebridge \uD50C\uB7EC\uADF8\uC778\uC740 npm \uC800\uC7A5\uC18C\uC5D0\uC11C \uBCF5\uC6D0\uB420 \uAC83\uC785\uB2C8\uB2E4.","backup.restore_help_two":"\uBCF5\uC6D0 \uB41C \uC778\uC2A4\uD134\uC2A4\uC758 \uC790\uACA9 \uC99D\uBA85\uC744 \uC0AC\uC6A9\uD558\uC5EC \uBCF5\uC6D0\uC744 \uC218\uD589 \uD55C \uD6C4, Homebridge UI\uC5D0 \uB85C\uADF8\uC778\uD574\uC57C\uD569\uB2C8\uB2E4.","backup.restore_max_size":"\uCD5C\uB300 {{ maxBackupSizeText }} \uD06C\uAE30\uC758 \uBC31\uC5C5 \uC544\uCE74\uC774\uBE0C\uB97C \uBCF5\uC6D0\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.","backup.restore_warning":"\uBC31\uC5C5\uC5D0\uC11C \uBCF5\uC6D0\uC744 \uC9C4\uD589\uD558\uBA74 \uD604\uC7AC Homebridge \uAD6C\uC131\uC740 \uB36E\uC5B4\uC4F0\uC5EC\uC9C0\uBA70 \uCDE8\uC18C\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.","backup.scheduled_backup_time":"Homebridge \uC778\uC2A4\uD134\uC2A4\uC758 \uC804\uCCB4 \uBC31\uC5C5\uC740 \uB9E4\uC77C {{ backupTime }}\uC5D0 \uC790\uB3D9\uC0DD\uC131\uB418\uBA70 {{ dayCount }}\uC77C \uB3D9\uC548 \uBCF4\uAD00\uB429\uB2C8\uB2E4.","backup.title_backup":"\uBC31\uC5C5","child_bridge.about":"Homebridge\uB97C \uC0AC\uC6A9\uD558\uBA74 \uD50C\uB7EC\uADF8\uC778\uC758 \uD50C\uB7AB\uD3FC \uB610\uB294 \uC561\uC138\uC11C\uB9AC\uB97C \uACA9\uB9AC\uB41C \uD558\uC704 Bridge\uB85C \uC2E4\uD589\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4. \uC774\uB97C \uD1B5\uD574 Homebridge\uC758 \uC131\uB2A5\uACFC \uC2E0\uB8B0\uC131\uC744 \uD5A5\uC0C1\uC2DC\uD0AC \uC218 \uC788\uC2B5\uB2C8\uB2E4.","child_bridge.bridge_connect":"HomeKit\uC5D0 \uC5F0\uACB0","child_bridge.bridge_settings":"Bridge \uC124\uC815","child_bridge.bridges":"HomeKit Bridges","child_bridge.bridges_paired":"\uC5B4\uB9B0\uC774\uC6A9 \uC545\uC138\uC11C\uB9AC, Bridge\uB294 HomeKit\uC5D0 \uC9C1\uC811 \uD398\uC5B4\uB9C1 \uD574\uC57C \uD569\uB2C8\uB2E4.","child_bridge.config.debug":"\uB514\uBC84\uADF8 \uBAA8\uB4DC","child_bridge.config.description":"\uC774 \uC785\uB825\uCE78\uC740 \uD544\uC218\uAC00 \uC544\uB2C8\uC9C0\uB9CC, \uC774 \uBE0C\uB9BF\uC9C0\uC758 \uD648\uD0B7 \uC124\uC815\uC744 \uB36E\uC5B4\uC4F0\uB294 \uB370 \uC0AC\uC6A9\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.","child_bridge.config.firmware":"\uD38C\uC6E8\uC5B4 \uBC84\uC804","child_bridge.config.header":"\uAD6C\uC131","child_bridge.config.manufacturer":"\uC81C\uC870\uC0AC","child_bridge.config.model":"\uBAA8\uB378","child_bridge.config.name":"\uC774\uB984","child_bridge.must_configure_plugin":"\uBE0C\uB9AC\uC9C0 \uC124\uC815\uC744 \uAD00\uB9AC\uD558\uAE30 \uC804\uC5D0 \uC774 \uD50C\uB7EC\uADF8\uC778\uC744 \uAD6C\uC131\uD574\uC57C \uD569\uB2C8\uB2E4.","child_bridge.reset_accessories":"\uC561\uC138\uC11C\uB9AC \uCD08\uAE30\uD654","child_bridge.reset_accessories_list":"\uC544\uB798\uC5D0\uC11C \uC561\uC138\uC11C\uB9AC\uB97C \uC7AC\uC124\uC815\uD560 \uD558\uC704 Bridge\uB97C \uC120\uD0DD\uD558\uC138\uC694:","child_bridge.restart":"\uD558\uC704 Bridge \uB2E4\uC2DC \uC2DC\uC791","child_bridge.restart_homebridge":"Homebridge \uC7AC\uC2DC\uC791 \uD6C4 Bridge \uC124\uC815\uC744 \uC644\uB8CC \uD569\uB2C8\uB2E4.","child_bridge.restart_plural":"Restart Child Bridges","child_bridge.return_to_pair":"Homebridge \uC7AC\uC2DC\uC791 \uD6C4 \uD604\uC7AC \uD654\uBA74\uC5D0\uC11C QR\uCF54\uB4DC\uB97C \uD655\uC778\uD558\uC138\uC694.","child_bridge.select_type":"\uD558\uC704 Bridge\uB85C \uC2E4\uD589\uD560 \uD50C\uB7AB\uD3FC, \uC545\uC138\uC11C\uB9AC\uB97C \uC120\uD0DD\uD558\uC138\uC694.","child_bridge.setup":"\uD558\uC704 Bridge \uC124\uC815","child_bridge.start":"\uD558\uC704 Bridge \uC2DC\uC791","child_bridge.start_plural":"\uC5EC\uB7EC \uD558\uC704 Bridge \uC2DC\uC791","child_bridge.stop":"Stop Child Bridge","child_bridge.stop_plural":"Stop Child Bridges","child_bridge.wiki_link":"\uD558\uC704 Bridge\uC5D0 \uB300\uD574 \uC54C\uC544\uBCF4\uAE30","config.config_accessory_must_be_array":"accessories\uB294 \uBC30\uC5F4 \uD615\uD0DC\uB85C \uAD6C\uC131\uD574\uC57C \uD569\uB2C8\uB2E4 []","config.config_bridge_missing":"bridge \uC124\uC815\uC774 \uB204\uB77D\uB418\uC5C8\uC2B5\uB2C8\uB2E4","config.config_invalid_json":"Config\uC5D0 \uC720\uD6A8\uD558\uC9C0 \uC54A\uC740 JSON\uC774 \uD3EC\uD568\uB418\uC5B4 \uC788\uC2B5\uB2C8\uB2E4","config.config_platform_must_be_array":"platforms\uB294 \uBC30\uC5F4 \uD615\uD0DC\uB85C \uAD6C\uC131\uD574\uC57C \uD569\uB2C8\uB2E4 []","config.config_username_error":"bridge\uC758 username\uC740 16\uC9C4\uC218 \uBB38\uC790\uC5F4(A-F 0-9) 6\uC30D\uC774 \uCF5C\uB860\uC73C\uB85C \uAD6C\uBD84\uB41C \uAC12\uC774\uC5EC\uC57C \uD569\uB2C8\uB2E4","config.error_blocks_objects":"\uBAA8\uB4E0 {{ type }} \uBE14\uB85D\uC740 \uAC1D\uCCB4\uC5EC\uC57C \uD569\uB2C8\uB2E4.","config.error_blocks_type":"\uBAA8\uB4E0 {{ type }} \uBE14\uB85D\uC5D0\uB294 {{ type }} \uC18D\uC131\uC774 \uD3EC\uD568\uB418\uC5B4\uC57C \uD569\uB2C8\uB2E4.","config.error_string_array":"{{ key }} \uBC30\uC5F4\uC758 \uAC01 \uD56D\uBAA9\uC740 \uBB38\uC790\uC5F4\uC774\uC5B4\uC57C \uD569\uB2C8\uB2E4.","config.error_string_type":"{{ type }} \uC18D\uC131\uC740 \uBB38\uC790\uC5F4\uC774\uC5B4\uC57C \uD569\uB2C8\uB2E4.","config.failed_to_save_config":"Config \uC800\uC7A5\uC5D0 \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4","config.restore.confirm":"\uC774 \uBC31\uC5C5\uC744 \uBCF5\uC6D0\uD558\uB824\uBA74 \uC800\uC7A5\uC744 \uD074\uB9AD\uD558\uC138\uC694.","config.restore.copy_to_editor":"\uC5D0\uB514\uD130\uC5D0 \uBCF5\uC0AC","config.restore.no_backups":"\uBC31\uC5C5 \uC5C6\uC74C","config.restore.title_restore_homebridge_backup":"Homebridge Config \uBC31\uC5C5 \uBCF5\uC6D0","config.restore.toast_backups_deleted":"\uBAA8\uB4E0 \uBC31\uC5C5\uC744 \uC0AD\uC81C\uD558\uC600\uC2B5\uB2C8\uB2E4","config.title_backup_loaded":"\uBC31\uC5C5\uC774 \uB85C\uB4DC\uB418\uC5C8\uC2B5\uB2C8\uB2E4","form.button_cancel":"\uCDE8\uC18C","form.button_close":"\uB2EB\uAE30","form.button_delete":"\uC0AD\uC81C","form.button_disable":"Disable","form.button_download":"\uB2E4\uC6B4\uB85C\uB4DC","form.button_edit":"\uC218\uC815","form.button_enable":"Enable","form.button_hide":"Hide","form.button_lock":"Lock","form.button_more_info":"More Info","form.button_remove":"Remove","form.button_reset":"Reset","form.button_restore":"\uBCF5\uC6D0","form.button_save":"\uC800\uC7A5","form.button_show":"Show","form.button_unlock":"Unlock","form.button_unpair":"Unpair","form.label_invalid":"Config validation failed - you can still save your changes.","form.label_invalid_strict":"Config validation failed - please review the form before saving.","form.label_valid":"Config validation passed.","form.select.auto":"\uC790\uB3D9 (\uBE0C\uB77C\uC6B0\uC800 \uC124\uC815 \uC0AC\uC6A9)","login.button_login":"\uB85C\uADF8\uC778","login.invalid_credentials":"\uC720\uD6A8\uD558\uC9C0 \uC54A\uC740 \uC0AC\uC6A9\uC790\uBA85 \uB610\uB294 \uBE44\uBC00\uBC88\uD638\uC785\uB2C8\uB2E4","login.label_2fa_code":"2\uCC28 \uC778\uC99D \uCF54\uB4DC","login.label_password":"\uBE44\uBC00\uBC88\uD638","login.label_username":"\uC0AC\uC6A9\uC790\uBA85","login.message_invalid_2fa_code":"\uC785\uB825\uB41C \uCF54\uB4DC\uB294 \uB9CC\uB8CC\uB418\uC5C8\uAC70\uB098 \uC720\uD6A8\uD558\uC9C0 \uC54A\uC740 \uAC12\uC785\uB2C8\uB2E4.","logs.download.error":"\uB85C\uADF8 \uD30C\uC77C \uB2E4\uC6B4\uB85C\uB4DC\uC5D0 \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4.","logs.download_warning":"Homebridge \uB85C\uADF8\uD30C\uC77C\uC5D0\uB294 \uAC1C\uC778\uC815\uBCF4, \uBE44\uBC00\uBC88\uD638, \uC561\uC138\uC2A4\uD1A0\uD070\uC774 \uD3EC\uD568\uB420 \uC218 \uC788\uC2B5\uB2C8\uB2E4. \uB2E4\uB978 \uC0AC\uB78C\uACFC \uACF5\uC720\uD558\uAE30 \uC804\uC5D0 \uB85C\uADF8 \uD30C\uC77C\uC744 \uAC80\uD1A0\uD558\uACE0 \uBBFC\uAC10\uD55C \uC815\uBCF4\uB97C \uC81C\uAC70\uD558\uC2ED\uC2DC\uC624.","logs.log_file_truncated":"\uB85C\uADF8\uD30C\uC77C\uC774 \uC798\uB838\uC2B5\uB2C8\uB2E4.","logs.title_download_log_file":"\uB85C\uADF8\uD30C\uC77C \uB2E4\uC6B4\uB85C\uB4DC","logs.title_truncate_log_file":"\uB85C\uADF8\uD30C\uC77C \uC790\uB974\uAE30","logs.truncate.error":"\uB85C\uADF8 \uD30C\uC77C \uC790\uB974\uAE30\uC5D0 \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4.","logs.truncate_log_warning":"\uC774 \uC791\uC5C5\uC740 Homebridge \uB85C\uADF8\uB97C \uC601\uAD6C\uC801\uC73C\uB85C \uC0AD\uC81C\uD569\uB2C8\uB2E4. \uACC4\uC18D\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?","menu.config_json_editor":"JSON \uC124\uC815","menu.docker.restart_container":"\uCEE8\uD14C\uC774\uB108 \uC7AC\uC2DC\uC791","menu.docker.startup_script":"\uC2DC\uC791 \uC2A4\uD06C\uB9BD\uD2B8","menu.docker.terminal":"\uD130\uBBF8\uB110","menu.hbrestart.confirm_hb":"\uD648\uBE0C\uB9BF\uC9C0 \uC7AC\uC2DC\uC791\uD558\uAE30","menu.hbrestart.confirm_ui":"HB Service\uC640 UI \uC7AC\uC2DC\uC791\uD558\uAE30","menu.hbrestart.title":"\uD648\uBE0C\uB9BF\uC9C0 \uC7AC\uC2DC\uC791","menu.label_accessories":"\uC561\uC138\uC11C\uB9AC","menu.label_plugins":"\uD50C\uB7EC\uADF8\uC778","menu.label_settings":"\uC124\uC815","menu.label_settings_advanced":"\uACE0\uAE09 UI \uC124\uC815","menu.label_status":"\uC0C1\uD0DC","menu.linux.label_logs":"\uB85C\uADF8","menu.linux.label_restart_server":"\uC11C\uBC84 \uC7AC\uC2DC\uC791","menu.linux.label_shutdown_server":"\uC11C\uBC84 \uC885\uB8CC","menu.linux.label_terminal":"\uD130\uBBF8\uB110","menu.restart.title":"\uC804\uC6D0 \uC635\uC158","menu.settings.title":"\uC124\uC815","menu.tooltip_logout":"\uB85C\uADF8\uC544\uC6C3","menu.tooltip_restart":"\uC7AC\uC2DC\uC791","menu.tooltip_user_accounts":"\uC0AC\uC6A9\uC790 \uACC4\uC815","menu.tooltip_view_logs":"\uB85C\uADF8 \uBCF4\uAE30","platform.docker.container_restarted":"Docker \uCEE8\uD14C\uC774\uB108 \uC7AC\uC2DC\uC791\uB428","platform.docker.must_use_hashbang":"\uC2A4\uD06C\uB9BD\uD2B8\uB294 \uBC18\uB4DC\uC2DC #!/bin/sh \uD574\uC2DC\uBC45\uC744 \uC0AC\uC6A9\uD574\uC57C\uD569\uB2C8\uB2E4.","platform.docker.restart_required":"\uBCC0\uACBD\uC0AC\uD56D\uC744 \uBC18\uC601\uD558\uB824\uBA74 Docker \uCEE8\uD14C\uC774\uB108\uB97C \uC7AC\uC2DC\uC791\uD574\uC57C\uD569\uB2C8\uB2E4.","platform.docker.run_with_restart":"<code>--restart=always</code>\uB97C \uC0AC\uC6A9\uD558\uC5EC Docker \uCEE8\uD14C\uC774\uB108\uB97C \uC2E4\uD589\uD558\uACE0 \uC788\uB294\uC9C0 \uD655\uC778\uD558\uC138\uC694 ","platform.docker.script_help":"\uC774 \uC2A4\uD06C\uB9BD\uD2B8\uB294 Docker \uCEE8\uD14C\uC774\uB108\uAC00 \uC2DC\uC791\uB420 \uB54C\uB9C8\uB2E4 \uC2E4\uD589\uB429\uB2C8\uB2E4. \uC0AC\uC6A9\uD558\uB294 \uD50C\uB7EC\uADF8\uC778\uC5D0 \uD544\uC694\uD55C ffmpeg \uB610\uB294 libpcap-dev \uB4F1\uC758 \uCD94\uAC00 \uD328\uD0A4\uC9C0 \uC124\uCE58\uB97C \uC704\uD574 \uC774 \uC2A4\uD06C\uB9BD\uD2B8\uB97C \uC0AC\uC6A9\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.","platform.docker.script_saved":"\uC2DC\uC791 \uC2A4\uD06C\uB9BD\uD2B8\uAC00 \uC800\uC7A5\uB418\uC5C8\uC2B5\uB2C8\uB2E4","platform.docker.server_long_time":"\uC11C\uBC84 \uC7AC\uC2DC\uC791\uC5D0 \uB9CE\uC740 \uC2DC\uAC04\uC774 \uC18C\uC694\uB418\uACE0 \uC788\uC2B5\uB2C8\uB2E4. Docker \uCEE8\uD14C\uC774\uB108\uB97C \uC218\uB3D9\uC73C\uB85C \uBD88\uB7EC\uC640\uC57C \uD560 \uC218\uB3C4 \uC788\uC2B5\uB2C8\uB2E4.","platform.docker.title_restarting":"Docker \uCEE8\uD14C\uC774\uB108 \uC7AC\uC2DC\uC791 \uC911","platform.linux.long_time":"\uC11C\uBC84 \uC7AC\uC2DC\uC791\uC5D0 \uB9CE\uC740 \uC2DC\uAC04\uC774 \uC18C\uC694\uB418\uACE0 \uC788\uC2B5\uB2C8\uB2E4. \uC11C\uBC84\uB97C \uC218\uB3D9\uC73C\uB85C \uB2E4\uC2DC \uBD88\uB7EC\uC640\uC57C \uD560 \uC218\uB3C4 \uC788\uC2B5\uB2C8\uB2E4.","platform.linux.restart":"\uC7A0\uC2DC\uB9CC \uAE30\uB2E4\uB824\uC8FC\uC138\uC694. Homebridge\uAC00 \uB2E4\uC2DC \uC628\uB77C\uC778 \uC0C1\uD0DC\uAC00 \uB418\uBA74 \uC790\uB3D9\uC73C\uB85C \uB2E4\uB978 \uD398\uC774\uC9C0\uB85C \uC774\uB3D9\uD569\uB2C8\uB2E4.","platform.linux.restarting_server":"\uC11C\uBC84 \uC7AC\uC2DC\uC791 \uC911","platform.linux.server_restart_error":"\uC7AC\uC2DC\uC791 \uBA85\uB839\uC744 \uC11C\uBC84\uB85C \uBCF4\uB0B4\uB294 \uC911\uC5D0 \uC624\uB958\uAC00 \uBC1C\uC0DD\uD588\uC2B5\uB2C8\uB2E4.","platform.linux.server_restarted":"\uC11C\uBC84\uAC00 \uC7AC\uC2DC\uC791\uB418\uC5C8\uC2B5\uB2C8\uB2E4","platform.linux.server_taking_long_time":"\uC11C\uBC84\uAC00 \uB2E4\uC2DC \uC628\uB77C\uC778 \uC0C1\uD0DC\uB85C \uB3CC\uC544\uC624\uB294\uB370 \uB9CE\uC740 \uC2DC\uAC04\uC774 \uC18C\uC694\uB418\uACE0 \uC788\uC2B5\uB2C8\uB2E4.","platform.linux.server_will_power_down":"\uC11C\uBC84\uC758 \uC804\uC6D0\uC774 \uACE7 \uAEBC\uC9D1\uB2C8\uB2E4.","platform.linux.shutting_down_server":"\uC11C\uBC84 \uC885\uB8CC","platform.version.restart_required":"Homebridge UI v{{ uiVersion }}\uAC00 \uC124\uCE58\uB418\uC5C8\uC9C0\uB9CC, \uC11C\uBC84 \uC11C\uBE44\uC2A4\uB294 \uC5EC\uC804\uD788 v{{ serverVersion }}\uB97C \uC2E4\uD589 \uC911\uC785\uB2C8\uB2E4.","platform.version.service_restart_required":"\uC11C\uBE44\uC2A4 \uC7AC\uC2DC\uC791 \uD544\uC694","plugins.bridge.action_error":"\uD558\uC704 Bridge\uB97C {{ action }}\uD558\uB294 \uB370 \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4.","plugins.button_homepage":"\uD50C\uB7EC\uADF8\uC778 \uD648\uD398\uC774\uC9C0","plugins.button_set_up":"\uC124\uCE58","plugins.button_settings":"\uC124\uC815","plugins.button_uninstall":"\uC81C\uAC70","plugins.button_update":"\uC5C5\uB370\uC774\uD2B8","plugins.compat.are_you_sure":"\uADF8\uB798\uB3C4 \uC774\uB300\uB85C \uC9C4\uD589\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?","plugins.compat.hb_node_too_low":"{{ packageName }} v{{ latestVersion }} \uC2E4\uD589\uC744 \uC704\uD574\uC11C\uB294 Node.js v{{ minVersion }} \uC774\uC0C1\uC774 \uD544\uC694\uD569\uB2C8\uB2E4. \uD604\uC7AC \uC2E4\uD589 \uC911\uC778 Node.js \uBC84\uC804\uC740 v{{ installedVersion }} \uC785\uB2C8\uB2E4.","plugins.compat.hb_too_low":"{{ pluginName }} \uD50C\uB7EC\uADF8\uC778\uC740 Homebridge v{{ minVersion }} \uC774\uC0C1 \uBC84\uC804\uC5D0\uC11C \uC2E4\uD589\uC774 \uAD8C\uC7A5\uB429\uB2C8\uB2E4. \uD604\uC7AC \uC2E4\uD589 \uC911\uC778 Homebridge \uBC84\uC804\uC740 v{{ installedVersion }} \uC785\uB2C8\uB2E4.","plugins.compat.node_first":"{{ packageName }}\uB97C \uC5C5\uB370\uC774\uD2B8\uD558\uAE30 \uC804\uC5D0 Node.js\uB97C \uC5C5\uADF8\uB808\uC774\uB4DC \uD574\uC8FC\uC138\uC694.","plugins.compat.node_link":"Node.js \uC5C5\uB370\uC774\uD2B8 \uD558\uB294\uBC95","plugins.compat.node_too_low":"{{ pluginName }} \uD50C\uB7EC\uADF8\uC778\uC740 Node.js v{{ minVersion }} \uC774\uC0C1 \uBC84\uC804\uC5D0\uC11C \uC2E4\uD589\uC774 \uAD8C\uC7A5\uB429\uB2C8\uB2E4. \uD604\uC7AC \uC2E4\uD589 \uC911\uC778 Node.js \uBC84\uC804\uC740 v{{ installedVersion }} \uC785\uB2C8\uB2E4.","plugins.compat.title":"\uD638\uD658\uC131 \uCCB4\uD06C","plugins.config.load_error":"\uD50C\uB7EC\uADF8\uC778 \uC124\uC815\uC744 \uBD88\uB7EC\uC624\uB294 \uB370 \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4.","plugins.config.must_be_array":"\uD50C\uB7EC\uADF8\uC778 \uC124\uC815\uC740 \uBC30\uC5F4\uC774\uC5B4\uC57C \uD569\uB2C8\uB2E4.","plugins.config.must_be_array_objects":"\uD50C\uB7EC\uADF8\uC778 \uC124\uC815\uC740 \uAC1D\uCCB4 \uBC30\uC5F4\uC774\uC5B4\uC57C \uD569\uB2C8\uB2E4.","plugins.config.must_be_object":"\uC124\uC815 \uBE14\uB85D\uC740 \uAC1D\uCCB4\uC5EC\uC57C \uD569\uB2C8\uB2E4.","plugins.config.name_property":'\uC561\uC138\uC11C\uB9AC\uB294 \uC720\uD6A8\uD55C "name" \uC18D\uC131\uC744 \uAC00\uC838\uC57C \uD569\uB2C8\uB2E4.',"plugins.config.please_fix":"\uC0C8 \uBE14\uB85D\uC744 \uCD94\uAC00\uD558\uAE30 \uC804\uC5D0 \uAC80\uC99D \uC624\uB958\uB97C \uC218\uC815\uD558\uC138\uC694.","plugins.config.remove_error":"\uD50C\uB7EC\uADF8\uC778 \uC124\uC815\uC744 \uC0AD\uC81C\uD558\uB294 \uB370 \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4.","plugins.disable.error":"\uD50C\uB7EC\uADF8\uC778\uC744 \uBE44\uD65C\uC131\uD654\uD558\uB294 \uB370 \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4.","plugins.donate.button_not_verified":"\uD655\uC778\uB418\uC9C0 \uC54A\uC74C","plugins.donate.button_verified":"\uD655\uC778\uB428","plugins.donate.message_1":"\uB354 \uB9CE\uC740 \uC0AC\uC6A9\uC790\uAC00 Homebridge UI\uB97C \uD1B5\uD574 \uD50C\uB7EC\uADF8\uC778\uC744 \uC124\uCE58\uD558\uBA74\uC11C, \uAC1C\uBC1C\uC790\uB97C \uC9C0\uC6D0\uD558\uB294 \uBC29\uBC95\uC774 \uC788\uB294 \uD504\uB85C\uC81D\uD2B8\uC758 GitHub \uD398\uC774\uC9C0\uB97C \uBC29\uBB38\uD560 \uAE30\uD68C\uAC00 \uC904\uC5B4\uB4E4\uACE0 \uC788\uC2B5\uB2C8\uB2E4.","plugins.donate.message_2":"Homebridge UI\uC5D0 \uAE30\uBD80 \uB9C1\uD06C\uB97C \uC9C1\uC811 \uCD94\uAC00\uD558\uBA74 \uC0AC\uC6A9\uC790\uAC00 \uC6D0\uD560 \uACBD\uC6B0 Homebridge \uAC1C\uBC1C\uC790\uB97C \uC9C0\uC6D0\uD558\uB294 \uBC29\uBC95\uC744 \uC54C \uC218 \uC788\uB3C4\uB85D \uBCF4\uC7A5\uD569\uB2C8\uB2E4.","plugins.donate.tile_donate_to":"{{ author }}\uC5D0 \uAE30\uBD80","plugins.enable.error":"\uD50C\uB7EC\uADF8\uC778\uC744 \uD65C\uC131\uD654\uD558\uB294 \uB370 \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4.","plugins.manage.all_versions":"\uBAA8\uB4E0 \uBC84\uC804","plugins.manage.child_bridge_restart":"\uD558\uC704 Bridge\uAC00 \uC131\uACF5\uC801\uC73C\uB85C \uC7AC\uC2DC\uC791\uB418\uC5C8\uC2B5\uB2C8\uB2E4.","plugins.manage.child_bridge_restart_failed":"\uD50C\uB7EC\uADF8\uC778 \uC7AC\uC2DC\uC791\uC5D0 \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4. Homebridge\uB97C \uC9C1\uC811 \uC7AC\uC2DC\uC791\uD558\uC138\uC694.","plugins.manage.confirm_disable":"{{ pluginName }}\uB97C \uBE44\uD65C\uC131\uD654\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?","plugins.manage.confirm_disable_accessory_1":"\uC774 \uD50C\uB7EC\uADF8\uC778\uC774 \uB178\uCD9C\uD558\uB294 \uBAA8\uB4E0 \uC561\uC138\uC11C\uB9AC\uB294 Homebridge UI \uC561\uC138\uC11C\uB9AC \uD654\uBA74\uC5D0\uC11C \uC81C\uAC70\uB418\uACE0 HomeKit\uC5D0\uC11C\uB3C4 \uC0AD\uC81C\uB429\uB2C8\uB2E4.","plugins.manage.confirm_disable_accessory_2":"\uD50C\uB7EC\uADF8\uC778\uC744 \uB2E4\uC2DC \uD65C\uC131\uD654\uD558\uBA74 \uC561\uC138\uC11C\uB9AC\uAC00 Homebridge UI\uC640 HomeKit\uC5D0 \uB2E4\uC2DC \uB098\uD0C0\uB0A9\uB2C8\uB2E4. \uADF8\uB7EC\uB098 \uC561\uC138\uC11C\uB9AC\uB294 HomeKit \uB370\uC774\uD130(\uC608: \uAD00\uB828 \uC7A5\uBA74 \uBC0F \uC790\uB3D9\uD654)\uB97C \uC783\uAC8C \uB429\uB2C8\uB2E4.","plugins.manage.confirm_disable_platform_1":"\uC774 \uD50C\uB7EC\uADF8\uC778\uC774 \uB178\uCD9C\uD558\uB294 \uBAA8\uB4E0 \uC561\uC138\uC11C\uB9AC\uB294 Homebridge UI \uC561\uC138\uC11C\uB9AC \uD654\uBA74\uC5D0\uC11C \uC81C\uAC70\uB418\uC9C0\uB9CC, HomeKit\uC5D0\uC11C\uB294 '\uC751\uB2F5 \uC5C6\uC74C' \uB77C\uBCA8\uACFC \uD568\uAED8 \uB0A8\uC544\uC788\uAC8C \uB429\uB2C8\uB2E4.","plugins.manage.confirm_disable_platform_2":"\uD50C\uB7EC\uADF8\uC778\uC744 \uB2E4\uC2DC \uD65C\uC131\uD654\uD558\uBA74 \uC561\uC138\uC11C\uB9AC\uAC00 Homebridge UI\uC5D0 \uB2E4\uC2DC \uB098\uD0C0\uB098\uACE0 HomeKit\uC5D0\uC11C \uB2E4\uC2DC \uC81C\uC5B4\uD560 \uC218 \uC788\uAC8C \uB429\uB2C8\uB2E4. \uC561\uC138\uC11C\uB9AC\uB294 HomeKit \uB370\uC774\uD130(\uC608: \uAD00\uB828 \uC7A5\uBA74 \uBC0F \uC790\uB3D9\uD654)\uB97C \uC783\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.","plugins.manage.confirm_enable":"{{ pluginName }} \uD50C\uB7EC\uADF8\uC778\uC744 \uD65C\uC131\uD654 \uD560\uAE4C\uC694?","plugins.manage.disable":"\uBE44\uD65C\uC131\uD654","plugins.manage.enable":"\uD65C\uC131\uD654","plugins.manage.information":"\uD50C\uB7EC\uADF8\uC778 \uC815\uBCF4","plugins.manage.install":"\uC124\uCE58","plugins.manage.installed":"\uC124\uCE58\uB428","plugins.manage.json_config":"JSON \uC124\uC815","plugins.manage.manage_version":"\uC774\uC804 \uBC84\uC804 \uC124\uCE58","plugins.manage.manual_update_command":"\uD328\uD0A4\uC9C0\uB97C \uC5C5\uADF8\uB808\uC774\uB4DC\uD558\uB824\uBA74 Node.js \uBA85\uB839 \uD504\uB86C\uD504\uD2B8\uB97C \uAD00\uB9AC\uC790 \uAD8C\uD55C\uC73C\uB85C \uC5F4\uACE0 \uB2E4\uC74C \uBA85\uB839\uC5B4\uB97C \uC2E4\uD589\uD558\uC138\uC694:","plugins.manage.manual_update_required":"\uC218\uB3D9 \uC5C5\uB370\uC774\uD2B8 \uD544\uC694","plugins.manage.online_updates":"Windows\uC5D0\uC11C \uC628\uB77C\uC778 \uC5C5\uB370\uC774\uD2B8\uB294 \uC9C0\uC6D0\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4. Homebridge \uC11C\uBE44\uC2A4\uB97C \uC911\uC9C0\uD55C \uD6C4 \uC218\uB3D9\uC73C\uB85C HomeBridge\uB97C \uC5C5\uADF8\uB808\uC774\uB4DC\uD574\uC57C\uD569\uB2C8\uB2E4.","plugins.manage.plugin_logs":"Plugin Logs","plugins.manage.release_notes":"Release Notes","plugins.manage.scoped.error":"An error occurred. You can download the logs below.","plugins.manage.scoped.info":"For more information about scoped plugins and why to switch, see the wiki page {{ link }}.","plugins.manage.scoped.process":"This process will not affect your Homebridge/HomeKit accessories. You will not be able to cancel the process once it has started. It will:","plugins.manage.scoped.switch":"Switch To Scoped Plugin","plugins.manage.scoped.windows":"Online updates are not supported on Windows. You will need to install the new plugin and uninstall the old plugin manually.","plugins.manage.scoped.windows_service":'You should <span class="font-weight-bold">not</span> restart Homebridge until both steps are complete.',"plugins.manage.select_version":"\uC124\uCE58\uD560 \uBC84\uC804\uC744 \uC120\uD0DD\uD558\uC138\uC694","plugins.manage.thanks_for_updating":"{{ pluginName }} \uCD5C\uC2E0\uBC84\uC804\uC744 \uC124\uCE58\uD574\uC8FC\uC154\uC11C \uAC10\uC0AC\uD569\uB2C8\uB2E4.","plugins.manage.uninstall":"\uC81C\uAC70","plugins.manage.uninstalled":"\uC81C\uAC70\uB428","plugins.manage.unverified_message":"\uAC80\uC99D\uB418\uC9C0 \uC54A\uC740 Homebridge \uD50C\uB7EC\uADF8\uC778\uC740 Homebridge \uD504\uB85C\uC81D\uD2B8 \uD300\uC758 \uAC80\uD1A0 \uACFC\uC815\uC744 \uAC70\uCE58\uC9C0 \uC54A\uC558\uC74C\uC744 \uB098\uD0C0\uB0C5\uB2C8\uB2E4. \uAC80\uC99D\uB418\uC9C0 \uC54A\uC558\uB2E4\uB294 \uAC83\uC774 \uBC18\uB4DC\uC2DC \uBE44\uD6A8\uC728\uC801\uC774\uAC70\uB098 \uC548\uC804\uC5D0 \uBB38\uC81C\uAC00 \uC788\uC74C\uC744 \uC758\uBBF8\uD558\uC9C0\uB294 \uC54A\uC2B5\uB2C8\uB2E4. \uC791\uC131\uC790\uAC00 \uB2E4\uC591\uD55C \uC774\uC720\uB85C \uAC80\uC99D\uC744 \uC694\uCCAD\uD558\uC9C0 \uC54A\uC558\uC744 \uC218\uB3C4 \uC788\uC2B5\uB2C8\uB2E4.","plugins.manage.unverified_subtitle":"{{ pluginName }}\uC740(\uB294) \uAC80\uC99D\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4.","plugins.manage.unverified_title":"\uAC80\uC99D\uB418\uC9C0 \uC54A\uC740 \uD50C\uB7EC\uADF8\uC778","plugins.manage.update":"\uC5C5\uB370\uC774\uD2B8","plugins.manage.updated":"\uC5C5\uB370\uC774\uD2B8\uB428","plugins.manage.verified_message":"\uAC80\uC99D\uB41C \uAC83\uC73C\uB85C \uD45C\uC2DC\uB41C Homebridge \uD50C\uB7EC\uADF8\uC778\uC740 \uCD5C\uC0C1\uC758 \uC2E4\uD589 \uBC29\uBC95\uACFC \uBB38\uC81C \uC5C6\uB294 \uC0AC\uC6A9\uC790 \uACBD\uD5D8\uC744 \uBCF4\uC7A5\uD558\uAE30 \uC704\uD574 Homebridge \uD504\uB85C\uC81D\uD2B8 \uD300\uC774 \uB2E4\uC591\uD55C \uC694\uAD6C \uC0AC\uD56D\uC744 \uAC80\uD1A0\uD55C \uD50C\uB7EC\uADF8\uC778\uC785\uB2C8\uB2E4.","plugins.manage.verified_subtitle":"{{ pluginName }}\uC740(\uB294) \uAC80\uC99D\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4.","plugins.manage.verified_title":"\uAC80\uC99D\uB41C \uD50C\uB7EC\uADF8\uC778","plugins.node_update.continue":"\uACC4\uC18D","plugins.placeholder_search_first":"\uC704 \uAC80\uC0C9\uCC3D\uC744 \uC0AC\uC6A9\uD574 \uCCAB \uD50C\uB7EC\uADF8\uC778\uC744 \uCC3E\uC544\uBCF4\uC138\uC694.","plugins.placeholder_search_plugin":"\uC124\uCE58\uD560 \uD50C\uB7EC\uADF8\uC778 \uAC80\uC0C9\u2026","plugins.settings.custom.homebridge-gsh.label_account_linked":"\uACC4\uC815 \uC5F0\uACB0\uB428","plugins.settings.custom.homebridge-gsh.label_link_account":"\uACC4\uC815 \uC5F0\uACB0","plugins.settings.custom.homebridge-gsh.label_unlink_account":"\uACC4\uC815 \uC5F0\uACB0\uD574\uC81C","plugins.settings.custom.homebridge-gsh.message_about":"Homebridge Google Smart Home \uD50C\uB7EC\uADF8\uC778\uC744 \uC0AC\uC6A9\uD558\uBA74 Google Home \uC9C0\uC6D0 \uC2A4\uB9C8\uD2B8 \uC2A4\uD53C\uCEE4 \uB610\uB294 Google Home \uBAA8\uBC14\uC77C \uC571\uC5D0\uC11C Homebridge \uC561\uC138\uC11C\uB9AC\uB97C \uC81C\uC5B4 \uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.","plugins.settings.custom.homebridge-gsh.message_account_link_required":"\uC774 \uAE30\uB2A5\uC744 \uC0AC\uC6A9\uD558\uB824\uBA74 Google \uB610\uB294 GitHub \uACC4\uC815\uC73C\uB85C \uB85C\uADF8\uC778\uD574\uC57C\uD569\uB2C8\uB2E4; Google Home \uBAA8\uBC14\uC77C \uC571\uC5D0 Homebridge \uC791\uC5C5\uC744 \uCD94\uAC00\uD560 \uB54C \uB3D9\uC77C\uD55C \uACC4\uC815\uC744 \uC0AC\uC6A9\uD574\uC57C\uD569\uB2C8\uB2E4.","plugins.settings.custom.homebridge-gsh.message_homebridge_restart_required":"\uBCC0\uACBD\uC0AC\uD56D\uC744 \uBC18\uC601\uD558\uB824\uBA74 Homebridge\uB97C \uB2E4\uC2DC \uC2DC\uC791\uD574\uC57C\uD569\uB2C8\uB2E4.","plugins.settings.custom.homebridge-gsh.message_invalid_token":"config.json\uC5D0 \uC798\uBABB\uB41C \uACC4\uC815 \uC5F0\uACB0 \uD1A0\uD070\uC774 \uC788\uC2B5\uB2C8\uB2E4.","plugins.settings.deconz.dump_no_exist":"Homebridge deCONZ \uB364\uD504 \uD30C\uC77C\uC774 \uC544\uC9C1 \uC874\uC7AC\uD558\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.","plugins.settings.hue.dump_no_exist":"Homebridge Hue \uB364\uD504 \uD30C\uC77C\uC774 \uC544\uC9C1 \uC874\uC7AC\uD558\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.","plugins.settings.label_open_config_editor":"Config \uC5D0\uB514\uD130 \uC5F4\uAE30","plugins.settings.message_consult_documentation":"\uD50C\uB7EC\uADF8\uC778\uC744 \uC62C\uBC14\uB974\uAC8C \uAD6C\uC131\uD558\uB294 \uBC29\uBC95\uC5D0 \uB300\uD55C \uB0B4\uC6A9\uC740 \uD574\uB2F9 \uD50C\uB7EC\uADF8\uC778\uC758 \uBB38\uC11C\uB97C \uCC38\uACE0\uD574\uC8FC\uC138\uC694.","plugins.settings.message_manual_config_required":"\uC774 \uD50C\uB7EC\uADF8\uC778\uC740 Homebridge UI Config \uC5D0\uB514\uD130\uB97C \uC0AC\uC6A9\uD558\uC5EC \uC9C1\uC811 Config \uC815\uBCF4\uB97C \uCD94\uAC00\uD574\uC57C\uD569\uB2C8\uB2E4.","plugins.settings.plugin_config_saved":"\uD50C\uB7EC\uADF8\uC778 Config\uAC00 \uC800\uC7A5\uB418\uC5C8\uC2B5\uB2C8\uB2E4","plugins.settings.restart_required":"\uBCC0\uACBD\uC0AC\uD56D\uC744 \uBC18\uC601\uD558\uB824\uBA74 Homebridge \uC7AC\uC2DC\uC791\uD574\uC57C\uD569\uB2C8\uB2E4.","plugins.settings.title_settings":"\uC124\uC815","plugins.status_disabled":"\uBE44\uD65C\uC131\uD654\uB428","plugins.status_installed":"\uC124\uCE58\uB428","plugins.toast_failed_to_load_plugin_schema":"\uD50C\uB7EC\uADF8\uC778 \uAD6C\uC131 \uC2A4\uD0A4\uB9C8\uB97C \uB85C\uB4DC\uD558\uB294 \uB370 \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4.","plugins.toast_failed_to_load_plugins":"\uD50C\uB7EC\uADF8\uC778 \uB85C\uB4DC \uC2E4\uD328","plugins.uninstall_bridge_error":"\uD558\uC704 Bridge\uB97C \uC81C\uAC70\uD558\uB294 \uB370 \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4.","plugins.uninstall_remove_config_required":"\uC774 \uD50C\uB7EC\uADF8\uC778\uC744 \uC601\uAD6C\uC801\uC73C\uB85C \uC0AD\uC81C\uD558\uB294 \uACBD\uC6B0, Homebrdige\uB97C \uC7AC\uC2DC\uC791 \uD558\uAE30 \uC804\uC5D0 config.json\uC5D0\uC11C \uC774 \uD50C\uB7EC\uADF8\uC778\uC758 Config \uC815\uBCF4\uAC00 \uC81C\uAC70\uB418\uC5C8\uB294\uC9C0 \uD655\uC778\uD574\uC8FC\uC138\uC694.","plugins.uninstall_remove_confirmation":"{{ pluginName }} \uD50C\uB7EC\uADF8\uC778\uC744 \uC81C\uAC70\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?","plugins.uninstall_remove_plugin_config":"\uD50C\uB7EC\uADF8\uC778\uC758 config \uC815\uBCF4 \uC81C\uAC70","plugins.uninstall_unpair_child_bridge":"\uD50C\uB7EC\uADF8\uC778\uC758 \uD558\uC704 Bridge\uB97C \uD398\uC5B4\uB9C1 \uD574\uC81C\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?","plugins.uninstall_unpair_child_bridges":"{{ count }}\uAC1C\uC758 \uD50C\uB7EC\uADF8\uC778 \uD558\uC704 Bridge \uC5F0\uACB0\uC744 \uD574\uC81C\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?","reset.accessory_reset":"Homebridge \uC561\uC138\uC11C\uB9AC \uCD08\uAE30\uD654","reset.action_is_irreversible":"\uC774 \uC791\uC5C5\uC744 \uC9C4\uD589\uD558\uBA74 \uB418\uB3CC\uB9B4 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4. \uC9C4\uD589\uD558\uAE30 \uC804\uC5D0 \uC8FC\uC758\uAE4A\uAC8C \uC77D\uC5B4\uBCF4\uC138\uC694.","reset.bridges.desc":"Homebridge, \uC678\uBD80 \uC561\uC138\uC11C\uB9AC \uB610\uB294 \uD558\uC704 Bridge\uB97C HomeKit\uC5D0 \uC5F0\uACB0\uD558\uB294 \uB370 \uBB38\uC81C\uAC00 \uC788\uB294 \uACBD\uC6B0, HomeKit\uC5D0\uC11C \uC5F0\uACB0\uC744 \uD574\uC81C\uD558\uACE0 \uB2E4\uC2DC \uC2DC\uB3C4\uD574\uC57C \uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.","reset.bridges.empty":"HomeKit\uC5D0\uC11C \uC5F0\uACB0\uC744 \uD574\uC81C\uD560 Bridge\uAC00 \uC5C6\uC2B5\uB2C8\uB2E4.","reset.bridges.title":"Bridge","reset.bridges_all.desc":"HomeKit\uC5D0\uC11C \uBAA8\uB4E0 Bridge\uC758 \uC5F0\uACB0\uC744 \uD574\uC81C\uD569\uB2C8\uB2E4. \uC5EC\uAE30\uC5D0\uB294 Homebridge\uC758 \uBA54\uC778 Bridge, \uD558\uC704 Bridge, \uC678\uBD80 \uC561\uC138\uC11C\uB9AC\uC758 Bridge\uAC00 \uD3EC\uD568\uB429\uB2C8\uB2E4.","reset.bridges_all.list_1":"HomeKit\uC5D0\uC11C Homebridge Bridge, \uBAA8\uB4E0 \uD558\uC704 Bridge \uBC0F \uC678\uBD80 \uC561\uC138\uC11C\uB9AC\uC758 Bridge\uB97C \uC5F0\uACB0 \uD574\uC81C\uD569\uB2C8\uB2E4.","reset.bridges_all.list_2":"Bridge\uAC00 HomeKit\uC5D0\uC11C \uC218\uB3D9\uC73C\uB85C \uC81C\uAC70\uB420 \uB54C\uAE4C\uC9C0, \uC561\uC138\uC11C\uB9AC\uAC00 HomeKit\uC5D0\uC11C '\uC751\uB2F5 \uC5C6\uC74C'\uC73C\uB85C \uD45C\uC2DC\uB429\uB2C8\uB2E4. \uC774\uB97C \uC81C\uAC70\uD558\uB824\uBA74 \uD648 \uC571\uC5D0\uC11C \uD648 \uC124\uC815 \u2192 \uD648 \uD5C8\uBE0C \uBC0F Bridge \u2192 {Bridge} \u2192 Bridge \uC0AD\uC81C\uB85C \uC774\uB3D9\uD558\uC2ED\uC2DC\uC624.","reset.bridges_all.list_3":"Homebridge\uC5D0\uC11C HomeKit\uC73C\uB85C \uC5F0\uACB0\uB41C \uBAA8\uB4E0 \uC561\uC138\uC11C\uB9AC, \uC7A5\uBA74 \uBC0F \uC790\uB3D9\uD654 \uC124\uC815\uC744 \uB2E4\uC2DC \uAD6C\uC131\uD574\uC57C \uD569\uB2C8\uB2E4.","reset.bridges_all.list_4":"HomeKit\uC5D0 Homebridge Bridge\uB97C \uC5F0\uACB0\uD558\uAE30 \uC704\uD55C PIN\uC774 \uBCC0\uACBD\uB429\uB2C8\uB2E4. \uC5F0\uACB0 \uD574\uC81C \uD6C4 Homebridge \uAD6C\uC131\uC5D0\uC11C \uC0C8 \uAC12\uC744 \uD655\uC778\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.","reset.bridges_all.title":"\uBAA8\uB4E0 Bridge \uC5F0\uACB0 \uD574\uC81C","reset.bridges_single.desc":"HomeKit\uC5D0\uC11C \uB2E8\uC77C Bridge\uB97C \uC5F0\uACB0 \uD574\uC81C\uD569\uB2C8\uB2E4. \uC774 Bridge\uB294 \uD558\uC704 Bridge\uC774\uAC70\uB098 \uCE74\uBA54\uB77C \uB610\uB294 TV\uC640 \uAC19\uC740 \uC678\uBD80 \uC561\uC138\uC11C\uB9AC\uB97C \uC704\uD55C Bridge\uC77C \uC218 \uC788\uC2B5\uB2C8\uB2E4.","reset.bridges_single.list_1":"Bridge\uC758 \uC5F0\uACB0\uC744 \uD574\uC81C\uD558\uBA74, \uD574\uB2F9 Bridge\uC5D0\uC11C \uAC8C\uC2DC\uB41C \uBAA8\uB4E0 \uC561\uC138\uC11C\uB9AC\uAC00 Homebridge \uCE90\uC2DC\uC5D0\uC11C \uC81C\uAC70\uB429\uB2C8\uB2E4.","reset.bridges_single.list_2":"\uC774 \uC561\uC138\uC11C\uB9AC\uB294 HomeKit\uC5D0\uC11C '\uC751\uB2F5 \uC5C6\uC74C' \uC0C1\uD0DC\uB85C \uD45C\uC2DC\uB429\uB2C8\uB2E4. \uC774\uB97C \uC81C\uAC70\uD558\uB824\uBA74 HomeKit\uC5D0\uC11C \uD574\uB2F9 Bridge\uB97C \uC218\uB3D9\uC73C\uB85C \uC0AD\uC81C\uD574\uC57C \uD569\uB2C8\uB2E4. \uD648 \uC571\uC758 \uD648 \uC124\uC815 \uC139\uC158\uC5D0\uC11C \uC774\uB97C \uC218\uD589\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.","reset.bridges_single.list_3":"\uD544\uC694\uD55C \uACBD\uC6B0, Bridge\uB97C \uB2E4\uC2DC \uC5F0\uACB0 \uC2DC\uB3C4\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.","reset.bridges_single.title":"\uB2E8\uC77C Bridge \uC5F0\uACB0 \uD574\uC81C","reset.cached_accessory_removed":"\uCE90\uC2DC\uB41C \uC561\uC138\uC11C\uB9AC \uC0AD\uC81C\uB428","reset.clear_cache_all.desc":"\uCE90\uC2DC\uC5D0\uC11C \uBAA8\uB4E0 \uC561\uC138\uC11C\uB9AC\uB97C \uC0AD\uC81C\uD569\uB2C8\uB2E4.","reset.clear_cache_all.list_1":"\uC544\uB798 \uC0AD\uC81C \uBC84\uD2BC\uC744 \uD074\uB9AD\uD558\uBA74 Homebridge\uAC00 \uC7AC\uC2DC\uC791\uB418\uBA70, \uAE30\uC874 \uC561\uC138\uC11C\uB9AC\uAC00 Homebridge\uC640 HomeKit\uC5D0\uC11C \uBAA8\uB450 \uC0AD\uC81C\uB429\uB2C8\uB2E4.","reset.clear_cache_all.list_2":"\uC5F0\uACB0\uB41C \uBAA8\uB4E0 HomeKit \uB370\uC774\uD130\uB3C4 \uC0AD\uC81C\uB429\uB2C8\uB2E4. \uC5EC\uAE30\uC5D0\uB294 \uBC29 \uC5F0\uACB0, \uC7A5\uBA74 \uBC0F \uC774 \uC561\uC138\uC11C\uB9AC\uAC00 \uC0AC\uC6A9\uD558\uB294 \uC790\uB3D9\uD654\uAC00 \uD3EC\uD568\uB429\uB2C8\uB2E4.","reset.clear_cache_all.list_3":"Homebridge\uAC00 \uC7AC\uC2DC\uC791\uB41C \uD6C4, \uD50C\uB7EC\uADF8\uC778\uC740 \uCC98\uC74C \uC124\uCE58\uB41C \uAC83\uCC98\uB7FC \uBAA8\uB4E0 \uC561\uC138\uC11C\uB9AC\uB97C \uB2E4\uC2DC \uCD94\uAC00\uD569\uB2C8\uB2E4.","reset.clear_cache_all.title":"\uBAA8\uB4E0 \uC561\uC138\uC11C\uB9AC \uC0AD\uC81C","reset.clear_cache_bridge.desc":"Bridge\uC5D0\uC11C \uAC8C\uC2DC\uB41C \uBAA8\uB4E0 \uC561\uC138\uC11C\uB9AC\uB97C \uCE90\uC2DC\uC5D0\uC11C \uC0AD\uC81C\uD569\uB2C8\uB2E4.","reset.clear_cache_bridge.empty":"\uC561\uC138\uC11C\uB9AC\uB97C \uC0AD\uC81C\uD560 Bridge\uAC00 \uC5C6\uC2B5\uB2C8\uB2E4.","reset.clear_cache_bridge.list_1":"\uC774 \uAE30\uB2A5\uC740 \uD50C\uB7EC\uADF8\uC778\uC758 \uAE30\uC874 \uC561\uC138\uC11C\uB9AC\uB97C HomeKit\uC5D0\uC11C \uCD08\uAE30\uD654\uD558\uB294 \uB370 \uC0AC\uC6A9\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4. Homebridge/HomeKit\uC5D0\uC11C \uC81C\uAC70\uB41C \uD6C4 \uD50C\uB7EC\uADF8\uC778\uC774 \uC0C8 \uC561\uC138\uC11C\uB9AC\uB85C \uB2E4\uC2DC \uCD94\uAC00\uD569\uB2C8\uB2E4.","reset.clear_cache_bridge.list_2":"\uD558\uC704 Bridge\uC758 \uD398\uC5B4\uB9C1 \uC138\uBD80 \uC815\uBCF4\uC640 \uC0C1\uD0DC\uB294 \uBCC0\uACBD\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.","reset.clear_cache_bridge.title":"Bridge \uC561\uC138\uC11C\uB9AC \uC0AD\uC81C","reset.clear_cache_single.desc":"\uCE90\uC2DC\uC5D0\uC11C \uB2E8\uC77C \uC561\uC138\uC11C\uB9AC\uB97C \uC0AD\uC81C\uD569\uB2C8\uB2E4.","reset.clear_cache_single.list_1":"\uC77C\uBD80 \uD50C\uB7EC\uADF8\uC778\uC740 \uC2A4\uC2A4\uB85C\uB97C \uC81C\uB300\uB85C \uC815\uB9AC\uD558\uC9C0 \uC54A\uC744 \uC218 \uC788\uC2B5\uB2C8\uB2E4! Homebridge\uC5D0 \uB354 \uC774\uC0C1 \uC5C6\uB294 \uC561\uC138\uC11C\uB9AC\uAC00 HomeKit\uC5D0 \uC5EC\uC804\uD788 \uD45C\uC2DC\uB418\uB294 \uACBD\uC6B0 \uCE90\uC2DC\uC5D0\uC11C \uC774\uB97C \uC0AD\uC81C\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.","reset.clear_cache_single.list_2":"\uC774 \uAE30\uB2A5\uC740 \uAE30\uC874 \uC561\uC138\uC11C\uB9AC\uB97C HomeKit\uC5D0\uC11C \uCD08\uAE30\uD654\uD558\uB294 \uB370 \uC0AC\uC6A9\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4. Homebridge/HomeKit\uC5D0\uC11C \uC81C\uAC70\uB41C \uD6C4 \uD50C\uB7EC\uADF8\uC778\uC774 \uC0C8 \uC561\uC138\uC11C\uB9AC\uB85C \uB2E4\uC2DC \uCD94\uAC00\uD569\uB2C8\uB2E4.","reset.clear_cache_single.list_3":"\uCE90\uC2DC\uC5D0\uC11C \uC561\uC138\uC11C\uB9AC\uB97C \uC81C\uAC70\uD558\uBA74 \uC5F0\uACB0\uB41C \uBAA8\uB4E0 HomeKit \uB370\uC774\uD130\uAC00 \uC0AD\uC81C\uB429\uB2C8\uB2E4. \uC5EC\uAE30\uC5D0\uB294 \uC774 \uC561\uC138\uC11C\uB9AC\uB97C \uC0AC\uC6A9\uD558\uB294 \uBAA8\uB4E0 \uC7A5\uBA74 \uBC0F \uC790\uB3D9\uD654\uAC00 \uD3EC\uD568\uB429\uB2C8\uB2E4.","reset.clear_cache_single.list_4":"Homebridge\uAC00 \uC2E4\uD589 \uC911\uC774\uC9C0 \uC54A\uC744 \uB54C\uB9CC \uC561\uC138\uC11C\uB9AC\uB97C \uC0AD\uC81C\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4. \uC544\uB798 \uC0AD\uC81C \uBC84\uD2BC\uC744 \uD074\uB9AD\uD558\uBA74 Homebridge\uAC00 \uC790\uB3D9\uC73C\uB85C \uC7AC\uC2DC\uC791\uB429\uB2C8\uB2E4. \uC5EC\uB7EC \uC561\uC138\uC11C\uB9AC\uB97C \uC0AD\uC81C\uD574\uC57C \uD558\uB294 \uACBD\uC6B0, \uAC01\uAC01\uC758 \uC0AD\uC81C \uC0AC\uC774\uC5D0 Homebridge\uAC00 \uC7AC\uC2DC\uC791\uB420 \uC2DC\uAC04\uC744 \uCDA9\uBD84\uD788 \uAE30\uB2E4\uB824 \uC8FC\uC2ED\uC2DC\uC624.","reset.clear_cache_single.title":"\uB2E8\uC77C \uC561\uC138\uC11C\uB9AC \uC81C\uAC70","reset.delete_failed":"\uC561\uC138\uC11C\uB9AC\uB97C \uC0AD\uC81C\uD558\uC9C0 \uBABB\uD588\uC2B5\uB2C8\uB2E4.","reset.delete_success":"Homebridge\uB97C \uB2E4\uC2DC \uC2DC\uC791\uD558\uACE0 \uC561\uC138\uC11C\uB9AC \uCE90\uC2DC\uB97C \uC0AD\uC81C\uD569\uB2C8\uB2E4.","reset.error_message":"\uC561\uC138\uC11C\uB9AC \uCE90\uC2DC\uB97C \uBD88\uB7EC\uC62C \uC218 \uC5C6\uC2B5\uB2C8\uB2E4. \uCE90\uC2DC\uB41C \uC561\uC138\uC11C\uB9AC\uAC00 \uC5C6\uC744 \uC218 \uC788\uC2B5\uB2C8\uB2E4.","reset.failed_to_reset":"Homebridg \uCD08\uAE30\uD654\uAC00 \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4. \uB85C\uADF8\uB97C \uD655\uC778\uD574\uC8FC\uC138\uC694.","reset.force_restart_hb_help_text":"HB-Service\uC758 \uC11C\uBE44\uC2A4\uAC00 \uC644\uC804\uD788 \uC7AC\uC2DC\uC791\uB418\uAC8C \uD558\uB824\uBA74 \uC774 \uC791\uC5C5\uC744 \uC0AC\uC6A9\uD574\uC8FC\uC138\uC694.","reset.remove_cached_accessories_single_empty":"\uC0AD\uC81C\uD560 \uCE90\uC2DC\uB41C \uC561\uC138\uC11C\uB9AC\uAC00 \uC5C6\uC2B5\uB2C8\uB2E4.","reset.removing_cached_accessory_please_wait":"\uCE90\uC2DC\uC5D0\uC11C \uC561\uC138\uC11C\uB9AC\uB97C \uC81C\uAC70\uD558\uB294 \uC911\uC785\uB2C8\uB2E4. \uC7A0\uC2DC\uB9CC \uAE30\uB2E4\uB824\uC8FC\uC138\uC694\u2026","restart.child_bridge_list":"\uBCC0\uACBD \uC0AC\uD56D\uC744 \uC801\uC6A9\uD558\uB824\uBA74 \uB2E4\uC74C \uD558\uC704 Bridge\uB97C \uC7AC\uC2DC\uC791\uD558\uC138\uC694:","restart.child_bridges":"\uBCC0\uACBD \uC0AC\uD56D\uC744 \uC801\uC6A9\uD558\uB824\uBA74 \uD50C\uB7EC\uADF8\uC778\uC758 \uD558\uC704 Bridge\uB97C \uC7AC\uC2DC\uC791\uD558\uC138\uC694.","restart.homebridge":"\uBCC0\uACBD \uC0AC\uD56D\uC744 \uC801\uC6A9\uD558\uB824\uBA74 Homebridge\uB97C \uC7AC\uC2DC\uC791\uD558\uC138\uC694.","restart.label_restart_command_executed":"\uC7AC\uC2DC\uC791 \uBA85\uB839 \uC2E4\uD589\uB428","restart.please_wait_while_server_restarts":"\uC7A0\uC2DC\uB9CC \uAE30\uB2E4\uB824\uC8FC\uC138\uC694. \uC11C\uBC84\uAC00 \uB2E4\uC2DC \uC628\uB77C\uC778 \uC0C1\uD0DC\uAC00 \uB418\uBA74 \uC790\uB3D9\uC73C\uB85C \uB2E4\uB978 \uD398\uC774\uC9C0\uB85C \uC774\uB3D9\uD569\uB2C8\uB2E4.","restart.server_is_taking_long_time_to_restart":"\uC11C\uBC84 \uC7AC\uC2DC\uC791\uC5D0 \uB9CE\uC740 \uC2DC\uAC04\uC774 \uC18C\uC694\uB418\uACE0 \uC788\uC2B5\uB2C8\uB2E4. Homebridge \uC11C\uBE44\uC2A4\uB97C \uC218\uB3D9\uC73C\uB85C \uB2E4\uC2DC \uBD88\uB7EC\uC640\uC57C \uD560 \uC218\uB3C4 \uC788\uC2B5\uB2C8\uB2E4.","restart.service_ready":"Homebridge \uC11C\uBC84 \uC900\uBE44","restart.title_restart":"Homebridge \uB2E4\uC2DC \uC2DC\uC791","restart.toast_server_restart_error":"\uC7AC\uC2DC\uC791 \uBA85\uB839\uC744 \uC11C\uBC84\uB85C \uBCF4\uB0B4\uB294 \uC911\uC5D0 \uC624\uB958\uAC00 \uBC1C\uC0DD\uD588\uC2B5\uB2C8\uB2E4","restart.toast_server_restart_timeout":"\uC11C\uBC84\uAC00 \uB2E4\uC2DC \uC628\uB77C\uC778 \uC0C1\uD0DC\uB85C \uB3CC\uC544\uC624\uB294\uB370 \uB9CE\uC740 \uC2DC\uAC04\uC774 \uC18C\uC694\uB418\uACE0 \uC788\uC2B5\uB2C8\uB2E4","restart.toast_server_restarted":"\uC11C\uBC84 \uC7AC\uC2DC\uC791\uB428","restart.ui_online":"Homebridge UI \uC628\uB77C\uC778","rpi.throttled.currently_message":"\uC774 Raspberry Pi\uC758 \uC804\uC555(Low voltage)\uC774 \uBD88\uC548\uC815 \uD569\uB2C8\uB2E4. \uC804\uC555\uC774 \uB0AE\uC740\uACBD\uC6B0 \uC2DC\uC2A4\uD15C\uC774 \uBD88\uC548\uC815\uD574\uC9C0\uACE0 SD\uCE74\uB4DC\uAC00 \uC190\uC0C1\uB420 \uC218 \uC788\uC2B5\uB2C8\uB2E4. Pi \uBC84\uC804\uC5D0 \uB9DE\uAC8C \uC801\uC808\uD55C \uC804\uC6D0\uC744 \uACF5\uAE09 \uD558\uAC70\uB098 \uCF00\uC774\uBE14\uC744 \uC810\uAC80 \uD558\uC138\uC694.","rpi.throttled.previously_message":"\uB9C8\uC9C0\uB9C9 \uC7AC\uBD80\uD305 \uC774\uD6C4 Raspberry Pi\uB85C \uBD80\uD130 \uC804\uC555 \uBD80\uC871 \uC774\uBCA4\uD2B8\uB97C \uC218\uC2E0\uD558\uC600\uC2B5\uB2C8\uB2E4. Pi \uBC84\uC804\uC5D0 \uB9DE\uAC8C \uC801\uC808\uD55C \uC804\uC6D0\uC744 \uACF5\uAE09 \uD558\uAC70\uB098 \uCF00\uC774\uBE14\uC744 \uC810\uAC80 \uD558\uC138\uC694.","rpi.throttled.undervoltage_title":"\uC800\uC804\uC555","settings.cache.desc":"Homebridge\uB294 \uC561\uC138\uC11C\uB9AC\uB97C \uCE90\uC2DC\uC5D0 \uC720\uC9C0\uD558\uC5EC \uB9E4\uBC88 \uC7AC\uC2DC\uC791\uD560 \uB54C HomeKit\uC5D0\uC11C \uC81C\uAC70\uB418\uC5C8\uB2E4\uAC00 \uB2E4\uC2DC \uCD94\uAC00\uB418\uC9C0 \uC54A\uB3C4\uB85D \uD569\uB2C8\uB2E4. \uADF8\uB7EC\uB098 \uC774 \uCE90\uC2DC\uAC00 \uC2E4\uC81C Homebridge\uC758 \uC561\uC138\uC11C\uB9AC\uC640 \uB3D9\uAE30\uD654\uB418\uC9C0 \uC54A\uC744 \uB54C\uB3C4 \uC788\uC2B5\uB2C8\uB2E4.","settings.cache.title":"\uC561\uC138\uC11C\uB9AC","settings.changes.saved":"\uBCC0\uACBD \uC0AC\uD56D\uC774 \uC800\uC7A5\uB418\uC5C8\uC2B5\uB2C8\uB2E4. \uC801\uC6A9\uD558\uB824\uBA74 \uC7AC\uC2DC\uC791\uC774 \uD544\uC694\uD569\uB2C8\uB2E4.","settings.datetime.incorrect":"Homebridge \uC11C\uBC84\uC758 \uB0A0\uC9DC\uC640 \uC2DC\uAC04\uC774 \uC62C\uBC14\uB974\uC9C0 \uC54A\uC740 \uAC83 \uAC19\uC2B5\uB2C8\uB2E4. \uC774\uB85C \uC778\uD574 \uC608\uC0C1\uCE58 \uBABB\uD55C \uBB38\uC81C\uAC00 \uBC1C\uC0DD\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4. \uC790\uC138\uD55C \uB0B4\uC6A9\uC744 \uBCF4\uB824\uBA74 \uC5EC\uAE30\uB97C \uD074\uB9AD\uD558\uC138\uC694.","settings.display.blue":"\uD30C\uB791","settings.display.bluegrey":"\uCCAD\uD68C\uC0C9","settings.display.brown":"\uAC08\uC0C9","settings.display.cyan":"\uCCAD\uB85D\uC0C9","settings.display.dark":"\uC5B4\uB450\uC6B4","settings.display.deep_purple":"\uC9C4\uD55C \uBCF4\uB77C","settings.display.green":"\uB179\uC0C9","settings.display.grey":"\uD68C\uC0C9","settings.display.indigo":"\uB0A8\uC0C9","settings.display.lang":"\uC5B8\uC5B4","settings.display.light":"\uBC1D\uC740","settings.display.lighting_mode":"\uC870\uBA85 \uBAA8\uB4DC","settings.display.login_wallpaper":"\uB85C\uADF8\uC778 \uBC30\uACBD\uD654\uBA74","settings.display.login_wallpaper_desc":"\uC0AC\uC6A9\uC790 \uC9C0\uC815 \uB85C\uADF8\uC778 \uBC30\uACBD\uD654\uBA74\uC740 Homebridge \uC800\uC7A5\uC18C \uB514\uB809\uD1A0\uB9AC\uC5D0 <code>ui-wallpaper.jpg</code> \uD30C\uC77C\uC744 \uCD94\uAC00\uD558\uAC70\uB098 \uC5EC\uAE30\uC5D0 \uB85C\uCEEC \uC774\uBBF8\uC9C0 \uD30C\uC77C\uC758 \uC804\uCCB4 \uACBD\uB85C\uB97C \uC81C\uACF5\uD558\uC5EC \uC124\uC815\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.","settings.display.orange":"\uC8FC\uD669","settings.display.pink":"\uBD84\uD64D","settings.display.purple":"\uBCF4\uB77C","settings.display.red":"\uBE68\uAC15","settings.display.teal":"\uCCAD\uB85D","settings.display.temp_units":"\uC628\uB3C4 \uB2E8\uC704","settings.display.temp_units.c":"\uC12D\uC528 (\xB0C)","settings.display.temp_units.f":"\uD654\uC528 (\xB0F)","settings.display.theme":"\uD14C\uB9C8","settings.general.title_display":"\uB514\uC2A4\uD50C\uB808\uC774","settings.general.title_general":"\uC77C\uBC18","settings.mdns_advertiser":"mDNS \uAD11\uACE0\uC790","settings.mdns_advertiser_exp":"\uC2E4\uD5D8\uC801","settings.mdns_advertiser_help":"Homebridge\uB97C HomeKit\uC5D0 \uC5F0\uACB0\uD558\uB294 \uB370 \uBB38\uC81C\uAC00 \uC788\uB294 \uACBD\uC6B0(\uD648 \uC571\uC5D0\uC11C \uBAA8\uB4E0 \uC561\uC138\uC11C\uB9AC\uAC00 '\uC751\uB2F5 \uC5C6\uC74C'\uC73C\uB85C \uD45C\uC2DC\uB418\uB294 \uACBD\uC6B0), \uB2E4\uB978 mDNS \uAD11\uACE0\uC790\uB97C \uC0AC\uC6A9\uD574 \uBCF4\uC138\uC694.","settings.mdns_advertiser_not_connected":"\uC5F0\uACB0\uB418\uC9C0 \uC54A\uC74C","settings.mdns_advertiser_rec":"\uAD8C\uC7A5","settings.network.label_interface_name":"\uC778\uD130\uD398\uC774\uC2A4 \uC774\uB984","settings.network.label_ip_address":"IP \uC8FC\uC18C","settings.network.message_network_interface":"\uB124\uD2B8\uC6CC\uD06C \uC778\uD130\uD398\uC774\uC2A4\uAC00 \uC120\uD0DD\uB418\uC9C0 \uC54A\uC73C\uBA74, Homebridge\uB294 \uC790\uB3D9\uC73C\uB85C \uBC1C\uC1A1\uD560 \uC778\uD130\uD398\uC774\uC2A4 \uACB0\uC815\uD569\uB2C8\uB2E4.","settings.network.port_hb":"Homebridge \uD3EC\uD2B8","settings.network.port_hb_desc":"Homebridge Bridge\uB97C \uC2E4\uD589\uD560 \uD3EC\uD2B8 \uBC88\uD638\uC785\uB2C8\uB2E4. 1025\uC5D0\uC11C 65533 \uC0AC\uC774\uC5EC\uC57C \uD558\uBA70 Homebridge UI \uD3EC\uD2B8\uC640 \uB3D9\uC77C\uD558\uC9C0 \uC54A\uC544\uC57C \uD569\uB2C8\uB2E4.","settings.network.port_ui":"UI \uD3EC\uD2B8","settings.network.port_ui_desc":"Homebridge UI\uB97C \uC2E4\uD589\uD560 \uD3EC\uD2B8 \uBC88\uD638\uC785\uB2C8\uB2E4.","settings.network.title_network":"\uB124\uD2B8\uC6CC\uD06C","settings.network.title_network_interfaces":"\uB124\uD2B8\uC6CC\uD06C \uC778\uD130\uD398\uC774\uC2A4","settings.service.debug_tooltip":"\uC77C\uBD80 \uD50C\uB7EC\uADF8\uC778\uC740 \uB514\uBC84\uADF8 \uC218\uC900\uC758 \uB85C\uADF8\uB97C \uD65C\uC131\uD654\uD558\uB824\uBA74 DEBUG \uD658\uACBD \uBCC0\uC218\uB97C \uC124\uC815\uD574\uC57C \uD569\uB2C8\uB2E4.","settings.service.node_tooltip":"\uC774 \uD504\uB85C\uC138\uC2A4\uC758 Node.js \uB7F0\uD0C0\uC784 \uC635\uC158\uC785\uB2C8\uB2E4. \uC798 \uC54C\uACE0 \uC788\uB294 \uACBD\uC6B0\uAC00 \uC544\uB2C8\uB77C\uBA74 \uBE48\uCE78\uC73C\uB85C \uB450\uB294 \uAC83\uC774 \uC88B\uC2B5\uB2C8\uB2E4.","settings.startup.debug":"Homebridge \uB514\uBC84\uADF8 \uBAA8\uB4DC","settings.startup.debug_desc_v1":"Homebridge\uAC00 \uB354 \uC790\uC138\uD55C \uB85C\uADF8\uB97C \uCD9C\uB825\uD558\uB3C4\uB85D \uC124\uC815\uD558\uB824\uBA74 \uD65C\uC131\uD654\uD558\uC138\uC694. \uC774 \uC124\uC815\uC740 \uBA54\uC778 Homebridge Bridge\uC640 \uBAA8\uB4E0 \uD558\uC704 Bridge\uC5D0 \uC801\uC6A9\uB429\uB2C8\uB2E4. \uC77C\uBD80 \uD50C\uB7EC\uADF8\uC778\uC740 \uC774 \uC124\uC815\uC744 \uB530\uB974\uBA70 \uB354 \uC790\uC138\uD55C \uB85C\uADF8\uB97C \uCD9C\uB825\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.","settings.startup.debug_desc_v2":"Homebridge\uAC00 \uB354 \uC790\uC138\uD55C \uB85C\uADF8\uB97C \uCD9C\uB825\uD558\uB3C4\uB85D \uC124\uC815\uD558\uB824\uBA74 \uD65C\uC131\uD654\uD558\uC138\uC694. \uC774 \uC124\uC815\uC740 \uBA54\uC778 Homebridge Bridge\uC5D0 \uC801\uC6A9\uB429\uB2C8\uB2E4. \uD558\uC704 Bridge\uC758 \uC124\uC815\uC740 \uD50C\uB7EC\uADF8\uC778 \uD398\uC774\uC9C0\uC5D0\uC11C \uD558\uC704 Bridge \uC124\uC815\uC5D0\uC11C \uCC3E\uC744 \uC218 \uC788\uC2B5\uB2C8\uB2E4. \uC77C\uBD80 \uD50C\uB7EC\uADF8\uC778\uC740 \uC774 \uC124\uC815\uC744 \uB530\uB974\uBA70 \uB354 \uC790\uC138\uD55C \uB85C\uADF8\uB97C \uCD9C\uB825\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.","settings.startup.insecure":"Homebridge '\uBE44\uBCF4\uC548' \uBAA8\uB4DC","settings.startup.insecure_desc":"Homebridge UI\uB97C \uD1B5\uD574 \uC561\uC138\uC11C\uB9AC\uB97C \uC81C\uC5B4\uD558\uB824\uBA74 Homebridge\uB97C \uBE44\uBCF4\uC548 \uBAA8\uB4DC\uC5D0\uC11C \uC2E4\uD589\uD574\uC57C \uD569\uB2C8\uB2E4.","settings.startup.keep_accessories":"\uC81C\uAC70\uB41C \uD50C\uB7EC\uADF8\uC778\uC758 \uC561\uC138\uC11C\uB9AC \uC720\uC9C0","settings.startup.keep_accessories_desc":"\uD65C\uC131\uD654\uD558\uBA74, \uD50C\uB7AB\uD3FC \uD50C\uB7EC\uADF8\uC778\uC758 \uC561\uC138\uC11C\uB9AC\uB294 \uD50C\uB7EC\uADF8\uC778\uC744 \uC0AD\uC81C\uD55C \uD6C4\uC5D0\uB3C4 \uCE90\uC2DC\uC5D0 \uB0A8\uC544 \uC788\uC2B5\uB2C8\uB2E4. \uB098\uC911\uC5D0 \uD50C\uB7EC\uADF8\uC778\uC744 \uB2E4\uC2DC \uC124\uCE58\uD558\uB824\uB294 \uACBD\uC6B0 \uC720\uC6A9\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.","settings.title_startup_options":"\uC2DC\uC791 \uC635\uC158","settings.unpair_bridge.load_error":"\uD398\uC5B4\uB9C1\uB41C Bridge\uB97C \uBD88\uB7EC\uC624\uB294 \uB370 \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4.","settings.unpair_bridge.unpair_error":"Bridge\uC758 \uD398\uC5B4\uB9C1 \uD574\uC81C\uC5D0 \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4.","setup.button_get_started":"\uC124\uCE58 \uB9C8\uBC95\uC0AC \uC2DC\uC791","setup.create_account":"\uACC4\uC815 \uC0DD\uC131","setup.create_account_reason":"Homebridge \uAD00\uB9AC\uC790 \uD398\uC774\uC9C0 \uBE44\uBC00\uBC88\uD638\uB97C \uC124\uC815\uD558\uC138\uC694. Homebridge\uB97C \uB85C\uCEEC \uB124\uD2B8\uC6CC\uD06C\uC5D0\uC11C\uB9CC \uC0AC\uC6A9\uD558\uB294 \uACBD\uC6B0\uB77C\uB3C4 \uD574\uCEE4\uC758 \uD45C\uC801\uC774 \uB420 \uC218 \uC788\uC2B5\uB2C8\uB2E4. \uAF2D \uBE44\uBC00\uBC88\uD638\uB97C \uC124\uC815 \uD6C4 \uC0AC\uC6A9\uD558\uC138\uC694.","setup.open_dashboard":"\uB300\uC2DC\uBCF4\uB4DC \uC5F4\uAE30","setup.welcome_to_homebridge":"Homebridge\uC5D0 \uC624\uC2E0 \uAC83\uC744 \uD658\uC601\uD569\uB2C8\uB2E4",setup_wizard_message_complete_message:"\uC124\uCE58\uAC00 \uC644\uB8CC\uB418\uC5C8\uC2B5\uB2C8\uB2E4. \uC774\uC81C Homebridge\uB97C \uC0AC\uC6A9\uD560 \uC900\uBE44\uAC00 \uB418\uC5C8\uC2B5\uB2C8\uB2E4.",setup_wizard_message_complete_title:"\uCD95\uD558\uD569\uB2C8\uB2E4!",setup_wizard_message_restore:"\uBC31\uC5C5\uC5D0\uC11C \uBCF5\uC6D0\uD558\uAE30","status.code_scan":"HomeKit\uC5D0 \uCD94\uAC00\uD558\uB824\uBA74 \uC2A4\uCE94\uD558\uC138\uC694","status.cpu.load":"\uB85C\uB4DC","status.cpu.temp":"\uC628\uB3C4","status.cpu.title_cpu":"CPU","status.credits.title":"Credits","status.homebridge.checking":"\uC5C5\uB370\uC774\uD2B8 \uD655\uC778 \uC911\u2026","status.homebridge.up_to_date":"\uCD5C\uC2E0 \uC0C1\uD0DC","status.memory.label_available":"\uAC00\uB2A5","status.memory.label_total":"\uC804\uCCB4","status.memory.title_memory":"\uBA54\uBAA8\uB9AC","status.network.received_per_second":"\uC218\uC2E0\uB428","status.network.sent_per_second":"\uC804\uC1A1","status.network.title_network":"\uB124\uD2B8\uC6CC\uD06C Activity","status.plugin_out_of_date":"\uAD6C\uBC84\uC804","status.plugins_out_of_date":"\uAD6C\uBC84\uC804","status.services.label_not_running":"\uC2E4\uD589\uB418\uC9C0 \uC54A\uC74C","status.services.label_running":"\uC2E4\uD589 \uC911","status.services.updates":"Update Centre","status.uptime.title_uptime":"\uAC00\uB3D9 \uC2DC\uAC04","status.widget.accessories.choose_accessories":"\uC774 \uC704\uC82F\uC5D0 \uB098\uD0C0\uB0A0 \uC561\uC138\uC11C\uB9AC\uB97C \uC561\uC138\uC11C\uB9AC \uD0ED\uC5D0\uC11C \uC120\uD0DD\uD574\uC8FC\uC138\uC694.","status.widget.add.label_pairing_code":"\uD398\uC5B4\uB9C1 \uCF54\uB4DC","status.widget.bridge.restart_error":"Failed to restart child bridge.","status.widget.clock":"\uC2DC\uACC4","status.widget.clock_dateformat":"\uB0A0\uC9DC \uD615\uC2DD","status.widget.clock_timeformat":"\uC2DC\uAC04 \uD615\uC2DD","status.widget.font_size":"\uAE00\uAF34 \uD06C\uAE30","status.widget.font_weight":"\uAE00\uAF34 \uAD75\uAE30","status.widget.hide_on_mobile":"\uCEF4\uD329\uD2B8 \uBDF0\uC5D0\uC11C \uC228\uAE30\uAE30(\uBAA8\uBC14\uC77C \uB514\uC2A4\uD50C\uB808\uC774)","status.widget.homebridge_logs":"Homebridge \uB85C\uADF8","status.widget.info":"\uC2DC\uC2A4\uD15C \uC815\uBCF4","status.widget.info.config_path":"Config \uACBD\uB85C","status.widget.info.disabled":"Disabled","status.widget.info.docker":"Docker","status.widget.info.glibc_message":"\uC774 \uBA54\uC2DC\uC9C0\uB294 \uC0AC\uC6A9 \uC911\uC778 \uC6B4\uC601\uCCB4\uC81C\uAC00 \uC0C8\uB85C\uC6B4 \uBC84\uC804\uC758 Node.js\uB97C \uC9C0\uC6D0\uD558\uC9C0 \uC54A\uB294\uB2E4\uB294 \uAC83\uC744 \uB098\uD0C0\uB0C5\uB2C8\uB2E4. \uC774 \uBB38\uC81C\uB97C \uD574\uACB0\uD558\uACE0 \uD5A5\uD6C4 Node.js\uC758 \uCD5C\uC2E0 \uBC84\uC804\uC744 \uC124\uCE58\uD558\uAE30 \uC704\uD574\uC11C\uB294 \uC6B4\uC601\uCCB4\uC81C\uB97C \uB354 \uCD5C\uC2E0 \uBC84\uC804\uC73C\uB85C \uC5C5\uB370\uC774\uD2B8\uD574\uC57C \uD569\uB2C8\uB2E4.","status.widget.info.glibc_title":"OS \uC5C5\uB370\uC774\uD2B8","status.widget.info.hostname":"\uD638\uC2A4\uD2B8\uBA85","status.widget.info.ipv4":"IPv4","status.widget.info.ipv6":"IPv6","status.widget.info.no":"No","status.widget.info.node_unsupp":"Unsupported","status.widget.info.node_unsupp_message":"\uD604\uC7AC Homebridge\uAC00 \uACF5\uC2DD\uC801\uC73C\uB85C \uC9C0\uC6D0\uD558\uC9C0 \uC54A\uB294 \uBC84\uC804\uC758 Node.js\uB97C \uC2E4\uD589 \uC911\uC785\uB2C8\uB2E4. \uC9C0\uC6D0\uB418\uB294 \uBC84\uC804\uC73C\uB85C \uBCC0\uACBD\uD558\uB294 \uAC83\uC744 \uACE0\uB824\uD574\uBCF4\uC2DC\uAE30 \uBC14\uB78D\uB2C8\uB2E4.","status.widget.info.node_unsupp_title":"\uC9C0\uC6D0\uD558\uC9C0 \uC54A\uB294 Node \uBC84\uC804","status.widget.info.node_update_message":"Homebridge\uB97C \uC2E4\uD589\uD558\uB824\uBA74 \uC2DC\uC2A4\uD15C\uC5D0 Node.js\uAC00 \uC124\uCE58\uB418\uC5B4 \uC788\uC5B4\uC57C \uD569\uB2C8\uB2E4. \uC0C8\uB85C\uC6B4 \uAE30\uB2A5\uC744 \uC9C0\uC6D0\uD558\uAE30 \uC704\uD574 \uB54C\uB54C\uB85C Node.js \uB7F0\uD0C0\uC784\uC744 \uC5C5\uB370\uC774\uD2B8\uD574\uC57C \uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4. Homebridge(\uBC0F \uAC80\uC99D\uB41C \uD50C\uB7EC\uADF8\uC778)\uB294 Node.js\uC758 \uBAA8\uB4E0 \uD604\uC7AC Active \uBC0F Maintenance LTS \uB9B4\uB9AC\uC2A4\uB97C \uC9C0\uC6D0\uD569\uB2C8\uB2E4.","status.widget.info.node_update_title":"Node \uC5C5\uB370\uC544\uD2B8","status.widget.info.nodejs_path":"Node.js \uACBD\uB85C","status.widget.info.nodejs_version":"Node.js \uBC84\uC804","status.widget.info.os":"OS","status.widget.info.plugin_path":"\uD50C\uB7EC\uADF8\uC778 \uACBD\uB85C","status.widget.info.service_mode":"\uC11C\uBE44\uC2A4 \uBAA8\uB4DC","status.widget.info.service_user":"\uC0AC\uC6A9\uC790","status.widget.info.servicemode_message":"\uB3C5\uB9BD \uC2E4\uD589 \uBAA8\uB4DC\uB294 \uB354 \uC774\uC0C1 \uAD8C\uC7A5\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4. hb-service\uB97C \uD1B5\uD574 Homebridge\uC640 Homebridge UI\uB97C \uC124\uC815\uD558\uB294 \uAC83\uC774 \uB3C5\uB9BD \uC2E4\uD589 \uBAA8\uB4DC\uC640 \uB3D9\uC77C\uD55C \uC774\uC810\uC744 \uC81C\uACF5\uD558\uBA74\uC11C\uB3C4 \uC124\uC815\uACFC \uC720\uC9C0 \uAD00\uB9AC\uAC00 \uD6E8\uC52C \uB354 \uC27D\uC2B5\uB2C8\uB2E4.","status.widget.info.servicemode_title":"\uC11C\uBE44\uC2A4 \uBAA8\uB4DC","status.widget.info.storage_path":"\uC800\uC7A5\uC18C \uACBD\uB85C","status.widget.info.synology_package":"Synology \uD328\uD0A4\uC9C0","status.widget.info.timezone":"\uC2DC\uAC04\uB300","status.widget.info.yes":"\uB124","status.widget.network.history_items":"\uAE30\uB85D \uD56D\uBAA9","status.widget.network.items":"\uD56D\uBAA9","status.widget.network.network_interface":"\uB124\uD2B8\uC6CC\uD06C \uC778\uD130\uD398\uC774\uC2A4","status.widget.network.none_selected":"\uC124\uC815\uC5D0\uC11C \uC120\uD0DD\uB41C \uD56D\uBAA9 \uC5C6\uC74C - \uAE30\uBCF8\uAC12 \uC0AC\uC6A9 \uC911.","status.widget.network.refresh_interval":"\uAC31\uC2E0 \uC8FC\uAE30","status.widget.network.refresh_note":"\uBCC0\uACBD\uC0AC\uD56D\uC744 \uC801\uC6A9\uD558\uB824\uBA74 \uC800\uC7A5 \uD6C4 \uD398\uC774\uC9C0\uB97C \uC0C8\uB85C\uACE0\uCE68\uD558\uC138\uC694.","status.widget.network.seconds":"\uCD08","status.widget.qr_paired":"\uC5F0\uACB0\uB428","status.widget.qr_unpaired":"\uC5F0\uACB0\uB418\uC9C0 \uC54A\uC74C","status.widget.show_hide":"\uC704\uC82F \uD45C\uC2DC/\uC228\uAE30\uAE30","status.widget.title_manage_widget":"\uC704\uC82F \uAD00\uB9AC","status.widget.uptime.label_process":"\uD504\uB85C\uC138\uC2A4","status.widget.uptime.label_server":"\uC11C\uBC84","status.widget.weather.label_config_required_help":"\uC704\uC82F \uC124\uC815\uC5D0\uC11C \uB300\uC0C1 \uB3C4\uC2DC\uB97C \uC120\uD0DD\uD574\uC8FC\uC138\uC694.","status.widget.weather.label_search_for_your_city":"\uB300\uC0C1 \uB3C4\uC2DC \uAC80\uC0C9:","status.widget.weather.title_weather":"\uB0A0\uC528","support.dev.api":"Homebridge API","support.dev.api_hap":"HAP-NodeJS API","support.dev.api_hap_sub":"HAP-NodeJS\uB294 Apple\uC774 HomeKit \uD504\uB808\uC784\uC6CC\uD06C\uC758 \uC77C\uBD80\uB85C \uC815\uC758\uD55C HomeKit Accessory Protocol(HAP)\uC5D0 \uBA85\uC2DC\uB41C HomeKit Accessory Server\uC758 \uAD6C\uD604\uCCB4\uC785\uB2C8\uB2E4.","support.dev.api_sub":"Homebridge\uB294 \uD648 \uB124\uD2B8\uC6CC\uD06C\uC5D0\uC11C \uC2E4\uD589\uD558\uC5EC HomeKit Accessory Protocol(HAP)\uC744 \uC5D0\uBBAC\uB808\uC774\uD2B8\uD560 \uC218 \uC788\uB294 \uACBD\uB7C9 Node.js \uC11C\uBC84\uC785\uB2C8\uB2E4.","support.dev.item_swagger":"Swagger \uBB38\uC11C","support.dev.item_swagger_sub":"Homebridge REST API\uB97C \uC0AC\uC6A9\uD558\uBA74 HTTP \uC694\uCCAD\uC744 \uD1B5\uD574 Homebridge \uC11C\uBC84\uC640 \uC0C1\uD638\uC791\uC6A9\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.","support.dev.template":"\uD50C\uB7EC\uADF8\uC778 \uD15C\uD50C\uB9BF \uC800\uC7A5\uC18C","support.dev.template_sub":"\uC790\uCCB4 \uD50C\uB7EC\uADF8\uC778 \uAC1C\uBC1C\uC744 \uC2DC\uC791\uD558\uB294 \uB370 \uB3C4\uC6C0\uC774 \uB418\uB294 \uAE30\uBCF8 Homebridge \uD50C\uB7EC\uADF8\uC778 \uD15C\uD50C\uB9BF\uC785\uB2C8\uB2E4.","support.dev.title":"\uAC1C\uBC1C\uC790","support.dev.verified":"Homebridge \uC778\uC99D","support.dev.verified_sub":"Homebridge \uC778\uC99D \uD504\uB85C\uADF8\uB7A8\uC744 \uD1B5\uD574 \uD50C\uB7EC\uADF8\uC778 \uAC1C\uBC1C\uC790\uB294 Homebridge \uD504\uB85C\uC81D\uD2B8 \uD300\uC758 \uAC80\uD1A0\uC640 \uC778\uC99D\uC744 \uBC1B\uC744 \uC218 \uC788\uC2B5\uB2C8\uB2E4.","support.links.discord":"Discord \uC11C\uBC84","support.links.discord_sub":"Homebridge Discord \uCC44\uD305 \uC11C\uBC84\uC5D0 \uCC38\uC5EC\uD558\uC5EC \uB2E4\uB978 \uC0AC\uC6A9\uC790 \uBC0F \uAC1C\uBC1C\uC790\uB4E4\uACFC \uB300\uD654\uD558\uC138\uC694.","support.links.documentation":"\uBB38\uC11C","support.links.documentation_sub":"Homebridge \uBB38\uC11C\uB294 Homebridge \uC2DC\uC791 \uBC29\uBC95\uACFC \uC77C\uBC18\uC801\uC778 \uBB38\uC81C \uD574\uACB0\uC5D0 \uB300\uD55C \uD48D\uBD80\uD55C \uC815\uBCF4\uB97C \uC81C\uACF5\uD569\uB2C8\uB2E4.","support.links.issue":"\uBB38\uC81C \uBCF4\uACE0","support.links.issue_sub":"Homebridge\uC5D0\uC11C \uBB38\uC81C\uAC00 \uBC1C\uC0DD\uD55C \uACBD\uC6B0 GitHub\uC5D0\uC11C \uC0C8\uB85C\uC6B4 \uC774\uC288\uB97C \uC5F4\uC5B4\uC8FC\uC138\uC694. \uD2B9\uC815 \uD50C\uB7EC\uADF8\uC778 \uAD00\uB828 \uBB38\uC81C\uB294 \uC5EC\uAE30\uC11C \uB2E4\uB8E8\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.","support.links.reddit":"Reddit \uCEE4\uBBA4\uB2C8\uD2F0","support.links.reddit_sub":"Homebridge \uC11C\uBE0C\uB808\uB527\uC740 Homebridge \uC124\uC815\uC744 \uACF5\uC720\uD558\uACE0 \uB3C4\uC6C0\uC744 \uC694\uCCAD\uD558\uAE30\uC5D0 \uC88B\uC740 \uACF5\uAC04\uC785\uB2C8\uB2E4.","support.links.title":"\uC720\uC6A9\uD55C \uB9C1\uD06C","support.title":"\uC9C0\uC6D0","toast.no_auth":"\uAD00\uB9AC\uC790\uB9CC \uC694\uCCAD\uB41C \uD398\uC774\uC9C0\uC5D0 \uC811\uADFC\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.","toast.title_error":"\uC624\uB958","toast.title_success":"\uC131\uACF5","toast.title_warning":"\uC8FC\uC758","users.button_add_new_user":"\uC0C8\uB85C\uC6B4 \uC0AC\uC6A9\uC790 \uCD94\uAC00","users.button_add_user":"\uC0AC\uC6A9\uC790 \uCD94\uAC00","users.label_admin_user":"\uAD00\uB9AC\uC790 \uC5EC\uBD80","users.label_confirm_password":"\uBE44\uBC00\uBC88\uD638 \uD655\uC778","users.label_full_name":"\uC131\uBA85","users.label_new_password":"\uC0C8 \uBE44\uBC00\uBC88\uD638","users.label_password":"\uBE44\uBC00\uBC88\uD638","users.label_username":"\uC0AC\uC6A9\uC790\uBA85","users.setup_2fa":"2\uCC28\uC778\uC99D \uC124\uC815","users.setup_2fa_activate_error":"2\uCC28 \uC778\uC99D\uC744 \uD65C\uC131\uD654\uD558\uB294 \uC911 \uC624\uB958\uAC00 \uBC1C\uC0DD\uD588\uC2B5\uB2C8\uB2E4","users.setup_2fa_cannot_setup_2fa":"2\uCC28\uC778\uC99D \uC124\uC815\uBD88\uAC00","users.setup_2fa_disable":"2\uCC28\uC778\uC99D \uBE44\uD65C\uC131\uD654","users.setup_2fa_disable_current_password":"2\uCC28\uC778\uC99D\uC744 \uBE44\uD65C\uC131\uD654\uD558\uB824\uBA74 \uBE44\uBC00\uBC88\uD638\uB97C \uC785\uB825\uD574\uC8FC\uC138\uC694:","users.setup_2fa_disable_success":"2\uCC28\uC778\uC99D\uC774 \uBE44\uD65C\uC131\uD654\uB418\uC5C8\uC2B5\uB2C8\uB2E4.","users.setup_2fa_enable":"2\uCC28\uC778\uC99D \uD65C\uC131\uD654","users.setup_2fa_enable_error":"2\uCC28 \uC778\uC99D\uC744 \uC124\uC815\uD558\uB294 \uC911 \uC624\uB958\uAC00 \uBC1C\uC0DD\uD588\uC2B5\uB2C8\uB2E4","users.setup_2fa_enabled_success":"2\uCC28\uC778\uC99D\uC774 \uD65C\uC131\uD654 \uB418\uC5C8\uC2B5\uB2C8\uB2E4.","users.setup_2fa_enter_code":"\uC778\uC99D\uAE30 \uC571\uC758 \uCF54\uB4DC\uB97C \uC785\uB825\uD574\uC8FC\uC138\uC694:","users.setup_2fa_scan_qr_code":"\uC778\uC99D\uAE30 \uC571\uC73C\uB85C \uC544\uB798 QR\uCF54\uB4DC\uB97C \uC2A4\uCE94\uD558\uC138\uC694:","users.setup_2fa_server_time_out":"\uC11C\uBC84\uC5D0 \uC124\uC815\uB41C \uC2DC\uAC04\uC758 \uC624\uCC28\uAC00 {{ timeDiffError }} \uBC00\uB9AC\uCD08\uB97C \uCD08\uACFC\uD588\uC2B5\uB2C8\uB2E4. \uD5C8\uC6A9\uB418\uB294 \uCD5C\uB300 \uAC12\uC740 +/- 5000 \uBC00\uB9AC\uCD08\uC785\uB2C8\uB2E4.","users.setup_2fa_warning":"2\uCC28\uC778\uC99D\uC744 \uD65C\uC131\uD654\uD558\uB824\uBA74 Homebridge \uC11C\uBC84\uC758 \uB85C\uADF8\uC778 \uB0A0\uC9DC\uC640 \uC2DC\uAC04\uC774 \uC815\uD655\uD574\uC57C\uD569\uB2C8\uB2E4. \uC11C\uBC84 \uC2DC\uAC04\uC744 \uC815\uD655\uD558\uAC8C \uC720\uC9C0\uD560 \uC218 \uC5C6\uB2E4\uBA74 2\uCC28\uC778\uC99D\uC744 \uD65C\uC131\uD654\uD574\uC11C\uB294 \uC548\uB418\uBA70, \uADF8\uB807\uC9C0 \uC54A\uC744 \uACBD\uC6B0 Homebridge UI\uAC00 \uC7A0\uAE38 \uC704\uD5D8\uC774 \uC788\uC2B5\uB2C8\uB2E4.","users.title_add_user":"\uC0AC\uC6A9\uC790 \uCD94\uAC00","users.title_edit_user":"\uC0AC\uC6A9\uC790 \uC218\uC815","users.title_users":"\uC0AC\uC6A9\uC790","users.toast_added_new_user":"\uC0C8\uB85C\uC6B4 \uC0AC\uC6A9\uC790 \uCD94\uAC00\uB428","users.toast_failed_to_add_user":"\uC0AC\uC6A9\uC790 \uCD94\uAC00 \uC2E4\uD328","users.toast_failed_to_delete_user":"\uC0AC\uC6A9\uC790 \uC0AD\uC81C \uC2E4\uD328","users.toast_updated_user":"\uC0AC\uC6A9\uC790 \uC815\uBCF4 \uC218\uC815\uB428","users.toast_user_deleted":"\uC0AC\uC6A9\uC790 \uC0AD\uC81C\uB428"}});var xs=y((Bd,ha)=>{ha.exports={"accessories.button_add_room":"\u0414\u043E\u0434\u0430\u0434\u0438 \u0421\u043E\u0431\u0430","accessories.button_hidden_hide":"Hide Hidden","accessories.button_hidden_show":"Show Hidden","accessories.control.auto":"\u0410\u0432\u0442\u043E","accessories.control.away":"\u041E\u0442\u0441\u0443\u0442\u0435\u043D","accessories.control.battery_charging":"\u0421\u0435 \u043F\u043E\u043B\u043D\u0438","accessories.control.battery_notchargeable":"\u041D\u0435 \u043F\u043E\u0434\u0434\u0440\u0436\u0443\u0432\u0430 \u043F\u043E\u043B\u043D\u0435\u045A\u0435","accessories.control.battery_notcharging":"\u041D\u0435 \u0441\u0435 \u043F\u043E\u043B\u043D\u0438","accessories.control.brightness":"\u0421\u0432\u0435\u0442\u043B\u0438\u043D\u0430","accessories.control.closed":"\u0417\u0430\u0442\u0432\u043E\u0440\u0435\u043D\u043E","accessories.control.closing":"\u0421\u0435 \u0437\u0430\u0442\u0432\u043E\u0440\u0430","accessories.control.cool":"\u0421\u0432\u0435\u0436\u043E","accessories.control.default_room":"\u041F\u043E\u0447\u0435\u0442\u043D\u0430 \u0421\u043E\u0431\u0430","accessories.control.default_running_time":"\u041F\u043E\u0447\u0435\u0442\u043D\u043E \u0432\u0440\u0435\u043C\u0435 \u043D\u0430 \u0438\u0437\u0432\u0440\u0448\u0443\u0432\u0430\u045A\u0435","accessories.control.dehumidifying":"Dehumidifying","accessories.control.detected":"Detected","accessories.control.drag_here":"Drag Here","accessories.control.fan":"\u0412\u0435\u043D\u0442\u0438\u043B\u0430\u0442\u043E\u0440","accessories.control.heat":"\u0413\u0440\u0435\u0435\u045A\u0435","accessories.control.home":"\u0414\u043E\u043C","accessories.control.humidifying":"Humidifying","accessories.control.jammed":"\u0417\u0430\u0433\u043B\u0430\u0432\u0435\u043D\u043E","accessories.control.light":"\u0421\u0432\u0435\u0442\u043B\u043E","accessories.control.locked":"\u0417\u0430\u043A\u043B\u0443\u0447\u0435\u043D\u043E","accessories.control.mute":"\u0411\u0435\u0437 \u0437\u0432\u0443\u043A","accessories.control.night":"\u041D\u043E\u045C","accessories.control.not_detected":"Not Detected","accessories.control.not_mute":"\u0421\u043E \u0437\u0432\u0443\u043A","accessories.control.off":"\u0418\u0441\u043A\u043B\u0443\u0447\u0435\u043D\u043E","accessories.control.on":"\u0423\u043A\u043B\u0443\u0447\u0435\u043D\u043E","accessories.control.open":"\u041E\u0442\u0432\u043E\u0440\u0435\u043D\u043E","accessories.control.opening":"\u0421\u0435 \u043E\u0442\u0432\u043E\u0440\u0430","accessories.control.rotation_speed":"\u0411\u0440\u0437\u0438\u043D\u0430 \u043D\u0430 \u0432\u0440\u0442\u0435\u045A\u0435","accessories.control.running":"\u0421\u0435 \u0438\u0437\u0432\u0440\u0448\u0443\u0432\u0430","accessories.control.speaker_volume":"\u0408\u0430\u0447\u0438\u043D\u0430 \u043D\u0430 \u0437\u0432\u0443\u043A","accessories.control.stopped":"\u0421\u0442\u043E\u043F\u0438\u0440\u0430\u043D\u043E","accessories.control.target":"\u0426\u0435\u043B","accessories.control.target_humidity":"Target Humidity","accessories.control.target_temperature":"\u0426\u0435\u043B\u043D\u0430 \u0442\u0435\u043C\u043F\u0435\u0440\u0430\u0442\u0443\u0440\u0430","accessories.control.triggered":"\u0410\u043A\u0442\u0438\u0432\u0438\u0440\u0430\u043D\u043E","accessories.control.unknown":"\u041D\u0435\u043F\u043E\u0437\u043D\u0430\u0442\u043E","accessories.control.unlocked":"\u041E\u0442\u043A\u043B\u0443\u0447\u0435\u043D\u043E","accessories.control_disabled":"\u041A\u043E\u043D\u0442\u0440\u043E\u043B\u0430 \u043D\u0430 \u0443\u0440\u0435\u0434\u0438 \u0438\u0441\u043A\u043B\u0443\u0447\u0435\u043D\u0430","accessories.hide_this_accessory":"\u0421\u043E\u043A\u0440\u0438\u0458 \u0433\u043E \u043E\u0432\u043E\u0458 \u0443\u0440\u0435\u0434","accessories.message_for_more_information":"\u0437\u0430 \u043F\u043E\u0432\u0435\u045C\u0435 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438.","accessories.message_must_use_insecure_mode":"\u0417\u0430 \u0434\u0430 \u0433\u0438 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u0438\u0440\u0430\u0442\u0435 \u0412\u0430\u0448\u0438\u0442\u0435 \u0443\u0440\u0435\u0434\u0438 \u043C\u043E\u0440\u0430 \u0434\u0430 \u0433\u043E \u0438\u0437\u0432\u0440\u0448\u0438\u0442\u0435 Homebridge \u0432\u043E insecure \u043C\u043E\u0434.","accessories.message_please_see":"\u041F\u0440\u043E\u0432\u0435\u0440\u0435\u0442\u0435 \u043D\u0430","accessories.name":"\u0418\u043C\u0435","accessories.room_name":"\u0418\u043C\u0435 \u043D\u0430 \u0421\u043E\u0431\u0430","accessories.rooms_not_appear_in_homekit":"\u0421\u043E\u0431\u0438\u0442\u0435 \u0448\u0442\u043E \u0433\u0438 \u043A\u0440\u0435\u0438\u0440\u0430\u0442\u0435 \u0442\u0443\u043A\u0430 \u043D\u0435\u043C\u0430 \u0434\u0430 \u0431\u0438\u0434\u0430\u0442 \u043F\u0440\u0438\u043A\u0430\u0436\u0430\u043D\u0438 \u0432\u043E Home \u0430\u043F\u043B\u0438\u043A\u0430\u0446\u0438\u0458\u0430\u0442\u0430, \u0438\u0441\u0442\u0438\u0442\u0435 \u0441\u0435 \u043A\u043E\u0440\u0438\u0441\u0442\u0430\u0442 \u0441\u0430\u043C\u043E \u0437\u0430 \u043E\u0440\u0433\u0430\u043D\u0438\u0437\u0430\u0446\u0438\u0458\u0430 \u0432\u043E Homebridge UI.","accessories.settings_link":"You can access the Homebridge Settings at any time from the cog icon in the side menu.","accessories.show_on_dashboard":"\u041F\u0440\u0438\u043A\u0430\u0436\u0438 \u043D\u0430 \u0433\u043B\u0430\u0432\u043D\u0438\u043E\u0442 \u0435\u043A\u0440\u0430\u043D","accessories.title_accessories":"\u0423\u0440\u0435\u0434\u0438","backup.backup_delete_failed":"Backup deletion failed. See logs for details.","backup.backup_download_failed":"\u0413\u0440\u0435\u0448\u043A\u0430 \u043F\u0440\u0438 \u0441\u0438\u043C\u043D\u0443\u0432\u0430\u045A\u0435 \u043D\u0430 \u0431\u0435\u043A\u0430\u043F\u043E\u0442","backup.backup_exceeds_max_size":"Backup ({{ backupSize }}) exceeds maximum restore file size of {{ maxBackupSizeText }}","backup.backup_help_one":"\u0421\u0438\u043C\u043D\u0438 \u0431\u0435\u043A\u0430\u043F \u0430\u0440\u0445\u0438\u0432\u0430 \u043E\u0434 \u0446\u0435\u043B\u0430\u0442\u0430 Homebridge \u043E\u043A\u043E\u043B\u0438\u043D\u0430. \u0421\u043E \u043E\u0432\u0430 \u045C\u0435 \u0441\u0435 \u0437\u0430\u0447\u0443\u0432\u0430 \u0446\u0435\u043B\u0430\u0442\u0430 \u0441\u043E\u0434\u0440\u0436\u0438\u043D\u0430 \u043D\u0430 \u0412\u0430\u0448\u0438\u043E\u0442 Homebridge \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0443\u043C \u0437\u0430 storage, \u043A\u043E\u0458 \u0448\u0442\u043E \u043F\u043E\u0442\u043E\u0430 \u043C\u043E\u0436\u0435\u0442\u0435 \u0434\u0430 \u0433\u043E \u0441\u0442\u0430\u0432\u0438\u0442\u0435 \u043D\u0430 \u0431\u0438\u043B\u043E \u043A\u043E\u0458\u0430 \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0430 \u0448\u0442\u043E \u043C\u043E\u0436\u0435 \u0434\u0430 \u0433\u043E \u0438\u0437\u0432\u0440\u0448\u0438 Homebridge UI.","backup.backup_help_two":"\u041F\u043B\u0430\u0433\u0438\u043D\u0438 \u043A\u043E\u0438 \u043D\u0435 \u0441\u0435 \u0445\u043E\u0441\u0442\u0438\u0440\u0430\u043D\u0438 \u043D\u0430 npm, \u0438\u043B\u0438 \u043F\u043B\u0430\u0433\u0438\u043D\u0438 \u043A\u043E\u0438 \u0441\u0435 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D\u0438 \u0434\u0438\u0440\u0435\u043A\u0442\u043D\u043E \u043E\u0434 GitHub \u043D\u0435\u043C\u0430 \u0434\u0430 \u0431\u0438\u0434\u0430\u0442 \u0437\u0430\u0447\u0443\u0432\u0430\u043D\u0438 \u043D\u0438\u0442\u0443 \u045C\u0435 \u043C\u043E\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043F\u043E\u0432\u0440\u0430\u0442\u0430\u0442 \u043E\u0434 \u0431\u0435\u043A\u0430\u043F\u043E\u0442.","backup.backup_restored":"\u041F\u043E\u0440\u0430\u0442\u0435\u043D\u0430 \u0431\u0435\u043A\u0430\u043F \u0430\u0440\u0445\u0438\u0432\u0430","backup.backup_warning":"\u0411\u0435\u043A\u0430\u043F \u0430\u0440\u0445\u0438\u0432\u0438\u0442\u0435 \u0441\u043E\u0434\u0440\u0436\u0430\u0442 \u0441\u0435\u043D\u0437\u0438\u0442\u0438\u0432\u043D\u0438 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438 \u0438 \u043D\u0435 \u0442\u0440\u0435\u0431\u0430 \u0434\u0430 \u0441\u0435 \u0441\u043F\u043E\u0434\u0435\u043B\u0443\u0432\u0430\u0430\u0442.","backup.button_restore_backup":"\u041F\u043E\u0432\u0440\u0430\u0442\u0438 \u0431\u0435\u043A\u0430\u043F","backup.label_choose_backup_file_to_restore":"\u041E\u0434\u0431\u0435\u0440\u0438 \u043A\u043E\u0458\u0430 \u0431\u0435\u043A\u0430\u043F \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430 \u0434\u0430 \u0441\u0435 \u043F\u043E\u0432\u0440\u0430\u0442\u0438\u2026","backup.label_uploading":"\u0421\u0435 \u043F\u0440\u0438\u043A\u0430\u0447\u0443\u0432\u0430\u2026","backup.load_error":"Failed to load config backup.","backup.now":"Now","backup.restore_failed":"\u041F\u043E\u0432\u0440\u0430\u0442\u043E\u0442 \u043D\u0435 \u0431\u0435\u0448\u0435 \u0443\u0441\u043F\u0435\u0448\u0435\u043D","backup.restore_help_one":"\u041F\u043E\u0432\u0440\u0430\u0442\u0438 \u0431\u0435\u043A\u0430\u043F \u0430\u0440\u0445\u0438\u0432\u0430 \u043A\u043E\u0458\u0430 \u043F\u0440\u0435\u0442\u0445\u043E\u0434\u043D\u043E \u0441\u0442\u0435 \u0458\u0430 \u043D\u0430\u043F\u0440\u0430\u0432\u0438\u043B\u0435 \u043F\u0440\u0435\u043A\u0443 Homebridge UI. \u0412\u0430\u0448\u0430\u0442\u0430 Homebridge \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0458\u0430, \u043A\u0435\u0448\u0438\u0440\u0430\u043D\u0438\u0442\u0435 \u0443\u0440\u0435\u0434\u0438, HomeKit \u0441\u043F\u0430\u0440\u0435\u043D\u0438 \u0443\u0440\u0435\u0434\u0438 \u0438 Homebridge UI \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0447\u043A\u0430 \u0441\u043C\u0435\u0442\u043A\u0430 \u045C\u0435 \u0431\u0438\u0434\u0430\u0442 \u043F\u043E\u0432\u0440\u0430\u0442\u0435\u043D\u0438. \u0421\u0438\u0442\u0435 homebridge \u043F\u043B\u0430\u0433\u0438\u043D\u0438 \u043A\u043E\u0438 \u0441\u0442\u0435 \u0433\u0438 \u0438\u043C\u0430\u043B\u0435 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D\u0438 \u045C\u0435 \u0431\u0438\u0434\u0430\u0442 \u0441\u0438\u043C\u043D\u0430\u0442\u0438 \u043E\u0434 npm \u0440\u0435\u0433\u0438\u0441\u0442\u0430\u0440\u043E\u0442.","backup.restore_help_two":"\u040C\u0435 \u043C\u043E\u0440\u0430 \u0434\u0430 \u0441\u0435 \u043D\u0430\u0458\u0430\u0432\u0438\u0442\u0435 \u043D\u0430 Homebridge UI \u043F\u043E \u0437\u0430\u0432\u0440\u0448\u0443\u0432\u0430\u045A\u0435 \u043D\u0430 \u043F\u043E\u0432\u0440\u0430\u0442\u043E\u0442 \u043E\u0434 \u0431\u0435\u043A\u0430\u043F\u043E\u0442, \u043A\u043E\u0440\u0438\u0441\u0442\u0435\u0458\u045C\u0438 \u0458\u0430 \u0438\u0441\u0442\u0430\u0442\u0430 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0447\u043A\u0430 \u0441\u043C\u0435\u0442\u043A\u0430.","backup.restore_max_size":"You can restore a backup archive up to {{ maxBackupSizeText }} in size.","backup.restore_warning":"\u041F\u043E\u0432\u0440\u0430\u0442\u043E\u0442 \u043E\u0434 \u0431\u0435\u043A\u0430\u043F \u043D\u0435\u043E\u0442\u043F\u043E\u0432\u0438\u043A\u043B\u0438\u0432\u043E \u045C\u0435 \u0458\u0430 \u043F\u0440\u0435\u043F\u0438\u0448\u0435 \u0412\u0430\u0448\u0430\u0442\u0430 \u043C\u043E\u043C\u0435\u043D\u0442\u0430\u043B\u043D\u0430 Homebridge \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0458\u0430.","backup.scheduled_backup_time":"\u0426\u0435\u043B\u043E\u0441\u0435\u043D \u0431\u0435\u043A\u0430\u043F \u043D\u0430 Homebridge \u0438\u043D\u0441\u0442\u0430\u043D\u0446\u0430\u0442\u0430 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u0438 \u0441\u0435 \u043F\u0440\u0430\u0432\u0438 \u0441\u0435\u043A\u043E\u0458 \u0434\u0435\u043D \u0432\u043E {{ backupTime }} \u0438 \u0441\u0435 \u0447\u0443\u0432\u0430 {{ dayCount }} \u0434\u0435\u043D\u043E\u0432\u0438.","backup.title_backup":"\u0411\u0435\u043A\u0430\u043F","child_bridge.about":"Homebridge allows you to run your plugin's platform or accessory as an isolated child bridge. This can improve the general responsiveness and reliability of Homebridge.","child_bridge.bridge_connect":"Connect to HomeKit","child_bridge.bridge_settings":"Child Bridge Config","child_bridge.bridges":"HomeKit Bridges","child_bridge.bridges_paired":"Each child bridge platform or accessory will need to be paired with HomeKit separately.","child_bridge.config.debug":"Debug Mode","child_bridge.config.description":"These fields are not required, but can be used to override the HomeKit configuration for this bridge.","child_bridge.config.firmware":"Firmware Version","child_bridge.config.header":"Configuration","child_bridge.config.manufacturer":"Manufacturer","child_bridge.config.model":"Model","child_bridge.config.name":"Name","child_bridge.must_configure_plugin":"You need to configure this plugin before you can manage its bridge settings.","child_bridge.reset_accessories":"Reset Accessories","child_bridge.reset_accessories_list":"Choose from which child bridges you want to reset the accessories below:","child_bridge.restart":"Restart Child Bridges","child_bridge.restart_homebridge":"Restart Homebridge to finish setting up this child bridge.","child_bridge.restart_plural":"Restart Child Bridges","child_bridge.return_to_pair":"Return to this screen after Homebridge has restarted to view the pairing QR code.","child_bridge.select_type":"Select which platforms or accessories you want to run as a child bridge","child_bridge.setup":"Set Up Child Bridge","child_bridge.start":"Start Child Bridge","child_bridge.start_plural":"Start Child Bridges","child_bridge.stop":"Stop Child Bridge","child_bridge.stop_plural":"Stop Child Bridges","child_bridge.wiki_link":"Learn more about child bridges","config.config_accessory_must_be_array":"accessories \u043C\u043E\u0440\u0430 \u0434\u0430 \u0431\u0438\u0434\u0430\u0442 \u043D\u0438\u0437\u0430 []","config.config_bridge_missing":"\u041F\u043E\u0441\u0442\u0430\u0432\u043A\u0438 \u0437\u0430 Bridge \u043D\u0435\u0434\u043E\u0441\u0442\u0430\u0441\u0443\u0432\u0430\u0430\u0442","config.config_invalid_json":"\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0458\u0430\u0442\u0430 \u0441\u043E\u0434\u0440\u0436\u0438 \u043D\u0435\u0432\u0430\u043B\u0438\u0434\u0435\u043D JSON","config.config_platform_must_be_array":"platforms \u043C\u043E\u0440\u0430 \u0434\u0430 \u0431\u0438\u0434\u0435 \u043D\u0438\u0437\u0430 []","config.config_username_error":"Bridge username \u043C\u043E\u0440\u0430 \u0434\u0430 \u0431\u0438\u0434\u0435 6 \u043F\u0430\u0440\u043E\u0432\u0438 \u043E\u0434 \u0445\u0435\u043A\u0441\u0430\u0434\u0435\u0446\u0438\u043C\u0430\u043B\u043D\u0438 \u043A\u0430\u0440\u0430\u043A\u0442\u0435\u0440\u0438 \u043E\u0434\u0432\u043E\u0435\u043D\u0438 \u0441\u043E \u0434\u0432\u0435 \u0442\u043E\u0447\u043A\u0438 (A-F 0-9)","config.error_blocks_objects":"All {{ type }} blocks must be objects.","config.error_blocks_type":"All {{ type }} blocks must contain the {{ type }} attribute.","config.error_string_array":"Each item in the {{ key }} array must be a string.","config.error_string_type":"The {{ type }} attribute must be a string.","config.failed_to_save_config":"\u041D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u043E \u0437\u0430\u0447\u0443\u0432\u0443\u0432\u0430\u045A\u0435 \u043D\u0430 \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0458\u0430","config.restore.confirm":"\u041A\u043B\u0438\u043A\u043D\u0435\u0442\u0435 \u0417\u0430\u0447\u0443\u0432\u0430\u0458 \u0437\u0430 \u0434\u0430 \u043F\u043E\u0442\u0432\u0440\u0434\u0438\u0442\u0435 \u0434\u0435\u043A\u0430 \u0441\u0430\u043A\u0430\u0442\u0435 \u0434\u0430 \u0433\u043E \u043F\u043E\u0432\u0440\u0430\u0442\u0438\u0442\u0435 \u043E\u0432\u043E\u0458 \u0431\u0435\u043A\u0430\u043F.","config.restore.copy_to_editor":"\u0418\u0441\u043A\u043E\u043F\u0438\u0440\u0430\u0458","config.restore.no_backups":"\u041D\u0435\u043C\u0430\u0442\u0435 \u0431\u0435\u043A\u0430\u043F\u0438","config.restore.title_restore_homebridge_backup":"\u041F\u043E\u0432\u0440\u0430\u0442\u0438 Homebridge \u0431\u0435\u043A\u0430\u043F \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0458\u0430","config.restore.toast_backups_deleted":"\u0421\u0438\u0442\u0435 \u0431\u0435\u043A\u0430\u043F\u0438 \u0441\u0435 \u0438\u0437\u0431\u0440\u0438\u0448\u0430\u043D\u0438","config.title_backup_loaded":"\u0412\u0447\u0438\u0442\u0430\u043D \u0431\u0435\u043A\u0430\u043F","form.button_cancel":"\u041E\u0442\u043A\u0430\u0436\u0438","form.button_close":"\u0417\u0430\u0442\u0432\u043E\u0440\u0438","form.button_delete":"\u0418\u0437\u0431\u0440\u0438\u0448\u0438","form.button_disable":"Disable","form.button_download":"\u0421\u0438\u043C\u043D\u0438","form.button_edit":"\u0418\u0437\u043C\u0435\u043D\u0438","form.button_enable":"Enable","form.button_hide":"Hide","form.button_lock":"Lock","form.button_more_info":"More Info","form.button_remove":"Remove","form.button_reset":"Reset","form.button_restore":"\u041F\u043E\u0432\u0440\u0430\u0442","form.button_save":"\u0417\u0430\u0447\u0443\u0432\u0430\u0458","form.button_show":"Show","form.button_unlock":"Unlock","form.button_unpair":"Unpair","form.label_invalid":"Config validation failed - you can still save your changes.","form.label_invalid_strict":"Config validation failed - please review the form before saving.","form.label_valid":"Config validation passed.","form.select.auto":"Automatic (Use Browser Settings)","login.button_login":"\u041D\u0430\u0458\u0430\u0432\u0438 \u0441\u0435","login.invalid_credentials":"\u041F\u043E\u0433\u0440\u0435\u0448\u043D\u043E \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0447\u043A\u043E \u0438\u043C\u0435 \u0438\u043B\u0438 \u043B\u043E\u0437\u0438\u043D\u043A\u0430","login.label_2fa_code":"Two-Factor \u0430\u0432\u0442\u0435\u043D\u0442\u0438\u043A\u0430\u0446\u0438\u0441\u043A\u0438 \u043A\u043E\u0434","login.label_password":"\u041B\u043E\u0437\u0438\u043D\u043A\u0430","login.label_username":"\u041A\u043E\u0440\u0438\u0441\u043D\u0438\u0447\u043A\u043E \u0438\u043C\u0435","login.message_invalid_2fa_code":"\u041A\u043E\u0434\u043E\u0442 \u043A\u043E\u0458 \u0433\u043E \u0432\u043D\u0435\u0441\u043E\u0432\u0442\u0435 \u0435 \u043F\u043E\u0433\u0440\u0435\u0448\u0435\u043D \u0438\u043B\u0438 \u0438\u0441\u0442\u0435\u0447\u0435\u043D.","logs.download.error":"Failed to download log file.","logs.download_warning":"\u041B\u043E\u0433\u0438\u0440\u0430\u0447\u043A\u0438\u0442\u0435 \u0444\u0430\u0458\u043B\u043E\u0432\u0438 \u043E\u0434 Homebridge \u043C\u043E\u0436\u0435 \u0434\u0430 \u0441\u043E\u0434\u0440\u0436\u0430\u0442 \u043B\u0438\u0447\u043D\u0438 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438, \u043B\u043E\u0437\u0438\u043D\u043A\u0438, \u0438\u043B\u0438 \u0442\u043E\u043A\u0435\u043D\u0438. \u0420\u0430\u0437\u0433\u043B\u0435\u0434\u0430\u0458\u0442\u0435 \u0433\u0438 \u043B\u043E\u0433\u0438\u0440\u0430\u0447\u043A\u0438\u0442\u0435 \u0444\u0430\u0458\u043B\u043E\u0432\u0438 \u0438 \u043E\u0442\u0441\u0442\u0440\u0430\u043D\u0435\u0442\u0435 \u0431\u0438\u043B\u043E \u043A\u0430\u043A\u0432\u0438 \u0441\u0435\u043D\u0437\u0438\u0442\u0438\u0432\u043D\u0438 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438 \u043F\u0440\u0435\u0434 \u0434\u0430 \u0441\u043F\u043E\u0434\u0435\u043B\u0438\u0442\u0435 \u0441\u043E \u0434\u0440\u0443\u0433\u0438 \u043B\u0438\u0446\u0430.","logs.log_file_truncated":"\u041B\u043E\u0433\u0438\u0440\u0430\u0447\u043A\u0438\u043E\u0442 \u0444\u0430\u0458\u043B \u0435 \u0441\u043A\u0440\u0430\u0442\u0435\u043D.","logs.title_download_log_file":"\u0421\u0438\u043C\u043D\u0438 \u0433\u043E \u043B\u043E\u0433\u0438\u0440\u0430\u0447\u043A\u0438\u043E\u0442 \u0444\u0430\u0458\u043B","logs.title_truncate_log_file":"\u0421\u043A\u0440\u0430\u0442\u0438 \u0433\u043E \u043B\u043E\u0433\u0438\u0440\u0430\u0447\u043A\u0438\u043E\u0442 \u0444\u0430\u0458\u043B","logs.truncate.error":"Failed to truncate log file.","logs.truncate_log_warning":"\u0421\u043E \u043E\u0432\u0430 \u045C\u0435 \u0441\u0435 \u0438\u0437\u0431\u0440\u0438\u0448\u0430\u0442 \u043F\u043E\u0441\u0442\u043E\u0435\u0447\u043A\u0438\u0442\u0435 \u043B\u043E\u0433\u0438\u0440\u0430\u0447\u043A\u0438 \u0444\u0430\u0458\u043B\u043E\u0432\u0438. \u0414\u0430\u043B\u0438 \u0441\u0442\u0435 \u0441\u0438\u0433\u0443\u0440\u043D\u0438 \u0434\u0435\u043A\u0430 \u0441\u0430\u043A\u0430\u0442\u0435 \u0434\u0430 \u043F\u0440\u043E\u0434\u043E\u043B\u0436\u0438\u0442\u0435?","menu.config_json_editor":"JSON Config","menu.docker.restart_container":"\u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0458 \u0433\u043E \u043A\u043E\u043D\u0442\u0435\u0458\u043D\u0435\u0440\u043E\u0442","menu.docker.startup_script":"\u0421\u0442\u0430\u0440\u0442\u0430\u043F \u0441\u043A\u0440\u0438\u043F\u0442\u0430","menu.docker.terminal":"\u0422\u0435\u0440\u043C\u0438\u043D\u0430\u043B","menu.hbrestart.confirm_hb":"Restart Homebridge","menu.hbrestart.confirm_ui":"Restart HB Service & UI","menu.hbrestart.title":"Restart Homebridge","menu.label_accessories":"\u0423\u0440\u0435\u0434\u0438","menu.label_plugins":"\u041F\u043B\u0430\u0433\u0438\u043D\u0438","menu.label_settings":"Settings","menu.label_settings_advanced":"UI Advanced Settings","menu.label_status":"\u0421\u0442\u0430\u0442\u0443\u0441","menu.linux.label_logs":"Logs","menu.linux.label_restart_server":"\u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0458 \u0441\u0435\u0440\u0432\u0435\u0440","menu.linux.label_shutdown_server":"\u0418\u0441\u043A\u043B\u0443\u0447\u0438 \u0441\u0435\u0440\u0432\u0435\u0440","menu.linux.label_terminal":"\u0422\u0435\u0440\u043C\u0438\u043D\u0430\u043B","menu.restart.title":"Power Options","menu.settings.title":"Settings","menu.tooltip_logout":"\u041E\u0434\u0458\u0430\u0432\u0438 \u0441\u0435","menu.tooltip_restart":"\u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0458","menu.tooltip_user_accounts":"\u041A\u043E\u0440\u0438\u0441\u043D\u0438\u0447\u043A\u0430 \u0441\u043C\u0435\u0442\u043A\u0430","menu.tooltip_view_logs":"\u041F\u043E\u0433\u043B\u0435\u0434\u043D\u0438 \u043B\u043E\u0433\u0438\u0440\u0430\u0447\u043A\u0438 \u0444\u0430\u0458\u043B","platform.docker.container_restarted":"Docker \u043A\u043E\u043D\u0442\u0435\u0458\u043D\u0435\u0440\u043E\u0442 \u0435 \u0443\u0441\u043F\u0435\u0448\u043D\u043E \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043D","platform.docker.must_use_hashbang":"\u0421\u043A\u0440\u0438\u043F\u0442\u0430\u0442\u0430 \u043C\u043E\u0440\u0430 \u0434\u0430 \u043A\u043E\u0440\u0438\u0441\u0442\u0438 #!/bin/sh hashbang.","platform.docker.restart_required":"\u040C\u0435 \u043C\u043E\u0440\u0430 \u0434\u0430 \u0433\u043E \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0442\u0435 docker \u043A\u043E\u043D\u0442\u0435\u0458\u043D\u0435\u0440\u043E\u0442 \u0437\u0430 \u043F\u0440\u043E\u043C\u0435\u043D\u0438\u0442\u0435 \u0434\u0430 \u0431\u0438\u0434\u0430\u0442 \u0440\u0435\u0444\u043B\u0435\u043A\u0442\u0438\u0440\u0430\u043D\u0438.","platform.docker.run_with_restart":"\u041E\u0441\u0438\u0433\u0443\u0440\u0430\u0458\u0442\u0435 \u0441\u0435 \u0434\u0435\u043A\u0430 \u0433\u043E \u0438\u0437\u0432\u0440\u0448\u0443\u0432\u0430\u0442\u0435 Docker \u043A\u043E\u043D\u0442\u0435\u0458\u043D\u0435\u0440\u043E\u0442 \u0441\u043E <code>--restart=always</code>","platform.docker.script_help":"\u041E\u0432\u0430\u0430 \u0441\u043A\u0440\u0438\u043F\u0442\u0430 \u045C\u0435 \u0441\u0435 \u0438\u0437\u0432\u0440\u0448\u0438 \u0441\u0435\u043A\u043E\u0433\u0430\u0448 \u043A\u043E\u0433\u0430 docker \u043A\u043E\u043D\u0442\u0435\u0458\u043D\u0435\u0440\u043E\u0442 \u045C\u0435 \u0441\u0435 \u0441\u0442\u0430\u0440\u0442\u0443\u0432\u0430. \u041C\u043E\u0436\u0435\u0442\u0435 \u0434\u0430 \u0458\u0430 \u0438\u0441\u043A\u043E\u0440\u0438\u0441\u0442\u0438\u0442\u0435 \u0437\u0430 \u0434\u0430 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0442\u0435 \u0431\u0438\u043B\u043E \u043A\u0430\u043A\u0432\u0438 \u0434\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u043D\u0438 \u043F\u0430\u043A\u0435\u0442\u0438 \u043A\u043E\u0438 \u0441\u0435 \u043F\u043E\u0442\u0440\u0435\u0431\u043D\u0438 \u0437\u0430 \u0432\u0430\u0448\u0438\u0442\u0435 \u043F\u043B\u0430\u0433\u0438\u043D\u0438 \u043A\u0430\u043A\u043E \u043D\u0430 \u043F\u0440\u0438\u043C\u0435\u0440 ffmpeg \u0438\u043B\u0438 libpcap-dev.","platform.docker.script_saved":"\u0421\u0442\u0430\u0440\u0442\u0430\u043F \u0441\u043A\u0440\u0438\u043F\u0442\u0430\u0442\u0430 \u0435 \u0437\u0430\u0447\u0443\u0432\u0430\u043D\u0430","platform.docker.server_long_time":"\u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u045A\u0435\u0442\u043E \u043D\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u043E\u0442 \u0442\u0440\u0430\u0435 \u043F\u043E\u0434\u043E\u043B\u0433\u043E \u043E\u0434 \u0432\u043E\u043E\u0431\u0438\u0447\u0430\u0435\u043D\u043E. \u041C\u043E\u0436\u043D\u043E \u0435 \u0434\u0430 \u0442\u0440\u0435\u0431\u0430 \u0440\u0430\u0447\u043D\u043E \u0434\u0430 \u0433\u043E \u0441\u0442\u0430\u0440\u0442\u0443\u0432\u0430\u0442\u0435 Docker \u043A\u043E\u043D\u0442\u0435\u0458\u043D\u0435\u0440\u043E\u0442.","platform.docker.title_restarting":"\u0421\u0435 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430 Docker \u043A\u043E\u043D\u0442\u0435\u0458\u043D\u0435\u0440\u043E\u0442","platform.linux.long_time":"\u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u045A\u0435\u0442\u043E \u043D\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u043E\u0442 \u0442\u0440\u0430\u0435 \u043F\u043E\u0434\u043E\u043B\u0433\u043E \u0432\u0440\u0435\u043C\u0435. \u041C\u043E\u0436\u043D\u043E \u0435 \u0434\u0430 \u0442\u0440\u0435\u0431\u0430 \u0434\u0430 \u0433\u043E \u0441\u0442\u0430\u0440\u0442\u0443\u0432\u0430\u0442\u0435 \u0440\u0430\u0447\u043D\u043E.","platform.linux.restart":"\u0412\u0435 \u043C\u043E\u043B\u0438\u043C\u0435 \u043F\u043E\u0447\u0435\u043A\u0430\u0458\u0442\u0435, \u0441\u0442\u0440\u0430\u043D\u0430\u0442\u0430 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u0438 \u045C\u0435 \u0432\u0435 \u043F\u0440\u0435\u043D\u0430\u0441\u043E\u0447\u0438 \u043A\u043E\u0433\u0430 Homebridge \u045C\u0435 \u0441\u0442\u0430\u043D\u0435 \u043F\u043E\u0432\u0442\u043E\u0440\u043D\u043E \u0434\u043E\u0441\u0442\u0430\u043F\u0435\u043D.","platform.linux.restarting_server":"\u0421\u0435\u0440\u0432\u0435\u0440\u043E\u0442 \u0441\u0435 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430","platform.linux.server_restart_error":"\u041D\u0430\u0441\u0442\u0430\u043D\u0430 \u0433\u0440\u0435\u0448\u043A\u0430 \u043F\u0440\u0438 \u0438\u0441\u043F\u0440\u0430\u045C\u0430\u045A\u0435 \u043D\u0430 \u0440\u0435\u0441\u0442\u0430\u0440\u0442 \u043A\u043E\u043C\u0430\u043D\u0434\u0430\u0442\u0430 \u0434\u043E \u0441\u0435\u0440\u0432\u0435\u0440\u043E\u0442","platform.linux.server_restarted":"\u0421\u0435\u0440\u0432\u0435\u0440\u043E\u0442 \u0435 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043D","platform.linux.server_taking_long_time":"\u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u045A\u0435\u0442\u043E \u043D\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u043E\u0442 \u0442\u0440\u0430\u0435 \u043F\u043E\u0434\u043E\u043B\u0433\u043E \u0432\u0440\u0435\u043C\u0435.","platform.linux.server_will_power_down":"\u0421\u0435\u0440\u0432\u0435\u0440\u043E\u0442 \u045C\u0435 \u0441\u0435 \u0438\u0441\u043A\u043B\u0443\u0447\u0438 \u043D\u0430\u0441\u043A\u043E\u0440\u043E.","platform.linux.shutting_down_server":"\u0421\u0435\u0440\u0432\u0435\u0440\u043E\u0442 \u0441\u0435 \u0438\u0441\u043A\u043B\u0443\u0447\u0443\u0432\u0430","platform.version.restart_required":"\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D\u0430 \u0435 v{{ uiVersion }} \u043E\u0434 Homebridge UI, \u043D\u043E \u0441\u0435\u0440\u0432\u0435\u0440\u043E\u0442 \u0441\u0435\u0443\u0448\u0442\u0435 \u0440\u0430\u0431\u043E\u0442\u0438 \u043D\u0430 v{{ serverVersion }}.","platform.version.service_restart_required":"\u041F\u043E\u0442\u0440\u0435\u0431\u043D\u043E \u0435 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u045A\u0435 \u043D\u0430 \u0441\u0435\u0440\u0432\u0438\u0441\u043E\u0442","plugins.bridge.action_error":"Failed to {{ action }} child bridge(s).","plugins.button_homepage":"Plugin Homepage","plugins.button_set_up":"Set Up","plugins.button_settings":"\u041F\u043E\u0441\u0442\u0430\u0432\u043A\u0438","plugins.button_uninstall":"\u0414\u0435\u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0458","plugins.button_update":"\u0410\u0436\u0443\u0440\u0438\u0440\u0430\u0458","plugins.compat.are_you_sure":"Are you sure you want to continue anyway?","plugins.compat.hb_node_too_low":"Node.js v{{ minVersion }} \u0438\u043B\u0438 \u043F\u043E\u043D\u043E\u0432 e \u043F\u043E\u0442\u0440\u0435\u0431\u0435\u043D \u0437\u0430 {{ packageName }} v{{ latestVersion }}. \u041C\u043E\u043C\u0435\u043D\u0442\u0430\u043B\u043D\u043E \u0438\u043C\u0430\u0442\u0435 Node.js {{ installedVersion }}.","plugins.compat.hb_too_low":"\u041F\u043B\u0430\u0433\u0438\u043D\u043E\u0442 {{ pluginName }} \u043F\u0440\u0435\u043F\u043E\u0440\u0430\u0447\u0443\u0432\u0430 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u0440\u0448\u0443\u0432\u0430 \u043D\u0430 Homebridge v{{ minVersion }} \u0438\u043B\u0438 \u043F\u043E\u043D\u043E\u0432. \u041C\u043E\u043C\u0435\u043D\u0442\u0430\u043B\u043D\u043E \u0438\u043C\u0430\u0442\u0435 Homebridge v{{ installedVersion }}.","plugins.compat.node_first":"\u0412\u0435 \u043C\u043E\u043B\u0438\u043C\u0435 \u0430\u0443\u0440\u0438\u0440\u0430\u0458\u0442\u0435 \u0433\u043E Node.js \u043F\u0440\u0435\u0434 \u0434\u0430 \u0433\u043E \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u0442\u0435 {{ packageName }}.","plugins.compat.node_link":"How To Update Node.js","plugins.compat.node_too_low":"\u041F\u043B\u0430\u0433\u0438\u043D\u043E\u0442 {{ pluginName }} \u043F\u0440\u0435\u043F\u043E\u0440\u0430\u0447\u0443\u0432\u0430 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0432\u0440\u0448\u0443\u0432\u0430 \u043D\u0430 Node.js v{{ minVersion }} \u0438\u043B\u0438 \u043F\u043E\u043D\u043E\u0432. \u041C\u043E\u043C\u0435\u043D\u0442\u0430\u043B\u043D\u043E \u0438\u043C\u0430\u0442\u0435 Node.js {{ installedVersion }}.","plugins.compat.title":"Compatibility Check","plugins.config.load_error":"Failed to load plugin config.","plugins.config.must_be_array":"Plugin config must be an array.","plugins.config.must_be_array_objects":"Plugin config must be an array of objects.","plugins.config.must_be_object":"Config block must be an object.","plugins.config.name_property":'Accessory must have a valid "name" attribute',"plugins.config.please_fix":"Please fix validation errors before adding a new block.","plugins.config.remove_error":"Failed to remove plugin config.","plugins.disable.error":"Failed to disable plugin.","plugins.donate.button_not_verified":"Not Verified","plugins.donate.button_verified":"\u041F\u043E\u0442\u0432\u0440\u0434\u0435\u043D\u043E","plugins.donate.message_1":"As more users install their plugins through the Homebridge UI, they are less likely to visit the projects' GitHub page where the ways to support a developer would typically be displayed.","plugins.donate.message_2":"Adding donation links directly in the Homebridge UI ensures users know how to support Homebridge developers if they wish to do so.","plugins.donate.tile_donate_to":"\u0414\u043E\u043D\u0438\u0440\u0430\u0458 \u043D\u0430 {{ author }}","plugins.enable.error":"Failed to enable plugin.","plugins.manage.all_versions":"All versions","plugins.manage.child_bridge_restart":"Child bridge restarted successfully.","plugins.manage.child_bridge_restart_failed":"Plugin restart failed, please restart Homebridge manually.","plugins.manage.confirm_disable":"Are you sure you want to disable {{ pluginName }}?","plugins.manage.confirm_disable_accessory_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen and removed from HomeKit.","plugins.manage.confirm_disable_accessory_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and HomeKit. The accessories will lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_disable_platform_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen but remain in HomeKit with a 'No Response' label.","plugins.manage.confirm_disable_platform_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and become controllable again in HomeKit. The accessories will not lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_enable":"Are you sure you want to enable {{ pluginName }}?","plugins.manage.disable":"Disable","plugins.manage.enable":"Enable","plugins.manage.information":"Plugin Information","plugins.manage.install":"\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0458","plugins.manage.installed":"\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D\u043E","plugins.manage.json_config":"JSON Config","plugins.manage.manage_version":"\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0458 \u043F\u0440\u0435\u0442\u0445\u043E\u0434\u043D\u0430 \u0432\u0435\u0440\u0437\u0438\u0458\u0430","plugins.manage.manual_update_command":"To upgrade the package run open a Node.js command prompt as an Administrator and run the following commands:","plugins.manage.manual_update_required":"\u041F\u043E\u0442\u0440\u0435\u0431\u043D\u043E \u0435 \u0440\u0430\u0447\u043D\u043E \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045A\u0435.","plugins.manage.online_updates":"\u041E\u043D\u043B\u0430\u0458\u043D \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045A\u0435 \u043D\u0435 \u0435 \u043F\u043E\u0434\u0434\u0440\u0436\u0430\u043D\u043E \u043D\u0430 Windows. \u040C\u0435 \u0442\u0440\u0435\u0431\u0430 \u0440\u0430\u0447\u043D\u043E \u0434\u0430 \u0433\u043E \u043D\u0430\u0434\u0433\u0440\u0430\u0434\u0438\u0442\u0435 Homebridge \u043F\u043E \u0437\u0430\u043F\u0438\u0440\u0430\u045A\u0435 \u043D\u0430 Homebridge \u0441\u0435\u0440\u0432\u0438\u0441\u043E\u0442.","plugins.manage.plugin_logs":"Plugin Logs","plugins.manage.release_notes":"Release Notes","plugins.manage.scoped.error":"An error occurred. You can download the logs below.","plugins.manage.scoped.info":"For more information about scoped plugins and why to switch, see the wiki page {{ link }}.","plugins.manage.scoped.process":"This process will not affect your Homebridge/HomeKit accessories. You will not be able to cancel the process once it has started. It will:","plugins.manage.scoped.switch":"Switch To Scoped Plugin","plugins.manage.scoped.windows":"Online updates are not supported on Windows. You will need to install the new plugin and uninstall the old plugin manually.","plugins.manage.scoped.windows_service":'You should <span class="font-weight-bold">not</span> restart Homebridge until both steps are complete.',"plugins.manage.select_version":"\u041E\u0434\u0431\u0435\u0440\u0435\u0442\u0435 \u0432\u0435\u0440\u0437\u0438\u0458\u0430","plugins.manage.thanks_for_updating":"\u0412\u0438 \u0431\u043B\u0430\u0433\u043E\u0434\u0430\u0440\u0438\u043C\u0435 \u0448\u0442\u043E \u0458\u0430 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0432\u0442\u0435 \u043D\u0430\u0458\u043D\u043E\u0432\u0430\u0442\u0430 \u0432\u0435\u0440\u0437\u0438\u0458\u0430 \u043D\u0430 {{ pluginName }}.","plugins.manage.uninstall":"\u0414\u0435\u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0458","plugins.manage.uninstalled":"\u041E\u0442\u0441\u0442\u0440\u0430\u043D\u0435\u0442","plugins.manage.unverified_message":"Unverified Homebridge plugins indicate that they haven't undergone the review process by the Homebridge project team. Lack of verification does not necessarily imply inefficacy or safety concerns. Authors might have opted not to seek verification for various reasons.","plugins.manage.unverified_subtitle":"{{ pluginName }} is not verified","plugins.manage.unverified_title":"Unverified Plugins","plugins.manage.update":"\u0410\u0436\u0443\u0440\u0438\u0440\u0430\u0458","plugins.manage.updated":"\u0410\u0436\u0443\u0440\u0438\u0440\u0430\u043D\u043E","plugins.manage.verified_message":"Homebridge plugins that are marked as verified have been reviewed by the Homebridge project team to ensure they meet various requirements that encourage best practices and a trouble-free user experience.","plugins.manage.verified_subtitle":"{{ pluginName }} is verified","plugins.manage.verified_title":"Verified Plugins","plugins.node_update.continue":"Continue","plugins.placeholder_search_first":"Use the search bar above to find your first plugin","plugins.placeholder_search_plugin":"\u0411\u0430\u0440\u0430\u0458\u0442\u0435 \u043F\u043B\u0430\u0433\u0438\u043D\u0438 \u0434\u043E\u0441\u0442\u0430\u043F\u043D\u0438 \u0437\u0430 \u0438\u043D\u0441\u0442\u0430\u043B\u0430\u0446\u0438\u0458\u0430\u2026","plugins.settings.custom.homebridge-gsh.label_account_linked":"\u041F\u043E\u0432\u0440\u0437\u0430\u043D\u0430 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0447\u043A\u0430 \u0441\u043C\u0435\u0442\u043A\u0430","plugins.settings.custom.homebridge-gsh.label_link_account":"\u041F\u043E\u0432\u0440\u0437\u0438 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0447\u043A\u0430 \u0441\u043C\u0435\u0442\u043A\u0430","plugins.settings.custom.homebridge-gsh.label_unlink_account":"\u041E\u0442\u043A\u0430\u0436\u0438 \u043F\u043E\u0432\u0440\u0437\u0443\u0432\u0430\u045A\u0435 \u043D\u0430 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0447\u043A\u0430 \u0441\u043C\u0435\u0442\u043A\u0430","plugins.settings.custom.homebridge-gsh.message_about":"Homebridge Google Smart Home \u043F\u043B\u0430\u0433\u0438\u043D\u043E\u0442 \u043E\u0432\u043E\u0437\u043C\u043E\u0436\u0443\u0432\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u0430 \u043D\u0430 Homebridge \u0443\u0440\u0435\u0434\u0438\u0442\u0435 \u043E\u0434 Google Home smart speaker \u0438\u043B\u0438 \u043E\u0434 Google Home \u043C\u043E\u0431\u0438\u043B\u043D\u0430\u0442\u0430 \u0430\u043F\u043B\u0438\u043A\u0430\u0446\u0438\u0458\u0430.","plugins.settings.custom.homebridge-gsh.message_account_link_required":"\u0417\u0430 \u0434\u0430 \u0458\u0430 \u043E\u0432\u043E\u0437\u043C\u043E\u0436\u0438\u0442\u0435 \u043E\u0432\u0430\u0430 \u0444\u0443\u043D\u043A\u0446\u0438\u0458\u0430 \u043C\u043E\u0440\u0430 \u0434\u0430 \u0441\u0435 \u043D\u0430\u0458\u0430\u0432\u0438\u0442\u0435 \u0441\u043E \u0412\u0430\u0448\u0430\u0442\u0430 Google \u0438\u043B\u0438 GitHub \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0447\u043A\u0430 \u0441\u043C\u0435\u0442\u043A\u0430; \u043E\u0441\u0438\u0433\u0443\u0440\u0430\u0458\u0442\u0435 \u0441\u0435 \u0434\u0435\u043A\u0430 \u0438\u0441\u0442\u0430\u0442\u0430 \u0441\u043C\u0435\u0442\u043A\u0430 \u0458\u0430 \u043A\u043E\u0440\u0438\u0441\u0442\u0438\u0442\u0435 \u043F\u0440\u0438 \u0434\u043E\u0434\u0430\u0432\u0430\u045A\u0435 \u043D\u0430 Homebridge \u0430\u043A\u0446\u0438\u0458\u0430\u0442\u0430 \u0432\u043E Google Home \u043C\u043E\u0431\u0438\u043B\u043D\u0430\u0442\u0430 \u0430\u043F\u043B\u0438\u043A\u0430\u0446\u0438\u0458\u0430.","plugins.settings.custom.homebridge-gsh.message_homebridge_restart_required":"Homebridge \u0431\u0430\u0440\u0430 \u0440\u0435\u0441\u0442\u0430\u0440\u0442 \u0437\u0430 \u043F\u0440\u043E\u043C\u0435\u043D\u0438\u0442\u0435 \u0434\u0430 \u0431\u0438\u0434\u0430\u0442 \u0440\u0435\u0444\u043B\u0435\u043A\u0442\u0438\u0440\u0430\u043D\u0438.","plugins.settings.custom.homebridge-gsh.message_invalid_token":"Invalid account linking token in config.json","plugins.settings.deconz.dump_no_exist":"Homebridge deCONZ dump file does not exist yet.","plugins.settings.hue.dump_no_exist":"Homebridge Hue dump file does not exist yet.","plugins.settings.label_open_config_editor":"\u041E\u0442\u0432\u043E\u0440\u0438 \u0443\u0440\u0435\u0434\u043D\u0438\u043A \u0437\u0430 \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0458\u0430","plugins.settings.message_consult_documentation":"\u0412\u0435 \u043C\u043E\u043B\u0438\u043C\u0435 \u0434\u0430 \u0441\u0435 \u043A\u043E\u043D\u0441\u0443\u043B\u0442\u0438\u0440\u0430\u0442\u0435 \u0441\u043E \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430\u0446\u0438\u0458\u0430\u0442\u0430 \u043D\u0430 \u043F\u043B\u0430\u0433\u0438\u043D\u043E\u0442 \u0437\u0430 \u0438\u043D\u0441\u0442\u0440\u0443\u043A\u0446\u0438\u0438 \u043A\u0430\u043A\u043E \u0434\u0430 \u0433\u043E \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430\u0442\u0435 \u0438\u0441\u0442\u0438\u043E\u0442.","plugins.settings.message_manual_config_required":"\u041E\u0432\u043E\u0458 \u043F\u043B\u0430\u0433\u0438\u043D \u043C\u043E\u0440\u0430 \u0434\u0430 \u0441\u0435 \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430 \u0440\u0430\u0447\u043D\u043E \u0432\u043E Homebridge UI \u0443\u0440\u0435\u0434\u043D\u0438\u043A\u043E\u0442 \u0437\u0430 \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0458\u0430.","plugins.settings.plugin_config_saved":"\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0458\u0430\u0442\u0430 \u043D\u0430 \u043F\u043B\u0430\u0433\u0438\u043D\u043E\u0442 \u0435 \u0437\u0430\u0447\u0443\u0432\u0430\u043D\u0430","plugins.settings.restart_required":"\u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0458\u0442\u0435 \u0433\u043E Homebridge \u0437\u0430 \u043F\u0440\u043E\u043C\u0435\u043D\u0438\u0442\u0435 \u0434\u0430 \u0431\u0438\u0434\u0430\u0442 \u0440\u0435\u0444\u043B\u0435\u043A\u0442\u0438\u0440\u0430\u043D\u0438.","plugins.settings.title_settings":"\u041F\u043E\u0441\u0442\u0430\u0432\u043A\u0438","plugins.status_disabled":"Disabled","plugins.status_installed":"\u0418\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D","plugins.toast_failed_to_load_plugin_schema":"Failed to load plugin config schema.","plugins.toast_failed_to_load_plugins":"\u0413\u0440\u0435\u0448\u043A\u0430 \u043F\u0440\u0438 \u0432\u0447\u0438\u0442\u0443\u0432\u0430\u045A\u0435 \u043F\u043B\u0430\u0433\u0438\u043D\u0438.","plugins.uninstall_bridge_error":"Failed to remove child bridge.","plugins.uninstall_remove_config_required":"\u0410\u043A\u043E \u0442\u0440\u0430\u0458\u043D\u043E \u0433\u043E \u043E\u0442\u0441\u0442\u0440\u0430\u043D\u0443\u0432\u0430\u0442\u0435 \u043E\u0432\u043E\u0458 \u043F\u043B\u0430\u0433\u0438\u043D, \u043E\u0441\u0438\u0433\u0443\u0440\u0430\u0458\u0442\u0435 \u0441\u0435 \u0434\u0435\u043A\u0430 \u0441\u0435 \u043E\u0442\u0441\u0442\u0440\u0430\u043D\u0435\u0442\u0438 \u0441\u0438\u0442\u0435 \u0440\u0435\u043B\u0435\u0432\u0430\u043D\u0442\u043D\u0438 \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0441\u043A\u0438 \u043F\u043E\u0441\u0442\u0430\u0432\u043A\u0438 \u043E\u0434 config.json \u043F\u0440\u0435\u0434 \u0434\u0430 \u0433\u043E \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0442\u0435 Homebridge.","plugins.uninstall_remove_confirmation":"\u0414\u0430\u043B\u0438 \u0441\u0442\u0435 \u0441\u0438\u0433\u0443\u0440\u043D\u0438 \u0434\u0435\u043A\u0430 \u0441\u0430\u043A\u0430\u0442\u0435 \u0434\u0430 \u0433\u043E \u0434\u0435\u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0442\u0435 {{ pluginName }}?","plugins.uninstall_remove_plugin_config":"\u041E\u0442\u0441\u0442\u0440\u0430\u043D\u0438 \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0458\u0430 \u0437\u0430 \u043F\u043B\u0430\u0433\u0438\u043D\u043E\u0442?","plugins.uninstall_unpair_child_bridge":"Unpair plugin child bridge?","plugins.uninstall_unpair_child_bridges":"Unpair {{ count }} plugin child bridges?","reset.accessory_reset":"\u0420\u0435\u0441\u0435\u0442\u0438\u0440\u0430\u045A\u0435 \u043D\u0430 Homebridge \u0443\u0440\u0435\u0434","reset.action_is_irreversible":"\u041E\u0432\u0430\u0430 \u0430\u043A\u0446\u0438\u0458\u0430 \u0435 \u043D\u0435\u043F\u043E\u0432\u0440\u0430\u0442\u043D\u0430. \u0412\u0435 \u043C\u043E\u043B\u0438\u043C\u0435 \u0432\u043D\u0438\u043C\u0430\u0442\u0435\u043B\u043D\u043E \u043F\u0440\u043E\u0447\u0438\u0442\u0430\u0458\u0442\u0435 \u043F\u0440\u0435\u0434 \u0434\u0430 \u043F\u0440\u043E\u0434\u043E\u043B\u0436\u0438\u0442\u0435.","reset.bridges.desc":"If you are having trouble pairing Homebridge, an external accessory or a child bridge to HomeKit, you may need to unpair it from HomeKit to start again.","reset.bridges.empty":"You have no bridges to unpair from HomeKit.","reset.bridges.title":"Bridges","reset.bridges_all.desc":"Unpair all bridges from HomeKit. This includes the main Homebridge bridge, child bridges and bridges for external accessories.","reset.bridges_all.list_1":"This will unpair the Homebridge bridge, all child bridges and bridges for external accessories from HomeKit.","reset.bridges_all.list_2":"Note that your accessories will continue to show in HomeKit as no response, until the bridges are manually removed from HomeKit. You can do this in the Home app, by accessing Home Settings \u2192 Home Hubs & Bridges \u2192 {Bridge} \u2192 Remove Bridge from Home.","reset.bridges_all.list_3":"All your Homebridge to HomeKit accessories, scenes and automations will need to be reconfigured after the unpairing.","reset.bridges_all.list_4":"The pin for pairing your Homebridge bridge to HomeKit will be changed. You can see the new values in your Homebridge config after the unpairing.","reset.bridges_all.title":"Unpair All Bridges","reset.bridges_single.desc":"Unpair a single bridge from HomeKit. This may be a child bridge or a bridge for an external accessory like a camera or TV.","reset.bridges_single.list_1":"When unpairing a bridge, any accessories published by this bridge will be removed from the Homebridge cache.","reset.bridges_single.list_2":"The accessories will become stale in HomeKit (showing no response). To remove them, you will need to manually remove this bridge from HomeKit. You can do this in the Home app from the Home Settings section.","reset.bridges_single.list_3":"You can then attempt to pair the bridge again if required.","reset.bridges_single.title":"Unpair Single Bridge","reset.cached_accessory_removed":"\u041A\u0435\u0448\u0438\u0440\u0430\u043D\u0438\u043E\u0442 \u0443\u0440\u0435\u0434 \u0435 \u043E\u0442\u0441\u0442\u0440\u0430\u043D\u0435\u0442.","reset.clear_cache_all.desc":"Remove all accessories from the cache.","reset.clear_cache_all.list_1":"When clicking on the remove button below, Homebridge will restart and all your existing accessories will be removed from Homebridge and HomeKit.","reset.clear_cache_all.list_2":"All associated HomeKit data will also be removed, this includes room associations, scenes and automations that this accessory uses.","reset.clear_cache_all.list_3":"After Homebridge restarts, your plugins will re-add any accessories as if the plugin was being installed for the first time.","reset.clear_cache_all.title":"Remove All Accessories","reset.clear_cache_bridge.desc":"Remove all accessories published by a bridge from the cache.","reset.clear_cache_bridge.empty":"You have no bridges from which to remove accessories.","reset.clear_cache_bridge.list_1":"This function can be used to reset a plugin's existing accessories in HomeKit. They will be removed from Homebridge/HomeKit and then re-added by the plugin as new accessories.","reset.clear_cache_bridge.list_2":"The child bridge's pairing details and status will remain the same.","reset.clear_cache_bridge.title":"Remove Bridge Accessories","reset.clear_cache_single.desc":"Remove a single accessory from the cache.","reset.clear_cache_single.list_1":"Some plugins don't clean up after themselves properly! If an accessory that you no longer have in Homebridge is still being displayed in HomeKit, you can remove it from the cache.","reset.clear_cache_single.list_2":"This function can be used to reset an existing accessory in HomeKit. It will be removed from Homebridge/HomeKit and then re-added by the plugin as a new accessory.","reset.clear_cache_single.list_3":"When removing an accessory from the cache, all its associated HomeKit data will be removed. This includes any associated scenes and automations that use this accessory.","reset.clear_cache_single.list_4":"Accessories can only be removed when Homebridge is not running. Homebridge will automatically restart when clicking on each of the remove buttons below. If you need to remove multiple accessories, please be patient and allow Homebridge to restart between each removal.","reset.clear_cache_single.title":"Remove Single Accessory","reset.delete_failed":"\u0413\u0440\u0435\u0448\u043A\u0430 \u043F\u0440\u0438 \u0431\u0440\u0438\u0448\u0435\u045A\u0435\u0442\u043E \u043D\u0430 \u0443\u0440\u0435\u0434\u043E\u0442.","reset.delete_success":"Homebridge \u0441\u0435 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430 \u0438 \u0441\u0435 \u0447\u0438\u0441\u0442\u0430\u0442 \u043A\u0435\u0448\u0438\u0440\u0430\u043D\u0438\u0442\u0435 \u0443\u0440\u0435\u0434\u0438.","reset.error_message":"Accessory cache could not be loaded. You may not have any cached accessories.","reset.failed_to_reset":"\u0413\u0440\u0435\u0448\u043A\u0430 \u043F\u0440\u0438 \u0440\u0435\u0441\u0435\u0442\u0438\u0440\u0430\u045A\u0435\u0442\u043E \u043D\u0430 Homebridge. \u041F\u0440\u043E\u0432\u0435\u0440\u0435\u0442\u0435 \u0432\u043E \u043B\u043E\u0433\u0438\u0440\u0447\u043A\u0438\u0442\u0435 \u0444\u0430\u0458\u043B\u043E\u0432\u0438.","reset.force_restart_hb_help_text":"\u041A\u043E\u0440\u0438\u0441\u0442\u0435\u0442\u0435 \u0458\u0430 \u043E\u0432\u0430\u0430 \u0430\u043A\u0446\u0438\u0458\u0430 \u0437\u0430 \u0434\u0430 \u0433\u043E \u043F\u0440\u0438\u0441\u0438\u043B\u0438\u0442\u0435 hb-service \u0441\u0435\u0440\u0432\u0438\u0441\u043E\u0442 \u0434\u0430 \u043D\u0430\u043F\u0440\u0430\u0432\u0438 \u0446\u0435\u043B\u043E\u0441\u0435\u043D \u0440\u0435\u0441\u0442\u0430\u0440\u0442.","reset.remove_cached_accessories_single_empty":"You have no cached accessories to remove.","reset.removing_cached_accessory_please_wait":"\u0421\u0435 \u043E\u0442\u0441\u0442\u0440\u0430\u043D\u0443\u0432\u0430 \u0443\u0440\u0435\u0434\u043E\u0442 \u043E\u0434 \u043A\u0435\u0448, \u0432\u0435 \u043C\u043E\u043B\u0438\u043C\u0435 \u043F\u043E\u0447\u0435\u043A\u0430\u0458\u0442\u0435\u2026","restart.child_bridge_list":"Please restart these child bridges for the changes to apply:","restart.child_bridges":"Please restart the plugin's child bridges for the changes to apply.","restart.homebridge":"Please restart Homebridge for the changes to apply.","restart.label_restart_command_executed":"K\u043E\u043C\u0430\u043D\u0434\u0430\u0442\u0430 \u0437\u0430 \u0440\u0435\u0441\u0442\u0430\u0440\u0442 \u0435 \u0438\u0437\u0432\u0440\u0448\u0435\u043D\u0430","restart.please_wait_while_server_restarts":"\u0412\u0435 \u043C\u043E\u043B\u0438\u043C\u0435 \u043F\u043E\u0447\u0435\u043A\u0430\u0458\u0442\u0435, \u0441\u0442\u0440\u0430\u043D\u0430\u0442\u0430 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u0438 \u045C\u0435 \u0432\u0435 \u043F\u0440\u0435\u043D\u0430\u0441\u043E\u0447\u0438 \u043A\u043E\u0433\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u043E\u0442 \u045C\u0435 \u0431\u0438\u0434\u0435 \u043F\u043E\u0432\u0442\u043E\u0440\u043D\u043E \u0434\u043E\u0441\u0442\u0430\u043F\u0435\u043D.","restart.server_is_taking_long_time_to_restart":"\u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u045A\u0435\u0442\u043E \u043D\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u043E\u0442 \u0442\u0440\u0430\u0435 \u043F\u043E\u0434\u043E\u043B\u0433\u043E. \u041C\u043E\u0436\u043D\u043E \u0435 \u0434\u0430 \u0442\u0440\u0435\u0431\u0430 \u0440\u0430\u0447\u043D\u043E \u0434\u0430 \u0433\u043E \u0441\u0442\u0430\u0440\u0442\u0443\u0432\u0430\u0442\u0435 Homebridge \u0441\u0435\u0440\u0432\u0438\u0441\u043E\u0442.","restart.service_ready":"Homebridge \u0441\u0435\u0440\u0432\u0435\u0440\u043E\u0442 \u0435 \u043F\u043E\u0434\u0433\u043E\u0442\u0432\u0435\u043D","restart.title_restart":"Homebridge \u0441\u0435 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430","restart.toast_server_restart_error":"\u041D\u0430\u0441\u0442\u0430\u043D\u0430 \u0433\u0440\u0435\u0448\u043A\u0430 \u043F\u0440\u0438 \u0438\u0441\u043F\u0440\u0430\u045C\u0430\u045A\u0435 \u043D\u0430 \u0440\u0435\u0441\u0442\u0430\u0440\u0442 \u043A\u043E\u043C\u0430\u043D\u0434\u0430\u0442\u0430 \u0434\u043E \u0441\u0435\u0440\u0432\u0435\u0440\u043E\u0442","restart.toast_server_restart_timeout":"\u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u045A\u0435\u0442\u043E \u043D\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u043E\u0442 \u0442\u0440\u0430\u0435 \u043F\u043E\u0434\u043E\u043B\u0433\u043E \u043E\u0434 \u0432\u043E\u043E\u0431\u0438\u0447\u0430\u0435\u043D\u043E.","restart.toast_server_restarted":"\u0421\u0435\u0440\u0432\u0435\u0440\u043E\u0442 \u0435 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043D","restart.ui_online":"Homebridge \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0447\u043A\u0438\u043E\u0442 \u0438\u043D\u0442\u0435\u0440\u0444\u0435\u0458\u0441 \u0435 \u043E\u043D\u043B\u0430\u0458\u043D","rpi.throttled.currently_message":"This Raspberry Pi is reporting it is currently under-voltage; please check it is connected to an appropriate power supply. Under-voltage can result in system instability and SD card corruption.","rpi.throttled.previously_message":"This Raspberry Pi has reported an under-voltage event since it was last rebooted; please check it is connected to an appropriate power supply.","rpi.throttled.undervoltage_title":"Under Voltage","settings.cache.desc":"Homebridge maintains accessories in cache so they aren't removed and re-added to HomeKit each time Homebridge restarts. Sometimes this cache can become out of sync with the actual accessories in Homebridge.","settings.cache.title":"Accessories","settings.changes.saved":"Your changes have been saved and require a restart to take effect.","settings.datetime.incorrect":"The date and time on your Homebridge server seem to be incorrect. This may cause unexpected issues. Click here for more information.","settings.display.blue":"Blue","settings.display.bluegrey":"Blue Grey","settings.display.brown":"Brown","settings.display.cyan":"Cyan","settings.display.dark":"Dark","settings.display.deep_purple":"Deep Purple","settings.display.green":"Green","settings.display.grey":"Grey","settings.display.indigo":"Indigo","settings.display.lang":"Language","settings.display.light":"Light","settings.display.lighting_mode":"Lighting Mode","settings.display.login_wallpaper":"Login Wallpaper","settings.display.login_wallpaper_desc":"A custom login wallpaper can be set by adding a <code>ui-wallpaper.jpg</code> file to your Homebridge storage directory, or by providing a full path to a local image file here.","settings.display.orange":"Orange","settings.display.pink":"Pink","settings.display.purple":"Purple","settings.display.red":"Red","settings.display.teal":"Teal","settings.display.temp_units":"Temperature Units","settings.display.temp_units.c":"Celsius (\xB0C)","settings.display.temp_units.f":"Fahrenheit (\xB0F)","settings.display.theme":"Theme","settings.general.title_display":"Display","settings.general.title_general":"General","settings.mdns_advertiser":"mDNS Advertiser","settings.mdns_advertiser_exp":"experimental","settings.mdns_advertiser_help":"If you have trouble connecting Homebridge to HomeKit (all accessories showing 'No Response' in the Home app), try using one of the alternate mDNS advertisers.","settings.mdns_advertiser_not_connected":"Not Connected","settings.mdns_advertiser_rec":"recommended","settings.network.label_interface_name":"\u0418\u043C\u0435 \u043D\u0430 \u0438\u043D\u0442\u0435\u0440\u0444\u0435\u0458\u0441","settings.network.label_ip_address":"IP \u0430\u0434\u0440\u0435\u0441\u0430","settings.network.message_network_interface":"\u0410\u043A\u043E \u043D\u0435\u043C\u0430\u0442\u0435 \u043E\u0434\u0431\u0440\u0430\u043D\u043E \u043D\u0438\u0435\u0434\u0435\u043D \u043C\u0440\u0435\u0436\u0435\u043D \u0438\u043D\u0442\u0435\u0440\u0444\u0435\u0458\u0441, Homebridge \u045C\u0435 \u043F\u0440\u043E\u0431\u0430 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u0438 \u0434\u0430 \u043E\u0434\u0440\u0435\u0434\u0438 \u043D\u0430 \u043A\u043E\u0438 \u0438\u043D\u0442\u0435\u0440\u0444\u0435\u0458\u0441\u0438 \u0434\u0430 \u0438\u0441\u043F\u0440\u0430\u045C\u0430 advertisements.","settings.network.port_hb":"Homebridge Port","settings.network.port_hb_desc":"The port number to run the Homebridge bridge on. This must be between 1025 and 65533, and should not be the same as the Homebridge UI port.","settings.network.port_ui":"UI Port","settings.network.port_ui_desc":"The port number to run the Homebridge UI on.","settings.network.title_network":"\u041C\u0440\u0435\u0436\u0430","settings.network.title_network_interfaces":"\u041C\u0440\u0435\u0436\u043D\u0438 \u0438\u043D\u0442\u0435\u0440\u0444\u0435\u0458\u0441\u0438","settings.service.debug_tooltip":"Some plugins require you to set the DEBUG environment variable to enable debug level logging.","settings.service.node_tooltip":"Node.js runtime options for this process. This should be kept blank unless you know what you are doing.","settings.startup.debug":"Homebridge Debug Mode","settings.startup.debug_desc_v1":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge as well as all child bridges. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.debug_desc_v2":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge. The setting for child bridges can be found in the child bridge configuration from the plugins page. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.insecure":"Homebridge 'Insecure' Mode","settings.startup.insecure_desc":"To control your accessories via the Homebridge UI you must be running Homebridge in insecure mode.","settings.startup.keep_accessories":"Keep Accessories Of Uninstalled Plugins","settings.startup.keep_accessories_desc":"If enabled, accessories of platform plugins will remain in the cache even after the plugin is uninstalled. This can be useful if you plan to reinstall the plugin later.","settings.title_startup_options":"\u041E\u043F\u0446\u0438\u0438 \u0437\u0430 \u0441\u0442\u0430\u0440\u0442\u0443\u0432\u0430\u045A\u0435","settings.unpair_bridge.load_error":"Paired bridges could not be loaded.","settings.unpair_bridge.unpair_error":"Failed to unpair bridge.","setup.button_get_started":"Get Started","setup.create_account":"Create Account","setup.create_account_reason":"Password authentication to your Homebridge admin web interface must be configured. Even if Homebridge is accessible only in your local network, it is still important to protect it from unrestricted access.","setup.open_dashboard":"Open Dashboard","setup.welcome_to_homebridge":"Welcome to Homebridge",setup_wizard_message_complete_message:"The setup procedure is complete and you're now ready to start using Homebridge.",setup_wizard_message_complete_title:"Congratulations!",setup_wizard_message_restore:"Restore From Backup","status.code_scan":"\u0421\u043A\u0435\u043D\u0438\u0440\u0430\u0458\u0442\u0435 \u0437\u0430 \u0434\u0430 \u0434\u043E\u0434\u0430\u0434\u0435\u0442\u0435 \u0432\u043E HomeKit","status.cpu.load":"\u0422\u043E\u0432\u0430\u0440","status.cpu.temp":"\u0422\u0435\u043C\u043F\u0435\u0440\u0430\u0442\u0443\u0440\u0430","status.cpu.title_cpu":"CPU","status.credits.title":"Credits","status.homebridge.checking":"\u0421\u0435 \u043F\u0440\u043E\u0432\u0435\u0440\u0443\u0432\u0430 \u0437\u0430 \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045A\u0435\u2026","status.homebridge.up_to_date":"\u041D\u0430\u0458\u043D\u043E\u0432\u0430 \u0432\u0435\u0440\u0437\u0438\u0458\u0430","status.memory.label_available":"\u0414\u043E\u0441\u0442\u0430\u043F\u043D\u043E","status.memory.label_total":"\u0412\u043A\u0443\u043F\u043D\u043E","status.memory.title_memory":"\u041C\u0435\u043C\u043E\u0440\u0438\u0458\u0430","status.network.received_per_second":"Received","status.network.sent_per_second":"Sent","status.network.title_network":"Network Activity","status.plugin_out_of_date":"\u041F\u043B\u0430\u0433\u0438\u043D \u043D\u0435 \u0435 \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u043D\u0438","status.plugins_out_of_date":"\u041F\u043B\u0430\u0433\u0438\u043D\u0438\u0442\u0435 \u043D\u0435 \u0441\u0435 \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u043D\u0438","status.services.label_not_running":"\u041D\u0435 \u0435 \u0430\u043A\u0442\u0438\u0432\u0435\u043D","status.services.label_running":"\u0410\u043A\u0442\u0438\u0432\u0435\u043D","status.services.updates":"Update Centre","status.uptime.title_uptime":"\u0412\u0440\u0435\u043C\u0435 \u043D\u0430 \u0440\u0430\u0431\u043E\u0442\u0430","status.widget.accessories.choose_accessories":"\u041E\u0434\u0431\u0435\u0440\u0438 \u043A\u043E\u0438 \u0443\u0440\u0435\u0434\u0438 \u0434\u0430 \u0431\u0438\u0434\u0430\u0442 \u043F\u0440\u0438\u043A\u0430\u0436\u0430\u043D\u0438 \u0432\u043E \u043E\u0432\u043E\u0458 widget \u043F\u0440\u0435\u043A\u0443 \u0442\u0430\u0431\u043E\u0442 \u0423\u0440\u0435\u0434.","status.widget.add.label_pairing_code":"\u041A\u043E\u0434 \u0437\u0430 \u0441\u043F\u0430\u0440\u0443\u0432\u0430\u045A\u0435","status.widget.bridge.restart_error":"Failed to restart child bridge.","status.widget.clock":"\u0427\u0430\u0441\u043E\u0432\u043D\u0438\u043A","status.widget.clock_dateformat":"\u0424\u043E\u0440\u043C\u0430\u0442 \u043D\u0430 \u0434\u0430\u0442\u0443\u043C","status.widget.clock_timeformat":"\u0424\u043E\u0440\u043C\u0430\u0442 \u043D\u0430 \u0432\u0440\u0435\u043C\u0435","status.widget.font_size":"\u0413\u043E\u043B\u0435\u043C\u0438\u043D\u0430 \u043D\u0430 \u0444\u043E\u043D\u0442","status.widget.font_weight":"\u0422\u0435\u0436\u0438\u043D\u0430 \u043D\u0430 \u0444\u043E\u043D\u0442","status.widget.hide_on_mobile":"\u0421\u043A\u0440\u0438\u0458 \u0432\u043E \u043A\u043E\u043C\u043F\u0430\u043A\u0442\u0435\u043D \u043C\u043E\u0434 (\u043C\u043E\u0431\u0438\u043B\u043D\u0438 \u0443\u0440\u0435\u0434\u0438)","status.widget.homebridge_logs":"\u041B\u043E\u0433\u0438\u0440\u0430\u0447\u043A\u0438 \u0444\u0430\u0458\u043B\u043E\u0432\u0438 \u0437\u0430 Homebridge","status.widget.info":"\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438 \u0437\u0430 \u0441\u0438\u0441\u0442\u0435\u043C\u043E\u0442","status.widget.info.config_path":"\u041F\u0430\u0442\u0435\u043A\u0430 \u0437\u0430 \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0458\u0430\u0442\u0430","status.widget.info.disabled":"Disabled","status.widget.info.docker":"Docker","status.widget.info.glibc_message":"This message indicates that your operating system does not support newer versions of Node.js. To resolve this and be able to install updated versions of Node.js in the future, you will need to update your operating system to a more recent version.","status.widget.info.glibc_title":"OS Update","status.widget.info.hostname":"\u0418\u043C\u0435 \u043D\u0430 host","status.widget.info.ipv4":"IPv4","status.widget.info.ipv6":"IPv6","status.widget.info.no":"No","status.widget.info.node_unsupp":"Unsupported","status.widget.info.node_unsupp_message":"You are running a version of Node.js that is not officially supported by Homebridge. You should consider changing to a supported version.","status.widget.info.node_unsupp_title":"Unsupported Node Version","status.widget.info.node_update_message":"Homebridge requires Node.js installed on your system to run. From time to time, you will need to update the Node.js runtime to enable support for new features. Homebridge (and verified plugins) support all current Active and Maintenance LTS releases of Node.js.","status.widget.info.node_update_title":"Node Update","status.widget.info.nodejs_path":"Node.js Path","status.widget.info.nodejs_version":"Node.js \u0432\u0435\u0440\u0437\u0438\u0458\u0430","status.widget.info.os":"OS","status.widget.info.plugin_path":"\u041F\u0430\u0442\u0435\u043A\u0430 \u0437\u0430 \u043F\u043B\u0430\u0433\u0438\u043D\u043E\u0442","status.widget.info.service_mode":"\u041C\u043E\u0434 \u043D\u0430 \u0441\u0435\u0440\u0432\u0438\u0441\u043E\u0442","status.widget.info.service_user":"\u041A\u043E\u0440\u0438\u0441\u043D\u0438\u043A","status.widget.info.servicemode_message":"Standalone mode is no longer recommended. Setting up Homebridge and Homebridge UI with hb-service has the same benefits of standalone mode but is much easier to setup and maintain.","status.widget.info.servicemode_title":"Service Mode","status.widget.info.storage_path":"\u041F\u0430\u0442\u0435\u043A\u0430 \u0437\u0430 storage","status.widget.info.synology_package":"Synology Package","status.widget.info.timezone":"\u0412\u0440\u0435\u043C\u0435\u043D\u0441\u043A\u0430 \u0437\u043E\u043D\u0430","status.widget.info.yes":"Yes","status.widget.network.history_items":"History Items","status.widget.network.items":"items","status.widget.network.network_interface":"Network Interface","status.widget.network.none_selected":"None selected in settings - using default.","status.widget.network.refresh_interval":"Refresh Interval","status.widget.network.refresh_note":"Refresh the page after saving for changes to take effect.","status.widget.network.seconds":"seconds","status.widget.qr_paired":"Paired","status.widget.qr_unpaired":"Not Paired","status.widget.show_hide":"Show/Hide Widgets","status.widget.title_manage_widget":"\u0423\u043F\u0440\u0430\u0432\u0443\u0432\u0430\u0458 \u0441\u043E Widget","status.widget.uptime.label_process":"\u041F\u0440\u043E\u0432\u0435\u0441","status.widget.uptime.label_server":"\u0421\u0435\u0440\u0432\u0435\u0440","status.widget.weather.label_config_required_help":"\u041E\u0434\u0431\u0435\u0440\u0435\u0442\u0435 \u0433\u0440\u0430\u0434 \u0432\u043E \u043F\u043E\u0441\u0442\u0430\u0432\u043A\u0438\u0442\u0435 \u0437\u0430 widget-\u043E\u0442.","status.widget.weather.label_search_for_your_city":"\u041D\u0430\u0458\u0434\u0435\u0442\u0435 \u0433\u043E \u0412\u0430\u0448\u0438\u043E\u0442 \u0433\u0440\u0430\u0434:","status.widget.weather.title_weather":"\u0412\u0440\u0435\u043C\u0435\u043D\u0441\u043A\u0438 \u0443\u0441\u043B\u043E\u0432\u0438","support.dev.api":"Homebridge API","support.dev.api_hap":"HAP-NodeJS API","support.dev.api_hap_sub":"HAP-NodeJS is an implementation of the HomeKit Accessory Server as specified in the HomeKit Accessory Protocol (HAP), which is defined by Apple as part of the HomeKit Framework.","support.dev.api_sub":"Homebridge is a lightweight Node.js server you can run on your home network to emulate the HomeKit Accessory Protocol (HAP).","support.dev.item_swagger":"Swagger Docs","support.dev.item_swagger_sub":"The Homebridge REST API allows you to interact with your Homebridge server using HTTP requests.","support.dev.template":"Plugin Template Repo","support.dev.template_sub":"A template Homebridge plugin that can be used as a base to help you get started developing your own plugin.","support.dev.title":"Developers","support.dev.verified":"Verified By Homebridge","support.dev.verified_sub":"The Verified By Homebridge program allows plugin developers to get their plugins reviewed and endorsed by the Homebridge project team.","support.links.discord":"Discord Server","support.links.discord_sub":"Join the Homebridge Discord chat server to chat with other users and developers.","support.links.documentation":"Documentation","support.links.documentation_sub":"The Homebridge documentation provides a wealth of information on how to get started with Homebridge and common issue resolutions.","support.links.issue":"Report An Issue","support.links.issue_sub":"If you are experiencing an issue with Homebridge, please open a new issue on GitHub. This should not be used for issues with specific plugins.","support.links.reddit":"Reddit Community","support.links.reddit_sub":"The Homebridge subreddit is a great place to share your Homebridge setup and ask for help.","support.links.title":"Useful Links","support.title":"Support","toast.no_auth":"Only administrators may access the requested page.","toast.title_error":"\u0413\u0440\u0435\u0448\u043A\u0430","toast.title_success":"\u0423\u0441\u043F\u0435\u0448\u043D\u043E","toast.title_warning":"\u041F\u0440\u0435\u0434\u0443\u043F\u0440\u0435\u0434\u0443\u0432\u0430\u045A\u0435","users.button_add_new_user":"\u0414\u043E\u0434\u0430\u0434\u0438 \u043D\u043E\u0432 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A","users.button_add_user":"\u0414\u043E\u0434\u0430\u0434\u0438 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A","users.label_admin_user":"\u0414\u0430\u043B\u0438 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u043E\u0442 \u0435 \u0430\u0434\u043C\u0438\u043D\u0438\u0441\u0442\u0440\u0430\u0442\u043E\u0440?","users.label_confirm_password":"\u041F\u043E\u0442\u0432\u0440\u0434\u0438 \u043B\u043E\u0437\u0438\u043D\u043A\u0430","users.label_full_name":"\u0418\u043C\u0435 \u0438 \u043F\u0440\u0435\u0437\u0438\u043C","users.label_new_password":"\u041D\u043E\u0432\u0430 \u043B\u043E\u0437\u0438\u043D\u043A\u0430","users.label_password":"\u041B\u043E\u0437\u0438\u043D\u043A\u0430","users.label_username":"\u041A\u043E\u0440\u0438\u0441\u043D\u0438\u0447\u043A\u043E \u0438\u043C\u0435","users.setup_2fa":"\u041F\u043E\u0441\u0442\u0430\u0432\u0435\u0442\u0435 2FA","users.setup_2fa_activate_error":"An error occurred activating 2FA","users.setup_2fa_cannot_setup_2fa":"\u041D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u043E \u043F\u043E\u0441\u0442\u0430\u0432\u0443\u0432\u0430\u045A\u0435 \u043D\u0430 2FA","users.setup_2fa_disable":"\u041E\u043D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u0438 2FA","users.setup_2fa_disable_current_password":"\u0412\u043D\u0435\u0441\u0435\u0442\u0435 \u0458\u0430 \u0432\u0430\u0448\u0430\u0442\u0430 \u043B\u043E\u0437\u0438\u043D\u043A\u0430 \u0437\u0430 \u0434\u0430 \u043E\u043D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u0438\u0442\u0435 2FA:","users.setup_2fa_disable_success":"2FA \u0430\u0432\u0442\u0435\u043D\u0442\u0438\u043A\u0430\u0446\u0438\u0458\u0430\u0442\u0430 \u0435 \u043E\u043D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u0435\u043D\u0430.","users.setup_2fa_enable":"\u041E\u0432\u043E\u0437\u043C\u043E\u0436\u0438 2FA","users.setup_2fa_enable_error":"An error occurred setting up 2FA","users.setup_2fa_enabled_success":"2FA \u0430\u0432\u0442\u0435\u043D\u0442\u0438\u043A\u0430\u0446\u0438\u0458\u0430\u0442\u0430 \u0435 \u043E\u0432\u043E\u0437\u043C\u043E\u0436\u0435\u043D\u0430.","users.setup_2fa_enter_code":"\u0412\u043D\u0435\u0441\u0435\u0442\u0435 \u0433\u043E \u043A\u043E\u0434\u043E\u0442 \u043E\u0434 \u0432\u0430\u0448\u0430\u0442\u0430 \u0430\u043F\u043B\u0438\u043A\u0430\u0446\u0438\u0458\u0430 \u0437\u0430 \u0430\u0432\u0442\u0435\u043D\u0442\u0438\u043A\u0430\u0446\u0438\u0458\u0430:","users.setup_2fa_scan_qr_code":"\u0421\u043A\u0435\u043D\u0438\u0440\u0430\u0458\u0442\u0435 \u0433\u043E QR \u043A\u043E\u0434\u043E\u0442 \u0441\u043E \u0432\u0430\u0448\u0430\u0442\u0430 \u0430\u043F\u043B\u0438\u043A\u0430\u0446\u0438\u0458\u0430 \u0437\u0430 \u0430\u0432\u0442\u0435\u043D\u0442\u0438\u043A\u0430\u0446\u0438\u0458\u0430:","users.setup_2fa_server_time_out":"\u0412\u0430\u0448\u0438\u043E\u0442 \u0441\u0435\u0440\u0432\u0435\u0440\u0441\u043A\u0438 \u0441\u0430\u0430\u0442 \u0435 \u043F\u043E\u043C\u0435\u0441\u0442\u0435\u043D \u0437\u0430 {{ timeDiffError }} ms. \u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u043D\u0430\u0442\u0430 \u0434\u043E\u0437\u0432\u043E\u043B\u0435\u043D\u0430 \u0432\u0440\u0435\u0434\u043D\u043E\u0441\u0442 \u0435 +/-5000 ms.","users.setup_2fa_warning":"2FA \u0430\u0432\u0442\u0435\u043D\u0442\u0438\u043A\u0430\u0446\u0438\u0458\u0430\u0442\u0430 \u0431\u0430\u0440\u0430 \u0442\u043E\u0447\u043D\u043E \u0441\u0435\u0440\u0432\u0435\u0440\u0441\u043A\u043E \u0432\u0440\u0435\u043C\u0435 \u043D\u0430 \u0412\u0430\u0448\u0438\u043E\u0442 Homebridge \u0441\u0435\u0440\u0432\u0435\u0440 \u0437\u0430 \u0434\u0430 \u043C\u043E\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043D\u0430\u0458\u0430\u0432\u0438\u0442\u0435. \u0410\u043A\u043E \u0432\u0430\u0448\u0438\u043E\u0442 \u0441\u0435\u0440\u0432\u0435\u0440 \u043D\u0435 \u0435 \u0432\u043E \u043C\u043E\u0436\u043D\u043E\u0441\u0442 \u0434\u0430 \u043E\u0434\u0440\u0436\u0443\u0432\u0430 \u0442\u043E\u0447\u043D\u043E \u0432\u0440\u0435\u043C\u0435 \u043D\u0430 \u0458\u0430 \u043E\u0432\u043E\u0437\u043C\u043E\u0436\u0443\u0432\u0430\u0458\u0442\u0435 2FA \u0430\u0432\u0442\u0435\u043D\u0442\u0438\u043A\u0430\u0446\u0438\u0458\u0430\u0442\u0430.","users.title_add_user":"\u0414\u043E\u0434\u0430\u0434\u0438 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A","users.title_edit_user":"\u0418\u0437\u043C\u0435\u043D\u0438 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A","users.title_users":"\u041A\u043E\u0440\u0438\u0441\u043D\u0438\u0446\u0438","users.toast_added_new_user":"\u0414\u043E\u0434\u0430\u0434\u0435\u043D \u0435 \u043D\u043E\u0432 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A","users.toast_failed_to_add_user":"\u0413\u0440\u0435\u0448\u043A\u0430 \u043F\u0440\u0438 \u0434\u043E\u0434\u0430\u0432\u0430\u045A\u0435 \u043D\u0430 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A","users.toast_failed_to_delete_user":"\u0413\u0440\u0435\u0448\u043A\u0430 \u043F\u0440\u0438 \u043E\u0442\u0441\u0442\u0440\u0430\u043D\u0443\u0432\u0430\u045A\u0435 \u043D\u0430 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A","users.toast_updated_user":"\u0410\u0436\u0443\u0440\u0438\u0440\u0430\u0458 \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u043A","users.toast_user_deleted":"\u041A\u043E\u0440\u0438\u0441\u043D\u0438\u043A\u043E\u0442 \u0435 \u043E\u0442\u0441\u0442\u0440\u0430\u043D\u0435\u0442"}});var Es=y((Md,fa)=>{fa.exports={"accessories.button_add_room":"Kamer Toevoegen","accessories.button_hidden_hide":"Verberg Accessoire","accessories.button_hidden_show":"Toon Accessoire","accessories.control.auto":"Auto","accessories.control.away":"Weg","accessories.control.battery_charging":"Aan het opladen","accessories.control.battery_notchargeable":"Niet oplaadbaar","accessories.control.battery_notcharging":"Niet aan het opladen","accessories.control.brightness":"Helderheid","accessories.control.closed":"Gesloten","accessories.control.closing":"Aan het sluiten","accessories.control.cool":"Koelen","accessories.control.default_room":"Standaard Kamer","accessories.control.default_running_time":"Standaard stroom tijd","accessories.control.dehumidifying":"Ontvochtigen","accessories.control.detected":"Detected","accessories.control.drag_here":"Sleep hier","accessories.control.fan":"Ventilator","accessories.control.heat":"Verwarmen","accessories.control.home":"Huis","accessories.control.humidifying":"Bevochtigen","accessories.control.jammed":"Geblokkeerd","accessories.control.light":"Licht","accessories.control.locked":"Vergrendeld","accessories.control.mute":"Dempen","accessories.control.night":"Nacht","accessories.control.not_detected":"Not Detected","accessories.control.not_mute":"Niet gedempt","accessories.control.off":"Uit","accessories.control.on":"Aan","accessories.control.open":"Open","accessories.control.opening":"Aan het openen","accessories.control.rotation_speed":"Draai snelheid","accessories.control.running":"Stromend","accessories.control.speaker_volume":"Volume","accessories.control.stopped":"Gestopt","accessories.control.target":"Doel","accessories.control.target_humidity":"Doel vochtigheid","accessories.control.target_temperature":"Doel Temperatuur","accessories.control.triggered":"Geactiveerd","accessories.control.unknown":"Onbekend","accessories.control.unlocked":"Ontgrendeld","accessories.control_disabled":"Homebridge accessoirebesturing uitgeschakeld","accessories.hide_this_accessory":"Verberg dit accessoire","accessories.message_for_more_information":"voor meer informatie.","accessories.message_must_use_insecure_mode":"Om uw accessoires te bedienen, moet u Homebridge in onveilige modus gebruiken.","accessories.message_please_see":"Bekijk alsjeblieft","accessories.name":"Naam","accessories.room_name":"Kamer Naam","accessories.rooms_not_appear_in_homekit":"De kamers die hier worden aangemaakt verschijnen niet in HomeKit, ze zijn alleen voor organisatie van accessoires in the Homebridge UI.","accessories.settings_link":"Je kan altijd de Homebridge Instellingen bereiken via het hoofd menu","accessories.show_on_dashboard":"Toon in dashboard widget","accessories.title_accessories":"Accessoires","backup.backup_delete_failed":"Verwijderen backup mislukt. Zie logbestand voor details.","backup.backup_download_failed":"Backup Download Mislukt","backup.backup_exceeds_max_size":"Backup ({{ backupSize }}) is groter dan de maximum restore bestand omvang van {{ maxBackupSizeText }}","backup.backup_help_one":"Download een backup archief van de complete Homebridge omgeving. Dit maakt een backup van de complete inhoud van de Homebridge opslag folder die je later kan terugplaatsen op ieder platform geschikt voor installatie van Homebridge UI.","backup.backup_help_two":"Plugins die niet gehost worden op npm, of plugins die direct geinstalleerd zijn van GitHub worden niet opgenomen in de backup of restore.","backup.backup_restored":"Backup Archief Teruggeplaatst","backup.backup_warning":"Backup archieven bevatten gevoelige informatie en moeten niet met anderen worden gedeelt.","backup.button_restore_backup":"Backup Terugplaatsen","backup.label_choose_backup_file_to_restore":"Kies backup bestand om terug te plaatsen\u2026","backup.label_uploading":"Aan het uploaden\u2026","backup.load_error":"Laden van configuratie backup is mislukt.","backup.now":"Nu","backup.restore_failed":"Backup Terugzetten Mislukt","backup.restore_help_one":"Terugplaatsen van een backup archief dat eerder aangemaakt is met Homebridge UI. Je Homebridge config, cached accessoires, HomeKit koppelingen en Homebridge UI gebruikers accounts worden teruggeplaatst. Eventuele Homebridge plugins die eerder zijn geinstalleerd worden ook gedownload vanhet npm register.","backup.restore_help_two":"Na het terugplaatsen van de backup, moet je op Homebridge UI inloggen met de gebruikersgegegevens waarmee de backup is aangemaakt.","backup.restore_max_size":"Je kunt een backup archief terugplaatsen met een maximale omvang van {{ maxBackupSizeText }}.","backup.restore_warning":"Terugplaatsen van een backup overschrijft onomkeerbaar de huidige Homebridge configuratie.","backup.scheduled_backup_time":"Een complete backup van de Homebridge instance wordt iedere dag automatisch gemaakt om {{ backupTime }} and kept for {{ dayCount }} days.","backup.title_backup":"Backup","child_bridge.about":"Homebridge maakt het mogelijk om uw plugin platform of accessoire als ge\xEFsoleerde child bridge. Dit kan de algehele response en betrouwbaarheid van Homebridge verbeteren.","child_bridge.bridge_connect":"Maak verbinding met HomeKit","child_bridge.bridge_settings":"Bridge Instellingen","child_bridge.bridges":"HomeKit Bridges","child_bridge.bridges_paired":"Ieder child bridge platform of accessoire moet apart gepaired worden met HomeKit.","child_bridge.config.debug":"Debug Modus","child_bridge.config.description":"Deze velden zijn niet verplicht, maar kunnen gebruikt worden i.p.v. de HomeKit configuratie voor deze bridge.","child_bridge.config.firmware":"Firmware Versie","child_bridge.config.header":"Configuratie","child_bridge.config.manufacturer":"Fabrikant","child_bridge.config.model":"Model","child_bridge.config.name":"Naam","child_bridge.must_configure_plugin":"U moet deze plugin configureren voordat U de bridge instellingen kunt instellen.","child_bridge.reset_accessories":"Reset Accessoires","child_bridge.reset_accessories_list":"Kies van welke child bridges je de hieronder getoonde accessoires wilt resetten:","child_bridge.restart":"Herstart Child Bridge","child_bridge.restart_homebridge":"Herstart Homebridge om de configuratie van deze child bridge af te ronden.","child_bridge.restart_plural":"Herstart Child Bridges","child_bridge.return_to_pair":"Vervolg dit scherm nadat Homebridge opnieuw opgestart is om de pairing QR code te zien.","child_bridge.select_type":"Selecteer welke platforms of accessoires U wilt uitvoeren als een child bridge","child_bridge.setup":"Instellingen Child Bridge","child_bridge.start":"Start Child Bridge","child_bridge.start_plural":"Start Child Bridges","child_bridge.stop":"Stop Child Bridge","child_bridge.stop_plural":"Stop Child Bridges","child_bridge.wiki_link":"Meer informatie over child bridges","config.config_accessory_must_be_array":"Accessoires moeten een array [] zijn","config.config_bridge_missing":"Bridge instellingen ontbreken","config.config_invalid_json":"Config bevat ongeldige JSON","config.config_platform_must_be_array":"Platforms moeten een array [] zijn","config.config_username_error":"Bridge gebruikersnaam moet 6 paar door colon gescheiden hexadecimale tekens (A-F 0-9) zijn","config.error_blocks_objects":"Alle {{ type }} blokken moeten een object zijn.","config.error_blocks_type":"Alle {{ type }} blokken moeten een {{ type }} attribuut bevatten.","config.error_string_array":"Ieder item in de {{ key }} array moet een string zijn.","config.error_string_type":"Het {{ type }} attribuut moet een string zijn.","config.failed_to_save_config":"Kan configuratie niet opslaan","config.restore.confirm":"Klik op Opslaan om te bevestigen dat u deze backup wilt herstellen.","config.restore.copy_to_editor":"Kopi\xEBren naar Editor","config.restore.no_backups":"Geen Backups","config.restore.title_restore_homebridge_backup":"Herstel Homebridge Config Backup","config.restore.toast_backups_deleted":"Alle backups zijn verwijderd","config.title_backup_loaded":"Backup Geladen","form.button_cancel":"Annuleren","form.button_close":"Sluiten","form.button_delete":"Verwijderen","form.button_disable":"Deactiveren","form.button_download":"Download","form.button_edit":"Bewerken","form.button_enable":"Activeren","form.button_hide":"Verbergen","form.button_lock":"Vergrendelen","form.button_more_info":"Meer Info","form.button_remove":"Verwijderen","form.button_reset":"Herstellen","form.button_restore":"Terugplaatsen","form.button_save":"Opslaan","form.button_show":"Tonen","form.button_unlock":"Ontgrendelen","form.button_unpair":"Ontkoppelen","form.label_invalid":"Config validation failed - you can still save your changes.","form.label_invalid_strict":"Config validation failed - please review the form before saving.","form.label_valid":"Config validation passed.","form.select.auto":"Automatisch (Gebruik Browser Instellingen)","login.button_login":"Inloggen","login.invalid_credentials":"Ongeldige gebruikersnaam of wachtwoord.","login.label_2fa_code":"Twee Factor Authenticatie Code","login.label_password":"Wachtwoord","login.label_username":"Gebruikersnaam","login.message_invalid_2fa_code":"De ingevoerde code is ongeldig of verlopen.","logs.download.error":"Download log bestand mislukt.","logs.download_warning":"Homebridge log bestanden bevatten mogelijk persoonlijke gegevens, wachtwoorden of toegangs tokens. Bekijk de log bestanden en verwijdere gevoeglige data alvorens je dit bestand deelt met anderen.","logs.log_file_truncated":"Log bestand afgekapt.","logs.title_download_log_file":"Download Log Bestanden","logs.title_truncate_log_file":"Kap Log Bestanden Af","logs.truncate.error":"Afkappen log bestand mislukt.","logs.truncate_log_warning":"Deze actie verwijdert je Homebridge logs en is onomkeerbaar. Weet je zeker dat je door wilt gaan?","menu.config_json_editor":"JSON Config","menu.docker.restart_container":"Herstart Container","menu.docker.startup_script":"Opstart Script","menu.docker.terminal":"Terminal","menu.hbrestart.confirm_hb":"Restart Homebridge","menu.hbrestart.confirm_ui":"Restart HB Service & UI","menu.hbrestart.title":"Restart Homebridge","menu.label_accessories":"Accessoires","menu.label_plugins":"Plugins","menu.label_settings":"Instellingen","menu.label_settings_advanced":"UI Geavanceerde Instellingen","menu.label_status":"Status","menu.linux.label_logs":"Logs","menu.linux.label_restart_server":"Herstart Server","menu.linux.label_shutdown_server":"Server Stoppen","menu.linux.label_terminal":"Terminal","menu.restart.title":"Power Opties","menu.settings.title":"Instellingen","menu.tooltip_logout":"Uitloggen","menu.tooltip_restart":"Herstart","menu.tooltip_user_accounts":"Gebruikers Profielen","menu.tooltip_view_logs":"Bekijk Log bestanden","platform.docker.container_restarted":"Docker-container opnieuw gestart","platform.docker.must_use_hashbang":"Script moet gebruikmaken van de #!/bin/sh hashbang.","platform.docker.restart_required":"U moet deze Docker-container opnieuw starten om de wijzigingen door te voeren.","platform.docker.run_with_restart":"Zorg ervoor dat u de docker-container opstart met <code>--restart=always</code>","platform.docker.script_help":"Dit script wordt elke keer dat de docker-container wordt gestart uitgevoerd. U kunt dit gebruiken om eventuele extra pakketten die uw plug-ins nodig hebben te installeren, zoals ffmpeg of libpcap-dev.","platform.docker.script_saved":"Opstart Script Bewaard","platform.docker.server_long_time":"Het opnieuw opstarten van de server duurt te lang. Mogelijk moet u de Docker-container handmatig starten.","platform.docker.title_restarting":"Docker-container opnieuw starten","platform.linux.long_time":"Het opnieuw opstarten van de server duurt te lang. Mogelijk moet u de server handmatig opstarten.","platform.linux.restart":"Even geduld aub, deze pagina wordt automatisch doorgestuurd wanneer Homebridge weer online is.","platform.linux.restarting_server":"Herstarten van de server","platform.linux.server_restart_error":"Er is een fout opgetreden bij het verzenden van de opdracht Opnieuw opstarten naar de server","platform.linux.server_restarted":"Server opnieuw gestart","platform.linux.server_taking_long_time":"Het duurt te lang voordat de server weer online komt","platform.linux.server_will_power_down":"De server zal binnenkort worden uitgeschakeld.","platform.linux.shutting_down_server":"Server Afsluiten","platform.version.restart_required":"Homebridge UI v{{ uiVersion }} is ge\xEFnstalleerd, maar de server service versie is v{{ serverVersion }}.","platform.version.service_restart_required":"Herstart vereist","plugins.bridge.action_error":"{{ action }} child bridge(s) mislukt.","plugins.button_homepage":"Plugin Homepage","plugins.button_set_up":"Configureren","plugins.button_settings":"Instellingen","plugins.button_uninstall":"De-installeer","plugins.button_update":"Update","plugins.compat.are_you_sure":"Weet U zeker dat U toch wil doorgaan?","plugins.compat.hb_node_too_low":"{{ packageName }} v{{ latestVersion }} vereist Node.js v{{ minVersion }} of nieuwer. Je draait momenteel Node.js {{ installedVersion }}.","plugins.compat.hb_too_low":"De {{ pluginName }} plugin adviseert het gebruik van Homebridge v{{ minVersion }} of nieuwer. Je draait momenteel Homebridge v{{ installedVersion }}.","plugins.compat.node_first":"Update Node.js voordat je {{ packageName }} update.","plugins.compat.node_link":"Hoe werk je Node.js bij","plugins.compat.node_too_low":"De {{ pluginName }} plugin adviseert het gebruik van Node.js v{{ minVersion }} of nieuwer. Je draait momenteel Node.js {{ installedVersion }}.","plugins.compat.title":"Compatibiliteit Controle","plugins.config.load_error":"Laden plugin config miskukt.","plugins.config.must_be_array":"Plugin config moet een array zijn.","plugins.config.must_be_array_objects":"Plugin config moet een array van objecten zijn.","plugins.config.must_be_object":"Config blok moet een object zijn.","plugins.config.name_property":'Accessoire moet een geldig "name" attribuut hebben',"plugins.config.please_fix":"S.v.p. validatie fouten corrigeren voordat U een nieuw blok toevoegt.","plugins.config.remove_error":"Verwijderen van plugin config mislukt.","plugins.disable.error":"Deactiveren plugin mislukt.","plugins.donate.button_not_verified":"Niet Geverifieerd","plugins.donate.button_verified":"Geverifieerd","plugins.donate.message_1":"Omdat steeds meer gebruikers hun plugins installeren via de Homebridge UI, is het minder waarschijnlijk dat zij de GitHub pagina van de plugin bezoeken waar de manieren waarop een ontwikkelaar gesteund kan worden normaal worden getoond.","plugins.donate.message_2":"Donatie links direct in de Homebridge UI zorgt ervoor dat gebruikers weten hoe zij Homebridge ontwikkelaars kunnen ondersteunen als zij dat willen.","plugins.donate.tile_donate_to":"Doneer aan {{ author }}","plugins.enable.error":"Activeren plugin mislukt.","plugins.manage.all_versions":"Alle versies","plugins.manage.child_bridge_restart":"Child bridge successvol herstart.","plugins.manage.child_bridge_restart_failed":"Herstart plugin mislukt, s.v.p. Homebridge handmatig herstarten.","plugins.manage.confirm_disable":"Weet U zeker dat U {{ pluginName }} wilt deactiveren?","plugins.manage.confirm_disable_accessory_1":"Alle accessoires die getoond worden door deze plugin zullen verwijderd worden van het Homebridge UI accessoire scherm en uit HomeKit.","plugins.manage.confirm_disable_accessory_2":"Als U de plugin reactiveert, zullen de accessoires opnieuw verschijnen in de Homebridge UI en HomeKit. De accessoires zullen hun HomeKit data verliezen (zoals gerelateerde scenes en automations).","plugins.manage.confirm_disable_platform_1":"Alle accessoires die getoond worden door deze plugin zullen verwijderd worden uit het Homebridge UI accessoire scherm, maar blijven in HomeKit met een 'No Response' label.","plugins.manage.confirm_disable_platform_2":"Als U de plugin reactiveer, zullen de accessoires opnieuw verschijnen reappear in de Homebridge UI en worden opnieuw bestuurbaar in HomeKit. De accessoires verliezen niet hun HomeKit data (zoals gerelateerde scenes en automations).","plugins.manage.confirm_enable":"Weet u zeker dat u {{ pluginName }} wilt activeren?","plugins.manage.disable":"Deactiveren","plugins.manage.enable":"Activeren","plugins.manage.information":"Plugin Information","plugins.manage.install":"Installeer","plugins.manage.installed":"Ge\xEFnstalleerd","plugins.manage.json_config":"JSON Config","plugins.manage.manage_version":"Installeer Vorige Versie","plugins.manage.manual_update_command":"Om een package bij te werken open een Node.js command prompt als Administrator voer de volgende commando's:","plugins.manage.manual_update_required":"Handmatige Update Vereist","plugins.manage.online_updates":"Online updates worden niet ondersteund door Windows. Handmatige upgrade van Homebridge UI vereist na het stoppen van de Homebridge service.","plugins.manage.plugin_logs":"Plugin Logs","plugins.manage.release_notes":"Release Notes","plugins.manage.scoped.error":"An error occurred. You can download the logs below.","plugins.manage.scoped.info":"For more information about scoped plugins and why to switch, see the wiki page {{ link }}.","plugins.manage.scoped.process":"This process will not affect your Homebridge/HomeKit accessories. You will not be able to cancel the process once it has started. It will:","plugins.manage.scoped.switch":"Switch To Scoped Plugin","plugins.manage.scoped.windows":"Online updates are not supported on Windows. You will need to install the new plugin and uninstall the old plugin manually.","plugins.manage.scoped.windows_service":'You should <span class="font-weight-bold">not</span> restart Homebridge until both steps are complete.',"plugins.manage.select_version":"Selecteer de versie om te installeren","plugins.manage.thanks_for_updating":"Bedankt voor het installeren van de nieuwste versie van {{ pluginName }}.","plugins.manage.uninstall":"Gede\xEFnstalleerd","plugins.manage.uninstalled":"Verwijderd","plugins.manage.unverified_message":"Als een Homebridge plugin niet geverifieerd is, betekent dit dat deze niet reviewed is door het Homebridge project team. Niet geverifeerd betekent niet dat de plugin niet voldoet of dat er een veiligheidsrisico. Auteurs kunnen er om diverse redenen voor gekozen hebben om het verificatie traject niet in te gaan.","plugins.manage.unverified_subtitle":"{{ pluginName }} is not verified","plugins.manage.unverified_title":"Ongeverifieerde Plugins","plugins.manage.update":"Update","plugins.manage.updated":"Bijgewerkt","plugins.manage.verified_message":"Homebridge plugins that are marked as verified have been reviewed by the Homebridge project team to ensure they meet various requirements that encourage best practices and a trouble-free user experience.","plugins.manage.verified_subtitle":"{{ pluginName }} is verified","plugins.manage.verified_title":"Geverifieerde Plugins","plugins.node_update.continue":"Doorgaan","plugins.placeholder_search_first":"Gebruik de zoekbalk hierboven om je eerste plugin te zoeken.","plugins.placeholder_search_plugin":"Zoeken naar plug-ins om te installeren\u2026","plugins.settings.custom.homebridge-gsh.label_account_linked":"Account Gekoppeld","plugins.settings.custom.homebridge-gsh.label_link_account":"Koppel Account","plugins.settings.custom.homebridge-gsh.label_unlink_account":"Verwijder account koppeling","plugins.settings.custom.homebridge-gsh.message_about":"De Homebridge Google Smart Home plugin maakt het mogelijk om je Homebridge accessoires te besturen met een Google Home geschikte smart speaker of de Google Home mobile app.","plugins.settings.custom.homebridge-gsh.message_account_link_required":"Om deze functionaliteit te activeren moet je inloggen met je Google of GitHub account; zorg er voor dat je hetzelfde account gebruikt als je de Homebridge actie toevoegt in de Google Home mobiele app.","plugins.settings.custom.homebridge-gsh.message_homebridge_restart_required":"Homebridge vereist een herstart om de wijzigingen te activeren.","plugins.settings.custom.homebridge-gsh.message_invalid_token":"Ongeldig account koppel token in config.json","plugins.settings.deconz.dump_no_exist":"Homebridge deCONZ dump bestand bestaat nog niet.","plugins.settings.hue.dump_no_exist":"Homebridge Hue dump bestand bestaat nog niet.","plugins.settings.label_open_config_editor":"Open Config Editor","plugins.settings.message_consult_documentation":"Raadpleeg a.u.b. de plugin documentatie voor instructies hoe deze plugin correct te configureren.","plugins.settings.message_manual_config_required":"Deze plugin moet handmatig geconigureerd worden met de Homebridge UI Config Editor.","plugins.settings.plugin_config_saved":"Plugin Config Bewaard","plugins.settings.restart_required":"Start Homebridge opnieuw om de wijzigingen toe te passen.","plugins.settings.title_settings":"Instellingen","plugins.status_disabled":"Gedeactiveerd","plugins.status_installed":"Ge\xEFnstalleerd","plugins.toast_failed_to_load_plugin_schema":"Laden plugin config schema mislukt.","plugins.toast_failed_to_load_plugins":"Laden van plug-ins mislukt","plugins.uninstall_bridge_error":"Verwijderen child bridge mislukt.","plugins.uninstall_remove_config_required":"Indien je deze plugin permanent wilt verwijderen dien je alle configuratie voor de plugin te verwijderen uit config.json voordat je Homebridge herstart.","plugins.uninstall_remove_confirmation":"Weet je zeker dat je {{ pluginName }} wilt verwijderen?","plugins.uninstall_remove_plugin_config":"Verwijder plugin config?","plugins.uninstall_unpair_child_bridge":"Ontkoppel plugin van child bridge?","plugins.uninstall_unpair_child_bridges":"Ontkoppelen {{ count }} plugin child bridges?","reset.accessory_reset":"Homebridge Accessoire Reset","reset.action_is_irreversible":"Deze actie is onomkeerbaar. Lees dit aandachtig voordat u doorgaat.","reset.bridges.desc":"Als U problemen hebt met koppelen van Homebridge, een extern accessoire of een child bridge met HomeKit, dan moet U wellicht de accessoire ontkoppelen van HomeKit om het opnieuw te proberen.","reset.bridges.empty":"U hebt geen bridges om te ontkoppelen van HomeKit.","reset.bridges.title":"Bridges","reset.bridges_all.desc":"Ontkoppel alle bridges from HomeKit. Dit betreft de hoofd Homebridge bridge, child bridges en bridges voor externe accessoires.","reset.bridges_all.list_1":"Dit ontkoppelt de Homebridge bridge, alle child bridges en bridges voor externe accessoires van HomeKit.","reset.bridges_all.list_2":"Wees U er van bewust dat Uw accessoires getoond blijven worden in HomeKit als no response, totdat de bridges handmatig verwijderd zijn uit HomeKit. U kunt dit in de Home app doen, middels Home Settings \u2192 Home Hubs & Bridges \u2192 {Bridge} \u2192 Remove Bridge from Home.","reset.bridges_all.list_3":"Al Uw Homebridge accessoires gekoppeld aan HomeKit, scenes en automations moeten opnieuw geconfigureerd na het ontkoppelen.","reset.bridges_all.list_4":"De pin voor het koppelen van de Homebridge bridge aan HomeKit wordt gewijzigd. U kunt de nieuwe waarde zien in Uw Homebridge config na ontkoppeling.","reset.bridges_all.title":"Ontkoppel alle Bridges","reset.bridges_single.desc":"Ontkoppel een enkele bridge van HomeKit. Dit kan een child bridge zijn of een bridge voor een externe accessoire zoals een camera of TV.","reset.bridges_single.list_1":"Door het ontkoppelen van een bridge, worden alle accessoires op deze bridge verwijderd uit de Homebridge cache.","reset.bridges_single.list_2":"De accessoires worden stale in HomeKit (tonen no response). Om ze te verwijderen, moet U deze handmatig verwijderen uit de bridge from HomeKit. U kunt dat doen in de Home app via Home Settings sectie.","reset.bridges_single.list_3":"U kunt, indien nodig, proberen de bridge opnieuw te koppelen.","reset.bridges_single.title":"Ontkoppel Single Bridge","reset.cached_accessory_removed":"Cached accessoire verwijderd.","reset.clear_cache_all.desc":"Verwijder alle accessoires uit de cache.","reset.clear_cache_all.list_1":"Als U klikt op de verwijder knop, dan zal Homebridge opnieuw opstarten en alle aanwezige accessoires zullen verwijderd worden uit Homebridge en HomeKit.","reset.clear_cache_all.list_2":"Alle gerelateerde HomeKit data zal ook verwijderd worden, did is inclusief kamer associaties, scenes en automations die gebruikt worden door dit accessoire.","reset.clear_cache_all.list_3":"Nadat Homebridge herstart, worden de plugins opnieuw toegevoegd aan een accessoire alsof de plugin voor de aller eerste keer wordt ge\xEFnstalleerd.","reset.clear_cache_all.title":"Verwijder Alle Accessoires","reset.clear_cache_bridge.desc":"Verwijder alle accessoires gepubliceerd door een bridge uit de cache.","reset.clear_cache_bridge.empty":"U hebt geen bridges waarvan accessoires verwijderd kunnen worden.","reset.clear_cache_bridge.list_1":"Deze functie kan gebruikt worden om de bestaande accessoires van een plugin in HomeKit te resetten. Zij worden verwijderd uit Homebridge/HomeKit en dan opnieuw toegevoegd door de plugin als nieuw accessoire.","reset.clear_cache_bridge.list_2":"De koppel and status van de child bridge blijven het zelfde.","reset.clear_cache_bridge.title":"Verwijder Bridge Accessoires","reset.clear_cache_single.desc":"Verwijder een enkel accessoire uit de cache.","reset.clear_cache_single.list_1":"Sommmige plugins verwijderen zichzelf niet volledig! Als een accessoire dat niet langer aanwezig is in Homebridge nog steeds getoond wordt in HomeKit, kunt U het verwijderen uit de cache.","reset.clear_cache_single.list_2":"Deze functie kan gebruikt worden om een bestaand accessoire in Homekit te resetten. Het zal dan verwijderd worden uit Homebridge/HomeKit en dan opnieuw toegevoegd worden door de plugin als een nieuw accessoire.","reset.clear_cache_single.list_3":"Tijdens het verwijderen van een accessoire uit de cache, zal alle gerelateerde data uit HomeKit verwijderd worden. Dit is inclusief alle gerelateerde scenes en automations die deze accessoires gebruiken.","reset.clear_cache_single.list_4":"Accessoires kunnen alleen uit verwijderd worden als Homebridge niet actief is. Homebridge zal automatisch herstarten na klikken op een van de verwijder knoppen hieronder. Als u meerder accessoires wilt verwijderen, s.v.p. dan geduldig afwachten totdat Homebridge opnieuw opstart na iedere verwijdering.","reset.clear_cache_single.title":"Verwijderen van een enkel Accessoire","reset.delete_failed":"Kon accessoires niet verwijderen.","reset.delete_success":"Herstarten Homebridge en legen accessoire cache.","reset.error_message":"Accessoire cache kon niet geladen worden. Mogelijk bevat de cache geen cached accessoires.","reset.failed_to_reset":"Kon Homebridge niet resetten. Zie Logs.","reset.force_restart_hb_help_text":"Gebruik deze actie om te forceren dat de hb-service opnieuw wordt gestart.","reset.remove_cached_accessories_single_empty":"U heeft geen accesoires in de cache die verwijderd kunnen worden.","reset.removing_cached_accessory_please_wait":"Accessoire van cache aan het verwijderen, even geduld\u2026","restart.child_bridge_list":"S.v.p. deze child bridges herstarten om de wijzigingen door te voeren:","restart.child_bridges":"A.u.b. de plugin's child bridges herstarten om de wijzigingen door te voeren.","restart.homebridge":"A.u.b. Homebridge herstarten om de wijzigingen door te voeren.","restart.label_restart_command_executed":"Herstart Commando Uitgevoerd","restart.please_wait_while_server_restarts":"Even geduld a.u.b., deze pagina zal automatisch doorverwijzen wanneer de server weer online is.","restart.server_is_taking_long_time_to_restart":"Het opnieuw opstarten van de server duurt te lang. Mogelijk moet u de Homebridge-service handmatig starten.","restart.service_ready":"Homebridge Server Beschikbaar","restart.title_restart":"Homebridge Herstarten","restart.toast_server_restart_error":"Er is een fout opgetreden bij het verzenden van de opdracht Opnieuw opstarten van de server","restart.toast_server_restart_timeout":"Het duurt te lang voordat de server weer online komt","restart.toast_server_restarted":"Server Opnieuw gestart","restart.ui_online":"Homebridge UI Online","rpi.throttled.currently_message":"Deze Raspberry Pi rapporteert een te laag voltage; controleer of verbonden is met een geschikte power supply. Een te laag voltage kan in systeem instabilitei of SD card corruptie veroorzaken.","rpi.throttled.previously_message":"Deze Raspberry Pi rapporteert een te laag voltage event vanaf de laatste reboot; controleer of verbonden is met een geschikte power supply.","rpi.throttled.undervoltage_title":"Under Voltage","settings.cache.desc":"Homebridge bewaart accessoires in cache zodat zij niet verwijderd worden en opnieuw toegevoegd aan HomeKit iedere keer dat Homebridge herstart. Soms kan deze cache out of sync raken met de daadwerkelijke accessoires in Homebridge.","settings.cache.title":"Accessoires","settings.changes.saved":"Uw wijzigingen zijn opgeslagen en vereisen een herstart om actief te worden.","settings.datetime.incorrect":"De datum en tijd van de Homebridge server lijkt incorrect. Dit kan onverwachte problemen veroorzaken. Klik hier voor meer informatie.","settings.display.blue":"Blauw","settings.display.bluegrey":"Blauw Grijs","settings.display.brown":"Bruin","settings.display.cyan":"Cyaan","settings.display.dark":"Donker","settings.display.deep_purple":"Donker Paars","settings.display.green":"Groen","settings.display.grey":"Grijs","settings.display.indigo":"Indigo","settings.display.lang":"Taal","settings.display.light":"Lich","settings.display.lighting_mode":"Verlichting Modus","settings.display.login_wallpaper":"Login Achtergrond","settings.display.login_wallpaper_desc":"Een maatwerk login achtergrond kan ingesteld worden door het toevoegen van <code>ui-wallpaper.jpg</code> bestand aan de Homebridge opslag folder, of door het hier vermelden van een volledig pad naar een lokaal afbeelding bestand.","settings.display.orange":"Oranje","settings.display.pink":"Roze","settings.display.purple":"Paars","settings.display.red":"Rood","settings.display.teal":"Teal","settings.display.temp_units":"Temperatuur Eenheden","settings.display.temp_units.c":"Celsius (\xB0C)","settings.display.temp_units.f":"Fahrenheit (\xB0F)","settings.display.theme":"Thema","settings.general.title_display":"Scherm","settings.general.title_general":"Algemeen","settings.mdns_advertiser":"mDNS Advertiser","settings.mdns_advertiser_exp":"experimenteel","settings.mdns_advertiser_help":"Als U problemen ervaart bij het koppelen met Homebridge, probeer dan een van de alternatieve mDNS advertisers.","settings.mdns_advertiser_not_connected":"Niet Verbonden","settings.mdns_advertiser_rec":"aanbevolen","settings.network.label_interface_name":"Interface Naam","settings.network.label_ip_address":"IP Adres","settings.network.message_network_interface":"Als geen netwerk interfaces geselecteerd zijn, dan zal Homebridge automatisch proberen vast te stellen welke interfaces advertised moeten worden.","settings.network.port_hb":"Homebridge Port","settings.network.port_hb_desc":"Het port nummmer waarop Homebridge bridge moet draaien. Dit moet liggen tussen 1025 en 65533, en mag niet hetzelfde zijn als de Homebridge UI port.","settings.network.port_ui":"UI Port","settings.network.port_ui_desc":"Het port number waarop de Homebridge UI moet draaien.","settings.network.title_network":"Netwerk","settings.network.title_network_interfaces":"Netwerk Interfaces","settings.service.debug_tooltip":"Sommige plugins vereisen om de DEBUG environment variabele te configureren om debug level logging te activeren.","settings.service.node_tooltip":"Node.js runtime opties voor dit proces. Dit moet leeg blijven tenzij je weet wat je doet.","settings.startup.debug":"Homebridge Debug Modus","settings.startup.debug_desc_v1":"Activeer dit als Homebridge meer gedetailleerde logs moet aanmaken. Deze instelling heeft zowel betrekking op de hoofd Homebridge bridge als op alle child bridges. Sommige plugins kunnen ook rekening houden met deze instelling and meer gedetailleerde logs aanmaken.","settings.startup.debug_desc_v2":"Activeer dit als Homebridge meer gedetailleerde logs moet aanmaken. Deze instelling heeft betrekking op de main Homebridge bridge. De instelling voor de child bridges bevindt zich in de child bridge configuratie in de plugins page. Sommige plugins kunnen ook rekening houden met deze instelling en meer gedetailleerde logs aanmaken.","settings.startup.insecure":"Homebridge 'Insecure' modus","settings.startup.insecure_desc":"Om accessories via de Homebridge UI te bedienen moet Homebridge in insecure modus opereren.","settings.startup.keep_accessories":"Bewaar Accessoires Van gede\xEFnstalleerde Plugins","settings.startup.keep_accessories_desc":"Indine geactiveerd, zullen accessoires van platform plugins in cache bewaard blijven ook als de plugin is gede\xEFnstalleerd. Dit kan handig zijn als U van plan bent de plugin later opnieuw te installeren.","settings.title_startup_options":"Startup Opties","settings.unpair_bridge.load_error":"Gekoppelde bridges konden niet geladen worden.","settings.unpair_bridge.unpair_error":"Ontkoppeling bridge mislukt.","setup.button_get_started":"Beginnen","setup.create_account":"Account aanmaken","setup.create_account_reason":"Wachtwood authenticatie voor de Homebridge admin web interface moet geconfigureerd worden. Ook als Homebridge alleen toegankelijk is in Uw lokale netwerk, is het nog steeds belangrijk om te beveiligen tegen onbeperkte toegang.","setup.open_dashboard":"Open Dashboard","setup.welcome_to_homebridge":"Welkom bij Homebridge",setup_wizard_message_complete_message:"De setup procedure is compleet and U bent nu klaar om gebruik te maken van Homebridge.",setup_wizard_message_complete_title:"Felicitaties!",setup_wizard_message_restore:"Herstel vanuit Backup","status.code_scan":"Scannen om toe te voegen aan HomeKit.","status.cpu.load":"Belasting","status.cpu.temp":"Temp","status.cpu.title_cpu":"CPU","status.credits.title":"Credits","status.homebridge.checking":"Controleren op updates\u2026","status.homebridge.up_to_date":"Up To Date","status.memory.label_available":"Vrij","status.memory.label_total":"Totaal","status.memory.title_memory":"Geheugen","status.network.received_per_second":"Ontvangen","status.network.sent_per_second":"Verzonden","status.network.title_network":"Netwerk Activiteit","status.plugin_out_of_date":"Plug-in verouderd","status.plugins_out_of_date":"Plug-ins verouderd","status.services.label_not_running":"Draait Niet","status.services.label_running":"Draait","status.services.updates":"Update Centre","status.uptime.title_uptime":"Uptime","status.widget.accessories.choose_accessories":"Selecteer de Accessoires om te tonen in deze widget in de Accessoire tab.","status.widget.add.label_pairing_code":"Koppel Code","status.widget.bridge.restart_error":"Herstart child bridge mislukt.","status.widget.clock":"Klok","status.widget.clock_dateformat":"Datum Formaat","status.widget.clock_timeformat":"Tijd Formaat","status.widget.font_size":"Font Grootte","status.widget.font_weight":"Font Gewicht","status.widget.hide_on_mobile":"Verberg in compact view (mobile displays)","status.widget.homebridge_logs":"Homebridge Logs","status.widget.info":"Systeem Informatie","status.widget.info.config_path":"Config Pad","status.widget.info.disabled":"Inactief","status.widget.info.docker":"Docker","status.widget.info.glibc_message":"Deze melding geeft aan dat Uw operating systeem nieuwere versies van Node.js ondersteunt. Om dit op te lossen en om nieuwere versies van Node.js in de toekomst te kunnen installeren, moet U het operating systeem bijwerken met een recentere versie.","status.widget.info.glibc_title":"OS Update","status.widget.info.hostname":"Hostnaam","status.widget.info.ipv4":"IPv4","status.widget.info.ipv6":"IPv6","status.widget.info.no":"Nee","status.widget.info.node_unsupp":"Unsupported","status.widget.info.node_unsupp_message":"U gebruikt een versie van Node.js die niet officieel ondersteund wordt door Homebridge. Installatie van een ondersteunde versie wordt geadviseerd.","status.widget.info.node_unsupp_title":"Niet ondersteunde Node Versie","status.widget.info.node_update_message":"Homebridge vereist Node.js ge\xEFnstalleerd op Uw syteem. Met enige regelmaat moet u de Node.js runtime bijwerken om nieuwe functionaliteit te ondersteuen. Homebridge (en verified plugins) ondersteunen alle huidige Active en Maintenance LTS releases van Node.js.","status.widget.info.node_update_title":"Node Update","status.widget.info.nodejs_path":"Node.js Pad","status.widget.info.nodejs_version":"Node.js Versie","status.widget.info.os":"OS","status.widget.info.plugin_path":"Plugin Pad","status.widget.info.service_mode":"Service Modus","status.widget.info.service_user":"Gebruiker","status.widget.info.servicemode_message":"Standalone modus wordt niet langer aanbevolen. Installatie van Homebridge en Homebridge UI met hb-service heeft dezelfde voordelen als standalone modus maar is veel eenvoudiger in te stellen en te onderhouden.","status.widget.info.servicemode_title":"Service Mode","status.widget.info.storage_path":"Opslag Pad","status.widget.info.synology_package":"Synology Package","status.widget.info.timezone":"Tijdzone","status.widget.info.yes":"Yes","status.widget.network.history_items":"Historische Items","status.widget.network.items":"items","status.widget.network.network_interface":"Network Interface","status.widget.network.none_selected":"Geen geselecteerd in instellingen - gebruik default.","status.widget.network.refresh_interval":"Ververs Interval","status.widget.network.refresh_note":"Ververs de pagina na opslaan van de wijzigingen om wijzigingen te activeren.","status.widget.network.seconds":"seconden","status.widget.qr_paired":"Gekoppeld","status.widget.qr_unpaired":"Niet Gekoppeld","status.widget.show_hide":"Toon/Verberg Widgets","status.widget.title_manage_widget":"Beheer Widget","status.widget.uptime.label_process":"Proces","status.widget.uptime.label_server":"Server","status.widget.weather.label_config_required_help":"Selecteer je plaatsnaam in de widget instellingen.","status.widget.weather.label_search_for_your_city":"Zoek naar je plaatsnaam:","status.widget.weather.title_weather":"Weer","support.dev.api":"Homebridge API","support.dev.api_hap":"HAP-NodeJS API","support.dev.api_hap_sub":"HAP-NodeJS is een implementatie van de HomeKit Accessory Server zoals gespecificeerd in het HomeKit Accessory Protocol (HAP), zoals gedefinieerd door Apple als onderdeel van het HomeKit Framework.","support.dev.api_sub":"Homebridge is a lichtgewicht Node.js server die kan draaien op Uw home netwerk om het HomeKit Accessory Protocol (HAP) te emuleren.","support.dev.item_swagger":"Swagger Docs","support.dev.item_swagger_sub":"De Homebridge REST API maakt het mogelijk om te communiceren met Uw Homebridge server middels HTTP requests.","support.dev.template":"Plugin Sjabloon Repo","support.dev.template_sub":"Een sjabloon Homebridge plugin kan gebruikt worden als een basis om U op weg te helpen bij het ontwikkelen van Uw eigen plugin.","support.dev.title":"Developers","support.dev.verified":"Verified By Homebridge","support.dev.verified_sub":"Het Verified By Homebridge programma biedt plugin ontwikkelaars de mogelijkheid om hun plugins te laten reviewen en certificeren door het Homebridge project team.","support.links.discord":"Discord Server","support.links.discord_sub":"Join the Homebridge Discord chat server to chat with other users and developers.","support.links.documentation":"Documentatie","support.links.documentation_sub":"De Homebridge documentatie biedt veel informatie over hoe je kunt beginnen met Homebridge en oplossingen voor veel voorkomende problemen.","support.links.issue":"Rapporteer een Issue","support.links.issue_sub":"Als U een probleem ervaart bij het gebruik van Homebridge, open dan een nieuw issue op GitHub. Dit is niet bedoeld voor issues met specifieke plugins.","support.links.reddit":"Reddit Community","support.links.reddit_sub":"De Homebridge subreddit is een goede plek om je Homebridge setup te delen en om hulp te vragen.","support.links.title":"Nuttige Links","support.title":"Ondersteuning","toast.no_auth":"Alleen administrators hebben toegang tot de opgevraagde pagina.","toast.title_error":"Fout","toast.title_success":"Succes","toast.title_warning":"Waarschuwing","users.button_add_new_user":"Nieuwe Gebruiker toevoegen","users.button_add_user":"Gebruiker toevoegen","users.label_admin_user":"Admin Gebruiker","users.label_confirm_password":"Bevestig Wachtwoord","users.label_full_name":"Volledige Naam","users.label_new_password":"Nieuw Wachtwoord","users.label_password":"Wachtwoord","users.label_username":"Gebruikersnaam","users.setup_2fa":"Stel 2FA in","users.setup_2fa_activate_error":"Er is een fout opgetreden bij het activeren van 2FA","users.setup_2fa_cannot_setup_2fa":"Kan 2FA niet instellen","users.setup_2fa_disable":"2FA uitschakelen","users.setup_2fa_disable_current_password":"Voer je huidige wachtwoord in om twee factor authenticatie uit te schakelen.","users.setup_2fa_disable_success":"Twee factor authenticatie is uitgeschakeld.","users.setup_2fa_enable":"Schakel 2FA in","users.setup_2fa_enable_error":"Er is een fout opgetreden bij het instellen van 2FA","users.setup_2fa_enabled_success":"Twee factor authenticatie is ingeschakeld.","users.setup_2fa_enter_code":"Voer de code in van je authenticator app:","users.setup_2fa_scan_qr_code":"Scan de QR code hieronder met je authenticator app:","users.setup_2fa_server_time_out":"De server klok heeft een afwijking van {{ timeDiffError }} ms. De maximale getolereerde afwijking +/-5000 ms.","users.setup_2fa_warning":"Twee factor authenticate vereist een zeer preciese datum en tijd om in te loggen. Als je server niet over de mogelijkheid beschikt om accuraat tijd bij te houden, moet je 2FA niet inschakelen. Als je alsnog 2FA inschakelt loop je het risico niet in te kunnen loggen in Homebridge UI.","users.title_add_user":"Gebruiker toevoegen","users.title_edit_user":"Gebruiker wijzigen","users.title_users":"Gebruikers","users.toast_added_new_user":"Nieuwe gebruiker toegevoegd","users.toast_failed_to_add_user":"Kon gebruiker niet toevoegen","users.toast_failed_to_delete_user":"Kon gebruiker niet verwijderen","users.toast_updated_user":"Gebruiker Bijgewerkt","users.toast_user_deleted":"Gebruiker Verwijderd"}});var Rs=y((Fd,va)=>{va.exports={"accessories.button_add_room":"Legg til rom","accessories.button_hidden_hide":"Hide Hidden","accessories.button_hidden_show":"Show Hidden","accessories.control.auto":"Automatisk","accessories.control.away":"Away","accessories.control.battery_charging":"lading","accessories.control.battery_notchargeable":"Ikke belastbar","accessories.control.battery_notcharging":"Lader ikke","accessories.control.brightness":"lysstyrke","accessories.control.closed":"Stengt","accessories.control.closing":"Stenger","accessories.control.cool":"Kj\xF8ling","accessories.control.default_room":"Standardrom","accessories.control.default_running_time":"Default Running Time","accessories.control.dehumidifying":"Dehumidifying","accessories.control.detected":"Detected","accessories.control.drag_here":"Drag Here","accessories.control.fan":"Vifte","accessories.control.heat":"Varme","accessories.control.home":"Home","accessories.control.humidifying":"Humidifying","accessories.control.jammed":"fastl\xE5st","accessories.control.light":"Lys","accessories.control.locked":"l\xE5st","accessories.control.mute":"Mute","accessories.control.night":"Night","accessories.control.not_detected":"Not Detected","accessories.control.not_mute":"On","accessories.control.off":"Av","accessories.control.on":"P\xE5","accessories.control.open":"\xC5pen","accessories.control.opening":"\xC5pner","accessories.control.rotation_speed":"Rotasjonshastighet","accessories.control.running":"Running","accessories.control.speaker_volume":"Volum","accessories.control.stopped":"stoppet","accessories.control.target":"M\xE5l","accessories.control.target_humidity":"Target Humidity","accessories.control.target_temperature":"M\xE5ltemperatur","accessories.control.triggered":"utl\xF8st","accessories.control.unknown":"Ukjent","accessories.control.unlocked":"Ul\xE5st","accessories.control_disabled":"Homebridge Accessory Control deaktivert","accessories.hide_this_accessory":"Skjul dette tilbeh\xF8ret","accessories.message_for_more_information":"for mer informasjon.","accessories.message_must_use_insecure_mode":"For \xE5 kontrollere dine tilbeh\xF8r m\xE5 du kj\xF8re Homebridge i usikker modus.","accessories.message_please_see":"Vennligst se","accessories.name":"navn","accessories.room_name":"Romnavn","accessories.rooms_not_appear_in_homekit":"The rooms you create here will not appear in HomeKit, they are only for the organisation of accessories in the Homebridge UI.","accessories.settings_link":"You can access the Homebridge Settings at any time from the cog icon in the side menu.","accessories.show_on_dashboard":"Show in dashboard widget","accessories.title_accessories":"Tilbeh\xF8r","backup.backup_delete_failed":"Backup deletion failed. See logs for details.","backup.backup_download_failed":"Backup download failed.","backup.backup_exceeds_max_size":"Backup ({{ backupSize }}) exceeds maximum restore file size of {{ maxBackupSizeText }}","backup.backup_help_one":"Download a backup archive of your entire Homebridge environment. This will backup the entire contents of your Homebridge storage directory which you can later restore on any platform capable of running Homebridge UI.","backup.backup_help_two":"Plugins not hosted on npm, or plugins installed directly from GitHub will not be backed up or restored.","backup.backup_restored":"Backup Archive Restored","backup.backup_warning":"Backup archives contain sensitive information and should not be shared with others.","backup.button_restore_backup":"Restore Backup","backup.label_choose_backup_file_to_restore":"Choose backup file to restore\u2026","backup.label_uploading":"Uploading\u2026","backup.load_error":"Failed to load config backup.","backup.now":"Now","backup.restore_failed":"Restore Failed","backup.restore_help_one":"Restore a backup archive you previously made using the Homebridge UI. Your Homebridge config, cached accessories, HomeKit pairings and Homebridge UI user accounts will be restored. Any Homebridge plugins you had installed will also be downloaded from the npm registry.","backup.restore_help_two":"You will need to login to the Homebridge UI after doing a restore using the credentials from the restored instance.","backup.restore_max_size":"You can restore a backup archive up to {{ maxBackupSizeText }} in size.","backup.restore_warning":"Restoring from a backup will irreversibly overwrite the current Homebridge configuration.","backup.scheduled_backup_time":"A full backup of the Homebridge instance is automatically created every day at {{ backupTime }} and kept for {{ dayCount }} days.","backup.title_backup":"Backup","child_bridge.about":"Homebridge allows you to run your plugin's platform or accessory as an isolated child bridge. This can improve the general responsiveness and reliability of Homebridge.","child_bridge.bridge_connect":"Connect to HomeKit","child_bridge.bridge_settings":"Child Bridge Config","child_bridge.bridges":"HomeKit Bridges","child_bridge.bridges_paired":"Each child bridge platform or accessory will need to be paired with HomeKit separately.","child_bridge.config.debug":"Debug Mode","child_bridge.config.description":"These fields are not required, but can be used to override the HomeKit configuration for this bridge.","child_bridge.config.firmware":"Firmware Version","child_bridge.config.header":"Configuration","child_bridge.config.manufacturer":"Manufacturer","child_bridge.config.model":"Model","child_bridge.config.name":"Name","child_bridge.must_configure_plugin":"You need to configure this plugin before you can manage its bridge settings.","child_bridge.reset_accessories":"Reset Accessories","child_bridge.reset_accessories_list":"Choose from which child bridges you want to reset the accessories below:","child_bridge.restart":"Restart Child Bridges","child_bridge.restart_homebridge":"Restart Homebridge to finish setting up this child bridge.","child_bridge.restart_plural":"Restart Child Bridges","child_bridge.return_to_pair":"Return to this screen after Homebridge has restarted to view the pairing QR code.","child_bridge.select_type":"Select which platforms or accessories you want to run as a child bridge","child_bridge.setup":"Set Up Child Bridge","child_bridge.start":"Start Child Bridge","child_bridge.start_plural":"Start Child Bridges","child_bridge.stop":"Stop Child Bridge","child_bridge.stop_plural":"Stop Child Bridges","child_bridge.wiki_link":"Learn more about child bridges","config.config_accessory_must_be_array":"Tilbeh\xF8r m\xE5 v\xE6re en matrise []","config.config_bridge_missing":"Bridge-innstillinger savnes","config.config_invalid_json":"Config inneholder ugyldig JSON","config.config_platform_must_be_array":"plattformer m\xE5 v\xE6re en matrise []","config.config_username_error":"Bridge-brukernavn m\xE5 v\xE6re 6 par kolonseparerte hexadesimal-tegn (A-F 0-9)","config.error_blocks_objects":"All {{ type }} blocks must be objects.","config.error_blocks_type":"All {{ type }} blocks must contain the {{ type }} attribute.","config.error_string_array":"Each item in the {{ key }} array must be a string.","config.error_string_type":"The {{ type }} attribute must be a string.","config.failed_to_save_config":"Kunne ikke lagre config","config.restore.confirm":"Trykk p\xE5 Lagre for \xE5 bekrefte at du vil tilbakestille denne sikkerhetskopien.","config.restore.copy_to_editor":"Kopier til redigerer","config.restore.no_backups":"Ingen sikkerhetskopier","config.restore.title_restore_homebridge_backup":"Tilbakestill sikkerhetskopiering av Homebridge Config","config.restore.toast_backups_deleted":"Alle sikkerhetskopier slettet","config.title_backup_loaded":"Backup lastet","form.button_cancel":"Avbryt","form.button_close":"Lukk","form.button_delete":"Slett","form.button_disable":"Disable","form.button_download":"Download","form.button_edit":"Rediger","form.button_enable":"Enable","form.button_hide":"Hide","form.button_lock":"Lock","form.button_more_info":"More Info","form.button_remove":"Remove","form.button_reset":"Reset","form.button_restore":"Tilbakestill","form.button_save":"Lagre","form.button_show":"Show","form.button_unlock":"Unlock","form.button_unpair":"Unpair","form.label_invalid":"Config validation failed - you can still save your changes.","form.label_invalid_strict":"Config validation failed - please review the form before saving.","form.label_valid":"Config validation passed.","form.select.auto":"Automatic (Use Browser Settings)","login.button_login":"Logg inn","login.invalid_credentials":"Ugyldig brukernavn eller passord","login.label_2fa_code":"Two Factor Authentication Code","login.label_password":"Passord","login.label_username":"Brukernavn","login.message_invalid_2fa_code":"The code entered is incorrect or has expired.","logs.download.error":"Failed to download log file.","logs.download_warning":"Homebridge log files may contain personal information, passwords or access tokens. Please review the log file and remove any sensitive information before sharing with others.","logs.log_file_truncated":"Log file truncated.","logs.title_download_log_file":"Download Log File","logs.title_truncate_log_file":"Delete Logs","logs.truncate.error":"Failed to truncate log file.","logs.truncate_log_warning":"This action will irreversibly delete your existing Homebridge logs. Are you sure you want to continue?","menu.config_json_editor":"JSON Config","menu.docker.restart_container":"Restart container","menu.docker.startup_script":"Startscript","menu.docker.terminal":"Terminal","menu.hbrestart.confirm_hb":"Restart Homebridge","menu.hbrestart.confirm_ui":"Restart HB Service & UI","menu.hbrestart.title":"Restart Homebridge","menu.label_accessories":"Tilbeh\xF8r","menu.label_plugins":"Plugins","menu.label_settings":"Settings","menu.label_settings_advanced":"UI Advanced Settings","menu.label_status":"Status","menu.linux.label_logs":"Logs","menu.linux.label_restart_server":"Restart serveren","menu.linux.label_shutdown_server":"Sl\xE5 av serveren","menu.linux.label_terminal":"Terminal","menu.restart.title":"Power Options","menu.settings.title":"Settings","menu.tooltip_logout":"Logg ut","menu.tooltip_restart":"Omstart","menu.tooltip_user_accounts":"Brukerkontoer","menu.tooltip_view_logs":"Vis logger","platform.docker.container_restarted":"Dockercontaineren har startet p\xE5 nytt","platform.docker.must_use_hashbang":"Script m\xE5 inneholde #!/bin/sh hashbang.","platform.docker.restart_required":"Du m\xE5 restarte denne dockningsbeholderen for at endringene ska tre i kraft.","platform.docker.run_with_restart":"Pass p\xE5 at du kj\xF8rer dockercontaineren med <code>--restart=always</code>","platform.docker.script_help":"Dette script kommer til \xE5 kj\xF8res hver gang dockercontaineren starter. Du kan bruke dette for \xE5 installere eventuelle ekstra pakker som dine plugins kan beh\xF8ve, for eksempel ffmpeg eller libpcap-dev.","platform.docker.script_saved":"Start-script lagret","platform.docker.server_long_time":"Omstart av serveren tar lang tid. Du kan m\xE5tte restarte dockercontaineren manuelt.","platform.docker.title_restarting":"Restarte dockercontainer","platform.linux.long_time":"Omstart av serveren tar lang tid. Du kan bli n\xF8dt til \xE5 finne fram serverens sikkerhetskopi manuelt.","platform.linux.restart":"Vente, du omdirigeres automatisk n\xE5r Homebridge er online igjen.","platform.linux.restarting_server":"Restart serveren","platform.linux.server_restart_error":"En feil oppsto med \xE5 sende restartkommandoen til serveren","platform.linux.server_restarted":"Serveren har startet p\xE5 nytt","platform.linux.server_taking_long_time":"Serveren bruker lang tid p\xE5 \xE5 komme tilbake online","platform.linux.server_will_power_down":"Serveren sl\xE5s av innen kort tid.","platform.linux.shutting_down_server":"Sl\xE5 av serveren","platform.version.restart_required":"Homebridge UI v{{ uiVersion }} has been installed, but the server service is still running v{{ serverVersion }}.","platform.version.service_restart_required":"Restart Required","plugins.bridge.action_error":"Failed to {{ action }} child bridge(s).","plugins.button_homepage":"Plugin Homepage","plugins.button_set_up":"Set Up","plugins.button_settings":"innstillinger","plugins.button_uninstall":"Avinstallere","plugins.button_update":"Oppdatering","plugins.compat.are_you_sure":"Are you sure you want to continue anyway?","plugins.compat.hb_node_too_low":"{{ packageName }} v{{ latestVersion }} requires Node.js v{{ minVersion }} or later. You are currently running Node.js {{ installedVersion }}.","plugins.compat.hb_too_low":"The {{ pluginName }} plugin recommends running on Homebridge v{{ minVersion }} or later. You are currently running Homebridge v{{ installedVersion }}.","plugins.compat.node_first":"Please upgrade Node.js before updating {{ packageName }}.","plugins.compat.node_link":"How To Update Node.js","plugins.compat.node_too_low":"The {{ pluginName }} plugin recommends running on Node.js v{{ minVersion }} or later. You are currently running Node.js {{ installedVersion }}.","plugins.compat.title":"Compatibility Check","plugins.config.load_error":"Failed to load plugin config.","plugins.config.must_be_array":"Plugin config must be an array.","plugins.config.must_be_array_objects":"Plugin config must be an array of objects.","plugins.config.must_be_object":"Config block must be an object.","plugins.config.name_property":'Accessory must have a valid "name" attribute',"plugins.config.please_fix":"Please fix validation errors before adding a new block.","plugins.config.remove_error":"Failed to remove plugin config.","plugins.disable.error":"Failed to disable plugin.","plugins.donate.button_not_verified":"Not Verified","plugins.donate.button_verified":"Verifisert","plugins.donate.message_1":"As more users install their plugins through the Homebridge UI, they are less likely to visit the projects' GitHub page where the ways to support a developer would typically be displayed.","plugins.donate.message_2":"Adding donation links directly in the Homebridge UI ensures users know how to support Homebridge developers if they wish to do so.","plugins.donate.tile_donate_to":"Donate to {{ author }}","plugins.enable.error":"Failed to enable plugin.","plugins.manage.all_versions":"All versions","plugins.manage.child_bridge_restart":"Child bridge restarted successfully.","plugins.manage.child_bridge_restart_failed":"Plugin restart failed, please restart Homebridge manually.","plugins.manage.confirm_disable":"Are you sure you want to disable {{ pluginName }}?","plugins.manage.confirm_disable_accessory_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen and removed from HomeKit.","plugins.manage.confirm_disable_accessory_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and HomeKit. The accessories will lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_disable_platform_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen but remain in HomeKit with a 'No Response' label.","plugins.manage.confirm_disable_platform_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and become controllable again in HomeKit. The accessories will not lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_enable":"Are you sure you want to enable {{ pluginName }}?","plugins.manage.disable":"Disable","plugins.manage.enable":"Enable","plugins.manage.information":"Plugin Information","plugins.manage.install":"Installere","plugins.manage.installed":"Installert","plugins.manage.json_config":"JSON Config","plugins.manage.manage_version":"Manage Version","plugins.manage.manual_update_command":"To upgrade the package run open a Node.js command prompt as an Administrator and run the following commands:","plugins.manage.manual_update_required":"Manual Update Required","plugins.manage.online_updates":"Online updates are not supported on Windows. You will need to upgrade Homebridge UI manually after stopping the Homebridge service.","plugins.manage.plugin_logs":"Plugin Logs","plugins.manage.release_notes":"Release Notes","plugins.manage.scoped.error":"An error occurred. You can download the logs below.","plugins.manage.scoped.info":"For more information about scoped plugins and why to switch, see the wiki page {{ link }}.","plugins.manage.scoped.process":"This process will not affect your Homebridge/HomeKit accessories. You will not be able to cancel the process once it has started. It will:","plugins.manage.scoped.switch":"Switch To Scoped Plugin","plugins.manage.scoped.windows":"Online updates are not supported on Windows. You will need to install the new plugin and uninstall the old plugin manually.","plugins.manage.scoped.windows_service":'You should <span class="font-weight-bold">not</span> restart Homebridge until both steps are complete.',"plugins.manage.select_version":"Select the version to install","plugins.manage.thanks_for_updating":"Takk for at du installerte den nyeste versjonen av {{ pluginName }}.","plugins.manage.uninstall":"Avinstallere","plugins.manage.uninstalled":"Avinstallert","plugins.manage.unverified_message":"Unverified Homebridge plugins indicate that they haven't undergone the review process by the Homebridge project team. Lack of verification does not necessarily imply inefficacy or safety concerns. Authors might have opted not to seek verification for various reasons.","plugins.manage.unverified_subtitle":"{{ pluginName }} is not verified","plugins.manage.unverified_title":"Unverified Plugins","plugins.manage.update":"Oppdatering","plugins.manage.updated":"Oppdatert","plugins.manage.verified_message":"Homebridge plugins that are marked as verified have been reviewed by the Homebridge project team to ensure they meet various requirements that encourage best practices and a trouble-free user experience.","plugins.manage.verified_subtitle":"{{ pluginName }} is verified","plugins.manage.verified_title":"Verified Plugins","plugins.node_update.continue":"Continue","plugins.placeholder_search_first":"Use the search bar above to find your first plugin","plugins.placeholder_search_plugin":"S\xF8k etter plugins \xE5 installere\u2026","plugins.settings.custom.homebridge-gsh.label_account_linked":"Konto tilknyttet","plugins.settings.custom.homebridge-gsh.label_link_account":"Tilknytt konto","plugins.settings.custom.homebridge-gsh.label_unlink_account":"Ta bort tilknytting til konto","plugins.settings.custom.homebridge-gsh.message_about":"Med Homebridge Google Smart Home- plugin kan du kontrollere dine Homebridge-tilbeh\xF8r fra en Google Home-aktivert smarth\xF8ytaler eller Google Home-mobilappen.","plugins.settings.custom.homebridge-gsh.message_account_link_required":"For \xE5 aktivere denne funksjonen m\xE5 du logge inn med din Google- eller GitHub-konto; pass p\xE5 at du bruker samme konto n\xE5r du legger til Homebridge-infoen i mobilappen Google Home.","plugins.settings.custom.homebridge-gsh.message_homebridge_restart_required":"Homebridge krever omstart for at endringene skal tre i kraft.","plugins.settings.custom.homebridge-gsh.message_invalid_token":"Invalid account linking token in config.json","plugins.settings.deconz.dump_no_exist":"Homebridge deCONZ dump file does not exist yet.","plugins.settings.hue.dump_no_exist":"Homebridge Hue dump file does not exist yet.","plugins.settings.label_open_config_editor":"Open Config Editor","plugins.settings.message_consult_documentation":"Please consult the plugin documentation for instructions on how to correctly configure this plugin.","plugins.settings.message_manual_config_required":"This plugin must be configured manually using the Homebridge UI Config Editor.","plugins.settings.plugin_config_saved":"Plugin Config lagret","plugins.settings.restart_required":"Start Homebridge p\xE5 nytt for \xE5 iverksette endringene.","plugins.settings.title_settings":"innstillinger","plugins.status_disabled":"Disabled","plugins.status_installed":"Installert","plugins.toast_failed_to_load_plugin_schema":"Failed to load plugin config schema.","plugins.toast_failed_to_load_plugins":"Kunne ikke laste plugins","plugins.uninstall_bridge_error":"Failed to remove child bridge.","plugins.uninstall_remove_config_required":"If you are permanently removing this plugin, make sure you remove any config for this plugin in the config.json before restarting Homebridge.","plugins.uninstall_remove_confirmation":"Are you sure you want to uninstall {{ pluginName }}?","plugins.uninstall_remove_plugin_config":"Remove plugin config?","plugins.uninstall_unpair_child_bridge":"Unpair plugin child bridge?","plugins.uninstall_unpair_child_bridges":"Unpair {{ count }} plugin child bridges?","reset.accessory_reset":"Homebridge tilbeh\xF8r nullstilling","reset.action_is_irreversible":"Denna handling kan ikke angres. Les n\xF8ye f\xF8r du fortsetter.","reset.bridges.desc":"If you are having trouble pairing Homebridge, an external accessory or a child bridge to HomeKit, you may need to unpair it from HomeKit to start again.","reset.bridges.empty":"You have no bridges to unpair from HomeKit.","reset.bridges.title":"Bridges","reset.bridges_all.desc":"Unpair all bridges from HomeKit. This includes the main Homebridge bridge, child bridges and bridges for external accessories.","reset.bridges_all.list_1":"This will unpair the Homebridge bridge, all child bridges and bridges for external accessories from HomeKit.","reset.bridges_all.list_2":"Note that your accessories will continue to show in HomeKit as no response, until the bridges are manually removed from HomeKit. You can do this in the Home app, by accessing Home Settings \u2192 Home Hubs & Bridges \u2192 {Bridge} \u2192 Remove Bridge from Home.","reset.bridges_all.list_3":"All your Homebridge to HomeKit accessories, scenes and automations will need to be reconfigured after the unpairing.","reset.bridges_all.list_4":"The pin for pairing your Homebridge bridge to HomeKit will be changed. You can see the new values in your Homebridge config after the unpairing.","reset.bridges_all.title":"Unpair All Bridges","reset.bridges_single.desc":"Unpair a single bridge from HomeKit. This may be a child bridge or a bridge for an external accessory like a camera or TV.","reset.bridges_single.list_1":"When unpairing a bridge, any accessories published by this bridge will be removed from the Homebridge cache.","reset.bridges_single.list_2":"The accessories will become stale in HomeKit (showing no response). To remove them, you will need to manually remove this bridge from HomeKit. You can do this in the Home app from the Home Settings section.","reset.bridges_single.list_3":"You can then attempt to pair the bridge again if required.","reset.bridges_single.title":"Unpair Single Bridge","reset.cached_accessory_removed":"Cached accessory removed.","reset.clear_cache_all.desc":"Remove all accessories from the cache.","reset.clear_cache_all.list_1":"When clicking on the remove button below, Homebridge will restart and all your existing accessories will be removed from Homebridge and HomeKit.","reset.clear_cache_all.list_2":"All associated HomeKit data will also be removed, this includes room associations, scenes and automations that this accessory uses.","reset.clear_cache_all.list_3":"After Homebridge restarts, your plugins will re-add any accessories as if the plugin was being installed for the first time.","reset.clear_cache_all.title":"Remove All Accessories","reset.clear_cache_bridge.desc":"Remove all accessories published by a bridge from the cache.","reset.clear_cache_bridge.empty":"You have no bridges from which to remove accessories.","reset.clear_cache_bridge.list_1":"This function can be used to reset a plugin's existing accessories in HomeKit. They will be removed from Homebridge/HomeKit and then re-added by the plugin as new accessories.","reset.clear_cache_bridge.list_2":"The child bridge's pairing details and status will remain the same.","reset.clear_cache_bridge.title":"Remove Bridge Accessories","reset.clear_cache_single.desc":"Remove a single accessory from the cache.","reset.clear_cache_single.list_1":"Some plugins don't clean up after themselves properly! If an accessory that you no longer have in Homebridge is still being displayed in HomeKit, you can remove it from the cache.","reset.clear_cache_single.list_2":"This function can be used to reset an existing accessory in HomeKit. It will be removed from Homebridge/HomeKit and then re-added by the plugin as a new accessory.","reset.clear_cache_single.list_3":"When removing an accessory from the cache, all its associated HomeKit data will be removed. This includes any associated scenes and automations that use this accessory.","reset.clear_cache_single.list_4":"Accessories can only be removed when Homebridge is not running. Homebridge will automatically restart when clicking on each of the remove buttons below. If you need to remove multiple accessories, please be patient and allow Homebridge to restart between each removal.","reset.clear_cache_single.title":"Remove Single Accessory","reset.delete_failed":"Failed to delete accessory.","reset.delete_success":"Restarting Homebridge and clearing accessory cache.","reset.error_message":"Accessory cache could not be loaded. You may not have any cached accessories.","reset.failed_to_reset":"Det gikk ikke \xE5 nullstille Homebridge. Se logger.","reset.force_restart_hb_help_text":"Use this action to force the hb-service service to do a full restart.","reset.remove_cached_accessories_single_empty":"You have no cached accessories to remove.","reset.removing_cached_accessory_please_wait":"Removing accessory from cache, please wait\u2026","restart.child_bridge_list":"Please restart these child bridges for the changes to apply:","restart.child_bridges":"Please restart the plugin's child bridges for the changes to apply.","restart.homebridge":"Please restart Homebridge for the changes to apply.","restart.label_restart_command_executed":"Omstartskommandoen kj\xF8res","restart.please_wait_while_server_restarts":"Vent, denne siden omdirigeres automatisk n\xE5r serveren er online igjen.","restart.server_is_taking_long_time_to_restart":"Omstart av serveren tar lang tid. Du kan bli n\xF8dt til \xE5 hente opp Homebridge-tjenesten manuelt.","restart.service_ready":"Homebridge Server Ready","restart.title_restart":"Starte Homebridge p\xE5 nytt","restart.toast_server_restart_error":"En feil oppsto med \xE5 sende omstartkommandoen til serveren","restart.toast_server_restart_timeout":"Serveren bruker lang tid p\xE5 \xE5 komme tilbake online","restart.toast_server_restarted":"Serveren har startet p\xE5 nytt","restart.ui_online":"Homebridge UI Online","rpi.throttled.currently_message":"This Raspberry Pi is reporting it is currently under-voltage; please check it is connected to an appropriate power supply. Under-voltage can result in system instability and SD card corruption.","rpi.throttled.previously_message":"This Raspberry Pi has reported an under-voltage event since it was last rebooted; please check it is connected to an appropriate power supply.","rpi.throttled.undervoltage_title":"Under Voltage","settings.cache.desc":"Homebridge maintains accessories in cache so they aren't removed and re-added to HomeKit each time Homebridge restarts. Sometimes this cache can become out of sync with the actual accessories in Homebridge.","settings.cache.title":"Accessories","settings.changes.saved":"Your changes have been saved and require a restart to take effect.","settings.datetime.incorrect":"The date and time on your Homebridge server seem to be incorrect. This may cause unexpected issues. Click here for more information.","settings.display.blue":"Blue","settings.display.bluegrey":"Blue Grey","settings.display.brown":"Brown","settings.display.cyan":"Cyan","settings.display.dark":"Dark","settings.display.deep_purple":"Deep Purple","settings.display.green":"Green","settings.display.grey":"Grey","settings.display.indigo":"Indigo","settings.display.lang":"Language","settings.display.light":"Light","settings.display.lighting_mode":"Lighting Mode","settings.display.login_wallpaper":"Login Wallpaper","settings.display.login_wallpaper_desc":"A custom login wallpaper can be set by adding a <code>ui-wallpaper.jpg</code> file to your Homebridge storage directory, or by providing a full path to a local image file here.","settings.display.orange":"Orange","settings.display.pink":"Pink","settings.display.purple":"Purple","settings.display.red":"Red","settings.display.teal":"Teal","settings.display.temp_units":"Temperature Units","settings.display.temp_units.c":"Celsius (\xB0C)","settings.display.temp_units.f":"Fahrenheit (\xB0F)","settings.display.theme":"Theme","settings.general.title_display":"Display","settings.general.title_general":"General","settings.mdns_advertiser":"mDNS Advertiser","settings.mdns_advertiser_exp":"experimental","settings.mdns_advertiser_help":"If you have trouble connecting Homebridge to HomeKit (all accessories showing 'No Response' in the Home app), try using one of the alternate mDNS advertisers.","settings.mdns_advertiser_not_connected":"Not Connected","settings.mdns_advertiser_rec":"recommended","settings.network.label_interface_name":"Interface Name","settings.network.label_ip_address":"IP Address","settings.network.message_network_interface":"If no network interfaces are selected, Homebridge will attempt to automatically determine which interfaces to advertise.","settings.network.port_hb":"Homebridge Port","settings.network.port_hb_desc":"The port number to run the Homebridge bridge on. This must be between 1025 and 65533, and should not be the same as the Homebridge UI port.","settings.network.port_ui":"UI Port","settings.network.port_ui_desc":"The port number to run the Homebridge UI on.","settings.network.title_network":"Network","settings.network.title_network_interfaces":"Network Interfaces","settings.service.debug_tooltip":"Some plugins require you to set the DEBUG environment variable to enable debug level logging.","settings.service.node_tooltip":"Node.js runtime options for this process. This should be kept blank unless you know what you are doing.","settings.startup.debug":"Homebridge Debug Mode","settings.startup.debug_desc_v1":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge as well as all child bridges. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.debug_desc_v2":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge. The setting for child bridges can be found in the child bridge configuration from the plugins page. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.insecure":"Homebridge 'Insecure' Mode","settings.startup.insecure_desc":"To control your accessories via the Homebridge UI you must be running Homebridge in insecure mode.","settings.startup.keep_accessories":"Keep Accessories Of Uninstalled Plugins","settings.startup.keep_accessories_desc":"If enabled, accessories of platform plugins will remain in the cache even after the plugin is uninstalled. This can be useful if you plan to reinstall the plugin later.","settings.title_startup_options":"Startup & Environment Options","settings.unpair_bridge.load_error":"Paired bridges could not be loaded.","settings.unpair_bridge.unpair_error":"Failed to unpair bridge.","setup.button_get_started":"Get Started","setup.create_account":"Create Account","setup.create_account_reason":"Password authentication to your Homebridge admin web interface must be configured. Even if Homebridge is accessible only in your local network, it is still important to protect it from unrestricted access.","setup.open_dashboard":"Open Dashboard","setup.welcome_to_homebridge":"Welcome to Homebridge",setup_wizard_message_complete_message:"The setup procedure is complete and you're now ready to start using Homebridge.",setup_wizard_message_complete_title:"Congratulations!",setup_wizard_message_restore:"Restore From Backup","status.code_scan":"Skann for \xE5 legge til HomeKit","status.cpu.load":"Bruk","status.cpu.temp":"Temp","status.cpu.title_cpu":"CPU","status.credits.title":"Credits","status.homebridge.checking":"Ser etter oppdateringer\u2026","status.homebridge.up_to_date":"Oppdatert","status.memory.label_available":"Ledig","status.memory.label_total":"Totalt","status.memory.title_memory":"Minne","status.network.received_per_second":"Received","status.network.sent_per_second":"Sent","status.network.title_network":"Network Activity","status.plugin_out_of_date":"Plugin utdatert","status.plugins_out_of_date":"Plugins utdaterte","status.services.label_not_running":"Kj\xF8rer ikke","status.services.label_running":"Kj\xF8rer","status.services.updates":"Update Centre","status.uptime.title_uptime":"Oppetid","status.widget.accessories.choose_accessories":"Choose the accessories to display in this widget from the Accessories tab.","status.widget.add.label_pairing_code":"Pairing Code","status.widget.bridge.restart_error":"Failed to restart child bridge.","status.widget.clock":"Clock","status.widget.clock_dateformat":"Date Format","status.widget.clock_timeformat":"Time Format","status.widget.font_size":"Font Size","status.widget.font_weight":"Font Weight","status.widget.hide_on_mobile":"Hide in compact view (mobile displays)","status.widget.homebridge_logs":"Homebridge Logs","status.widget.info":"System Information","status.widget.info.config_path":"Config Path","status.widget.info.disabled":"Disabled","status.widget.info.docker":"Docker","status.widget.info.glibc_message":"This message indicates that your operating system does not support newer versions of Node.js. To resolve this and be able to install updated versions of Node.js in the future, you will need to update your operating system to a more recent version.","status.widget.info.glibc_title":"OS Update","status.widget.info.hostname":"Hostname","status.widget.info.ipv4":"IPv4","status.widget.info.ipv6":"IPv6","status.widget.info.no":"No","status.widget.info.node_unsupp":"Unsupported","status.widget.info.node_unsupp_message":"You are running a version of Node.js that is not officially supported by Homebridge. You should consider changing to a supported version.","status.widget.info.node_unsupp_title":"Unsupported Node Version","status.widget.info.node_update_message":"Homebridge requires Node.js installed on your system to run. From time to time, you will need to update the Node.js runtime to enable support for new features. Homebridge (and verified plugins) support all current Active and Maintenance LTS releases of Node.js.","status.widget.info.node_update_title":"Node Update","status.widget.info.nodejs_path":"Node.js Path","status.widget.info.nodejs_version":"Node.js Version","status.widget.info.os":"OS","status.widget.info.plugin_path":"Plugin Path","status.widget.info.service_mode":"Service Mode","status.widget.info.service_user":"User","status.widget.info.servicemode_message":"Standalone mode is no longer recommended. Setting up Homebridge and Homebridge UI with hb-service has the same benefits of standalone mode but is much easier to setup and maintain.","status.widget.info.servicemode_title":"Service Mode","status.widget.info.storage_path":"Storage Path","status.widget.info.synology_package":"Synology Package","status.widget.info.timezone":"Timezone","status.widget.info.yes":"Yes","status.widget.network.history_items":"History Items","status.widget.network.items":"items","status.widget.network.network_interface":"Network Interface","status.widget.network.none_selected":"None selected in settings - using default.","status.widget.network.refresh_interval":"Refresh Interval","status.widget.network.refresh_note":"Refresh the page after saving for changes to take effect.","status.widget.network.seconds":"seconds","status.widget.qr_paired":"Paired","status.widget.qr_unpaired":"Not Paired","status.widget.show_hide":"Show/Hide Widgets","status.widget.title_manage_widget":"Manage Widget","status.widget.uptime.label_process":"Process","status.widget.uptime.label_server":"Server","status.widget.weather.label_config_required_help":"Please select your city in the widget settings.","status.widget.weather.label_search_for_your_city":"Search for your city:","status.widget.weather.title_weather":"Weather","support.dev.api":"Homebridge API","support.dev.api_hap":"HAP-NodeJS API","support.dev.api_hap_sub":"HAP-NodeJS is an implementation of the HomeKit Accessory Server as specified in the HomeKit Accessory Protocol (HAP), which is defined by Apple as part of the HomeKit Framework.","support.dev.api_sub":"Homebridge is a lightweight Node.js server you can run on your home network to emulate the HomeKit Accessory Protocol (HAP).","support.dev.item_swagger":"Swagger Docs","support.dev.item_swagger_sub":"The Homebridge REST API allows you to interact with your Homebridge server using HTTP requests.","support.dev.template":"Plugin Template Repo","support.dev.template_sub":"A template Homebridge plugin that can be used as a base to help you get started developing your own plugin.","support.dev.title":"Developers","support.dev.verified":"Verified By Homebridge","support.dev.verified_sub":"The Verified By Homebridge program allows plugin developers to get their plugins reviewed and endorsed by the Homebridge project team.","support.links.discord":"Discord Server","support.links.discord_sub":"Join the Homebridge Discord chat server to chat with other users and developers.","support.links.documentation":"Documentation","support.links.documentation_sub":"The Homebridge documentation provides a wealth of information on how to get started with Homebridge and common issue resolutions.","support.links.issue":"Report An Issue","support.links.issue_sub":"If you are experiencing an issue with Homebridge, please open a new issue on GitHub. This should not be used for issues with specific plugins.","support.links.reddit":"Reddit Community","support.links.reddit_sub":"The Homebridge subreddit is a great place to share your Homebridge setup and ask for help.","support.links.title":"Useful Links","support.title":"Support","toast.no_auth":"Only administrators may access the requested page.","toast.title_error":"Feil","toast.title_success":"Suksess","toast.title_warning":"Advarsel","users.button_add_new_user":"Legg til ny bruker","users.button_add_user":"Legg til bruker","users.label_admin_user":"Adminbruker?","users.label_confirm_password":"Bekreft passord","users.label_full_name":"Fullt navn","users.label_new_password":"Nytt passord","users.label_password":"Passord","users.label_username":"Brukernavn","users.setup_2fa":"Setup 2FA","users.setup_2fa_activate_error":"An error occurred activating 2FA","users.setup_2fa_cannot_setup_2fa":"Cannot Setup 2FA","users.setup_2fa_disable":"Disable 2FA","users.setup_2fa_disable_current_password":"Enter your current password to disable two factor authentication:","users.setup_2fa_disable_success":"Two factor authentication has been disabled.","users.setup_2fa_enable":"Enable 2FA","users.setup_2fa_enable_error":"An error occurred setting up 2FA","users.setup_2fa_enabled_success":"Two factor authentication has been enabled.","users.setup_2fa_enter_code":"Enter the code from your authenticator app:","users.setup_2fa_scan_qr_code":"Scan the QR code below with your authenticator app:","users.setup_2fa_server_time_out":"Your server's clock is out by {{ timeDiffError }} ms. The maximum allowed is +/-5000 ms.","users.setup_2fa_warning":"Two Factor Authentication requires your Homebridge server to have a very accurate date and time to login. If your server does not have the ability to keep time accurately you should not enable 2FA or risk being locked out of the Homebridge UI.","users.title_add_user":"Legg til bruker","users.title_edit_user":"Rediger bruker","users.title_users":"Brukere","users.toast_added_new_user":"Lagt til ny bruker","users.toast_failed_to_add_user":"Kunne ikke legge til bruker","users.toast_failed_to_delete_user":"Kunne ikke slette brukeren","users.toast_updated_user":"Bruker oppdatert","users.toast_user_deleted":"Bruker slettet"}});var Bs=y((qd,ka)=>{ka.exports={"accessories.button_add_room":"Dodaj pok\xF3j","accessories.button_hidden_hide":"Ukryj ukryte","accessories.button_hidden_show":"Poka\u017C ukryte","accessories.control.auto":"Auto","accessories.control.away":"Poza domem","accessories.control.battery_charging":"\u0141adowanie","accessories.control.battery_notchargeable":"Brak mo\u017Cliwo\u015Bci \u0142adowania","accessories.control.battery_notcharging":"Brak \u0142adowania","accessories.control.brightness":"Jasno\u015B\u0107","accessories.control.closed":"Zamkni\u0119te","accessories.control.closing":"Zamykanie","accessories.control.cool":"Ch\u0142odzenie","accessories.control.default_room":"Domy\u015Blny pok\xF3j","accessories.control.default_running_time":"Domy\u015Blny czas pracy","accessories.control.dehumidifying":"Osuszanie","accessories.control.detected":"Detected","accessories.control.drag_here":"Przenie\u015B tutaj","accessories.control.fan":"Wentylator","accessories.control.heat":"Grzanie","accessories.control.home":"W domu","accessories.control.humidifying":"Nawil\u017Canie","accessories.control.jammed":"Zaci\u0119te","accessories.control.light":"Swiat\u0142o","accessories.control.locked":"Zablokowany","accessories.control.mute":"Wycisz. w\u0142.","accessories.control.night":"Noc","accessories.control.not_detected":"Not Detected","accessories.control.not_mute":"Wycisz. wy\u0142.","accessories.control.off":"Wy\u0142.","accessories.control.on":"W\u0142.","accessories.control.open":"Otwarte","accessories.control.opening":"Otwieranie","accessories.control.rotation_speed":"Pr\u0119dko\u015B\u0107 obrotu","accessories.control.running":"Uruchomiony","accessories.control.speaker_volume":"G\u0142o\u015Bno\u015B\u0107","accessories.control.stopped":"Zatrzymano","accessories.control.target":"Cel","accessories.control.target_humidity":"Zadany poziom nawil\u017Cania","accessories.control.target_temperature":"Temp. zadana","accessories.control.triggered":"Wyzwolono","accessories.control.unknown":"Nieznany","accessories.control.unlocked":"Odblokowano","accessories.control_disabled":"Sterowanie akcesoriami jest wy\u0142\u0105czone","accessories.hide_this_accessory":"Ukryj to akcesorium","accessories.message_for_more_information":"Wi\u0119cej informacji","accessories.message_must_use_insecure_mode":"Aby sterowa\u0107 swoimi akcesoriami bezpo\u015Brednio w panelu Homebridge musisz uruchomi\u0107 Homebridge w trybie niezabezpieczonym.","accessories.message_please_see":"Zobacz","accessories.name":"Nazwa","accessories.room_name":"Nazwa pokoju","accessories.rooms_not_appear_in_homekit":"Pomieszczenia utworzone tutaj nie b\u0119d\u0105 wy\u015Bwietlane w aplikacji HomeKit, s\u0105 tylko dla organizacji akcesori\xF3w w Homebridge UI.","accessories.settings_link":"Mo\u017Cesz uzyska\u0107 dost\u0119p do ustawie\u0144 Homebridge w dowolnym momencie z menu g\u0142\xF3wnego lub klikaj\u0105c cog","accessories.show_on_dashboard":"Poka\u017C w dashboard","accessories.title_accessories":"Akcesoria","backup.backup_delete_failed":"Backup deletion failed. See logs for details.","backup.backup_download_failed":"Tworzenie backupu nieudane","backup.backup_exceeds_max_size":"Backup ({{ backupSize }}) przekracza maksymalny rozmiar {{ maxBackupSizeText }}","backup.backup_help_one":"Utw\xF3rz backup ca\u0142ego \u015Brodowiska Homebridge, kt\xF3ry nast\u0119pnie b\u0119dziesz m\xF3g\u0142 przywr\xF3cic po ponownej instalacji Homebridge, lub po zresetowaniu systemu.","backup.backup_help_two":"Wtyczki niedost\u0119pne z poziomu repozytorium npm lub instalowane bezpo\u015Brednio z GitHub nie b\u0119d\u0105 dodane do backupu.","backup.backup_restored":"Przywracanie backupu zako\u0144czone sukcesem","backup.backup_warning":"Backup zawiera wa\u017Cne informacje i nie powinien by\u0107 udost\u0119pniany nikomu.","backup.button_restore_backup":"Przywr\xF3\u0107 z backupu","backup.label_choose_backup_file_to_restore":"Wybierz plik backupu","backup.label_uploading":"Przywracanie\u2026","backup.load_error":"Nie uda\u0142o si\u0119 za\u0142adowa\u0107 backupu.","backup.now":"Now","backup.restore_failed":"Przywracanie backupu zako\u0144czone niepowodzeniem","backup.restore_help_one":"Przywr\xF3cenie backupu odtworzy ca\u0142\u0105 konfiguracje utworzon\u0105 za pomoc\u0105 Homebridge UI wraz z akcesoriami, plikiem konfiguracyjnym i wszystkimi wtyczkami zainstalowanymi z repozytorium npm.","backup.restore_help_two":"Po przywr\xF3ceniu backupu trzeba ponownie zalogowa\u0107 si\u0119 do Homebridge UI z danymi u\u017Cytkownika zawartymi w tej kopii.","backup.restore_max_size":"Mo\u017Cesz przywr\xF3ci\u0107 backup do rozmiaru: {{ maxBackupSizeText }}.","backup.restore_warning":"Przywr\xF3cenie backupu jest nieodwracalne i zast\u0105pi ca\u0142\u0105 obecn\u0105 konfiguracj\u0119 Homebridge.","backup.scheduled_backup_time":"Pe\u0142ny backup konfiguracji Homebridge jest tworzony automatycznie ka\u017Cdego dnia o godzinie {{ backupTime }} i trzymany przez {{ dayCount }} dni.","backup.title_backup":"Backup - utw\xF3rz","child_bridge.about":"Homebridge pozwoli ci na uruchomienie twoich wtyczek (platform, akcesori\xF3w) w trybie mostka podrz\u0119dnego. Ta funkcja mo\u017Ce poprawi\u0107 szybko\u015B\u0107 i jako\u015B\u0107 dzia\u0142ania Homebridge.","child_bridge.bridge_connect":"Po\u0142\u0105cz z HomeKit","child_bridge.bridge_settings":"Ustawienia mostka","child_bridge.bridges":"HomeKit Bridges","child_bridge.bridges_paired":"Ka\u017Cdy tak utworzony nowy mostek b\u0119dzie wymaga\u0142 ponownego parowania w aplikacji HomeKit.","child_bridge.config.debug":"Tryb Debug","child_bridge.config.description":"Te pola nie s\u0105 wymagane, ale mog\u0105 by\u0107 u\u017Cyte do nadpisania konfiguracji HomeKit dla tego mostka.","child_bridge.config.firmware":"Wersja oprogramowania","child_bridge.config.header":"Konfiguracja","child_bridge.config.manufacturer":"Producent","child_bridge.config.model":"Model","child_bridge.config.name":"Nazwa","child_bridge.must_configure_plugin":"Najpierw musisz skonfigurowa\u0107 wtyczk\u0119 zanim b\u0119dziesz m\xF3g\u0142 zarzadza\u0107 ustawieniami tego mostka.","child_bridge.reset_accessories":"Resetuj akcesoria","child_bridge.reset_accessories_list":"Wybierz, z kt\xF3rych mostk\xF3w podrz\u0119dnych chcesz zresetowa\u0107 akcesoria poni\u017Cej:","child_bridge.restart":"Zrestartuj mostek","child_bridge.restart_homebridge":"Zrestartuj Homebridge aby uruchomi\u0107 mostek.","child_bridge.restart_plural":"Zrestartuj mostki","child_bridge.return_to_pair":"Wr\xF3\u0107 do tego ekranu po ponownym uruchomieniu Homebridge aby wy\u015Bwietli\u0107 kod QR parowania.","child_bridge.select_type":"Wybierz kt\xF3r\u0105 platform\u0119 lub akcesorium chcesz uruchomi\u0107 w trybie mostka podrz\u0119dnego.","child_bridge.setup":"Ustaw mostek","child_bridge.start":"Uruchom mostek","child_bridge.start_plural":"Uruchom mostki","child_bridge.stop":"Wy\u0142\u0105cz mostek","child_bridge.stop_plural":"Wy\u0142\u0105cz mostki","child_bridge.wiki_link":"Wi\u0119cej o mostku podrz\u0119dnym dowiesz si\u0119 tu.","config.config_accessory_must_be_array":"Akcesoria musz\u0105 by\u0107 w tablicy []","config.config_bridge_missing":"Brak ustawie\u0144 mostka","config.config_invalid_json":"Konfiguracja zawiera nieprawid\u0142ow\u0105 sk\u0142adni\u0119 JSON","config.config_platform_must_be_array":"Platformy musz\u0105 by\u0107 w tablicy []","config.config_username_error":"'Username' w sekcji 'Bridge' musi sk\u0142ada\u0107 si\u0119 z 6 par znak\xF3w oddzielonych dwukropkiem (A-F 0-9) w formacie XX:XX:XX:XX:XX:XX","config.error_blocks_objects":"{{ type }} - wszystkie bloki musz\u0105 by\u0107 typu obiekt.","config.error_blocks_type":"{{ type }} - ka\u017Cdy blok musi zawiera\u0107 atrybut: {{ type }}.","config.error_string_array":"{{ key }} - ka\u017Cdy element zbioru musi by\u0107 typu string.","config.error_string_type":"{{ type }} - atrybut musi by\u0107 typu string.","config.failed_to_save_config":"Nie mo\u017Cna zapisa\u0107 konfiguracji","config.restore.confirm":"Kliknij Zapisz, aby przywr\xF3ci\u0107 kopi\u0119 zapasow\u0105.","config.restore.copy_to_editor":"Kopiuj do edytora","config.restore.no_backups":"Brak kopii zapasowych","config.restore.title_restore_homebridge_backup":"Przywr\xF3\u0107 konfiguracj\u0119 Homebridge","config.restore.toast_backups_deleted":"Wszystkie kopie zapasowe zosta\u0142y usuni\u0119te","config.title_backup_loaded":"Backup zosta\u0142 za\u0142adowany","form.button_cancel":"Anuluj","form.button_close":"Zamknij","form.button_delete":"Usu\u0144","form.button_disable":"Wy\u0142\u0105cz","form.button_download":"Pobierz","form.button_edit":"Edytuj","form.button_enable":"W\u0142\u0105cz","form.button_hide":"Ukryj","form.button_lock":"Zablokuj","form.button_more_info":"Wi\u0119cej info","form.button_remove":"Usu\u0144","form.button_reset":"Zresetuj","form.button_restore":"Przywr\xF3\u0107","form.button_save":"Zapisz","form.button_show":"Show","form.button_unlock":"Odblokuj","form.button_unpair":"Unpair","form.label_invalid":"Config validation failed - you can still save your changes.","form.label_invalid_strict":"Config validation failed - please review the form before saving.","form.label_valid":"Config validation passed.","form.select.auto":"Automatycznie (u\u017Cyj ustawie\u0144 przegl\u0105darki)","login.button_login":"Zaloguj","login.invalid_credentials":"Nieprawid\u0142owa nazwa lub has\u0142o u\u017Cytkownika","login.label_2fa_code":"Kod uwierzytelniania 2FA","login.label_password":"Has\u0142o","login.label_username":"U\u017Cytkownik","login.message_invalid_2fa_code":"Wpisany kod nie jest poprawny lub wygas\u0142.","logs.download.error":"Nie uda\u0142o si\u0119 pobra\u0107 pliku logu.","logs.download_warning":"Log mo\u017Ce zawiera\u0107 informacje osobiste, has\u0142a dost\u0119pu, tokeny. Sprawd\u017A zawarte w nim informacje zanim udost\u0119pnisz go innym osobom.","logs.log_file_truncated":"Log wyczyszczony.","logs.title_download_log_file":"Pobierz log","logs.title_truncate_log_file":"Wyczy\u015B\u0107 log","logs.truncate.error":"Nie uda\u0142o si\u0119 uci\u0105\u0107 pliku logu.","logs.truncate_log_warning":"Ta czynno\u015B\u0107 nie b\u0119dzie mog\u0142a by\u0107 cofni\u0119ta i usunie intniej\u0105cy log Homebridge. Na pewno chcesz kontynuowa\u0107?","menu.config_json_editor":"Konfig. JSON","menu.docker.restart_container":"Zrestartuj kontener","menu.docker.startup_script":"Skrypt startowy","menu.docker.terminal":"Terminal","menu.hbrestart.confirm_hb":"Zrestartuj Homebridge","menu.hbrestart.confirm_ui":"Zrestartuj HB Service & UI","menu.hbrestart.title":"Zrestartuj Homebridge","menu.label_accessories":"Akcesoria","menu.label_plugins":"Wtyczki","menu.label_settings":"Ustawienia","menu.label_settings_advanced":"Zaawansowane","menu.label_status":"Status","menu.linux.label_logs":"Log","menu.linux.label_restart_server":"Zrestartuj serwer","menu.linux.label_shutdown_server":"Wy\u0142\u0105cz serwer","menu.linux.label_terminal":"Terminal","menu.restart.title":"Opcje zasilania","menu.settings.title":"Ustawienia","menu.tooltip_logout":"Wyloguj","menu.tooltip_restart":"Zrestartuj","menu.tooltip_user_accounts":"U\u017Cytkownicy","menu.tooltip_view_logs":"Poka\u017C Log","platform.docker.container_restarted":"Kontener Docker zosta\u0142 ponownie uruchomiony","platform.docker.must_use_hashbang":"Skrypt musi u\u017Cywa\u0107 '#!/bin/sh'.","platform.docker.restart_required":"Konieczne b\u0119dzie ponowne uruchomienie tego kontenera dokowanego, aby zmiany zacz\u0119\u0142y obowi\u0105zywa\u0107.","platform.docker.run_with_restart":"Upewnij si\u0119, \u017Ce uruchamiasz kontener Docker z parametrem <code>--restart=always</code>","platform.docker.script_help":"Ten skrypt zostanie wykonany za ka\u017Cdym razem, przy uruchamianiu kontenera Dockera. Mo\u017Cesz tego u\u017Cy\u0107 do zainstalowania dodatkowych pakiet\xF3w, kt\xF3rych mog\u0105 potrzebowa\u0107 wtyczki, takich jak ffmpeg lub libpcap-dev.","platform.docker.script_saved":"Skrypt startowy zosta\u0142 zapisany","platform.docker.server_long_time":"Ponowne uruchomienie serwera zajmuje du\u017Co czasu. Mo\u017Ce by\u0107 konieczne r\u0119czne zresetowanie kontenera Docker.","platform.docker.title_restarting":"Ponowne uruchamianie konternera Docker","platform.linux.long_time":"Ponowne uruchomienie serwera zajmuje du\u017Co czasu. Mo\u017Ce by\u0107 konieczne r\u0119czne zresetowanie serwera.","platform.linux.restart":"Poczekaj, ta strona zostanie automatycznie od\u015Bwie\u017Cona, gdy Homebridge powr\xF3ci online.","platform.linux.restarting_server":"Ponowne uruchamianie serwera","platform.linux.server_restart_error":"Wyst\u0105pi\u0142 b\u0142\u0105d podczas wysy\u0142ania polecenia restartu serwera","platform.linux.server_restarted":"Serwer uruchomi\u0142 si\u0119 ponownie","platform.linux.server_taking_long_time":"Serwer potrzebuje wi\u0119cej czasu, by powr\xF3ci\u0107 do trybu online","platform.linux.server_will_power_down":"Serwer wkr\xF3tce si\u0119 wy\u0142\u0105czy.","platform.linux.shutting_down_server":"Wy\u0142\u0105czanie serwera","platform.version.restart_required":"Homebridge UI v{{ uiVersion }} zainstalowane, ale serwer nadal pracuje v{{ serverVersion }}.","platform.version.service_restart_required":"Wymagany restart serwera","plugins.bridge.action_error":"B\u0142\u0105d mostu podrz\u0119dnego przy akcji: {{ action }}.","plugins.button_homepage":"Strona wtyczki","plugins.button_set_up":"Konfiguruj","plugins.button_settings":"Ustawienia","plugins.button_uninstall":"Odinstaluj","plugins.button_update":"Aktualizuj","plugins.compat.are_you_sure":"Na pewno chcesz kontynuowa\u0107?","plugins.compat.hb_node_too_low":"{{ packageName }} v{{ latestVersion }} wymaga Node.js w wersji v{{ minVersion }} lub nowszej. Aktualnie u\u017Cywasz Node.js w wersji v{{ installedVersion }}.","plugins.compat.hb_too_low":"Wtyczka {{ pluginName }} powinna by\u0107 instalowana u\u017Cywaj\u0105c Homebridge w wersji v{{ minVersion }} lub nowszej. Aktualnie u\u017Cywasz Homebridge w wersji v{{ installedVersion }}.","plugins.compat.node_first":"Zaktualizuj Node.js przed aktualizacj\u0105 {{ packageName }} i spr\xF3buj ponownie.","plugins.compat.node_link":"Jak zaktualizowa\u0107 Node.js","plugins.compat.node_too_low":"Wtyczka {{ pluginName }} powinna by\u0107 instalowana u\u017Cywaj\u0105c Node.js w wersji v{{ minVersion }} lub nowszej. Aktualnie u\u017Cywasz Node.js w wersji v{{ installedVersion }}.","plugins.compat.title":"Sprawdzanie zgodno\u015Bci","plugins.config.load_error":"Nie uda\u0142o si\u0119 za\u0142adowa\u0107 konfiguracji wtyczki.","plugins.config.must_be_array":"Konfiguracja wtyczki musi by\u0107 typu array.","plugins.config.must_be_array_objects":"Konfiguracja wtyczki musi by\u0107 zbiorem obiekt\xF3w.","plugins.config.must_be_object":"Blok konfiguracyjny musi by\u0107 obiektem.","plugins.config.name_property":'Akcesorium musi mie\u0107 prawid\u0142owy atrybut "name"',"plugins.config.please_fix":"Prosz\u0119 naprawi\u0107 b\u0142\u0119dy walidacji przed dodaniem nowego bloku.","plugins.config.remove_error":"Nie uda\u0142o si\u0119 usun\u0105\u0107 konfiguracji wtyczki.","plugins.disable.error":"Nie uda\u0142o si\u0119 wy\u0142\u0105czy\u0107 wtyczki.","plugins.donate.button_not_verified":"Niezweryfikowana","plugins.donate.button_verified":"Zweryfikowana","plugins.donate.message_1":"Poniewa\u017C coraz wi\u0119cej u\u017Cytkownik\xF3w instaluje swoje wtyczki za po\u015Brednictwem interfejsu u\u017Cytkownika Homebridge, jest mniej prawdopodobne, \u017Ce odwiedzaj\u0105 stron\u0119 GitHub projekt\xF3w, na kt\xF3rej zazwyczaj wy\u015Bwietlane by\u0142yby sposoby wspierania programisty.","plugins.donate.message_2":"Dodanie link\xF3w do darowizn bezpo\u015Brednio w interfejsie u\u017Cytkownika Homebridge zapewnia u\u017Cytkownikom, \u017Ce wiedz\u0105, jak wspiera\u0107 programist\xF3w Homebridge, je\u015Bli chc\u0105 to zrobi\u0107.","plugins.donate.tile_donate_to":"Wspom\xF3\u017C {{ author }}","plugins.enable.error":"Nie uda\u0142o si\u0119 w\u0142\u0105czy\u0107 wtyczki.","plugins.manage.all_versions":"Wszystkie wersje","plugins.manage.child_bridge_restart":"Mostek podrz\u0119dny zosta\u0142 pomy\u015Blnie uruchomiony ponownie.","plugins.manage.child_bridge_restart_failed":"Restart mostka wtyczki nieudany, zrestartuj Homebridge r\u0119cznie.","plugins.manage.confirm_disable":"Czy na pewno chcesz wy\u0142\u0105czy\u0107 {{ pluginName }}?","plugins.manage.confirm_disable_accessory_1":"Wszelkie akcesoria wyeksponowane przez t\u0105 wtyczk\u0119 zostan\u0105 usuni\u0119te z ekranu akcesori\xF3w Homebridge UI i usuni\u0119te z HomeKit.","plugins.manage.confirm_disable_accessory_2":"Po ponownym w\u0142\u0105czeniu wtyczki akcesoria pojawi\u0105 si\u0119 ponownie w interfejsie Homebridge i HomeKit. Akcesoria strac\u0105 swoje dane HomeKit (takie jak powi\u0105zane sceny i automatyzacje).","plugins.manage.confirm_disable_platform_1":"Wszelkie akcesoria udost\u0119pnione przez t\u0119 wtyczk\u0119 zostan\u0105 usuni\u0119te z ekranu akcesori\xF3w Homebridge UI, ale pozostan\u0105 w HomeKit z etykiet\u0105 'Brak odpowiedzi'.","plugins.manage.confirm_disable_platform_2":"Po ponownym w\u0142\u0105czeniu wtyczki akcesoria pojawi\u0105 si\u0119 ponownie w interfejsie u\u017Cytkownika Homebridge i stan\u0105 si\u0119 ponownie kontrolowane w HomeKit. Akcesoria nie strac\u0105 swoich danych HomeKit (takich jak powi\u0105zane sceny i automatyzacja).","plugins.manage.confirm_enable":"Na pewno w\u0142\u0105czy\u0107 {{ pluginName }}?","plugins.manage.disable":"Wy\u0142\u0105cz","plugins.manage.enable":"W\u0142\u0105cz","plugins.manage.information":"Informacje wtyczki","plugins.manage.install":"Instaluj","plugins.manage.installed":"Zainstalowane","plugins.manage.json_config":"Konfiguracja JSON","plugins.manage.manage_version":"Zainstaluj inn\u0105 wersj\u0119","plugins.manage.manual_update_command":"Aby zaktualizowa\u0107 pakiet, otw\xF3rz wiersz polecenia Node.js jako administrator i uruchom nast\u0119puj\u0105ce polecenia:","plugins.manage.manual_update_required":"Wymagana r\u0119czna aktualizacja","plugins.manage.online_updates":"Aktualizacje online w systemie Windows nie s\u0105 wspierane. Musisz zaktualizowa\u0107 Config UI X r\u0119cznie po zatrzymaniu Homebridge.","plugins.manage.plugin_logs":"Log wtyczki","plugins.manage.release_notes":"Opis zmian","plugins.manage.scoped.error":"An error occurred. You can download the logs below.","plugins.manage.scoped.info":"For more information about scoped plugins and why to switch, see the wiki page {{ link }}.","plugins.manage.scoped.process":"This process will not affect your Homebridge/HomeKit accessories. You will not be able to cancel the process once it has started. It will:","plugins.manage.scoped.switch":"Switch To Scoped Plugin","plugins.manage.scoped.windows":"Online updates are not supported on Windows. You will need to install the new plugin and uninstall the old plugin manually.","plugins.manage.scoped.windows_service":'You should <span class="font-weight-bold">not</span> restart Homebridge until both steps are complete.',"plugins.manage.select_version":"Wybierz wersj\u0119 do instalacji","plugins.manage.thanks_for_updating":"Dzi\u0119kujemy za zainstalowanie najnowszej wersji interfejsu {{ pluginName }}.","plugins.manage.uninstall":"Odinstaluj","plugins.manage.uninstalled":"Odinstalowane","plugins.manage.unverified_message":"Niezweryfikowane wtyczki Homebridge wskazuj\u0105, \u017Ce nie zosta\u0142y poddane procesowi przegl\u0105du przez zesp\xF3\u0142 projektowy Homebridge. Brak weryfikacji niekoniecznie oznacza nieskuteczno\u015B\u0107 lub obawy dotycz\u0105ce bezpiecze\u0144stwa. Autorzy mogli zdecydowa\u0107 si\u0119 nie szuka\u0107 weryfikacji z r\xF3\u017Cnych powod\xF3w.","plugins.manage.unverified_subtitle":"{{ pluginName }} jest niezweryfikowana.","plugins.manage.unverified_title":"Niezweryfikowane wtyczki","plugins.manage.update":"Aktualizuj","plugins.manage.updated":"Zaktualizowane","plugins.manage.verified_message":"Wtyczki Homebridge oznaczone jako zweryfikowane zosta\u0142y sprawdzone przez zesp\xF3\u0142 Homebridge aby upewni\u0107 si\u0119, \u017Ce spe\u0142niaj\u0105 r\xF3\u017Cne wymagania, kt\xF3re zach\u0119caj\u0105 do najlepszych praktyk i bezproblemowego do\u015Bwiadczenia u\u017Cytkownika.","plugins.manage.verified_subtitle":"{{ pluginName }} jest zweryfikowana.","plugins.manage.verified_title":"Zweryfikowane wtyczki","plugins.node_update.continue":"Kontynuuj","plugins.placeholder_search_first":"U\u017Cyj paska wyszukiwania powy\u017Cej, aby znale\u017A\u0107 swoj\u0105 pierwsz\u0105 wtyczk\u0119.","plugins.placeholder_search_plugin":"Wyszukaj dost\u0119pne wtyczki\u2026","plugins.settings.custom.homebridge-gsh.label_account_linked":"Konto pod\u0142\u0105czone","plugins.settings.custom.homebridge-gsh.label_link_account":"Pod\u0142\u0105cz konto","plugins.settings.custom.homebridge-gsh.label_unlink_account":"Od\u0142\u0105cz konto","plugins.settings.custom.homebridge-gsh.message_about":"Wtyczka Homebridge Google Smart Home umo\u017Cliwia kontrol\u0119 akcesori\xF3w za pomoc\u0105 g\u0142o\u015Bnik\xF3w lub aplikacji mobilnej Google Home.","plugins.settings.custom.homebridge-gsh.message_account_link_required":"Aby w\u0142\u0105czy\u0107 t\u0105 funkcjonalno\u015B\u0107, musisz zalogowa\u0107 si\u0119 swoim kontem Google lub GitHub - pami\u0119taj aby u\u017Cy\u0107 tego samego konta dla Homebridge i aplikacji Google Home.","plugins.settings.custom.homebridge-gsh.message_homebridge_restart_required":"Serwer wymaga zrestartowania, aby zastosowa\u0107 zmiany.","plugins.settings.custom.homebridge-gsh.message_invalid_token":"Invalid account linking token in config.json","plugins.settings.deconz.dump_no_exist":"Homebridge deCONZ dump file does not exist yet.","plugins.settings.hue.dump_no_exist":"Homebridge Hue dump file does not exist yet.","plugins.settings.label_open_config_editor":"Otw\xF3rz edytor konfiguracji","plugins.settings.message_consult_documentation":"Sprawd\u017C na stronie wsparcia tej wtyczki, jak j\u0105 poprawnie skonfigurowa\u0107.","plugins.settings.message_manual_config_required":"Ta wtyczka musi by\u0107 skonfigurowana r\u0119cznie z u\u017Cyciem wbudowanego edytora.","plugins.settings.plugin_config_saved":"Zapisano konfiguracj\u0119 wtyczki","plugins.settings.restart_required":"Zrestartuj serwer, aby zastosowa\u0107 zmiany.","plugins.settings.title_settings":"Ustawienia","plugins.status_disabled":"Wy\u0142\u0105czony","plugins.status_installed":"Zainstalowana","plugins.toast_failed_to_load_plugin_schema":"Nie uda\u0142o si\u0119 za\u0142adowa\u0107 schematu konfiguracji wtyczki.","plugins.toast_failed_to_load_plugins":"Nie uda\u0142o si\u0119 za\u0142adowa\u0107 wtyczek","plugins.uninstall_bridge_error":"Nie uda\u0142o si\u0119 usun\u0105\u0107 mostka podrz\u0119dnego.","plugins.uninstall_remove_config_required":"Po ca\u0142kowitym usuni\u0119ciu wtyczki, upewnij si\u0119, \u017Ce usuni\u0119to jej konfiguracj\u0119 w pliku config.json przed zrestartowaniem Homebridge.","plugins.uninstall_remove_confirmation":"Na pewno odinstalowa\u0107 {{ pluginName }}?","plugins.uninstall_remove_plugin_config":"Usun\u0105\u0107 r\xF3wnie\u017C konfiguracj\u0119 tej wtyczki?","plugins.uninstall_unpair_child_bridge":"Roz\u0142\u0105czy\u0107 mostek?","plugins.uninstall_unpair_child_bridges":"Roz\u0142\u0105czy\u0107 mostki wtyczki (ilo\u015B\u0107: {{ count }})?","reset.accessory_reset":"Resetowanie akcesori\xF3w","reset.action_is_irreversible":"Ta czynno\u015B\u0107 jest nieodwracalna! Przeczytaj uwa\u017Cnie, zanim przejdziesz dalej.","reset.bridges.desc":"Je\u015Bli masz problem z parowaniem Homebridge, zewn\u0119trznego akcesorium lub mostku podrz\u0119dnego z HomeKit, mo\u017Ce by\u0107 konieczne roz\u0142\u0105czenie pary z HomeKit aby rozpocz\u0105\u0107 od nowa.","reset.bridges.empty":"Nie masz \u017Cadnych mostk\xF3w do od\u0142\u0105czenia z HomeKit.","reset.bridges.title":"Mostki","reset.bridges_all.desc":"Od\u0142\u0105cz wszystkie mostki z HomeKit. Obejmuje to g\u0142\xF3wny mostek Homebridge, mostki podrz\u0119dne i mostki do akcesori\xF3w zewn\u0119trznych.","reset.bridges_all.list_1":"Spowoduje to roz\u0142\u0105czenie mostku Homebridge, wszystkich mostk\xF3w podrz\u0119dnych i mostk\xF3w do zewn\u0119trznych akcesori\xF3w HomeKit.","reset.bridges_all.list_2":"Akcesoria b\u0119d\u0105 nadal wy\u015Bwietlane w HomeKit (jako brak odpowiedzi), dop\xF3ki mostki nie zostan\u0105 r\u0119cznie usuni\u0119te z HomeKit. Mo\u017Cesz to zrobi\u0107 w aplikacji Apple Home, uzyskuj\u0105c dost\u0119p do Ustawienia domu \u2192 Centra akcesori\xF3w i mostki \u2192 {Mostek} \u2192 Usu\u0144 mostek z domu.","reset.bridges_all.list_3":"Wszystkie akcesoria, sceny i automatyki Homebridge do HomeKit b\u0119d\u0105 musia\u0142y zosta\u0107 ponownie skonfigurowane po rozparowaniu.","reset.bridges_all.list_4":"Twoja nazwa u\u017Cytkownika i kod PIN Homebridge zostan\u0105 zmienione. Mo\u017Cesz zobaczy\u0107 nowe warto\u015Bci w konfiguracji Homebridge po rozparowaniu.","reset.bridges_all.title":"Roz\u0142\u0105cz wszystkie mostki","reset.bridges_single.desc":"Od\u0142\u0105cz pojedynczy mostek z HomeKit. Mo\u017Ce to by\u0107 mostek podrz\u0119dny lub mostek do zewn\u0119trznego akcesorium takiego jak kamera lub telewizor.","reset.bridges_single.list_1":"Podczas rozparowywania mostku, wszelkie akcesoria opublikowane przez ten mostek zostan\u0105 usuni\u0119te z pami\u0119ci podr\u0119cznej Homebridge.","reset.bridges_single.list_2":"Akcesoria stan\u0105 si\u0119 nieaktualne w HomeKit (pokazuj\u0105c brak odpowiedzi). Aby je usun\u0105\u0107, musisz r\u0119cznie usun\u0105\u0107 ten most z HomeKit. Mo\u017Cesz to zrobi\u0107 w aplikacji Apple Home z sekcji Ustawienia.","reset.bridges_single.list_3":"Nast\u0119pnie mo\u017Cesz spr\xF3bowa\u0107 ponownie sparowa\u0107 mostek je\u015Bli jest to wymagane.","reset.bridges_single.title":"Roz\u0142\u0105cz pojedynczy mostek","reset.cached_accessory_removed":"Akcesorium zosta\u0142o usuni\u0119te z pami\u0119ci podr\u0119cznej.","reset.clear_cache_all.desc":"Usu\u0144 wszystkie akcesoria z pami\u0119ci podr\u0119cznej.","reset.clear_cache_all.list_1":"Homebridge uruchomi si\u0119 ponownie a wszystkie istniej\u0105ce akcesoria zostan\u0105 usuni\u0119te z Homebridge i HomeKit.","reset.clear_cache_all.list_2":"Wszystkie powi\u0105zane dane HomeKit zostan\u0105 r\xF3wnie\u017C usuni\u0119te, w tym skojarzenia pokoi, sceny oraz automatyzacje, kt\xF3re u\u017Cywaj\u0105 tego akcesorium.","reset.clear_cache_all.list_3":"Po ponownym uruchomieniu Homebridge twoje wtyczki ponownie dodadz\u0105 wszelkie akcesoria, tak jakby wtyczka by\u0142a instalowana po raz pierwszy.","reset.clear_cache_all.title":"Usu\u0144 wszystkie akcesoria z pami\u0119ci podr\u0119cznej","reset.clear_cache_bridge.desc":"Usu\u0144 z pami\u0119ci podr\u0119cznej wszystkie akcesoria opublikowane przez mostek.","reset.clear_cache_bridge.empty":"Nie masz mostk\xF3w, z kt\xF3rych mo\u017Cna by usun\u0105\u0107 akcesoria.","reset.clear_cache_bridge.list_1":"Ta funkcja mo\u017Ce by\u0107 r\xF3wnie\u017C u\u017Cyta do zresetowania istniej\u0105cych akcesori\xF3w wtyczki w HomeKit. B\u0119d\u0105 one usuni\u0119te z Homebridge/HomeKit, a nast\u0119pnie ponownie dodane przez wtyczk\u0119 jako nowe akcesoria.","reset.clear_cache_bridge.list_2":"Szczeg\xF3\u0142y parowania i status mostku podrz\u0119dnego pozostan\u0105 takie same.","reset.clear_cache_bridge.title":"Usu\u0144 akcesoria mostku podrz\u0119dnego","reset.clear_cache_single.desc":"Usu\u0144 pojedyncze akcesorium z pami\u0119ci podr\u0119cznej.","reset.clear_cache_single.list_1":"Niekt\xF3re wtyczki nie czyszcz\u0105 po sobie prawid\u0142owo akcesori\xF3w. Je\u015Bli akcesorium, kt\xF3rego nie masz ju\u017C w Homebridge, jest nadal wy\u015Bwietlane w HomeKit, mo\u017Cesz je usun\u0105\u0107 z pami\u0119ci podr\u0119cznej.","reset.clear_cache_single.list_2":"Ta funkcja mo\u017Ce by\u0107 r\xF3wnie\u017C u\u017Cyta do zresetowania istniej\u0105cego akcesorium w HomeKit. Zostanie usuni\u0119te z Homebridge/HomeKit, a nast\u0119pnie ponownie dodane przez wtyczk\u0119 jako nowe akcesorium.","reset.clear_cache_single.list_3":"Podczas usuwania akcesorium z pami\u0119ci podr\u0119cznej wszystkie powi\u0105zane z nim dane HomeKit zostan\u0105 usuni\u0119te. Obejmuje to wszelkie powi\u0105zane sceny i automatyzacje, kt\xF3re u\u017Cywaj\u0105 tego akcesorium.","reset.clear_cache_single.list_4":"Akcesoria mo\u017Cna usun\u0105\u0107 tylko gdy Homebridge nie jest uruchomiony. Homebridge automatycznie uruchomi si\u0119 ponownie po usuni\u0119ciu ka\u017Cdego pojedy\u0144czego akcesorium. Je\u015Bli musisz usun\u0105\u0107 wiele akcesori\xF3w, b\u0105d\u017A cierpliwy i pozw\xF3l Homebridge na ponowne uruchomienie mi\u0119dzy ka\u017Cdym usuni\u0119ciem.","reset.clear_cache_single.title":"Usu\u0144 pojedyncze akcesorium z pami\u0119ci podr\u0119cznej","reset.delete_failed":"B\u0142\u0105d w trakcie usuwania akcesorium z pami\u0119ci podr\u0119cznej.","reset.delete_success":"Resetowanie Homebridge i czyszczenie pami\u0119ci podr\u0119cznej akcesori\xF3w zako\u0144czone sukcesem.","reset.error_message":"Nie mo\u017Cna za\u0142adowa\u0107 pami\u0119ci podr\u0119cznej akcesori\xF3w. Mo\u017Cesz nie mie\u0107 \u017Cadnych zbuforowanych akcesori\xF3w.","reset.failed_to_reset":"Nie uda\u0142o si\u0119 zresetowa\u0107 akcesori\xF3w. Sprawd\u017A dziennik log\xF3w.","reset.force_restart_hb_help_text":"U\u017Cyj tej akcji aby wymusi\u0107 pe\u0142ny restart na us\u0142udze hb-service.","reset.remove_cached_accessories_single_empty":"Nie posiadasz w pami\u0119ci podr\u0119cznej \u017Cadnych akcesori\xF3w do usuni\u0119cia.","reset.removing_cached_accessory_please_wait":"Usuwanie akcesorium z pami\u0119ci podr\u0119cznej, prosz\u0119 czeka\u0107\u2026","restart.child_bridge_list":"Prosz\u0119 ponownie uruchomi\u0107 te mostki podrz\u0119dne, aby zmiany mia\u0142y zastosowanie:","restart.child_bridges":"Zrestartuj mostek wtyczki aby zastosowa\u0107 zmiany.","restart.homebridge":"Zrestartuj Homebridge aby zastosowa\u0107 zmiany.","restart.label_restart_command_executed":"Komenda restartu wykonana","restart.please_wait_while_server_restarts":"Prosz\u0119 czeka\u0107, strona zostanie automatycznie od\u015Bwie\u017Cona po powrocie Homebridge do trybu online.","restart.server_is_taking_long_time_to_restart":"Restart Homebridge zajmuje wi\u0119cej czasu. Mo\u017Ce by\u0107 konieczny r\u0119czny restart.","restart.service_ready":"HB Service gotowy","restart.title_restart":"Restartowanie Homebridge","restart.toast_server_restart_error":"B\u0142\u0105d w trakcie restartu serwera","restart.toast_server_restart_timeout":"Homebridge potrzebuje wi\u0119cej czasu, aby powr\xF3ci\u0107 do trybu online","restart.toast_server_restarted":"Homebridge uruchomi\u0142 si\u0119 ponownie","restart.ui_online":"Homebridge UI gotowy","rpi.throttled.currently_message":"Raspberry Pi zg\u0142asza aktualnie za niskie napi\u0119cie - sprawd\u017A czy jest zasilane z odpowiedniego zasilacza. Zbyt niskie napi\u0119cie mo\u017Ce powodowa\u0107 niestabiln\u0105 prace i uszkodzi\u0107 kart\u0119 SD.","rpi.throttled.previously_message":"Raspberry Pi zg\u0142asza\u0142o zbyt niskie napi\u0119cie od ostatniego uruchomienia - sprawd\u017A czy jest zasilane z odpowiedniego zasilacza.","rpi.throttled.undervoltage_title":"Under Voltage","settings.cache.desc":"Homebridge utrzymuje pami\u0119\u0107 podr\u0119czn\u0105 z informacjami o akcesoriach aby nie by\u0142y one usuwane i ponownie dodawane do HomeKit za ka\u017Cdym razem gdy Homebridge uruchamia si\u0119 ponownie. Czasami pami\u0119\u0107 podr\u0119czna mo\u017Ce sta\u0107 si\u0119 niezsynchronizowana z rzeczywistymi akcesoriami w Homebridge.","settings.cache.title":"Akcesoria","settings.changes.saved":"Twoje zmiany zosta\u0142y zapisane i wymagaj\u0105 ponownego uruchomienia.","settings.datetime.incorrect":"Data i godzina na twoim serwerze Homebridge wydaj\u0105 si\u0119 by\u0107 nieprawid\u0142owe. Mo\u017Ce to spowodowa\u0107 nieoczekiwane problemy. Kliknij tutaj, aby uzyska\u0107 wi\u0119cej informacji.","settings.display.blue":"Niebieski","settings.display.bluegrey":"Niebiesko-szary","settings.display.brown":"Br\u0105zowy","settings.display.cyan":"Cyjan","settings.display.dark":"Ciemny","settings.display.deep_purple":"Deep Purple","settings.display.green":"Zielony","settings.display.grey":"Szary","settings.display.indigo":"Indygo","settings.display.lang":"J\u0119zyk","settings.display.light":"Jasny","settings.display.lighting_mode":"Motyw (jasny / ciemny)","settings.display.login_wallpaper":"Login Wallpaper","settings.display.login_wallpaper_desc":"A custom login wallpaper can be set by adding a <code>ui-wallpaper.jpg</code> file to your Homebridge storage directory, or by providing a full path to a local image file here.","settings.display.orange":"Pomara\u0144czowy","settings.display.pink":"R\xF3\u017Cowy","settings.display.purple":"Fioletowy","settings.display.red":"Czerwony","settings.display.teal":"Turkusowy","settings.display.temp_units":"Jednostka temperatury","settings.display.temp_units.c":"Celsius (\xB0C)","settings.display.temp_units.f":"Fahrenheit (\xB0F)","settings.display.theme":"Motyw (kolor)","settings.general.title_display":"Wygl\u0105d","settings.general.title_general":"Og\xF3lne","settings.mdns_advertiser":"Rozg\u0142aszacz mDNS","settings.mdns_advertiser_exp":"eksperymentalny","settings.mdns_advertiser_help":"Je\u015Bli masz problem z po\u0142\u0105czeniem Homebridge do HomeKit, spr\xF3buj u\u017Cy\u0107 alternatywnego rozg\u0142aszania mDNS.","settings.mdns_advertiser_not_connected":"Roz\u0142\u0105czony","settings.mdns_advertiser_rec":"zalecane","settings.network.label_interface_name":"Nazwa interfejsu","settings.network.label_ip_address":"Adres IP","settings.network.message_network_interface":"Je\u015Bli \u017Caden interfejs nie zostanie wybrany, Homebridge wybierze automatycznie.","settings.network.port_hb":"Homebridge Port","settings.network.port_hb_desc":"Port Homebridge. Musi by\u0107 mi\u0119dzy 1025 a 65533 i nie powinien by\u0107 taki sam jak port Homebridge UI.","settings.network.port_ui":"UI Port","settings.network.port_ui_desc":"Port Homebridge UI. Nie powinien by\u0107 taki sam jak port Homebridge.","settings.network.title_network":"Sie\u0107","settings.network.title_network_interfaces":"Interfejsy sieciowe","settings.service.debug_tooltip":"Niekt\xF3re wtyczki wymagaj\u0105 ustawienia zmiennej \u015Brodowiskowej DEBUG aby umo\u017Cliwi\u0107 rejestrowanie poziomu debugowania.","settings.service.node_tooltip":"Opcje uruchomieniowe Node.js dla procesu Homebridge. To pole powinno by\u0107 puste, chyba \u017Ce wiesz co robisz.","settings.startup.debug":"Tryb Homebridge Debug","settings.startup.debug_desc_v1":"Wy\u015Bwietlaj bardziej szczeg\xF3\u0142owe logi systemu. To ustawienie dotyczy Homebridge, a tak\u017Ce wszystkich mostk\xF3w podrz\u0119dnych. Tej opcji mog\u0105 te\u017C wymaga\u0107 niekt\xF3re wtyczki aby wy\u015Bwietla\u0107 bardziej szczeg\xF3\u0142owe logi.","settings.startup.debug_desc_v2":"Wy\u015Bwietlaj bardziej szczeg\xF3\u0142owe logi systemu. To ustawienie dotyczy Homebridge. Ustawienia dla ka\u017Cdego mostka podrz\u0119dnego mo\u017Cna znale\u017A\u0107 w konfiguracji mostka podrz\u0119dnego dla danej wtyczki. Tej opcji mog\u0105 te\u017C wymaga\u0107 niekt\xF3re wtyczki aby wy\u015Bwietla\u0107 bardziej szczeg\xF3\u0142owe logi.","settings.startup.insecure":"Tryb Homebridge 'Insecure'","settings.startup.insecure_desc":"Aby sterowa\u0107 akcesoriami za pomoc\u0105 interfejsu u\u017Cytkownika Homebridge, musisz uruchomi\u0107 Homebridge w trybie niezabezpieczonym (Insecure).","settings.startup.keep_accessories":"Zachowaj akcesoria odinstalowanych wtyczek","settings.startup.keep_accessories_desc":"Akcesoria wtyczek (tych typu platform) pozostan\u0105 w pami\u0119ci podr\u0119cznej nawet po odinstalowaniu wtyczki. Mo\u017Ce to by\u0107 przydatne je\u015Bli planujesz ponownie zainstalowa\u0107 wtyczk\u0119 w przysz\u0142o\u015Bci.","settings.title_startup_options":"Opcje specjalne","settings.unpair_bridge.load_error":"Nie mo\u017Cna by\u0142o za\u0142adowa\u0107 sparowanych mostk\xF3w.","settings.unpair_bridge.unpair_error":"Nie uda\u0142o si\u0119 roz\u0142\u0105czy\u0107 mostku.","setup.button_get_started":"Rozpocznij","setup.create_account":"Utw\xF3rz konto","setup.create_account_reason":"Has\u0142o administratora do interfejsu Homebridge musi zosta\u0107 utworzone. Oboj\u0119tnie czy Homebridge jest dost\u0119pny tylko w sieci lokalnej, wymagane jest zabezpieczenie go przed nieautoryzowanym dost\u0119pem.","setup.open_dashboard":"Otw\xF3rz dashboard","setup.welcome_to_homebridge":"Witaj w Homebridge",setup_wizard_message_complete_message:"Procedura zosta\u0142a zako\u0144czona, mo\u017Cesz zacz\u0105\u0107 u\u017Cywa\u0107 Homebridge.",setup_wizard_message_complete_title:"Gratulacje!",setup_wizard_message_restore:"Przywr\xF3\u0107 z backupu","status.code_scan":"Zeskanuj aby doda\u0107 do HomeKit","status.cpu.load":"Obci\u0105\u017Cenie","status.cpu.temp":"Temperatura","status.cpu.title_cpu":"CPU","status.credits.title":"Tw\xF3rcy","status.homebridge.checking":"Sprawdzanie aktualizacji\u2026","status.homebridge.up_to_date":"Aktualne","status.memory.label_available":"Dost\u0119pna","status.memory.label_total":"Ca\u0142kowita","status.memory.title_memory":"Pami\u0119\u0107","status.network.received_per_second":"Odebrano","status.network.sent_per_second":"Wys\u0142ano","status.network.title_network":"Aktywno\u015B\u0107 sieci","status.plugin_out_of_date":"Wtyczka nieaktualna","status.plugins_out_of_date":"Wtyczki nieaktualne","status.services.label_not_running":"Nieuruchomiony","status.services.label_running":"Uruchomiony","status.services.updates":"Update Centre","status.uptime.title_uptime":"Czas pracy","status.widget.accessories.choose_accessories":"Wybierz to akcesorium, aby wy\u015Bwietli\u0107 go jako wid\u017Cet.","status.widget.add.label_pairing_code":"Kod parowania","status.widget.bridge.restart_error":"Nie uda\u0142o si\u0119 ponownie uruchomi\u0107 mostu podrz\u0119dnego.","status.widget.clock":"Zegar","status.widget.clock_dateformat":"Format daty","status.widget.clock_timeformat":"Format czasu","status.widget.font_size":"Rozmiar czcionki","status.widget.font_weight":"Grubo\u015B\u0107 czcionki","status.widget.hide_on_mobile":"Ukryj na urz\u0105dzeniach mobilnych","status.widget.homebridge_logs":"Homebridge log","status.widget.info":"Informacje o systemie","status.widget.info.config_path":"\u015Acie\u017Cka konfiguracji","status.widget.info.disabled":"Wy\u0142\u0105czony","status.widget.info.docker":"Docker","status.widget.info.glibc_message":"Ten komunikat wskazuje, \u017Ce tw\xF3j system operacyjny nie obs\u0142uguje nowszych wersji Node.js. Aby rozwi\u0105za\u0107 ten problem i m\xF3c zainstalowa\u0107 zaktualizowane wersje Node.js w przysz\u0142o\u015Bci, trzeba zaktualizowa\u0107 system do nowszej wersji.","status.widget.info.glibc_title":"Aktualizacja OS","status.widget.info.hostname":"Nazwa hosta","status.widget.info.ipv4":"IPv4","status.widget.info.ipv6":"IPv6","status.widget.info.no":"Nie","status.widget.info.node_unsupp":"Unsupported","status.widget.info.node_unsupp_message":"U\u017Cywasz wersji Node.js kt\xF3ra nie jest oficjalnie wspierana przez Homebridge. Powiniene\u015B u\u017Cy\u0107 wersji oficjalnie wspieranej.","status.widget.info.node_unsupp_title":"Niewspierana wersja Node.js","status.widget.info.node_update_message":"Homebridge wymaga zainstalowania Node.js w systemie do dzia\u0142ania. Od czasu do czasu trzeba zaktualizowa\u0107 Node.js, aby w\u0142\u0105czy\u0107 obs\u0142ug\u0119 nowych funkcji. Homebridge (i zweryfikowane wtyczki) obs\u0142uguj\u0105 wszystkie aktualne wersje Active i Maintenance LTS Node.js.","status.widget.info.node_update_title":"Aktualizacja Node.js","status.widget.info.nodejs_path":"\u015Acie\u017Cka Node.js","status.widget.info.nodejs_version":"Node.js","status.widget.info.os":"System","status.widget.info.plugin_path":"\u015Acie\u017Cka wtyczki","status.widget.info.service_mode":"Tryb serwisowy","status.widget.info.service_user":"U\u017Cytkownik","status.widget.info.servicemode_message":"Tryb autonomiczny nie jest ju\u017C zalecany. Konfiguracja Homebridge i Homebridge UI z hb-service ma te same zalety co tryb autonomiczny, ale jest znacznie \u0142atwiejsza w konfiguracji i utrzymaniu.","status.widget.info.servicemode_title":"Tryb serwisowy","status.widget.info.storage_path":"\u015Acie\u017Cka zapisu","status.widget.info.synology_package":"Paczka Synology","status.widget.info.timezone":"Strefa czasowa","status.widget.info.yes":"Tak","status.widget.network.history_items":"Elementy historii","status.widget.network.items":"elementy","status.widget.network.network_interface":"Interfejs sieciowy","status.widget.network.none_selected":"None selected in settings - using default.","status.widget.network.refresh_interval":"Cz\u0119stotliwo\u015B\u0107 od\u015Bwie\u017Cania","status.widget.network.refresh_note":"Od\u015Bwie\u017C stron\u0119 aby zobaczy\u0107 zmiany.","status.widget.network.seconds":"sekundy","status.widget.qr_paired":"Sparowany","status.widget.qr_unpaired":"Niesparowany","status.widget.show_hide":"Show/Hide Widgets","status.widget.title_manage_widget":"Ustawienia wid\u017Cetu","status.widget.uptime.label_process":"Procesy","status.widget.uptime.label_server":"Serwer","status.widget.weather.label_config_required_help":"Prosz\u0119 wybra\u0107 swoje miasto w ustawieniach wid\u017Cetu.","status.widget.weather.label_search_for_your_city":"Wyszukaj swoje miasto:","status.widget.weather.title_weather":"Pogoda","support.dev.api":"Homebridge API","support.dev.api_hap":"HAP-NodeJS API","support.dev.api_hap_sub":"HAP-NodeJS jest implementacj\u0105 HomeKit Accessory Server, jak okre\u015Blono w HomeKit Accessory Protocol (HAP), kt\xF3ry jest zdefiniowany przez Apple jako cz\u0119\u015B\u0107 HomeKit Framework.","support.dev.api_sub":"Homebridge to lekki serwer Node.js, kt\xF3ry mo\u017Cesz uruchomi\u0107 w sieci domowej by emulowa\u0107 HomeKit Accessory Protocol (HAP).","support.dev.item_swagger":"Dokumenty Swagger","support.dev.item_swagger_sub":"Homebridge REST API umo\u017Cliwia interakcj\u0119 z serwerem Homebridge za pomoc\u0105 \u017C\u0105da\u0144 HTTP.","support.dev.template":"Repozytorium szablonu wtyczki","support.dev.template_sub":"Szablon wtyczki Homebridge, kt\xF3ry mo\u017Ce by\u0107 u\u017Cywany jako podstawa aby pom\xF3c Ci rozpocz\u0105\u0107 tworzenie w\u0142asnej wtyczki.","support.dev.title":"Deweloper","support.dev.verified":"Zweryfikowane przez Homebridge","support.dev.verified_sub":"Program weryfikacji przez Homebridge pozwala tw\xF3rcom wtyczek na sprawdzenie i zatwierdzenie ich przez zesp\xF3\u0142 projektowy Homebridge.","support.links.discord":"Serwer Discord","support.links.discord_sub":"Do\u0142\u0105cz do czatu Homebridge Discord aby rozmawia\u0107 z innymi u\u017Cytkownikami i programistami.","support.links.documentation":"Dokumentacja","support.links.documentation_sub":"Dokumentacja Homebridge zawiera wiele informacji o tym jak zacz\u0105\u0107 korzysta\u0107 z Homebridge i typowych rozwi\u0105za\u0144 problem\xF3w.","support.links.issue":"Zg\u0142o\u015B b\u0142\u0105d / sugesti\u0119","support.links.issue_sub":"Je\u015Bli masz problem z Homebridge, otw\xF3rz nowy problem na GitHub. Ta opcja nie powinna by\u0107 u\u017Cywana w przypadku problem\xF3w z konkretnymi wtyczkami.","support.links.reddit":"Spo\u0142eczno\u015B\u0107 Reddit","support.links.reddit_sub":"Reddit Homebridge to \u015Bwietne miejsce aby podzieli\u0107 si\u0119 konfiguracj\u0105 Homebridge i poprosi\u0107 o pomoc.","support.links.title":"Przydatne linki","support.title":"Wsparcie","toast.no_auth":"Only administrators may access the requested page.","toast.title_error":"B\u0142\u0105d","toast.title_success":"Powodzenie","toast.title_warning":"Ostrze\u017Cenie","users.button_add_new_user":"Dodaj nowego u\u017Cytkownika","users.button_add_user":"Dodaj u\u017Cytkownika","users.label_admin_user":"Administrator","users.label_confirm_password":"Potwierd\u017A has\u0142o","users.label_full_name":"Pe\u0142na nazwa","users.label_new_password":"Nowe has\u0142o","users.label_password":"Has\u0142o","users.label_username":"Nazwa u\u017Cytkownika","users.setup_2fa":"Konfiguruj 2FA","users.setup_2fa_activate_error":"Wyst\u0105pi\u0142 b\u0142\u0105d podczas aktywacji 2FA.","users.setup_2fa_cannot_setup_2fa":"Nie mo\u017Cna skonfigurowa\u0107 2FA","users.setup_2fa_disable":"Wy\u0142\u0105cz 2FA","users.setup_2fa_disable_current_password":"Wprowad\u017A aktualne has\u0142o, aby wy\u0142\u0105czy\u0107 2FA:","users.setup_2fa_disable_success":"2FA zosta\u0142o wy\u0142\u0105czone.","users.setup_2fa_enable":"W\u0142\u0105cz 2FA","users.setup_2fa_enable_error":"Wyst\u0105pi\u0142 b\u0142\u0105d podczas konfigurowania 2FA.","users.setup_2fa_enabled_success":"2FA zosta\u0142o w\u0142\u0105czone.","users.setup_2fa_enter_code":"Wprowad\u017A kod z aplikacji uwierzytelniaj\u0105cej:","users.setup_2fa_scan_qr_code":"Zeskanuj kod QR w aplikacji uwierzytelniaj\u0105cej:","users.setup_2fa_server_time_out":"Zegar serwera jest przesuni\u0119ty o {{ timeDiffError }} ms. Dopuszczalne maksimum to +/-5000 ms.","users.setup_2fa_warning":"Uwierzytelnianie dwusk\u0142adnikowe wymaga serwera Homebridge, aby mie\u0107 aktualny czas i dat\u0119 w trakcie logowania. Je\u015Bli tw\xF3j server nie b\u0119dzie w stanie utrzyma\u0107 poprawnego czasu, mo\u017Ce nie by\u0107 mo\u017Cliwe w\u0142\u0105czenie 2FA lub mo\u017Ce wyst\u0105pi\u0107 ryzyko zablokowania interfejsu Config UI X.","users.title_add_user":"Dodaj u\u017Cytkownika","users.title_edit_user":"Edytuj u\u017Cytkownika","users.title_users":"U\u017Cytkownicy","users.toast_added_new_user":"Dodaj u\u017Cytkownika","users.toast_failed_to_add_user":"B\u0142\u0105d dodawania u\u017Cytkownika","users.toast_failed_to_delete_user":"B\u0142\u0105d usuwania u\u017Cytkownika","users.toast_updated_user":"U\u017Cytkownik zaktualizowany","users.toast_user_deleted":"U\u017Cytkownik usuni\u0119ty"}});var Ms=y((Vd,wa)=>{wa.exports={"accessories.button_add_room":"Adicionar Cena","accessories.button_hidden_hide":"Hide Hidden","accessories.button_hidden_show":"Show Hidden","accessories.control.auto":"Autom\xE1tico","accessories.control.away":"Ausente","accessories.control.battery_charging":"Carregando","accessories.control.battery_notchargeable":"N\xE3o Suporta Carregamento","accessories.control.battery_notcharging":"N\xE3o Est\xE1 Carregando","accessories.control.brightness":"Luminosidade","accessories.control.closed":"Fechado","accessories.control.closing":"Fechando","accessories.control.cool":"Frio","accessories.control.default_room":"Cena Padr\xE3o","accessories.control.default_running_time":"Tempo de Funcionamento Padr\xE3o","accessories.control.dehumidifying":"Desumidificando","accessories.control.detected":"Detected","accessories.control.drag_here":"Arrasque Aqui","accessories.control.fan":"Ventilador","accessories.control.heat":"Aquecer","accessories.control.home":"Casa","accessories.control.humidifying":"Umidificando","accessories.control.jammed":"Entupido","accessories.control.light":"Luz","accessories.control.locked":"Fechado","accessories.control.mute":"Sem Som","accessories.control.night":"Noite","accessories.control.not_detected":"Not Detected","accessories.control.not_mute":"Com Som","accessories.control.off":"Desligado","accessories.control.on":"Ligado","accessories.control.open":"Aberto","accessories.control.opening":"Abrindo","accessories.control.rotation_speed":"Velocidade de Rota\xE7\xE3o","accessories.control.running":"Em Funcionamento","accessories.control.speaker_volume":"Volume","accessories.control.stopped":"Parado","accessories.control.target":"Alvo","accessories.control.target_humidity":"Umidade Alvo","accessories.control.target_temperature":"Temperatura Alvo","accessories.control.triggered":"Acionado","accessories.control.unknown":"Desconhecido","accessories.control.unlocked":"Desbloqueado","accessories.control_disabled":"Controle de Acess\xF3rios do Homebridge Desativado","accessories.hide_this_accessory":"Esconder este acess\xF3rio","accessories.message_for_more_information":"para mais informa\xE7\xE3o.","accessories.message_must_use_insecure_mode":"Para controlar os acess\xF3rios \xE9 necess\xE1rio executar o Homebridge em modo inseguro.","accessories.message_please_see":"Por favor veja","accessories.name":"Nome","accessories.room_name":"Nome da Cena","accessories.rooms_not_appear_in_homekit":"As cenas criadas aqui n\xE3o aparecem no HomeKit, s\xE3o apenas para a organiza\xE7\xE3o dos acess\xF3rios dentro do Homebridge UI.","accessories.settings_link":"You can access the Homebridge Settings at any time from the cog icon in the side menu.","accessories.show_on_dashboard":"Mostrar na Dashboard","accessories.title_accessories":"Acess\xF3rios","backup.backup_delete_failed":"Backup deletion failed. See logs for details.","backup.backup_download_failed":"Falha ao Baixar o Backup","backup.backup_exceeds_max_size":"Backup ({{ backupSize }}) exceeds maximum restore file size of {{ maxBackupSizeText }}","backup.backup_help_one":"Baixar um arquivo de backup de todo o ambiente Homebridge. Isto ir\xE1 fazer backup de todos os conte\xFAdos do diret\xF3rio de armazenamento do Homebridge, que mais tarde poder\xE1 ser restaurado em qualquer plataforma capaz de executar o Homebridge UI.","backup.backup_help_two":"Plugins que n\xE3o est\xE3o no npm ou plugins instalados diretamente do GitHub n\xE3o v\xE3o ser gravados nem restaurados.","backup.backup_restored":"Arquivo de Backup Restaurado","backup.backup_warning":"Os arquivos de backup possuem informa\xE7\xF5es privadas e n\xE3o devem de ser compartilhados com outras pessoas.","backup.button_restore_backup":"Restaurar Backup","backup.label_choose_backup_file_to_restore":"Escolha o arquivo de backup para restaurar\u2026","backup.label_uploading":"Enviando\u2026","backup.load_error":"Failed to load config backup.","backup.now":"Now","backup.restore_failed":"Falha na Restaura\xE7\xE3o","backup.restore_help_one":"Restaurar um arquivo backup feito anteriormente usando o Homebridge UI. A configura\xE7\xE3o do Homebridge, acess\xF3rios em cache, emparelhamentos com o HomeKit e as contas de utilizador do Homebridge UI ser\xE3o restauradas. Ser\xE1 efetuado o download de qualquer plugin do Homebridge a partir do registo do npm.","backup.restore_help_two":"Vai ser necess\xE1rio fazer login no Homebridge UI depois de fazer uma restaura\xE7\xE3o usando as credenciais da instancia restaurada.","backup.restore_max_size":"You can restore a backup archive up to {{ maxBackupSizeText }} in size.","backup.restore_warning":"Restaurar de um backup ir\xE1 sobrescrever irreversivelmente a atual configura\xE7\xE3o do Homebridge.","backup.scheduled_backup_time":"Um backup completo da inst\xE2ncia do Homebridge \xE9 automaticamente criado todos os dias \xE0s {{ backupTime }} e mantido por {{ dayCount }} dias.","backup.title_backup":"Backup","child_bridge.about":"Homebridge permite que voc\xEA execute a plataforma ou acess\xF3rio de seu plugin como uma Ponte Filha isolada. Isso pode melhorar a resposta e confiabilidade do Homebridge.","child_bridge.bridge_connect":"Connect to HomeKit","child_bridge.bridge_settings":"Configura\xE7\xE3o da Ponte","child_bridge.bridges":"HomeKit Bridges","child_bridge.bridges_paired":"Cada plataforma ou acess\xF3rio como ponte filha dever\xE1 ser pareado com o HomeKit separadamente.","child_bridge.config.debug":"Debug Mode","child_bridge.config.description":"These fields are not required, but can be used to override the HomeKit configuration for this bridge.","child_bridge.config.firmware":"Firmware Version","child_bridge.config.header":"Configuration","child_bridge.config.manufacturer":"Manufacturer","child_bridge.config.model":"Model","child_bridge.config.name":"Name","child_bridge.must_configure_plugin":"Voc\xEA precisa configurar esse plugin primeiro antes de gerenciar as configura\xE7\xF5es de Ponte.","child_bridge.reset_accessories":"Reset Accessories","child_bridge.reset_accessories_list":"Choose from which child bridges you want to reset the accessories below:","child_bridge.restart":"Restart Child Bridges","child_bridge.restart_homebridge":"Reinicie o Homebridge para finalizar a configura\xE7\xE3o dessa ponte filha.","child_bridge.restart_plural":"Restart Child Bridges","child_bridge.return_to_pair":"Retorne \xE0 essa tela depois que o Homebridge reiniciar para ver o codigo QR de pareamento.","child_bridge.select_type":"Selecione quais plataformas ou acess\xF3rios voc\xEA deseja executar como uma ponte filha","child_bridge.setup":"Set Up Child Bridge","child_bridge.start":"Start Child Bridge","child_bridge.start_plural":"Start Child Bridges","child_bridge.stop":"Stop Child Bridge","child_bridge.stop_plural":"Stop Child Bridges","child_bridge.wiki_link":"Aprenda mais sobre pontes filha","config.config_accessory_must_be_array":"os acess\xF3rios precisam ser um array []","config.config_bridge_missing":"Est\xE3o faltando as defini\xE7\xF5es da ponte","config.config_invalid_json":"A configura\xE7\xE3o contem JSON inv\xE1lido","config.config_platform_must_be_array":"as plataformas precisam ser um array []","config.config_username_error":"O nome de utilizador da ponte precisa conter 6 pares de caracteres hexadecimais (A-F 0-9) separados por h\xEDfen","config.error_blocks_objects":"All {{ type }} blocks must be objects.","config.error_blocks_type":"All {{ type }} blocks must contain the {{ type }} attribute.","config.error_string_array":"Each item in the {{ key }} array must be a string.","config.error_string_type":"The {{ type }} attribute must be a string.","config.failed_to_save_config":"Falha ao gravar a configura\xE7\xE3o","config.restore.confirm":"Clique em Salvar caso queira restaurar este backup.","config.restore.copy_to_editor":"Copiar para o Editor","config.restore.no_backups":"Sem Backups","config.restore.title_restore_homebridge_backup":"Restaurar Backup das Configura\xE7\xF5es do Homebridge","config.restore.toast_backups_deleted":"Todos os backups foram removidos","config.title_backup_loaded":"Backup Carregado","form.button_cancel":"Cancelar","form.button_close":"Fechar","form.button_delete":"Apagar","form.button_disable":"Disable","form.button_download":"Download","form.button_edit":"Editar","form.button_enable":"Enable","form.button_hide":"Hide","form.button_lock":"Lock","form.button_more_info":"More Info","form.button_remove":"Remove","form.button_reset":"Reset","form.button_restore":"Restaurar","form.button_save":"Salvar","form.button_show":"Show","form.button_unlock":"Unlock","form.button_unpair":"Unpair","form.label_invalid":"Config validation failed - you can still save your changes.","form.label_invalid_strict":"Config validation failed - please review the form before saving.","form.label_valid":"Config validation passed.","form.select.auto":"Automatic (Use Browser Settings)","login.button_login":"Entrar","login.invalid_credentials":"Utilizador e/ou Senha Inv\xE1lida","login.label_2fa_code":"C\xF3digo de Autentica\xE7\xE3o de Dois Fatores","login.label_password":"Senha","login.label_username":"Usu\xE1rio","login.message_invalid_2fa_code":"O c\xF3digo introduzido est\xE1 incorreto ou expirado.","logs.download.error":"Failed to download log file.","logs.download_warning":"Os arquivos de LOG do homebridge podem conter informa\xE7\xF5es sens\xEDveis(como tokens e senhas) e devem ser revisados antes de serem compartilhados.","logs.log_file_truncated":"Os arquivos de log ser\xE3o truncados.","logs.title_download_log_file":"Baixar arquivo de LOG","logs.title_truncate_log_file":"Truncar arquivo de LOG","logs.truncate.error":"Failed to truncate log file.","logs.truncate_log_warning":"Esta a\xE7\xE3o ir\xE1 remover os antigos arquivos de LOG. Tem certeza de que quer continuar?","menu.config_json_editor":"JSON Config","menu.docker.restart_container":"Reiniciar o Container","menu.docker.startup_script":"Script de Inicializa\xE7\xE3o","menu.docker.terminal":"Terminal","menu.hbrestart.confirm_hb":"Restart Homebridge","menu.hbrestart.confirm_ui":"Restart HB Service & UI","menu.hbrestart.title":"Restart Homebridge","menu.label_accessories":"Acess\xF3rios","menu.label_plugins":"Plugins","menu.label_settings":"Settings","menu.label_settings_advanced":"UI Advanced Settings","menu.label_status":"Status","menu.linux.label_logs":"Logs","menu.linux.label_restart_server":"Reiniciar o Servidor","menu.linux.label_shutdown_server":"Desligar o Servidor","menu.linux.label_terminal":"Teminal","menu.restart.title":"Power Options","menu.settings.title":"Settings","menu.tooltip_logout":"Sair","menu.tooltip_restart":"Reiniciar","menu.tooltip_user_accounts":"Contas de Usu\xE1rios","menu.tooltip_view_logs":"Ver LOGS","platform.docker.container_restarted":"Container do docker reiniciado","platform.docker.must_use_hashbang":"\xC9 necess\xE1rio usar a hashbang #!/bin/sh no script.","platform.docker.restart_required":"Vai ser necess\xE1rio reinicializar este container do docker para que as mudan\xE7as surtam efeito.","platform.docker.run_with_restart":"Verifique se voc\xEA est\xE1 executando o container do Docker com <code>--restart=always</code>","platform.docker.script_help":"Este script vai ser executado todas as vezes que o container do docker iniciar. Voc\xEA pode utilizar isto para instalar qualquer pacote extra que os plugins podem requerir como por exemplo o ffmpeg ou o libpcap-dev.","platform.docker.script_saved":"Script de Inicializa\xE7\xE3o Gravado","platform.docker.server_long_time":"A reinicializa\xE7\xE3o do servidor est\xE1 a demorando muito tempo. Talvez voc\xEA ter\xE1 de intervir manualmente no container para subir o servidor.","platform.docker.title_restarting":"Reiniciando o Container do Docker","platform.linux.long_time":"A reinicializa\xE7\xE3o est\xE1 demorando muito tempo. Talvez seja nescess\xE1ria uma interven\xE7\xE3o manual para que o mesmo volte a estar online.","platform.linux.restart":"Por favor aguarde, esta pagina ir\xE1 automaticamente atualizar quando o Homebridge estiver online novamente.","platform.linux.restarting_server":"Reiniciando o servidor","platform.linux.server_restart_error":"Ocorreu um erro ao enviar o comando de reinicializa\xE7\xE3o para o servidor","platform.linux.server_restarted":"O Servidor foi Reiniciado","platform.linux.server_taking_long_time":"O servidor est\xE1 demorando muito tempo para ficar online novamente","platform.linux.server_will_power_down":"O servidor desligar\xE1 brevemente.","platform.linux.shutting_down_server":"Desligando o Servidor","platform.version.restart_required":"Homebridge UI v{{ uiVersion }} foi instalado, mas o servi\xE7o do servidor ainda est\xE1 rodando a vers\xE3o v{{ serverVersion }}.","platform.version.service_restart_required":"Reinicializa\xE7\xE3o Necess\xE1ria","plugins.bridge.action_error":"Failed to {{ action }} child bridge(s).","plugins.button_homepage":"Plugin Homepage","plugins.button_set_up":"Set Up","plugins.button_settings":"Defini\xE7\xF5es","plugins.button_uninstall":"Desinstalar","plugins.button_update":"Atualizar","plugins.compat.are_you_sure":"Are you sure you want to continue anyway?","plugins.compat.hb_node_too_low":"O {{ packageName }} v{{ latestVersion }} requer Node.js v{{ minVersion }} ou posterior. Voc\xEA est\xE1 utilizando o Node.js {{ installedVersion }}.","plugins.compat.hb_too_low":"\xC9 recomendado executar o plugin {{ pluginName }} na vers\xE3o do Homebridge v{{ minVersion }} ou posterior. Voc\xEA est\xE1 utilizando o Homebridge v{{ installedVersion }}.","plugins.compat.node_first":"Por favor atualize o Node.js antes de atualizar o {{ packageName }}.","plugins.compat.node_link":"How To Update Node.js","plugins.compat.node_too_low":"\xC9 recomendado executar o plugin {{ pluginName }} na vers\xE3o do Node.js v{{ minVersion }} ou posterior. Voc\xEA est\xE1 utilizando o Node.js {{ installedVersion }}.","plugins.compat.title":"Compatibility Check","plugins.config.load_error":"Failed to load plugin config.","plugins.config.must_be_array":"Plugin config must be an array.","plugins.config.must_be_array_objects":"Plugin config must be an array of objects.","plugins.config.must_be_object":"Config block must be an object.","plugins.config.name_property":'Accessory must have a valid "name" attribute',"plugins.config.please_fix":"Please fix validation errors before adding a new block.","plugins.config.remove_error":"Failed to remove plugin config.","plugins.disable.error":"Failed to disable plugin.","plugins.donate.button_not_verified":"Not Verified","plugins.donate.button_verified":"Verificado","plugins.donate.message_1":"As more users install their plugins through the Homebridge UI, they are less likely to visit the projects' GitHub page where the ways to support a developer would typically be displayed.","plugins.donate.message_2":"Adding donation links directly in the Homebridge UI ensures users know how to support Homebridge developers if they wish to do so.","plugins.donate.tile_donate_to":"Doar para {{ author }}","plugins.enable.error":"Failed to enable plugin.","plugins.manage.all_versions":"All versions","plugins.manage.child_bridge_restart":"Child bridge restarted successfully.","plugins.manage.child_bridge_restart_failed":"Plugin restart failed, please restart Homebridge manually.","plugins.manage.confirm_disable":"Are you sure you want to disable {{ pluginName }}?","plugins.manage.confirm_disable_accessory_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen and removed from HomeKit.","plugins.manage.confirm_disable_accessory_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and HomeKit. The accessories will lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_disable_platform_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen but remain in HomeKit with a 'No Response' label.","plugins.manage.confirm_disable_platform_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and become controllable again in HomeKit. The accessories will not lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_enable":"Voc\xEA tem certeza que deseja habilitar {{ pluginName }}?","plugins.manage.disable":"Desativar","plugins.manage.enable":"Ativar","plugins.manage.information":"Plugin Information","plugins.manage.install":"Instalar","plugins.manage.installed":"Instalado","plugins.manage.json_config":"JSON Config","plugins.manage.manage_version":"Instalar Vers\xE3o Anterior","plugins.manage.manual_update_command":"To upgrade the package run open a Node.js command prompt as an Administrator and run the following commands:","plugins.manage.manual_update_required":"Atualiza\xE7\xE3o Manual Necess\xE1ria","plugins.manage.online_updates":"As atualiza\xE7\xF5es autom\xE1ticas n\xE3o s\xE3o suportadas no Windows. \xC9 necess\xE1rio atualizar o Homebridge UI depois de parar o servi\xE7o do Homebridge.","plugins.manage.plugin_logs":"Plugin Logs","plugins.manage.release_notes":"Release Notes","plugins.manage.scoped.error":"An error occurred. You can download the logs below.","plugins.manage.scoped.info":"For more information about scoped plugins and why to switch, see the wiki page {{ link }}.","plugins.manage.scoped.process":"This process will not affect your Homebridge/HomeKit accessories. You will not be able to cancel the process once it has started. It will:","plugins.manage.scoped.switch":"Switch To Scoped Plugin","plugins.manage.scoped.windows":"Online updates are not supported on Windows. You will need to install the new plugin and uninstall the old plugin manually.","plugins.manage.scoped.windows_service":'You should <span class="font-weight-bold">not</span> restart Homebridge until both steps are complete.',"plugins.manage.select_version":"Selecione uma vers\xE3o para instalar","plugins.manage.thanks_for_updating":"Obrigado por instalar a ultima vers\xE3o do {{ pluginName }}.","plugins.manage.uninstall":"Desinstalar","plugins.manage.uninstalled":"Removido","plugins.manage.unverified_message":"Unverified Homebridge plugins indicate that they haven't undergone the review process by the Homebridge project team. Lack of verification does not necessarily imply inefficacy or safety concerns. Authors might have opted not to seek verification for various reasons.","plugins.manage.unverified_subtitle":"{{ pluginName }} is not verified","plugins.manage.unverified_title":"Unverified Plugins","plugins.manage.update":"Atualizar","plugins.manage.updated":"Atualizado","plugins.manage.verified_message":"Homebridge plugins that are marked as verified have been reviewed by the Homebridge project team to ensure they meet various requirements that encourage best practices and a trouble-free user experience.","plugins.manage.verified_subtitle":"{{ pluginName }} is verified","plugins.manage.verified_title":"Verified Plugins","plugins.node_update.continue":"Continue","plugins.placeholder_search_first":"Use the search bar above to find your first plugin","plugins.placeholder_search_plugin":"Procurar plugins para instala\xE7\xE3o\u2026","plugins.settings.custom.homebridge-gsh.label_account_linked":"Conta Vinculada","plugins.settings.custom.homebridge-gsh.label_link_account":"Vincular Conta","plugins.settings.custom.homebridge-gsh.label_unlink_account":"Desvincular Conta","plugins.settings.custom.homebridge-gsh.message_about":"O plugin Homebridge Google Smart Home permite que fa\xE7a o controle dos acess\xF3rios do Homebridge atrav\xE9s de um coluna inteligente com Google Home ou com o app do Google Home.","plugins.settings.custom.homebridge-gsh.message_account_link_required":"Para ativar esta funcionalidade \xE9 necess\xE1rio iniciar sess\xE3o com a sua conta Google ou GitHub; utilize a mesma conta ao adicionar a a\xE7\xE3o do Homebridge no app do Google Home.","plugins.settings.custom.homebridge-gsh.message_homebridge_restart_required":"\xC9 necess\xE1rio reiniciar o Homebridge para que as mudan\xE7as surtam efeito.","plugins.settings.custom.homebridge-gsh.message_invalid_token":"Invalid account linking token in config.json","plugins.settings.deconz.dump_no_exist":"Homebridge deCONZ dump file does not exist yet.","plugins.settings.hue.dump_no_exist":"Homebridge Hue dump file does not exist yet.","plugins.settings.label_open_config_editor":"Abrir editor de configura\xE7\xF5es","plugins.settings.message_consult_documentation":"Consulte a documenta\xE7\xE3o do plugin para ter instru\xE7\xF5es de como configur\xE1-lo corretamente.","plugins.settings.message_manual_config_required":"Este plugin precisa ser configurado manualmente utilizando o editor de configura\xE7\xF5es do Homebridge UI.","plugins.settings.plugin_config_saved":"Configura\xE7\xF5es do Plugin Salvas","plugins.settings.restart_required":"Reinicie o Homebridge para aplicar as mudan\xE7as.","plugins.settings.title_settings":"Defini\xE7\xF5es","plugins.status_disabled":"Desabilitado","plugins.status_installed":"Instalado","plugins.toast_failed_to_load_plugin_schema":"Failed to load plugin config schema.","plugins.toast_failed_to_load_plugins":"Falha ao carregar os plugins","plugins.uninstall_bridge_error":"Failed to remove child bridge.","plugins.uninstall_remove_config_required":"Se voc\xEA estiver removendo permanentemente este plugin, verifique se n\xE3o existe qualquer configura\xE7\xE3o deste plugin no arquivo config.json antes de reinicializar o Homebridge.","plugins.uninstall_remove_confirmation":"Voc\xEA tem certeza que deseja desinstalar {{ pluginName }}?","plugins.uninstall_remove_plugin_config":"Remover a configura\xE7\xE3o do plugin?","plugins.uninstall_unpair_child_bridge":"Unpair plugin child bridge?","plugins.uninstall_unpair_child_bridges":"Unpair {{ count }} plugin child bridges?","reset.accessory_reset":"Redefinir Acess\xF3rio do Homebridge","reset.action_is_irreversible":"Est\xE1 a\xE7\xE3o \xE9 irrevers\xEDvel. Por favor leia com cuidado antes de proceder.","reset.bridges.desc":"If you are having trouble pairing Homebridge, an external accessory or a child bridge to HomeKit, you may need to unpair it from HomeKit to start again.","reset.bridges.empty":"You have no bridges to unpair from HomeKit.","reset.bridges.title":"Bridges","reset.bridges_all.desc":"Unpair all bridges from HomeKit. This includes the main Homebridge bridge, child bridges and bridges for external accessories.","reset.bridges_all.list_1":"This will unpair the Homebridge bridge, all child bridges and bridges for external accessories from HomeKit.","reset.bridges_all.list_2":"Note that your accessories will continue to show in HomeKit as no response, until the bridges are manually removed from HomeKit. You can do this in the Home app, by accessing Home Settings \u2192 Home Hubs & Bridges \u2192 {Bridge} \u2192 Remove Bridge from Home.","reset.bridges_all.list_3":"All your Homebridge to HomeKit accessories, scenes and automations will need to be reconfigured after the unpairing.","reset.bridges_all.list_4":"The pin for pairing your Homebridge bridge to HomeKit will be changed. You can see the new values in your Homebridge config after the unpairing.","reset.bridges_all.title":"Unpair All Bridges","reset.bridges_single.desc":"Unpair a single bridge from HomeKit. This may be a child bridge or a bridge for an external accessory like a camera or TV.","reset.bridges_single.list_1":"When unpairing a bridge, any accessories published by this bridge will be removed from the Homebridge cache.","reset.bridges_single.list_2":"The accessories will become stale in HomeKit (showing no response). To remove them, you will need to manually remove this bridge from HomeKit. You can do this in the Home app from the Home Settings section.","reset.bridges_single.list_3":"You can then attempt to pair the bridge again if required.","reset.bridges_single.title":"Unpair Single Bridge","reset.cached_accessory_removed":"Acess\xF3rio em cache removido.","reset.clear_cache_all.desc":"Remove all accessories from the cache.","reset.clear_cache_all.list_1":"When clicking on the remove button below, Homebridge will restart and all your existing accessories will be removed from Homebridge and HomeKit.","reset.clear_cache_all.list_2":"All associated HomeKit data will also be removed, this includes room associations, scenes and automations that this accessory uses.","reset.clear_cache_all.list_3":"After Homebridge restarts, your plugins will re-add any accessories as if the plugin was being installed for the first time.","reset.clear_cache_all.title":"Remove All Accessories","reset.clear_cache_bridge.desc":"Remove all accessories published by a bridge from the cache.","reset.clear_cache_bridge.empty":"You have no bridges from which to remove accessories.","reset.clear_cache_bridge.list_1":"This function can be used to reset a plugin's existing accessories in HomeKit. They will be removed from Homebridge/HomeKit and then re-added by the plugin as new accessories.","reset.clear_cache_bridge.list_2":"The child bridge's pairing details and status will remain the same.","reset.clear_cache_bridge.title":"Remove Bridge Accessories","reset.clear_cache_single.desc":"Remove a single accessory from the cache.","reset.clear_cache_single.list_1":"Some plugins don't clean up after themselves properly! If an accessory that you no longer have in Homebridge is still being displayed in HomeKit, you can remove it from the cache.","reset.clear_cache_single.list_2":"This function can be used to reset an existing accessory in HomeKit. It will be removed from Homebridge/HomeKit and then re-added by the plugin as a new accessory.","reset.clear_cache_single.list_3":"When removing an accessory from the cache, all its associated HomeKit data will be removed. This includes any associated scenes and automations that use this accessory.","reset.clear_cache_single.list_4":"Accessories can only be removed when Homebridge is not running. Homebridge will automatically restart when clicking on each of the remove buttons below. If you need to remove multiple accessories, please be patient and allow Homebridge to restart between each removal.","reset.clear_cache_single.title":"Remove Single Accessory","reset.delete_failed":"Falha ao excluir o acess\xF3rio.","reset.delete_success":"Reinicializar o Homebridge e apagar cache do acess\xF3rio.","reset.error_message":"Accessory cache could not be loaded. You may not have any cached accessories.","reset.failed_to_reset":"Falha ao redefinir o Homebridge. Ver registo.","reset.force_restart_hb_help_text":"Utilize esta a\xE7\xE3o para for\xE7ar o servi\xE7o hb-service a efetuar uma reinicializa\xE7\xE3o completa.","reset.remove_cached_accessories_single_empty":"You have no cached accessories to remove.","reset.removing_cached_accessory_please_wait":"Removendo o acess\xF3rio da cache, por favor aguarde\u2026","restart.child_bridge_list":"Please restart these child bridges for the changes to apply:","restart.child_bridges":"Please restart the plugin's child bridges for the changes to apply.","restart.homebridge":"Please restart Homebridge for the changes to apply.","restart.label_restart_command_executed":"Comando de Reinicializa\xE7\xE3o Executado","restart.please_wait_while_server_restarts":"Por favor aguarde, esta pagina ir\xE1 atualizar automaticamente quando o servidor estiver online.","restart.server_is_taking_long_time_to_restart":"A reinicializa\xE7\xE3o do servidor est\xE1 a demorando muito tempo. Talvez voc\xEA ter\xE1 de intervir manualmente no container para subir o servidor.","restart.service_ready":"Servidor Homebridge Pronto","restart.title_restart":"Reinicializando o Homebridge","restart.toast_server_restart_error":"Ocorreu um erro ao enviar o comando de reinicializa\xE7\xE3o para o servidor","restart.toast_server_restart_timeout":"O servidor est\xE1 a demorarando muito tempo para ficar online novamente","restart.toast_server_restarted":"O Servidor foi Reinicializado","restart.ui_online":"Homebridge UI Online","rpi.throttled.currently_message":"This Raspberry Pi is reporting it is currently under-voltage; please check it is connected to an appropriate power supply. Under-voltage can result in system instability and SD card corruption.","rpi.throttled.previously_message":"This Raspberry Pi has reported an under-voltage event since it was last rebooted; please check it is connected to an appropriate power supply.","rpi.throttled.undervoltage_title":"Subtens\xE3o","settings.cache.desc":"Homebridge maintains accessories in cache so they aren't removed and re-added to HomeKit each time Homebridge restarts. Sometimes this cache can become out of sync with the actual accessories in Homebridge.","settings.cache.title":"Accessories","settings.changes.saved":"Your changes have been saved and require a restart to take effect.","settings.datetime.incorrect":"The date and time on your Homebridge server seem to be incorrect. This may cause unexpected issues. Click here for more information.","settings.display.blue":"Blue","settings.display.bluegrey":"Blue Grey","settings.display.brown":"Brown","settings.display.cyan":"Cyan","settings.display.dark":"Dark","settings.display.deep_purple":"Deep Purple","settings.display.green":"Green","settings.display.grey":"Grey","settings.display.indigo":"Indigo","settings.display.lang":"Language","settings.display.light":"Light","settings.display.lighting_mode":"Lighting Mode","settings.display.login_wallpaper":"Login Wallpaper","settings.display.login_wallpaper_desc":"A custom login wallpaper can be set by adding a <code>ui-wallpaper.jpg</code> file to your Homebridge storage directory, or by providing a full path to a local image file here.","settings.display.orange":"Orange","settings.display.pink":"Pink","settings.display.purple":"Purple","settings.display.red":"Red","settings.display.teal":"Teal","settings.display.temp_units":"Temperature Units","settings.display.temp_units.c":"Celsius (\xB0C)","settings.display.temp_units.f":"Fahrenheit (\xB0F)","settings.display.theme":"Theme","settings.general.title_display":"Display","settings.general.title_general":"General","settings.mdns_advertiser":"Anunciante mDNS","settings.mdns_advertiser_exp":"experimental","settings.mdns_advertiser_help":"Se voc\xEA est\xE1 tendo problemas ao conectar com o Homebridge, tente usar um dos anunciantes mDNS alternativos.","settings.mdns_advertiser_not_connected":"Not Connected","settings.mdns_advertiser_rec":"recommended","settings.network.label_interface_name":"Nome da Interface","settings.network.label_ip_address":"Endere\xE7o IP","settings.network.message_network_interface":"Se nenhuma interface de rede for selecionada, Homebridge tentar\xE1 determinar automaticamente qual interface ir\xE1 utilizar.","settings.network.port_hb":"Homebridge Port","settings.network.port_hb_desc":"The port number to run the Homebridge bridge on. This must be between 1025 and 65533, and should not be the same as the Homebridge UI port.","settings.network.port_ui":"UI Port","settings.network.port_ui_desc":"The port number to run the Homebridge UI on.","settings.network.title_network":"Rede","settings.network.title_network_interfaces":"Interfaces de Rede","settings.service.debug_tooltip":"Some plugins require you to set the DEBUG environment variable to enable debug level logging.","settings.service.node_tooltip":"Node.js runtime options for this process. This should be kept blank unless you know what you are doing.","settings.startup.debug":"Homebridge Debug Mode","settings.startup.debug_desc_v1":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge as well as all child bridges. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.debug_desc_v2":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge. The setting for child bridges can be found in the child bridge configuration from the plugins page. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.insecure":"Homebridge 'Insecure' Mode","settings.startup.insecure_desc":"To control your accessories via the Homebridge UI you must be running Homebridge in insecure mode.","settings.startup.keep_accessories":"Keep Accessories Of Uninstalled Plugins","settings.startup.keep_accessories_desc":"If enabled, accessories of platform plugins will remain in the cache even after the plugin is uninstalled. This can be useful if you plan to reinstall the plugin later.","settings.title_startup_options":"Op\xE7\xF5es de Inicializa\xE7\xE3o","settings.unpair_bridge.load_error":"Paired bridges could not be loaded.","settings.unpair_bridge.unpair_error":"Failed to unpair bridge.","setup.button_get_started":"Get Started","setup.create_account":"Create Account","setup.create_account_reason":"Password authentication to your Homebridge admin web interface must be configured. Even if Homebridge is accessible only in your local network, it is still important to protect it from unrestricted access.","setup.open_dashboard":"Open Dashboard","setup.welcome_to_homebridge":"Welcome to Homebridge",setup_wizard_message_complete_message:"The setup procedure is complete and you're now ready to start using Homebridge.",setup_wizard_message_complete_title:"Congratulations!",setup_wizard_message_restore:"Restore From Backup","status.code_scan":"Digitalize para adicionar ao HomeKit","status.cpu.load":"Utiliza\xE7\xE3o","status.cpu.temp":"Temperatura","status.cpu.title_cpu":"CPU","status.credits.title":"Credits","status.homebridge.checking":"Buscando atualiza\xE7\xF5es\u2026","status.homebridge.up_to_date":"Atualizado","status.memory.label_available":"Dispon\xEDvel","status.memory.label_total":"Total","status.memory.title_memory":"Mem\xF3ria","status.network.received_per_second":"Received","status.network.sent_per_second":"Sent","status.network.title_network":"Network Activity","status.plugin_out_of_date":"Plugin Desatualizado","status.plugins_out_of_date":"Plugins Desatualizados","status.services.label_not_running":"Parado","status.services.label_running":"Executando","status.services.updates":"Update Centre","status.uptime.title_uptime":"Tempo de Atividade","status.widget.accessories.choose_accessories":"Escolha os acess\xF3rios para mostrar neste widget na aba de Acess\xF3rios.","status.widget.add.label_pairing_code":"C\xF3digo de Emparelhamento","status.widget.bridge.restart_error":"Failed to restart child bridge.","status.widget.clock":"Rel\xF3gio","status.widget.clock_dateformat":"Formato da Data","status.widget.clock_timeformat":"Formato da Hora","status.widget.font_size":"Tamanho da Fonte","status.widget.font_weight":"Espessura da Fonte","status.widget.hide_on_mobile":"Esconder em modo mobile","status.widget.homebridge_logs":"Logs do Homebridge","status.widget.info":"Informa\xE7\xF5es do Sistema","status.widget.info.config_path":"Local das Configura\xE7\xF5es","status.widget.info.disabled":"Disabled","status.widget.info.docker":"Docker","status.widget.info.glibc_message":"This message indicates that your operating system does not support newer versions of Node.js. To resolve this and be able to install updated versions of Node.js in the future, you will need to update your operating system to a more recent version.","status.widget.info.glibc_title":"OS Update","status.widget.info.hostname":"Nome do Servidor","status.widget.info.ipv4":"IPv4","status.widget.info.ipv6":"IPv6","status.widget.info.no":"No","status.widget.info.node_unsupp":"Unsupported","status.widget.info.node_unsupp_message":"You are running a version of Node.js that is not officially supported by Homebridge. You should consider changing to a supported version.","status.widget.info.node_unsupp_title":"Unsupported Node Version","status.widget.info.node_update_message":"Homebridge requires Node.js installed on your system to run. From time to time, you will need to update the Node.js runtime to enable support for new features. Homebridge (and verified plugins) support all current Active and Maintenance LTS releases of Node.js.","status.widget.info.node_update_title":"Node Update","status.widget.info.nodejs_path":"Node.js Path","status.widget.info.nodejs_version":"Vers\xE3o Node.js","status.widget.info.os":"Sistema Operacional","status.widget.info.plugin_path":"Local do Plugin","status.widget.info.service_mode":"Rodando como Servi\xE7o","status.widget.info.service_user":"Usu\xE1rio","status.widget.info.servicemode_message":"Standalone mode is no longer recommended. Setting up Homebridge and Homebridge UI with hb-service has the same benefits of standalone mode but is much easier to setup and maintain.","status.widget.info.servicemode_title":"Service Mode","status.widget.info.storage_path":"Local do Armazenamento","status.widget.info.synology_package":"Synology Package","status.widget.info.timezone":"Fuso Hor\xE1rio","status.widget.info.yes":"Yes","status.widget.network.history_items":"History Items","status.widget.network.items":"items","status.widget.network.network_interface":"Network Interface","status.widget.network.none_selected":"None selected in settings - using default.","status.widget.network.refresh_interval":"Refresh Interval","status.widget.network.refresh_note":"Refresh the page after saving for changes to take effect.","status.widget.network.seconds":"seconds","status.widget.qr_paired":"Pareada","status.widget.qr_unpaired":"No pareada","status.widget.show_hide":"Show/Hide Widgets","status.widget.title_manage_widget":"Gerenciar o Widget","status.widget.uptime.label_process":"Processo","status.widget.uptime.label_server":"Servidor","status.widget.weather.label_config_required_help":"Por favor selecione a cidade nas defini\xE7\xF5es do widget.","status.widget.weather.label_search_for_your_city":"Procure pela cidade:","status.widget.weather.title_weather":"Tempo","support.dev.api":"Homebridge API","support.dev.api_hap":"HAP-NodeJS API","support.dev.api_hap_sub":"HAP-NodeJS is an implementation of the HomeKit Accessory Server as specified in the HomeKit Accessory Protocol (HAP), which is defined by Apple as part of the HomeKit Framework.","support.dev.api_sub":"Homebridge is a lightweight Node.js server you can run on your home network to emulate the HomeKit Accessory Protocol (HAP).","support.dev.item_swagger":"Swagger Docs","support.dev.item_swagger_sub":"The Homebridge REST API allows you to interact with your Homebridge server using HTTP requests.","support.dev.template":"Plugin Template Repo","support.dev.template_sub":"A template Homebridge plugin that can be used as a base to help you get started developing your own plugin.","support.dev.title":"Developers","support.dev.verified":"Verified By Homebridge","support.dev.verified_sub":"The Verified By Homebridge program allows plugin developers to get their plugins reviewed and endorsed by the Homebridge project team.","support.links.discord":"Discord Server","support.links.discord_sub":"Join the Homebridge Discord chat server to chat with other users and developers.","support.links.documentation":"Documentation","support.links.documentation_sub":"The Homebridge documentation provides a wealth of information on how to get started with Homebridge and common issue resolutions.","support.links.issue":"Report An Issue","support.links.issue_sub":"If you are experiencing an issue with Homebridge, please open a new issue on GitHub. This should not be used for issues with specific plugins.","support.links.reddit":"Reddit Community","support.links.reddit_sub":"The Homebridge subreddit is a great place to share your Homebridge setup and ask for help.","support.links.title":"Useful Links","support.title":"Support","toast.no_auth":"Only administrators may access the requested page.","toast.title_error":"Erro","toast.title_success":"Sucesso","toast.title_warning":"Alerta","users.button_add_new_user":"Adicionar Novo Usu\xE1rio","users.button_add_user":"Adicionar Usu\xE1rio","users.label_admin_user":"Permiss\xF5es de administrador?","users.label_confirm_password":"Confirmar Senha","users.label_full_name":"Nome Completo","users.label_new_password":"Nova Senha","users.label_password":"Senha","users.label_username":"Usu\xE1rio","users.setup_2fa":"Configurar Autentica\xE7\xE3o de Dois Fatores","users.setup_2fa_activate_error":"An error occurred activating 2FA","users.setup_2fa_cannot_setup_2fa":"N\xE3o foi poss\xEDvel configurar a Autentica\xE7\xE3o de Dois Fatores","users.setup_2fa_disable":"Desativar Autentica\xE7\xE3o de Dois Fatores","users.setup_2fa_disable_current_password":"Introduza a Senha atual para desativar a Autentica\xE7\xE3o de Dois Fatores:","users.setup_2fa_disable_success":"A Autentica\xE7\xE3o de Dois Fatores foi desativada.","users.setup_2fa_enable":"Ativar Autentica\xE7\xE3o de Dois Fatores","users.setup_2fa_enable_error":"An error occurred setting up 2FA","users.setup_2fa_enabled_success":"A Autentica\xE7\xE3o de Dois Fatores foi ativada.","users.setup_2fa_enter_code":"Introduza o c\xF3digo da aplica\xE7\xE3o de autentica\xE7\xE3o:","users.setup_2fa_scan_qr_code":"Leia o c\xF3digo QR abaixo com a aplica\xE7\xE3o de autentica\xE7\xE3o:","users.setup_2fa_server_time_out":"O rel\xF3gio do servidor tem uma diferen\xE7a de {{ timeDiffError }} ms. O m\xE1ximo permitido \xE9 +/-5000 ms.","users.setup_2fa_warning":"A Autentica\xE7\xE3o de Dois Fatores requer que o servidor do Homebridge seja preciso na data e hora para efetuar o login. Se o servidor n\xE3o tem a capacidade de manter a data e hora precisa, n\xE3o ative a Autentica\xE7\xE3o de Dois Fatores pois poder\xE1 ficar bloqueado da interface de utilizador do Homebridge.","users.title_add_user":"Adicionar Usu\xE1rio","users.title_edit_user":"Editar Usu\xE1rio","users.title_users":"Usu\xE1rios","users.toast_added_new_user":"Novo Usu\xE1rio Adicionado","users.toast_failed_to_add_user":"Falha ao Adicionar Usu\xE1rio","users.toast_failed_to_delete_user":"Falha ao Remover Usu\xE1rio","users.toast_updated_user":"Usu\xE1rio Atualizado","users.toast_user_deleted":"Usu\xE1rio Removido"}});var Fs=y((Od,ya)=>{ya.exports={"accessories.button_add_room":"Adicionar Cen\xE1rio","accessories.button_hidden_hide":"Hide Hidden","accessories.button_hidden_show":"Show Hidden","accessories.control.auto":"Auto","accessories.control.away":"Ausente","accessories.control.battery_charging":"A carregar","accessories.control.battery_notchargeable":"N\xE3o Suporta Carregamento","accessories.control.battery_notcharging":"N\xE3o Est\xE1 a Carregar","accessories.control.brightness":"Luminosidade","accessories.control.closed":"Fechado","accessories.control.closing":"A Fechar","accessories.control.cool":"Frio","accessories.control.default_room":"Cen\xE1rio Padr\xE3o","accessories.control.default_running_time":"Tempo de Funcionamento Padr\xE3o","accessories.control.dehumidifying":"A Desumidificar","accessories.control.detected":"Detected","accessories.control.drag_here":"Arrastar para aqui","accessories.control.fan":"Ventoinha","accessories.control.heat":"Aquecimento","accessories.control.home":"Casa","accessories.control.humidifying":"A Humidificar","accessories.control.jammed":"Encravado","accessories.control.light":"Luz","accessories.control.locked":"Fechado","accessories.control.mute":"Sem Som","accessories.control.night":"Noite","accessories.control.not_detected":"Not Detected","accessories.control.not_mute":"Com Som","accessories.control.off":"Desligado","accessories.control.on":"Ligado","accessories.control.open":"Aberto","accessories.control.opening":"A Abrir","accessories.control.rotation_speed":"Velocidade de Rota\xE7\xE3o","accessories.control.running":"Em Funcionamento","accessories.control.speaker_volume":"Volume","accessories.control.stopped":"Parado","accessories.control.target":"Alvo","accessories.control.target_humidity":"Humidade Alvo","accessories.control.target_temperature":"Temperatura Alvo","accessories.control.triggered":"Acionado","accessories.control.unknown":"Desconhecido","accessories.control.unlocked":"Desbloqueado","accessories.control_disabled":"Controlo de Acess\xF3rios do Homebridge Desativado","accessories.hide_this_accessory":"Esconder este acess\xF3rio","accessories.message_for_more_information":"para mais informa\xE7\xE3o.","accessories.message_must_use_insecure_mode":"Para controlar os acess\xF3rios \xE9 necess\xE1rio executar o Homebridge em modo inseguro.","accessories.message_please_see":"Por favor veja","accessories.name":"Nome","accessories.room_name":"Nome do Cen\xE1rio","accessories.rooms_not_appear_in_homekit":"Os cen\xE1rios criados aqui n\xE3o aparecem no HomeKit, s\xE3o apenas para a organiza\xE7\xE3o dos acess\xF3rios dentro do Homebridge UI.","accessories.settings_link":"You can access the Homebridge Settings at any time from the cog icon in the side menu.","accessories.show_on_dashboard":"Mostrar na Dashboard","accessories.title_accessories":"Acess\xF3rios","backup.backup_delete_failed":"Backup deletion failed. See logs for details.","backup.backup_download_failed":"Falha ao Descarregar o Backup","backup.backup_exceeds_max_size":"Backup ({{ backupSize }}) exceeds maximum restore file size of {{ maxBackupSizeText }}","backup.backup_help_one":"Descarregar um ficheiro de backup de todo o ambiente Homebridge. Isto ir\xE1 fazer backup de todos os conte\xFAdos do diret\xF3rio de armazenamento do Homebridge, que mais tarde poder\xE1 restaurar em qualquer plataforma capaz de executar o Homebridge UI.","backup.backup_help_two":"Plugins que n\xE3o est\xE3o no npm ou plugins instalados diretamente do GitHub n\xE3o v\xE3o ser gravados nem restaurados.","backup.backup_restored":"Ficheiro de Backup Restaurado","backup.backup_warning":"Os ficheiro de backup contem informa\xE7\xE3o privada e n\xE3o devem de ser partilhados com outros.","backup.button_restore_backup":"Restaurar Backup","backup.label_choose_backup_file_to_restore":"Escolha o ficheiro de backup para restaurar\u2026","backup.label_uploading":"A Enviar\u2026","backup.load_error":"Failed to load config backup.","backup.now":"Now","backup.restore_failed":"Falha no Restauro","backup.restore_help_one":"Restaurar um ficheiro backup feito anteriormente usando o Homebridge UI. A configura\xE7\xE3o do Homebridge, acess\xF3rios em cache, emparelhamentos com o HomeKit e as contas de utilizador do Homebridge UI ser\xE3o restauradas. Ser\xE1 efetuado o descarregamento de qualquer plugin do Homebridge a partir do registo do npm.","backup.restore_help_two":"Vai ser necess\xE1rio fazer login no Homebridge UI depois de fazer um restauro usando a credenciais da instancia restaurada.","backup.restore_max_size":"You can restore a backup archive up to {{ maxBackupSizeText }} in size.","backup.restore_warning":"Restaurar de um backup ir\xE1 sobrescrever irreversivelmente a atual configura\xE7\xE3o do Homebridge.","backup.scheduled_backup_time":"Um backup completo da inst\xE2ncia do Homebridge \xE9 criado automaticamente todos os dias \xE1s {{ backupTime }} durante {{ dayCount }} dia(s).","backup.title_backup":"Backup","child_bridge.about":"O Homebridge permite que possa executar uma plataforma de um plugin ou um acess\xF3rio como uma ponte secund\xE1ria isolada. Isto pode melhorar a fiabilidade e o tempo de resposta do Homebridge.","child_bridge.bridge_connect":"Conectar ao Homekit","child_bridge.bridge_settings":"Defini\xE7\xF5es da Ponte","child_bridge.bridges":"HomeKit Bridges","child_bridge.bridges_paired":"\xC9 necess\xE1rio emparelhar separadamente no HomeKit cada plataforma ou acess\xF3rio da ponte secund\xE1ria.","child_bridge.config.debug":"Debug Mode","child_bridge.config.description":"These fields are not required, but can be used to override the HomeKit configuration for this bridge.","child_bridge.config.firmware":"Firmware Version","child_bridge.config.header":"Configuration","child_bridge.config.manufacturer":"Manufacturer","child_bridge.config.model":"Model","child_bridge.config.name":"Name","child_bridge.must_configure_plugin":"\xC9 necess\xE1rio configurar este plugin antes de gerir as defini\xE7\xF5es da ponte.","child_bridge.reset_accessories":"Reset Accessories","child_bridge.reset_accessories_list":"Choose from which child bridges you want to reset the accessories below:","child_bridge.restart":"Reiniciar Pontes Secund\xE1rias","child_bridge.restart_homebridge":"Reinicie o Homebridge para terminar a configura\xE7\xE3o da ponte secund\xE1ria.","child_bridge.restart_plural":"Restart Child Bridges","child_bridge.return_to_pair":"Volte a este ecr\xE3 ap\xF3s o Homebridge reiniciar para visualizar o c\xF3digo QR de emparelhamento.","child_bridge.select_type":"Selecione quais as plataformas ou acess\xF3rios que deseja executar na ponte secund\xE1ria","child_bridge.setup":"Set Up Child Bridge","child_bridge.start":"Start Child Bridge","child_bridge.start_plural":"Start Child Bridges","child_bridge.stop":"Stop Child Bridge","child_bridge.stop_plural":"Stop Child Bridges","child_bridge.wiki_link":"Saiba mais sobre pontes secund\xE1rias","config.config_accessory_must_be_array":"os acess\xF3rios necessitam de ser um array []","config.config_bridge_missing":"Defini\xE7\xF5es da ponte em falta","config.config_invalid_json":"A configura\xE7\xE3o cont\xE9m JSON inv\xE1lido","config.config_platform_must_be_array":"as plataformas necessitam de ser um array []","config.config_username_error":"O nome de utilizador da ponte tem de conter 6 pares de caracteres hexadecimais (A-F 0-9) separados por h\xEDfen","config.error_blocks_objects":"All {{ type }} blocks must be objects.","config.error_blocks_type":"All {{ type }} blocks must contain the {{ type }} attribute.","config.error_string_array":"Each item in the {{ key }} array must be a string.","config.error_string_type":"The {{ type }} attribute must be a string.","config.failed_to_save_config":"Falha ao gravar a configura\xE7\xE3o","config.restore.confirm":"Clique em Gravar caso queira restaurar este backup.","config.restore.copy_to_editor":"Copiar para o Editor","config.restore.no_backups":"Sem Backups","config.restore.title_restore_homebridge_backup":"Restaurar Backup das Configura\xE7\xF5es do Homebridge","config.restore.toast_backups_deleted":"Eliminados Todos os Backups","config.title_backup_loaded":"Backup Carregado","form.button_cancel":"Cancelar","form.button_close":"Fechar","form.button_delete":"Apagar","form.button_disable":"Disable","form.button_download":"Descarregar","form.button_edit":"Editar","form.button_enable":"Enable","form.button_hide":"Hide","form.button_lock":"Lock","form.button_more_info":"More Info","form.button_remove":"Remove","form.button_reset":"Reset","form.button_restore":"Restaurar","form.button_save":"Gravar","form.button_show":"Show","form.button_unlock":"Unlock","form.button_unpair":"Unpair","form.label_invalid":"Config validation failed - you can still save your changes.","form.label_invalid_strict":"Config validation failed - please review the form before saving.","form.label_valid":"Config validation passed.","form.select.auto":"Automatic (Use Browser Settings)","login.button_login":"Entrar","login.invalid_credentials":"Utilizador e/ou Palavra-passe Inv\xE1lida","login.label_2fa_code":"C\xF3digo de Autentica\xE7\xE3o de Dois Fatores","login.label_password":"Palavra-passe","login.label_username":"Utilizador","login.message_invalid_2fa_code":"O c\xF3digo introduzido est\xE1 incorreto ou expirado.","logs.download.error":"Failed to download log file.","logs.download_warning":"Os ficheiros de registo do Homebridge podem conter informa\xE7\xF5es pessoais, palavra-passes ou tokens de acesso. Por favor verifique o ficheiro de registo e remova qualquer informa\xE7\xE3o sens\xEDvel antes de partilhar com outros.","logs.log_file_truncated":"Ficheiro de registo eliminado","logs.title_download_log_file":"Descarregar o Ficheiro de Registo","logs.title_truncate_log_file":"Apagar o Ficheiro de Registo","logs.truncate.error":"Failed to truncate log file.","logs.truncate_log_warning":"Esta a\xE7\xE3o \xE9 irrevers\xEDvel e ir\xE1 apagar os ficheiros de registo existentes do Homebridge. Tem a certeza que deseja continuar?","menu.config_json_editor":"JSON Config","menu.docker.restart_container":"Reiniciar o Container","menu.docker.startup_script":"Script de Inicializa\xE7\xE3o","menu.docker.terminal":"Consola","menu.hbrestart.confirm_hb":"Restart Homebridge","menu.hbrestart.confirm_ui":"Restart HB Service & UI","menu.hbrestart.title":"Restart Homebridge","menu.label_accessories":"Acess\xF3rios","menu.label_plugins":"Plugins","menu.label_settings":"Settings","menu.label_settings_advanced":"UI Advanced Settings","menu.label_status":"Estado","menu.linux.label_logs":"Logs","menu.linux.label_restart_server":"Reiniciar o Servidor","menu.linux.label_shutdown_server":"Desligar o Servidor","menu.linux.label_terminal":"Consola","menu.restart.title":"Power Options","menu.settings.title":"Settings","menu.tooltip_logout":"Terminar Sess\xE3o","menu.tooltip_restart":"Reiniciar","menu.tooltip_user_accounts":"Contas de Utilizador","menu.tooltip_view_logs":"Ver Registos","platform.docker.container_restarted":"Container do Docker Reiniciado","platform.docker.must_use_hashbang":"\xC9 necess\xE1rio usar a hashbang #!/bin/sh no script.","platform.docker.restart_required":"Vai ser necess\xE1rio reiniciar este container do docker para que as mudan\xE7as surtam efeito.","platform.docker.run_with_restart":"Verifique se est\xE1 a executar o container do Docker com <code>--restart=always</code>","platform.docker.script_help":"Este script vai ser executado todas as vezes que o container do docker iniciar. Isto poder\xE1 ser utilizado para instalar qualquer pacote extra que os plugins possam requerer como por exemplo o ffmpeg ou o libpcap-dev.","platform.docker.script_saved":"Script de Inicializa\xE7\xE3o Gravado","platform.docker.server_long_time":"A inicializa\xE7\xE3o do servidor est\xE1 a demorar muito tempo. Poder\xE1 ser necess\xE1rio intervir manualmente no container do Docker para voltar a estar online.","platform.docker.title_restarting":"A Reiniciar o Container do Docker","platform.linux.long_time":"A inicializa\xE7\xE3o do servidor est\xE1 a demorar demasiado tempo. Poder\xE1 ser necess\xE1rio intervir manualmente no servidor para voltar a estar online.","platform.linux.restart":"Por favor aguarde, esta pagina ir\xE1 automaticamente atualizar quando o Homebridge estiver de novo online.","platform.linux.restarting_server":"A reiniciar o servidor","platform.linux.server_restart_error":"Ocorreu um erro ao enviar o comando de rein\xEDcio para o servidor","platform.linux.server_restarted":"O Servidor foi Reiniciado","platform.linux.server_taking_long_time":"O servidor est\xE1 a demorar demasiado tempo a inicializar","platform.linux.server_will_power_down":"O servidor ir\xE1 desligar brevemente.","platform.linux.shutting_down_server":"A Desligar o Servidor","platform.version.restart_required":"Foi instalada a Homebridge UI v{{ uiVersion }}, no entanto o servi\xE7o do servidor ainda est\xE1 a executar a vers\xE3o v{{ serverVersion }}.","platform.version.service_restart_required":"Necess\xE1rio o rein\xEDcio","plugins.bridge.action_error":"Failed to {{ action }} child bridge(s).","plugins.button_homepage":"Plugin Homepage","plugins.button_set_up":"Set Up","plugins.button_settings":"Defini\xE7\xF5es","plugins.button_uninstall":"Desinstalar","plugins.button_update":"Atualizar","plugins.compat.are_you_sure":"Are you sure you want to continue anyway?","plugins.compat.hb_node_too_low":"O {{ packageName }} v{{ latestVersion }} requer Node.js v{{ minVersion }} ou posterior. Neste momento encontra-se na vers\xE3o Node.js {{ installedVersion }}.","plugins.compat.hb_too_low":"\xC9 recomendado executar o plugin {{ pluginName }} na vers\xE3o do Homebridge v{{ minVersion }} ou posterior. Neste momento encontra-se na vers\xE3o Homebridge v{{ installedVersion }}.","plugins.compat.node_first":"Por favor atualize o Node.js antes de atualizar o {{ packageName }}.","plugins.compat.node_link":"How To Update Node.js","plugins.compat.node_too_low":"\xC9 recomendado executar o plugin {{ pluginName }} na vers\xE3o do Node.js v{{ minVersion }} ou posterior. Neste momento encontra-se na vers\xE3o Node.js {{ installedVersion }}.","plugins.compat.title":"Compatibility Check","plugins.config.load_error":"Failed to load plugin config.","plugins.config.must_be_array":"Plugin config must be an array.","plugins.config.must_be_array_objects":"Plugin config must be an array of objects.","plugins.config.must_be_object":"Config block must be an object.","plugins.config.name_property":'Accessory must have a valid "name" attribute',"plugins.config.please_fix":"Please fix validation errors before adding a new block.","plugins.config.remove_error":"Failed to remove plugin config.","plugins.disable.error":"Failed to disable plugin.","plugins.donate.button_not_verified":"Not Verified","plugins.donate.button_verified":"Verificado","plugins.donate.message_1":"As more users install their plugins through the Homebridge UI, they are less likely to visit the projects' GitHub page where the ways to support a developer would typically be displayed.","plugins.donate.message_2":"Adding donation links directly in the Homebridge UI ensures users know how to support Homebridge developers if they wish to do so.","plugins.donate.tile_donate_to":"Doar a {{ author }}","plugins.enable.error":"Failed to enable plugin.","plugins.manage.all_versions":"All versions","plugins.manage.child_bridge_restart":"Child bridge restarted successfully.","plugins.manage.child_bridge_restart_failed":"Plugin restart failed, please restart Homebridge manually.","plugins.manage.confirm_disable":"Are you sure you want to disable {{ pluginName }}?","plugins.manage.confirm_disable_accessory_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen and removed from HomeKit.","plugins.manage.confirm_disable_accessory_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and HomeKit. The accessories will lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_disable_platform_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen but remain in HomeKit with a 'No Response' label.","plugins.manage.confirm_disable_platform_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and become controllable again in HomeKit. The accessories will not lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_enable":"Tem a certeza que pretende ativar {{ pluginName }}?","plugins.manage.disable":"Desativar","plugins.manage.enable":"Ativar","plugins.manage.information":"Plugin Information","plugins.manage.install":"Instalar","plugins.manage.installed":"Instalado","plugins.manage.json_config":"JSON Config","plugins.manage.manage_version":"Instalar Vers\xE3o Anterior","plugins.manage.manual_update_command":"To upgrade the package run open a Node.js command prompt as an Administrator and run the following commands:","plugins.manage.manual_update_required":"Atualiza\xE7\xE3o Manual Necess\xE1ria","plugins.manage.online_updates":"As atualiza\xE7\xF5es autom\xE1ticas n\xE3o s\xE3o suportadas no Windows. \xC9 necess\xE1rio atualizar o Homebridge UI ap\xF3s parar o servi\xE7o do Homebridge.","plugins.manage.plugin_logs":"Plugin Logs","plugins.manage.release_notes":"Release Notes","plugins.manage.scoped.error":"An error occurred. You can download the logs below.","plugins.manage.scoped.info":"For more information about scoped plugins and why to switch, see the wiki page {{ link }}.","plugins.manage.scoped.process":"This process will not affect your Homebridge/HomeKit accessories. You will not be able to cancel the process once it has started. It will:","plugins.manage.scoped.switch":"Switch To Scoped Plugin","plugins.manage.scoped.windows":"Online updates are not supported on Windows. You will need to install the new plugin and uninstall the old plugin manually.","plugins.manage.scoped.windows_service":'You should <span class="font-weight-bold">not</span> restart Homebridge until both steps are complete.',"plugins.manage.select_version":"Selecionar a vers\xE3o a instalar","plugins.manage.thanks_for_updating":"Obrigado por instalar a ultima vers\xE3o do {{ pluginName }}.","plugins.manage.uninstall":"Desinstalar","plugins.manage.uninstalled":"Removida","plugins.manage.unverified_message":"Unverified Homebridge plugins indicate that they haven't undergone the review process by the Homebridge project team. Lack of verification does not necessarily imply inefficacy or safety concerns. Authors might have opted not to seek verification for various reasons.","plugins.manage.unverified_subtitle":"{{ pluginName }} is not verified","plugins.manage.unverified_title":"Unverified Plugins","plugins.manage.update":"Atualizar","plugins.manage.updated":"Atualizado","plugins.manage.verified_message":"Homebridge plugins that are marked as verified have been reviewed by the Homebridge project team to ensure they meet various requirements that encourage best practices and a trouble-free user experience.","plugins.manage.verified_subtitle":"{{ pluginName }} is verified","plugins.manage.verified_title":"Verified Plugins","plugins.node_update.continue":"Continue","plugins.placeholder_search_first":"Use the search bar above to find your first plugin","plugins.placeholder_search_plugin":"Procurar plugins para instala\xE7\xE3o\u2026","plugins.settings.custom.homebridge-gsh.label_account_linked":"Conta Vinculada","plugins.settings.custom.homebridge-gsh.label_link_account":"Vincular Conta","plugins.settings.custom.homebridge-gsh.label_unlink_account":"Desvincular Conta","plugins.settings.custom.homebridge-gsh.message_about":"O plugin Homebridge Google Smart Home permite que fa\xE7a o controlo dos acess\xF3rios do Homebridge atrav\xE9s de um coluna inteligente com Google Home ou com a aplica\xE7\xE3o m\xF3vel do Google Home.","plugins.settings.custom.homebridge-gsh.message_account_link_required":"Para ativar esta funcionalidade \xE9 necess\xE1rio iniciar sess\xE3o com a sua conta Google ou GitHub; utilize a mesma conta ao adicionar a a\xE7\xE3o do Homebridge na aplica\xE7\xE3o m\xF3vel do Google Home.","plugins.settings.custom.homebridge-gsh.message_homebridge_restart_required":"\xC9 necess\xE1rio reiniciar o Homebridge para que as mudan\xE7as surtam efeito.","plugins.settings.custom.homebridge-gsh.message_invalid_token":"Invalid account linking token in config.json","plugins.settings.deconz.dump_no_exist":"Homebridge deCONZ dump file does not exist yet.","plugins.settings.hue.dump_no_exist":"Homebridge Hue dump file does not exist yet.","plugins.settings.label_open_config_editor":"Abrir o Editor de Configura\xE7\xE3o","plugins.settings.message_consult_documentation":"Por favor consulte a documenta\xE7\xE3o do plugin para obter instru\xE7\xF5es de como o configurar corretamente.","plugins.settings.message_manual_config_required":"\xC9 necess\xE1rio configurar manualmente este plugin atrav\xE9s do Editor de Configura\xE7\xE3o do Homebridge UI.","plugins.settings.plugin_config_saved":"Configura\xE7\xF5es do Plugin Gravadas","plugins.settings.restart_required":"Reinicie o Homebridge para aplicar as mudan\xE7as.","plugins.settings.title_settings":"Defini\xE7\xF5es","plugins.status_disabled":"Desativado","plugins.status_installed":"Instalado","plugins.toast_failed_to_load_plugin_schema":"Failed to load plugin config schema.","plugins.toast_failed_to_load_plugins":"Falha ao carregar os plugins","plugins.uninstall_bridge_error":"Failed to remove child bridge.","plugins.uninstall_remove_config_required":"Se est\xE1 a remover este plugin permanentemente, verifique que n\xE3o existe qualquer configura\xE7\xE3o deste plugin no arquivo config.json antes de reinicializar o Homebridge.","plugins.uninstall_remove_confirmation":"Tem a certeza que deseja desinstalar {{ pluginName }}?","plugins.uninstall_remove_plugin_config":"Remover a configura\xE7\xE3o do plugin?","plugins.uninstall_unpair_child_bridge":"Unpair plugin child bridge?","plugins.uninstall_unpair_child_bridges":"Unpair {{ count }} plugin child bridges?","reset.accessory_reset":"Repor Acess\xF3rio do Homebridge","reset.action_is_irreversible":"Est\xE1 a\xE7\xE3o \xE9 irrevers\xEDvel. Por favor leia com cuidado antes de proceder.","reset.bridges.desc":"If you are having trouble pairing Homebridge, an external accessory or a child bridge to HomeKit, you may need to unpair it from HomeKit to start again.","reset.bridges.empty":"You have no bridges to unpair from HomeKit.","reset.bridges.title":"Bridges","reset.bridges_all.desc":"Unpair all bridges from HomeKit. This includes the main Homebridge bridge, child bridges and bridges for external accessories.","reset.bridges_all.list_1":"This will unpair the Homebridge bridge, all child bridges and bridges for external accessories from HomeKit.","reset.bridges_all.list_2":"Note that your accessories will continue to show in HomeKit as no response, until the bridges are manually removed from HomeKit. You can do this in the Home app, by accessing Home Settings \u2192 Home Hubs & Bridges \u2192 {Bridge} \u2192 Remove Bridge from Home.","reset.bridges_all.list_3":"All your Homebridge to HomeKit accessories, scenes and automations will need to be reconfigured after the unpairing.","reset.bridges_all.list_4":"The pin for pairing your Homebridge bridge to HomeKit will be changed. You can see the new values in your Homebridge config after the unpairing.","reset.bridges_all.title":"Unpair All Bridges","reset.bridges_single.desc":"Unpair a single bridge from HomeKit. This may be a child bridge or a bridge for an external accessory like a camera or TV.","reset.bridges_single.list_1":"When unpairing a bridge, any accessories published by this bridge will be removed from the Homebridge cache.","reset.bridges_single.list_2":"The accessories will become stale in HomeKit (showing no response). To remove them, you will need to manually remove this bridge from HomeKit. You can do this in the Home app from the Home Settings section.","reset.bridges_single.list_3":"You can then attempt to pair the bridge again if required.","reset.bridges_single.title":"Unpair Single Bridge","reset.cached_accessory_removed":"Acess\xF3rio em cache removido.","reset.clear_cache_all.desc":"Remove all accessories from the cache.","reset.clear_cache_all.list_1":"When clicking on the remove button below, Homebridge will restart and all your existing accessories will be removed from Homebridge and HomeKit.","reset.clear_cache_all.list_2":"All associated HomeKit data will also be removed, this includes room associations, scenes and automations that this accessory uses.","reset.clear_cache_all.list_3":"After Homebridge restarts, your plugins will re-add any accessories as if the plugin was being installed for the first time.","reset.clear_cache_all.title":"Remove All Accessories","reset.clear_cache_bridge.desc":"Remove all accessories published by a bridge from the cache.","reset.clear_cache_bridge.empty":"You have no bridges from which to remove accessories.","reset.clear_cache_bridge.list_1":"This function can be used to reset a plugin's existing accessories in HomeKit. They will be removed from Homebridge/HomeKit and then re-added by the plugin as new accessories.","reset.clear_cache_bridge.list_2":"The child bridge's pairing details and status will remain the same.","reset.clear_cache_bridge.title":"Remove Bridge Accessories","reset.clear_cache_single.desc":"Remove a single accessory from the cache.","reset.clear_cache_single.list_1":"Some plugins don't clean up after themselves properly! If an accessory that you no longer have in Homebridge is still being displayed in HomeKit, you can remove it from the cache.","reset.clear_cache_single.list_2":"This function can be used to reset an existing accessory in HomeKit. It will be removed from Homebridge/HomeKit and then re-added by the plugin as a new accessory.","reset.clear_cache_single.list_3":"When removing an accessory from the cache, all its associated HomeKit data will be removed. This includes any associated scenes and automations that use this accessory.","reset.clear_cache_single.list_4":"Accessories can only be removed when Homebridge is not running. Homebridge will automatically restart when clicking on each of the remove buttons below. If you need to remove multiple accessories, please be patient and allow Homebridge to restart between each removal.","reset.clear_cache_single.title":"Remove Single Accessory","reset.delete_failed":"Falha ao eliminar o acess\xF3rio.","reset.delete_success":"A reiniciar o Homebridge e a apagar a cache do acess\xF3rio.","reset.error_message":"Accessory cache could not be loaded. You may not have any cached accessories.","reset.failed_to_reset":"Falha ao repor o Homebridge. Ver registo.","reset.force_restart_hb_help_text":"Utilize esta a\xE7\xE3o para for\xE7ar o servi\xE7o hb-service a efetuar um rein\xEDcio completo.","reset.remove_cached_accessories_single_empty":"You have no cached accessories to remove.","reset.removing_cached_accessory_please_wait":"A remover o acess\xF3rio da cache, por favor aguarde...","restart.child_bridge_list":"Please restart these child bridges for the changes to apply:","restart.child_bridges":"Please restart the plugin's child bridges for the changes to apply.","restart.homebridge":"Please restart Homebridge for the changes to apply.","restart.label_restart_command_executed":"Comando de Rein\xEDcio Executado","restart.please_wait_while_server_restarts":"Por favor aguarde, esta pagina ir\xE1 atualizar automaticamente quando o servidor estiver online.","restart.server_is_taking_long_time_to_restart":"A inicializa\xE7\xE3o do servidor est\xE1 a demorar demasiado tempo. Poder\xE1 ser necess\xE1rio intervir manualmente no servidor para voltar a estar online.","restart.service_ready":"Servidor do Homebridge Pronto","restart.title_restart":"A Reiniciar o Homebridge","restart.toast_server_restart_error":"Ocorreu um erro ao enviar o comando de rein\xEDcio para o servidor","restart.toast_server_restart_timeout":"O servidor est\xE1 a demorar demasiado tempo a inicializar","restart.toast_server_restarted":"O Servidor foi Reiniciado","restart.ui_online":"Homebridge UI Online","rpi.throttled.currently_message":"Este Raspberry Pi est\xE1 a reportar que se encontra atualmente em subtens\xE3o; por favor verifique se est\xE1 conectado a uma fonte de alimenta\xE7\xE3o apropriada. Subtens\xE3o poder\xE1 provocar instabilidade de sistema e corromper o cart\xE3o SD.","rpi.throttled.previously_message":"Este Raspberry Pi reportou um evento de subtens\xE3o desde a ultima inicializa\xE7\xE3o; por favor verifique se est\xE1 conectado a uma fonte de alimenta\xE7\xE3o apropriada.","rpi.throttled.undervoltage_title":"Subtens\xE3o","settings.cache.desc":"Homebridge maintains accessories in cache so they aren't removed and re-added to HomeKit each time Homebridge restarts. Sometimes this cache can become out of sync with the actual accessories in Homebridge.","settings.cache.title":"Accessories","settings.changes.saved":"Your changes have been saved and require a restart to take effect.","settings.datetime.incorrect":"The date and time on your Homebridge server seem to be incorrect. This may cause unexpected issues. Click here for more information.","settings.display.blue":"Blue","settings.display.bluegrey":"Blue Grey","settings.display.brown":"Brown","settings.display.cyan":"Cyan","settings.display.dark":"Dark","settings.display.deep_purple":"Deep Purple","settings.display.green":"Green","settings.display.grey":"Grey","settings.display.indigo":"Indigo","settings.display.lang":"Language","settings.display.light":"Light","settings.display.lighting_mode":"Lighting Mode","settings.display.login_wallpaper":"Login Wallpaper","settings.display.login_wallpaper_desc":"A custom login wallpaper can be set by adding a <code>ui-wallpaper.jpg</code> file to your Homebridge storage directory, or by providing a full path to a local image file here.","settings.display.orange":"Orange","settings.display.pink":"Pink","settings.display.purple":"Purple","settings.display.red":"Red","settings.display.teal":"Teal","settings.display.temp_units":"Temperature Units","settings.display.temp_units.c":"Celsius (\xB0C)","settings.display.temp_units.f":"Fahrenheit (\xB0F)","settings.display.theme":"Theme","settings.general.title_display":"Display","settings.general.title_general":"General","settings.mdns_advertiser":"Encaminhamento mDNS","settings.mdns_advertiser_exp":"experimental","settings.mdns_advertiser_help":"Se estiver a ter problemas a conectar ao Homebridge, tente um dos encaminhamentos mDNS alternativos.","settings.mdns_advertiser_not_connected":"Not Connected","settings.mdns_advertiser_rec":"recommended","settings.network.label_interface_name":"Nome da Interface","settings.network.label_ip_address":"Endere\xE7o IP","settings.network.message_network_interface":"Se nenhuma interface de rede estiver selecionada, o Homebridge ir\xE1 tentar determinar automaticamente qual interface a utilizar.","settings.network.port_hb":"Homebridge Port","settings.network.port_hb_desc":"The port number to run the Homebridge bridge on. This must be between 1025 and 65533, and should not be the same as the Homebridge UI port.","settings.network.port_ui":"UI Port","settings.network.port_ui_desc":"The port number to run the Homebridge UI on.","settings.network.title_network":"Rede","settings.network.title_network_interfaces":"Interfaces de Rede","settings.service.debug_tooltip":"Some plugins require you to set the DEBUG environment variable to enable debug level logging.","settings.service.node_tooltip":"Node.js runtime options for this process. This should be kept blank unless you know what you are doing.","settings.startup.debug":"Homebridge Debug Mode","settings.startup.debug_desc_v1":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge as well as all child bridges. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.debug_desc_v2":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge. The setting for child bridges can be found in the child bridge configuration from the plugins page. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.insecure":"Homebridge 'Insecure' Mode","settings.startup.insecure_desc":"To control your accessories via the Homebridge UI you must be running Homebridge in insecure mode.","settings.startup.keep_accessories":"Keep Accessories Of Uninstalled Plugins","settings.startup.keep_accessories_desc":"If enabled, accessories of platform plugins will remain in the cache even after the plugin is uninstalled. This can be useful if you plan to reinstall the plugin later.","settings.title_startup_options":"Op\xE7\xF5es de Inicio","settings.unpair_bridge.load_error":"Paired bridges could not be loaded.","settings.unpair_bridge.unpair_error":"Failed to unpair bridge.","setup.button_get_started":"Come\xE7ar","setup.create_account":"Criar Conta","setup.create_account_reason":"A autentica\xE7\xE3o por palavra-passe dever\xE1 de ser configurada para a p\xE1gina de administra\xE7\xE3o do Homebridge. Mesmo que o Homebridge seja acess\xEDvel apenas na rede local, \xE9 importante protege-lo de acessos n\xE3o autorizados.","setup.open_dashboard":"Abrir Dashboard","setup.welcome_to_homebridge":"Bem-vindo ao Homebridge",setup_wizard_message_complete_message:"O processo de configura\xE7\xE3o est\xE1 conclu\xEDdo e est\xE1 pronto para utilizar o Homebridge.",setup_wizard_message_complete_title:"Parab\xE9ns!",setup_wizard_message_restore:"Restore From Backup","status.code_scan":"Digitalize para adicionar ao HomeKit","status.cpu.load":"Utiliza\xE7\xE3o","status.cpu.temp":"Temperatura","status.cpu.title_cpu":"CPU","status.credits.title":"Credits","status.homebridge.checking":"\xC1 procura de atualiza\xE7\xF5es\u2026","status.homebridge.up_to_date":"Atualizado","status.memory.label_available":"Dispon\xEDvel","status.memory.label_total":"Total","status.memory.title_memory":"Mem\xF3ria","status.network.received_per_second":"Recebido","status.network.sent_per_second":"Enviado","status.network.title_network":"Atividade da Rede","status.plugin_out_of_date":"Plugin Desatualizado","status.plugins_out_of_date":"Plugins Desatualizados","status.services.label_not_running":"Parado","status.services.label_running":"A executar","status.services.updates":"Update Centre","status.uptime.title_uptime":"Tempo de Atividade","status.widget.accessories.choose_accessories":"Escolha os acess\xF3rios para mostrar neste widget a partir da aba Acess\xF3rios.","status.widget.add.label_pairing_code":"C\xF3digo de Emparelhamento","status.widget.bridge.restart_error":"Failed to restart child bridge.","status.widget.clock":"Rel\xF3gio","status.widget.clock_dateformat":"Formato da Data","status.widget.clock_timeformat":"Formato da Hora","status.widget.font_size":"Tamanho da Fonte","status.widget.font_weight":"Espessura da Fonte","status.widget.hide_on_mobile":"Esconder em modo compacto (ecr\xE3s m\xF3veis)","status.widget.homebridge_logs":"Registos do Homebridge","status.widget.info":"Informa\xE7\xF5es do Sistema","status.widget.info.config_path":"Caminho das Configura\xE7\xF5es","status.widget.info.disabled":"Disabled","status.widget.info.docker":"Docker","status.widget.info.glibc_message":"This message indicates that your operating system does not support newer versions of Node.js. To resolve this and be able to install updated versions of Node.js in the future, you will need to update your operating system to a more recent version.","status.widget.info.glibc_title":"OS Update","status.widget.info.hostname":"Nome do Servidor","status.widget.info.ipv4":"IPv4","status.widget.info.ipv6":"IPv6","status.widget.info.no":"No","status.widget.info.node_unsupp":"Unsupported","status.widget.info.node_unsupp_message":"You are running a version of Node.js that is not officially supported by Homebridge. You should consider changing to a supported version.","status.widget.info.node_unsupp_title":"Unsupported Node Version","status.widget.info.node_update_message":"Homebridge requires Node.js installed on your system to run. From time to time, you will need to update the Node.js runtime to enable support for new features. Homebridge (and verified plugins) support all current Active and Maintenance LTS releases of Node.js.","status.widget.info.node_update_title":"Node Update","status.widget.info.nodejs_path":"Node.js Path","status.widget.info.nodejs_version":"Vers\xE3o Node.js","status.widget.info.os":"Sistema Operativo","status.widget.info.plugin_path":"Caminho do Plugin","status.widget.info.service_mode":"Executado como Servi\xE7o","status.widget.info.service_user":"Utilizador","status.widget.info.servicemode_message":"Standalone mode is no longer recommended. Setting up Homebridge and Homebridge UI with hb-service has the same benefits of standalone mode but is much easier to setup and maintain.","status.widget.info.servicemode_title":"Service Mode","status.widget.info.storage_path":"Caminho do Armazenamento","status.widget.info.synology_package":"Pacote Synology","status.widget.info.timezone":"Fuso Hor\xE1rio","status.widget.info.yes":"Yes","status.widget.network.history_items":"History Items","status.widget.network.items":"items","status.widget.network.network_interface":"Network Interface","status.widget.network.none_selected":"None selected in settings - using default.","status.widget.network.refresh_interval":"Refresh Interval","status.widget.network.refresh_note":"Refresh the page after saving for changes to take effect.","status.widget.network.seconds":"seconds","status.widget.qr_paired":"Emparelhada","status.widget.qr_unpaired":"No emparelhada","status.widget.show_hide":"Show/Hide Widgets","status.widget.title_manage_widget":"Gerir o Widget","status.widget.uptime.label_process":"Processo","status.widget.uptime.label_server":"Servidor","status.widget.weather.label_config_required_help":"Por favor selecione a cidade nas defini\xE7\xF5es do widget.","status.widget.weather.label_search_for_your_city":"Procure pela cidade:","status.widget.weather.title_weather":"Tempo","support.dev.api":"Homebridge API","support.dev.api_hap":"HAP-NodeJS API","support.dev.api_hap_sub":"HAP-NodeJS is an implementation of the HomeKit Accessory Server as specified in the HomeKit Accessory Protocol (HAP), which is defined by Apple as part of the HomeKit Framework.","support.dev.api_sub":"Homebridge is a lightweight Node.js server you can run on your home network to emulate the HomeKit Accessory Protocol (HAP).","support.dev.item_swagger":"Swagger Docs","support.dev.item_swagger_sub":"The Homebridge REST API allows you to interact with your Homebridge server using HTTP requests.","support.dev.template":"Plugin Template Repo","support.dev.template_sub":"A template Homebridge plugin that can be used as a base to help you get started developing your own plugin.","support.dev.title":"Developers","support.dev.verified":"Verified By Homebridge","support.dev.verified_sub":"The Verified By Homebridge program allows plugin developers to get their plugins reviewed and endorsed by the Homebridge project team.","support.links.discord":"Discord Server","support.links.discord_sub":"Join the Homebridge Discord chat server to chat with other users and developers.","support.links.documentation":"Documentation","support.links.documentation_sub":"The Homebridge documentation provides a wealth of information on how to get started with Homebridge and common issue resolutions.","support.links.issue":"Report An Issue","support.links.issue_sub":"If you are experiencing an issue with Homebridge, please open a new issue on GitHub. This should not be used for issues with specific plugins.","support.links.reddit":"Reddit Community","support.links.reddit_sub":"The Homebridge subreddit is a great place to share your Homebridge setup and ask for help.","support.links.title":"Useful Links","support.title":"Support","toast.no_auth":"Only administrators may access the requested page.","toast.title_error":"Erro","toast.title_success":"Sucesso","toast.title_warning":"Alerta","users.button_add_new_user":"Adicionar Novo Utilizador","users.button_add_user":"Adicionar Utilizador","users.label_admin_user":"Utilizador Administrador?","users.label_confirm_password":"Confirmar Palavra-passe","users.label_full_name":"Nome Completo","users.label_new_password":"Nova Palavra-passe","users.label_password":"Palavra-passe","users.label_username":"Utilizador","users.setup_2fa":"Configurar 2FA","users.setup_2fa_activate_error":"An error occurred activating 2FA","users.setup_2fa_cannot_setup_2fa":"N\xE3o foi poss\xEDvel configurar o 2FA","users.setup_2fa_disable":"Desativar 2FA","users.setup_2fa_disable_current_password":"Introduza a palavra-passe atual para desativar a autentica\xE7\xE3o em dois fatores:","users.setup_2fa_disable_success":"A autentica\xE7\xE3o em dois fatores foi desativada.","users.setup_2fa_enable":"Ativar 2FA","users.setup_2fa_enable_error":"An error occurred setting up 2FA","users.setup_2fa_enabled_success":"A autentica\xE7\xE3o em dois fatores foi ativada.","users.setup_2fa_enter_code":"Introduza o c\xF3digo da aplica\xE7\xE3o de autentica\xE7\xE3o:","users.setup_2fa_scan_qr_code":"Leia o QR Code abaixo com a aplica\xE7\xE3o de autentica\xE7\xE3o:","users.setup_2fa_server_time_out":"O rel\xF3gio do servidor tem uma diferen\xE7a de {{ timeDiffError }} ms. O m\xE1ximo permitido \xE9 +/-5000 ms.","users.setup_2fa_warning":"A autentica\xE7\xE3o em dois fatores requer que o servidor do Homebridge seja preciso na data e hora para efetuar o login. Se o servidor n\xE3o tem a capacidade de manter a data e hora precisa, n\xE3o deve de ativar a autentica\xE7\xE3o em dois fatores pois poder\xE1 ficar bloqueado da interface de utilizador do Homebridge.","users.title_add_user":"Adicionar Utilizador","users.title_edit_user":"Editar Utilizador","users.title_users":"Utilizadores","users.toast_added_new_user":"Novo Utilizador Adicionado","users.toast_failed_to_add_user":"Falha ao Adicionar Utilizador","users.toast_failed_to_delete_user":"Falha ao Eliminar Utilizador","users.toast_updated_user":"Utilizador Atualizado","users.toast_user_deleted":"Utilizador Eliminado"}});var qs=y((Ld,Ha)=>{Ha.exports={"accessories.button_add_room":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043A\u043E\u043C\u043D\u0430\u0442\u0443","accessories.button_hidden_hide":"\u0421\u043A\u0440\u044B\u0442\u044C \u0441\u043A\u0440\u044B\u0442\u044B\u0435","accessories.button_hidden_show":"\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u0441\u043A\u0440\u044B\u0442\u044B\u0435","accessories.control.auto":"\u0410\u0432\u0442\u043E","accessories.control.away":"\u0412\u043D\u0435 \u0434\u043E\u043C\u0430","accessories.control.battery_charging":"\u0417\u0430\u0440\u044F\u0434\u043A\u0430","accessories.control.battery_notchargeable":"\u041D\u0435 \u0437\u0430\u0440\u044F\u0436\u0430\u0435\u0442\u0441\u044F","accessories.control.battery_notcharging":"\u041D\u0435 \u0437\u0430\u0440\u044F\u0436\u0430\u0435\u0442\u0441\u044F","accessories.control.brightness":"\u042F\u0440\u043A\u043E\u0441\u0442\u044C","accessories.control.closed":"\u0417\u0430\u043A\u0440\u044B\u0442\u043E","accessories.control.closing":"\u0417\u0430\u043A\u0440\u044B\u0432\u0430\u0435\u0442\u0441\u044F","accessories.control.cool":"\u041E\u0445\u043B\u0430\u0436\u0434\u0435\u043D\u0438\u0435","accessories.control.default_room":"\u041A\u043E\u043C\u043D\u0430\u0442\u0430 \u043F\u043E \u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E","accessories.control.default_running_time":"\u0412\u0440\u0435\u043C\u044F \u0440\u0430\u0431\u043E\u0442\u044B \u043F\u043E \u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E","accessories.control.dehumidifying":"\u041E\u0441\u0443\u0448\u0435\u043D\u0438\u0435","accessories.control.detected":"Detected","accessories.control.drag_here":"\u041F\u0435\u0440\u0435\u0442\u0430\u0449\u0438\u0442\u0435 \u0441\u044E\u0434\u0430","accessories.control.fan":"\u0412\u0435\u043D\u0442\u0438\u043B\u044F\u0442\u043E\u0440","accessories.control.heat":"\u041D\u0430\u0433\u0440\u0435\u0432","accessories.control.home":"\u0414\u043E\u043C\u0430","accessories.control.humidifying":"\u0423\u0432\u043B\u0430\u0436\u043D\u0435\u043D\u0438\u0435","accessories.control.jammed":"\u0417\u0430\u043A\u043B\u0438\u043D\u0438\u043B\u043E","accessories.control.light":"\u0421\u0432\u0435\u0442","accessories.control.locked":"\u0417\u0430\u043A\u0440\u044B\u0442\u043E","accessories.control.mute":"\u0411\u0435\u0437\u0437\u0432\u0443\u0447\u043D\u044B\u0439","accessories.control.night":"\u041D\u043E\u0447\u044C","accessories.control.not_detected":"Not Detected","accessories.control.not_mute":"\u0421\u043E \u0437\u0432\u0443\u043A\u043E\u043C","accessories.control.off":"\u0412\u044B\u043A\u043B.","accessories.control.on":"\u0412\u043A\u043B.","accessories.control.open":"\u041E\u0442\u043A\u0440\u044B\u0442\u043E","accessories.control.opening":"\u041E\u0442\u043A\u0440\u044B\u0432\u0430\u0435\u0442\u0441\u044F","accessories.control.rotation_speed":"\u0421\u043A\u043E\u0440\u043E\u0441\u0442\u044C \u0432\u0440\u0430\u0449\u0435\u043D\u0438\u044F","accessories.control.running":"\u0417\u0430\u043F\u0443\u0449\u0435\u043D\u043E","accessories.control.speaker_volume":"\u0413\u0440\u043E\u043C\u043A\u043E\u0441\u0442\u044C","accessories.control.stopped":"\u041E\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043E","accessories.control.target":"\u0426\u0435\u043B\u044C","accessories.control.target_humidity":"\u0426\u0435\u043B\u0435\u0432\u0430\u044F \u0432\u043B\u0430\u0436\u043D\u043E\u0441\u0442\u044C","accessories.control.target_temperature":"\u0417\u0430\u0434\u0430\u043D\u043D\u0430\u044F \u0442\u0435\u043C\u043F\u0435\u0440\u0430\u0442\u0443\u0440\u0430","accessories.control.triggered":"\u0421\u0440\u0430\u0431\u043E\u0442\u0430\u043B\u043E","accessories.control.unknown":"\u041D\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043D\u044B\u0439","accessories.control.unlocked":"\u041E\u0442\u043A\u0440\u044B\u0442\u043E","accessories.control_disabled":"\u0423\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u0430\u043C\u0438 \u043E\u0442\u043A\u043B\u044E\u0447\u0435\u043D\u043E","accessories.hide_this_accessory":"\u0421\u043A\u0440\u044B\u0442\u044C \u044D\u0442\u043E\u0442 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440","accessories.message_for_more_information":"\u0447\u0442\u043E\u0431\u044B \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u044C \u0431\u043E\u043B\u044C\u0448\u0435 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438","accessories.message_must_use_insecure_mode":"\u0427\u0442\u043E\u0431\u044B \u0443\u043F\u0440\u0430\u0432\u043B\u044F\u0442\u044C \u0441\u0432\u043E\u0438\u043C\u0438 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u0430\u043C\u0438, \u0412\u044B \u0434\u043E\u043B\u0436\u043D\u044B \u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C Homebridge \u0432 \u043D\u0435\u0431\u0435\u0437\u043E\u043F\u0430\u0441\u043D\u043E\u043C \u0440\u0435\u0436\u0438\u043C\u0435.","accessories.message_please_see":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u043E\u0441\u043C\u043E\u0442\u0440\u0438\u0442\u0435","accessories.name":"\u041D\u0430\u0437\u0432\u0430\u043D\u0438\u0435","accessories.room_name":"\u041D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043A\u043E\u043C\u043D\u0430\u0442\u044B","accessories.rooms_not_appear_in_homekit":"\u0421\u043E\u0437\u0434\u0430\u043D\u043D\u044B\u0435 \u0437\u0434\u0435\u0441\u044C \u043A\u043E\u043C\u043D\u0430\u0442\u044B \u043D\u0435 \u043F\u043E\u044F\u0432\u044F\u0442\u0441\u044F \u0432 HomeKit, \u043E\u043D\u0438 \u043F\u0440\u0435\u0434\u043D\u0430\u0437\u043D\u0430\u0447\u0435\u043D\u044B \u0434\u043B\u044F \u043E\u0440\u0433\u0430\u043D\u0438\u0437\u0430\u0446\u0438\u0438 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u043E\u0432 \u0432 Homebridge UI.","accessories.settings_link":"You can access the Homebridge Settings at any time from the cog icon in the side menu.","accessories.show_on_dashboard":"\u041E\u0442\u043E\u0431\u0440\u0430\u0437\u0438\u0442\u044C \u043D\u0430 \u043F\u0430\u043D\u0435\u043B\u0438 \u0432\u0438\u0434\u0436\u0435\u0442\u043E\u0432","accessories.title_accessories":"\u0410\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B","backup.backup_delete_failed":"Backup deletion failed. See logs for details.","backup.backup_download_failed":"\u041E\u0448\u0438\u0431\u043A\u0430 \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u043E\u0433\u043E \u043A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F","backup.backup_exceeds_max_size":"\u0420\u0435\u0437\u0435\u0440\u0432\u043D\u0430\u044F \u043A\u043E\u043F\u0438\u044F ({{ backupSize }}) \u043F\u0440\u0435\u0432\u044B\u0448\u0430\u0435\u0442 \u043C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u044B\u0439 \u0440\u0430\u0437\u043C\u0435\u0440 \u0444\u0430\u0439\u043B\u0430 \u0432\u043E\u0441\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u044F {{ maxBackupSizeText }}","backup.backup_help_one":"\u0421\u043E\u0437\u0434\u0430\u0439\u0442\u0435 \u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0435 \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u0443\u044E \u043A\u043E\u043F\u0438\u044E \u0432\u0441\u0435\u0439 \u0412\u0430\u0448\u0435\u0439 \u0441\u0440\u0435\u0434\u044B Homebridge. \u0412 \u043F\u0440\u043E\u0446\u0435\u0441\u0441\u0435 \u0440\u0435\u0437\u0435\u0440\u0432\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F \u0431\u0443\u0434\u0435\u0442 \u0441\u043E\u0437\u0434\u0430\u043D\u0430 \u043A\u043E\u043F\u0438\u044F \u0432\u0441\u0435\u0433\u043E \u0441\u043E\u0434\u0435\u0440\u0436\u0438\u043C\u043E\u0433\u043E \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u0438 \u0445\u0440\u0430\u043D\u0435\u043D\u0438\u044F Homebridge, \u043A\u043E\u0442\u043E\u0440\u0443\u044E \u0432\u043F\u043E\u0441\u043B\u0435\u0434\u0441\u0442\u0432\u0438\u0438 \u0412\u044B \u0441\u043C\u043E\u0436\u0435\u0442\u0435 \u0432\u043E\u0441\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C \u043D\u0430 \u043B\u044E\u0431\u043E\u0439 \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0435, \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u044E\u0449\u0435\u0439 Homebridge UI.","backup.backup_help_two":"\u041F\u043B\u0430\u0433\u0438\u043D\u044B, \u043D\u0435 \u0440\u0430\u0437\u043C\u0435\u0449\u0435\u043D\u043D\u044B\u0435 \u0432 npm, \u0438\u043B\u0438 \u043F\u043B\u0430\u0433\u0438\u043D\u044B, \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044B\u0435 \u043D\u0435\u043F\u043E\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0435\u043D\u043D\u043E \u0438\u0437 GitHub, \u043D\u0435 \u0431\u0443\u0434\u0443\u0442 \u0441\u043A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u043D\u044B \u0438\u043B\u0438 \u0432\u043E\u0441\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u044B.","backup.backup_restored":"\u0420\u0435\u0437\u0435\u0440\u0432\u043D\u0430\u044F \u043A\u043E\u043F\u0438\u044F \u0432\u043E\u0441\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u0430","backup.backup_warning":"\u0410\u0440\u0445\u0438\u0432\u044B \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u044B\u0445 \u043A\u043E\u043F\u0438\u0439 \u0441\u043E\u0434\u0435\u0440\u0436\u0430\u0442 \u043A\u043E\u043D\u0444\u0438\u0434\u0435\u043D\u0446\u0438\u0430\u043B\u044C\u043D\u0443\u044E \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044E \u0438 \u043D\u0435 \u0434\u043E\u043B\u0436\u043D\u044B \u043F\u0435\u0440\u0435\u0434\u0430\u0432\u0430\u0442\u044C\u0441\u044F \u0434\u0440\u0443\u0433\u0438\u043C \u043B\u0438\u0446\u0430\u043C.","backup.button_restore_backup":"\u0412\u043E\u0441\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C","backup.label_choose_backup_file_to_restore":"\u0412\u044B\u0431\u0435\u0440\u0438\u0442\u0435 \u0444\u0430\u0439\u043B \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u043E\u0439 \u043A\u043E\u043F\u0438\u0438 \u0434\u043B\u044F \u0432\u043E\u0441\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u044F\u2026","backup.label_uploading":"\u0417\u0430\u0433\u0440\u0443\u0437\u043A\u0430\u2026","backup.load_error":"\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044E \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u043E\u0433\u043E \u043A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F.","backup.now":"Now","backup.restore_failed":"\u041E\u0448\u0438\u0431\u043A\u0430 \u0432\u043E\u0441\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u044F \u0438\u0437 \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u043E\u0439 \u043A\u043E\u043F\u0438\u0438","backup.restore_help_one":"\u0412\u043E\u0441\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u0435 \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u0443\u044E \u043A\u043E\u043F\u0438\u044E, \u0441\u043E\u0437\u0434\u0430\u043D\u043D\u0443\u044E \u0440\u0430\u043D\u0435\u0435 \u0441 \u043F\u043E\u043C\u043E\u0449\u044C\u044E Homebridge UI. \u0412\u0430\u0448\u0430 \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044F Homebridge, \u043A\u044D\u0448\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u044B\u0435 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B, \u0441\u043E\u043F\u0440\u044F\u0436\u0435\u043D\u0438\u0435 \u0441 HomeKit \u0438 \u0443\u0447\u0435\u0442\u043D\u044B\u0435 \u0437\u0430\u043F\u0438\u0441\u0438 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0435\u0439 Homebridge UI \u0431\u0443\u0434\u0443\u0442 \u0432\u043E\u0441\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u044B. \u0412\u0441\u0435 \u043F\u043B\u0430\u0433\u0438\u043D\u044B Homebridge, \u043A\u043E\u0442\u043E\u0440\u044B\u0435 \u0412\u044B \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u043B\u0438, \u0442\u0430\u043A\u0436\u0435 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043D\u044B \u0438\u0437 \u0440\u0435\u043F\u043E\u0437\u0438\u0442\u043E\u0440\u0438\u044F npm.","backup.restore_help_two":"\u0412\u0430\u043C \u043D\u0443\u0436\u043D\u043E \u0431\u0443\u0434\u0435\u0442 \u0432\u043E\u0439\u0442\u0438 \u0432 Homebridge UI \u043F\u043E\u0441\u043B\u0435 \u0432\u043E\u0441\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u044F \u0441 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u0435\u043C \u0443\u0447\u0435\u0442\u043D\u044B\u0445 \u0434\u0430\u043D\u043D\u044B\u0445 \u0438\u0437 \u0432\u043E\u0441\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u043E\u0433\u043E \u0438\u043D\u0441\u0442\u0430\u043D\u0441\u0430.","backup.restore_max_size":"\u0412\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0432\u043E\u0441\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C \u0430\u0440\u0445\u0438\u0432 \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u043E\u0439 \u043A\u043E\u043F\u0438\u0438 \u0440\u0430\u0437\u043C\u0435\u0440\u043E\u043C \u0434\u043E {{ maxBackupSizeText }}.","backup.restore_warning":"\u0412\u043E\u0441\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0435 \u0438\u0437 \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u043E\u0439 \u043A\u043E\u043F\u0438\u0438 \u043D\u0435\u043E\u0431\u0440\u0430\u0442\u0438\u043C\u043E \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0438\u0448\u0435\u0442 \u0442\u0435\u043A\u0443\u0449\u0443\u044E \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044E Homebridge.","backup.scheduled_backup_time":"\u041F\u043E\u043B\u043D\u0430\u044F \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u0430\u044F \u043A\u043E\u043F\u0438\u044F \u044D\u043A\u0437\u0435\u043C\u043F\u043B\u044F\u0440\u0430 Homebridge \u0441\u043E\u0437\u0434\u0430\u0435\u0442\u0441\u044F \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0438 \u043A\u0430\u0436\u0434\u044B\u0439 \u0434\u0435\u043D\u044C \u0432 {{ backupTime }} \u0438 \u0445\u0440\u0430\u043D\u0438\u0442\u0441\u044F \u0432 \u0442\u0435\u0447\u0435\u043D\u0438\u0435 {{ dayCount }} \u0434\u043D\u0435\u0439.","backup.title_backup":"\u0420\u0435\u0437\u0435\u0440\u0432\u043D\u043E\u0435 \u043A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0435","child_bridge.about":"Homebridge \u043F\u043E\u0437\u0432\u043E\u043B\u044F\u0435\u0442 \u0437\u0430\u043F\u0443\u0441\u043A\u0430\u0442\u044C \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0443 \u0438\u043B\u0438 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440 \u0432\u0430\u0448\u0435\u0433\u043E \u043F\u043B\u0430\u0433\u0438\u043D\u0430 \u043A\u0430\u043A \u0438\u0437\u043E\u043B\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u044B\u0439 \u0434\u043E\u0447\u0435\u0440\u043D\u0438\u0439 \u043C\u043E\u0441\u0442. \u042D\u0442\u043E \u043C\u043E\u0436\u0435\u0442 \u0443\u043B\u0443\u0447\u0448\u0438\u0442\u044C \u043E\u0431\u0449\u0443\u044E \u043E\u0442\u0437\u044B\u0432\u0447\u0438\u0432\u043E\u0441\u0442\u044C \u0438 \u043D\u0430\u0434\u0435\u0436\u043D\u043E\u0441\u0442\u044C Homebridge.","child_bridge.bridge_connect":"\u041F\u043E\u0434\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u043A HomeKit","child_bridge.bridge_settings":"\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u0434\u043E\u0447\u0435\u0440\u043D\u0435\u0433\u043E \u043C\u043E\u0441\u0442\u0430","child_bridge.bridges":"HomeKit Bridges","child_bridge.bridges_paired":"\u041A\u0430\u0436\u0434\u0430\u044F \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0430 \u0434\u043E\u0447\u0435\u0440\u043D\u0435\u0433\u043E \u043C\u043E\u0441\u0442\u0430 \u0438\u043B\u0438 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440 \u0434\u043E\u043B\u0436\u043D\u044B \u0431\u044B\u0442\u044C \u0441\u043E\u043F\u0440\u044F\u0436\u0435\u043D\u044B \u0441 HomeKit \u043E\u0442\u0434\u0435\u043B\u044C\u043D\u043E.","child_bridge.config.debug":"\u0420\u0435\u0436\u0438\u043C \u043E\u0442\u043B\u0430\u0434\u043A\u0438","child_bridge.config.description":"\u042D\u0442\u0438 \u043F\u043E\u043B\u044F \u043D\u0435 \u044F\u0432\u043B\u044F\u044E\u0442\u0441\u044F \u043E\u0431\u044F\u0437\u0430\u0442\u0435\u043B\u044C\u043D\u044B\u043C\u0438, \u043D\u043E \u043C\u043E\u0433\u0443\u0442 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C\u0441\u044F \u0434\u043B\u044F \u043F\u0435\u0440\u0435\u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0435\u043D\u0438\u044F \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 HomeKit \u0434\u043B\u044F \u044D\u0442\u043E\u0433\u043E \u043C\u043E\u0441\u0442\u0430.","child_bridge.config.firmware":"\u0412\u0435\u0440\u0441\u0438\u044F \u043F\u0440\u043E\u0448\u0438\u0432\u043A\u0438","child_bridge.config.header":"\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044F","child_bridge.config.manufacturer":"\u041F\u0440\u043E\u0438\u0437\u0432\u043E\u0434\u0438\u0442\u0435\u043B\u044C","child_bridge.config.model":"\u041C\u043E\u0434\u0435\u043B\u044C","child_bridge.config.name":"\u0418\u043C\u044F","child_bridge.must_configure_plugin":"\u0412\u044B \u0434\u043E\u043B\u0436\u043D\u044B \u043D\u0430\u0441\u0442\u0440\u043E\u0438\u0442\u044C \u044D\u0442\u043E\u0442 \u043F\u043B\u0430\u0433\u0438\u043D \u043F\u0435\u0440\u0435\u0434 \u0442\u0435\u043C, \u043A\u0430\u043A \u0443\u043F\u0440\u0430\u0432\u043B\u044F\u0442\u044C \u0435\u0433\u043E \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430\u043C\u0438 \u043C\u043E\u0441\u0442\u0430.","child_bridge.reset_accessories":"\u0421\u0431\u0440\u043E\u0441\u0438\u0442\u044C \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B","child_bridge.reset_accessories_list":"\u0412\u044B\u0431\u0435\u0440\u0438\u0442\u0435, \u0434\u043B\u044F \u043A\u0430\u043A\u0438\u0445 \u0434\u043E\u0447\u0435\u0440\u043D\u0438\u0445 \u043C\u043E\u0441\u0442\u043E\u0432 \u0432\u044B \u0445\u043E\u0442\u0438\u0442\u0435 \u0441\u0431\u0440\u043E\u0441\u0438\u0442\u044C \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B \u043D\u0438\u0436\u0435:","child_bridge.restart":"\u041F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C \u0434\u043E\u0447\u0435\u0440\u043D\u0438\u0435 \u043C\u043E\u0441\u0442\u044B","child_bridge.restart_homebridge":"\u041F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0435 Homebridge, \u0447\u0442\u043E\u0431\u044B \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044C \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0443 \u044D\u0442\u043E\u0433\u043E \u0434\u043E\u0447\u0435\u0440\u043D\u0435\u0433\u043E \u043C\u043E\u0441\u0442\u0430.","child_bridge.restart_plural":"\u041F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C \u0434\u043E\u0447\u0435\u0440\u043D\u0438\u0435 \u043C\u043E\u0441\u0442\u044B","child_bridge.return_to_pair":"\u0412\u0435\u0440\u043D\u0438\u0442\u0435\u0441\u044C \u043D\u0430 \u044D\u0442\u043E\u0442 \u044D\u043A\u0440\u0430\u043D \u043F\u043E\u0441\u043B\u0435 \u043F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043A\u0438 Homebridge, \u0447\u0442\u043E\u0431\u044B \u0443\u0432\u0438\u0434\u0435\u0442\u044C QR-\u043A\u043E\u0434 \u0434\u043B\u044F \u0441\u043E\u043F\u0440\u044F\u0436\u0435\u043D\u0438\u044F.","child_bridge.select_type":"\u0412\u044B\u0431\u0435\u0440\u0438\u0442\u0435, \u043A\u0430\u043A\u0438\u0435 \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u044B \u0438\u043B\u0438 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B \u0432\u044B \u0445\u043E\u0442\u0438\u0442\u0435 \u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C \u043A\u0430\u043A \u0434\u043E\u0447\u0435\u0440\u043D\u0438\u0439 \u043C\u043E\u0441\u0442","child_bridge.setup":"\u041D\u0430\u0441\u0442\u0440\u043E\u0438\u0442\u044C \u0434\u043E\u0447\u0435\u0440\u043D\u0438\u0439 \u043C\u043E\u0441\u0442","child_bridge.start":"\u0417\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C \u0434\u043E\u0447\u0435\u0440\u043D\u0438\u0439 \u043C\u043E\u0441\u0442","child_bridge.start_plural":"\u0417\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C \u0434\u043E\u0447\u0435\u0440\u043D\u0438\u0435 \u043C\u043E\u0441\u0442\u044B","child_bridge.stop":"\u041E\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C \u0434\u043E\u0447\u0435\u0440\u043D\u0438\u0439 \u043C\u043E\u0441\u0442","child_bridge.stop_plural":"\u041E\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C \u0434\u043E\u0447\u0435\u0440\u043D\u0438\u0435 \u043C\u043E\u0441\u0442\u044B","child_bridge.wiki_link":"\u0423\u0437\u043D\u0430\u0439\u0442\u0435 \u0431\u043E\u043B\u044C\u0448\u0435 \u043E \u0434\u043E\u0447\u0435\u0440\u043D\u0438\u0445 \u043C\u043E\u0441\u0442\u0430\u0445","config.config_accessory_must_be_array":"\u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B \u0434\u043E\u043B\u0436\u043D\u044B \u0431\u044B\u0442\u044C \u043C\u0430\u0441\u0441\u0438\u0432\u043E\u043C []","config.config_bridge_missing":"\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u043C\u043E\u0441\u0442\u0430 \u043E\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044E\u0442","config.config_invalid_json":"\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044F \u0441\u043E\u0434\u0435\u0440\u0436\u0438\u0442 \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u044B\u0439 JSON","config.config_platform_must_be_array":"\u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u044B \u0434\u043E\u043B\u0436\u043D\u044B \u0431\u044B\u0442\u044C \u043C\u0430\u0441\u0441\u0438\u0432\u043E\u043C []","config.config_username_error":"\u0418\u043C\u044F \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F \u0434\u043E\u043B\u0436\u043D\u043E \u0431\u044B\u0442\u044C \u0432 \u0432\u0438\u0434\u0435 6 \u043F\u0430\u0440 \u0448\u0435\u0441\u0442\u043D\u0430\u0434\u0446\u0430\u0442\u0435\u0440\u0438\u0447\u043D\u044B\u0445 \u0441\u0438\u043C\u0432\u043E\u043B\u043E\u0432, \u0440\u0430\u0437\u0434\u0435\u043B\u0435\u043D\u043D\u044B\u0445 \u0434\u0432\u043E\u0435\u0442\u043E\u0447\u0438\u044F\u043C\u0438 (A-F 0-9)","config.error_blocks_objects":"\u0412\u0441\u0435 \u0431\u043B\u043E\u043A\u0438 {{ type }} \u0434\u043E\u043B\u0436\u043D\u044B \u0431\u044B\u0442\u044C \u043E\u0431\u044A\u0435\u043A\u0442\u0430\u043C\u0438.","config.error_blocks_type":"\u0412\u0441\u0435 \u0431\u043B\u043E\u043A\u0438 {{ type }} \u0434\u043E\u043B\u0436\u043D\u044B \u0441\u043E\u0434\u0435\u0440\u0436\u0430\u0442\u044C \u0430\u0442\u0440\u0438\u0431\u0443\u0442 {{ type }}.","config.error_string_array":"\u041A\u0430\u0436\u0434\u044B\u0439 \u044D\u043B\u0435\u043C\u0435\u043D\u0442 \u0432 \u043C\u0430\u0441\u0441\u0438\u0432\u0435 {{ key }} \u0434\u043E\u043B\u0436\u0435\u043D \u0431\u044B\u0442\u044C \u0441\u0442\u0440\u043E\u043A\u043E\u0439.","config.error_string_type":"\u0410\u0442\u0440\u0438\u0431\u0443\u0442 {{ type }} \u0434\u043E\u043B\u0436\u0435\u043D \u0431\u044B\u0442\u044C \u0441\u0442\u0440\u043E\u043A\u043E\u0439.","config.failed_to_save_config":"\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u0441\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044E","config.restore.confirm":"\u041D\u0430\u0436\u043C\u0438\u0442\u0435 \xAB\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C\xBB, \u0447\u0442\u043E\u0431\u044B \u043F\u043E\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044C, \u0447\u0442\u043E \u0412\u044B \u0445\u043E\u0442\u0438\u0442\u0435 \u0432\u043E\u0441\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C \u044D\u0442\u0443 \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u0443\u044E \u043A\u043E\u043F\u0438\u044E.","config.restore.copy_to_editor":"\u041A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0432 \u0440\u0435\u0434\u0430\u043A\u0442\u043E\u0440","config.restore.no_backups":"\u041D\u0435\u0442 \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u044B\u0445 \u043A\u043E\u043F\u0438\u0439","config.restore.title_restore_homebridge_backup":"\u0412\u043E\u0441\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0435 \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 Homebridge \u0438\u0437 \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u043E\u0439 \u043A\u043E\u043F\u0438\u0438","config.restore.toast_backups_deleted":"\u0412\u0441\u0435 \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u044B\u0435 \u043A\u043E\u043F\u0438\u0438 \u0443\u0434\u0430\u043B\u0435\u043D\u044B","config.title_backup_loaded":"\u0420\u0435\u0437\u0435\u0440\u0432\u043D\u0430\u044F \u043A\u043E\u043F\u0438\u044F \u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043D\u0430","form.button_cancel":"\u041E\u0442\u043C\u0435\u043D\u0430","form.button_close":"\u0417\u0430\u043A\u0440\u044B\u0442\u044C","form.button_delete":"\u0423\u0434\u0430\u043B\u0438\u0442\u044C","form.button_disable":"\u041E\u0442\u043A\u043B\u044E\u0447\u0438\u0442\u044C","form.button_download":"\u0421\u043A\u0430\u0447\u0430\u0442\u044C","form.button_edit":"\u0420\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C","form.button_enable":"\u0412\u043A\u043B\u044E\u0447\u0438\u0442\u044C","form.button_hide":"\u0421\u043A\u0440\u044B\u0442\u044C","form.button_lock":"\u0417\u0430\u0431\u043B\u043E\u043A\u0438\u0440\u043E\u0432\u0430\u0442\u044C","form.button_more_info":"\u041F\u043E\u0434\u0440\u043E\u0431\u043D\u0435\u0435","form.button_remove":"\u0423\u0434\u0430\u043B\u0438\u0442\u044C","form.button_reset":"\u0421\u0431\u0440\u043E\u0441\u0438\u0442\u044C","form.button_restore":"\u0412\u043E\u0441\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C","form.button_save":"\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C","form.button_show":"Show","form.button_unlock":"\u0420\u0430\u0437\u0431\u043B\u043E\u043A\u0438\u0440\u043E\u0432\u0430\u0442\u044C","form.button_unpair":"Unpair","form.label_invalid":"Config validation failed - you can still save your changes.","form.label_invalid_strict":"Config validation failed - please review the form before saving.","form.label_valid":"Config validation passed.","form.select.auto":"\u0410\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0438 (\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0430)","login.button_login":"\u0412\u043E\u0439\u0442\u0438","login.invalid_credentials":"\u041D\u0435\u0432\u0435\u0440\u043D\u043E\u0435 \u0438\u043C\u044F \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F \u0438 \u043F\u0430\u0440\u043E\u043B\u044C.","login.label_2fa_code":"\u041A\u043E\u0434 \u0414\u0424\u0410","login.label_password":"\u041F\u0430\u0440\u043E\u043B\u044C","login.label_username":"\u0418\u043C\u044F \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F","login.message_invalid_2fa_code":"\u0412\u0432\u0435\u0434\u0435\u043D\u043D\u044B\u0439 \u043A\u043E\u0434 \u043D\u0435\u0432\u0435\u0440\u0435\u043D \u0438\u043B\u0438 \u0441\u0440\u043E\u043A \u0435\u0433\u043E \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044F \u0438\u0441\u0442\u0435\u043A.","logs.download.error":"\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u0441\u043A\u0430\u0447\u0430\u0442\u044C \u0444\u0430\u0439\u043B \u043B\u043E\u0433\u043E\u0432.","logs.download_warning":"\u0424\u0430\u0439\u043B\u044B \u043B\u043E\u0433\u043E\u0432 Homebridge \u043C\u043E\u0433\u0443\u0442 \u0441\u043E\u0434\u0435\u0440\u0436\u0430\u0442\u044C \u043B\u0438\u0447\u043D\u0443\u044E \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044E, \u043F\u0430\u0440\u043E\u043B\u0438 \u0438\u043B\u0438 \u0442\u043E\u043A\u0435\u043D\u044B \u0434\u043E\u0441\u0442\u0443\u043F\u0430. \u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u0440\u043E\u0432\u0435\u0440\u044C\u0442\u0435 \u0444\u0430\u0439\u043B \u043B\u043E\u0433\u043E\u0432 \u0438 \u0443\u0434\u0430\u043B\u0438\u0442\u0435 \u043B\u044E\u0431\u0443\u044E \u043A\u043E\u043D\u0444\u0438\u0434\u0435\u043D\u0446\u0438\u0430\u043B\u044C\u043D\u0443\u044E \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044E \u043F\u0435\u0440\u0435\u0434 \u0442\u0435\u043C, \u043A\u0430\u043A \u0434\u0435\u043B\u0438\u0442\u044C\u0441\u044F \u0438\u043C \u0441 \u0434\u0440\u0443\u0433\u0438\u043C\u0438.","logs.log_file_truncated":"\u0424\u0430\u0439\u043B \u043B\u043E\u0433\u043E\u0432 \u043E\u0431\u0440\u0435\u0437\u0430\u043D.","logs.title_download_log_file":"\u0421\u043A\u0430\u0447\u0430\u0442\u044C \u0444\u0430\u0439\u043B \u043B\u043E\u0433\u043E\u0432","logs.title_truncate_log_file":"\u0423\u0434\u0430\u043B\u0438\u0442\u044C \u043B\u043E\u0433\u0438","logs.truncate.error":"\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u0443\u0434\u0430\u043B\u0438\u0442\u044C \u0444\u0430\u0439\u043B \u043B\u043E\u0433\u043E\u0432.","logs.truncate_log_warning":"\u042D\u0442\u043E \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043D\u0435\u043E\u0431\u0440\u0430\u0442\u0438\u043C\u043E \u0443\u0434\u0430\u043B\u0438\u0442 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044E\u0449\u0438\u0435 \u043B\u043E\u0433\u0438 Homebridge. \u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u043F\u0440\u043E\u0434\u043E\u043B\u0436\u0438\u0442\u044C?","menu.config_json_editor":"\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044F JSON","menu.docker.restart_container":"\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A \u043A\u043E\u043D\u0442\u0435\u0439\u043D\u0435\u0440\u0430","menu.docker.startup_script":"\u0421\u043A\u0440\u0438\u043F\u0442 \u0437\u0430\u043F\u0443\u0441\u043A\u0430","menu.docker.terminal":"\u0422\u0435\u0440\u043C\u0438\u043D\u0430\u043B","menu.hbrestart.confirm_hb":"\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A Homebridge","menu.hbrestart.confirm_ui":"\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A \u0441\u0435\u0440\u0432\u0438\u0441\u0430 \u0438 \u0438\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430 HB","menu.hbrestart.title":"\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A Homebridge","menu.label_accessories":"\u0410\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B","menu.label_plugins":"\u041F\u043B\u0430\u0433\u0438\u043D\u044B","menu.label_settings":"\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438","menu.label_settings_advanced":"\u0414\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u0435 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 UI","menu.label_status":"\u0421\u0442\u0430\u0442\u0443\u0441","menu.linux.label_logs":"\u041B\u043E\u0433\u0438","menu.linux.label_restart_server":"\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C \u0441\u0435\u0440\u0432\u0435\u0440","menu.linux.label_shutdown_server":"\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043D\u0438\u0435 \u0440\u0430\u0431\u043E\u0442\u044B \u0441\u0435\u0440\u0432\u0435\u0440\u0430","menu.linux.label_terminal":"\u0422\u0435\u0440\u043C\u0438\u043D\u0430\u043B","menu.restart.title":"\u041E\u043F\u0446\u0438\u0438 \u043F\u0438\u0442\u0430\u043D\u0438\u044F","menu.settings.title":"\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438","menu.tooltip_logout":"\u0412\u044B\u0445\u043E\u0434","menu.tooltip_restart":"\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A","menu.tooltip_user_accounts":"\u041F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0438","menu.tooltip_view_logs":"\u041F\u0440\u043E\u0441\u043C\u043E\u0442\u0440 \u043B\u043E\u0433\u0430","platform.docker.container_restarted":"\u041A\u043E\u043D\u0442\u0435\u0439\u043D\u0435\u0440 Docker \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0449\u0435\u043D","platform.docker.must_use_hashbang":"\u041A\u043E\u0434 \u0441\u043A\u0440\u0438\u043F\u0442\u0430 \u0434\u043E\u043B\u0436\u0435\u043D \u043D\u0430\u0447\u0438\u043D\u0430\u0442\u044C\u0441\u044F \u0441 #!/bin/sh","platform.docker.restart_required":"\u0412\u0430\u043C \u043D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u043E \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C \u044D\u0442\u043E\u0442 \u043A\u043E\u043D\u0442\u0435\u0439\u043D\u0435\u0440, \u0447\u0442\u043E\u0431\u044B \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F \u0432\u0441\u0442\u0443\u043F\u0438\u043B\u0438 \u0432 \u0441\u0438\u043B\u0443.","platform.docker.run_with_restart":"\u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044C, \u0447\u0442\u043E \u0412\u044B \u0437\u0430\u043F\u0443\u0441\u043A\u0430\u0435\u0442\u0435 \u043A\u043E\u043D\u0442\u0435\u0439\u043D\u0435\u0440 Docker \u0441 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0430\u043C\u0438 <code>--restart=always</code>","platform.docker.script_help":"\u042D\u0442\u043E\u0442 \u0441\u043A\u0440\u0438\u043F\u0442 \u0431\u0443\u0434\u0435\u0442 \u0432\u044B\u043F\u043E\u043B\u043D\u044F\u0442\u044C\u0441\u044F \u043A\u0430\u0436\u0434\u044B\u0439 \u0440\u0430\u0437 \u043F\u0440\u0438 \u0437\u0430\u043F\u0443\u0441\u043A\u0435 \u043A\u043E\u043D\u0442\u0435\u0439\u043D\u0435\u0440\u0430 Docker. \u0412\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u044D\u0442\u043E \u0434\u043B\u044F \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0438 \u043B\u044E\u0431\u044B\u0445 \u0434\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u0445 \u043F\u0430\u043A\u0435\u0442\u043E\u0432, \u043A\u043E\u0442\u043E\u0440\u044B\u0435 \u043C\u043E\u0433\u0443\u0442 \u043F\u043E\u043D\u0430\u0434\u043E\u0431\u0438\u0442\u044C\u0441\u044F \u0412\u0430\u0448\u0438\u043C \u043F\u043B\u0430\u0433\u0438\u043D\u0430\u043C, \u043D\u0430\u043F\u0440\u0438\u043C\u0435\u0440, ffmpeg \u0438\u043B\u0438 libpcap-dev.","platform.docker.script_saved":"\u0421\u043A\u0440\u0438\u043F\u0442 \u0430\u0432\u0442\u043E\u0437\u0430\u0433\u0440\u0443\u0437\u043A\u0438 \u0441\u043E\u0445\u0440\u0430\u043D\u0435\u043D","platform.docker.server_long_time":"\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A \u043A\u043E\u043D\u0442\u0435\u0439\u043D\u0435\u0440\u0430 \u0437\u0430\u043D\u0438\u043C\u0430\u0435\u0442 \u043C\u043D\u043E\u0433\u043E \u0432\u0440\u0435\u043C\u0435\u043D\u0438. \u0412\u0430\u043C \u043C\u043E\u0436\u0435\u0442 \u043F\u043E\u0442\u0440\u0435\u0431\u043E\u0432\u0430\u0442\u044C\u0441\u044F \u0432\u0440\u0443\u0447\u043D\u0443\u044E \u043E\u0442\u043A\u0440\u044B\u0442\u044C \u043A\u043E\u043D\u0442\u0435\u0439\u043D\u0435\u0440 Docker.","platform.docker.title_restarting":"\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A \u043A\u043E\u043D\u0442\u0435\u0439\u043D\u0435\u0440\u0430 Docker","platform.linux.long_time":"\u041F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043A\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0437\u0430\u043D\u0438\u043C\u0430\u0435\u0442 \u043C\u043D\u043E\u0433\u043E \u0432\u0440\u0435\u043C\u0435\u043D\u0438. \u0412\u043E\u0437\u043C\u043E\u0436\u043D\u043E, \u0412\u0430\u043C \u043F\u0440\u0438\u0434\u0435\u0442\u0441\u044F \u0432\u0440\u0443\u0447\u043D\u0443\u044E \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C \u0441\u0435\u0440\u0432\u0435\u0440.","platform.linux.restart":"\u041F\u043E\u0434\u043E\u0436\u0434\u0438\u0442\u0435, \u044D\u0442\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430 \u0431\u0443\u0434\u0435\u0442 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0438 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0430 \u043F\u043E\u0441\u043B\u0435 \u0437\u0430\u043F\u0443\u0441\u043A\u0430 Homebridge.","platform.linux.restarting_server":"\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A \u0441\u0435\u0440\u0432\u0435\u0440\u0430","platform.linux.server_restart_error":"\u041F\u0440\u043E\u0438\u0437\u043E\u0448\u043B\u0430 \u043E\u0448\u0438\u0431\u043A\u0430 \u043E\u0442\u043F\u0440\u0430\u0432\u043A\u0438 \u043A\u043E\u043C\u0430\u043D\u0434\u044B \u043F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043A\u0438 \u043D\u0430 \u0441\u0435\u0440\u0432\u0435\u0440","platform.linux.server_restarted":"\u0421\u0435\u0440\u0432\u0435\u0440 \u043F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043D","platform.linux.server_taking_long_time":"\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0437\u0430\u043D\u0438\u043C\u0430\u0435\u0442 \u043C\u043D\u043E\u0433\u043E \u0432\u0440\u0435\u043C\u0435\u043D\u0438","platform.linux.server_will_power_down":"\u0421\u0435\u0440\u0432\u0435\u0440 \u0441\u043A\u043E\u0440\u043E \u043E\u0442\u043A\u043B\u044E\u0447\u0438\u0442\u0441\u044F.","platform.linux.shutting_down_server":"\u0412\u044B\u043A\u043B\u044E\u0447\u0435\u043D\u0438\u0435 \u0441\u0435\u0440\u0432\u0435\u0440\u0430","platform.version.restart_required":"Homebridge UI v{{ uiVersion }} \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D, \u043D\u043E \u0441\u0435\u0440\u0432\u0435\u0440\u043D\u0430\u044F \u0441\u043B\u0443\u0436\u0431\u0430 \u0432\u0441\u0435 \u0435\u0449\u0435 \u0440\u0430\u0431\u043E\u0442\u0430\u0435\u0442 \u043D\u0430 v{{ serverVersion }}.","platform.version.service_restart_required":"\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044F \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A","plugins.bridge.action_error":"\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C {{ action }} \u0434\u043E\u0447\u0435\u0440\u043D\u0438\u0435 \u043C\u043E\u0441\u0442\u044B.","plugins.button_homepage":"\u0414\u043E\u043C\u0430\u0448\u043D\u044F\u044F \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430 \u043F\u043B\u0430\u0433\u0438\u043D\u0430","plugins.button_set_up":"\u041D\u0430\u0441\u0442\u0440\u043E\u0438\u0442\u044C","plugins.button_settings":"\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438","plugins.button_uninstall":"\u0423\u0434\u0430\u043B\u0438\u0442\u044C","plugins.button_update":"\u041E\u0431\u043D\u043E\u0432\u0438\u0442\u044C","plugins.compat.are_you_sure":"\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u043F\u0440\u043E\u0434\u043E\u043B\u0436\u0438\u0442\u044C?","plugins.compat.hb_node_too_low":"{{ packageName }} v{{ latestVersion }} \u0442\u0440\u0435\u0431\u0443\u0435\u0442 Node.js v{{ minVersion }} \u0438\u043B\u0438 \u043D\u043E\u0432\u0435\u0435. \u0412 \u043D\u0430\u0441\u0442\u043E\u044F\u0449\u0435\u0435 \u0432\u0440\u0435\u043C\u044F \u0412\u044B \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442\u0435 Node.js {{ installedVersion }}.","plugins.compat.hb_too_low":"\u041F\u043B\u0430\u0433\u0438\u043D {{ pluginName }} \u0440\u0435\u043A\u043E\u043C\u0435\u043D\u0434\u0443\u0435\u0442\u0441\u044F \u0437\u0430\u043F\u0443\u0441\u043A\u0430\u0442\u044C \u0441 Homebridge v{{ minVersion }} \u0438\u043B\u0438 \u043D\u043E\u0432\u0435\u0435. \u0412 \u043D\u0430\u0441\u0442\u043E\u044F\u0449\u0435\u0435 \u0432\u0440\u0435\u043C\u044F \u0412\u044B \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442\u0435 Homebridge v{{ installedVersion }}.","plugins.compat.node_first":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043E\u0431\u043D\u043E\u0432\u0438\u0442\u0435 Node.js \u043F\u0435\u0440\u0435\u0434 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0435\u043C {{ packageName }}.","plugins.compat.node_link":"\u041A\u0430\u043A \u043E\u0431\u043D\u043E\u0432\u0438\u0442\u044C Node.js","plugins.compat.node_too_low":"\u041F\u043B\u0430\u0433\u0438\u043D {{ pluginName }} \u0440\u0435\u043A\u043E\u043C\u0435\u043D\u0434\u0443\u0435\u0442\u0441\u044F \u0437\u0430\u043F\u0443\u0441\u043A\u0430\u0442\u044C \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u044F Node.js v{{ minVersion }} \u0438\u043B\u0438 \u043D\u043E\u0432\u0435\u0435. \u0412 \u043D\u0430\u0441\u0442\u043E\u044F\u0449\u0435\u0435 \u0432\u0440\u0435\u043C\u044F \u0412\u044B \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442\u0435 Node.js {{ installedVersion }}.","plugins.compat.title":"\u041F\u0440\u043E\u0432\u0435\u0440\u043A\u0430 \u0441\u043E\u0432\u043C\u0435\u0441\u0442\u0438\u043C\u043E\u0441\u0442\u0438","plugins.config.load_error":"\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044E \u043F\u043B\u0430\u0433\u0438\u043D\u0430.","plugins.config.must_be_array":"\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044F \u043F\u043B\u0430\u0433\u0438\u043D\u0430 \u0434\u043E\u043B\u0436\u043D\u0430 \u0431\u044B\u0442\u044C \u043C\u0430\u0441\u0441\u0438\u0432\u043E\u043C.","plugins.config.must_be_array_objects":"\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044F \u043F\u043B\u0430\u0433\u0438\u043D\u0430 \u0434\u043E\u043B\u0436\u043D\u0430 \u0431\u044B\u0442\u044C \u043C\u0430\u0441\u0441\u0438\u0432\u043E\u043C \u043E\u0431\u044A\u0435\u043A\u0442\u043E\u0432.","plugins.config.must_be_object":"\u0411\u043B\u043E\u043A \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 \u0434\u043E\u043B\u0436\u0435\u043D \u0431\u044B\u0442\u044C \u043E\u0431\u044A\u0435\u043A\u0442\u043E\u043C.","plugins.config.name_property":'\u0410\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440 \u0434\u043E\u043B\u0436\u0435\u043D \u0438\u043C\u0435\u0442\u044C \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u0439 \u0430\u0442\u0440\u0438\u0431\u0443\u0442 "name"',"plugins.config.please_fix":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0438\u0441\u043F\u0440\u0430\u0432\u044C\u0442\u0435 \u043E\u0448\u0438\u0431\u043A\u0438 \u0432\u0430\u043B\u0438\u0434\u0430\u0446\u0438\u0438 \u043F\u0435\u0440\u0435\u0434 \u0434\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u0438\u0435\u043C \u043D\u043E\u0432\u043E\u0433\u043E \u0431\u043B\u043E\u043A\u0430.","plugins.config.remove_error":"\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u0443\u0434\u0430\u043B\u0438\u0442\u044C \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044E \u043F\u043B\u0430\u0433\u0438\u043D\u0430.","plugins.disable.error":"\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u043E\u0442\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u043F\u043B\u0430\u0433\u0438\u043D.","plugins.donate.button_not_verified":"\u041D\u0435 \u043F\u0440\u043E\u0432\u0435\u0440\u0435\u043D\u043E","plugins.donate.button_verified":"\u041F\u0440\u043E\u0432\u0435\u0440\u0435\u043D\u043E","plugins.donate.message_1":"\u0422\u0430\u043A \u043A\u0430\u043A \u0431\u043E\u043B\u044C\u0448\u0435 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0435\u0439 \u0443\u0441\u0442\u0430\u043D\u0430\u0432\u043B\u0438\u0432\u0430\u044E\u0442 \u0441\u0432\u043E\u0438 \u043F\u043B\u0430\u0433\u0438\u043D\u044B \u0447\u0435\u0440\u0435\u0437 Homebridge UI, \u043E\u043D\u0438 \u0440\u0435\u0436\u0435 \u043F\u043E\u0441\u0435\u0449\u0430\u044E\u0442 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0443 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u043D\u0430 GitHub, \u0433\u0434\u0435 \u043E\u0431\u044B\u0447\u043D\u043E \u043E\u0442\u043E\u0431\u0440\u0430\u0436\u0430\u044E\u0442\u0441\u044F \u0441\u043F\u043E\u0441\u043E\u0431\u044B \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u043A\u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043E\u0442\u0447\u0438\u043A\u0430.","plugins.donate.message_2":"\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u0441\u0441\u044B\u043B\u043E\u043A \u0434\u043B\u044F \u043F\u043E\u0436\u0435\u0440\u0442\u0432\u043E\u0432\u0430\u043D\u0438\u0439 \u043D\u0430\u043F\u0440\u044F\u043C\u0443\u044E \u0432 Homebridge UI \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u0443\u0435\u0442, \u0447\u0442\u043E \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0438 \u0431\u0443\u0434\u0443\u0442 \u0437\u043D\u0430\u0442\u044C, \u043A\u0430\u043A \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0430\u0442\u044C \u0440\u0430\u0437\u0440\u0430\u0431\u043E\u0442\u0447\u0438\u043A\u043E\u0432 Homebridge, \u0435\u0441\u043B\u0438 \u043E\u043D\u0438 \u044D\u0442\u043E\u0433\u043E \u0437\u0430\u0445\u043E\u0442\u044F\u0442.","plugins.donate.tile_donate_to":"\u041F\u043E\u0436\u0435\u0440\u0442\u0432\u043E\u0432\u0430\u0442\u044C {{ author }}","plugins.enable.error":"\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u0432\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u043F\u043B\u0430\u0433\u0438\u043D.","plugins.manage.all_versions":"\u0412\u0441\u0435 \u0432\u0435\u0440\u0441\u0438\u0438","plugins.manage.child_bridge_restart":"\u0414\u043E\u0447\u0435\u0440\u043D\u0438\u0439 \u043C\u043E\u0441\u0442 \u0443\u0441\u043F\u0435\u0448\u043D\u043E \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0449\u0435\u043D.","plugins.manage.child_bridge_restart_failed":"\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C \u043F\u043B\u0430\u0433\u0438\u043D, \u043F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u0435 Homebridge \u0432\u0440\u0443\u0447\u043D\u0443\u044E.","plugins.manage.confirm_disable":"\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u043E\u0442\u043A\u043B\u044E\u0447\u0438\u0442\u044C {{ pluginName }}?","plugins.manage.confirm_disable_accessory_1":"\u0412\u0441\u0435 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B, \u043F\u0440\u0435\u0434\u043E\u0441\u0442\u0430\u0432\u043B\u044F\u0435\u043C\u044B\u0435 \u044D\u0442\u0438\u043C \u043F\u043B\u0430\u0433\u0438\u043D\u043E\u043C, \u0431\u0443\u0434\u0443\u0442 \u0443\u0434\u0430\u043B\u0435\u043D\u044B \u0441 \u044D\u043A\u0440\u0430\u043D\u0430 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u043E\u0432 Homebridge UI \u0438 \u0443\u0434\u0430\u043B\u0435\u043D\u044B \u0438\u0437 HomeKit.","plugins.manage.confirm_disable_accessory_2":"\u041A\u043E\u0433\u0434\u0430 \u0432\u044B \u0441\u043D\u043E\u0432\u0430 \u0432\u043A\u043B\u044E\u0447\u0438\u0442\u0435 \u043F\u043B\u0430\u0433\u0438\u043D, \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B \u043F\u043E\u044F\u0432\u044F\u0442\u0441\u044F \u0432 Homebridge UI \u0438 HomeKit. \u0410\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B \u043F\u043E\u0442\u0435\u0440\u044F\u044E\u0442 \u0441\u0432\u043E\u0438 \u0434\u0430\u043D\u043D\u044B\u0435 HomeKit (\u043D\u0430\u043F\u0440\u0438\u043C\u0435\u0440, \u0441\u0432\u044F\u0437\u0430\u043D\u043D\u044B\u0435 \u0441\u0446\u0435\u043D\u044B \u0438 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0437\u0430\u0446\u0438\u0438).","plugins.manage.confirm_disable_platform_1":"\u0412\u0441\u0435 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B, \u043F\u0440\u0435\u0434\u043E\u0441\u0442\u0430\u0432\u043B\u044F\u0435\u043C\u044B\u0435 \u044D\u0442\u0438\u043C \u043F\u043B\u0430\u0433\u0438\u043D\u043E\u043C, \u0431\u0443\u0434\u0443\u0442 \u0443\u0434\u0430\u043B\u0435\u043D\u044B \u0441 \u044D\u043A\u0440\u0430\u043D\u0430 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u043E\u0432 Homebridge UI, \u043D\u043E \u043E\u0441\u0442\u0430\u043D\u0443\u0442\u0441\u044F \u0432 HomeKit \u0441 \u043C\u0435\u0442\u043A\u043E\u0439 '\u041D\u0435\u0442 \u043E\u0442\u0432\u0435\u0442\u0430'.","plugins.manage.confirm_disable_platform_2":"\u041A\u043E\u0433\u0434\u0430 \u0432\u044B \u0441\u043D\u043E\u0432\u0430 \u0432\u043A\u043B\u044E\u0447\u0438\u0442\u0435 \u043F\u043B\u0430\u0433\u0438\u043D, \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B \u043F\u043E\u044F\u0432\u044F\u0442\u0441\u044F \u0432 Homebridge UI \u0438 \u0441\u043D\u043E\u0432\u0430 \u0441\u0442\u0430\u043D\u0443\u0442 \u0443\u043F\u0440\u0430\u0432\u043B\u044F\u0435\u043C\u044B\u043C\u0438 \u0432 HomeKit. \u0410\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B \u043D\u0435 \u043F\u043E\u0442\u0435\u0440\u044F\u044E\u0442 \u0441\u0432\u043E\u0438 \u0434\u0430\u043D\u043D\u044B\u0435 HomeKit (\u043D\u0430\u043F\u0440\u0438\u043C\u0435\u0440, \u0441\u0432\u044F\u0437\u0430\u043D\u043D\u044B\u0435 \u0441\u0446\u0435\u043D\u044B \u0438 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0437\u0430\u0446\u0438\u0438).","plugins.manage.confirm_enable":"\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u0432\u043A\u043B\u044E\u0447\u0438\u0442\u044C {{ pluginName }}?","plugins.manage.disable":"\u041E\u0442\u043A\u043B\u044E\u0447\u0438\u0442\u044C","plugins.manage.enable":"\u0412\u043A\u043B\u044E\u0447\u0438\u0442\u044C","plugins.manage.information":"\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F \u043E \u043F\u043B\u0430\u0433\u0438\u043D\u0435","plugins.manage.install":"\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0430","plugins.manage.installed":"\u041F\u043B\u0430\u0433\u0438\u043D \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D","plugins.manage.json_config":"\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044F JSON","plugins.manage.manage_version":"\u0423\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u0432\u0435\u0440\u0441\u0438\u0435\u0439","plugins.manage.manual_update_command":"\u0427\u0442\u043E\u0431\u044B \u043E\u0431\u043D\u043E\u0432\u0438\u0442\u044C \u043F\u0430\u043A\u0435\u0442, \u043E\u0442\u043A\u0440\u043E\u0439\u0442\u0435 \u043A\u043E\u043C\u0430\u043D\u0434\u043D\u0443\u044E \u0441\u0442\u0440\u043E\u043A\u0443 Node.js \u043E\u0442 \u0438\u043C\u0435\u043D\u0438 \u0430\u0434\u043C\u0438\u043D\u0438\u0441\u0442\u0440\u0430\u0442\u043E\u0440\u0430 \u0438 \u0432\u044B\u043F\u043E\u043B\u043D\u0438\u0442\u0435 \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u0435 \u043A\u043E\u043C\u0430\u043D\u0434\u044B:","plugins.manage.manual_update_required":"\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044F \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0435 \u0432\u0440\u0443\u0447\u043D\u0443\u044E","plugins.manage.online_updates":"\u041E\u043D\u043B\u0430\u0439\u043D \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u044F \u043D\u0435 \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u044E\u0442\u0441\u044F \u0432 Windows. \u0412\u0430\u043C \u043D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u043E \u043E\u0431\u043D\u043E\u0432\u0438\u0442\u044C Homebridge UI \u0432\u0440\u0443\u0447\u043D\u0443\u044E \u043F\u043E\u0441\u043B\u0435 \u043E\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0438 \u0441\u043B\u0443\u0436\u0431\u044B Homebridge.","plugins.manage.plugin_logs":"\u041B\u043E\u0433\u0438 \u043F\u043B\u0430\u0433\u0438\u043D\u0430","plugins.manage.release_notes":"\u041F\u0440\u0438\u043C\u0435\u0447\u0430\u043D\u0438\u044F \u043A \u0432\u044B\u043F\u0443\u0441\u043A\u0443","plugins.manage.scoped.error":"An error occurred. You can download the logs below.","plugins.manage.scoped.info":"For more information about scoped plugins and why to switch, see the wiki page {{ link }}.","plugins.manage.scoped.process":"This process will not affect your Homebridge/HomeKit accessories. You will not be able to cancel the process once it has started. It will:","plugins.manage.scoped.switch":"Switch To Scoped Plugin","plugins.manage.scoped.windows":"Online updates are not supported on Windows. You will need to install the new plugin and uninstall the old plugin manually.","plugins.manage.scoped.windows_service":'You should <span class="font-weight-bold">not</span> restart Homebridge until both steps are complete.',"plugins.manage.select_version":"\u0412\u044B\u0431\u0435\u0440\u0438\u0442\u0435 \u0432\u0435\u0440\u0441\u0438\u044E \u0434\u043B\u044F \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0438","plugins.manage.thanks_for_updating":"\u0421\u043F\u0430\u0441\u0438\u0431\u043E \u0437\u0430 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0443 \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0435\u0439 \u0432\u0435\u0440\u0441\u0438\u0438 Homebridge UI.","plugins.manage.uninstall":"\u0423\u0434\u0430\u043B\u0435\u043D\u0438\u0435","plugins.manage.uninstalled":"\u041F\u043B\u0430\u0433\u0438\u043D \u0443\u0434\u0430\u043B\u0435\u043D","plugins.manage.unverified_message":"\u041D\u0435\u043F\u043E\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043D\u043D\u044B\u0435 \u043F\u043B\u0430\u0433\u0438\u043D\u044B Homebridge \u0443\u043A\u0430\u0437\u044B\u0432\u0430\u044E\u0442 \u043D\u0430 \u0442\u043E, \u0447\u0442\u043E \u043E\u043D\u0438 \u043D\u0435 \u043F\u0440\u043E\u0448\u043B\u0438 \u043F\u0440\u043E\u0446\u0435\u0441\u0441 \u043F\u0440\u043E\u0432\u0435\u0440\u043A\u0438 \u043A\u043E\u043C\u0430\u043D\u0434\u043E\u0439 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 Homebridge. \u041E\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0435 \u043F\u0440\u043E\u0432\u0435\u0440\u043A\u0438 \u043D\u0435 \u043E\u0431\u044F\u0437\u0430\u0442\u0435\u043B\u044C\u043D\u043E \u043E\u0437\u043D\u0430\u0447\u0430\u0435\u0442 \u043D\u0435\u044D\u0444\u0444\u0435\u043A\u0442\u0438\u0432\u043D\u043E\u0441\u0442\u044C \u0438\u043B\u0438 \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u044B \u0441 \u0431\u0435\u0437\u043E\u043F\u0430\u0441\u043D\u043E\u0441\u0442\u044C\u044E. \u0410\u0432\u0442\u043E\u0440\u044B \u043C\u043E\u0433\u043B\u0438 \u0440\u0435\u0448\u0438\u0442\u044C \u043D\u0435 \u0437\u0430\u043F\u0440\u0430\u0448\u0438\u0432\u0430\u0442\u044C \u043F\u0440\u043E\u0432\u0435\u0440\u043A\u0443 \u043F\u043E \u0440\u0430\u0437\u043D\u044B\u043C \u043F\u0440\u0438\u0447\u0438\u043D\u0430\u043C.","plugins.manage.unverified_subtitle":"{{ pluginName }} \u043D\u0435 \u043F\u043E\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043D","plugins.manage.unverified_title":"\u041D\u0435\u043F\u043E\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043D\u043D\u044B\u0435 \u043F\u043B\u0430\u0433\u0438\u043D\u044B","plugins.manage.update":"\u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0435","plugins.manage.updated":"\u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u043E","plugins.manage.verified_message":"\u041F\u043B\u0430\u0433\u0438\u043D\u044B Homebridge, \u043E\u0442\u043C\u0435\u0447\u0435\u043D\u043D\u044B\u0435 \u043A\u0430\u043A \u043F\u043E\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043D\u043D\u044B\u0435, \u0431\u044B\u043B\u0438 \u043F\u0440\u043E\u0432\u0435\u0440\u0435\u043D\u044B \u043A\u043E\u043C\u0430\u043D\u0434\u043E\u0439 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 Homebridge, \u0447\u0442\u043E\u0431\u044B \u0443\u0431\u0435\u0434\u0438\u0442\u044C\u0441\u044F, \u0447\u0442\u043E \u043E\u043D\u0438 \u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044E\u0442 \u0440\u0430\u0437\u043B\u0438\u0447\u043D\u044B\u043C \u0442\u0440\u0435\u0431\u043E\u0432\u0430\u043D\u0438\u044F\u043C, \u0441\u043F\u043E\u0441\u043E\u0431\u0441\u0442\u0432\u0443\u044E\u0449\u0438\u043C \u043B\u0443\u0447\u0448\u0438\u043C \u043F\u0440\u0430\u043A\u0442\u0438\u043A\u0430\u043C \u0438 \u0431\u0435\u0437\u043F\u0440\u043E\u0431\u043B\u0435\u043C\u043D\u043E\u043C\u0443 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C\u0441\u043A\u043E\u043C\u0443 \u043E\u043F\u044B\u0442\u0443.","plugins.manage.verified_subtitle":"{{ pluginName }} \u043F\u043E\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043D","plugins.manage.verified_title":"\u041F\u043E\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043D\u043D\u044B\u0435 \u043F\u043B\u0430\u0433\u0438\u043D\u044B","plugins.node_update.continue":"\u041F\u0440\u043E\u0434\u043E\u043B\u0436\u0438\u0442\u044C","plugins.placeholder_search_first":"\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0439\u0442\u0435 \u0441\u0442\u0440\u043E\u043A\u0443 \u043F\u043E\u0438\u0441\u043A\u0430 \u0432\u044B\u0448\u0435, \u0447\u0442\u043E\u0431\u044B \u043D\u0430\u0439\u0442\u0438 \u0432\u0430\u0448 \u043F\u0435\u0440\u0432\u044B\u0439 \u043F\u043B\u0430\u0433\u0438\u043D","plugins.placeholder_search_plugin":"\u041F\u043E\u0438\u0441\u043A \u043F\u043B\u0430\u0433\u0438\u043D\u043E\u0432 \u0434\u043B\u044F \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0438\u2026","plugins.settings.custom.homebridge-gsh.label_account_linked":"\u0410\u043A\u043A\u0430\u0443\u043D\u0442 \u043F\u0440\u0438\u0432\u044F\u0437\u0430\u043D","plugins.settings.custom.homebridge-gsh.label_link_account":"\u041F\u0440\u0438\u0432\u044F\u0437\u0430\u0442\u044C \u0430\u043A\u043A\u0430\u0443\u043D\u0442","plugins.settings.custom.homebridge-gsh.label_unlink_account":"\u041E\u0442\u0432\u044F\u0437\u0430\u0442\u044C \u0430\u043A\u043A\u0430\u0443\u043D\u0442","plugins.settings.custom.homebridge-gsh.message_about":"\u041F\u043B\u0430\u0433\u0438\u043D Homebridge Google Smart Home \u043F\u043E\u0437\u0432\u043E\u043B\u044F\u0435\u0442 \u0443\u043F\u0440\u0430\u0432\u043B\u044F\u0442\u044C \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u0430\u043C\u0438 Homebridge \u0441 \u043F\u043E\u043C\u043E\u0449\u044C\u044E \u0443\u043C\u043D\u043E\u0439 \u043A\u043E\u043B\u043E\u043D\u043A\u0438 \u0441 \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u043A\u043E\u0439 Google Home \u0438\u043B\u0438 \u043C\u043E\u0431\u0438\u043B\u044C\u043D\u043E\u0433\u043E \u043F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u0438\u044F Google Home.","plugins.settings.custom.homebridge-gsh.message_account_link_required":"\u0427\u0442\u043E\u0431\u044B \u0432\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u044D\u0442\u0443 \u0444\u0443\u043D\u043A\u0446\u0438\u044E, \u0432\u044B \u0434\u043E\u043B\u0436\u043D\u044B \u0432\u043E\u0439\u0442\u0438 \u0432 \u0441\u0432\u043E\u0439 \u0430\u043A\u043A\u0430\u0443\u043D\u0442 Google \u0438\u043B\u0438 GitHub; \u0443\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044C, \u0447\u0442\u043E \u0432\u044B \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442\u0435 \u0442\u043E\u0442 \u0436\u0435 \u0430\u043A\u043A\u0430\u0443\u043D\u0442 \u043F\u0440\u0438 \u0434\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u0438\u0438 Homebridge action \u0432 \u043C\u043E\u0431\u0438\u043B\u044C\u043D\u043E\u043C \u043F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u0438\u0438 Google Home.","plugins.settings.custom.homebridge-gsh.message_homebridge_restart_required":"\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044F \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A Homebridge, \u0447\u0442\u043E\u0431\u044B \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F \u0432\u0441\u0442\u0443\u043F\u0438\u043B\u0438 \u0432 \u0441\u0438\u043B\u0443.","plugins.settings.custom.homebridge-gsh.message_invalid_token":"\u041D\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u0439 \u0442\u043E\u043A\u0435\u043D \u043F\u0440\u0438\u0432\u044F\u0437\u043A\u0438 \u0430\u043A\u043A\u0430\u0443\u043D\u0442\u0430 \u0432 config.json","plugins.settings.deconz.dump_no_exist":"\u0424\u0430\u0439\u043B \u0434\u0430\u043C\u043F\u0430 Homebridge deCONZ \u0435\u0449\u0435 \u043D\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442.","plugins.settings.hue.dump_no_exist":"\u0424\u0430\u0439\u043B \u0434\u0430\u043C\u043F\u0430 Homebridge Hue \u0435\u0449\u0435 \u043D\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442.","plugins.settings.label_open_config_editor":"\u041E\u0442\u043A\u0440\u044B\u0442\u044C \u0440\u0435\u0434\u0430\u043A\u0442\u043E\u0440 \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438","plugins.settings.message_consult_documentation":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043E\u0431\u0440\u0430\u0442\u0438\u0442\u0435\u0441\u044C \u043A \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430\u0446\u0438\u0438 \u043F\u043B\u0430\u0433\u0438\u043D\u0430 \u0434\u043B\u044F \u0438\u043D\u0441\u0442\u0440\u0443\u043A\u0446\u0438\u0439 \u043F\u043E \u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u043E\u0439 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0435 \u044D\u0442\u043E\u0433\u043E \u043F\u043B\u0430\u0433\u0438\u043D\u0430.","plugins.settings.message_manual_config_required":"\u042D\u0442\u043E\u0442 \u043F\u043B\u0430\u0433\u0438\u043D \u0434\u043E\u043B\u0436\u0435\u043D \u0431\u044B\u0442\u044C \u043D\u0430\u0441\u0442\u0440\u043E\u0435\u043D \u0432\u0440\u0443\u0447\u043D\u0443\u044E \u0441 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u0435\u043C \u0440\u0435\u0434\u0430\u043A\u0442\u043E\u0440\u0430 \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 Homebridge UI.","plugins.settings.plugin_config_saved":"\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044F \u043F\u043B\u0430\u0433\u0438\u043D\u0430 \u0441\u043E\u0445\u0440\u0430\u043D\u0435\u043D\u0430","plugins.settings.restart_required":"\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u0435 Homebridge, \u0447\u0442\u043E\u0431\u044B \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F \u0432\u0441\u0442\u0443\u043F\u0438\u043B\u0438 \u0432 \u0441\u0438\u043B\u0443.","plugins.settings.title_settings":"\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438","plugins.status_disabled":"\u041E\u0442\u043A\u043B\u044E\u0447\u0435\u043D","plugins.status_installed":"\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D","plugins.toast_failed_to_load_plugin_schema":"\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C \u0441\u0445\u0435\u043C\u0443 \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 \u043F\u043B\u0430\u0433\u0438\u043D\u0430.","plugins.toast_failed_to_load_plugins":"\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C \u043F\u043B\u0430\u0433\u0438\u043D\u044B","plugins.uninstall_bridge_error":"\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u0443\u0434\u0430\u043B\u0438\u0442\u044C \u0434\u043E\u0447\u0435\u0440\u043D\u0438\u0439 \u043C\u043E\u0441\u0442.","plugins.uninstall_remove_config_required":"\u0415\u0441\u043B\u0438 \u0432\u044B \u043D\u0430\u0432\u0441\u0435\u0433\u0434\u0430 \u0443\u0434\u0430\u043B\u044F\u0435\u0442\u0435 \u044D\u0442\u043E\u0442 \u043F\u043B\u0430\u0433\u0438\u043D, \u0443\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044C, \u0447\u0442\u043E \u0432\u044B \u0443\u0434\u0430\u043B\u0438\u043B\u0438 \u0432\u0441\u0435 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u0434\u043B\u044F \u044D\u0442\u043E\u0433\u043E \u043F\u043B\u0430\u0433\u0438\u043D\u0430 \u0432 config.json \u043F\u0435\u0440\u0435\u0434 \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A\u043E\u043C Homebridge.","plugins.uninstall_remove_confirmation":"\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043B\u0438\u0442\u044C {{ pluginName }}?","plugins.uninstall_remove_plugin_config":"\u0423\u0434\u0430\u043B\u0438\u0442\u044C \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u043F\u043B\u0430\u0433\u0438\u043D\u0430?","plugins.uninstall_unpair_child_bridge":"\u041E\u0442\u0432\u044F\u0437\u0430\u0442\u044C \u0434\u043E\u0447\u0435\u0440\u043D\u0438\u0439 \u043C\u043E\u0441\u0442 \u043F\u043B\u0430\u0433\u0438\u043D\u0430?","plugins.uninstall_unpair_child_bridges":"\u041E\u0442\u0432\u044F\u0437\u0430\u0442\u044C {{ count }} \u0434\u043E\u0447\u0435\u0440\u043D\u0438\u0445 \u043C\u043E\u0441\u0442\u043E\u0432 \u043F\u043B\u0430\u0433\u0438\u043D\u0430?","reset.accessory_reset":"\u0421\u0431\u0440\u043E\u0441 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u043E\u0432 Homebridge","reset.action_is_irreversible":"\u042D\u0442\u043E \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043D\u0435\u043E\u0431\u0440\u0430\u0442\u0438\u043C\u043E. \u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u043D\u0438\u043C\u0430\u0442\u0435\u043B\u044C\u043D\u043E \u043F\u0440\u043E\u0447\u0438\u0442\u0430\u0439\u0442\u0435, \u043F\u0440\u0435\u0436\u0434\u0435 \u0447\u0435\u043C \u043F\u0440\u043E\u0434\u043E\u043B\u0436\u0438\u0442\u044C.","reset.bridges.desc":"\u0415\u0441\u043B\u0438 \u0443 \u0432\u0430\u0441 \u0432\u043E\u0437\u043D\u0438\u043A\u043B\u0438 \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u044B \u0441 \u043F\u0440\u0438\u0432\u044F\u0437\u043A\u043E\u0439 Homebridge, \u0432\u043D\u0435\u0448\u043D\u0435\u0433\u043E \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u0430 \u0438\u043B\u0438 \u0434\u043E\u0447\u0435\u0440\u043D\u0435\u0433\u043E \u043C\u043E\u0441\u0442\u0430 \u043A HomeKit, \u0432\u0430\u043C \u043C\u043E\u0436\u0435\u0442 \u043F\u043E\u0442\u0440\u0435\u0431\u043E\u0432\u0430\u0442\u044C\u0441\u044F \u043E\u0442\u0432\u044F\u0437\u0430\u0442\u044C \u0435\u0433\u043E \u043E\u0442 HomeKit, \u0447\u0442\u043E\u0431\u044B \u043D\u0430\u0447\u0430\u0442\u044C \u0437\u0430\u043D\u043E\u0432\u043E.","reset.bridges.empty":"\u0423 \u0432\u0430\u0441 \u043D\u0435\u0442 \u043C\u043E\u0441\u0442\u043E\u0432 \u0434\u043B\u044F \u043E\u0442\u0432\u044F\u0437\u043A\u0438 \u043E\u0442 HomeKit.","reset.bridges.title":"\u041C\u043E\u0441\u0442\u044B","reset.bridges_all.desc":"\u041E\u0442\u0432\u044F\u0437\u0430\u0442\u044C \u0432\u0441\u0435 \u043C\u043E\u0441\u0442\u044B \u043E\u0442 HomeKit. \u042D\u0442\u043E \u0432\u043A\u043B\u044E\u0447\u0430\u0435\u0442 \u043E\u0441\u043D\u043E\u0432\u043D\u043E\u0439 \u043C\u043E\u0441\u0442 Homebridge, \u0434\u043E\u0447\u0435\u0440\u043D\u0438\u0435 \u043C\u043E\u0441\u0442\u044B \u0438 \u043C\u043E\u0441\u0442\u044B \u0434\u043B\u044F \u0432\u043D\u0435\u0448\u043D\u0438\u0445 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u043E\u0432.","reset.bridges_all.list_1":"\u042D\u0442\u043E \u043E\u0442\u0432\u044F\u0436\u0435\u0442 \u043C\u043E\u0441\u0442 Homebridge, \u0432\u0441\u0435 \u0434\u043E\u0447\u0435\u0440\u043D\u0438\u0435 \u043C\u043E\u0441\u0442\u044B \u0438 \u043C\u043E\u0441\u0442\u044B \u0434\u043B\u044F \u0432\u043D\u0435\u0448\u043D\u0438\u0445 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u043E\u0432 \u043E\u0442 HomeKit.","reset.bridges_all.list_2":"\u041E\u0431\u0440\u0430\u0442\u0438\u0442\u0435 \u0432\u043D\u0438\u043C\u0430\u043D\u0438\u0435, \u0447\u0442\u043E \u0432\u0430\u0448\u0438 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B \u043F\u0440\u043E\u0434\u043E\u043B\u0436\u0430\u0442 \u043E\u0442\u043E\u0431\u0440\u0430\u0436\u0430\u0442\u044C\u0441\u044F \u0432 HomeKit \u043A\u0430\u043A \u043D\u0435 \u043E\u0442\u0432\u0435\u0447\u0430\u044E\u0449\u0438\u0435, \u043F\u043E\u043A\u0430 \u043C\u043E\u0441\u0442\u044B \u043D\u0435 \u0431\u0443\u0434\u0443\u0442 \u0432\u0440\u0443\u0447\u043D\u0443\u044E \u0443\u0434\u0430\u043B\u0435\u043D\u044B \u0438\u0437 HomeKit. \u0412\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0441\u0434\u0435\u043B\u0430\u0442\u044C \u044D\u0442\u043E \u0432 \u043F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u0438\u0438 Home, \u043F\u0435\u0440\u0435\u0439\u0434\u044F \u0432 \u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u0434\u043E\u043C\u0430 \u2192 \u0425\u0430\u0431\u044B \u0438 \u043C\u043E\u0441\u0442\u044B \u2192 {Bridge} \u2192 \u0423\u0434\u0430\u043B\u0438\u0442\u044C \u043C\u043E\u0441\u0442 \u0438\u0437 \u0434\u043E\u043C\u0430.","reset.bridges_all.list_3":"\u0412\u0441\u0435 \u0432\u0430\u0448\u0438 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B, \u0441\u0446\u0435\u043D\u044B \u0438 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0437\u0430\u0446\u0438\u0438 Homebridge \u043A HomeKit \u043D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u043E \u0431\u0443\u0434\u0435\u0442 \u043F\u0435\u0440\u0435\u043D\u0430\u0441\u0442\u0440\u043E\u0438\u0442\u044C \u043F\u043E\u0441\u043B\u0435 \u043E\u0442\u0432\u044F\u0437\u043A\u0438.","reset.bridges_all.list_4":"\u041F\u0438\u043D \u0434\u043B\u044F \u043F\u0440\u0438\u0432\u044F\u0437\u043A\u0438 \u0432\u0430\u0448\u0435\u0433\u043E \u043C\u043E\u0441\u0442\u0430 Homebridge \u043A HomeKit \u0431\u0443\u0434\u0435\u0442 \u0438\u0437\u043C\u0435\u043D\u0435\u043D. \u0412\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0443\u0432\u0438\u0434\u0435\u0442\u044C \u043D\u043E\u0432\u044B\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u044F \u0432 \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 Homebridge \u043F\u043E\u0441\u043B\u0435 \u043E\u0442\u0432\u044F\u0437\u043A\u0438.","reset.bridges_all.title":"\u041E\u0442\u0432\u044F\u0437\u0430\u0442\u044C \u0432\u0441\u0435 \u043C\u043E\u0441\u0442\u044B","reset.bridges_single.desc":"\u041E\u0442\u0432\u044F\u0437\u0430\u0442\u044C \u043E\u0434\u0438\u043D \u043C\u043E\u0441\u0442 \u043E\u0442 HomeKit. \u042D\u0442\u043E \u043C\u043E\u0436\u0435\u0442 \u0431\u044B\u0442\u044C \u0434\u043E\u0447\u0435\u0440\u043D\u0438\u0439 \u043C\u043E\u0441\u0442 \u0438\u043B\u0438 \u043C\u043E\u0441\u0442 \u0434\u043B\u044F \u0432\u043D\u0435\u0448\u043D\u0435\u0433\u043E \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u0430, \u043D\u0430\u043F\u0440\u0438\u043C\u0435\u0440 \u043A\u0430\u043C\u0435\u0440\u044B \u0438\u043B\u0438 \u0442\u0435\u043B\u0435\u0432\u0438\u0437\u043E\u0440\u0430.","reset.bridges_single.list_1":"\u041F\u0440\u0438 \u043E\u0442\u0432\u044F\u0437\u043A\u0435 \u043C\u043E\u0441\u0442\u0430 \u043B\u044E\u0431\u044B\u0435 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B, \u043E\u043F\u0443\u0431\u043B\u0438\u043A\u043E\u0432\u0430\u043D\u043D\u044B\u0435 \u044D\u0442\u0438\u043C \u043C\u043E\u0441\u0442\u043E\u043C, \u0431\u0443\u0434\u0443\u0442 \u0443\u0434\u0430\u043B\u0435\u043D\u044B \u0438\u0437 \u043A\u044D\u0448\u0430 Homebridge.","reset.bridges_single.list_2":"\u0410\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B \u0441\u0442\u0430\u043D\u0443\u0442 \u043D\u0435\u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u043C\u0438 \u0432 HomeKit (\u0431\u0443\u0434\u0443\u0442 \u043F\u043E\u043A\u0430\u0437\u044B\u0432\u0430\u0442\u044C \u043E\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0435 \u043E\u0442\u0432\u0435\u0442\u0430). \u0427\u0442\u043E\u0431\u044B \u0443\u0434\u0430\u043B\u0438\u0442\u044C \u0438\u0445, \u0432\u0430\u043C \u043D\u0443\u0436\u043D\u043E \u0431\u0443\u0434\u0435\u0442 \u0432\u0440\u0443\u0447\u043D\u0443\u044E \u0443\u0434\u0430\u043B\u0438\u0442\u044C \u044D\u0442\u043E\u0442 \u043C\u043E\u0441\u0442 \u0438\u0437 HomeKit. \u0412\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0441\u0434\u0435\u043B\u0430\u0442\u044C \u044D\u0442\u043E \u0432 \u043F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u0438\u0438 Home \u0432 \u0440\u0430\u0437\u0434\u0435\u043B\u0435 \u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u0434\u043E\u043C\u0430.","reset.bridges_single.list_3":"\u0417\u0430\u0442\u0435\u043C \u0432\u044B \u0441\u043C\u043E\u0436\u0435\u0442\u0435 \u043F\u043E\u043F\u0440\u043E\u0431\u043E\u0432\u0430\u0442\u044C \u0441\u043D\u043E\u0432\u0430 \u043F\u0440\u0438\u0432\u044F\u0437\u0430\u0442\u044C \u043C\u043E\u0441\u0442, \u0435\u0441\u043B\u0438 \u044D\u0442\u043E \u043D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u043E.","reset.bridges_single.title":"\u041E\u0442\u0432\u044F\u0437\u0430\u0442\u044C \u043E\u0434\u0438\u043D \u043C\u043E\u0441\u0442","reset.cached_accessory_removed":"\u041A\u044D\u0448\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u044B\u0439 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440 \u0443\u0434\u0430\u043B\u0435\u043D.","reset.clear_cache_all.desc":"\u0423\u0434\u0430\u043B\u0438\u0442\u044C \u0432\u0441\u0435 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B \u0438\u0437 \u043A\u044D\u0448\u0430.","reset.clear_cache_all.list_1":"\u041D\u0430\u0436\u0438\u043C\u0430\u044F \u043D\u0430 \u043A\u043D\u043E\u043F\u043A\u0443 \u0443\u0434\u0430\u043B\u0435\u043D\u0438\u044F \u043D\u0438\u0436\u0435, Homebridge \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u0441\u044F, \u0438 \u0432\u0441\u0435 \u0432\u0430\u0448\u0438 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044E\u0449\u0438\u0435 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B \u0431\u0443\u0434\u0443\u0442 \u0443\u0434\u0430\u043B\u0435\u043D\u044B \u0438\u0437 Homebridge \u0438 HomeKit.","reset.clear_cache_all.list_2":"\u0412\u0441\u0435 \u0441\u0432\u044F\u0437\u0430\u043D\u043D\u044B\u0435 \u0434\u0430\u043D\u043D\u044B\u0435 HomeKit \u0442\u0430\u043A\u0436\u0435 \u0431\u0443\u0434\u0443\u0442 \u0443\u0434\u0430\u043B\u0435\u043D\u044B, \u0432\u043A\u043B\u044E\u0447\u0430\u044F \u0430\u0441\u0441\u043E\u0446\u0438\u0430\u0446\u0438\u0438 \u043A\u043E\u043C\u043D\u0430\u0442, \u0441\u0446\u0435\u043D\u044B \u0438 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0437\u0430\u0446\u0438\u0438, \u043A\u043E\u0442\u043E\u0440\u044B\u0435 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442 \u044D\u0442\u043E\u0442 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440.","reset.clear_cache_all.list_3":"\u041F\u043E\u0441\u043B\u0435 \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A\u0430 Homebridge \u0432\u0430\u0448\u0438 \u043F\u043B\u0430\u0433\u0438\u043D\u044B \u043F\u043E\u0432\u0442\u043E\u0440\u043D\u043E \u0434\u043E\u0431\u0430\u0432\u044F\u0442 \u043B\u044E\u0431\u044B\u0435 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B, \u043A\u0430\u043A \u0435\u0441\u043B\u0438 \u0431\u044B \u043F\u043B\u0430\u0433\u0438\u043D \u0443\u0441\u0442\u0430\u043D\u0430\u0432\u043B\u0438\u0432\u0430\u043B\u0441\u044F \u0432\u043F\u0435\u0440\u0432\u044B\u0435.","reset.clear_cache_all.title":"\u0423\u0434\u0430\u043B\u0438\u0442\u044C \u0432\u0441\u0435 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B","reset.clear_cache_bridge.desc":"\u0423\u0434\u0430\u043B\u0438\u0442\u044C \u0432\u0441\u0435 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B, \u043E\u043F\u0443\u0431\u043B\u0438\u043A\u043E\u0432\u0430\u043D\u043D\u044B\u0435 \u043C\u043E\u0441\u0442\u043E\u043C, \u0438\u0437 \u043A\u044D\u0448\u0430.","reset.clear_cache_bridge.empty":"\u0423 \u0432\u0430\u0441 \u043D\u0435\u0442 \u043C\u043E\u0441\u0442\u043E\u0432, \u0438\u0437 \u043A\u043E\u0442\u043E\u0440\u044B\u0445 \u043C\u043E\u0436\u043D\u043E \u0443\u0434\u0430\u043B\u0438\u0442\u044C \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B.","reset.clear_cache_bridge.list_1":"\u042D\u0442\u0430 \u0444\u0443\u043D\u043A\u0446\u0438\u044F \u043C\u043E\u0436\u0435\u0442 \u0431\u044B\u0442\u044C \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0430 \u0434\u043B\u044F \u0441\u0431\u0440\u043E\u0441\u0430 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044E\u0449\u0438\u0445 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u043E\u0432 \u043F\u043B\u0430\u0433\u0438\u043D\u0430 \u0432 HomeKit. \u041E\u043D\u0438 \u0431\u0443\u0434\u0443\u0442 \u0443\u0434\u0430\u043B\u0435\u043D\u044B \u0438\u0437 Homebridge/HomeKit \u0438 \u0437\u0430\u0442\u0435\u043C \u043F\u043E\u0432\u0442\u043E\u0440\u043D\u043E \u0434\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043F\u043B\u0430\u0433\u0438\u043D\u043E\u043C \u043A\u0430\u043A \u043D\u043E\u0432\u044B\u0435 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B.","reset.clear_cache_bridge.list_2":"\u0414\u0435\u0442\u0430\u043B\u0438 \u043F\u0440\u0438\u0432\u044F\u0437\u043A\u0438 \u0438 \u0441\u0442\u0430\u0442\u0443\u0441 \u0434\u043E\u0447\u0435\u0440\u043D\u0435\u0433\u043E \u043C\u043E\u0441\u0442\u0430 \u043E\u0441\u0442\u0430\u043D\u0443\u0442\u0441\u044F \u043F\u0440\u0435\u0436\u043D\u0438\u043C\u0438.","reset.clear_cache_bridge.title":"\u0423\u0434\u0430\u043B\u0438\u0442\u044C \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B \u043C\u043E\u0441\u0442\u0430","reset.clear_cache_single.desc":"\u0423\u0434\u0430\u043B\u0438\u0442\u044C \u043E\u0434\u0438\u043D \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440 \u0438\u0437 \u043A\u044D\u0448\u0430.","reset.clear_cache_single.list_1":"\u041D\u0435\u043A\u043E\u0442\u043E\u0440\u044B\u0435 \u043F\u043B\u0430\u0433\u0438\u043D\u044B \u043D\u0435 \u043E\u0447\u0438\u0449\u0430\u044E\u0442 \u0437\u0430 \u0441\u043E\u0431\u043E\u0439 \u0434\u043E\u043B\u0436\u043D\u044B\u043C \u043E\u0431\u0440\u0430\u0437\u043E\u043C! \u0415\u0441\u043B\u0438 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440, \u043A\u043E\u0442\u043E\u0440\u044B\u0439 \u0431\u043E\u043B\u044C\u0448\u0435 \u043D\u0435\u0442 \u0432 Homebridge, \u0432\u0441\u0435 \u0435\u0449\u0435 \u043E\u0442\u043E\u0431\u0440\u0430\u0436\u0430\u0435\u0442\u0441\u044F \u0432 HomeKit, \u0432\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0443\u0434\u0430\u043B\u0438\u0442\u044C \u0435\u0433\u043E \u0438\u0437 \u043A\u044D\u0448\u0430.","reset.clear_cache_single.list_2":"\u042D\u0442\u0430 \u0444\u0443\u043D\u043A\u0446\u0438\u044F \u043C\u043E\u0436\u0435\u0442 \u0431\u044B\u0442\u044C \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0430 \u0434\u043B\u044F \u0441\u0431\u0440\u043E\u0441\u0430 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044E\u0449\u0435\u0433\u043E \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u0430 \u0432 HomeKit. \u041E\u043D \u0431\u0443\u0434\u0435\u0442 \u0443\u0434\u0430\u043B\u0435\u043D \u0438\u0437 Homebridge/HomeKit \u0438 \u0437\u0430\u0442\u0435\u043C \u043F\u043E\u0432\u0442\u043E\u0440\u043D\u043E \u0434\u043E\u0431\u0430\u0432\u043B\u0435\u043D \u043F\u043B\u0430\u0433\u0438\u043D\u043E\u043C \u043A\u0430\u043A \u043D\u043E\u0432\u044B\u0439 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440.","reset.clear_cache_single.list_3":"\u041F\u0440\u0438 \u0443\u0434\u0430\u043B\u0435\u043D\u0438\u0438 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u0430 \u0438\u0437 \u043A\u044D\u0448\u0430 \u0432\u0441\u0435 \u0435\u0433\u043E \u0441\u0432\u044F\u0437\u0430\u043D\u043D\u044B\u0435 \u0434\u0430\u043D\u043D\u044B\u0435 HomeKit \u0431\u0443\u0434\u0443\u0442 \u0443\u0434\u0430\u043B\u0435\u043D\u044B. \u042D\u0442\u043E \u0432\u043A\u043B\u044E\u0447\u0430\u0435\u0442 \u043B\u044E\u0431\u044B\u0435 \u0441\u0432\u044F\u0437\u0430\u043D\u043D\u044B\u0435 \u0441\u0446\u0435\u043D\u044B \u0438 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0437\u0430\u0446\u0438\u0438, \u043A\u043E\u0442\u043E\u0440\u044B\u0435 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u044E\u0442 \u044D\u0442\u043E\u0442 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440.","reset.clear_cache_single.list_4":"\u0410\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B \u043C\u043E\u0433\u0443\u0442 \u0431\u044B\u0442\u044C \u0443\u0434\u0430\u043B\u0435\u043D\u044B \u0442\u043E\u043B\u044C\u043A\u043E \u043A\u043E\u0433\u0434\u0430 Homebridge \u043D\u0435 \u0440\u0430\u0431\u043E\u0442\u0430\u0435\u0442. Homebridge \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0438 \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u0441\u044F \u043F\u0440\u0438 \u043D\u0430\u0436\u0430\u0442\u0438\u0438 \u043D\u0430 \u043A\u0430\u0436\u0434\u0443\u044E \u0438\u0437 \u043A\u043D\u043E\u043F\u043E\u043A \u0443\u0434\u0430\u043B\u0435\u043D\u0438\u044F \u043D\u0438\u0436\u0435.","reset.clear_cache_single.title":"\u0423\u0434\u0430\u043B\u0438\u0442\u044C \u043E\u0434\u0438\u043D \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440","reset.delete_failed":"\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u0443\u0434\u0430\u043B\u0438\u0442\u044C \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440.","reset.delete_success":"\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A Homebridge \u0438 \u043E\u0447\u0438\u0441\u0442\u043A\u0430 \u043A\u044D\u0448\u0430 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u043E\u0432.","reset.error_message":"\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C \u043A\u044D\u0448 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u043E\u0432. \u0412\u043E\u0437\u043C\u043E\u0436\u043D\u043E, \u0443 \u0432\u0430\u0441 \u043D\u0435\u0442 \u043A\u044D\u0448\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u044B\u0445 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u043E\u0432.","reset.failed_to_reset":"\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u043F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C Homebridge. \u0421\u043C\u043E\u0442\u0440\u0438\u0442\u0435 \u043B\u043E\u0433.","reset.force_restart_hb_help_text":"\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0439\u0442\u0435 \u044D\u0442\u043E \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435, \u0447\u0442\u043E\u0431\u044B \u0437\u0430\u0441\u0442\u0430\u0432\u0438\u0442\u044C \u0441\u043B\u0443\u0436\u0431\u0443 hb-service \u0432\u044B\u043F\u043E\u043B\u043D\u0438\u0442\u044C \u043F\u043E\u043B\u043D\u044B\u0439 \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A.","reset.remove_cached_accessories_single_empty":"\u0423 \u0432\u0430\u0441 \u043D\u0435\u0442 \u043A\u044D\u0448\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u044B\u0445 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u043E\u0432 \u0434\u043B\u044F \u0443\u0434\u0430\u043B\u0435\u043D\u0438\u044F.","reset.removing_cached_accessory_please_wait":"\u0423\u0434\u0430\u043B\u0435\u043D\u0438\u0435 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u0430 \u0438\u0437 \u043A\u044D\u0448\u0430, \u043F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u043E\u0434\u043E\u0436\u0434\u0438\u0442\u0435\u2026","restart.child_bridge_list":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u0435 \u044D\u0442\u0438 \u0434\u043E\u0447\u0435\u0440\u043D\u0438\u0435 \u043C\u043E\u0441\u0442\u044B, \u0447\u0442\u043E\u0431\u044B \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F \u0432\u0441\u0442\u0443\u043F\u0438\u043B\u0438 \u0432 \u0441\u0438\u043B\u0443:","restart.child_bridges":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u0435 \u0434\u043E\u0447\u0435\u0440\u043D\u0438\u0435 \u043C\u043E\u0441\u0442\u044B \u043F\u043B\u0430\u0433\u0438\u043D\u0430, \u0447\u0442\u043E\u0431\u044B \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F \u0432\u0441\u0442\u0443\u043F\u0438\u043B\u0438 \u0432 \u0441\u0438\u043B\u0443.","restart.homebridge":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u0435 Homebridge, \u0447\u0442\u043E\u0431\u044B \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F \u0432\u0441\u0442\u0443\u043F\u0438\u043B\u0438 \u0432 \u0441\u0438\u043B\u0443.","restart.label_restart_command_executed":"\u0412\u044B\u043F\u043E\u043B\u043D\u0435\u043D\u0430 \u043A\u043E\u043C\u0430\u043D\u0434\u0430 \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A\u0430","restart.please_wait_while_server_restarts":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u043E\u0434\u043E\u0436\u0434\u0438\u0442\u0435, \u044D\u0442\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430 \u0431\u0443\u0434\u0435\u0442 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0438 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0430 \u043F\u043E\u0441\u043B\u0435 \u0437\u0430\u043F\u0443\u0441\u043A\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0430.","restart.server_is_taking_long_time_to_restart":"\u041F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043A\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0437\u0430\u043D\u0438\u043C\u0430\u0435\u0442 \u043C\u043D\u043E\u0433\u043E \u0432\u0440\u0435\u043C\u0435\u043D\u0438. \u0412\u043E\u0437\u043C\u043E\u0436\u043D\u043E, \u0432\u0430\u043C \u043F\u0440\u0438\u0434\u0435\u0442\u0441\u044F \u0432\u0440\u0443\u0447\u043D\u0443\u044E \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C Homebridge.","restart.service_ready":"\u0421\u0435\u0440\u0432\u0435\u0440 Homebridge \u0433\u043E\u0442\u043E\u0432","restart.title_restart":"\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A Homebridge","restart.toast_server_restart_error":"\u041F\u0440\u043E\u0438\u0437\u043E\u0448\u043B\u0430 \u043E\u0448\u0438\u0431\u043A\u0430 \u043F\u0440\u0438 \u043E\u0442\u043F\u0440\u0430\u0432\u043A\u0435 \u043A\u043E\u043C\u0430\u043D\u0434\u044B \u043F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043A\u0438 \u043D\u0430 \u0441\u0435\u0440\u0432\u0435\u0440","restart.toast_server_restart_timeout":"\u0417\u0430\u043F\u0443\u0441\u043A \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0437\u0430\u043D\u0438\u043C\u0430\u0435\u0442 \u0441\u043B\u0438\u0448\u043A\u043E\u043C \u043C\u043D\u043E\u0433\u043E \u0432\u0440\u0435\u043C\u0435\u043D\u0438.","restart.toast_server_restarted":"\u0421\u0435\u0440\u0432\u0435\u0440 \u043F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043D","restart.ui_online":"Homebridge UI \u043E\u043D\u043B\u0430\u0439\u043D","rpi.throttled.currently_message":"\u042D\u0442\u043E\u0442 Raspberry Pi \u0441\u043E\u043E\u0431\u0449\u0430\u0435\u0442, \u0447\u0442\u043E \u0443 \u043D\u0435\u0433\u043E \u0432 \u0434\u0430\u043D\u043D\u044B\u0439 \u043C\u043E\u043C\u0435\u043D\u0442 \u043D\u0435\u0434\u043E\u0441\u0442\u0430\u0447\u0430 \u043D\u0430\u043F\u0440\u044F\u0436\u0435\u043D\u0438\u044F; \u043F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u0440\u043E\u0432\u0435\u0440\u044C\u0442\u0435, \u043F\u043E\u0434\u043A\u043B\u044E\u0447\u0435\u043D \u043B\u0438 \u043E\u043D \u043A \u043F\u043E\u0434\u0445\u043E\u0434\u044F\u0449\u0435\u043C\u0443 \u0438\u0441\u0442\u043E\u0447\u043D\u0438\u043A\u0443 \u043F\u0438\u0442\u0430\u043D\u0438\u044F. \u041D\u0435\u0434\u043E\u0441\u0442\u0430\u0447\u0430 \u043D\u0430\u043F\u0440\u044F\u0436\u0435\u043D\u0438\u044F \u043C\u043E\u0436\u0435\u0442 \u043F\u0440\u0438\u0432\u0435\u0441\u0442\u0438 \u043A \u043D\u0435\u0441\u0442\u0430\u0431\u0438\u043B\u044C\u043D\u043E\u0441\u0442\u0438 \u0441\u0438\u0441\u0442\u0435\u043C\u044B \u0438 \u043F\u043E\u0432\u0440\u0435\u0436\u0434\u0435\u043D\u0438\u044E SD-\u043A\u0430\u0440\u0442\u044B.","rpi.throttled.previously_message":"\u042D\u0442\u043E\u0442 Raspberry Pi \u0441\u043E\u043E\u0431\u0449\u0430\u043B \u043E \u0441\u043E\u0431\u044B\u0442\u0438\u0438 \u043D\u0435\u0434\u043E\u0441\u0442\u0430\u0447\u0438 \u043D\u0430\u043F\u0440\u044F\u0436\u0435\u043D\u0438\u044F \u0441 \u043C\u043E\u043C\u0435\u043D\u0442\u0430 \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0435\u0433\u043E \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A\u0430; \u043F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u0440\u043E\u0432\u0435\u0440\u044C\u0442\u0435, \u043F\u043E\u0434\u043A\u043B\u044E\u0447\u0435\u043D \u043B\u0438 \u043E\u043D \u043A \u043F\u043E\u0434\u0445\u043E\u0434\u044F\u0449\u0435\u043C\u0443 \u0438\u0441\u0442\u043E\u0447\u043D\u0438\u043A\u0443 \u043F\u0438\u0442\u0430\u043D\u0438\u044F.","rpi.throttled.undervoltage_title":"Under Voltage","settings.cache.desc":"Homebridge \u0445\u0440\u0430\u043D\u0438\u0442 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B \u0432 \u043A\u044D\u0448\u0435, \u0447\u0442\u043E\u0431\u044B \u043E\u043D\u0438 \u043D\u0435 \u0443\u0434\u0430\u043B\u044F\u043B\u0438\u0441\u044C \u0438 \u043D\u0435 \u0434\u043E\u0431\u0430\u0432\u043B\u044F\u043B\u0438\u0441\u044C \u0432 HomeKit \u043A\u0430\u0436\u0434\u044B\u0439 \u0440\u0430\u0437 \u043F\u0440\u0438 \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A\u0435 Homebridge. \u0418\u043D\u043E\u0433\u0434\u0430 \u044D\u0442\u043E\u0442 \u043A\u044D\u0448 \u043C\u043E\u0436\u0435\u0442 \u0441\u0442\u0430\u0442\u044C \u043D\u0435\u0430\u043A\u0442\u0443\u0430\u043B\u044C\u043D\u044B\u043C \u043F\u043E \u0441\u0440\u0430\u0432\u043D\u0435\u043D\u0438\u044E \u0441 \u0444\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u043C\u0438 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u0430\u043C\u0438 \u0432 Homebridge.","settings.cache.title":"\u0410\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B","settings.changes.saved":"\u0412\u0430\u0448\u0438 \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F \u0441\u043E\u0445\u0440\u0430\u043D\u0435\u043D\u044B \u0438 \u0442\u0440\u0435\u0431\u0443\u044E\u0442 \u043F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043A\u0438 \u0434\u043B\u044F \u0432\u0441\u0442\u0443\u043F\u043B\u0435\u043D\u0438\u044F \u0432 \u0441\u0438\u043B\u0443.","settings.datetime.incorrect":"\u0414\u0430\u0442\u0430 \u0438 \u0432\u0440\u0435\u043C\u044F \u043D\u0430 \u0432\u0430\u0448\u0435\u043C \u0441\u0435\u0440\u0432\u0435\u0440\u0435 Homebridge, \u043F\u043E\u0445\u043E\u0436\u0435, \u043D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u044B\u0435. \u042D\u0442\u043E \u043C\u043E\u0436\u0435\u0442 \u0432\u044B\u0437\u0432\u0430\u0442\u044C \u043D\u0435\u043E\u0436\u0438\u0434\u0430\u043D\u043D\u044B\u0435 \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u044B. \u041D\u0430\u0436\u043C\u0438\u0442\u0435 \u0437\u0434\u0435\u0441\u044C \u0434\u043B\u044F \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0434\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0439 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438.","settings.display.blue":"\u0421\u0438\u043D\u0438\u0439","settings.display.bluegrey":"\u0421\u0438\u043D\u0438\u0439 \u0441\u0435\u0440\u044B\u0439","settings.display.brown":"\u041A\u043E\u0440\u0438\u0447\u043D\u0435\u0432\u044B\u0439","settings.display.cyan":"\u0426\u0438\u0430\u043D","settings.display.dark":"\u0422\u0435\u043C\u043D\u044B\u0439","settings.display.deep_purple":"\u0422\u0435\u043C\u043D\u043E-\u0444\u0438\u043E\u043B\u0435\u0442\u043E\u0432\u044B\u0439","settings.display.green":"\u0417\u0435\u043B\u0435\u043D\u044B\u0439","settings.display.grey":"\u0421\u0435\u0440\u044B\u0439","settings.display.indigo":"\u0418\u043D\u0434\u0438\u0433\u043E","settings.display.lang":"\u042F\u0437\u044B\u043A","settings.display.light":"\u0421\u0432\u0435\u0442\u043B\u044B\u0439","settings.display.lighting_mode":"\u0420\u0435\u0436\u0438\u043C \u043E\u0441\u0432\u0435\u0449\u0435\u043D\u0438\u044F","settings.display.login_wallpaper":"\u041E\u0431\u043E\u0438 \u0434\u043B\u044F \u0432\u0445\u043E\u0434\u0430","settings.display.login_wallpaper_desc":"\u0412\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C\u0441\u043A\u0438\u0435 \u043E\u0431\u043E\u0438 \u0434\u043B\u044F \u0432\u0445\u043E\u0434\u0430, \u0434\u043E\u0431\u0430\u0432\u0438\u0432 \u0444\u0430\u0439\u043B <code>ui-wallpaper.jpg</code> \u0432 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u044E \u0445\u0440\u0430\u043D\u0435\u043D\u0438\u044F Homebridge \u0438\u043B\u0438 \u0443\u043A\u0430\u0437\u0430\u0432 \u043F\u043E\u043B\u043D\u044B\u0439 \u043F\u0443\u0442\u044C \u043A \u043B\u043E\u043A\u0430\u043B\u044C\u043D\u043E\u043C\u0443 \u0438\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u044E \u0437\u0434\u0435\u0441\u044C.","settings.display.orange":"\u041E\u0440\u0430\u043D\u0436\u0435\u0432\u044B\u0439","settings.display.pink":"\u0420\u043E\u0437\u043E\u0432\u044B\u0439","settings.display.purple":"\u0424\u0438\u043E\u043B\u0435\u0442\u043E\u0432\u044B\u0439","settings.display.red":"\u041A\u0440\u0430\u0441\u043D\u044B\u0439","settings.display.teal":"\u0411\u0438\u0440\u044E\u0437\u043E\u0432\u044B\u0439","settings.display.temp_units":"\u0415\u0434\u0438\u043D\u0438\u0446\u044B \u0442\u0435\u043C\u043F\u0435\u0440\u0430\u0442\u0443\u0440\u044B","settings.display.temp_units.c":"\u0426\u0435\u043B\u044C\u0441\u0438\u0439 (\xB0C)","settings.display.temp_units.f":"\u0424\u0430\u0440\u0435\u043D\u0433\u0435\u0439\u0442 (\xB0F)","settings.display.theme":"\u0422\u0435\u043C\u043D\u0430\u044F \u0442\u0435\u043C\u0430","settings.general.title_display":"\u0414\u0438\u0441\u043F\u043B\u0435\u0439","settings.general.title_general":"\u041E\u0431\u0449\u0438\u0435","settings.mdns_advertiser":"mDNS \u0420\u0435\u043A\u043B\u0430\u043C\u0430","settings.mdns_advertiser_exp":"\u044D\u043A\u0441\u043F\u0435\u0440\u0438\u043C\u0435\u043D\u0442\u0430\u043B\u044C\u043D\u043E","settings.mdns_advertiser_help":"\u0415\u0441\u043B\u0438 \u0443 \u0432\u0430\u0441 \u0432\u043E\u0437\u043D\u0438\u043A\u043B\u0438 \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u044B \u0441 \u043F\u043E\u0434\u043A\u043B\u044E\u0447\u0435\u043D\u0438\u0435\u043C Homebridge \u043A HomeKit (\u0432\u0441\u0435 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B \u043F\u043E\u043A\u0430\u0437\u044B\u0432\u0430\u044E\u0442 '\u041D\u0435\u0442 \u043E\u0442\u0432\u0435\u0442\u0430' \u0432 \u043F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u0438\u0438 Home), \u043F\u043E\u043F\u0440\u043E\u0431\u0443\u0439\u0442\u0435 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u043E\u0434\u0438\u043D \u0438\u0437 \u0430\u043B\u044C\u0442\u0435\u0440\u043D\u0430\u0442\u0438\u0432\u043D\u044B\u0445 mDNS \u0440\u0435\u043A\u043B\u0430\u043C\u043E\u0434\u0430\u0442\u0435\u043B\u0435\u0439.","settings.mdns_advertiser_not_connected":"\u041D\u0435 \u043F\u043E\u0434\u043A\u043B\u044E\u0447\u0435\u043D\u043E","settings.mdns_advertiser_rec":"\u0440\u0435\u043A\u043E\u043C\u0435\u043D\u0434\u0443\u0435\u0442\u0441\u044F","settings.network.label_interface_name":"\u0418\u043C\u044F \u0438\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430","settings.network.label_ip_address":"IP \u0430\u0434\u0440\u0435\u0441","settings.network.message_network_interface":"\u0415\u0441\u043B\u0438 \u043D\u0435 \u0432\u044B\u0431\u0440\u0430\u043D\u044B \u0441\u0435\u0442\u0435\u0432\u044B\u0435 \u0438\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u044B, Homebridge \u043F\u043E\u043F\u044B\u0442\u0430\u0435\u0442\u0441\u044F \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0438 \u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0438\u0442\u044C, \u043A\u0430\u043A\u0438\u0435 \u0438\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u044B \u0440\u0435\u043A\u043B\u0430\u043C\u0438\u0440\u043E\u0432\u0430\u0442\u044C.","settings.network.port_hb":"\u041F\u043E\u0440\u0442 Homebridge","settings.network.port_hb_desc":"\u041D\u043E\u043C\u0435\u0440 \u043F\u043E\u0440\u0442\u0430, \u043D\u0430 \u043A\u043E\u0442\u043E\u0440\u043E\u043C \u0431\u0443\u0434\u0435\u0442 \u0440\u0430\u0431\u043E\u0442\u0430\u0442\u044C \u043C\u043E\u0441\u0442 Homebridge. \u041E\u043D \u0434\u043E\u043B\u0436\u0435\u043D \u0431\u044B\u0442\u044C \u043C\u0435\u0436\u0434\u0443 1025 \u0438 65533 \u0438 \u043D\u0435 \u0434\u043E\u043B\u0436\u0435\u043D \u0441\u043E\u0432\u043F\u0430\u0434\u0430\u0442\u044C \u0441 \u043F\u043E\u0440\u0442\u043E\u043C UI Homebridge.","settings.network.port_ui":"\u041F\u043E\u0440\u0442 UI","settings.network.port_ui_desc":"\u041D\u043E\u043C\u0435\u0440 \u043F\u043E\u0440\u0442\u0430, \u043D\u0430 \u043A\u043E\u0442\u043E\u0440\u043E\u043C \u0431\u0443\u0434\u0435\u0442 \u0440\u0430\u0431\u043E\u0442\u0430\u0442\u044C UI Homebridge.","settings.network.title_network":"\u0421\u0435\u0442\u044C","settings.network.title_network_interfaces":"\u0421\u0435\u0442\u0435\u0432\u044B\u0435 \u0438\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u044B","settings.service.debug_tooltip":"\u041D\u0435\u043A\u043E\u0442\u043E\u0440\u044B\u0435 \u043F\u043B\u0430\u0433\u0438\u043D\u044B \u0442\u0440\u0435\u0431\u0443\u044E\u0442, \u0447\u0442\u043E\u0431\u044B \u0432\u044B \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u043B\u0438 \u043F\u0435\u0440\u0435\u043C\u0435\u043D\u043D\u0443\u044E \u043E\u043A\u0440\u0443\u0436\u0435\u043D\u0438\u044F DEBUG \u0434\u043B\u044F \u0432\u043A\u043B\u044E\u0447\u0435\u043D\u0438\u044F \u0436\u0443\u0440\u043D\u0430\u043B\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F \u043D\u0430 \u0443\u0440\u043E\u0432\u043D\u0435 \u043E\u0442\u043B\u0430\u0434\u043A\u0438.","settings.service.node_tooltip":"\u041E\u043F\u0446\u0438\u0438 \u0432\u044B\u043F\u043E\u043B\u043D\u0435\u043D\u0438\u044F Node.js \u0434\u043B\u044F \u044D\u0442\u043E\u0433\u043E \u043F\u0440\u043E\u0446\u0435\u0441\u0441\u0430. \u042D\u0442\u043E \u043F\u043E\u043B\u0435 \u0441\u043B\u0435\u0434\u0443\u0435\u0442 \u043E\u0441\u0442\u0430\u0432\u0438\u0442\u044C \u043F\u0443\u0441\u0442\u044B\u043C, \u0435\u0441\u043B\u0438 \u0432\u044B \u043D\u0435 \u0437\u043D\u0430\u0435\u0442\u0435, \u0447\u0442\u043E \u0434\u0435\u043B\u0430\u0435\u0442\u0435.","settings.startup.debug":"\u0420\u0435\u0436\u0438\u043C \u043E\u0442\u043B\u0430\u0434\u043A\u0438 Homebridge","settings.startup.debug_desc_v1":"\u0412\u043A\u043B\u044E\u0447\u0438\u0442\u0435 \u044D\u0442\u043E, \u0435\u0441\u043B\u0438 \u0432\u0430\u043C \u043D\u0443\u0436\u043D\u043E, \u0447\u0442\u043E\u0431\u044B Homebridge \u0432\u044B\u0432\u043E\u0434\u0438\u043B \u0431\u043E\u043B\u0435\u0435 \u043F\u043E\u0434\u0440\u043E\u0431\u043D\u044B\u0435 \u043B\u043E\u0433\u0438. \u042D\u0442\u0430 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430 \u043F\u0440\u0438\u043C\u0435\u043D\u044F\u0435\u0442\u0441\u044F \u043A \u043E\u0441\u043D\u043E\u0432\u043D\u043E\u043C\u0443 \u043C\u043E\u0441\u0442\u0443 Homebridge, \u0430 \u0442\u0430\u043A\u0436\u0435 \u043A\u043E \u0432\u0441\u0435\u043C \u0434\u043E\u0447\u0435\u0440\u043D\u0438\u043C \u043C\u043E\u0441\u0442\u0430\u043C. \u041D\u0435\u043A\u043E\u0442\u043E\u0440\u044B\u0435 \u043F\u043B\u0430\u0433\u0438\u043D\u044B \u0442\u0430\u043A\u0436\u0435 \u043C\u043E\u0433\u0443\u0442 \u0441\u043B\u0435\u0434\u043E\u0432\u0430\u0442\u044C \u044D\u0442\u043E\u0439 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0435 \u0438 \u0432\u044B\u0432\u043E\u0434\u0438\u0442\u044C \u0431\u043E\u043B\u0435\u0435 \u043F\u043E\u0434\u0440\u043E\u0431\u043D\u044B\u0435 \u043B\u043E\u0433\u0438.","settings.startup.debug_desc_v2":"\u0412\u043A\u043B\u044E\u0447\u0438\u0442\u0435 \u044D\u0442\u043E, \u0435\u0441\u043B\u0438 \u0432\u0430\u043C \u043D\u0443\u0436\u043D\u043E, \u0447\u0442\u043E\u0431\u044B Homebridge \u0432\u044B\u0432\u043E\u0434\u0438\u043B \u0431\u043E\u043B\u0435\u0435 \u043F\u043E\u0434\u0440\u043E\u0431\u043D\u044B\u0435 \u043B\u043E\u0433\u0438. \u042D\u0442\u0430 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430 \u043F\u0440\u0438\u043C\u0435\u043D\u044F\u0435\u0442\u0441\u044F \u043A \u043E\u0441\u043D\u043E\u0432\u043D\u043E\u043C\u0443 \u043C\u043E\u0441\u0442\u0443 Homebridge. \u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430 \u0434\u043B\u044F \u0434\u043E\u0447\u0435\u0440\u043D\u0438\u0445 \u043C\u043E\u0441\u0442\u043E\u0432 \u043C\u043E\u0436\u0435\u0442 \u0431\u044B\u0442\u044C \u043D\u0430\u0439\u0434\u0435\u043D\u0430 \u0432 \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 \u0434\u043E\u0447\u0435\u0440\u043D\u0435\u0433\u043E \u043C\u043E\u0441\u0442\u0430 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0435 \u043F\u043B\u0430\u0433\u0438\u043D\u043E\u0432. \u041D\u0435\u043A\u043E\u0442\u043E\u0440\u044B\u0435 \u043F\u043B\u0430\u0433\u0438\u043D\u044B \u0442\u0430\u043A\u0436\u0435 \u043C\u043E\u0433\u0443\u0442 \u0441\u043B\u0435\u0434\u043E\u0432\u0430\u0442\u044C \u044D\u0442\u043E\u0439 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0435 \u0438 \u0432\u044B\u0432\u043E\u0434\u0438\u0442\u044C \u0431\u043E\u043B\u0435\u0435 \u043F\u043E\u0434\u0440\u043E\u0431\u043D\u044B\u0435 \u043B\u043E\u0433\u0438.","settings.startup.insecure":"\u0420\u0435\u0436\u0438\u043C '\u041D\u0435\u0431\u0435\u0437\u043E\u043F\u0430\u0441\u043D\u044B\u0439' Homebridge","settings.startup.insecure_desc":"\u0427\u0442\u043E\u0431\u044B \u0443\u043F\u0440\u0430\u0432\u043B\u044F\u0442\u044C \u0441\u0432\u043E\u0438\u043C\u0438 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u0430\u043C\u0438 \u0447\u0435\u0440\u0435\u0437 UI Homebridge, \u0432\u044B \u0434\u043E\u043B\u0436\u043D\u044B \u0437\u0430\u043F\u0443\u0441\u043A\u0430\u0442\u044C Homebridge \u0432 \u043D\u0435\u0431\u0435\u0437\u043E\u043F\u0430\u0441\u043D\u043E\u043C \u0440\u0435\u0436\u0438\u043C\u0435.","settings.startup.keep_accessories":"\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B \u0443\u0434\u0430\u043B\u0435\u043D\u043D\u044B\u0445 \u043F\u043B\u0430\u0433\u0438\u043D\u043E\u0432","settings.startup.keep_accessories_desc":"\u0415\u0441\u043B\u0438 \u0432\u043A\u043B\u044E\u0447\u0435\u043D\u043E, \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0435\u043D\u043D\u044B\u0445 \u043F\u043B\u0430\u0433\u0438\u043D\u043E\u0432 \u043E\u0441\u0442\u0430\u043D\u0443\u0442\u0441\u044F \u0432 \u043A\u044D\u0448\u0435 \u0434\u0430\u0436\u0435 \u043F\u043E\u0441\u043B\u0435 \u0443\u0434\u0430\u043B\u0435\u043D\u0438\u044F \u043F\u043B\u0430\u0433\u0438\u043D\u0430. \u042D\u0442\u043E \u043C\u043E\u0436\u0435\u0442 \u0431\u044B\u0442\u044C \u043F\u043E\u043B\u0435\u0437\u043D\u043E, \u0435\u0441\u043B\u0438 \u0432\u044B \u043F\u043B\u0430\u043D\u0438\u0440\u0443\u0435\u0442\u0435 \u043F\u043E\u0437\u0436\u0435 \u043F\u0435\u0440\u0435\u0443\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C \u043F\u043B\u0430\u0433\u0438\u043D.","settings.title_startup_options":"\u041F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u044B \u0437\u0430\u043F\u0443\u0441\u043A\u0430","settings.unpair_bridge.load_error":"\u0421\u043E\u043F\u0440\u044F\u0436\u0435\u043D\u043D\u044B\u0435 \u043C\u043E\u0441\u0442\u044B \u043D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C.","settings.unpair_bridge.unpair_error":"\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u043E\u0442\u043C\u0435\u043D\u0438\u0442\u044C \u0441\u043E\u043F\u0440\u044F\u0436\u0435\u043D\u0438\u0435 \u043C\u043E\u0441\u0442\u0430.","setup.button_get_started":"\u041D\u0430\u0447\u0430\u0442\u044C","setup.create_account":"\u0421\u043E\u0437\u0434\u0430\u0442\u044C \u0430\u043A\u043A\u0430\u0443\u043D\u0442","setup.create_account_reason":"\u0410\u0443\u0442\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u044F \u043F\u0430\u0440\u043E\u043B\u0435\u043C \u0434\u043B\u044F \u0432\u0430\u0448\u0435\u0433\u043E \u0432\u0435\u0431-\u0438\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430 \u0430\u0434\u043C\u0438\u043D\u0438\u0441\u0442\u0440\u0430\u0442\u043E\u0440\u0430 Homebridge \u0434\u043E\u043B\u0436\u043D\u0430 \u0431\u044B\u0442\u044C \u043D\u0430\u0441\u0442\u0440\u043E\u0435\u043D\u0430. \u0414\u0430\u0436\u0435 \u0435\u0441\u043B\u0438 Homebridge \u0434\u043E\u0441\u0442\u0443\u043F\u0435\u043D \u0442\u043E\u043B\u044C\u043A\u043E \u0432 \u0432\u0430\u0448\u0435\u0439 \u043B\u043E\u043A\u0430\u043B\u044C\u043D\u043E\u0439 \u0441\u0435\u0442\u0438, \u0432\u0430\u0436\u043D\u043E \u0437\u0430\u0449\u0438\u0442\u0438\u0442\u044C \u0435\u0433\u043E \u043E\u0442 \u043D\u0435\u043E\u0433\u0440\u0430\u043D\u0438\u0447\u0435\u043D\u043D\u043E\u0433\u043E \u0434\u043E\u0441\u0442\u0443\u043F\u0430.","setup.open_dashboard":"\u041E\u0442\u043A\u0440\u044B\u0442\u044C \u043F\u0430\u043D\u0435\u043B\u044C \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u044F","setup.welcome_to_homebridge":"\u0414\u043E\u0431\u0440\u043E \u043F\u043E\u0436\u0430\u043B\u043E\u0432\u0430\u0442\u044C \u0432 Homebridge",setup_wizard_message_complete_message:"\u041F\u0440\u043E\u0446\u0435\u0434\u0443\u0440\u0430 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043D\u0430, \u0438 \u0442\u0435\u043F\u0435\u0440\u044C \u0432\u044B \u0433\u043E\u0442\u043E\u0432\u044B \u043D\u0430\u0447\u0430\u0442\u044C \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C Homebridge.",setup_wizard_message_complete_title:"\u041F\u043E\u0437\u0434\u0440\u0430\u0432\u043B\u044F\u0435\u043C!",setup_wizard_message_restore:"\u0412\u043E\u0441\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C \u0438\u0437 \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u043E\u0439 \u043A\u043E\u043F\u0438\u0438","status.code_scan":"\u041E\u0442\u0441\u043A\u0430\u043D\u0438\u0440\u0443\u0439\u0442\u0435, \u0447\u0442\u043E\u0431\u044B \u0434\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0432 HomeKit","status.cpu.load":"\u0417\u0430\u0433\u0440\u0443\u0437\u043A\u0430","status.cpu.temp":"\u0422\u0435\u043C\u043F\u0435\u0440\u0430\u0442\u0443\u0440\u0430","status.cpu.title_cpu":"\u041F\u0440\u043E\u0446\u0435\u0441\u0441\u043E\u0440","status.credits.title":"\u0411\u043B\u0430\u0433\u043E\u0434\u0430\u0440\u043D\u043E\u0441\u0442\u0438","status.homebridge.checking":"\u041F\u0440\u043E\u0432\u0435\u0440\u043A\u0430 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0439\u2026","status.homebridge.up_to_date":"\u0410\u043A\u0442\u0443\u0430\u043B\u044C\u043D\u0430\u044F \u0432\u0435\u0440\u0441\u0438\u044F","status.memory.label_available":"\u0421\u0432\u043E\u0431\u043E\u0434\u043D\u043E","status.memory.label_total":"\u0412\u0441\u0435\u0433\u043E","status.memory.title_memory":"\u041F\u0430\u043C\u044F\u0442\u044C","status.network.received_per_second":"\u041F\u043E\u043B\u0443\u0447\u0435\u043D\u043E","status.network.sent_per_second":"\u041E\u0442\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u043E","status.network.title_network":"\u0421\u0435\u0442\u0435\u0432\u0430\u044F \u0430\u043A\u0442\u0438\u0432\u043D\u043E\u0441\u0442\u044C","status.plugin_out_of_date":"\u041F\u043B\u0430\u0433\u0438\u043D \u0443\u0441\u0442\u0430\u0440\u0435\u043B","status.plugins_out_of_date":"\u041F\u043B\u0430\u0433\u0438\u043D\u044B \u0443\u0441\u0442\u0430\u0440\u0435\u043B\u0438","status.services.label_not_running":"\u041D\u0435 \u0437\u0430\u043F\u0443\u0449\u0435\u043D","status.services.label_running":"\u0420\u0430\u0431\u043E\u0442\u0430\u0435\u0442","status.services.updates":"Update Centre","status.uptime.title_uptime":"\u0412\u0440\u0435\u043C\u044F \u043D\u0435\u043F\u0440\u0435\u0440\u044B\u0432\u043D\u043E\u0439 \u0440\u0430\u0431\u043E\u0442\u044B","status.widget.accessories.choose_accessories":"\u0412\u044B\u0431\u0435\u0440\u0438\u0442\u0435 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B \u0434\u043B\u044F \u043E\u0442\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u044F \u0432 \u0432\u0438\u0434\u0436\u0435\u0442\u0435 \u043D\u0430 \u0432\u043A\u043B\u0430\u0434\u043A\u0435 \u0410\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u044B.","status.widget.add.label_pairing_code":"\u041A\u043E\u0434 \u0441\u043E\u043F\u0440\u044F\u0436\u0435\u043D\u0438\u044F","status.widget.bridge.restart_error":"\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C \u0434\u043E\u0447\u0435\u0440\u043D\u0438\u0439 \u043C\u043E\u0441\u0442.","status.widget.clock":"\u0427\u0430\u0441\u044B","status.widget.clock_dateformat":"\u0424\u043E\u0440\u043C\u0430\u0442 \u0434\u0430\u0442\u044B","status.widget.clock_timeformat":"\u0424\u043E\u0440\u043C\u0430\u0442 \u0432\u0440\u0435\u043C\u0435\u043D\u0438","status.widget.font_size":"\u0420\u0430\u0437\u043C\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430","status.widget.font_weight":"\u0422\u043E\u043B\u0449\u0438\u043D\u0430 \u0448\u0440\u0438\u0444\u0442\u0430","status.widget.hide_on_mobile":"\u0421\u043A\u0440\u044B\u0442\u044C \u0432 \u043A\u043E\u043C\u043F\u0430\u043A\u0442\u043D\u043E\u043C \u0432\u0438\u0434\u0435 (\u043C\u043E\u0431\u0438\u043B\u044C\u043D\u044B\u0435 \u0434\u0438\u0441\u043F\u043B\u0435\u0438)","status.widget.homebridge_logs":"\u041B\u043E\u0433 Homebridge","status.widget.info":"\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F \u043E \u0441\u0438\u0441\u0442\u0435\u043C\u0435","status.widget.info.config_path":"\u0424\u0430\u0439\u043B \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438","status.widget.info.disabled":"\u041E\u0442\u043A\u043B\u044E\u0447\u0435\u043D","status.widget.info.docker":"Docker","status.widget.info.glibc_message":"\u042D\u0442\u043E \u0441\u043E\u043E\u0431\u0449\u0435\u043D\u0438\u0435 \u0443\u043A\u0430\u0437\u044B\u0432\u0430\u0435\u0442 \u043D\u0430 \u0442\u043E, \u0447\u0442\u043E \u0432\u0430\u0448\u0430 \u043E\u043F\u0435\u0440\u0430\u0446\u0438\u043E\u043D\u043D\u0430\u044F \u0441\u0438\u0441\u0442\u0435\u043C\u0430 \u043D\u0435 \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 \u0431\u043E\u043B\u0435\u0435 \u043D\u043E\u0432\u044B\u0435 \u0432\u0435\u0440\u0441\u0438\u0438 Node.js. \u0427\u0442\u043E\u0431\u044B \u0440\u0435\u0448\u0438\u0442\u044C \u044D\u0442\u0443 \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0443 \u0438 \u0438\u043C\u0435\u0442\u044C \u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E\u0441\u0442\u044C \u0443\u0441\u0442\u0430\u043D\u0430\u0432\u043B\u0438\u0432\u0430\u0442\u044C \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044B\u0435 \u0432\u0435\u0440\u0441\u0438\u0438 Node.js \u0432 \u0431\u0443\u0434\u0443\u0449\u0435\u043C, \u0432\u0430\u043C \u043D\u0443\u0436\u043D\u043E \u043E\u0431\u043D\u043E\u0432\u0438\u0442\u044C \u0432\u0430\u0448\u0443 \u043E\u043F\u0435\u0440\u0430\u0446\u0438\u043E\u043D\u043D\u0443\u044E \u0441\u0438\u0441\u0442\u0435\u043C\u0443 \u0434\u043E \u0431\u043E\u043B\u0435\u0435 \u043D\u043E\u0432\u043E\u0439 \u0432\u0435\u0440\u0441\u0438\u0438.","status.widget.info.glibc_title":"\u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0435 \u041E\u0421","status.widget.info.hostname":"\u0418\u043C\u044F \u0445\u043E\u0441\u0442\u0430","status.widget.info.ipv4":"IPv4","status.widget.info.ipv6":"IPv6","status.widget.info.no":"\u041D\u0435\u0442","status.widget.info.node_unsupp":"Unsupported","status.widget.info.node_unsupp_message":"\u0412\u044B \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442\u0435 \u0432\u0435\u0440\u0441\u0438\u044E Node.js, \u043A\u043E\u0442\u043E\u0440\u0430\u044F \u043E\u0444\u0438\u0446\u0438\u0430\u043B\u044C\u043D\u043E \u043D\u0435 \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044F Homebridge. \u0412\u0430\u043C \u0441\u043B\u0435\u0434\u0443\u0435\u0442 \u0440\u0430\u0441\u0441\u043C\u043E\u0442\u0440\u0435\u0442\u044C \u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E\u0441\u0442\u044C \u043F\u0435\u0440\u0435\u0445\u043E\u0434\u0430 \u043D\u0430 \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043C\u0443\u044E \u0432\u0435\u0440\u0441\u0438\u044E.","status.widget.info.node_unsupp_title":"\u041D\u0435\u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043C\u0430\u044F \u0432\u0435\u0440\u0441\u0438\u044F Node","status.widget.info.node_update_message":"Homebridge \u0442\u0440\u0435\u0431\u0443\u0435\u0442 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u0443\u044E Node.js \u043D\u0430 \u0432\u0430\u0448\u0435\u0439 \u0441\u0438\u0441\u0442\u0435\u043C\u0435 \u0434\u043B\u044F \u0440\u0430\u0431\u043E\u0442\u044B. \u0412\u0440\u0435\u043C\u044F \u043E\u0442 \u0432\u0440\u0435\u043C\u0435\u043D\u0438 \u0432\u0430\u043C \u043D\u0443\u0436\u043D\u043E \u0431\u0443\u0434\u0435\u0442 \u043E\u0431\u043D\u043E\u0432\u043B\u044F\u0442\u044C \u0441\u0440\u0435\u0434\u0443 \u0432\u044B\u043F\u043E\u043B\u043D\u0435\u043D\u0438\u044F Node.js, \u0447\u0442\u043E\u0431\u044B \u0432\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u043A\u0443 \u043D\u043E\u0432\u044B\u0445 \u0444\u0443\u043D\u043A\u0446\u0438\u0439. Homebridge (\u0438 \u043F\u0440\u043E\u0432\u0435\u0440\u0435\u043D\u043D\u044B\u0435 \u043F\u043B\u0430\u0433\u0438\u043D\u044B) \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u044E\u0442 \u0432\u0441\u0435 \u0442\u0435\u043A\u0443\u0449\u0438\u0435 \u0430\u043A\u0442\u0438\u0432\u043D\u044B\u0435 \u0438 \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043C\u044B\u0435 LTS \u0432\u0435\u0440\u0441\u0438\u0438 Node.js.","status.widget.info.node_update_title":"\u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0435 Node","status.widget.info.nodejs_path":"\u041F\u0443\u0442\u044C \u043A Node.js","status.widget.info.nodejs_version":"\u0412\u0435\u0440\u0441\u0438\u044F Node.js","status.widget.info.os":"\u041E\u0421","status.widget.info.plugin_path":"\u0414\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u044F \u043F\u043B\u0430\u0433\u0438\u043D\u043E\u0432","status.widget.info.service_mode":"\u0421\u0435\u0440\u0432\u0438\u0441\u043D\u044B\u0439 \u0440\u0435\u0436\u0438\u043C","status.widget.info.service_user":"\u041F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C","status.widget.info.servicemode_message":"\u0420\u0435\u0436\u0438\u043C Standalone \u0431\u043E\u043B\u044C\u0448\u0435 \u043D\u0435 \u0440\u0435\u043A\u043E\u043C\u0435\u043D\u0434\u0443\u0435\u0442\u0441\u044F. \u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430 Homebridge \u0438 Homebridge UI \u0441 hb-service \u0438\u043C\u0435\u0435\u0442 \u0442\u0435 \u0436\u0435 \u043F\u0440\u0435\u0438\u043C\u0443\u0449\u0435\u0441\u0442\u0432\u0430, \u0447\u0442\u043E \u0438 \u0440\u0435\u0436\u0438\u043C Standalone, \u043D\u043E \u0433\u043E\u0440\u0430\u0437\u0434\u043E \u043F\u0440\u043E\u0449\u0435 \u0432 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0435 \u0438 \u043E\u0431\u0441\u043B\u0443\u0436\u0438\u0432\u0430\u043D\u0438\u0438.","status.widget.info.servicemode_title":"\u0421\u0435\u0440\u0432\u0438\u0441\u043D\u044B\u0439 \u0440\u0435\u0436\u0438\u043C","status.widget.info.storage_path":"\u0414\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u044F \u0445\u0440\u0430\u043D\u0435\u043D\u0438\u044F","status.widget.info.synology_package":"\u041F\u0430\u043A\u0435\u0442 Synology","status.widget.info.timezone":"\u0427\u0430\u0441\u043E\u0432\u043E\u0439 \u043F\u043E\u044F\u0441","status.widget.info.yes":"\u0414\u0430","status.widget.network.history_items":"\u0418\u0441\u0442\u043E\u0440\u0438\u0447\u0435\u0441\u043A\u0438\u0435 \u044D\u043B\u0435\u043C\u0435\u043D\u0442\u044B","status.widget.network.items":"\u044D\u043B\u0435\u043C\u0435\u043D\u0442\u044B","status.widget.network.network_interface":"\u0421\u0435\u0442\u0435\u0432\u043E\u0439 \u0438\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441","status.widget.network.none_selected":"\u0412 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430\u0445 \u043D\u0438\u0447\u0435\u0433\u043E \u043D\u0435 \u0432\u044B\u0431\u0440\u0430\u043D\u043E - \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442\u0441\u044F \u043F\u043E \u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E.","status.widget.network.refresh_interval":"\u0418\u043D\u0442\u0435\u0440\u0432\u0430\u043B \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u044F","status.widget.network.refresh_note":"\u041E\u0431\u043D\u043E\u0432\u0438\u0442\u0435 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0443, \u0447\u0442\u043E\u0431\u044B \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F \u0432\u0441\u0442\u0443\u043F\u0438\u043B\u0438 \u0432 \u0441\u0438\u043B\u0443.","status.widget.network.seconds":"\u0441\u0435\u043A\u0443\u043D\u0434\u044B","status.widget.qr_paired":"C\u043E\u043F\u0440\u044F\u0436\u0435\u043D","status.widget.qr_unpaired":"H\u0435 c\u043E\u043F\u0440\u044F\u0436\u0435\u043D","status.widget.show_hide":"Show/Hide Widgets","status.widget.title_manage_widget":"\u0423\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u0432\u0438\u0434\u0436\u0435\u0442\u043E\u043C","status.widget.uptime.label_process":"\u041F\u0440\u043E\u0446\u0435\u0441\u0441","status.widget.uptime.label_server":"\u0421\u0435\u0440\u0432\u0435\u0440","status.widget.weather.label_config_required_help":"\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u0432\u0430\u0448 \u0433\u043E\u0440\u043E\u0434 \u0432 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430\u0445 \u0432\u0438\u0434\u0436\u0435\u0442\u0430.","status.widget.weather.label_search_for_your_city":"\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u0432\u0430\u0448 \u0433\u043E\u0440\u043E\u0434:","status.widget.weather.title_weather":"\u041F\u043E\u0433\u043E\u0434\u0430","support.dev.api":"API Homebridge","support.dev.api_hap":"API HAP-NodeJS","support.dev.api_hap_sub":"HAP-NodeJS \u2014 \u044D\u0442\u043E \u0440\u0435\u0430\u043B\u0438\u0437\u0430\u0446\u0438\u044F \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u043E\u0432 HomeKit, \u043A\u0430\u043A \u0443\u043A\u0430\u0437\u0430\u043D\u043E \u0432 \u041F\u0440\u043E\u0442\u043E\u043A\u043E\u043B\u0435 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u043E\u0432 HomeKit (HAP), \u043A\u043E\u0442\u043E\u0440\u044B\u0439 \u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0435\u043D Apple \u043A\u0430\u043A \u0447\u0430\u0441\u0442\u044C \u0444\u0440\u0435\u0439\u043C\u0432\u043E\u0440\u043A\u0430 HomeKit.","support.dev.api_sub":"Homebridge \u2014 \u044D\u0442\u043E \u043B\u0435\u0433\u043A\u043E\u0432\u0435\u0441\u043D\u044B\u0439 \u0441\u0435\u0440\u0432\u0435\u0440 Node.js, \u043A\u043E\u0442\u043E\u0440\u044B\u0439 \u0432\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C \u0432 \u0432\u0430\u0448\u0435\u0439 \u0434\u043E\u043C\u0430\u0448\u043D\u0435\u0439 \u0441\u0435\u0442\u0438, \u0447\u0442\u043E\u0431\u044B \u044D\u043C\u0443\u043B\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u041F\u0440\u043E\u0442\u043E\u043A\u043E\u043B \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u043E\u0432 HomeKit (HAP).","support.dev.item_swagger":"\u0414\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430\u0446\u0438\u044F Swagger","support.dev.item_swagger_sub":"REST API Homebridge \u043F\u043E\u0437\u0432\u043E\u043B\u044F\u0435\u0442 \u0432\u0430\u043C \u0432\u0437\u0430\u0438\u043C\u043E\u0434\u0435\u0439\u0441\u0442\u0432\u043E\u0432\u0430\u0442\u044C \u0441 \u0432\u0430\u0448\u0438\u043C \u0441\u0435\u0440\u0432\u0435\u0440\u043E\u043C Homebridge \u0441 \u043F\u043E\u043C\u043E\u0449\u044C\u044E HTTP-\u0437\u0430\u043F\u0440\u043E\u0441\u043E\u0432.","support.dev.template":"\u0428\u0430\u0431\u043B\u043E\u043D \u043F\u043B\u0430\u0433\u0438\u043D\u0430","support.dev.template_sub":"\u0428\u0430\u0431\u043B\u043E\u043D \u043F\u043B\u0430\u0433\u0438\u043D\u0430 Homebridge, \u043A\u043E\u0442\u043E\u0440\u044B\u0439 \u043C\u043E\u0436\u043D\u043E \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u043A\u0430\u043A \u0431\u0430\u0437\u0443 \u0434\u043B\u044F \u043D\u0430\u0447\u0430\u043B\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043E\u0442\u043A\u0438 \u0432\u0430\u0448\u0435\u0433\u043E \u0441\u043E\u0431\u0441\u0442\u0432\u0435\u043D\u043D\u043E\u0433\u043E \u043F\u043B\u0430\u0433\u0438\u043D\u0430.","support.dev.title":"\u0420\u0430\u0437\u0440\u0430\u0431\u043E\u0442\u0447\u0438\u043A\u0438","support.dev.verified":"\u041F\u0440\u043E\u0432\u0435\u0440\u0435\u043D\u043E Homebridge","support.dev.verified_sub":"\u041F\u0440\u043E\u0433\u0440\u0430\u043C\u043C\u0430 '\u041F\u0440\u043E\u0432\u0435\u0440\u0435\u043D\u043E Homebridge' \u043F\u043E\u0437\u0432\u043E\u043B\u044F\u0435\u0442 \u0440\u0430\u0437\u0440\u0430\u0431\u043E\u0442\u0447\u0438\u043A\u0430\u043C \u043F\u043B\u0430\u0433\u0438\u043D\u043E\u0432 \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u044C \u0441\u0432\u043E\u0438 \u043F\u043B\u0430\u0433\u0438\u043D\u044B \u043D\u0430 \u0440\u0430\u0441\u0441\u043C\u043E\u0442\u0440\u0435\u043D\u0438\u0435 \u0438 \u043E\u0434\u043E\u0431\u0440\u0435\u043D\u0438\u0435 \u043A\u043E\u043C\u0430\u043D\u0434\u043E\u0439 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 Homebridge.","support.links.discord":"\u0421\u0435\u0440\u0432\u0435\u0440 Discord","support.links.discord_sub":"\u041F\u0440\u0438\u0441\u043E\u0435\u0434\u0438\u043D\u044F\u0439\u0442\u0435\u0441\u044C \u043A \u0447\u0430\u0442\u0443 Homebridge \u0432 Discord, \u0447\u0442\u043E\u0431\u044B \u043F\u043E\u043E\u0431\u0449\u0430\u0442\u044C\u0441\u044F \u0441 \u0434\u0440\u0443\u0433\u0438\u043C\u0438 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F\u043C\u0438 \u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043E\u0442\u0447\u0438\u043A\u0430\u043C\u0438.","support.links.documentation":"\u0414\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430\u0446\u0438\u044F","support.links.documentation_sub":"\u0414\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430\u0446\u0438\u044F Homebridge \u043F\u0440\u0435\u0434\u043E\u0441\u0442\u0430\u0432\u043B\u044F\u0435\u0442 \u043C\u043D\u043E\u0436\u0435\u0441\u0442\u0432\u043E \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438 \u043E \u0442\u043E\u043C, \u043A\u0430\u043A \u043D\u0430\u0447\u0430\u0442\u044C \u0440\u0430\u0431\u043E\u0442\u0430\u0442\u044C \u0441 Homebridge \u0438 \u0440\u0435\u0448\u0430\u0442\u044C \u0440\u0430\u0441\u043F\u0440\u043E\u0441\u0442\u0440\u0430\u043D\u0435\u043D\u043D\u044B\u0435 \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u044B.","support.links.issue":"\u0421\u043E\u043E\u0431\u0449\u0438\u0442\u044C \u043E \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0435","support.links.issue_sub":"\u0415\u0441\u043B\u0438 \u0443 \u0432\u0430\u0441 \u0432\u043E\u0437\u043D\u0438\u043A\u043B\u0438 \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u044B \u0441 Homebridge, \u043F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043E\u0442\u043A\u0440\u043E\u0439\u0442\u0435 \u043D\u043E\u0432\u0443\u044E \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0443 \u043D\u0430 GitHub. \u042D\u0442\u043E \u043D\u0435 \u0434\u043E\u043B\u0436\u043D\u043E \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C\u0441\u044F \u0434\u043B\u044F \u043F\u0440\u043E\u0431\u043B\u0435\u043C \u0441 \u043A\u043E\u043D\u043A\u0440\u0435\u0442\u043D\u044B\u043C\u0438 \u043F\u043B\u0430\u0433\u0438\u043D\u0430\u043C\u0438.","support.links.reddit":"\u0421\u043E\u043E\u0431\u0449\u0435\u0441\u0442\u0432\u043E Reddit","support.links.reddit_sub":"\u0421\u0443\u0431\u0440\u0435\u0434\u0434\u0438\u0442 Homebridge - \u043E\u0442\u043B\u0438\u0447\u043D\u043E\u0435 \u043C\u0435\u0441\u0442\u043E \u0434\u043B\u044F \u0442\u043E\u0433\u043E, \u0447\u0442\u043E\u0431\u044B \u043F\u043E\u0434\u0435\u043B\u0438\u0442\u044C\u0441\u044F \u0441\u0432\u043E\u0435\u0439 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u043E\u0439 Homebridge \u0438 \u0437\u0430\u0434\u0430\u0442\u044C \u0432\u043E\u043F\u0440\u043E\u0441\u044B.","support.links.title":"\u041F\u043E\u043B\u0435\u0437\u043D\u044B\u0435 \u0441\u0441\u044B\u043B\u043A\u0438","support.title":"\u041F\u043E\u0434\u0434\u0435\u0440\u0436\u043A\u0430","toast.no_auth":"\u0422\u043E\u043B\u044C\u043A\u043E \u0430\u0434\u043C\u0438\u043D\u0438\u0441\u0442\u0440\u0430\u0442\u043E\u0440\u044B \u043C\u043E\u0433\u0443\u0442 \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u044C \u0434\u043E\u0441\u0442\u0443\u043F \u043A \u0437\u0430\u043F\u0440\u0430\u0448\u0438\u0432\u0430\u0435\u043C\u043E\u0439 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0435.","toast.title_error":"\u041E\u0448\u0438\u0431\u043A\u0430","toast.title_success":"\u0423\u0441\u043F\u0435\u0448\u043D\u043E","toast.title_warning":"\u041F\u0440\u0435\u0434\u0443\u043F\u0440\u0435\u0436\u0434\u0435\u043D\u0438\u0435","users.button_add_new_user":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043D\u043E\u0432\u043E\u0433\u043E \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F","users.button_add_user":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F","users.label_admin_user":"\u0410\u0434\u043C\u0438\u043D\u0438\u0441\u0442\u0440\u0430\u0442\u043E\u0440","users.label_confirm_password":"\u041F\u043E\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435 \u043F\u0430\u0440\u043E\u043B\u044C","users.label_full_name":"\u041F\u043E\u043B\u043D\u043E\u0435 \u0438\u043C\u044F","users.label_new_password":"\u041D\u043E\u0432\u044B\u0439 \u043F\u0430\u0440\u043E\u043B\u044C","users.label_password":"\u041F\u0430\u0440\u043E\u043B\u044C","users.label_username":"\u0418\u043C\u044F \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F","users.setup_2fa":"\u041D\u0430\u0441\u0442\u0440\u043E\u0438\u0442\u044C 2FA","users.setup_2fa_activate_error":"\u041F\u0440\u043E\u0438\u0437\u043E\u0448\u043B\u0430 \u043E\u0448\u0438\u0431\u043A\u0430 \u043F\u0440\u0438 \u0430\u043A\u0442\u0438\u0432\u0430\u0446\u0438\u0438 2FA","users.setup_2fa_cannot_setup_2fa":"\u041D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u043D\u0430\u0441\u0442\u0440\u043E\u0438\u0442\u044C 2FA","users.setup_2fa_disable":"\u041E\u0442\u043A\u043B\u044E\u0447\u0438\u0442\u044C 2FA","users.setup_2fa_disable_current_password":"\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0441\u0432\u043E\u0439 \u0442\u0435\u043A\u0443\u0449\u0438\u0439 \u043F\u0430\u0440\u043E\u043B\u044C, \u0447\u0442\u043E\u0431\u044B \u043E\u0442\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0434\u0432\u0443\u0445\u0444\u0430\u043A\u0442\u043E\u0440\u043D\u0443\u044E \u0430\u0443\u0442\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u044E:","users.setup_2fa_disable_success":"\u0414\u0432\u0443\u0445\u0444\u0430\u043A\u0442\u043E\u0440\u043D\u0430\u044F \u0430\u0443\u0442\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u044F \u043E\u0442\u043A\u043B\u044E\u0447\u0435\u043D\u0430.","users.setup_2fa_enable":"\u0412\u043A\u043B\u044E\u0447\u0438\u0442\u044C 2FA","users.setup_2fa_enable_error":"\u041F\u0440\u043E\u0438\u0437\u043E\u0448\u043B\u0430 \u043E\u0448\u0438\u0431\u043A\u0430 \u043F\u0440\u0438 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0435 2FA","users.setup_2fa_enabled_success":"\u0414\u0432\u0443\u0445\u0444\u0430\u043A\u0442\u043E\u0440\u043D\u0430\u044F \u0430\u0443\u0442\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u044F \u0432\u043A\u043B\u044E\u0447\u0435\u043D\u0430.","users.setup_2fa_enter_code":"\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u043E\u0434 \u0438\u0437 \u0412\u0430\u0448\u0435\u0433\u043E \u043F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u0438\u044F \u0434\u043B\u044F \u0430\u0443\u0442\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u0438:","users.setup_2fa_scan_qr_code":"\u041E\u0442\u0441\u043A\u0430\u043D\u0438\u0440\u0443\u0439\u0442\u0435 QR-\u043A\u043E\u0434 \u043D\u0438\u0436\u0435 \u0441 \u043F\u043E\u043C\u043E\u0449\u044C\u044E \u0412\u0430\u0448\u0435\u0433\u043E \u043F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u0438\u044F \u0434\u043B\u044F \u0430\u0443\u0442\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u0438:","users.setup_2fa_server_time_out":"\u0427\u0430\u0441\u044B \u0432\u0430\u0448\u0435\u0433\u043E \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u043D\u0435\u0442\u043E\u0447\u043D\u044B \u043D\u0430 {{ timeDiffError }} \u043C\u0441. \u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u043E \u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u043E\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435 +/-5000 \u043C\u0441.","users.setup_2fa_warning":"\u0414\u0432\u0443\u0445\u0444\u0430\u043A\u0442\u043E\u0440\u043D\u0430\u044F \u0430\u0443\u0442\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u044F \u0442\u0440\u0435\u0431\u0443\u0435\u0442, \u0447\u0442\u043E\u0431\u044B \u0432\u0430\u0448 \u0441\u0435\u0440\u0432\u0435\u0440 Homebridge \u0438\u043C\u0435\u043B \u043E\u0447\u0435\u043D\u044C \u0442\u043E\u0447\u043D\u0443\u044E \u0434\u0430\u0442\u0443 \u0438 \u0432\u0440\u0435\u043C\u044F \u0434\u043B\u044F \u0432\u0445\u043E\u0434\u0430 \u0432 \u0441\u0438\u0441\u0442\u0435\u043C\u0443. \u0415\u0441\u043B\u0438 \u0432\u0430\u0448 \u0441\u0435\u0440\u0432\u0435\u0440 \u043D\u0435 \u043C\u043E\u0436\u0435\u0442 \u0442\u043E\u0447\u043D\u043E \u043E\u0442\u0441\u043B\u0435\u0436\u0438\u0432\u0430\u0442\u044C \u0432\u0440\u0435\u043C\u044F, \u0432\u044B \u043D\u0435 \u0434\u043E\u043B\u0436\u043D\u044B \u0432\u043A\u043B\u044E\u0447\u0430\u0442\u044C 2FA \u0438\u043B\u0438 \u0440\u0438\u0441\u043A\u0443\u0435\u0442\u0435 \u043F\u043E\u0442\u0435\u0440\u044F\u0442\u044C \u0434\u043E\u0441\u0442\u0443\u043F \u043A \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C\u0441\u043A\u043E\u043C\u0443 \u0438\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0443 Homebridge.","users.title_add_user":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F","users.title_edit_user":"\u041F\u0440\u043E\u0444\u0438\u043B\u044C \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F","users.title_users":"\u041F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0438","users.toast_added_new_user":"\u041D\u043E\u0432\u044B\u0439 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C \u0434\u043E\u0431\u0430\u0432\u043B\u0435\u043D","users.toast_failed_to_add_user":"\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u0434\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F","users.toast_failed_to_delete_user":"\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u0443\u0434\u0430\u043B\u0438\u0442\u044C \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F","users.toast_updated_user":"\u0414\u0430\u043D\u043D\u044B\u0435 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u044B","users.toast_user_deleted":"\u041F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C \u0443\u0434\u0430\u043B\u0435\u043D"}});var Vs=y((Gd,za)=>{za.exports={"accessories.button_add_room":"Dodaj sobo","accessories.button_hidden_hide":"Hide Hidden","accessories.button_hidden_show":"Show Hidden","accessories.control.auto":"Auto","accessories.control.away":"Odsoten","accessories.control.battery_charging":"Polnjenje","accessories.control.battery_notchargeable":"Nepolnjivo","accessories.control.battery_notcharging":"Ne polni","accessories.control.brightness":"Svetlost","accessories.control.closed":"Zaprto","accessories.control.closing":"Zapiranje","accessories.control.cool":"Hladno","accessories.control.default_room":"Privzeta soba","accessories.control.default_running_time":"Privzeti \u010Das delovanja","accessories.control.dehumidifying":"Razvla\u017Eevanje","accessories.control.detected":"Detected","accessories.control.drag_here":"Povleci sem","accessories.control.fan":"Ventilator","accessories.control.heat":"toplota","accessories.control.home":"Dom","accessories.control.humidifying":"Vla\u017Eenje","accessories.control.jammed":"Zataknjeno","accessories.control.light":"Lu\u010D","accessories.control.locked":"Zaklenjeno","accessories.control.mute":"Izklop zvoka","accessories.control.night":"No\u010D","accessories.control.not_detected":"Not Detected","accessories.control.not_mute":"Vklju\u010Den zvok","accessories.control.off":"Izklju\u010Deno","accessories.control.on":"Vklju\u010Deno","accessories.control.open":"Odpri","accessories.control.opening":"Odpiranje","accessories.control.rotation_speed":"Hitrost vrtenja","accessories.control.running":"Delovanje","accessories.control.speaker_volume":"Glas","accessories.control.stopped":"Ustavljeno","accessories.control.target":"Cilj","accessories.control.target_humidity":"Ciljna vla\u017Enost","accessories.control.target_temperature":"Ciljna temperatura","accessories.control.triggered":"Spro\u017Eeno","accessories.control.unknown":"Neznano","accessories.control.unlocked":"Odklenjeno","accessories.control_disabled":"Homebridge Nadzor dodatne opreme onemogo\u010Den","accessories.hide_this_accessory":"Skrij to dodatno opremo","accessories.message_for_more_information":"za ve\u010D informacij.","accessories.message_must_use_insecure_mode":"T\u010Ce \u017Eelite nadzirati dodatno opremo, morate v na\u010Dinu neza\u0161\u010Diteno uporabljati Homebridge.","accessories.message_please_see":"Prosim poglej","accessories.name":"Ime","accessories.room_name":"Ime sobe","accessories.rooms_not_appear_in_homekit":"Prostori, ki jih ustvarite tukaj, se ne bodo prikazali v programu HomeKit, temve\u010D so samo za organizacijo dodatne opreme v programu Homebridge UI.","accessories.settings_link":"You can access the Homebridge Settings at any time from the cog icon in the side menu.","accessories.show_on_dashboard":"Poka\u017Ei na nadzorni plo\u0161\u010Di","accessories.title_accessories":"Dodatki","backup.backup_delete_failed":"Backup deletion failed. See logs for details.","backup.backup_download_failed":"Prenos varnostne kopije ni uspel","backup.backup_exceeds_max_size":"Backup ({{ backupSize }}) exceeds maximum restore file size of {{ maxBackupSizeText }}","backup.backup_help_one":"Prenesite rezervni arhiv celotnega okolja Homebridge. Tako boste ustvarili varnostno kopijo celotne vsebine va\u0161e mape za shranjevanje Homebridge, ki jo lahko pozneje obnovite na kateri koli platformi, ki lahko poganja Homebridge UI.","backup.backup_help_two":"Vti\u010Dniki, ki niso gostili npm, ali vti\u010Dniki, name\u0161\u010Deni neposredno iz GitHub-a, ne bodo varnostno kopirani ali obnovljeni.","backup.backup_restored":"Varnostno kopiranje arhiva obnovljeno","backup.backup_warning":"Rezervni arhivi vsebujejo ob\u010Dutljive podatke in jih ne smete deliti z drugimi.","backup.button_restore_backup":"Obnovi varnostno kopijo","backup.label_choose_backup_file_to_restore":"Izberite varnostno datoteko za obnovitev \u2026","backup.label_uploading":"Nalaganje \u2026","backup.load_error":"Failed to load config backup.","backup.now":"Now","backup.restore_failed":"Obnovitev ni uspela","backup.restore_help_one":"Obnovite arhiv varnostnih kopij, ki ste ga predhodno ustvarili s pomo\u010Djo uporabni\u0161kega vmesnika Homebridge UI. Obnovljeno bo: konfiguracija, predpomnjeni dodatki, HomeKit in uporabni\u0161ki ra\u010Duni Homebridge UI. Vsi vti\u010Dniki Homebridge, ki ste jih namestili, se bodo prenesli tudi iz registra npm.","backup.restore_help_two":"Po obnovitvi z uporabo poverilnic obnovljenega primerka se boste morali prijaviti v doma\u010Di Bridge Config UI X.","backup.restore_max_size":"You can restore a backup archive up to {{ maxBackupSizeText }} in size.","backup.restore_warning":"Obnovitev varnostne kopije bo nepovratno prepisala trenutno konfiguracijo Homebridgea.","backup.scheduled_backup_time":"Popolna varnostna kopija primerka Homebridge se samodejno ustvari vsak dan ob {{ backupTime }} in hrani toliko dni: {{ dayCount }}. ","backup.title_backup":"Varnostna kopija","child_bridge.about":"Homebridge vam omogo\u010Da, da platformo ali dodatno opremo vti\u010Dnika za\u017Eenete kot izoliran otro\u0161ki most. To lahko izbolj\u0161a splo\u0161no odzivnost in zanesljivost Homebridgea.","child_bridge.bridge_connect":"Connect to HomeKit","child_bridge.bridge_settings":"Nastavitve mostu","child_bridge.bridges":"HomeKit Bridges","child_bridge.bridges_paired":"Vsako platformo ali dodatno opremo za otro\u0161kimost bo treba povezati s HomeKitom posebej. ","child_bridge.config.debug":"Debug Mode","child_bridge.config.description":"These fields are not required, but can be used to override the HomeKit configuration for this bridge.","child_bridge.config.firmware":"Firmware Version","child_bridge.config.header":"Configuration","child_bridge.config.manufacturer":"Manufacturer","child_bridge.config.model":"Model","child_bridge.config.name":"Name","child_bridge.must_configure_plugin":"Ta vti\u010Dnik morate konfigurirati, preden lahko upravljate njegove nastavitve mostu.","child_bridge.reset_accessories":"Reset Accessories","child_bridge.reset_accessories_list":"Choose from which child bridges you want to reset the accessories below:","child_bridge.restart":"Restart Child Bridges","child_bridge.restart_homebridge":"Znova za\u017Eenite Homebridge, da dokon\u010Date nastavitev tega otro\u0161kega mostu.","child_bridge.restart_plural":"Restart Child Bridges","child_bridge.return_to_pair":"Vrnite se na ta zaslon, potem ko se Homebridge znova za\u017Eene, da si ogledate kodo za seznanjanje QR.","child_bridge.select_type":"Izberite, katere platforme ali dodatke \u017Eelite izvajati kot otro\u0161ki most","child_bridge.setup":"Set Up Child Bridge","child_bridge.start":"Start Child Bridge","child_bridge.start_plural":"Start Child Bridges","child_bridge.stop":"Stop Child Bridge","child_bridge.stop_plural":"Stop Child Bridges","child_bridge.wiki_link":"Preberite ve\u010D o otro\u0161kih mostovih","config.config_accessory_must_be_array":"dodatki morajo biti v nizu []","config.config_bridge_missing":"Manjkajo nastavitve Bridga","config.config_invalid_json":"Config vsebuje neveljaven JSON","config.config_platform_must_be_array":"platforme morajo biti v nizu []","config.config_username_error":"Uporabni\u0161ko ime mostu mora imeti 6 parov \u0161estnajstih znakov, lo\u010Denih z dvopi\u010Djem (A-F 0-9)","config.error_blocks_objects":"All {{ type }} blocks must be objects.","config.error_blocks_type":"All {{ type }} blocks must contain the {{ type }} attribute.","config.error_string_array":"Each item in the {{ key }} array must be a string.","config.error_string_type":"The {{ type }} attribute must be a string.","config.failed_to_save_config":"Konfiguracije ni mogo\u010De shraniti","config.restore.confirm":"Kliknite Shrani, da potrdite, da \u017Eelite obnoviti to varnostno kopijo.","config.restore.copy_to_editor":"Kopiraj v urejevalnik","config.restore.no_backups":"Brez varnostnih kopij","config.restore.title_restore_homebridge_backup":"Obnovi Homebridge Config Backup","config.restore.toast_backups_deleted":"Vse varnostne kopije so izbrisane","config.title_backup_loaded":"Varnostna kopija nalo\u017Eena","form.button_cancel":"Prekini","form.button_close":"zapri","form.button_delete":"Izbri\u0161i","form.button_disable":"Disable","form.button_download":"Prenesi","form.button_edit":"Uredi","form.button_enable":"Enable","form.button_hide":"Hide","form.button_lock":"Lock","form.button_more_info":"More Info","form.button_remove":"Remove","form.button_reset":"Reset","form.button_restore":"Obnovi","form.button_save":"Shrani","form.button_show":"Show","form.button_unlock":"Unlock","form.button_unpair":"Unpair","form.label_invalid":"Config validation failed - you can still save your changes.","form.label_invalid_strict":"Config validation failed - please review the form before saving.","form.label_valid":"Config validation passed.","form.select.auto":"Automatic (Use Browser Settings)","login.button_login":"Vpi\u0161i se","login.invalid_credentials":"Neveljavno uporabni\u0161ko ime in geslo","login.label_2fa_code":"Dvofaktorska koda za preverjanje pristnosti","login.label_password":"Geslo","login.label_username":"Uporabni\u0161ko ime","login.message_invalid_2fa_code":"Vnesena koda je napa\u010Dna ali je potekla.","logs.download.error":"Failed to download log file.","logs.download_warning":"Dnevni\u0161ke datoteke Homebridge lahko vsebujejo osebne podatke, gesla ali \u017Eetone za dostop. Preglejte datoteko dnevnika in odstranite vse ob\u010Dutljive podatke, preden jih delite z drugimi.","logs.log_file_truncated":"Dnevnik je skraj\u0161an.","logs.title_download_log_file":"Prenesi datoteko dnevnika","logs.title_truncate_log_file":"Skraj\u0161aj datoteko dnevnika","logs.truncate.error":"Failed to truncate log file.","logs.truncate_log_warning":"S tem boste nepreklicno izbrisali obstoje\u010De dnevnike Homebridgea. Ali ste prepri\u010Dani, da \u017Eelite nadaljevati?","menu.config_json_editor":"JSON Config","menu.docker.restart_container":"Znova za\u017Eeni kontejner","menu.docker.startup_script":"Za\u010Detni skript","menu.docker.terminal":"Terminal","menu.hbrestart.confirm_hb":"Restart Homebridge","menu.hbrestart.confirm_ui":"Restart HB Service & UI","menu.hbrestart.title":"Restart Homebridge","menu.label_accessories":"Dodatki","menu.label_plugins":"Vti\u010Dniki","menu.label_settings":"Settings","menu.label_settings_advanced":"UI Advanced Settings","menu.label_status":"Stanje","menu.linux.label_logs":"Logs","menu.linux.label_restart_server":"Znova za\u017Eenite stre\u017Enik","menu.linux.label_shutdown_server":"Zaustavi stre\u017Enik","menu.linux.label_terminal":"Terminal","menu.restart.title":"Power Options","menu.settings.title":"Settings","menu.tooltip_logout":"Odjava","menu.tooltip_restart":"Ponovni zagon","menu.tooltip_user_accounts":"Uporabni\u0161ki ra\u010Duni","menu.tooltip_view_logs":"Prika\u017Ei dnevnike","platform.docker.container_restarted":"Docker Kontainer Ponovno zagnan","platform.docker.must_use_hashbang":"Skript mora uporabljati #!/bin/sh hashbang.","platform.docker.restart_required":"Da bodo spremembe za\u010Dele veljati, boste morali znova zagnati ta vsebnik.","platform.docker.run_with_restart":"Poskrbite, da zabojnik Docker izvajate z <code>--restart=always</code>","platform.docker.script_help":"Ta skripta se bo izvajala vsaki\u010D, ko se bo zagnal Kontejner za docker. To lahko uporabite za namestitev dodatnih paketov, ki jih bodo vti\u010Dniki morda potrebovali, na primer ffmpeg ali libpcap-dev.","platform.docker.script_saved":"Za\u010Detna skripta je shranjena","platform.docker.server_long_time":"Ponovni zagon stre\u017Enika traja dolgo. Morda boste morali kontejner Docker zagnati ro\u010Dno.","platform.docker.title_restarting":"Ponovni zagon kontejnerja Docker","platform.linux.long_time":"Ponovni zagon stre\u017Enika traja dolgo. Morda boste morali stre\u017Enik zagnati ro\u010Dno.","platform.linux.restart":"Po\u010Dakajte. Ta stran se bo samodejno preusmerila, ko se bo Homebridge spet nalo\u017Eil.","platform.linux.restarting_server":"Ponovni zagon stre\u017Enika","platform.linux.server_restart_error":"Pri po\u0161iljanju ukaza za ponovni zagon stre\u017Eniku je pri\u0161lo do napake","platform.linux.server_restarted":"Stre\u017Enik vnovi\u010D zagnan","platform.linux.server_taking_long_time":"Stre\u017Enik rabi dolgo \u010Dasa, da se za\u017Eene","platform.linux.server_will_power_down":"Stre\u017Enik se bo kmalu izklopil.","platform.linux.shutting_down_server":"Zaustavitev stre\u017Enika","platform.version.restart_required":"Homebridge UI v{{ uiVersion }} has been installed, but the server service is still running v{{ serverVersion }}.","platform.version.service_restart_required":"Potreben ponovni zagon storitve","plugins.bridge.action_error":"Failed to {{ action }} child bridge(s).","plugins.button_homepage":"Plugin Homepage","plugins.button_set_up":"Set Up","plugins.button_settings":"Nastavitve","plugins.button_uninstall":"Odstranitev","plugins.button_update":"Nadgradnja","plugins.compat.are_you_sure":"Are you sure you want to continue anyway?","plugins.compat.hb_node_too_low":"{{ packageName }} v v{{ latestVersion }} zahteva Node.js v v{{ minVersion }} ali novej\u0161o. Trenutno izvajate Node.js {{ installedVersion }}.","plugins.compat.hb_too_low":"{{ pluginName }} vti\u010Dnik zahteva Homebridge v{{ minVersion }} ali novej\u0161i. Trenutno se izvaja Homebridge v{{ installedVersion }}.","plugins.compat.node_first":"Pred posodobitvijo {{ packageName }} nadgradite Node.js.","plugins.compat.node_link":"How To Update Node.js","plugins.compat.node_too_low":"{{ pluginName }} vti\u010Dnik zahteva Node.js v{{ minVersion }} ali novej\u0161i. Trenutno se izvaja Node.js {{ installedVersion }}.","plugins.compat.title":"Compatibility Check","plugins.config.load_error":"Failed to load plugin config.","plugins.config.must_be_array":"Plugin config must be an array.","plugins.config.must_be_array_objects":"Plugin config must be an array of objects.","plugins.config.must_be_object":"Config block must be an object.","plugins.config.name_property":'Accessory must have a valid "name" attribute',"plugins.config.please_fix":"Please fix validation errors before adding a new block.","plugins.config.remove_error":"Failed to remove plugin config.","plugins.disable.error":"Failed to disable plugin.","plugins.donate.button_not_verified":"Not Verified","plugins.donate.button_verified":"Preverjeno","plugins.donate.message_1":"As more users install their plugins through the Homebridge UI, they are less likely to visit the projects' GitHub page where the ways to support a developer would typically be displayed.","plugins.donate.message_2":"Adding donation links directly in the Homebridge UI ensures users know how to support Homebridge developers if they wish to do so.","plugins.donate.tile_donate_to":"Doniraj {{ author }}","plugins.enable.error":"Failed to enable plugin.","plugins.manage.all_versions":"All versions","plugins.manage.child_bridge_restart":"Child bridge restarted successfully.","plugins.manage.child_bridge_restart_failed":"Plugin restart failed, please restart Homebridge manually.","plugins.manage.confirm_disable":"Are you sure you want to disable {{ pluginName }}?","plugins.manage.confirm_disable_accessory_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen and removed from HomeKit.","plugins.manage.confirm_disable_accessory_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and HomeKit. The accessories will lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_disable_platform_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen but remain in HomeKit with a 'No Response' label.","plugins.manage.confirm_disable_platform_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and become controllable again in HomeKit. The accessories will not lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_enable":"Ali ste prepri\u010Dani, da \u017Eelite omogo\u010Diti {{ pluginName }}? ","plugins.manage.disable":"Onemogo\u010Di","plugins.manage.enable":"Omogo\u010Di","plugins.manage.information":"Plugin Information","plugins.manage.install":"Namestite","plugins.manage.installed":"Name\u0161\u010Deno","plugins.manage.json_config":"JSON Config","plugins.manage.manage_version":"Namesti prej\u0161njo razli\u010Dico","plugins.manage.manual_update_command":"To upgrade the package run open a Node.js command prompt as an Administrator and run the following commands:","plugins.manage.manual_update_required":"Potrebna je ro\u010Dna posodobitev","plugins.manage.online_updates":"Spletne posodobitve niso podprte v sistemu Windows. Po ustavitvi storitve Homebridge boste morali ro\u010Dno nadgraditi Homebridge UI.","plugins.manage.plugin_logs":"Plugin Logs","plugins.manage.release_notes":"Release Notes","plugins.manage.scoped.error":"An error occurred. You can download the logs below.","plugins.manage.scoped.info":"For more information about scoped plugins and why to switch, see the wiki page {{ link }}.","plugins.manage.scoped.process":"This process will not affect your Homebridge/HomeKit accessories. You will not be able to cancel the process once it has started. It will:","plugins.manage.scoped.switch":"Switch To Scoped Plugin","plugins.manage.scoped.windows":"Online updates are not supported on Windows. You will need to install the new plugin and uninstall the old plugin manually.","plugins.manage.scoped.windows_service":'You should <span class="font-weight-bold">not</span> restart Homebridge until both steps are complete.',"plugins.manage.select_version":"Izberite razli\u010Dico za namestitev","plugins.manage.thanks_for_updating":"Hvala, ker ste namestili najnovej\u0161o razli\u010Dico {{ pluginName }}.","plugins.manage.uninstall":"Odstranite","plugins.manage.uninstalled":"Odstranjeno","plugins.manage.unverified_message":"Unverified Homebridge plugins indicate that they haven't undergone the review process by the Homebridge project team. Lack of verification does not necessarily imply inefficacy or safety concerns. Authors might have opted not to seek verification for various reasons.","plugins.manage.unverified_subtitle":"{{ pluginName }} is not verified","plugins.manage.unverified_title":"Unverified Plugins","plugins.manage.update":"Nadgradnja","plugins.manage.updated":"Posodobljeno","plugins.manage.verified_message":"Homebridge plugins that are marked as verified have been reviewed by the Homebridge project team to ensure they meet various requirements that encourage best practices and a trouble-free user experience.","plugins.manage.verified_subtitle":"{{ pluginName }} is verified","plugins.manage.verified_title":"Verified Plugins","plugins.node_update.continue":"Continue","plugins.placeholder_search_first":"Use the search bar above to find your first plugin","plugins.placeholder_search_plugin":"Poi\u0161\u010Dite vti\u010Dnike za namestitev \u2026","plugins.settings.custom.homebridge-gsh.label_account_linked":"Ra\u010Dun povezan","plugins.settings.custom.homebridge-gsh.label_link_account":"Pove\u017Eite ra\u010Dun","plugins.settings.custom.homebridge-gsh.label_unlink_account":"Prekini povezavo med ra\u010Dunom","plugins.settings.custom.homebridge-gsh.message_about":"Vti\u010Dnik Homebridge Google Smart Home omogo\u010Da upravljanje pripomo\u010Dkov Homebridge iz pametnega zvo\u010Dnika, ki podpira Google Home ali mobilne aplikacije Google Home.","plugins.settings.custom.homebridge-gsh.message_account_link_required":"\u010Ce \u017Eelite omogo\u010Diti to funkcijo, se morate prijaviti s svojim ra\u010Dunom za Google ali GitHub; pri dodajanju dejanja Homebridge v aplikacijo Google Home za mobilne naprave uporabite isti ra\u010Dun.","plugins.settings.custom.homebridge-gsh.message_homebridge_restart_required":"Za uveljavitev sprememb je treba znova zagnati Homebridge.","plugins.settings.custom.homebridge-gsh.message_invalid_token":"Invalid account linking token in config.json","plugins.settings.deconz.dump_no_exist":"Homebridge deCONZ dump file does not exist yet.","plugins.settings.hue.dump_no_exist":"Homebridge Hue dump file does not exist yet.","plugins.settings.label_open_config_editor":"Odpri Config Urejevalec","plugins.settings.message_consult_documentation":"Za navodila o pravilni konfiguraciji tega vti\u010Dnika glejte dokumentacijo vti\u010Dnika.","plugins.settings.message_manual_config_required":"Ta vti\u010Dnik morate konfigurirati ro\u010Dno z urejevalnikom konfiguracije vmesnika Homebridge UI.","plugins.settings.plugin_config_saved":"Konfiguracija vti\u010Dnika je shranjena","plugins.settings.restart_required":"Za uveljavitev sprememb znova za\u017Eenite Homebridge.","plugins.settings.title_settings":"Nastavitve","plugins.status_disabled":"Onemogo\u010Deno","plugins.status_installed":"Name\u0161\u010Deno","plugins.toast_failed_to_load_plugin_schema":"Failed to load plugin config schema.","plugins.toast_failed_to_load_plugins":"Vti\u010Dnikov ni bilo mogo\u010De nalo\u017Eiti","plugins.uninstall_bridge_error":"Failed to remove child bridge.","plugins.uninstall_remove_config_required":"\u010Ce ta vti\u010Dnik trajno odstranite, pred ponovnim zagonom Homebridgea obvezno odstranite konfiguracijo za ta vti\u010Dnik v config.json.","plugins.uninstall_remove_confirmation":"Ali ste prepri\u010Dani, da \u017Eelite odstraniti program {{ pluginName }}?","plugins.uninstall_remove_plugin_config":"Odstrani konfiguracijo vti\u010Dnika?","plugins.uninstall_unpair_child_bridge":"Unpair plugin child bridge?","plugins.uninstall_unpair_child_bridges":"Unpair {{ count }} plugin child bridges?","reset.accessory_reset":"Ponastavitev dodatka za Homebridge","reset.action_is_irreversible":"To dejanje je nepovratno. Pred nadaljevanjem natan\u010Dno preberite navodila.","reset.bridges.desc":"If you are having trouble pairing Homebridge, an external accessory or a child bridge to HomeKit, you may need to unpair it from HomeKit to start again.","reset.bridges.empty":"You have no bridges to unpair from HomeKit.","reset.bridges.title":"Bridges","reset.bridges_all.desc":"Unpair all bridges from HomeKit. This includes the main Homebridge bridge, child bridges and bridges for external accessories.","reset.bridges_all.list_1":"This will unpair the Homebridge bridge, all child bridges and bridges for external accessories from HomeKit.","reset.bridges_all.list_2":"Note that your accessories will continue to show in HomeKit as no response, until the bridges are manually removed from HomeKit. You can do this in the Home app, by accessing Home Settings \u2192 Home Hubs & Bridges \u2192 {Bridge} \u2192 Remove Bridge from Home.","reset.bridges_all.list_3":"All your Homebridge to HomeKit accessories, scenes and automations will need to be reconfigured after the unpairing.","reset.bridges_all.list_4":"The pin for pairing your Homebridge bridge to HomeKit will be changed. You can see the new values in your Homebridge config after the unpairing.","reset.bridges_all.title":"Unpair All Bridges","reset.bridges_single.desc":"Unpair a single bridge from HomeKit. This may be a child bridge or a bridge for an external accessory like a camera or TV.","reset.bridges_single.list_1":"When unpairing a bridge, any accessories published by this bridge will be removed from the Homebridge cache.","reset.bridges_single.list_2":"The accessories will become stale in HomeKit (showing no response). To remove them, you will need to manually remove this bridge from HomeKit. You can do this in the Home app from the Home Settings section.","reset.bridges_single.list_3":"You can then attempt to pair the bridge again if required.","reset.bridges_single.title":"Unpair Single Bridge","reset.cached_accessory_removed":"Predpomnjena dodatna oprema odstranjena.","reset.clear_cache_all.desc":"Remove all accessories from the cache.","reset.clear_cache_all.list_1":"When clicking on the remove button below, Homebridge will restart and all your existing accessories will be removed from Homebridge and HomeKit.","reset.clear_cache_all.list_2":"All associated HomeKit data will also be removed, this includes room associations, scenes and automations that this accessory uses.","reset.clear_cache_all.list_3":"After Homebridge restarts, your plugins will re-add any accessories as if the plugin was being installed for the first time.","reset.clear_cache_all.title":"Remove All Accessories","reset.clear_cache_bridge.desc":"Remove all accessories published by a bridge from the cache.","reset.clear_cache_bridge.empty":"You have no bridges from which to remove accessories.","reset.clear_cache_bridge.list_1":"This function can be used to reset a plugin's existing accessories in HomeKit. They will be removed from Homebridge/HomeKit and then re-added by the plugin as new accessories.","reset.clear_cache_bridge.list_2":"The child bridge's pairing details and status will remain the same.","reset.clear_cache_bridge.title":"Remove Bridge Accessories","reset.clear_cache_single.desc":"Remove a single accessory from the cache.","reset.clear_cache_single.list_1":"Some plugins don't clean up after themselves properly! If an accessory that you no longer have in Homebridge is still being displayed in HomeKit, you can remove it from the cache.","reset.clear_cache_single.list_2":"This function can be used to reset an existing accessory in HomeKit. It will be removed from Homebridge/HomeKit and then re-added by the plugin as a new accessory.","reset.clear_cache_single.list_3":"When removing an accessory from the cache, all its associated HomeKit data will be removed. This includes any associated scenes and automations that use this accessory.","reset.clear_cache_single.list_4":"Accessories can only be removed when Homebridge is not running. Homebridge will automatically restart when clicking on each of the remove buttons below. If you need to remove multiple accessories, please be patient and allow Homebridge to restart between each removal.","reset.clear_cache_single.title":"Remove Single Accessory","reset.delete_failed":"Dodatne opreme ni bilo mogo\u010De izbrisati.","reset.delete_success":"Ponovni zagon Homebridga in \u010Di\u0161\u010Denje predpomnilnika.","reset.error_message":"Accessory cache could not be loaded. You may not have any cached accessories.","reset.failed_to_reset":"Ponastavitve Homebridga ni bilo mogo\u010De. Glejte Dnevniki.","reset.force_restart_hb_help_text":"S tem dejanjem prisili storitev storitve hb, da se v celoti za\u017Eene.","reset.remove_cached_accessories_single_empty":"You have no cached accessories to remove.","reset.removing_cached_accessory_please_wait":"Odstranjevanje dodatka iz predpomnilnika, po\u010Dakajte \u2026","restart.child_bridge_list":"Please restart these child bridges for the changes to apply:","restart.child_bridges":"Please restart the plugin's child bridges for the changes to apply.","restart.homebridge":"Please restart Homebridge for the changes to apply.","restart.label_restart_command_executed":"Ponovno za\u017Eenite ukaz","restart.please_wait_while_server_restarts":"Po\u010Dakajte, da se bo ta stran samodejno preusmerila, ko bo stre\u017Enik spet na spletu.","restart.server_is_taking_long_time_to_restart":"Ponovni zagon stre\u017Enika traja dolgo. Storitev Homebridge boste morda morali vnesti ro\u010Dno.","restart.service_ready":"Homebridge Server pripravljen","restart.title_restart":"Ponovni zagon Homebridge-a","restart.toast_server_restart_error":"Pri po\u0161iljanju ukaza za ponovni zagon stre\u017Enika je pri\u0161lo do napake","restart.toast_server_restart_timeout":"Stre\u017Enik se predolgo zaganja","restart.toast_server_restarted":"Stre\u017Enik vnovi\u010D Zagnan","restart.ui_online":"Homebridge uporabni\u0161ki vmesnik je aktiven","rpi.throttled.currently_message":"This Raspberry Pi is reporting it is currently under-voltage; please check it is connected to an appropriate power supply. Under-voltage can result in system instability and SD card corruption.","rpi.throttled.previously_message":"This Raspberry Pi has reported an under-voltage event since it was last rebooted; please check it is connected to an appropriate power supply.","rpi.throttled.undervoltage_title":"Under Voltage","settings.cache.desc":"Homebridge maintains accessories in cache so they aren't removed and re-added to HomeKit each time Homebridge restarts. Sometimes this cache can become out of sync with the actual accessories in Homebridge.","settings.cache.title":"Accessories","settings.changes.saved":"Your changes have been saved and require a restart to take effect.","settings.datetime.incorrect":"The date and time on your Homebridge server seem to be incorrect. This may cause unexpected issues. Click here for more information.","settings.display.blue":"Blue","settings.display.bluegrey":"Blue Grey","settings.display.brown":"Brown","settings.display.cyan":"Cyan","settings.display.dark":"Dark","settings.display.deep_purple":"Deep Purple","settings.display.green":"Green","settings.display.grey":"Grey","settings.display.indigo":"Indigo","settings.display.lang":"Language","settings.display.light":"Light","settings.display.lighting_mode":"Lighting Mode","settings.display.login_wallpaper":"Login Wallpaper","settings.display.login_wallpaper_desc":"A custom login wallpaper can be set by adding a <code>ui-wallpaper.jpg</code> file to your Homebridge storage directory, or by providing a full path to a local image file here.","settings.display.orange":"Orange","settings.display.pink":"Pink","settings.display.purple":"Purple","settings.display.red":"Red","settings.display.teal":"Teal","settings.display.temp_units":"Temperature Units","settings.display.temp_units.c":"Celsius (\xB0C)","settings.display.temp_units.f":"Fahrenheit (\xB0F)","settings.display.theme":"Theme","settings.general.title_display":"Display","settings.general.title_general":"General","settings.mdns_advertiser":"mDNS ogla\u0161evalec","settings.mdns_advertiser_exp":"experimental","settings.mdns_advertiser_help":"\u010Ce imate te\u017Eave s povezovanjem z Homebridgeom, poskusite uporabiti enega od nadomestnih ogla\u0161evalcev mDNS.","settings.mdns_advertiser_not_connected":"Not Connected","settings.mdns_advertiser_rec":"recommended","settings.network.label_interface_name":"Ime vmesnika","settings.network.label_ip_address":"IP naslov","settings.network.message_network_interface":"\u010Ce ni izbran noben omre\u017Eni vmesnik, bo Homebridge posku\u0161al samodejno dolo\u010Diti, katere vmesnike ogla\u0161evati.","settings.network.port_hb":"Homebridge Port","settings.network.port_hb_desc":"The port number to run the Homebridge bridge on. This must be between 1025 and 65533, and should not be the same as the Homebridge UI port.","settings.network.port_ui":"UI Port","settings.network.port_ui_desc":"The port number to run the Homebridge UI on.","settings.network.title_network":"Omre\u017Eje","settings.network.title_network_interfaces":"Omre\u017Eni vmesniki","settings.service.debug_tooltip":"Some plugins require you to set the DEBUG environment variable to enable debug level logging.","settings.service.node_tooltip":"Node.js runtime options for this process. This should be kept blank unless you know what you are doing.","settings.startup.debug":"Homebridge Debug Mode","settings.startup.debug_desc_v1":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge as well as all child bridges. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.debug_desc_v2":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge. The setting for child bridges can be found in the child bridge configuration from the plugins page. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.insecure":"Homebridge 'Insecure' Mode","settings.startup.insecure_desc":"To control your accessories via the Homebridge UI you must be running Homebridge in insecure mode.","settings.startup.keep_accessories":"Keep Accessories Of Uninstalled Plugins","settings.startup.keep_accessories_desc":"If enabled, accessories of platform plugins will remain in the cache even after the plugin is uninstalled. This can be useful if you plan to reinstall the plugin later.","settings.title_startup_options":"Mo\u017Enosti zagona","settings.unpair_bridge.load_error":"Paired bridges could not be loaded.","settings.unpair_bridge.unpair_error":"Failed to unpair bridge.","setup.button_get_started":"Get Started","setup.create_account":"Create Account","setup.create_account_reason":"Password authentication to your Homebridge admin web interface must be configured. Even if Homebridge is accessible only in your local network, it is still important to protect it from unrestricted access.","setup.open_dashboard":"Open Dashboard","setup.welcome_to_homebridge":"Welcome to Homebridge",setup_wizard_message_complete_message:"The setup procedure is complete and you're now ready to start using Homebridge.",setup_wizard_message_complete_title:"Congratulations!",setup_wizard_message_restore:"Restore From Backup","status.code_scan":"Skenirajte za dodajanje v HomeKit","status.cpu.load":"Nalo\u017Ei","status.cpu.temp":"Temp","status.cpu.title_cpu":"CPU","status.credits.title":"Credits","status.homebridge.checking":"Preverjanje posodobitev \u2026","status.homebridge.up_to_date":"Posodobljeno","status.memory.label_available":"Na voljo","status.memory.label_total":"Skupaj","status.memory.title_memory":"Spomin","status.network.received_per_second":"Received","status.network.sent_per_second":"Sent","status.network.title_network":"Network Activity","status.plugin_out_of_date":"Vti\u010Dnik je zastarel","status.plugins_out_of_date":"Vti\u010Dniki so zastareli","status.services.label_not_running":"Ne deluje","status.services.label_running":"Proces deluje","status.services.updates":"Update Centre","status.uptime.title_uptime":"\u010Cas delovanja","status.widget.accessories.choose_accessories":"Na zavihku Pripomo\u010Dki izberite Pripomo\u010Dki za prikaz v tem pripomo\u010Dku.","status.widget.add.label_pairing_code":"Koda seznanitve","status.widget.bridge.restart_error":"Failed to restart child bridge.","status.widget.clock":"Ura","status.widget.clock_dateformat":"Format datuma","status.widget.clock_timeformat":"Format \u010Dasa","status.widget.font_size":"Velikost pisave","status.widget.font_weight":"Te\u017Ea pisave","status.widget.hide_on_mobile":"Skrij v kompaktnem pogledu (mobilni zasloni)","status.widget.homebridge_logs":"Dnevnik Homebridge-a","status.widget.info":"Sistemske informacije","status.widget.info.config_path":"Konfiguriraj pot","status.widget.info.disabled":"Disabled","status.widget.info.docker":"Docker","status.widget.info.glibc_message":"This message indicates that your operating system does not support newer versions of Node.js. To resolve this and be able to install updated versions of Node.js in the future, you will need to update your operating system to a more recent version.","status.widget.info.glibc_title":"OS Update","status.widget.info.hostname":"Ime gostitelja","status.widget.info.ipv4":"IPv4","status.widget.info.ipv6":"IPv6","status.widget.info.no":"No","status.widget.info.node_unsupp":"Unsupported","status.widget.info.node_unsupp_message":"You are running a version of Node.js that is not officially supported by Homebridge. You should consider changing to a supported version.","status.widget.info.node_unsupp_title":"Unsupported Node Version","status.widget.info.node_update_message":"Homebridge requires Node.js installed on your system to run. From time to time, you will need to update the Node.js runtime to enable support for new features. Homebridge (and verified plugins) support all current Active and Maintenance LTS releases of Node.js.","status.widget.info.node_update_title":"Node Update","status.widget.info.nodejs_path":"Node.js Path","status.widget.info.nodejs_version":"Node.js Verzija","status.widget.info.os":"OS","status.widget.info.plugin_path":"Pot vti\u010Dnika","status.widget.info.service_mode":"Na\u010Din storitve","status.widget.info.service_user":"Uporabnik","status.widget.info.servicemode_message":"Standalone mode is no longer recommended. Setting up Homebridge and Homebridge UI with hb-service has the same benefits of standalone mode but is much easier to setup and maintain.","status.widget.info.servicemode_title":"Service Mode","status.widget.info.storage_path":"Shranjevalna pot","status.widget.info.synology_package":"Synology Package","status.widget.info.timezone":"\u010Casovni pas","status.widget.info.yes":"Yes","status.widget.network.history_items":"History Items","status.widget.network.items":"items","status.widget.network.network_interface":"Network Interface","status.widget.network.none_selected":"None selected in settings - using default.","status.widget.network.refresh_interval":"Refresh Interval","status.widget.network.refresh_note":"Refresh the page after saving for changes to take effect.","status.widget.network.seconds":"seconds","status.widget.qr_paired":"Seznanjen","status.widget.qr_unpaired":"Ne seznanjen","status.widget.show_hide":"Show/Hide Widgets","status.widget.title_manage_widget":"Upravljanje pripomo\u010Dka","status.widget.uptime.label_process":"Proces","status.widget.uptime.label_server":"Stre\u017Enik","status.widget.weather.label_config_required_help":"V nastavitvah pripomo\u010Dka izberite svoje mesto.","status.widget.weather.label_search_for_your_city":"Poi\u0161\u010Dite svoje mesto:","status.widget.weather.title_weather":"Vreme","support.dev.api":"Homebridge API","support.dev.api_hap":"HAP-NodeJS API","support.dev.api_hap_sub":"HAP-NodeJS is an implementation of the HomeKit Accessory Server as specified in the HomeKit Accessory Protocol (HAP), which is defined by Apple as part of the HomeKit Framework.","support.dev.api_sub":"Homebridge is a lightweight Node.js server you can run on your home network to emulate the HomeKit Accessory Protocol (HAP).","support.dev.item_swagger":"Swagger Docs","support.dev.item_swagger_sub":"The Homebridge REST API allows you to interact with your Homebridge server using HTTP requests.","support.dev.template":"Plugin Template Repo","support.dev.template_sub":"A template Homebridge plugin that can be used as a base to help you get started developing your own plugin.","support.dev.title":"Developers","support.dev.verified":"Verified By Homebridge","support.dev.verified_sub":"The Verified By Homebridge program allows plugin developers to get their plugins reviewed and endorsed by the Homebridge project team.","support.links.discord":"Discord Server","support.links.discord_sub":"Join the Homebridge Discord chat server to chat with other users and developers.","support.links.documentation":"Documentation","support.links.documentation_sub":"The Homebridge documentation provides a wealth of information on how to get started with Homebridge and common issue resolutions.","support.links.issue":"Report An Issue","support.links.issue_sub":"If you are experiencing an issue with Homebridge, please open a new issue on GitHub. This should not be used for issues with specific plugins.","support.links.reddit":"Reddit Community","support.links.reddit_sub":"The Homebridge subreddit is a great place to share your Homebridge setup and ask for help.","support.links.title":"Useful Links","support.title":"Support","toast.no_auth":"Only administrators may access the requested page.","toast.title_error":"Napaka","toast.title_success":"Uspeh","toast.title_warning":"Opozorilo","users.button_add_new_user":"Dodaj novega uporabnika","users.button_add_user":"Dodaj uporabnika","users.label_admin_user":"Uporabnik Administratorja?","users.label_confirm_password":"potrdi geslo","users.label_full_name":"Polno ime","users.label_new_password":"novo geslo","users.label_password":"Geslo","users.label_username":"Uporabni\u0161ko ime","users.setup_2fa":"Nastavitev 2FA","users.setup_2fa_activate_error":"An error occurred activating 2FA","users.setup_2fa_cannot_setup_2fa":"2FA ni mogo\u010De nastaviti","users.setup_2fa_disable":"Onemogo\u010Di 2FA","users.setup_2fa_disable_current_password":"Vnesite trenutno geslo, da onemogo\u010Dite dvofaktorsko preverjanje pristnosti:","users.setup_2fa_disable_success":"Dvofaktorska overitev je onemogo\u010Dena.","users.setup_2fa_enable":"Omogo\u010Di 2FA","users.setup_2fa_enable_error":"An error occurred setting up 2FA","users.setup_2fa_enabled_success":"Omogo\u010Deno je dvofaktorsko preverjanje pristnosti.","users.setup_2fa_enter_code":"Vnesite kodo iz aplikacije za preverjanje pristnosti:","users.setup_2fa_scan_qr_code":"Spodnjo kodo QR opti\u010Dno preberite z aplikacijo za preverjanje pristnosti:","users.setup_2fa_server_time_out":"Ura va\u0161ega stre\u017Enika je napa\u010Dna za {{ timeDiffError }} ms. Najve\u010Dja dovoljena vrednost je +/-5000 ms.","users.setup_2fa_warning":"Dvofaktorska overitev zahteva, da ima stre\u017Enik Homebridge zelo natan\u010Den datum in uro za prijavo. \u010Ce va\u0161 stre\u017Enik ne more natan\u010Dno meriti \u010Dasa, ne smete omogo\u010Diti 2FA ali tvegati, da boste zaklenjeni iz uporabni\u0161kega vmesnika Homebridge.","users.title_add_user":"Dodaj uporabnika","users.title_edit_user":"Urejanje uporabnika","users.title_users":"Uporabniki","users.toast_added_new_user":"Dodan nov uporabnik","users.toast_failed_to_add_user":"Uporabnika ni bilo mogo\u010De dodati","users.toast_failed_to_delete_user":"Ni bil omogo\u010De izbrisati uporabnika","users.toast_updated_user":"Posodobljeni uporabnik","users.toast_user_deleted":"Uporabnik je izbrisan"}});var Os=y((Yd,Sa)=>{Sa.exports={"accessories.button_add_room":"L\xE4gg till rum","accessories.button_hidden_hide":"G\xF6m dolda","accessories.button_hidden_show":"Visa dolda","accessories.control.auto":"Automatisk","accessories.control.away":"Borta","accessories.control.battery_charging":"Laddar","accessories.control.battery_notchargeable":"Ej laddbar","accessories.control.battery_notcharging":"Laddar inte","accessories.control.brightness":"Ljusstyrka","accessories.control.closed":"St\xE4ngd","accessories.control.closing":"St\xE4nger","accessories.control.cool":"Kylning","accessories.control.default_room":"Standardrum","accessories.control.default_running_time":"Standard k\xF6rtid","accessories.control.dehumidifying":"Avfuktar","accessories.control.detected":"Detected","accessories.control.drag_here":"Dra h\xE4r","accessories.control.fan":"Fl\xE4kt","accessories.control.heat":"V\xE4rme","accessories.control.home":"Hem","accessories.control.humidifying":"\xC5terfuktar","accessories.control.jammed":"Fastnat","accessories.control.light":"Ljus","accessories.control.locked":"L\xE5st","accessories.control.mute":"Tyst","accessories.control.night":"Natt","accessories.control.not_detected":"Not Detected","accessories.control.not_mute":"P\xE5","accessories.control.off":"Av","accessories.control.on":"P\xE5","accessories.control.open":"\xD6ppen","accessories.control.opening":"\xD6ppnar","accessories.control.rotation_speed":"Rotationshastighet","accessories.control.running":"K\xF6rs","accessories.control.speaker_volume":"Volym","accessories.control.stopped":"Stoppad","accessories.control.target":"M\xE5l","accessories.control.target_humidity":"M\xE5lfuktighet","accessories.control.target_temperature":"M\xE5ltemperatur","accessories.control.triggered":"Utl\xF6st","accessories.control.unknown":"Ok\xE4nd","accessories.control.unlocked":"Ol\xE5st","accessories.control_disabled":"Homebridge tillbeh\xF6rskontroll inaktiverad","accessories.hide_this_accessory":"D\xF6lj detta tillbeh\xF6r","accessories.message_for_more_information":"f\xF6r mer information.","accessories.message_must_use_insecure_mode":"F\xF6r att kontrollera dina tillbeh\xF6r m\xE5ste du k\xF6ra Homebridge i os\xE4kert l\xE4ge.","accessories.message_please_see":"V\xE4nligen se","accessories.name":"Namn","accessories.room_name":"Rumsnamn","accessories.rooms_not_appear_in_homekit":"Rummen du skapar h\xE4r visas inte i HomeKit, de \xE4r endast avsedda f\xF6r organisering av tillbeh\xF6r i Homebridge UI.","accessories.settings_link":"Du kan n\xE5 Homebridge-inst\xE4llningarna n\xE4r som helst fr\xE5n kugghjulet i sidomenyn.","accessories.show_on_dashboard":"Visa som widget p\xE5 skrivbordet","accessories.title_accessories":"Tillbeh\xF6r","backup.backup_delete_failed":"Backup deletion failed. See logs for details.","backup.backup_download_failed":"H\xE4mtning av s\xE4kerhetskopia misslyckades","backup.backup_exceeds_max_size":"Backup ({{ backupSize }}) exceeds maximum restore file size of {{ maxBackupSizeText }}","backup.backup_help_one":"Ladda ner en s\xE4kerhetskopia av hela Homebridge-milj\xF6n. Detta s\xE4kerhetskopierar allt inneh\xE5ll i Homebridge lagringskatalog, som du senare kan \xE5terst\xE4lla p\xE5 alla plattformar som st\xF6djer Homebridge UI.","backup.backup_help_two":"Plugins som inte \xE4r tillg\xE4ngliga i npm, eller plugins som installerats direkt fr\xE5n GitHub kommer inte att s\xE4kerhetskopieras eller \xE5terst\xE4llas.","backup.backup_restored":"S\xE4kerhetskopia \xE5terst\xE4lld","backup.backup_warning":"S\xE4kerhetskopian inneh\xE5ller k\xE4nslig information och b\xF6r inte delas med andra.","backup.button_restore_backup":"\xC5terst\xE4ll s\xE4kerhetskopia","backup.label_choose_backup_file_to_restore":"V\xE4lj s\xE4kerhetskopia f\xF6r att \xE5terst\xE4lla\u2026","backup.label_uploading":"Laddar upp\u2026","backup.load_error":"Failed to load config backup.","backup.now":"Now","backup.restore_failed":"\xC5terst\xE4llningen misslyckades","backup.restore_help_one":"\xC5terst\xE4ll en s\xE4kerhetskopia som du tidigare gjort med Homebridge UI. Din Homebridge-konfiguration, cachade tillbeh\xF6r, HomeKit-kopplingar och anv\xE4ndarkonton f\xF6r Homebridge UI kommer att \xE5terst\xE4llas. Alla Homebridge-plugins som du installerat kommer ocks\xE5 att laddas ner fr\xE5n npm-registret.","backup.restore_help_two":"Du m\xE5ste logga in p\xE5 Homebridge UI igen efter att ha gjort en \xE5terst\xE4llning med anv\xE4ndaruppgifter fr\xE5n den \xE5terst\xE4llda instansen.","backup.restore_max_size":"You can restore a backup archive up to {{ maxBackupSizeText }} in size.","backup.restore_warning":"\xC5terst\xE4llning fr\xE5n en s\xE4kerhetskopia kommer att skriva \xF6ver den aktuella Homebridge-konfigurationen och g\xE5r inte att \xE5ngra.","backup.scheduled_backup_time":"En fullst\xE4ndig s\xE4kerhetskopia av Homebridge-instansen skapas automatiskt varje dag vid {{ backupTime }} och sparas i {{ dayCount }} dagar.","backup.title_backup":"S\xE4kerhetskopiering","child_bridge.about":"Homebridge ger dig m\xF6jlighet att k\xF6ra en plugins plattform eller tillbeh\xF6r som en isolerad underbrygga. Detta kan f\xF6rb\xE4ttra Homebridge generella responsivitet och tillf\xF6rlitlighet.","child_bridge.bridge_connect":"Anslut till HomeKit","child_bridge.bridge_settings":"Brygginst\xE4llningar","child_bridge.bridges":"HomeKit Bridges","child_bridge.bridges_paired":"Varje underbryggas plattform eller tillbeh\xF6r m\xE5ste anslutas separat med HomeKit.","child_bridge.config.debug":"Debug Mode","child_bridge.config.description":"Dessa f\xE4lt \xE4r inte obligatoriska, men kan anv\xE4ndas f\xF6r att ers\xE4tta HomeKit-konfigurationen f\xF6r denna brygga.","child_bridge.config.firmware":"Firmware version","child_bridge.config.header":"Konfiguration","child_bridge.config.manufacturer":"Tillverkare","child_bridge.config.model":"Modell","child_bridge.config.name":"Namn","child_bridge.must_configure_plugin":"Du m\xE5ste konfigurera detta plugin innan du kan hantera brygginst\xE4llningarna f\xF6r det.","child_bridge.reset_accessories":"Reset Accessories","child_bridge.reset_accessories_list":"Choose from which child bridges you want to reset the accessories below:","child_bridge.restart":"Starta om underbrygga","child_bridge.restart_homebridge":"Starta om Homebridge f\xF6r att slutf\xF6ra konfigureringen av den h\xE4r underbryggan.","child_bridge.restart_plural":"Starta om underbryggor","child_bridge.return_to_pair":"\xC5terg\xE5 till den h\xE4r sk\xE4rmen efter att Homebridge har startat om f\xF6r att se QR-koden f\xF6r parkoppling.","child_bridge.select_type":"V\xE4lj vilka plattformar eller tillbeh\xF6r du vill k\xF6ra som underbryggor","child_bridge.setup":"St\xE4ll in underbrygga","child_bridge.start":"Starta underbrygga","child_bridge.start_plural":"Starta underbryggor","child_bridge.stop":"Stoppa underbrygga","child_bridge.stop_plural":"Stoppa underbryggor","child_bridge.wiki_link":"L\xE4s mer om underbryggor","config.config_accessory_must_be_array":"tillbeh\xF6r m\xE5ste vara en array []","config.config_bridge_missing":"Brygginst\xE4llningar saknas","config.config_invalid_json":"Konfigurationen inneh\xE5ller ogiltig JSON","config.config_platform_must_be_array":"plattformar m\xE5ste vara en array []","config.config_username_error":"Anv\xE4ndarnamn f\xF6r bryggan m\xE5ste best\xE5 av 6 par av kolonseparerade hexadecimala tecken (A-F 0-9)","config.error_blocks_objects":"All {{ type }} blocks must be objects.","config.error_blocks_type":"All {{ type }} blocks must contain the {{ type }} attribute.","config.error_string_array":"Each item in the {{ key }} array must be a string.","config.error_string_type":"The {{ type }} attribute must be a string.","config.failed_to_save_config":"Det gick inte att spara konfigurationen","config.restore.confirm":"Klicka p\xE5 Spara f\xF6r att bekr\xE4fta att du vill \xE5terst\xE4lla den h\xE4r s\xE4kerhetskopian.","config.restore.copy_to_editor":"Kopiera till redigerare","config.restore.no_backups":"Inga s\xE4kerhetskopior","config.restore.title_restore_homebridge_backup":"\xC5terst\xE4ll s\xE4kerhetskopia av Homebridge-konfiguration","config.restore.toast_backups_deleted":"Alla s\xE4kerhetskopior raderade","config.title_backup_loaded":"S\xE4kerhetskopia \xE5terst\xE4lld","form.button_cancel":"Avbryt","form.button_close":"St\xE4ng","form.button_delete":"Radera","form.button_disable":"Inaktivera","form.button_download":"Ladda ner","form.button_edit":"Redigera","form.button_enable":"Aktivera","form.button_hide":"D\xF6lj","form.button_lock":"L\xE5s","form.button_more_info":"Mer info","form.button_remove":"Ta bort","form.button_reset":"\xC5terst\xE4ll","form.button_restore":"\xC5terst\xE4ll","form.button_save":"Spara","form.button_show":"Show","form.button_unlock":"L\xE5s upp","form.button_unpair":"Unpair","form.label_invalid":"Config validation failed - you can still save your changes.","form.label_invalid_strict":"Config validation failed - please review the form before saving.","form.label_valid":"Config validation passed.","form.select.auto":"Automatic (Use Browser Settings)","login.button_login":"Logga in","login.invalid_credentials":"Ogiltigt anv\xE4ndarnamn och l\xF6senord","login.label_2fa_code":"Tv\xE5faktorautentiseringskod","login.label_password":"L\xF6senord","login.label_username":"Anv\xE4ndarnamn","login.message_invalid_2fa_code":"Den angivna koden \xE4r felaktig eller har upph\xF6rt att g\xE4lla.","logs.download.error":"Failed to download log file.","logs.download_warning":"Homebridge loggfiler kan inneh\xE5lla personlig information, l\xF6senord eller \xE5tkomsttoken. Granska loggfilen och ta bort all k\xE4nslig information innan du delar med andra.","logs.log_file_truncated":"Loggfil rensad.","logs.title_download_log_file":"Ladda ner loggfil","logs.title_truncate_log_file":"Rensa loggfil","logs.truncate.error":"Failed to truncate log file.","logs.truncate_log_warning":"Den h\xE4r \xE5tg\xE4rden tar bort dina befintliga Homebridge-loggar permanent. \xC4r du s\xE4ker p\xE5 att du vill forts\xE4tta?","menu.config_json_editor":"JSON-konfigurationsredigerare","menu.docker.restart_container":"Starta om container","menu.docker.startup_script":"Startskript","menu.docker.terminal":"Terminal","menu.hbrestart.confirm_hb":"Starta om Homebridge","menu.hbrestart.confirm_ui":"Starta om HB Service & UI","menu.hbrestart.title":"Starta om Homebridge","menu.label_accessories":"Tillbeh\xF6r","menu.label_plugins":"Plugins","menu.label_settings":"Inst\xE4llningar","menu.label_settings_advanced":"UI Advanced Settings","menu.label_status":"Status","menu.linux.label_logs":"Logg","menu.linux.label_restart_server":"Starta om servern","menu.linux.label_shutdown_server":"St\xE4ng av servern","menu.linux.label_terminal":"Terminal","menu.restart.title":"Str\xF6malternativ","menu.settings.title":"Inst\xE4llningar","menu.tooltip_logout":"Logga ut","menu.tooltip_restart":"Omstart","menu.tooltip_user_accounts":"Anv\xE4ndarkonton","menu.tooltip_view_logs":"Visa loggar","platform.docker.container_restarted":"Dockercontainern har startats om","platform.docker.must_use_hashbang":"Skript m\xE5ste anv\xE4nda #!/bin/sh hashbang.","platform.docker.restart_required":"Du m\xE5ste starta om denna dockercontainer f\xF6r att \xE4ndringarna ska tr\xE4da i kraft.","platform.docker.run_with_restart":"Se till att du k\xF6r dockercontainern med <code>--restart=always</code>","platform.docker.script_help":"Detta skript kommer att k\xF6ras varje g\xE5ng dockercontainern startar. Du kan anv\xE4nda detta f\xF6r att installera eventuella extrapaket som dina plugins kan beh\xF6va, som t.ex ffmpeg eller libpcap-dev.","platform.docker.script_saved":"Start-skript sparat","platform.docker.server_long_time":"Omstart av servern tar l\xE5ng tid. Du kan beh\xF6va starta dockercontainern manuellt.","platform.docker.title_restarting":"Starta om dockercontainer","platform.linux.long_time":"Omstart av servern tar l\xE5ng tid. Du kan beh\xF6va starta servern manuellt.","platform.linux.restart":"V\xE4nta, denna sida omdirigeras automatiskt n\xE4r Homebridge \xE4r online igen.","platform.linux.restarting_server":"Starta om servern","platform.linux.server_restart_error":"Ett fel intr\xE4ffade n\xE4r omstartskommandot skickades till servern","platform.linux.server_restarted":"Serveren har startats om","platform.linux.server_taking_long_time":"Servern tar l\xE5ng tid att komma tillbaka online","platform.linux.server_will_power_down":"Servern st\xE4ngs av inom kort.","platform.linux.shutting_down_server":"St\xE4nga av servern","platform.version.restart_required":"Homebridge UI v{{ uiVersion }} har installerats, men servertj\xE4nsten k\xF6r fortfarande v{{ serverVersion }}.","platform.version.service_restart_required":"Omstart kr\xE4vs","plugins.bridge.action_error":"Failed to {{ action }} child bridge(s).","plugins.button_homepage":"Plugin Homepage","plugins.button_set_up":"St\xE4ll in","plugins.button_settings":"Inst\xE4llningar","plugins.button_uninstall":"Avinstallera","plugins.button_update":"Uppdatera","plugins.compat.are_you_sure":"Are you sure you want to continue anyway?","plugins.compat.hb_node_too_low":"{{ packageName }} v{{ latestVersion }} kr\xE4ver Node.js v{{ minVersion }} eller senare. Du k\xF6r just nu Node.js {{ installedVersion }}.","plugins.compat.hb_too_low":"Plugin {{ pluginName }} rekommenderas att k\xF6ras med Homebridge v{{ minVersion }} eller senare. Du k\xF6r just nu Homebridge v{{ installedVersion }}.","plugins.compat.node_first":"Uppgradera Node.js innan du uppdaterar {{ packageName }}.","plugins.compat.node_link":"How To Update Node.js","plugins.compat.node_too_low":"Plugin {{ pluginName }} rekommenderas att k\xF6ras med Node.js v{{ minVersion }} eller senare. Du k\xF6r just nu Node.js {{ installedVersion }}.","plugins.compat.title":"Compatibility Check","plugins.config.load_error":"Failed to load plugin config.","plugins.config.must_be_array":"Plugin config must be an array.","plugins.config.must_be_array_objects":"Plugin config must be an array of objects.","plugins.config.must_be_object":"Config block must be an object.","plugins.config.name_property":'Accessory must have a valid "name" attribute',"plugins.config.please_fix":"Please fix validation errors before adding a new block.","plugins.config.remove_error":"Failed to remove plugin config.","plugins.disable.error":"Failed to disable plugin.","plugins.donate.button_not_verified":"Ej verifierad","plugins.donate.button_verified":"Verifierad","plugins.donate.message_1":"N\xE4r fler anv\xE4ndare installerar sina plugins via Homebridge UI, \xE4r det mindre troligt att de bes\xF6ker projektets GitHub-sida d\xE4r s\xE4tten att st\xF6dja en utvecklare vanligtvis visas.","plugins.donate.message_2":"Att l\xE4gga till donationsl\xE4nkar direkt i Homebridge UI s\xE4kerst\xE4ller att anv\xE4ndare vet hur de ska st\xF6dja Homebridge-utvecklare om de \xF6nskar det.","plugins.donate.tile_donate_to":"Donera till {{ author }}","plugins.enable.error":"Failed to enable plugin.","plugins.manage.all_versions":"All versions","plugins.manage.child_bridge_restart":"Child bridge restarted successfully.","plugins.manage.child_bridge_restart_failed":"Omstart av plugin misslyckades. Starta om Homebridge manuellt.","plugins.manage.confirm_disable":"Are you sure you want to disable {{ pluginName }}?","plugins.manage.confirm_disable_accessory_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen and removed from HomeKit.","plugins.manage.confirm_disable_accessory_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and HomeKit. The accessories will lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_disable_platform_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen but remain in HomeKit with a 'No Response' label.","plugins.manage.confirm_disable_platform_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and become controllable again in HomeKit. The accessories will not lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_enable":"\xC4r du s\xE4ker p\xE5 att du vill aktivera {{ pluginName }}?","plugins.manage.disable":"Inaktivera","plugins.manage.enable":"Aktivera","plugins.manage.information":"Plugin-information","plugins.manage.install":"Installera","plugins.manage.installed":"Installerad","plugins.manage.json_config":"JSON-konfiguration","plugins.manage.manage_version":"Installera tidigare version","plugins.manage.manual_update_command":"To upgrade the package run open a Node.js command prompt as an Administrator and run the following commands:","plugins.manage.manual_update_required":"Manuell uppdatering kr\xE4vs","plugins.manage.online_updates":"Onlineuppdateringar st\xF6ds inte i Windows. Du m\xE5ste uppgradera Homebridge UI manuellt efter att ha stoppat Homebridge-tj\xE4nsten.","plugins.manage.plugin_logs":"Plugin-logg","plugins.manage.release_notes":"Release Notes","plugins.manage.scoped.error":"An error occurred. You can download the logs below.","plugins.manage.scoped.info":"For more information about scoped plugins and why to switch, see the wiki page {{ link }}.","plugins.manage.scoped.process":"This process will not affect your Homebridge/HomeKit accessories. You will not be able to cancel the process once it has started. It will:","plugins.manage.scoped.switch":"Switch To Scoped Plugin","plugins.manage.scoped.windows":"Online updates are not supported on Windows. You will need to install the new plugin and uninstall the old plugin manually.","plugins.manage.scoped.windows_service":'You should <span class="font-weight-bold">not</span> restart Homebridge until both steps are complete.',"plugins.manage.select_version":"V\xE4lj den version som ska installeras","plugins.manage.thanks_for_updating":"Tack f\xF6r att du installerade den senaste versionen av {{ pluginName }}.","plugins.manage.uninstall":"Avinstallera","plugins.manage.uninstalled":"Avinstallerad","plugins.manage.unverified_message":"Overifierade Homebridge-plugins betyder att de inte har granskats av Homebridge projektteam. Avsaknad av verifiering betyder inte n\xF6dv\xE4ndigtvis att de \xE4r ineffektiva eller har s\xE4kerhetsproblem. Utvecklarna kan ha valt att avst\xE5 verifieringen av olika anledningar.","plugins.manage.unverified_subtitle":"{{ pluginName }} \xE4r inte verifierad","plugins.manage.unverified_title":"Overifierade plugins","plugins.manage.update":"Uppdatera","plugins.manage.updated":"Uppdaterad","plugins.manage.verified_message":"Homebridge-plugins markerade som verifierade har granskats av Homebridge projektteam f\xF6r att s\xE4kerst\xE4lla att de uppfyller krav som uppmuntrar till god praxis och en problemfri anv\xE4ndarupplevelse.","plugins.manage.verified_subtitle":"{{ pluginName }} \xE4r verifierad","plugins.manage.verified_title":"Verifierade plugins","plugins.node_update.continue":"Continue","plugins.placeholder_search_first":"Anv\xE4nd s\xF6kf\xE4ltet ovan f\xF6r att hitta din f\xF6rsta plugin","plugins.placeholder_search_plugin":"S\xF6k efter plugins att installera\u2026","plugins.settings.custom.homebridge-gsh.label_account_linked":"Konto l\xE4nkat","plugins.settings.custom.homebridge-gsh.label_link_account":"L\xE4nka konto","plugins.settings.custom.homebridge-gsh.label_unlink_account":"Ta bort l\xE4nkat konto","plugins.settings.custom.homebridge-gsh.message_about":"Med pluginet Homebridge Google Smart Home kan du kontrollera dina Homebridge-tillbeh\xF6r fr\xE5n en Google Home-aktiverad smarth\xF6gtalare eller Google Home-mobilappen.","plugins.settings.custom.homebridge-gsh.message_account_link_required":"F\xF6r att aktivera den h\xE4r funktionen m\xE5ste du logga in med ditt Google- eller GitHub-konto; se till att du anv\xE4nder samma konto n\xE4r du l\xE4gger till Homebridge-\xE5tg\xE4rden i mobilappen Google Home.","plugins.settings.custom.homebridge-gsh.message_homebridge_restart_required":"Homebridge kr\xE4ver omstart f\xF6r att \xE4ndringarna ska tr\xE4da i kraft.","plugins.settings.custom.homebridge-gsh.message_invalid_token":"Invalid account linking token in config.json","plugins.settings.deconz.dump_no_exist":"Homebridge deCONZ dump file does not exist yet.","plugins.settings.hue.dump_no_exist":"Homebridge Hue dump file does not exist yet.","plugins.settings.label_open_config_editor":"\xD6ppna konfigurationsredigerare","plugins.settings.message_consult_documentation":"Se plugin-dokumentationen f\xF6r instruktioner om hur du korrekt konfigurerar detta plugin.","plugins.settings.message_manual_config_required":"Detta plugin m\xE5ste konfigureras manuellt med Homebridge UI konfigurationsredigerare.","plugins.settings.plugin_config_saved":"Plugin-konfiguration sparad","plugins.settings.restart_required":"Starta om Homebridge f\xF6r att till\xE4mpa \xE4ndringarna.","plugins.settings.title_settings":"Inst\xE4llningar","plugins.status_disabled":"Inaktiverad","plugins.status_installed":"Installerad","plugins.toast_failed_to_load_plugin_schema":"Failed to load plugin config schema.","plugins.toast_failed_to_load_plugins":"Det gick inte att l\xE4sa in plugins","plugins.uninstall_bridge_error":"Failed to remove child bridge.","plugins.uninstall_remove_config_required":"Om du tar bort detta plugin permanent, se till att du tar bort alla konfigurationer f\xF6r detta plugin i config.json innan du startar om Homebridge.","plugins.uninstall_remove_confirmation":"\xC4r du s\xE4ker p\xE5 att du vill avinstallera {{ pluginName }}?","plugins.uninstall_remove_plugin_config":"Ta bort plugin-konfigurationen?","plugins.uninstall_unpair_child_bridge":"Unpair plugin child bridge?","plugins.uninstall_unpair_child_bridges":"Unpair {{ count }} plugin child bridges?","reset.accessory_reset":"Homebridge-tillbeh\xF6r \xE5terst\xE4llt","reset.action_is_irreversible":"Denna \xE5tg\xE4rd g\xE5r inte att \xE5ngra. L\xE4s noga innan du forts\xE4tter.","reset.bridges.desc":"If you are having trouble pairing Homebridge, an external accessory or a child bridge to HomeKit, you may need to unpair it from HomeKit to start again.","reset.bridges.empty":"You have no bridges to unpair from HomeKit.","reset.bridges.title":"Bridges","reset.bridges_all.desc":"Unpair all bridges from HomeKit. This includes the main Homebridge bridge, child bridges and bridges for external accessories.","reset.bridges_all.list_1":"This will unpair the Homebridge bridge, all child bridges and bridges for external accessories from HomeKit.","reset.bridges_all.list_2":"Note that your accessories will continue to show in HomeKit as no response, until the bridges are manually removed from HomeKit. You can do this in the Home app, by accessing Home Settings \u2192 Home Hubs & Bridges \u2192 {Bridge} \u2192 Remove Bridge from Home.","reset.bridges_all.list_3":"All your Homebridge to HomeKit accessories, scenes and automations will need to be reconfigured after the unpairing.","reset.bridges_all.list_4":"The pin for pairing your Homebridge bridge to HomeKit will be changed. You can see the new values in your Homebridge config after the unpairing.","reset.bridges_all.title":"Unpair All Bridges","reset.bridges_single.desc":"Unpair a single bridge from HomeKit. This may be a child bridge or a bridge for an external accessory like a camera or TV.","reset.bridges_single.list_1":"When unpairing a bridge, any accessories published by this bridge will be removed from the Homebridge cache.","reset.bridges_single.list_2":"The accessories will become stale in HomeKit (showing no response). To remove them, you will need to manually remove this bridge from HomeKit. You can do this in the Home app from the Home Settings section.","reset.bridges_single.list_3":"You can then attempt to pair the bridge again if required.","reset.bridges_single.title":"Unpair Single Bridge","reset.cached_accessory_removed":"Cachat tillbeh\xF6r har tagits bort.","reset.clear_cache_all.desc":"Remove all accessories from the cache.","reset.clear_cache_all.list_1":"When clicking on the remove button below, Homebridge will restart and all your existing accessories will be removed from Homebridge and HomeKit.","reset.clear_cache_all.list_2":"All associated HomeKit data will also be removed, this includes room associations, scenes and automations that this accessory uses.","reset.clear_cache_all.list_3":"After Homebridge restarts, your plugins will re-add any accessories as if the plugin was being installed for the first time.","reset.clear_cache_all.title":"Remove All Accessories","reset.clear_cache_bridge.desc":"Remove all accessories published by a bridge from the cache.","reset.clear_cache_bridge.empty":"You have no bridges from which to remove accessories.","reset.clear_cache_bridge.list_1":"This function can be used to reset a plugin's existing accessories in HomeKit. They will be removed from Homebridge/HomeKit and then re-added by the plugin as new accessories.","reset.clear_cache_bridge.list_2":"The child bridge's pairing details and status will remain the same.","reset.clear_cache_bridge.title":"Remove Bridge Accessories","reset.clear_cache_single.desc":"Remove a single accessory from the cache.","reset.clear_cache_single.list_1":"Some plugins don't clean up after themselves properly! If an accessory that you no longer have in Homebridge is still being displayed in HomeKit, you can remove it from the cache.","reset.clear_cache_single.list_2":"This function can be used to reset an existing accessory in HomeKit. It will be removed from Homebridge/HomeKit and then re-added by the plugin as a new accessory.","reset.clear_cache_single.list_3":"When removing an accessory from the cache, all its associated HomeKit data will be removed. This includes any associated scenes and automations that use this accessory.","reset.clear_cache_single.list_4":"Accessories can only be removed when Homebridge is not running. Homebridge will automatically restart when clicking on each of the remove buttons below. If you need to remove multiple accessories, please be patient and allow Homebridge to restart between each removal.","reset.clear_cache_single.title":"Remove Single Accessory","reset.delete_failed":"Det gick inte att ta bort tillbeh\xF6ret.","reset.delete_success":"Startar om Homebridge och rensar tillbeh\xF6rscache.","reset.error_message":"Tillbeh\xF6rscache kunde inte l\xE4sas in. Du har eventuellt inga cachade tillbeh\xF6r.","reset.failed_to_reset":"Det gick inte att \xE5terst\xE4lla Homebridge. Se loggar.","reset.force_restart_hb_help_text":"Anv\xE4nd den h\xE4r \xE5tg\xE4rden f\xF6r att tvinga hb-service tj\xE4nsten att g\xF6ra en fullst\xE4ndig omstart.","reset.remove_cached_accessories_single_empty":"Du har inga cachade tillbeh\xF6r att ta bort.","reset.removing_cached_accessory_please_wait":"Tar bort tillbeh\xF6ret fr\xE5n cache, v\xE4nta\u2026","restart.child_bridge_list":"Please restart these child bridges for the changes to apply:","restart.child_bridges":"Starta om underbryggorna f\xF6r denna plugin f\xF6r att \xE4ndringarna ska tr\xE4da i kraft.","restart.homebridge":"Starta om Homebridge f\xF6r att \xE4ndringarna ska tr\xE4da i kraft.","restart.label_restart_command_executed":"Starta om kommandot k\xF6rs","restart.please_wait_while_server_restarts":"V\xE4nta, denna sida omdirigeras automatiskt n\xE4r servern \xE4r online igen.","restart.server_is_taking_long_time_to_restart":"Omstart av servern tar l\xE5ng tid. Du kan beh\xF6va starta Homebridge-tj\xE4nsten manuellt.","restart.service_ready":"Homebridge redo","restart.title_restart":"Starta om Homebridge","restart.toast_server_restart_error":"Ett fel intr\xE4ffade n\xE4r omstartskommandot skickades till servern","restart.toast_server_restart_timeout":"Servern tar l\xE5ng tid att komma tillbaka online","restart.toast_server_restarted":"Servern har startats om","restart.ui_online":"HB Service & UI redo","rpi.throttled.currently_message":"Denna Raspberry Pi rapporterar att det f\xF6r n\xE4rvarande \xE4r undersp\xE4nning; kontrollera att den \xE4r ansluten till en l\xE4mplig str\xF6mk\xE4lla. Undersp\xE4nning kan resultera i systeminstabilitet och skada p\xE5 SD-kortet.","rpi.throttled.previously_message":"Denna Raspberry Pi har rapporterat en undersp\xE4nningsh\xE4ndelse sedan den startades om senast; kontrollera att den \xE4r ansluten till en l\xE4mplig str\xF6mk\xE4lla.","rpi.throttled.undervoltage_title":"Undersp\xE4nning","settings.cache.desc":"Homebridge maintains accessories in cache so they aren't removed and re-added to HomeKit each time Homebridge restarts. Sometimes this cache can become out of sync with the actual accessories in Homebridge.","settings.cache.title":"Accessories","settings.changes.saved":"Your changes have been saved and require a restart to take effect.","settings.datetime.incorrect":"The date and time on your Homebridge server seem to be incorrect. This may cause unexpected issues. Click here for more information.","settings.display.blue":"Blue","settings.display.bluegrey":"Blue Grey","settings.display.brown":"Brown","settings.display.cyan":"Cyan","settings.display.dark":"Dark","settings.display.deep_purple":"Deep Purple","settings.display.green":"Green","settings.display.grey":"Grey","settings.display.indigo":"Indigo","settings.display.lang":"Spr\xE5k","settings.display.light":"Light","settings.display.lighting_mode":"Lighting Mode","settings.display.login_wallpaper":"Login Wallpaper","settings.display.login_wallpaper_desc":"A custom login wallpaper can be set by adding a <code>ui-wallpaper.jpg</code> file to your Homebridge storage directory, or by providing a full path to a local image file here.","settings.display.orange":"Orange","settings.display.pink":"Pink","settings.display.purple":"Purple","settings.display.red":"Red","settings.display.teal":"Teal","settings.display.temp_units":"Temperature Units","settings.display.temp_units.c":"Celsius (\xB0C)","settings.display.temp_units.f":"Fahrenheit (\xB0F)","settings.display.theme":"Tema","settings.general.title_display":"Display","settings.general.title_general":"Allm\xE4nt","settings.mdns_advertiser":"mDNS-annons\xF6r","settings.mdns_advertiser_exp":"experimental","settings.mdns_advertiser_help":"Om du har problem med att ansluta till Homebridge, prova att anv\xE4nda n\xE5gon av de alternativa mDNS-annons\xF6rerna.","settings.mdns_advertiser_not_connected":"Ej ansluten","settings.mdns_advertiser_rec":"recommended","settings.network.label_interface_name":"Gr\xE4nssnittsnamn","settings.network.label_ip_address":"IP-adress","settings.network.message_network_interface":"Om inga n\xE4tverksgr\xE4nssnitt v\xE4ljs kommer Homebridge att f\xF6rs\xF6ka avg\xF6ra vilka gr\xE4nssnitt som ska annonseras automatiskt.","settings.network.port_hb":"Homebridge Port","settings.network.port_hb_desc":"The port number to run the Homebridge bridge on. This must be between 1025 and 65533, and should not be the same as the Homebridge UI port.","settings.network.port_ui":"UI Port","settings.network.port_ui_desc":"The port number to run the Homebridge UI on.","settings.network.title_network":"N\xE4tverk","settings.network.title_network_interfaces":"N\xE4tverksgr\xE4nssnitt","settings.service.debug_tooltip":"Vissa plugins kr\xE4ver att du s\xE4tter milj\xF6variabeln DEBUG f\xF6r att aktivera debug-loggning.","settings.service.node_tooltip":"Node.js runtime-alternativ f\xF6r den h\xE4r processen. Denna b\xF6r vara tom om du inte vet vad du g\xF6r.","settings.startup.debug":"Homebridge Debug-l\xE4ge","settings.startup.debug_desc_v1":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge as well as all child bridges. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.debug_desc_v2":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge. The setting for child bridges can be found in the child bridge configuration from the plugins page. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.insecure":"Homebridge 'Insecure'-l\xE4ge","settings.startup.insecure_desc":"To control your accessories via the Homebridge UI you must be running Homebridge in insecure mode.","settings.startup.keep_accessories":"Beh\xE5ll tillbeh\xF6r till avinstallerade plugins","settings.startup.keep_accessories_desc":"If enabled, accessories of platform plugins will remain in the cache even after the plugin is uninstalled. This can be useful if you plan to reinstall the plugin later.","settings.title_startup_options":"Startalternativ","settings.unpair_bridge.load_error":"Paired bridges could not be loaded.","settings.unpair_bridge.unpair_error":"Failed to unpair bridge.","setup.button_get_started":"Kom ig\xE5ng","setup.create_account":"Skapa konto","setup.create_account_reason":"L\xF6senordsautentisering till ditt Homebridge admin-webbgr\xE4nssnitt m\xE5ste konfigureras. \xC4ven om Homebridge endast kan n\xE5s i ditt lokala n\xE4tverk \xE4r det fortfarande viktigt att skydda den fr\xE5n obeh\xF6rig \xE5tkomst.","setup.open_dashboard":"\xD6ppna instrumentpanel","setup.welcome_to_homebridge":"V\xE4lkommen till Homebridge",setup_wizard_message_complete_message:"Installationsprocessen \xE4r klar och du kan nu b\xF6rja anv\xE4nda Homebridge.",setup_wizard_message_complete_title:"Grattis!",setup_wizard_message_restore:"Restore From Backup","status.code_scan":"Skanna f\xF6r att l\xE4gga till i HomeKit","status.cpu.load":"Anv\xE4nds","status.cpu.temp":"Temp","status.cpu.title_cpu":"CPU","status.credits.title":"Credits","status.homebridge.checking":"S\xF6ker efter uppdateringar\u2026","status.homebridge.up_to_date":"Aktuell","status.memory.label_available":"Ledigt","status.memory.label_total":"Totalt","status.memory.title_memory":"Minne","status.network.received_per_second":"Mottaget","status.network.sent_per_second":"Skickat","status.network.title_network":"N\xE4tverksaktivitet","status.plugin_out_of_date":"Plugin inaktuell","status.plugins_out_of_date":"Plugins inaktuella","status.services.label_not_running":"Stoppad","status.services.label_running":"K\xF6r","status.services.updates":"Update Centre","status.uptime.title_uptime":"Upptid","status.widget.accessories.choose_accessories":"V\xE4lj tillbeh\xF6r som ska visas i den h\xE4r widgeten fr\xE5n fliken Tillbeh\xF6r.","status.widget.add.label_pairing_code":"Parningskod","status.widget.bridge.restart_error":"Failed to restart child bridge.","status.widget.clock":"Klocka","status.widget.clock_dateformat":"Datumformat","status.widget.clock_timeformat":"Tidsformat","status.widget.font_size":"Textstorlek","status.widget.font_weight":"Teckensnitt vikt","status.widget.hide_on_mobile":"D\xF6lj i kompakt vy (mobilsk\xE4rmar)","status.widget.homebridge_logs":"Homebridge-logg","status.widget.info":"Systeminformation","status.widget.info.config_path":"Konfig s\xF6kv\xE4g","status.widget.info.disabled":"Inaktiverad","status.widget.info.docker":"Docker","status.widget.info.glibc_message":"Detta meddelande tyder p\xE5 att ditt operativsystem inte st\xF6djer nyare versioner av Node.js. F\xF6r att l\xF6sa detta och kunna installera uppdaterade versioner av Node.js i framtiden m\xE5ste du uppdatera ditt operativsystem till en nyare version.","status.widget.info.glibc_title":"OS-uppdatering","status.widget.info.hostname":"V\xE4rdnamn","status.widget.info.ipv4":"IPv4","status.widget.info.ipv6":"IPv6","status.widget.info.no":"Nej","status.widget.info.node_unsupp":"Unsupported","status.widget.info.node_unsupp_message":"Du k\xF6r en version av Node.js som inte officiellt st\xF6ds av Homebridge. Du b\xF6r \xF6verv\xE4ga att byta till en version som st\xF6ds.","status.widget.info.node_unsupp_title":"Node-version st\xF6ds ej","status.widget.info.node_update_message":"Homebridge kr\xE4ver att Node.js \xE4r installerat p\xE5 ditt system f\xF6r att kunna k\xF6ras. D\xE5 och d\xE5 m\xE5ste du uppdatera Node.js runtime f\xF6r att m\xF6jligg\xF6ra st\xF6d f\xF6r nya funktioner. Homebridge (och verifierade plugins) st\xF6djer alla aktuella Active and Maintenance LTS-versioner av Node.js.","status.widget.info.node_update_title":"Node-uppdatering","status.widget.info.nodejs_path":"Node.js s\xF6kv\xE4g","status.widget.info.nodejs_version":"Node.js version","status.widget.info.os":"OS","status.widget.info.plugin_path":"Plugin s\xF6kv\xE4g","status.widget.info.service_mode":"Servicel\xE4ge","status.widget.info.service_user":"Anv\xE4ndare","status.widget.info.servicemode_message":"Standalone-l\xE4ge rekommenderas inte l\xE4ngre. Installation av Homebridge och Homebridge UI med hb-service har samma f\xF6rdelar som standalone-l\xE4ge, men \xE4r mycket l\xE4ttare att konfigurera och underh\xE5lla.","status.widget.info.servicemode_title":"Servicel\xE4ge","status.widget.info.storage_path":"Lagring s\xF6kv\xE4g","status.widget.info.synology_package":"Synology-paket","status.widget.info.timezone":"Tidszon","status.widget.info.yes":"Ja","status.widget.network.history_items":"Historikposter","status.widget.network.items":"poster","status.widget.network.network_interface":"N\xE4tverksgr\xE4nssnitt","status.widget.network.none_selected":"None selected in settings - using default.","status.widget.network.refresh_interval":"Uppdateringsintervall","status.widget.network.refresh_note":"Uppdatera sidan f\xF6r att \xE4ndringarna ska tr\xE4da i kraft.","status.widget.network.seconds":"sekunder","status.widget.qr_paired":"Ansluten","status.widget.qr_unpaired":"Ej ansluten","status.widget.show_hide":"Show/Hide Widgets","status.widget.title_manage_widget":"Hantera widget","status.widget.uptime.label_process":"Process","status.widget.uptime.label_server":"Server","status.widget.weather.label_config_required_help":"V\xE4lj din stad i widget-inst\xE4llningarna.","status.widget.weather.label_search_for_your_city":"S\xF6k efter din stad:","status.widget.weather.title_weather":"V\xE4der","support.dev.api":"Homebridge API","support.dev.api_hap":"HAP-NodeJS API","support.dev.api_hap_sub":"HAP-NodeJS is an implementation of the HomeKit Accessory Server as specified in the HomeKit Accessory Protocol (HAP), which is defined by Apple as part of the HomeKit Framework.","support.dev.api_sub":"Homebridge is a lightweight Node.js server you can run on your home network to emulate the HomeKit Accessory Protocol (HAP).","support.dev.item_swagger":"Swagger Docs","support.dev.item_swagger_sub":"The Homebridge REST API allows you to interact with your Homebridge server using HTTP requests.","support.dev.template":"Plugin Template Repo","support.dev.template_sub":"A template Homebridge plugin that can be used as a base to help you get started developing your own plugin.","support.dev.title":"Utvecklare","support.dev.verified":"Verifierad av Homebridge","support.dev.verified_sub":"The Verified By Homebridge program allows plugin developers to get their plugins reviewed and endorsed by the Homebridge project team.","support.links.discord":"Discord Server","support.links.discord_sub":"Join the Homebridge Discord chat server to chat with other users and developers.","support.links.documentation":"Dokumentation","support.links.documentation_sub":"The Homebridge documentation provides a wealth of information on how to get started with Homebridge and common issue resolutions.","support.links.issue":"Rapportera ett problem","support.links.issue_sub":"If you are experiencing an issue with Homebridge, please open a new issue on GitHub. This should not be used for issues with specific plugins.","support.links.reddit":"Reddit Community","support.links.reddit_sub":"The Homebridge subreddit is a great place to share your Homebridge setup and ask for help.","support.links.title":"Nyttiga l\xE4nkar","support.title":"Support","toast.no_auth":"Only administrators may access the requested page.","toast.title_error":"Fel","toast.title_success":"Lyckad","toast.title_warning":"Varning","users.button_add_new_user":"L\xE4gg till ny anv\xE4ndare","users.button_add_user":"L\xE4gg till anv\xE4ndare","users.label_admin_user":"Adminanv\xE4ndare?","users.label_confirm_password":"Bekr\xE4fta l\xF6senord","users.label_full_name":"Fullst\xE4ndigt namn","users.label_new_password":"Nytt l\xF6senord","users.label_password":"L\xF6senord","users.label_username":"Anv\xE4ndarnamn","users.setup_2fa":"Inst\xE4llning 2FA","users.setup_2fa_activate_error":"An error occurred activating 2FA","users.setup_2fa_cannot_setup_2fa":"Det g\xE5r inte att st\xE4lla in 2FA","users.setup_2fa_disable":"Inaktivera 2FA","users.setup_2fa_disable_current_password":"Ange ditt nuvarande l\xF6senord f\xF6r att inaktivera tv\xE5faktorautentisering:","users.setup_2fa_disable_success":"Tv\xE5faktorsautentisering har inaktiverats.","users.setup_2fa_enable":"Aktivera 2FA","users.setup_2fa_enable_error":"An error occurred setting up 2FA","users.setup_2fa_enabled_success":"Tv\xE5faktorsautentisering har aktiverats.","users.setup_2fa_enter_code":"Ange koden fr\xE5n din autentiseringsapp:","users.setup_2fa_scan_qr_code":"Skanna QR-koden nedan med din autentiseringsapp:","users.setup_2fa_server_time_out":"Din servers klocka g\xE5r fel med {{ timeDiffError }} ms. Maximalt till\xE5tet \xE4r +/- 5000 ms.","users.setup_2fa_warning":"Tv\xE5faktorsautentisering kr\xE4ver att din Homebridge-server har ett mycket exakt datum och tid f\xF6r att kunna logga in. Om din server inte har f\xF6rm\xE5gan att h\xE5lla tiden korrekt b\xF6r du inte aktivera 2FA, annars riskerar du att bli utel\xE5st fr\xE5n Homebridge UI.","users.title_add_user":"L\xE4gg till anv\xE4ndare","users.title_edit_user":"Redigera anv\xE4ndare","users.title_users":"Anv\xE4ndare","users.toast_added_new_user":"Lagt till ny anv\xE4ndare","users.toast_failed_to_add_user":"Det gick inte att l\xE4gga till anv\xE4ndare","users.toast_failed_to_delete_user":"Det gick inte att radera anv\xE4ndaren","users.toast_updated_user":"Anv\xE4ndare uppdaterad","users.toast_user_deleted":"Anv\xE4ndaren raderad"}});var Ls=y((Wd,ja)=>{ja.exports={"accessories.button_add_room":"\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E2B\u0E49\u0E2D\u0E07","accessories.button_hidden_hide":"\u0E0B\u0E48\u0E2D\u0E19 \u0E17\u0E35\u0E48\u0E0B\u0E48\u0E2D\u0E19","accessories.button_hidden_show":"\u0E41\u0E2A\u0E14\u0E07 \u0E17\u0E35\u0E48\u0E0B\u0E48\u0E2D\u0E19","accessories.control.auto":"\u0E2D\u0E31\u0E15\u0E42\u0E19\u0E21\u0E31\u0E15\u0E34","accessories.control.away":"\u0E2B\u0E48\u0E32\u0E07\u0E2D\u0E2D\u0E01\u0E44\u0E1B","accessories.control.battery_charging":"\u0E01\u0E33\u0E25\u0E31\u0E07\u0E0A\u0E32\u0E23\u0E4C\u0E08","accessories.control.battery_notchargeable":"\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E0A\u0E32\u0E23\u0E4C\u0E08\u0E44\u0E14\u0E49","accessories.control.battery_notcharging":"\u0E44\u0E21\u0E48\u0E0A\u0E32\u0E23\u0E4C\u0E08","accessories.control.brightness":"\u0E04\u0E27\u0E32\u0E21\u0E2A\u0E27\u0E48\u0E32\u0E07","accessories.control.closed":"\u0E1B\u0E34\u0E14\u0E41\u0E25\u0E49\u0E27","accessories.control.closing":"\u0E01\u0E33\u0E25\u0E31\u0E07\u0E1B\u0E34\u0E14","accessories.control.cool":"\u0E04\u0E27\u0E32\u0E21\u0E40\u0E22\u0E47\u0E19","accessories.control.default_room":"\u0E2B\u0E49\u0E2D\u0E07\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19","accessories.control.default_running_time":"\u0E40\u0E27\u0E25\u0E32\u0E17\u0E33\u0E07\u0E32\u0E19\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19","accessories.control.dehumidifying":"\u0E01\u0E33\u0E25\u0E31\u0E07\u0E25\u0E14\u0E04\u0E27\u0E32\u0E21\u0E0A\u0E37\u0E49\u0E19","accessories.control.detected":"Detected","accessories.control.drag_here":"\u0E25\u0E32\u0E01\u0E21\u0E32\u0E17\u0E35\u0E48\u0E19\u0E35\u0E48","accessories.control.fan":"\u0E1E\u0E31\u0E14\u0E25\u0E21","accessories.control.heat":"\u0E04\u0E27\u0E32\u0E21\u0E23\u0E49\u0E2D\u0E19","accessories.control.home":"\u0E1A\u0E49\u0E32\u0E19","accessories.control.humidifying":"\u0E01\u0E33\u0E25\u0E31\u0E07\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E04\u0E27\u0E32\u0E21\u0E0A\u0E37\u0E49\u0E19","accessories.control.jammed":"\u0E15\u0E34\u0E14\u0E02\u0E31\u0E14\u0E2D\u0E22\u0E39\u0E48","accessories.control.light":"\u0E41\u0E2A\u0E07\u0E2A\u0E27\u0E48\u0E32\u0E07","accessories.control.locked":"\u0E25\u0E47\u0E2D\u0E01\u0E41\u0E25\u0E49\u0E27","accessories.control.mute":"\u0E1B\u0E34\u0E14\u0E40\u0E2A\u0E35\u0E22\u0E07","accessories.control.night":"\u0E01\u0E25\u0E32\u0E07\u0E04\u0E37\u0E19","accessories.control.not_detected":"Not Detected","accessories.control.not_mute":"\u0E40\u0E1B\u0E34\u0E14","accessories.control.off":"\u0E1B\u0E34\u0E14","accessories.control.on":"\u0E40\u0E1B\u0E34\u0E14","accessories.control.open":"\u0E40\u0E1B\u0E34\u0E14","accessories.control.opening":"\u0E01\u0E33\u0E25\u0E31\u0E07\u0E40\u0E1B\u0E34\u0E14","accessories.control.rotation_speed":"\u0E04\u0E27\u0E32\u0E21\u0E40\u0E23\u0E47\u0E27\u0E43\u0E19\u0E01\u0E32\u0E23\u0E2B\u0E21\u0E38\u0E19","accessories.control.running":"\u0E01\u0E33\u0E25\u0E31\u0E07\u0E40\u0E14\u0E34\u0E19\u0E40\u0E04\u0E23\u0E37\u0E48\u0E2D\u0E07","accessories.control.speaker_volume":"\u0E23\u0E30\u0E14\u0E31\u0E1A\u0E40\u0E2A\u0E35\u0E22\u0E07","accessories.control.stopped":"\u0E2B\u0E22\u0E38\u0E14\u0E41\u0E25\u0E49\u0E27","accessories.control.target":"\u0E40\u0E1B\u0E49\u0E32\u0E2B\u0E21\u0E32\u0E22","accessories.control.target_humidity":"\u0E04\u0E27\u0E32\u0E21\u0E0A\u0E37\u0E49\u0E19\u0E40\u0E1B\u0E49\u0E32\u0E2B\u0E21\u0E32\u0E22","accessories.control.target_temperature":"\u0E2D\u0E38\u0E13\u0E2B\u0E20\u0E39\u0E21\u0E34\u0E40\u0E1B\u0E49\u0E32\u0E2B\u0E21\u0E32\u0E22","accessories.control.triggered":"\u0E17\u0E23\u0E34\u0E01\u0E40\u0E01\u0E2D\u0E23\u0E4C\u0E41\u0E25\u0E49\u0E27","accessories.control.unknown":"\u0E44\u0E21\u0E48\u0E17\u0E23\u0E32\u0E1A","accessories.control.unlocked":"\u0E1B\u0E25\u0E14\u0E25\u0E4A\u0E2D\u0E04\u0E41\u0E25\u0E49\u0E27","accessories.control_disabled":"\u0E01\u0E32\u0E23\u0E04\u0E27\u0E1A\u0E04\u0E38\u0E21\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21 Homebridge \u0E16\u0E39\u0E01\u0E1B\u0E34\u0E14\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19","accessories.hide_this_accessory":"\u0E0B\u0E48\u0E2D\u0E19\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E19\u0E35\u0E49","accessories.message_for_more_information":"\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21.","accessories.message_must_use_insecure_mode":"\u0E43\u0E19\u0E01\u0E32\u0E23\u0E04\u0E27\u0E1A\u0E04\u0E38\u0E21\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E43\u0E0A\u0E49 Homebridge \u0E42\u0E2B\u0E21\u0E14 \u0E44\u0E21\u0E48\u0E1B\u0E25\u0E2D\u0E14\u0E20\u0E31\u0E22","accessories.message_please_see":"\u0E42\u0E1B\u0E23\u0E14\u0E21\u0E2D\u0E07","accessories.name":"\u0E0A\u0E37\u0E48\u0E2D","accessories.room_name":"\u0E0A\u0E37\u0E48\u0E2D\u0E2B\u0E49\u0E2D\u0E07","accessories.rooms_not_appear_in_homekit":"\u0E2B\u0E49\u0E2D\u0E07\u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E17\u0E35\u0E48\u0E19\u0E35\u0E48\u0E08\u0E30\u0E44\u0E21\u0E48\u0E1B\u0E23\u0E32\u0E01\u0E0F\u0E43\u0E19 HomeKit \u0E41\u0E15\u0E48\u0E21\u0E35\u0E44\u0E27\u0E49\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E08\u0E31\u0E14\u0E23\u0E30\u0E40\u0E1A\u0E35\u0E22\u0E1A\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E43\u0E19 Homebridge UI \u0E40\u0E17\u0E48\u0E32\u0E19\u0E31\u0E49\u0E19","accessories.settings_link":"\u0E04\u0E38\u0E13\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E40\u0E02\u0E49\u0E32\u0E16\u0E36\u0E07\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32 Homebridge \u0E44\u0E14\u0E49\u0E15\u0E25\u0E2D\u0E14\u0E40\u0E27\u0E25\u0E32\u0E08\u0E32\u0E01\u0E40\u0E21\u0E19\u0E39\u0E2B\u0E25\u0E31\u0E01\u0E2B\u0E23\u0E37\u0E2D\u0E04\u0E25\u0E34\u0E01\u0E17\u0E35\u0E48\u0E1F\u0E31\u0E19\u0E40\u0E1F\u0E37\u0E2D\u0E07","accessories.show_on_dashboard":"\u0E41\u0E2A\u0E14\u0E07\u0E43\u0E19\u0E27\u0E34\u0E14\u0E40\u0E08\u0E47\u0E15\u0E41\u0E14\u0E0A\u0E1A\u0E2D\u0E23\u0E4C\u0E14","accessories.title_accessories":"\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21","backup.backup_delete_failed":"Backup deletion failed. See logs for details.","backup.backup_download_failed":"\u0E01\u0E32\u0E23\u0E14\u0E32\u0E27\u0E19\u0E4C\u0E42\u0E2B\u0E25\u0E14\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E2A\u0E33\u0E23\u0E2D\u0E07\u0E25\u0E49\u0E21\u0E40\u0E2B\u0E25\u0E27","backup.backup_exceeds_max_size":"Backup ({{ backupSize }}) exceeds maximum restore file size of {{ maxBackupSizeText }}","backup.backup_help_one":"\u0E14\u0E32\u0E27\u0E19\u0E4C\u0E42\u0E2B\u0E25\u0E14\u0E44\u0E1F\u0E25\u0E4C\u0E40\u0E01\u0E47\u0E1A\u0E16\u0E32\u0E27\u0E23\u0E2A\u0E33\u0E23\u0E2D\u0E07\u0E02\u0E2D\u0E07\u0E2A\u0E20\u0E32\u0E1E\u0E41\u0E27\u0E14\u0E25\u0E49\u0E2D\u0E21 Homebridge \u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13 \u0E01\u0E32\u0E23\u0E14\u0E33\u0E40\u0E19\u0E34\u0E19\u0E01\u0E32\u0E23\u0E19\u0E35\u0E49\u0E08\u0E30\u0E2A\u0E33\u0E23\u0E2D\u0E07\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E19\u0E37\u0E49\u0E2D\u0E2B\u0E32\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E02\u0E2D\u0E07\u0E44\u0E14\u0E40\u0E23\u0E47\u0E01\u0E17\u0E2D\u0E23\u0E35\u0E1E\u0E37\u0E49\u0E19\u0E17\u0E35\u0E48\u0E40\u0E01\u0E47\u0E1A\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25 Homebridge \u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E0B\u0E36\u0E48\u0E07\u0E04\u0E38\u0E13\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E01\u0E39\u0E49\u0E04\u0E37\u0E19\u0E44\u0E14\u0E49\u0E43\u0E19\u0E20\u0E32\u0E22\u0E2B\u0E25\u0E31\u0E07\u0E1A\u0E19\u0E41\u0E1E\u0E25\u0E15\u0E1F\u0E2D\u0E23\u0E4C\u0E21\u0E43\u0E14 \u0E46 \u0E17\u0E35\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E40\u0E23\u0E35\u0E22\u0E01\u0E43\u0E0A\u0E49 Homebridge UI \u0E44\u0E14\u0E49","backup.backup_help_two":"\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E42\u0E2E\u0E2A\u0E15\u0E4C\u0E1A\u0E19 npm \u0E2B\u0E23\u0E37\u0E2D\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E17\u0E35\u0E48\u0E15\u0E34\u0E14\u0E15\u0E31\u0E49\u0E07\u0E42\u0E14\u0E22\u0E15\u0E23\u0E07\u0E08\u0E32\u0E01 GitHub \u0E08\u0E30\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E2A\u0E33\u0E23\u0E2D\u0E07\u0E2B\u0E23\u0E37\u0E2D\u0E01\u0E39\u0E49\u0E04\u0E37\u0E19","backup.backup_restored":"\u0E01\u0E39\u0E49\u0E04\u0E37\u0E19\u0E17\u0E35\u0E48\u0E40\u0E01\u0E47\u0E1A\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E2A\u0E33\u0E23\u0E2D\u0E07\u0E41\u0E25\u0E49\u0E27","backup.backup_warning":"\u0E04\u0E25\u0E31\u0E07\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E2A\u0E33\u0E23\u0E2D\u0E07\u0E21\u0E35\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E17\u0E35\u0E48\u0E25\u0E30\u0E40\u0E2D\u0E35\u0E22\u0E14\u0E2D\u0E48\u0E2D\u0E19\u0E41\u0E25\u0E30\u0E44\u0E21\u0E48\u0E04\u0E27\u0E23\u0E41\u0E0A\u0E23\u0E4C\u0E01\u0E31\u0E1A\u0E1C\u0E39\u0E49\u0E2D\u0E37\u0E48\u0E19","backup.button_restore_backup":"\u0E04\u0E37\u0E19\u0E04\u0E48\u0E32\u0E01\u0E32\u0E23\u0E2A\u0E33\u0E23\u0E2D\u0E07\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25","backup.label_choose_backup_file_to_restore":"\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E44\u0E1F\u0E25\u0E4C\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E2A\u0E33\u0E23\u0E2D\u0E07\u0E17\u0E35\u0E48\u0E08\u0E30\u0E01\u0E39\u0E49\u0E04\u0E37\u0E19\u2026","backup.label_uploading":"\u0E01\u0E33\u0E25\u0E31\u0E07\u0E2D\u0E31\u0E1B\u0E42\u0E2B\u0E25\u0E14\u2026","backup.load_error":"\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E42\u0E2B\u0E25\u0E14\u0E01\u0E32\u0E23\u0E2A\u0E33\u0E23\u0E2D\u0E07\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E01\u0E32\u0E23\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E04\u0E48\u0E32\u0E44\u0E14\u0E49","backup.now":"\u0E15\u0E2D\u0E19\u0E19\u0E35\u0E49","backup.restore_failed":"\u0E01\u0E39\u0E49\u0E04\u0E37\u0E19\u0E44\u0E21\u0E48\u0E2A\u0E33\u0E40\u0E23\u0E47\u0E08","backup.restore_help_one":"\u0E01\u0E39\u0E49\u0E04\u0E37\u0E19\u0E17\u0E35\u0E48\u0E40\u0E01\u0E47\u0E1A\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E2A\u0E33\u0E23\u0E2D\u0E07\u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E17\u0E33\u0E44\u0E27\u0E49\u0E01\u0E48\u0E2D\u0E19\u0E2B\u0E19\u0E49\u0E32\u0E19\u0E35\u0E49\u0E42\u0E14\u0E22\u0E43\u0E0A\u0E49 Homebridge UI \u0E01\u0E32\u0E23\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E04\u0E48\u0E32 Homebridge \u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E17\u0E35\u0E48\u0E41\u0E04\u0E0A\u0E01\u0E32\u0E23\u0E08\u0E31\u0E1A\u0E04\u0E39\u0E48 HomeKit \u0E41\u0E25\u0E30\u0E1A\u0E31\u0E0D\u0E0A\u0E35\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49 Homebridge UI \u0E08\u0E30\u0E16\u0E39\u0E01\u0E01\u0E39\u0E49\u0E04\u0E37\u0E19 \u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19 Homebridge \u0E43\u0E14 \u0E46 \u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E15\u0E34\u0E14\u0E15\u0E31\u0E49\u0E07\u0E44\u0E27\u0E49\u0E08\u0E30\u0E16\u0E39\u0E01\u0E14\u0E32\u0E27\u0E19\u0E4C\u0E42\u0E2B\u0E25\u0E14\u0E08\u0E32\u0E01\u0E23\u0E35\u0E08\u0E34\u0E2A\u0E17\u0E23\u0E35 npm","backup.restore_help_two":"\u0E04\u0E38\u0E13\u0E08\u0E30\u0E15\u0E49\u0E2D\u0E07\u0E40\u0E02\u0E49\u0E32\u0E2A\u0E39\u0E48\u0E23\u0E30\u0E1A\u0E1A Homebridge UI \u0E2B\u0E25\u0E31\u0E07\u0E08\u0E32\u0E01\u0E17\u0E33\u0E01\u0E32\u0E23\u0E01\u0E39\u0E49\u0E04\u0E37\u0E19\u0E42\u0E14\u0E22\u0E43\u0E0A\u0E49\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E1B\u0E23\u0E30\u0E08\u0E33\u0E15\u0E31\u0E27\u0E08\u0E32\u0E01\u0E2D\u0E34\u0E19\u0E2A\u0E41\u0E15\u0E19\u0E0B\u0E4C\u0E17\u0E35\u0E48\u0E01\u0E39\u0E49\u0E04\u0E37\u0E19","backup.restore_max_size":"\u0E04\u0E38\u0E13\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E01\u0E39\u0E49\u0E04\u0E37\u0E19\u0E44\u0E1F\u0E25\u0E4C\u0E2A\u0E33\u0E23\u0E2D\u0E07\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E17\u0E35\u0E48\u0E21\u0E35\u0E02\u0E19\u0E32\u0E14\u0E2A\u0E39\u0E07\u0E2A\u0E38\u0E14 {{ maxBackupSizeText }} \u0E44\u0E14\u0E49","backup.restore_warning":"\u0E01\u0E32\u0E23\u0E01\u0E39\u0E49\u0E04\u0E37\u0E19\u0E08\u0E32\u0E01\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E2A\u0E33\u0E23\u0E2D\u0E07\u0E08\u0E30\u0E40\u0E02\u0E35\u0E22\u0E19\u0E17\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E04\u0E48\u0E32 Homebridge \u0E1B\u0E31\u0E08\u0E08\u0E38\u0E1A\u0E31\u0E19\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E22\u0E49\u0E2D\u0E19\u0E01\u0E25\u0E31\u0E1A\u0E44\u0E14\u0E49","backup.scheduled_backup_time":"\u0E01\u0E32\u0E23\u0E2A\u0E33\u0E23\u0E2D\u0E07\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E02\u0E2D\u0E07\u0E2D\u0E34\u0E19\u0E2A\u0E41\u0E15\u0E19\u0E0B\u0E4C Homebridge \u0E08\u0E30\u0E16\u0E39\u0E01\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E02\u0E36\u0E49\u0E19\u0E42\u0E14\u0E22\u0E2D\u0E31\u0E15\u0E42\u0E19\u0E21\u0E31\u0E15\u0E34\u0E17\u0E38\u0E01\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48 {{ backupTime }} \u0E41\u0E25\u0E30\u0E40\u0E01\u0E47\u0E1A\u0E44\u0E27\u0E49\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A {{ dayCount }} \u0E27\u0E31\u0E19","backup.title_backup":"\u0E01\u0E32\u0E23\u0E2A\u0E33\u0E23\u0E2D\u0E07\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25","child_bridge.about":"Homebridge \u0E0A\u0E48\u0E27\u0E22\u0E43\u0E2B\u0E49\u0E04\u0E38\u0E13\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E40\u0E23\u0E35\u0E22\u0E01\u0E43\u0E0A\u0E49\u0E41\u0E1E\u0E25\u0E15\u0E1F\u0E2D\u0E23\u0E4C\u0E21\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E2B\u0E23\u0E37\u0E2D\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E41\u0E22\u0E01\u0E08\u0E32\u0E01\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22\u0E2A\u0E34\u0E48\u0E07\u0E19\u0E35\u0E49\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E1B\u0E23\u0E31\u0E1A\u0E1B\u0E23\u0E38\u0E07\u0E01\u0E32\u0E23\u0E15\u0E2D\u0E1A\u0E2A\u0E19\u0E2D\u0E07\u0E17\u0E31\u0E48\u0E27\u0E44\u0E1B\u0E41\u0E25\u0E30\u0E04\u0E27\u0E32\u0E21\u0E19\u0E48\u0E32\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E16\u0E37\u0E2D\u0E02\u0E2D\u0E07 Homebridge","child_bridge.bridge_connect":"\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E44\u0E1B\u0E17\u0E35\u0E48 HomeKit","child_bridge.bridge_settings":"\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32 Bridge","child_bridge.bridges":"HomeKit Bridges","child_bridge.bridges_paired":"\u0E41\u0E1E\u0E25\u0E15\u0E1F\u0E2D\u0E23\u0E4C\u0E21\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22\u0E2B\u0E23\u0E37\u0E2D\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E41\u0E15\u0E48\u0E25\u0E30\u0E15\u0E31\u0E27\u0E08\u0E30\u0E15\u0E49\u0E2D\u0E07\u0E08\u0E31\u0E1A\u0E04\u0E39\u0E48\u0E01\u0E31\u0E1A HomeKit \u0E41\u0E22\u0E01\u0E01\u0E31\u0E19.","child_bridge.config.debug":"Debug Mode","child_bridge.config.description":"\u0E1F\u0E34\u0E25\u0E14\u0E4C\u0E40\u0E2B\u0E25\u0E48\u0E32\u0E19\u0E35\u0E49\u0E44\u0E21\u0E48\u0E08\u0E33\u0E40\u0E1B\u0E47\u0E19 \u0E41\u0E15\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E43\u0E0A\u0E49\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E41\u0E17\u0E19\u0E17\u0E35\u0E48\u0E01\u0E32\u0E23\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E04\u0E48\u0E32 HomeKit \u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E19\u0E35\u0E49\u0E44\u0E14\u0E49","child_bridge.config.firmware":"\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E19\u0E40\u0E1F\u0E34\u0E23\u0E4C\u0E21\u0E41\u0E27\u0E23\u0E4C","child_bridge.config.header":"\u0E01\u0E32\u0E23\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E04\u0E48\u0E32","child_bridge.config.manufacturer":"\u0E1C\u0E39\u0E49\u0E1C\u0E25\u0E34\u0E15","child_bridge.config.model":"\u0E23\u0E38\u0E48\u0E19","child_bridge.config.name":"\u0E0A\u0E37\u0E48\u0E2D","child_bridge.must_configure_plugin":"\u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E04\u0E48\u0E32\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E19\u0E35\u0E49\u0E01\u0E48\u0E2D\u0E19\u0E08\u0E36\u0E07\u0E08\u0E30\u0E08\u0E31\u0E14\u0E01\u0E32\u0E23\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32 Bridge \u0E44\u0E14\u0E49","child_bridge.reset_accessories":"\u0E23\u0E35\u0E40\u0E0B\u0E47\u0E15\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21","child_bridge.reset_accessories_list":"\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E08\u0E32\u0E01\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22\u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E23\u0E35\u0E40\u0E0B\u0E47\u0E15\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E14\u0E49\u0E32\u0E19\u0E25\u0E48\u0E32\u0E07:","child_bridge.restart":"\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22s","child_bridge.restart_homebridge":"\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17 Homebridge \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E40\u0E2A\u0E23\u0E47\u0E08\u0E2A\u0E34\u0E49\u0E19\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22\u0E19\u0E35\u0E49","child_bridge.restart_plural":"\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22","child_bridge.return_to_pair":"\u0E01\u0E25\u0E31\u0E1A\u0E44\u0E1B\u0E17\u0E35\u0E48\u0E2B\u0E19\u0E49\u0E32\u0E08\u0E2D\u0E19\u0E35\u0E49\u0E2B\u0E25\u0E31\u0E07\u0E08\u0E32\u0E01\u0E17\u0E35\u0E48 Homebridge \u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E14\u0E39\u0E23\u0E2B\u0E31\u0E2A QR \u0E17\u0E35\u0E48\u0E01\u0E33\u0E25\u0E31\u0E07\u0E08\u0E31\u0E1A\u0E04\u0E39\u0E48","child_bridge.select_type":"\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E41\u0E1E\u0E25\u0E15\u0E1F\u0E2D\u0E23\u0E4C\u0E21\u0E2B\u0E23\u0E37\u0E2D\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E40\u0E1B\u0E47\u0E19\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22","child_bridge.setup":"\u0E15\u0E34\u0E14\u0E15\u0E31\u0E49\u0E07\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22","child_bridge.start":"\u0E40\u0E23\u0E34\u0E48\u0E21\u0E01\u0E32\u0E23\u0E17\u0E33\u0E07\u0E32\u0E19\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22","child_bridge.start_plural":"\u0E40\u0E23\u0E34\u0E48\u0E21\u0E01\u0E32\u0E23\u0E17\u0E33\u0E07\u0E32\u0E19\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22","child_bridge.stop":"\u0E2B\u0E22\u0E38\u0E14\u0E01\u0E32\u0E23\u0E17\u0E33\u0E07\u0E32\u0E19\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22","child_bridge.stop_plural":"\u0E2B\u0E22\u0E38\u0E14\u0E01\u0E32\u0E23\u0E17\u0E33\u0E07\u0E32\u0E19\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22","child_bridge.wiki_link":"\u0E40\u0E23\u0E35\u0E22\u0E19\u0E23\u0E39\u0E49\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21\u0E40\u0E01\u0E35\u0E48\u0E22\u0E27\u0E01\u0E31\u0E1A\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22","config.config_accessory_must_be_array":"\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E15\u0E49\u0E2D\u0E07\u0E40\u0E1B\u0E47\u0E19\u0E2D\u0E32\u0E23\u0E4C\u0E40\u0E23\u0E22\u0E4C []","config.config_bridge_missing":"\u0E44\u0E21\u0E48\u0E21\u0E35\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C","config.config_invalid_json":"Config \u0E21\u0E35 JSON \u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07","config.config_platform_must_be_array":"\u0E41\u0E1E\u0E25\u0E15\u0E1F\u0E2D\u0E23\u0E4C\u0E21\u0E15\u0E49\u0E2D\u0E07\u0E40\u0E1B\u0E47\u0E19\u0E2D\u0E32\u0E23\u0E4C\u0E40\u0E23\u0E22\u0E4C []","config.config_username_error":"\u0E0A\u0E37\u0E48\u0E2D\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E15\u0E49\u0E2D\u0E07\u0E40\u0E1B\u0E47\u0E19\u0E2D\u0E31\u0E01\u0E02\u0E23\u0E30\u0E40\u0E25\u0E02\u0E10\u0E32\u0E19\u0E2A\u0E34\u0E1A\u0E2B\u0E01\u0E17\u0E35\u0E48\u0E04\u0E31\u0E48\u0E19\u0E14\u0E49\u0E27\u0E22\u0E42\u0E04\u0E25\u0E2D\u0E19 6 \u0E04\u0E39\u0E48 (A-F 0-9)","config.error_blocks_objects":"\u0E1A\u0E25\u0E47\u0E2D\u0E01 {{ type }} \u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E15\u0E49\u0E2D\u0E07\u0E40\u0E1B\u0E47\u0E19\u0E27\u0E31\u0E15\u0E16\u0E38","config.error_blocks_type":"\u0E1A\u0E25\u0E47\u0E2D\u0E01 {{ type }} \u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E15\u0E49\u0E2D\u0E07\u0E21\u0E35\u0E41\u0E2D\u0E15\u0E17\u0E23\u0E34\u0E1A\u0E34\u0E27\u0E15\u0E4C {{ type }}","config.error_string_array":"\u0E41\u0E15\u0E48\u0E25\u0E30\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E43\u0E19\u0E2D\u0E32\u0E23\u0E4C\u0E40\u0E23\u0E22\u0E4C {{ key }} \u0E08\u0E30\u0E15\u0E49\u0E2D\u0E07\u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E15\u0E23\u0E34\u0E07","config.error_string_type":"\u0E41\u0E2D\u0E15\u0E17\u0E23\u0E34\u0E1A\u0E34\u0E27\u0E15\u0E4C {{ type }} \u0E08\u0E30\u0E15\u0E49\u0E2D\u0E07\u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E15\u0E23\u0E34\u0E07","config.failed_to_save_config":"\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E01\u0E32\u0E23\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E04\u0E48\u0E32\u0E44\u0E21\u0E48\u0E2A\u0E33\u0E40\u0E23\u0E47\u0E08","config.restore.confirm":"\u0E04\u0E25\u0E34\u0E01\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E22\u0E37\u0E19\u0E22\u0E31\u0E19\u0E27\u0E48\u0E32\u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E01\u0E39\u0E49\u0E04\u0E37\u0E19\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E2A\u0E33\u0E23\u0E2D\u0E07\u0E19\u0E35\u0E49","config.restore.copy_to_editor":"\u0E04\u0E31\u0E14\u0E25\u0E2D\u0E01\u0E44\u0E1B\u0E17\u0E35\u0E48\u0E40\u0E04\u0E23\u0E37\u0E48\u0E2D\u0E07\u0E21\u0E37\u0E2D\u0E41\u0E01\u0E49\u0E44\u0E02","config.restore.no_backups":"\u0E44\u0E21\u0E48\u0E21\u0E35\u0E01\u0E32\u0E23\u0E2A\u0E33\u0E23\u0E2D\u0E07\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25","config.restore.title_restore_homebridge_backup":"\u0E04\u0E37\u0E19\u0E04\u0E48\u0E32\u0E01\u0E32\u0E23\u0E2A\u0E33\u0E23\u0E2D\u0E07\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E01\u0E32\u0E23\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E04\u0E48\u0E32 Homebridge","config.restore.toast_backups_deleted":"\u0E25\u0E1A\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E2A\u0E33\u0E23\u0E2D\u0E07\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E41\u0E25\u0E49\u0E27","config.title_backup_loaded":"\u0E42\u0E2B\u0E25\u0E14\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E2A\u0E33\u0E23\u0E2D\u0E07\u0E41\u0E25\u0E49\u0E27","form.button_cancel":"\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01","form.button_close":"\u0E1B\u0E34\u0E14","form.button_delete":"\u0E25\u0E1A","form.button_disable":"\u0E1B\u0E34\u0E14\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19","form.button_download":"\u0E14\u0E32\u0E27\u0E19\u0E4C\u0E42\u0E2B\u0E25\u0E14","form.button_edit":"\u0E41\u0E01\u0E49\u0E44\u0E02","form.button_enable":"\u0E40\u0E1B\u0E34\u0E14\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19","form.button_hide":"\u0E0B\u0E48\u0E2D\u0E19","form.button_lock":"\u0E25\u0E4A\u0E2D\u0E04","form.button_more_info":"\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21","form.button_remove":"\u0E25\u0E1A","form.button_reset":"\u0E23\u0E35\u0E40\u0E0B\u0E47\u0E15","form.button_restore":"\u0E01\u0E32\u0E23\u0E01\u0E39\u0E49\u0E04\u0E37\u0E19","form.button_save":"\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01","form.button_show":"\u0E41\u0E2A\u0E14\u0E07","form.button_unlock":"\u0E1B\u0E25\u0E14\u0E25\u0E4A\u0E2D\u0E04","form.button_unpair":"\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E01\u0E32\u0E23\u0E08\u0E31\u0E1A\u0E04\u0E39\u0E48","form.label_invalid":"Config validation failed - you can still save your changes.","form.label_invalid_strict":"Config validation failed - please review the form before saving.","form.label_valid":"Config validation passed.","form.select.auto":"\u0E2D\u0E31\u0E15\u0E42\u0E19\u0E21\u0E31\u0E15\u0E34 (\u0E43\u0E0A\u0E49\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32\u0E40\u0E1A\u0E23\u0E32\u0E27\u0E4C\u0E40\u0E0B\u0E2D\u0E23\u0E4C)","login.button_login":"\u0E40\u0E02\u0E49\u0E32\u0E2A\u0E39\u0E48\u0E23\u0E30\u0E1A\u0E1A","login.invalid_credentials":"\u0E0A\u0E37\u0E48\u0E2D\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49\u0E41\u0E25\u0E30\u0E23\u0E2B\u0E31\u0E2A\u0E1C\u0E48\u0E32\u0E19\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07","login.label_2fa_code":"\u0E23\u0E2B\u0E31\u0E2A\u0E23\u0E31\u0E1A\u0E23\u0E2D\u0E07\u0E04\u0E27\u0E32\u0E21\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07\u0E2A\u0E2D\u0E07\u0E1B\u0E31\u0E08\u0E08\u0E31\u0E22","login.label_password":"\u0E23\u0E2B\u0E31\u0E2A\u0E1C\u0E48\u0E32\u0E19","login.label_username":"\u0E0A\u0E37\u0E48\u0E2D\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49","login.message_invalid_2fa_code":"\u0E23\u0E2B\u0E31\u0E2A\u0E17\u0E35\u0E48\u0E1B\u0E49\u0E2D\u0E19\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07\u0E2B\u0E23\u0E37\u0E2D\u0E2B\u0E21\u0E14\u0E2D\u0E32\u0E22\u0E38\u0E41\u0E25\u0E49\u0E27","logs.download.error":"\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E14\u0E32\u0E27\u0E19\u0E4C\u0E42\u0E2B\u0E25\u0E14\u0E44\u0E1F\u0E25\u0E4C log \u0E44\u0E14\u0E49","logs.download_warning":"\u0E44\u0E1F\u0E25\u0E4C\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E02\u0E2D\u0E07 Homebridge \u0E2D\u0E32\u0E08\u0E21\u0E35\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E2A\u0E48\u0E27\u0E19\u0E1A\u0E38\u0E04\u0E04\u0E25\u0E23\u0E2B\u0E31\u0E2A\u0E1C\u0E48\u0E32\u0E19\u0E2B\u0E23\u0E37\u0E2D\u0E42\u0E17\u0E40\u0E04\u0E47\u0E19\u0E01\u0E32\u0E23\u0E40\u0E02\u0E49\u0E32\u0E16\u0E36\u0E07 \u0E42\u0E1B\u0E23\u0E14\u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A\u0E44\u0E1F\u0E25\u0E4C\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E41\u0E25\u0E30\u0E25\u0E1A\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E17\u0E35\u0E48\u0E25\u0E30\u0E40\u0E2D\u0E35\u0E22\u0E14\u0E2D\u0E48\u0E2D\u0E19\u0E2D\u0E2D\u0E01\u0E01\u0E48\u0E2D\u0E19\u0E41\u0E1A\u0E48\u0E07\u0E1B\u0E31\u0E19\u0E01\u0E31\u0E1A\u0E1C\u0E39\u0E49\u0E2D\u0E37\u0E48\u0E19","logs.log_file_truncated":"\u0E44\u0E1F\u0E25\u0E4C\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E16\u0E39\u0E01\u0E15\u0E31\u0E14\u0E43\u0E2B\u0E49\u0E2A\u0E31\u0E49\u0E19\u0E25\u0E07","logs.title_download_log_file":"\u0E14\u0E32\u0E27\u0E19\u0E4C\u0E42\u0E2B\u0E25\u0E14\u0E44\u0E1F\u0E25\u0E4C\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01","logs.title_truncate_log_file":"\u0E15\u0E31\u0E14\u0E17\u0E2D\u0E19\u0E44\u0E1F\u0E25\u0E4C\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01","logs.truncate.error":"\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E15\u0E31\u0E14\u0E17\u0E2D\u0E19\u0E44\u0E1F\u0E25\u0E4C log \u0E44\u0E14\u0E49","logs.truncate_log_warning":"\u0E01\u0E32\u0E23\u0E14\u0E33\u0E40\u0E19\u0E34\u0E19\u0E01\u0E32\u0E23\u0E19\u0E35\u0E49\u0E08\u0E30\u0E25\u0E1A\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01 Homebridge \u0E17\u0E35\u0E48\u0E21\u0E35\u0E2D\u0E22\u0E39\u0E48\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E22\u0E49\u0E2D\u0E19\u0E01\u0E25\u0E31\u0E1A\u0E44\u0E14\u0E49 \u0E41\u0E19\u0E48\u0E43\u0E08\u0E44\u0E2B\u0E21\u0E27\u0E48\u0E32\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E14\u0E33\u0E40\u0E19\u0E34\u0E19\u0E01\u0E32\u0E23\u0E15\u0E48\u0E2D","menu.config_json_editor":"JSON Config","menu.docker.restart_container":"\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17\u0E04\u0E2D\u0E19\u0E40\u0E17\u0E19\u0E40\u0E19\u0E2D\u0E23\u0E4C","menu.docker.startup_script":"\u0E2A\u0E04\u0E23\u0E34\u0E1B\u0E15\u0E4C\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19","menu.docker.terminal":"\u0E40\u0E17\u0E2D\u0E23\u0E4C\u0E21\u0E34\u0E19\u0E2D\u0E25","menu.hbrestart.confirm_hb":"\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17 Homebridge","menu.hbrestart.confirm_ui":"\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17 HB Service \u0E41\u0E25\u0E30 UI","menu.hbrestart.title":"\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17 Homebridge","menu.label_accessories":"\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21","menu.label_plugins":"\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19","menu.label_settings":"\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32","menu.label_settings_advanced":"\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32 UI \u0E02\u0E31\u0E49\u0E19\u0E2A\u0E39\u0E07","menu.label_status":"\u0E2A\u0E16\u0E32\u0E19\u0E30","menu.linux.label_logs":"Logs","menu.linux.label_restart_server":"\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C","menu.linux.label_shutdown_server":"\u0E1B\u0E34\u0E14\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C","menu.linux.label_terminal":"\u0E40\u0E17\u0E2D\u0E23\u0E4C\u0E21\u0E34\u0E19\u0E2D\u0E25","menu.restart.title":"\u0E15\u0E31\u0E27\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E14\u0E49\u0E32\u0E19\u0E1E\u0E25\u0E31\u0E07\u0E07\u0E32\u0E19","menu.settings.title":"\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32","menu.tooltip_logout":"\u0E2D\u0E2D\u0E01\u0E08\u0E32\u0E01\u0E23\u0E30\u0E1A\u0E1A","menu.tooltip_restart":"\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17","menu.tooltip_user_accounts":"\u0E1A\u0E31\u0E0D\u0E0A\u0E35\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49","menu.tooltip_view_logs":"\u0E14\u0E39\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01","platform.docker.container_restarted":"Docker Container \u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17\u0E41\u0E25\u0E49\u0E27","platform.docker.must_use_hashbang":"\u0E15\u0E49\u0E2D\u0E07\u0E43\u0E0A\u0E49\u0E2A\u0E04\u0E23\u0E34\u0E1B\u0E15\u0E4C #!/bin/sh hashbang.","platform.docker.restart_required":"\u0E04\u0E38\u0E13\u0E08\u0E30\u0E15\u0E49\u0E2D\u0E07\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17 docker container \u0E19\u0E35\u0E49\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E43\u0E2B\u0E49\u0E01\u0E32\u0E23\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E41\u0E1B\u0E25\u0E07\u0E21\u0E35\u0E1C\u0E25","platform.docker.run_with_restart":"\u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A\u0E43\u0E2B\u0E49\u0E41\u0E19\u0E48\u0E43\u0E08\u0E27\u0E48\u0E32\u0E04\u0E38\u0E13\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19 Docker Container \u0E14\u0E49\u0E27\u0E22<code>--restart=always</code>","platform.docker.script_help":"\u0E2A\u0E04\u0E23\u0E34\u0E1B\u0E15\u0E4C\u0E19\u0E35\u0E49\u0E08\u0E30\u0E14\u0E33\u0E40\u0E19\u0E34\u0E19\u0E01\u0E32\u0E23\u0E17\u0E38\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07\u0E17\u0E35\u0E48 Docker container \u0E40\u0E23\u0E34\u0E48\u0E21\u0E17\u0E33\u0E07\u0E32\u0E19 \u0E04\u0E38\u0E13\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E43\u0E0A\u0E49\u0E2A\u0E34\u0E48\u0E07\u0E19\u0E35\u0E49\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E15\u0E34\u0E14\u0E15\u0E31\u0E49\u0E07\u0E41\u0E1E\u0E47\u0E04\u0E40\u0E01\u0E08\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E43\u0E14 \u0E46 \u0E17\u0E35\u0E48\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E2D\u0E32\u0E08\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E48\u0E19 ffmpeg \u0E2B\u0E23\u0E37\u0E2D libpcap-dev","platform.docker.script_saved":"\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E2A\u0E04\u0E23\u0E34\u0E1B\u0E15\u0E4C\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19\u0E41\u0E25\u0E49\u0E27","platform.docker.server_long_time":"\u0E01\u0E32\u0E23\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E43\u0E0A\u0E49\u0E40\u0E27\u0E25\u0E32\u0E19\u0E32\u0E19 \u0E04\u0E38\u0E13\u0E2D\u0E32\u0E08\u0E15\u0E49\u0E2D\u0E07\u0E40\u0E1B\u0E34\u0E14 Container Docker \u0E14\u0E49\u0E27\u0E22\u0E15\u0E19\u0E40\u0E2D\u0E07","platform.docker.title_restarting":"\u0E01\u0E33\u0E25\u0E31\u0E07\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17 Docker Container","platform.linux.long_time":"\u0E01\u0E32\u0E23\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E43\u0E0A\u0E49\u0E40\u0E27\u0E25\u0E32\u0E19\u0E32\u0E19 \u0E04\u0E38\u0E13\u0E2D\u0E32\u0E08\u0E15\u0E49\u0E2D\u0E07\u0E17\u0E33\u0E01\u0E32\u0E23\u0E2A\u0E33\u0E23\u0E2D\u0E07\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E14\u0E49\u0E27\u0E22\u0E15\u0E19\u0E40\u0E2D\u0E07","platform.linux.restart":"\u0E42\u0E1B\u0E23\u0E14\u0E23\u0E2D\u0E2A\u0E31\u0E01\u0E04\u0E23\u0E39\u0E48\u0E2B\u0E19\u0E49\u0E32\u0E19\u0E35\u0E49\u0E08\u0E30\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E40\u0E2A\u0E49\u0E19\u0E17\u0E32\u0E07\u0E42\u0E14\u0E22\u0E2D\u0E31\u0E15\u0E42\u0E19\u0E21\u0E31\u0E15\u0E34\u0E40\u0E21\u0E37\u0E48\u0E2D Homebridge \u0E01\u0E25\u0E31\u0E1A\u0E21\u0E32\u0E2D\u0E2D\u0E19\u0E44\u0E25\u0E19\u0E4C","platform.linux.restarting_server":"\u0E01\u0E33\u0E25\u0E31\u0E07\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C","platform.linux.server_restart_error":"\u0E40\u0E01\u0E34\u0E14\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E43\u0E19\u0E01\u0E32\u0E23\u0E2A\u0E48\u0E07\u0E04\u0E33\u0E2A\u0E31\u0E48\u0E07\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17\u0E44\u0E1B\u0E22\u0E31\u0E07\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C","platform.linux.server_restarted":"\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E41\u0E25\u0E49\u0E27","platform.linux.server_taking_long_time":"\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E43\u0E0A\u0E49\u0E40\u0E27\u0E25\u0E32\u0E19\u0E32\u0E19\u0E43\u0E19\u0E01\u0E32\u0E23\u0E01\u0E25\u0E31\u0E1A\u0E21\u0E32\u0E2D\u0E2D\u0E19\u0E44\u0E25\u0E19\u0E4C","platform.linux.server_will_power_down":"\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E08\u0E30\u0E1B\u0E34\u0E14\u0E01\u0E32\u0E23\u0E17\u0E33\u0E07\u0E32\u0E19\u0E43\u0E19\u0E44\u0E21\u0E48\u0E0A\u0E49\u0E32","platform.linux.shutting_down_server":"\u0E01\u0E33\u0E25\u0E31\u0E07\u0E1B\u0E34\u0E14\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C","platform.version.restart_required":"Homebridge UI \u0E23\u0E38\u0E48\u0E19{{ uiVersion }} \u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E15\u0E34\u0E14\u0E15\u0E31\u0E49\u0E07\u0E41\u0E25\u0E49\u0E27 \u0E41\u0E15\u0E48\u0E1A\u0E23\u0E34\u0E01\u0E32\u0E23\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E22\u0E31\u0E07\u0E04\u0E07\u0E17\u0E33\u0E07\u0E32\u0E19\u0E2D\u0E22\u0E39\u0E48 \u0E23\u0E38\u0E48\u0E19{{ serverVersion }}.","platform.version.service_restart_required":"\u0E08\u0E33\u0E40\u0E1B\u0E47\u0E19\u0E15\u0E49\u0E2D\u0E07\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17\u0E1A\u0E23\u0E34\u0E01\u0E32\u0E23","plugins.bridge.action_error":"\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22 {{ action }} \u0E44\u0E14\u0E49","plugins.button_homepage":"\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19 Homepage","plugins.button_set_up":"\u0E15\u0E34\u0E14\u0E15\u0E31\u0E49\u0E07","plugins.button_settings":"\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32","plugins.button_uninstall":"\u0E16\u0E2D\u0E19\u0E01\u0E32\u0E23\u0E15\u0E34\u0E14\u0E15\u0E31\u0E49\u0E07","plugins.button_update":"\u0E2D\u0E31\u0E1B\u0E40\u0E14\u0E17","plugins.compat.are_you_sure":"\u0E04\u0E38\u0E13\u0E41\u0E19\u0E48\u0E43\u0E08\u0E27\u0E48\u0E32\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E14\u0E33\u0E40\u0E19\u0E34\u0E19\u0E01\u0E32\u0E23\u0E15\u0E48\u0E2D\u0E2B\u0E23\u0E37\u0E2D\u0E44\u0E21\u0E48?","plugins.compat.hb_node_too_low":"{{ packageName }} \u0E23\u0E38\u0E48\u0E19{{ latestVersion }} \u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23 Node.js \u0E23\u0E38\u0E48\u0E19{{ minVersion }} \u0E2B\u0E23\u0E37\u0E2D\u0E43\u0E2B\u0E21\u0E48\u0E01\u0E27\u0E48\u0E32. \u0E42\u0E14\u0E22\u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E01\u0E33\u0E25\u0E31\u0E07\u0E43\u0E0A\u0E49 Node.js {{ installedVersion }}.","plugins.compat.hb_too_low":"{{ pluginName }} \u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E41\u0E19\u0E30\u0E19\u0E33\u0E43\u0E2B\u0E49\u0E17\u0E33\u0E07\u0E32\u0E19\u0E1A\u0E19 Homebridge \u0E23\u0E38\u0E48\u0E19{{ minVersion }} \u0E2B\u0E23\u0E37\u0E2D\u0E43\u0E2B\u0E21\u0E48\u0E01\u0E27\u0E48\u0E32. \u0E42\u0E14\u0E22\u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E01\u0E33\u0E25\u0E31\u0E07\u0E43\u0E0A\u0E49 Homebridge v{{ installedVersion }}.","plugins.compat.node_first":"\u0E42\u0E1B\u0E23\u0E14\u0E2D\u0E31\u0E1B\u0E40\u0E01\u0E23\u0E14 Node.js \u0E01\u0E48\u0E2D\u0E19\u0E2D\u0E31\u0E1B\u0E40\u0E14\u0E15 {{ packageName }}.","plugins.compat.node_link":"\u0E27\u0E34\u0E18\u0E35\u0E01\u0E32\u0E23\u0E2D\u0E31\u0E1B\u0E40\u0E14\u0E15 Node.js","plugins.compat.node_too_low":"{{ pluginName }} \u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E41\u0E19\u0E30\u0E19\u0E33\u0E43\u0E2B\u0E49\u0E17\u0E33\u0E07\u0E32\u0E19\u0E1A\u0E19 Node.js \u0E23\u0E38\u0E48\u0E19{{ minVersion }} \u0E2B\u0E23\u0E37\u0E2D\u0E43\u0E2B\u0E21\u0E48\u0E01\u0E27\u0E48\u0E32. \u0E42\u0E14\u0E22\u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E01\u0E33\u0E25\u0E31\u0E07\u0E43\u0E0A\u0E49 Node.js {{ installedVersion }}.","plugins.compat.title":"\u0E01\u0E32\u0E23\u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A\u0E04\u0E27\u0E32\u0E21\u0E40\u0E02\u0E49\u0E32\u0E01\u0E31\u0E19\u0E44\u0E14\u0E49","plugins.config.load_error":"\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E42\u0E2B\u0E25\u0E14\u0E01\u0E32\u0E23\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E04\u0E48\u0E32\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E44\u0E14\u0E49","plugins.config.must_be_array":"\u0E01\u0E32\u0E23\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E04\u0E48\u0E32\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E08\u0E30\u0E15\u0E49\u0E2D\u0E07\u0E40\u0E1B\u0E47\u0E19\u0E2D\u0E32\u0E23\u0E4C\u0E40\u0E23\u0E22\u0E4C","plugins.config.must_be_array_objects":"\u0E01\u0E32\u0E23\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E04\u0E48\u0E32\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E08\u0E30\u0E15\u0E49\u0E2D\u0E07\u0E40\u0E1B\u0E47\u0E19\u0E2D\u0E32\u0E23\u0E4C\u0E40\u0E23\u0E22\u0E4C\u0E02\u0E2D\u0E07\u0E27\u0E31\u0E15\u0E16\u0E38","plugins.config.must_be_object":"\u0E1A\u0E25\u0E47\u0E2D\u0E01\u0E01\u0E32\u0E23\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E04\u0E48\u0E32\u0E08\u0E30\u0E15\u0E49\u0E2D\u0E07\u0E40\u0E1B\u0E47\u0E19\u0E27\u0E31\u0E15\u0E16\u0E38","plugins.config.name_property":'\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E15\u0E49\u0E2D\u0E07\u0E21\u0E35\u0E04\u0E38\u0E13\u0E25\u0E31\u0E01\u0E29\u0E13\u0E30 "\u0E0A\u0E37\u0E48\u0E2D" \u0E17\u0E35\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07',"plugins.config.please_fix":"\u0E01\u0E23\u0E38\u0E13\u0E32\u0E41\u0E01\u0E49\u0E44\u0E02\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E43\u0E19\u0E01\u0E32\u0E23\u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A\u0E01\u0E48\u0E2D\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E1A\u0E25\u0E47\u0E2D\u0E01\u0E43\u0E2B\u0E21\u0E48","plugins.config.remove_error":"\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E25\u0E1A\u0E01\u0E32\u0E23\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E04\u0E48\u0E32\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E44\u0E14\u0E49","plugins.disable.error":"\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E1B\u0E34\u0E14\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E44\u0E14\u0E49","plugins.donate.button_not_verified":"\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E23\u0E31\u0E1A\u0E23\u0E2D\u0E07","plugins.donate.button_verified":"\u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A\u0E41\u0E25\u0E49\u0E27","plugins.donate.message_1":"\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49\u0E15\u0E34\u0E14\u0E15\u0E31\u0E49\u0E07\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E1C\u0E48\u0E32\u0E19 Homebridge UI \u0E21\u0E32\u0E01\u0E02\u0E36\u0E49\u0E19 \u0E1E\u0E27\u0E01\u0E40\u0E02\u0E32\u0E08\u0E36\u0E07\u0E21\u0E35\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E19\u0E49\u0E2D\u0E22\u0E25\u0E07\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E1B\u0E17\u0E35\u0E48\u0E2B\u0E19\u0E49\u0E32 GitHub \u0E02\u0E2D\u0E07\u0E42\u0E1B\u0E23\u0E40\u0E08\u0E47\u0E01\u0E15\u0E4C \u0E0B\u0E36\u0E48\u0E07\u0E42\u0E14\u0E22\u0E1B\u0E01\u0E15\u0E34\u0E41\u0E25\u0E49\u0E27\u0E08\u0E30\u0E41\u0E2A\u0E14\u0E07\u0E27\u0E34\u0E18\u0E35\u0E01\u0E32\u0E23\u0E2A\u0E19\u0E31\u0E1A\u0E2A\u0E19\u0E38\u0E19\u0E19\u0E31\u0E01\u0E1E\u0E31\u0E12\u0E19\u0E32\u0E44\u0E27\u0E49","plugins.donate.message_2":"\u0E01\u0E32\u0E23\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E25\u0E34\u0E07\u0E01\u0E4C\u0E01\u0E32\u0E23\u0E1A\u0E23\u0E34\u0E08\u0E32\u0E04\u0E42\u0E14\u0E22\u0E15\u0E23\u0E07\u0E43\u0E19 Homebridge UI \u0E0A\u0E48\u0E27\u0E22\u0E43\u0E2B\u0E49\u0E21\u0E31\u0E48\u0E19\u0E43\u0E08\u0E27\u0E48\u0E32\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49\u0E17\u0E23\u0E32\u0E1A\u0E27\u0E34\u0E18\u0E35\u0E2A\u0E19\u0E31\u0E1A\u0E2A\u0E19\u0E38\u0E19\u0E19\u0E31\u0E01\u0E1E\u0E31\u0E12\u0E19\u0E32 Homebridge \u0E2B\u0E32\u0E01\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E17\u0E33\u0E40\u0E0A\u0E48\u0E19\u0E19\u0E31\u0E49\u0E19","plugins.donate.tile_donate_to":"\u0E1A\u0E23\u0E34\u0E08\u0E32\u0E04\u0E43\u0E2B\u0E49 {{ author }}","plugins.enable.error":"\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E40\u0E1B\u0E34\u0E14\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E44\u0E14\u0E49","plugins.manage.all_versions":"\u0E17\u0E38\u0E01\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E19","plugins.manage.child_bridge_restart":"\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22\u0E40\u0E23\u0E34\u0E48\u0E21\u0E01\u0E32\u0E23\u0E17\u0E33\u0E07\u0E32\u0E19\u0E43\u0E2B\u0E21\u0E48\u0E44\u0E14\u0E49\u0E2A\u0E33\u0E40\u0E23\u0E47\u0E08","plugins.manage.child_bridge_restart_failed":"\u0E01\u0E32\u0E23\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E25\u0E49\u0E21\u0E40\u0E2B\u0E25\u0E27 \u0E42\u0E1B\u0E23\u0E14\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17 Homebridge \u0E14\u0E49\u0E27\u0E22\u0E15\u0E19\u0E40\u0E2D\u0E07","plugins.manage.confirm_disable":"\u0E04\u0E38\u0E13\u0E41\u0E19\u0E48\u0E43\u0E08\u0E2B\u0E23\u0E37\u0E2D\u0E44\u0E21\u0E48\u0E27\u0E48\u0E32\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E1B\u0E34\u0E14\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19 {{ pluginName }}?","plugins.manage.confirm_disable_accessory_1":"\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E43\u0E14 \u0E46 \u0E17\u0E35\u0E48\u0E40\u0E1B\u0E34\u0E14\u0E40\u0E1C\u0E22\u0E42\u0E14\u0E22\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E19\u0E35\u0E49\u0E08\u0E30\u0E16\u0E39\u0E01\u0E25\u0E1A\u0E2D\u0E2D\u0E01\u0E08\u0E32\u0E01\u0E2B\u0E19\u0E49\u0E32\u0E08\u0E2D\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21 Homebridge UI \u0E41\u0E25\u0E30\u0E25\u0E1A\u0E2D\u0E2D\u0E01\u0E08\u0E32\u0E01 HomeKit","plugins.manage.confirm_disable_accessory_2":"\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E04\u0E38\u0E13\u0E40\u0E1B\u0E34\u0E14\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E2D\u0E35\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07 \u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E08\u0E30\u0E1B\u0E23\u0E32\u0E01\u0E0F\u0E02\u0E36\u0E49\u0E19\u0E43\u0E19 Homebridge UI \u0E41\u0E25\u0E30 HomeKit \u0E2D\u0E35\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07 \u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E08\u0E30\u0E2A\u0E39\u0E0D\u0E40\u0E2A\u0E35\u0E22\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25 HomeKit (\u0E40\u0E0A\u0E48\u0E19 \u0E09\u0E32\u0E01\u0E41\u0E25\u0E30\u0E01\u0E32\u0E23\u0E17\u0E33\u0E07\u0E32\u0E19\u0E2D\u0E31\u0E15\u0E42\u0E19\u0E21\u0E31\u0E15\u0E34\u0E17\u0E35\u0E48\u0E40\u0E01\u0E35\u0E48\u0E22\u0E27\u0E02\u0E49\u0E2D\u0E07)","plugins.manage.confirm_disable_platform_1":"\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E43\u0E14 \u0E46 \u0E17\u0E35\u0E48\u0E40\u0E1B\u0E34\u0E14\u0E40\u0E1C\u0E22\u0E42\u0E14\u0E22\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E19\u0E35\u0E49\u0E08\u0E30\u0E16\u0E39\u0E01\u0E25\u0E1A\u0E2D\u0E2D\u0E01\u0E08\u0E32\u0E01\u0E2B\u0E19\u0E49\u0E32\u0E08\u0E2D\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21 Homebridge UI \u0E41\u0E15\u0E48\u0E22\u0E31\u0E07\u0E04\u0E07\u0E2D\u0E22\u0E39\u0E48\u0E43\u0E19 HomeKit \u0E1E\u0E23\u0E49\u0E2D\u0E21\u0E1B\u0E49\u0E32\u0E22 '\u0E44\u0E21\u0E48\u0E21\u0E35\u0E01\u0E32\u0E23\u0E15\u0E2D\u0E1A\u0E2A\u0E19\u0E2D\u0E07'","plugins.manage.confirm_disable_platform_2":"\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E04\u0E38\u0E13\u0E40\u0E1B\u0E34\u0E14\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E2D\u0E35\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07 \u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E08\u0E30\u0E1B\u0E23\u0E32\u0E01\u0E0F\u0E02\u0E36\u0E49\u0E19\u0E43\u0E19 Homebridge UI \u0E2D\u0E35\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07 \u0E41\u0E25\u0E30\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E04\u0E27\u0E1A\u0E04\u0E38\u0E21\u0E44\u0E14\u0E49\u0E43\u0E19 HomeKit \u0E2D\u0E35\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07 \u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E08\u0E30\u0E44\u0E21\u0E48\u0E2A\u0E39\u0E0D\u0E40\u0E2A\u0E35\u0E22\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25 HomeKit (\u0E40\u0E0A\u0E48\u0E19 \u0E09\u0E32\u0E01\u0E41\u0E25\u0E30\u0E01\u0E32\u0E23\u0E17\u0E33\u0E07\u0E32\u0E19\u0E2D\u0E31\u0E15\u0E42\u0E19\u0E21\u0E31\u0E15\u0E34\u0E17\u0E35\u0E48\u0E40\u0E01\u0E35\u0E48\u0E22\u0E27\u0E02\u0E49\u0E2D\u0E07)","plugins.manage.confirm_enable":"\u0E41\u0E19\u0E48\u0E43\u0E08\u0E44\u0E2B\u0E21\u0E27\u0E48\u0E32\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E40\u0E1B\u0E34\u0E14\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19 {{ pluginName }}?","plugins.manage.disable":"\u0E1B\u0E34\u0E14\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19","plugins.manage.enable":"\u0E40\u0E1B\u0E34\u0E14\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19","plugins.manage.information":"\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19","plugins.manage.install":"\u0E15\u0E34\u0E14\u0E15\u0E31\u0E49\u0E07","plugins.manage.installed":"\u0E15\u0E34\u0E14\u0E15\u0E31\u0E49\u0E07\u0E41\u0E25\u0E49\u0E27","plugins.manage.json_config":"\u0E01\u0E32\u0E23\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E04\u0E48\u0E32 JSON","plugins.manage.manage_version":"\u0E15\u0E34\u0E14\u0E15\u0E31\u0E49\u0E07\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E19\u0E01\u0E48\u0E2D\u0E19\u0E2B\u0E19\u0E49\u0E32","plugins.manage.manual_update_command":"\u0E2B\u0E32\u0E01\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E2D\u0E31\u0E1E\u0E40\u0E01\u0E23\u0E14\u0E41\u0E1E\u0E47\u0E04\u0E40\u0E01\u0E08 \u0E43\u0E2B\u0E49\u0E40\u0E1B\u0E34\u0E14\u0E1E\u0E23\u0E2D\u0E21\u0E15\u0E4C\u0E04\u0E33\u0E2A\u0E31\u0E48\u0E07 Node.js \u0E43\u0E19\u0E10\u0E32\u0E19\u0E30\u0E1C\u0E39\u0E49\u0E14\u0E39\u0E41\u0E25\u0E23\u0E30\u0E1A\u0E1A\u0E41\u0E25\u0E30\u0E23\u0E31\u0E19\u0E04\u0E33\u0E2A\u0E31\u0E48\u0E07\u0E15\u0E48\u0E2D\u0E44\u0E1B\u0E19\u0E35\u0E49:","plugins.manage.manual_update_required":"\u0E08\u0E33\u0E40\u0E1B\u0E47\u0E19\u0E15\u0E49\u0E2D\u0E07\u0E21\u0E35\u0E01\u0E32\u0E23\u0E2D\u0E31\u0E1B\u0E40\u0E14\u0E15\u0E14\u0E49\u0E27\u0E22\u0E15\u0E19\u0E40\u0E2D\u0E07","plugins.manage.online_updates":"Windows \u0E44\u0E21\u0E48\u0E23\u0E2D\u0E07\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E2D\u0E31\u0E1B\u0E40\u0E14\u0E15\u0E2D\u0E2D\u0E19\u0E44\u0E25\u0E19\u0E4C \u0E04\u0E38\u0E13\u0E08\u0E30\u0E15\u0E49\u0E2D\u0E07\u0E2D\u0E31\u0E1B\u0E40\u0E01\u0E23\u0E14 Homebridge \u0E14\u0E49\u0E27\u0E22\u0E15\u0E19\u0E40\u0E2D\u0E07\u0E2B\u0E25\u0E31\u0E07\u0E08\u0E32\u0E01\u0E2B\u0E22\u0E38\u0E14\u0E1A\u0E23\u0E34\u0E01\u0E32\u0E23 Homebridge","plugins.manage.plugin_logs":"\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19 Logs","plugins.manage.release_notes":"\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E1B\u0E23\u0E30\u0E08\u0E33\u0E23\u0E38\u0E48\u0E19","plugins.manage.scoped.error":"An error occurred. You can download the logs below.","plugins.manage.scoped.info":"For more information about scoped plugins and why to switch, see the wiki page {{ link }}.","plugins.manage.scoped.process":"This process will not affect your Homebridge/HomeKit accessories. You will not be able to cancel the process once it has started. It will:","plugins.manage.scoped.switch":"Switch To Scoped Plugin","plugins.manage.scoped.windows":"Online updates are not supported on Windows. You will need to install the new plugin and uninstall the old plugin manually.","plugins.manage.scoped.windows_service":'You should <span class="font-weight-bold">not</span> restart Homebridge until both steps are complete.',"plugins.manage.select_version":"\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E15\u0E34\u0E14\u0E15\u0E31\u0E49\u0E07","plugins.manage.thanks_for_updating":"\u0E02\u0E2D\u0E1A\u0E04\u0E38\u0E13\u0E17\u0E35\u0E48\u0E15\u0E34\u0E14\u0E15\u0E31\u0E49\u0E07 {{ pluginName }} \u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E19\u0E25\u0E48\u0E32\u0E2A\u0E38\u0E14","plugins.manage.uninstall":"\u0E16\u0E2D\u0E19\u0E01\u0E32\u0E23\u0E15\u0E34\u0E14\u0E15\u0E31\u0E49\u0E07","plugins.manage.uninstalled":"\u0E19\u0E33\u0E2D\u0E2D\u0E01\u0E41\u0E25\u0E49\u0E27","plugins.manage.unverified_message":"\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19 Homebridge \u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E22\u0E37\u0E19\u0E22\u0E31\u0E19\u0E23\u0E30\u0E1A\u0E38\u0E27\u0E48\u0E32\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E1C\u0E48\u0E32\u0E19\u0E01\u0E23\u0E30\u0E1A\u0E27\u0E19\u0E01\u0E32\u0E23\u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A\u0E42\u0E14\u0E22\u0E17\u0E35\u0E21\u0E07\u0E32\u0E19\u0E42\u0E04\u0E23\u0E07\u0E01\u0E32\u0E23 Homebridge \u0E01\u0E32\u0E23\u0E02\u0E32\u0E14\u0E01\u0E32\u0E23\u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E2B\u0E21\u0E32\u0E22\u0E04\u0E27\u0E32\u0E21\u0E16\u0E36\u0E07\u0E04\u0E27\u0E32\u0E21\u0E44\u0E23\u0E49\u0E1B\u0E23\u0E30\u0E2A\u0E34\u0E17\u0E18\u0E34\u0E20\u0E32\u0E1E\u0E2B\u0E23\u0E37\u0E2D\u0E02\u0E49\u0E2D\u0E01\u0E31\u0E07\u0E27\u0E25\u0E14\u0E49\u0E32\u0E19\u0E04\u0E27\u0E32\u0E21\u0E1B\u0E25\u0E2D\u0E14\u0E20\u0E31\u0E22\u0E40\u0E2A\u0E21\u0E2D\u0E44\u0E1B \u0E1C\u0E39\u0E49\u0E40\u0E02\u0E35\u0E22\u0E19\u0E2D\u0E32\u0E08\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E21\u0E48\u0E02\u0E2D\u0E01\u0E32\u0E23\u0E22\u0E37\u0E19\u0E22\u0E31\u0E19\u0E14\u0E49\u0E27\u0E22\u0E40\u0E2B\u0E15\u0E38\u0E1C\u0E25\u0E2B\u0E25\u0E32\u0E22\u0E1B\u0E23\u0E30\u0E01\u0E32\u0E23","plugins.manage.unverified_subtitle":"{{ pluginName }} \u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E23\u0E31\u0E1A\u0E23\u0E2D\u0E07","plugins.manage.unverified_title":"\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E23\u0E31\u0E1A\u0E23\u0E2D\u0E07","plugins.manage.update":"\u0E2D\u0E31\u0E1B\u0E40\u0E14\u0E17","plugins.manage.updated":"\u0E2D\u0E31\u0E1B\u0E40\u0E14\u0E17\u0E41\u0E25\u0E49\u0E27","plugins.manage.verified_message":"\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19 Homebridge \u0E17\u0E35\u0E48\u0E17\u0E33\u0E40\u0E04\u0E23\u0E37\u0E48\u0E2D\u0E07\u0E2B\u0E21\u0E32\u0E22\u0E27\u0E48\u0E32\u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A\u0E41\u0E25\u0E49\u0E27\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A\u0E42\u0E14\u0E22\u0E17\u0E35\u0E21\u0E07\u0E32\u0E19\u0E42\u0E04\u0E23\u0E07\u0E01\u0E32\u0E23 Homebridge \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E43\u0E2B\u0E49\u0E41\u0E19\u0E48\u0E43\u0E08\u0E27\u0E48\u0E32\u0E40\u0E1B\u0E47\u0E19\u0E44\u0E1B\u0E15\u0E32\u0E21\u0E02\u0E49\u0E2D\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E15\u0E48\u0E32\u0E07\u0E46 \u0E17\u0E35\u0E48\u0E2A\u0E48\u0E07\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E41\u0E19\u0E27\u0E17\u0E32\u0E07\u0E1B\u0E0F\u0E34\u0E1A\u0E31\u0E15\u0E34\u0E17\u0E35\u0E48\u0E14\u0E35\u0E17\u0E35\u0E48\u0E2A\u0E38\u0E14\u0E41\u0E25\u0E30\u0E1B\u0E23\u0E30\u0E2A\u0E1A\u0E01\u0E32\u0E23\u0E13\u0E4C\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49\u0E17\u0E35\u0E48\u0E1B\u0E23\u0E32\u0E28\u0E08\u0E32\u0E01\u0E1B\u0E31\u0E0D\u0E2B\u0E32","plugins.manage.verified_subtitle":"{{ pluginName }} \u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E23\u0E31\u0E1A\u0E23\u0E2D\u0E07","plugins.manage.verified_title":"\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E17\u0E35\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A\u0E41\u0E25\u0E49\u0E27","plugins.node_update.continue":"\u0E14\u0E33\u0E40\u0E19\u0E34\u0E19\u0E01\u0E32\u0E23\u0E15\u0E48\u0E2D","plugins.placeholder_search_first":"\u0E43\u0E0A\u0E49\u0E41\u0E16\u0E1A\u0E04\u0E49\u0E19\u0E2B\u0E32\u0E14\u0E49\u0E32\u0E19\u0E1A\u0E19\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E04\u0E49\u0E19\u0E2B\u0E32\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E41\u0E23\u0E01\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13","plugins.placeholder_search_plugin":"\u0E04\u0E49\u0E19\u0E2B\u0E32\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E15\u0E34\u0E14\u0E15\u0E31\u0E49\u0E07\u2026","plugins.settings.custom.homebridge-gsh.label_account_linked":"\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E42\u0E22\u0E07\u0E1A\u0E31\u0E0D\u0E0A\u0E35\u0E41\u0E25\u0E49\u0E27","plugins.settings.custom.homebridge-gsh.label_link_account":"\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E42\u0E22\u0E07\u0E1A\u0E31\u0E0D\u0E0A\u0E35","plugins.settings.custom.homebridge-gsh.label_unlink_account":"\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E42\u0E22\u0E07\u0E1A\u0E31\u0E0D\u0E0A\u0E35","plugins.settings.custom.homebridge-gsh.message_about":"Homebridge Google Smart Home \u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E0A\u0E48\u0E27\u0E22\u0E43\u0E2B\u0E49\u0E04\u0E38\u0E13\u0E04\u0E27\u0E1A\u0E04\u0E38\u0E21\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21 Homebridge \u0E08\u0E32\u0E01\u0E25\u0E33\u0E42\u0E1E\u0E07\u0E2D\u0E31\u0E08\u0E09\u0E23\u0E34\u0E22\u0E30\u0E17\u0E35\u0E48\u0E40\u0E1B\u0E34\u0E14\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19 Google Home \u0E2B\u0E23\u0E37\u0E2D\u0E41\u0E2D\u0E1B Google Home \u0E1A\u0E19\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E04\u0E25\u0E37\u0E48\u0E2D\u0E19\u0E17\u0E35\u0E48","plugins.settings.custom.homebridge-gsh.message_account_link_required":"\u0E43\u0E19\u0E01\u0E32\u0E23\u0E40\u0E1B\u0E34\u0E14\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E1F\u0E31\u0E07\u0E01\u0E4C\u0E0A\u0E31\u0E19\u0E19\u0E35\u0E49\u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E25\u0E07\u0E0A\u0E37\u0E48\u0E2D\u0E40\u0E02\u0E49\u0E32\u0E43\u0E0A\u0E49\u0E14\u0E49\u0E27\u0E22\u0E1A\u0E31\u0E0D\u0E0A\u0E35 Google \u0E2B\u0E23\u0E37\u0E2D GitHub \u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13; \u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A\u0E43\u0E2B\u0E49\u0E41\u0E19\u0E48\u0E43\u0E08\u0E27\u0E48\u0E32\u0E04\u0E38\u0E13\u0E43\u0E0A\u0E49\u0E1A\u0E31\u0E0D\u0E0A\u0E35\u0E40\u0E14\u0E35\u0E22\u0E27\u0E01\u0E31\u0E19\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E01\u0E32\u0E23\u0E14\u0E33\u0E40\u0E19\u0E34\u0E19\u0E01\u0E32\u0E23 Homebridge \u0E43\u0E19\u0E41\u0E2D\u0E1B Google Home \u0E1A\u0E19\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E04\u0E25\u0E37\u0E48\u0E2D\u0E19\u0E17\u0E35\u0E48","plugins.settings.custom.homebridge-gsh.message_homebridge_restart_required":"Homebridge \u0E15\u0E49\u0E2D\u0E07\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E43\u0E2B\u0E49\u0E01\u0E32\u0E23\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E41\u0E1B\u0E25\u0E07\u0E21\u0E35\u0E1C\u0E25","plugins.settings.custom.homebridge-gsh.message_invalid_token":"\u0E42\u0E17\u0E40\u0E04\u0E47\u0E19\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E42\u0E22\u0E07\u0E1A\u0E31\u0E0D\u0E0A\u0E35\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07\u0E43\u0E19 config.json","plugins.settings.deconz.dump_no_exist":"\u0E44\u0E1F\u0E25\u0E4C\u0E14\u0E31\u0E21\u0E1E\u0E4C Homebridge deCONZ \u0E22\u0E31\u0E07\u0E44\u0E21\u0E48\u0E21\u0E35\u0E2D\u0E22\u0E39\u0E48","plugins.settings.hue.dump_no_exist":"\u0E44\u0E1F\u0E25\u0E4C\u0E14\u0E31\u0E21\u0E1E\u0E4C Homebridge Hue \u0E22\u0E31\u0E07\u0E44\u0E21\u0E48\u0E21\u0E35\u0E2D\u0E22\u0E39\u0E48","plugins.settings.label_open_config_editor":"\u0E40\u0E1B\u0E34\u0E14 Config Editor","plugins.settings.message_consult_documentation":"\u0E42\u0E1B\u0E23\u0E14\u0E14\u0E39\u0E40\u0E2D\u0E01\u0E2A\u0E32\u0E23\u0E1B\u0E23\u0E30\u0E01\u0E2D\u0E1A\u0E02\u0E2D\u0E07\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E04\u0E33\u0E41\u0E19\u0E30\u0E19\u0E33\u0E43\u0E19\u0E01\u0E32\u0E23\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E04\u0E48\u0E32\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E19\u0E35\u0E49\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07","plugins.settings.message_manual_config_required":"\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E02\u0E2D\u0E07\u0E40\u0E02\u0E32\u0E15\u0E49\u0E2D\u0E07\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E04\u0E48\u0E32\u0E14\u0E49\u0E27\u0E22\u0E15\u0E19\u0E40\u0E2D\u0E07\u0E42\u0E14\u0E22\u0E43\u0E0A\u0E49 Homebridge UI Config Editor","plugins.settings.plugin_config_saved":"\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E01\u0E32\u0E23\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E04\u0E48\u0E32\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E41\u0E25\u0E49\u0E27","plugins.settings.restart_required":"\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17 Homebridge \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E43\u0E0A\u0E49\u0E01\u0E32\u0E23\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E41\u0E1B\u0E25\u0E07","plugins.settings.title_settings":"\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32","plugins.status_disabled":"\u0E1B\u0E34\u0E14\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19","plugins.status_installed":"\u0E15\u0E34\u0E14\u0E15\u0E31\u0E49\u0E07\u0E41\u0E25\u0E49\u0E27","plugins.toast_failed_to_load_plugin_schema":"\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E42\u0E2B\u0E25\u0E14\u0E42\u0E04\u0E23\u0E07\u0E23\u0E48\u0E32\u0E07\u0E01\u0E32\u0E23\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E04\u0E48\u0E32\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E44\u0E14\u0E49","plugins.toast_failed_to_load_plugins":"\u0E42\u0E2B\u0E25\u0E14\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E44\u0E21\u0E48\u0E2A\u0E33\u0E40\u0E23\u0E47\u0E08","plugins.uninstall_bridge_error":"\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E25\u0E1A\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22\u0E44\u0E14\u0E49","plugins.uninstall_remove_config_required":"\u0E2B\u0E32\u0E01\u0E04\u0E38\u0E13\u0E01\u0E33\u0E25\u0E31\u0E07\u0E25\u0E1A\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E19\u0E35\u0E49\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E16\u0E32\u0E27\u0E23\u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A\u0E43\u0E2B\u0E49\u0E41\u0E19\u0E48\u0E43\u0E08\u0E27\u0E48\u0E32\u0E04\u0E38\u0E13\u0E44\u0E14\u0E49\u0E25\u0E1A\u0E01\u0E32\u0E23\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E04\u0E48\u0E32\u0E43\u0E14 \u0E46 \u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E19\u0E35\u0E49\u0E43\u0E19 config.json \u0E01\u0E48\u0E2D\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17 Homebridge","plugins.uninstall_remove_confirmation":"\u0E41\u0E19\u0E48\u0E43\u0E08\u0E44\u0E2B\u0E21\u0E27\u0E48\u0E32\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E16\u0E2D\u0E19\u0E01\u0E32\u0E23\u0E15\u0E34\u0E14\u0E15\u0E31\u0E49\u0E07 {{ pluginName }}?","plugins.uninstall_remove_plugin_config":"\u0E25\u0E1A plugin config \u0E14\u0E49\u0E27\u0E22\u0E2B\u0E23\u0E37\u0E2D\u0E44\u0E21\u0E48","plugins.uninstall_unpair_child_bridge":"\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E01\u0E32\u0E23\u0E08\u0E31\u0E1A\u0E04\u0E39\u0E48\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22?","plugins.uninstall_unpair_child_bridges":"\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E01\u0E32\u0E23\u0E08\u0E31\u0E1A\u0E04\u0E39\u0E48\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19 {{ count }} \u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22?","reset.accessory_reset":"\u0E23\u0E35\u0E40\u0E0B\u0E47\u0E15\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21 Homebridge","reset.action_is_irreversible":"\u0E01\u0E32\u0E23\u0E01\u0E23\u0E30\u0E17\u0E33\u0E19\u0E35\u0E49\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E22\u0E49\u0E2D\u0E19\u0E01\u0E25\u0E31\u0E1A\u0E44\u0E14\u0E49 \u0E42\u0E1B\u0E23\u0E14\u0E2D\u0E48\u0E32\u0E19\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E25\u0E30\u0E40\u0E2D\u0E35\u0E22\u0E14\u0E01\u0E48\u0E2D\u0E19\u0E14\u0E33\u0E40\u0E19\u0E34\u0E19\u0E01\u0E32\u0E23\u0E15\u0E48\u0E2D","reset.bridges.desc":"\u0E2B\u0E32\u0E01\u0E04\u0E38\u0E13\u0E1B\u0E23\u0E30\u0E2A\u0E1A\u0E1B\u0E31\u0E0D\u0E2B\u0E32\u0E43\u0E19\u0E01\u0E32\u0E23\u0E08\u0E31\u0E1A\u0E04\u0E39\u0E48 Homebridge \u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E20\u0E32\u0E22\u0E19\u0E2D\u0E01 \u0E2B\u0E23\u0E37\u0E2D\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22\u0E01\u0E31\u0E1A HomeKit \u0E04\u0E38\u0E13\u0E2D\u0E32\u0E08\u0E15\u0E49\u0E2D\u0E07\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E01\u0E32\u0E23\u0E08\u0E31\u0E1A\u0E04\u0E39\u0E48\u0E01\u0E31\u0E1A HomeKit \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19\u0E43\u0E2B\u0E21\u0E48\u0E2D\u0E35\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07","reset.bridges.empty":"\u0E04\u0E38\u0E13\u0E44\u0E21\u0E48\u0E21\u0E35\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E17\u0E35\u0E48\u0E08\u0E30\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E01\u0E32\u0E23\u0E08\u0E31\u0E1A\u0E04\u0E39\u0E48\u0E01\u0E31\u0E1A HomeKit","reset.bridges.title":"\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C","reset.bridges_all.desc":"\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E01\u0E32\u0E23\u0E08\u0E31\u0E1A\u0E04\u0E39\u0E48\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E08\u0E32\u0E01 HomeKit \u0E0B\u0E36\u0E48\u0E07\u0E23\u0E27\u0E21\u0E16\u0E36\u0E07\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C Homebridge \u0E2B\u0E25\u0E31\u0E01\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22 \u0E41\u0E25\u0E30\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E20\u0E32\u0E22\u0E19\u0E2D\u0E01","reset.bridges_all.list_1":"\u0E01\u0E32\u0E23\u0E14\u0E33\u0E40\u0E19\u0E34\u0E19\u0E01\u0E32\u0E23\u0E19\u0E35\u0E49\u0E08\u0E30\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E01\u0E32\u0E23\u0E08\u0E31\u0E1A\u0E04\u0E39\u0E48 Homebridge Bridge, \u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14 \u0E41\u0E25\u0E30 \u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E20\u0E32\u0E22\u0E19\u0E2D\u0E01\u0E08\u0E32\u0E01 HomeKit","reset.bridges_all.list_2":"\u0E42\u0E1B\u0E23\u0E14\u0E17\u0E23\u0E32\u0E1A\u0E27\u0E48\u0E32\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E08\u0E30\u0E22\u0E31\u0E07\u0E04\u0E07\u0E41\u0E2A\u0E14\u0E07\u0E43\u0E19 HomeKit \u0E42\u0E14\u0E22\u0E44\u0E21\u0E48\u0E21\u0E35\u0E01\u0E32\u0E23\u0E15\u0E2D\u0E1A\u0E2A\u0E19\u0E2D\u0E07 \u0E08\u0E19\u0E01\u0E27\u0E48\u0E32\u0E08\u0E30\u0E16\u0E2D\u0E14\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E2D\u0E2D\u0E01\u0E08\u0E32\u0E01 HomeKit \u0E14\u0E49\u0E27\u0E22\u0E15\u0E19\u0E40\u0E2D\u0E07 \u0E04\u0E38\u0E13\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E17\u0E33\u0E44\u0E14\u0E49\u0E43\u0E19\u0E41\u0E2D\u0E1B Home \u0E42\u0E14\u0E22\u0E40\u0E02\u0E49\u0E32\u0E44\u0E1B\u0E17\u0E35\u0E48 Home Settings \u2192 Home Hubs & Bridges \u2192 {Bridge} \u2192 Remove Bridge from Home","reset.bridges_all.list_3":"\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21 \u0E09\u0E32\u0E01 \u0E41\u0E25\u0E30\u0E23\u0E30\u0E1A\u0E1A\u0E2D\u0E31\u0E15\u0E42\u0E19\u0E21\u0E31\u0E15\u0E34 Homebridge to HomeKit \u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E08\u0E30\u0E15\u0E49\u0E2D\u0E07\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E04\u0E48\u0E32\u0E43\u0E2B\u0E21\u0E48\u0E2B\u0E25\u0E31\u0E07\u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E01\u0E32\u0E23\u0E08\u0E31\u0E1A\u0E04\u0E39\u0E48","reset.bridges_all.list_4":"\u0E1E\u0E34\u0E19\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E08\u0E31\u0E1A\u0E04\u0E39\u0E48 Homebridge Bridge \u0E01\u0E31\u0E1A HomeKit \u0E08\u0E30\u0E16\u0E39\u0E01\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E41\u0E1B\u0E25\u0E07 \u0E04\u0E38\u0E13\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E14\u0E39\u0E04\u0E48\u0E32\u0E43\u0E2B\u0E21\u0E48\u0E43\u0E19\u0E04\u0E2D\u0E19\u0E1F\u0E34\u0E01 Homebridge \u0E44\u0E14\u0E49\u0E2B\u0E25\u0E31\u0E07\u0E08\u0E32\u0E01\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E01\u0E32\u0E23\u0E08\u0E31\u0E1A\u0E04\u0E39\u0E48","reset.bridges_all.title":"\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E01\u0E32\u0E23\u0E08\u0E31\u0E1A\u0E04\u0E39\u0E48\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14","reset.bridges_single.desc":"\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E01\u0E32\u0E23\u0E08\u0E31\u0E1A\u0E04\u0E39\u0E48\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E40\u0E14\u0E35\u0E48\u0E22\u0E27\u0E08\u0E32\u0E01 HomeKit \u0E2D\u0E32\u0E08\u0E40\u0E1B\u0E47\u0E19\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22\u0E2B\u0E23\u0E37\u0E2D\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E20\u0E32\u0E22\u0E19\u0E2D\u0E01 \u0E40\u0E0A\u0E48\u0E19 \u0E01\u0E25\u0E49\u0E2D\u0E07\u0E2B\u0E23\u0E37\u0E2D\u0E17\u0E35\u0E27\u0E35","reset.bridges_single.list_1":"\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E01\u0E32\u0E23\u0E08\u0E31\u0E1A\u0E04\u0E39\u0E48\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C \u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E43\u0E14 \u0E46 \u0E17\u0E35\u0E48\u0E40\u0E1C\u0E22\u0E41\u0E1E\u0E23\u0E48\u0E42\u0E14\u0E22\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E19\u0E35\u0E49\u0E08\u0E30\u0E16\u0E39\u0E01\u0E25\u0E1A\u0E2D\u0E2D\u0E01\u0E08\u0E32\u0E01\u0E41\u0E04\u0E0A\u0E42\u0E2E\u0E21\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C","reset.bridges_single.list_2":"\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E15\u0E48\u0E32\u0E07\u0E46 \u0E08\u0E30\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E44\u0E14\u0E49\u0E2D\u0E35\u0E01\u0E15\u0E48\u0E2D\u0E44\u0E1B\u0E43\u0E19 HomeKit (\u0E44\u0E21\u0E48\u0E41\u0E2A\u0E14\u0E07\u0E01\u0E32\u0E23\u0E15\u0E2D\u0E1A\u0E2A\u0E19\u0E2D\u0E07\u0E43\u0E14\u0E46) \u0E2B\u0E32\u0E01\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E19\u0E33\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E40\u0E2B\u0E25\u0E48\u0E32\u0E19\u0E35\u0E49\u0E2D\u0E2D\u0E01 \u0E04\u0E38\u0E13\u0E08\u0E30\u0E15\u0E49\u0E2D\u0E07\u0E19\u0E33\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E19\u0E35\u0E49\u0E2D\u0E2D\u0E01\u0E08\u0E32\u0E01 HomeKit \u0E14\u0E49\u0E27\u0E22\u0E15\u0E19\u0E40\u0E2D\u0E07 \u0E04\u0E38\u0E13\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E17\u0E33\u0E44\u0E14\u0E49\u0E43\u0E19\u0E41\u0E2D\u0E1B Home \u0E08\u0E32\u0E01\u0E2A\u0E48\u0E27\u0E19\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32 Home","reset.bridges_single.list_3":"\u0E08\u0E32\u0E01\u0E19\u0E31\u0E49\u0E19\u0E04\u0E38\u0E13\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E1E\u0E22\u0E32\u0E22\u0E32\u0E21\u0E08\u0E31\u0E1A\u0E04\u0E39\u0E48\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E2D\u0E35\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07\u0E2B\u0E32\u0E01\u0E08\u0E33\u0E40\u0E1B\u0E47\u0E19","reset.bridges_single.title":"\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E01\u0E32\u0E23\u0E08\u0E31\u0E1A\u0E04\u0E39\u0E48\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E14\u0E35\u0E48\u0E22\u0E27","reset.cached_accessory_removed":"\u0E19\u0E33\u0E41\u0E04\u0E0A\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E17\u0E35\u0E48\u0E40\u0E01\u0E47\u0E1A\u0E44\u0E27\u0E49\u0E2D\u0E2D\u0E01","reset.clear_cache_all.desc":"\u0E16\u0E2D\u0E14\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E2D\u0E2D\u0E01\u0E08\u0E32\u0E01\u0E41\u0E04\u0E0A","reset.clear_cache_all.list_1":"\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E04\u0E25\u0E34\u0E01\u0E17\u0E35\u0E48\u0E1B\u0E38\u0E48\u0E21\u0E25\u0E1A\u0E14\u0E49\u0E32\u0E19\u0E25\u0E48\u0E32\u0E07 Homebridge \u0E08\u0E30\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17\u0E41\u0E25\u0E30\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E17\u0E35\u0E48\u0E21\u0E35\u0E2D\u0E22\u0E39\u0E48\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E08\u0E30\u0E16\u0E39\u0E01\u0E25\u0E1A\u0E2D\u0E2D\u0E01\u0E08\u0E32\u0E01 Homebridge \u0E41\u0E25\u0E30 HomeKit","reset.clear_cache_all.list_2":"\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25 HomeKit \u0E17\u0E35\u0E48\u0E40\u0E01\u0E35\u0E48\u0E22\u0E27\u0E02\u0E49\u0E2D\u0E07\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E08\u0E30\u0E16\u0E39\u0E01\u0E25\u0E1A\u0E2D\u0E2D\u0E01\u0E14\u0E49\u0E27\u0E22 \u0E0B\u0E36\u0E48\u0E07\u0E23\u0E27\u0E21\u0E16\u0E36\u0E07\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E42\u0E22\u0E07\u0E2B\u0E49\u0E2D\u0E07 \u0E09\u0E32\u0E01 \u0E41\u0E25\u0E30\u0E23\u0E30\u0E1A\u0E1A\u0E2D\u0E31\u0E15\u0E42\u0E19\u0E21\u0E31\u0E15\u0E34\u0E17\u0E35\u0E48\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E19\u0E35\u0E49\u0E43\u0E0A\u0E49","reset.clear_cache_all.list_3":"\u0E2B\u0E25\u0E31\u0E07\u0E08\u0E32\u0E01\u0E17\u0E35\u0E48 Homebridge \u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17 \u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E08\u0E30\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E15\u0E48\u0E32\u0E07\u0E46 \u0E2D\u0E35\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07\u0E23\u0E32\u0E27\u0E01\u0E31\u0E1A\u0E27\u0E48\u0E32\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E01\u0E33\u0E25\u0E31\u0E07\u0E16\u0E39\u0E01\u0E15\u0E34\u0E14\u0E15\u0E31\u0E49\u0E07\u0E40\u0E1B\u0E47\u0E19\u0E04\u0E23\u0E31\u0E49\u0E07\u0E41\u0E23\u0E01","reset.clear_cache_all.title":"\u0E16\u0E2D\u0E14\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E2D\u0E2D\u0E01","reset.clear_cache_bridge.desc":"\u0E25\u0E1A\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E17\u0E35\u0E48\u0E40\u0E1C\u0E22\u0E41\u0E1E\u0E23\u0E48\u0E42\u0E14\u0E22\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E2D\u0E2D\u0E01\u0E08\u0E32\u0E01\u0E41\u0E04\u0E0A","reset.clear_cache_bridge.empty":"\u0E04\u0E38\u0E13\u0E44\u0E21\u0E48\u0E21\u0E35\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E17\u0E35\u0E48\u0E08\u0E30\u0E16\u0E2D\u0E14\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E2D\u0E2D\u0E01","reset.clear_cache_bridge.list_1":"\u0E1F\u0E31\u0E07\u0E01\u0E4C\u0E0A\u0E31\u0E48\u0E19\u0E19\u0E35\u0E49\u0E43\u0E0A\u0E49\u0E23\u0E35\u0E40\u0E0B\u0E47\u0E15\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E17\u0E35\u0E48\u0E21\u0E35\u0E2D\u0E22\u0E39\u0E48\u0E02\u0E2D\u0E07\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E43\u0E19 HomeKit \u0E44\u0E14\u0E49 \u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E40\u0E2B\u0E25\u0E48\u0E32\u0E19\u0E35\u0E49\u0E08\u0E30\u0E16\u0E39\u0E01\u0E25\u0E1A\u0E2D\u0E2D\u0E01\u0E08\u0E32\u0E01 Homebridge/HomeKit \u0E08\u0E32\u0E01\u0E19\u0E31\u0E49\u0E19\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E08\u0E30\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E43\u0E2B\u0E21\u0E48\u0E40\u0E02\u0E49\u0E32\u0E44\u0E1B\u0E2D\u0E35\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07.","reset.clear_cache_bridge.list_2":"\u0E23\u0E32\u0E22\u0E25\u0E30\u0E40\u0E2D\u0E35\u0E22\u0E14\u0E41\u0E25\u0E30\u0E2A\u0E16\u0E32\u0E19\u0E30\u0E01\u0E32\u0E23\u0E08\u0E31\u0E1A\u0E04\u0E39\u0E48\u0E02\u0E2D\u0E07\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22\u0E08\u0E30\u0E22\u0E31\u0E07\u0E04\u0E07\u0E40\u0E2B\u0E21\u0E37\u0E2D\u0E19\u0E40\u0E14\u0E34\u0E21","reset.clear_cache_bridge.title":"\u0E16\u0E2D\u0E14\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C","reset.clear_cache_single.desc":"\u0E25\u0E1A\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E0A\u0E34\u0E49\u0E19\u0E40\u0E14\u0E35\u0E22\u0E27\u0E2D\u0E2D\u0E01\u0E08\u0E32\u0E01\u0E41\u0E04\u0E0A","reset.clear_cache_single.list_1":"\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E1A\u0E32\u0E07\u0E15\u0E31\u0E27\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E17\u0E33\u0E04\u0E27\u0E32\u0E21\u0E2A\u0E30\u0E2D\u0E32\u0E14\u0E15\u0E31\u0E27\u0E40\u0E2D\u0E07\u0E44\u0E14\u0E49\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E40\u0E2B\u0E21\u0E32\u0E30\u0E2A\u0E21! \u0E2B\u0E32\u0E01\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E44\u0E21\u0E48\u0E21\u0E35\u0E43\u0E19 Homebridge \u0E2D\u0E35\u0E01\u0E15\u0E48\u0E2D\u0E44\u0E1B\u0E22\u0E31\u0E07\u0E04\u0E07\u0E41\u0E2A\u0E14\u0E07\u0E2D\u0E22\u0E39\u0E48\u0E43\u0E19 HomeKit \u0E04\u0E38\u0E13\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E25\u0E1A\u0E2D\u0E2D\u0E01\u0E08\u0E32\u0E01\u0E41\u0E04\u0E0A\u0E44\u0E14\u0E49","reset.clear_cache_single.list_2":"\u0E1F\u0E31\u0E07\u0E01\u0E4C\u0E0A\u0E31\u0E48\u0E19\u0E19\u0E35\u0E49\u0E22\u0E31\u0E07\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E43\u0E0A\u0E49\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E23\u0E35\u0E40\u0E0B\u0E47\u0E15\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E17\u0E35\u0E48\u0E21\u0E35\u0E2D\u0E22\u0E39\u0E48\u0E43\u0E19 HomeKit \u0E44\u0E14\u0E49 \u0E42\u0E14\u0E22\u0E08\u0E30\u0E16\u0E39\u0E01\u0E25\u0E1A\u0E2D\u0E2D\u0E01\u0E08\u0E32\u0E01 Homebridge/HomeKit \u0E08\u0E32\u0E01\u0E19\u0E31\u0E49\u0E19\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E08\u0E30\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E43\u0E2B\u0E21\u0E48\u0E40\u0E02\u0E49\u0E32\u0E44\u0E1B\u0E2D\u0E35\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07","reset.clear_cache_single.list_3":"\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E19\u0E33\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E2D\u0E2D\u0E01\u0E08\u0E32\u0E01\u0E41\u0E04\u0E0A \u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25 HomeKit \u0E17\u0E35\u0E48\u0E40\u0E01\u0E35\u0E48\u0E22\u0E27\u0E02\u0E49\u0E2D\u0E07\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E08\u0E30\u0E16\u0E39\u0E01\u0E25\u0E1A\u0E2D\u0E2D\u0E01 \u0E0B\u0E36\u0E48\u0E07\u0E23\u0E27\u0E21\u0E16\u0E36\u0E07\u0E09\u0E32\u0E01\u0E41\u0E25\u0E30\u0E01\u0E32\u0E23\u0E17\u0E33\u0E07\u0E32\u0E19\u0E2D\u0E31\u0E15\u0E42\u0E19\u0E21\u0E31\u0E15\u0E34\u0E17\u0E35\u0E48\u0E40\u0E01\u0E35\u0E48\u0E22\u0E27\u0E02\u0E49\u0E2D\u0E07\u0E17\u0E35\u0E48\u0E43\u0E0A\u0E49\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E19\u0E35\u0E49\u0E14\u0E49\u0E27\u0E22","reset.clear_cache_single.list_4":"\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E16\u0E2D\u0E14\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E2D\u0E2D\u0E01\u0E44\u0E14\u0E49\u0E40\u0E09\u0E1E\u0E32\u0E30\u0E40\u0E21\u0E37\u0E48\u0E2D Homebridge \u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E17\u0E33\u0E07\u0E32\u0E19 Homebridge \u0E08\u0E30\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17\u0E42\u0E14\u0E22\u0E2D\u0E31\u0E15\u0E42\u0E19\u0E21\u0E31\u0E15\u0E34\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E04\u0E25\u0E34\u0E01\u0E1B\u0E38\u0E48\u0E21\u0E25\u0E1A\u0E41\u0E15\u0E48\u0E25\u0E30\u0E1B\u0E38\u0E48\u0E21\u0E14\u0E49\u0E32\u0E19\u0E25\u0E48\u0E32\u0E07 \u0E2B\u0E32\u0E01\u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E16\u0E2D\u0E14\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E2B\u0E25\u0E32\u0E22\u0E0A\u0E34\u0E49\u0E19 \u0E42\u0E1B\u0E23\u0E14\u0E2D\u0E14\u0E17\u0E19\u0E41\u0E25\u0E30\u0E1B\u0E25\u0E48\u0E2D\u0E22\u0E43\u0E2B\u0E49 Homebridge \u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17\u0E23\u0E30\u0E2B\u0E27\u0E48\u0E32\u0E07\u0E01\u0E32\u0E23\u0E16\u0E2D\u0E14\u0E41\u0E15\u0E48\u0E25\u0E30\u0E04\u0E23\u0E31\u0E49\u0E07","reset.clear_cache_single.title":"\u0E16\u0E2D\u0E14\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E0A\u0E34\u0E49\u0E19\u0E40\u0E14\u0E35\u0E22\u0E27\u0E2D\u0E2D\u0E01","reset.delete_failed":"\u0E25\u0E1A\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E44\u0E21\u0E48\u0E2A\u0E33\u0E40\u0E23\u0E47\u0E08","reset.delete_success":"\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17 Homebridge \u0E41\u0E25\u0E30\u0E25\u0E49\u0E32\u0E07\u0E41\u0E04\u0E0A\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21","reset.error_message":"\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E42\u0E2B\u0E25\u0E14\u0E41\u0E04\u0E0A\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E44\u0E14\u0E49 \u0E04\u0E38\u0E13\u0E2D\u0E32\u0E08\u0E44\u0E21\u0E48\u0E21\u0E35\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E17\u0E35\u0E48\u0E41\u0E04\u0E0A\u0E44\u0E27\u0E49","reset.failed_to_reset":"\u0E23\u0E35\u0E40\u0E0B\u0E47\u0E15 Homebridge \u0E44\u0E21\u0E48\u0E2A\u0E33\u0E40\u0E23\u0E47\u0E08 \u0E14\u0E39\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01","reset.force_restart_hb_help_text":"\u0E43\u0E0A\u0E49\u0E01\u0E32\u0E23\u0E14\u0E33\u0E40\u0E19\u0E34\u0E19\u0E01\u0E32\u0E23\u0E19\u0E35\u0E49\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E1A\u0E31\u0E07\u0E04\u0E31\u0E1A\u0E43\u0E2B\u0E49\u0E1A\u0E23\u0E34\u0E01\u0E32\u0E23 hb-service \u0E17\u0E33\u0E01\u0E32\u0E23\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14","reset.remove_cached_accessories_single_empty":"\u0E04\u0E38\u0E13\u0E44\u0E21\u0E48\u0E21\u0E35\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E17\u0E35\u0E48\u0E41\u0E04\u0E0A\u0E44\u0E27\u0E49\u0E17\u0E35\u0E48\u0E08\u0E30\u0E25\u0E1A\u0E2D\u0E2D\u0E01","reset.removing_cached_accessory_please_wait":"\u0E01\u0E33\u0E25\u0E31\u0E07\u0E25\u0E1A\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E2D\u0E2D\u0E01\u0E08\u0E32\u0E01\u0E41\u0E04\u0E0A\u0E42\u0E1B\u0E23\u0E14\u0E23\u0E2D\u0E2A\u0E31\u0E01\u0E04\u0E23\u0E39\u0E48\u2026","restart.child_bridge_list":"\u0E01\u0E23\u0E38\u0E13\u0E32\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22\u0E40\u0E2B\u0E25\u0E48\u0E32\u0E19\u0E35\u0E49\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E43\u0E2B\u0E49\u0E01\u0E32\u0E23\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E41\u0E1B\u0E25\u0E07\u0E21\u0E35\u0E1C\u0E25:","restart.child_bridges":"\u0E42\u0E1B\u0E23\u0E14\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22\u0E02\u0E2D\u0E07\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E43\u0E2B\u0E49\u0E01\u0E32\u0E23\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E41\u0E1B\u0E25\u0E07\u0E21\u0E35\u0E1C\u0E25","restart.homebridge":"\u0E42\u0E1B\u0E23\u0E14\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17 Homebridge \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E43\u0E2B\u0E49\u0E01\u0E32\u0E23\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E41\u0E1B\u0E25\u0E07\u0E21\u0E35\u0E1C\u0E25","restart.label_restart_command_executed":"\u0E04\u0E33\u0E2A\u0E31\u0E48\u0E07\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17\u0E14\u0E33\u0E40\u0E19\u0E34\u0E19\u0E01\u0E32\u0E23\u0E41\u0E25\u0E49\u0E27","restart.please_wait_while_server_restarts":"\u0E42\u0E1B\u0E23\u0E14\u0E23\u0E2D\u0E2A\u0E31\u0E01\u0E04\u0E23\u0E39\u0E48\u0E2B\u0E19\u0E49\u0E32\u0E19\u0E35\u0E49\u0E08\u0E30\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E40\u0E2A\u0E49\u0E19\u0E17\u0E32\u0E07\u0E42\u0E14\u0E22\u0E2D\u0E31\u0E15\u0E42\u0E19\u0E21\u0E31\u0E15\u0E34\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E01\u0E25\u0E31\u0E1A\u0E21\u0E32\u0E2D\u0E2D\u0E19\u0E44\u0E25\u0E19\u0E4C","restart.server_is_taking_long_time_to_restart":"\u0E01\u0E32\u0E23\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E43\u0E0A\u0E49\u0E40\u0E27\u0E25\u0E32\u0E19\u0E32\u0E19 \u0E04\u0E38\u0E13\u0E2D\u0E32\u0E08\u0E15\u0E49\u0E2D\u0E07\u0E40\u0E23\u0E35\u0E22\u0E01\u0E43\u0E0A\u0E49 Homebridge Service \u0E14\u0E49\u0E27\u0E22\u0E15\u0E19\u0E40\u0E2D\u0E07","restart.service_ready":"\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C Homebridge \u0E1E\u0E23\u0E49\u0E2D\u0E21","restart.title_restart":"\u0E01\u0E33\u0E25\u0E31\u0E07\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17 Homebridge","restart.toast_server_restart_error":"\u0E40\u0E01\u0E34\u0E14\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E43\u0E19\u0E01\u0E32\u0E23\u0E2A\u0E48\u0E07\u0E04\u0E33\u0E2A\u0E31\u0E48\u0E07\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17\u0E44\u0E1B\u0E22\u0E31\u0E07\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C","restart.toast_server_restart_timeout":"\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E43\u0E0A\u0E49\u0E40\u0E27\u0E25\u0E32\u0E19\u0E32\u0E19\u0E43\u0E19\u0E01\u0E32\u0E23\u0E01\u0E25\u0E31\u0E1A\u0E21\u0E32\u0E2D\u0E2D\u0E19\u0E44\u0E25\u0E19\u0E4C","restart.toast_server_restarted":"\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E41\u0E25\u0E49\u0E27","restart.ui_online":"Homebridge UI \u0E2D\u0E2D\u0E19\u0E44\u0E25\u0E19\u0E4C","rpi.throttled.currently_message":"Raspberry Pi \u0E19\u0E35\u0E49\u0E01\u0E33\u0E25\u0E31\u0E07\u0E23\u0E32\u0E22\u0E07\u0E32\u0E19\u0E27\u0E48\u0E32\u0E1B\u0E31\u0E08\u0E08\u0E38\u0E1A\u0E31\u0E19\u0E21\u0E35\u0E41\u0E23\u0E07\u0E14\u0E31\u0E19\u0E44\u0E1F\u0E1F\u0E49\u0E32\u0E15\u0E48\u0E33 \u0E42\u0E1B\u0E23\u0E14\u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A\u0E27\u0E48\u0E32\u0E44\u0E14\u0E49\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E01\u0E31\u0E1A\u0E41\u0E2B\u0E25\u0E48\u0E07\u0E08\u0E48\u0E32\u0E22\u0E44\u0E1F\u0E17\u0E35\u0E48\u0E40\u0E2B\u0E21\u0E32\u0E30\u0E2A\u0E21\u0E41\u0E25\u0E49\u0E27 \u0E41\u0E23\u0E07\u0E14\u0E31\u0E19\u0E44\u0E1F\u0E15\u0E48\u0E33\u0E2D\u0E32\u0E08\u0E2A\u0E48\u0E07\u0E1C\u0E25\u0E43\u0E2B\u0E49\u0E23\u0E30\u0E1A\u0E1A\u0E44\u0E21\u0E48\u0E40\u0E2A\u0E16\u0E35\u0E22\u0E23\u0E41\u0E25\u0E30\u0E01\u0E32\u0E23\u0E4C\u0E14 SD \u0E40\u0E2A\u0E35\u0E22\u0E2B\u0E32\u0E22","rpi.throttled.previously_message":"Raspberry Pi \u0E19\u0E35\u0E49\u0E23\u0E32\u0E22\u0E07\u0E32\u0E19\u0E40\u0E2B\u0E15\u0E38\u0E01\u0E32\u0E23\u0E13\u0E4C\u0E17\u0E35\u0E48\u0E21\u0E35\u0E41\u0E23\u0E07\u0E14\u0E31\u0E19\u0E44\u0E1F\u0E1F\u0E49\u0E32\u0E15\u0E48\u0E33\u0E15\u0E31\u0E49\u0E07\u0E41\u0E15\u0E48\u0E21\u0E35\u0E01\u0E32\u0E23\u0E23\u0E35\u0E1A\u0E39\u0E15\u0E04\u0E23\u0E31\u0E49\u0E07\u0E25\u0E48\u0E32\u0E2A\u0E38\u0E14 \u0E42\u0E1B\u0E23\u0E14\u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A\u0E27\u0E48\u0E32\u0E44\u0E14\u0E49\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E01\u0E31\u0E1A\u0E41\u0E2B\u0E25\u0E48\u0E07\u0E08\u0E48\u0E32\u0E22\u0E44\u0E1F\u0E17\u0E35\u0E48\u0E40\u0E2B\u0E21\u0E32\u0E30\u0E2A\u0E21\u0E41\u0E25\u0E49\u0E27","rpi.throttled.undervoltage_title":"\u0E15\u0E23\u0E27\u0E08\u0E1E\u0E1A\u0E41\u0E23\u0E07\u0E14\u0E31\u0E19\u0E44\u0E1F\u0E1F\u0E49\u0E32\u0E15\u0E48\u0E33","settings.cache.desc":"Homebridge \u0E08\u0E30\u0E40\u0E01\u0E47\u0E1A\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E44\u0E27\u0E49\u0E43\u0E19\u0E41\u0E04\u0E0A \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E44\u0E21\u0E48\u0E43\u0E2B\u0E49\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E40\u0E2B\u0E25\u0E48\u0E32\u0E19\u0E31\u0E49\u0E19\u0E16\u0E39\u0E01\u0E25\u0E1A\u0E2D\u0E2D\u0E01\u0E41\u0E25\u0E30\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E01\u0E25\u0E31\u0E1A\u0E40\u0E02\u0E49\u0E32\u0E44\u0E1B\u0E43\u0E19 HomeKit \u0E17\u0E38\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07\u0E17\u0E35\u0E48\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17 Homebridge \u0E1A\u0E32\u0E07\u0E04\u0E23\u0E31\u0E49\u0E07\u0E41\u0E04\u0E0A\u0E19\u0E35\u0E49\u0E2D\u0E32\u0E08\u0E44\u0E21\u0E48\u0E0B\u0E34\u0E07\u0E04\u0E4C\u0E01\u0E31\u0E1A\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E08\u0E23\u0E34\u0E07\u0E43\u0E19 Homebridge","settings.cache.title":"\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21","settings.changes.saved":"\u0E01\u0E32\u0E23\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E41\u0E1B\u0E25\u0E07\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E41\u0E25\u0E49\u0E27\u0E41\u0E25\u0E30\u0E15\u0E49\u0E2D\u0E07\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17\u0E08\u0E36\u0E07\u0E08\u0E30\u0E21\u0E35\u0E1C\u0E25.","settings.datetime.incorrect":"\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48\u0E41\u0E25\u0E30\u0E40\u0E27\u0E25\u0E32\u0E1A\u0E19\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C Homebridge \u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E14\u0E39\u0E40\u0E2B\u0E21\u0E37\u0E2D\u0E19\u0E08\u0E30\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 \u0E0B\u0E36\u0E48\u0E07\u0E2D\u0E32\u0E08\u0E17\u0E33\u0E43\u0E2B\u0E49\u0E40\u0E01\u0E34\u0E14\u0E1B\u0E31\u0E0D\u0E2B\u0E32\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E04\u0E32\u0E14\u0E04\u0E34\u0E14 \u0E04\u0E25\u0E34\u0E01\u0E17\u0E35\u0E48\u0E19\u0E35\u0E48\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E14\u0E39\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21","settings.display.blue":"\u0E2A\u0E35\u0E1F\u0E49\u0E32","settings.display.bluegrey":"\u0E2A\u0E35\u0E1F\u0E49\u0E32\u0E40\u0E17\u0E32","settings.display.brown":"\u0E2A\u0E35\u0E19\u0E49\u0E33\u0E15\u0E32\u0E25","settings.display.cyan":"\u0E2A\u0E35\u0E1F\u0E49\u0E32 Cyan","settings.display.dark":"\u0E21\u0E37\u0E14","settings.display.deep_purple":"\u0E2A\u0E35\u0E21\u0E48\u0E27\u0E07\u0E40\u0E02\u0E49\u0E21","settings.display.green":"\u0E2A\u0E35\u0E40\u0E02\u0E35\u0E22\u0E27","settings.display.grey":"\u0E2A\u0E35\u0E40\u0E17\u0E32","settings.display.indigo":"\u0E2A\u0E35\u0E04\u0E23\u0E32\u0E21","settings.display.lang":"\u0E20\u0E32\u0E29\u0E32","settings.display.light":"\u0E2A\u0E27\u0E48\u0E32\u0E07","settings.display.lighting_mode":"\u0E42\u0E2B\u0E21\u0E14\u0E41\u0E2A\u0E07\u0E2A\u0E27\u0E48\u0E32\u0E07","settings.display.login_wallpaper":"\u0E27\u0E2D\u0E25\u0E40\u0E1B\u0E40\u0E1B\u0E2D\u0E23\u0E4C\u0E40\u0E02\u0E49\u0E32\u0E2A\u0E39\u0E48\u0E23\u0E30\u0E1A\u0E1A","settings.display.login_wallpaper_desc":"\u0E04\u0E38\u0E13\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32\u0E27\u0E2D\u0E25\u0E40\u0E1B\u0E40\u0E1B\u0E2D\u0E23\u0E4C\u0E01\u0E32\u0E23\u0E40\u0E02\u0E49\u0E32\u0E2A\u0E39\u0E48\u0E23\u0E30\u0E1A\u0E1A\u0E41\u0E1A\u0E1A\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E40\u0E2D\u0E07\u0E44\u0E14\u0E49\u0E42\u0E14\u0E22\u0E01\u0E32\u0E23\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E44\u0E1F\u0E25\u0E4C <code>ui-wallpaper.jpg</code> \u0E25\u0E07\u0E43\u0E19\u0E44\u0E14\u0E40\u0E23\u0E47\u0E01\u0E17\u0E2D\u0E23\u0E35\u0E17\u0E35\u0E48\u0E08\u0E31\u0E14\u0E40\u0E01\u0E47\u0E1A\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25 Homebridge \u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13 \u0E2B\u0E23\u0E37\u0E2D\u0E42\u0E14\u0E22\u0E01\u0E32\u0E23\u0E23\u0E30\u0E1A\u0E38\u0E40\u0E2A\u0E49\u0E19\u0E17\u0E32\u0E07\u0E40\u0E15\u0E47\u0E21\u0E44\u0E1B\u0E22\u0E31\u0E07\u0E44\u0E1F\u0E25\u0E4C\u0E23\u0E39\u0E1B\u0E20\u0E32\u0E1E\u0E43\u0E19\u0E40\u0E04\u0E23\u0E37\u0E48\u0E2D\u0E07\u0E17\u0E35\u0E48\u0E19\u0E35\u0E48","settings.display.orange":"\u0E2A\u0E35\u0E2A\u0E49\u0E21","settings.display.pink":"\u0E2A\u0E35\u0E0A\u0E21\u0E1E\u0E39","settings.display.purple":"\u0E2A\u0E35\u0E21\u0E48\u0E27\u0E07","settings.display.red":"\u0E2A\u0E35\u0E2D\u0E14\u0E07","settings.display.teal":"\u0E2A\u0E35\u0E40\u0E1B\u0E47\u0E14\u0E40\u0E17\u0E32","settings.display.temp_units":"\u0E2B\u0E19\u0E48\u0E27\u0E22\u0E2D\u0E38\u0E13\u0E2B\u0E20\u0E39\u0E21\u0E34","settings.display.temp_units.c":"\u0E40\u0E0B\u0E25\u0E40\u0E0B\u0E35\u0E22\u0E2A (\xB0C)","settings.display.temp_units.f":"\u0E1F\u0E32\u0E40\u0E23\u0E19\u0E44\u0E2E\u0E15\u0E4C (\xB0F)","settings.display.theme":"\u0E18\u0E35\u0E21","settings.general.title_display":"\u0E01\u0E32\u0E23\u0E41\u0E14\u0E07\u0E1C\u0E25","settings.general.title_general":"\u0E17\u0E31\u0E48\u0E27\u0E44\u0E1B","settings.mdns_advertiser":"mDNS Advertiser","settings.mdns_advertiser_exp":"\u0E01\u0E32\u0E23\u0E17\u0E14\u0E25\u0E2D\u0E07","settings.mdns_advertiser_help":"\u0E2B\u0E32\u0E01\u0E04\u0E38\u0E13\u0E1B\u0E23\u0E30\u0E2A\u0E1A\u0E1B\u0E31\u0E0D\u0E2B\u0E32\u0E43\u0E19\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E01\u0E31\u0E1A Homebridge \u0E43\u0E2B\u0E49\u0E25\u0E2D\u0E07\u0E43\u0E0A\u0E49 mDNS \u0E23\u0E32\u0E22\u0E43\u0E14\u0E23\u0E32\u0E22\u0E2B\u0E19\u0E36\u0E48\u0E07.","settings.mdns_advertiser_not_connected":"\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D","settings.mdns_advertiser_rec":"\u0E17\u0E35\u0E48\u0E41\u0E19\u0E30\u0E19\u0E33","settings.network.label_interface_name":"\u0E0A\u0E37\u0E48\u0E2D\u0E2D\u0E34\u0E19\u0E40\u0E17\u0E2D\u0E23\u0E4C\u0E40\u0E1F\u0E0B","settings.network.label_ip_address":"IP Address","settings.network.message_network_interface":"\u0E2B\u0E32\u0E01\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E2D\u0E34\u0E19\u0E40\u0E17\u0E2D\u0E23\u0E4C\u0E40\u0E1F\u0E0B\u0E40\u0E04\u0E23\u0E37\u0E2D\u0E02\u0E48\u0E32\u0E22 Homebridge \u0E08\u0E30\u0E1E\u0E22\u0E32\u0E22\u0E32\u0E21\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E42\u0E14\u0E22\u0E2D\u0E31\u0E15\u0E42\u0E19\u0E21\u0E31\u0E15\u0E34\u0E27\u0E48\u0E32\u0E08\u0E30\u0E43\u0E0A\u0E49\u0E2D\u0E34\u0E19\u0E40\u0E17\u0E2D\u0E23\u0E4C\u0E40\u0E1F\u0E0B\u0E43\u0E14","settings.network.port_hb":"\u0E1E\u0E2D\u0E23\u0E4C\u0E15 Homebridge","settings.network.port_hb_desc":"\u0E2B\u0E21\u0E32\u0E22\u0E40\u0E25\u0E02\u0E1E\u0E2D\u0E23\u0E4C\u0E15\u0E17\u0E35\u0E48\u0E08\u0E30\u0E40\u0E23\u0E35\u0E22\u0E01\u0E43\u0E0A\u0E49 Homebridge bridge \u0E15\u0E49\u0E2D\u0E07\u0E2D\u0E22\u0E39\u0E48\u0E23\u0E30\u0E2B\u0E27\u0E48\u0E32\u0E07 1025 \u0E16\u0E36\u0E07 65533 \u0E41\u0E25\u0E30\u0E44\u0E21\u0E48\u0E04\u0E27\u0E23\u0E40\u0E1B\u0E47\u0E19\u0E2B\u0E21\u0E32\u0E22\u0E40\u0E25\u0E02\u0E40\u0E14\u0E35\u0E22\u0E27\u0E01\u0E31\u0E1A\u0E1E\u0E2D\u0E23\u0E4C\u0E15 Homebridge UI","settings.network.port_ui":"\u0E1E\u0E2D\u0E23\u0E4C\u0E15 UI","settings.network.port_ui_desc":"\u0E2B\u0E21\u0E32\u0E22\u0E40\u0E25\u0E02\u0E1E\u0E2D\u0E23\u0E4C\u0E15\u0E17\u0E35\u0E48\u0E08\u0E30\u0E23\u0E31\u0E19 Homebridge UI","settings.network.title_network":"\u0E40\u0E04\u0E23\u0E37\u0E2D\u0E02\u0E48\u0E32\u0E22","settings.network.title_network_interfaces":"\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E40\u0E04\u0E23\u0E37\u0E2D\u0E02\u0E48\u0E32\u0E22","settings.service.debug_tooltip":"\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E1A\u0E32\u0E07\u0E15\u0E31\u0E27\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E43\u0E2B\u0E49\u0E04\u0E38\u0E13\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32\u0E15\u0E31\u0E27\u0E41\u0E1B\u0E23\u0E2A\u0E20\u0E32\u0E1E\u0E41\u0E27\u0E14\u0E25\u0E49\u0E2D\u0E21 DEBUG \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E40\u0E1B\u0E34\u0E14\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E01\u0E32\u0E23\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E23\u0E30\u0E14\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E14\u0E35\u0E1A\u0E31\u0E01","settings.service.node_tooltip":"\u0E15\u0E31\u0E27\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E23\u0E31\u0E19\u0E44\u0E17\u0E21\u0E4C Node.js \u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E01\u0E23\u0E30\u0E1A\u0E27\u0E19\u0E01\u0E32\u0E23 Homebridge \u0E04\u0E27\u0E23\u0E40\u0E27\u0E49\u0E19\u0E27\u0E48\u0E32\u0E07\u0E44\u0E27\u0E49 \u0E22\u0E01\u0E40\u0E27\u0E49\u0E19\u0E41\u0E15\u0E48\u0E04\u0E38\u0E13\u0E08\u0E30\u0E23\u0E39\u0E49\u0E27\u0E48\u0E32\u0E04\u0E38\u0E13\u0E01\u0E33\u0E25\u0E31\u0E07\u0E17\u0E33\u0E2D\u0E30\u0E44\u0E23\u0E2D\u0E22\u0E39\u0E48","settings.startup.debug":"\u0E42\u0E2B\u0E21\u0E14 Debug Homebridge","settings.startup.debug_desc_v1":"\u0E40\u0E1B\u0E34\u0E14\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E15\u0E31\u0E27\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E19\u0E35\u0E49\u0E2B\u0E32\u0E01\u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E43\u0E2B\u0E49 Homebridge \u0E2A\u0E48\u0E07\u0E2D\u0E2D\u0E01\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E17\u0E35\u0E48\u0E21\u0E35\u0E23\u0E32\u0E22\u0E25\u0E30\u0E40\u0E2D\u0E35\u0E22\u0E14\u0E21\u0E32\u0E01\u0E02\u0E36\u0E49\u0E19 \u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32\u0E19\u0E35\u0E49\u0E43\u0E0A\u0E49\u0E44\u0E14\u0E49\u0E01\u0E31\u0E1A Homebridge bridge \u0E2B\u0E25\u0E31\u0E01\u0E41\u0E25\u0E30\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14 \u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E1A\u0E32\u0E07\u0E15\u0E31\u0E27\u0E2D\u0E32\u0E08\u0E22\u0E36\u0E14\u0E15\u0E32\u0E21\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32\u0E19\u0E35\u0E49\u0E41\u0E25\u0E30\u0E2A\u0E48\u0E07\u0E2D\u0E2D\u0E01\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E17\u0E35\u0E48\u0E21\u0E35\u0E23\u0E32\u0E22\u0E25\u0E30\u0E40\u0E2D\u0E35\u0E22\u0E14\u0E21\u0E32\u0E01\u0E02\u0E36\u0E49\u0E19","settings.startup.debug_desc_v2":"\u0E40\u0E1B\u0E34\u0E14\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E15\u0E31\u0E27\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E19\u0E35\u0E49\u0E2B\u0E32\u0E01\u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E43\u0E2B\u0E49 Homebridge \u0E2A\u0E48\u0E07\u0E2D\u0E2D\u0E01\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E17\u0E35\u0E48\u0E21\u0E35\u0E23\u0E32\u0E22\u0E25\u0E30\u0E40\u0E2D\u0E35\u0E22\u0E14\u0E21\u0E32\u0E01\u0E02\u0E36\u0E49\u0E19 \u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32\u0E19\u0E35\u0E49\u0E43\u0E0A\u0E49\u0E44\u0E14\u0E49\u0E01\u0E31\u0E1A\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C Homebridge \u0E2B\u0E25\u0E31\u0E01 \u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E1E\u0E1A\u0E44\u0E14\u0E49\u0E43\u0E19\u0E04\u0E2D\u0E19\u0E1F\u0E34\u0E01\u0E39\u0E40\u0E23\u0E0A\u0E31\u0E19\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22\u0E08\u0E32\u0E01\u0E2B\u0E19\u0E49\u0E32\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19 \u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E1A\u0E32\u0E07\u0E15\u0E31\u0E27\u0E2D\u0E32\u0E08\u0E22\u0E36\u0E14\u0E15\u0E32\u0E21\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32\u0E19\u0E35\u0E49\u0E41\u0E25\u0E30\u0E2A\u0E48\u0E07\u0E2D\u0E2D\u0E01\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E17\u0E35\u0E48\u0E21\u0E35\u0E23\u0E32\u0E22\u0E25\u0E30\u0E40\u0E2D\u0E35\u0E22\u0E14\u0E21\u0E32\u0E01\u0E02\u0E36\u0E49\u0E19","settings.startup.insecure":"Homebridge '\u0E42\u0E2B\u0E21\u0E14\u0E44\u0E21\u0E48\u0E1B\u0E25\u0E2D\u0E14\u0E20\u0E31\u0E22'","settings.startup.insecure_desc":"\u0E2B\u0E32\u0E01\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E04\u0E27\u0E1A\u0E04\u0E38\u0E21\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E1C\u0E48\u0E32\u0E19 Homebridge UI \u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19 Homebridge \u0E43\u0E19\u0E42\u0E2B\u0E21\u0E14\u0E44\u0E21\u0E48\u0E1B\u0E25\u0E2D\u0E14\u0E20\u0E31\u0E22","settings.startup.keep_accessories":"\u0E40\u0E01\u0E47\u0E1A\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E02\u0E2D\u0E07\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E17\u0E35\u0E48\u0E16\u0E2D\u0E19\u0E01\u0E32\u0E23\u0E15\u0E34\u0E14\u0E15\u0E31\u0E49\u0E07\u0E44\u0E27\u0E49","settings.startup.keep_accessories_desc":"\u0E2B\u0E32\u0E01\u0E40\u0E1B\u0E34\u0E14\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19 \u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E02\u0E2D\u0E07\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E41\u0E1E\u0E25\u0E15\u0E1F\u0E2D\u0E23\u0E4C\u0E21\u0E08\u0E30\u0E22\u0E31\u0E07\u0E04\u0E07\u0E2D\u0E22\u0E39\u0E48\u0E43\u0E19\u0E41\u0E04\u0E0A\u0E41\u0E21\u0E49\u0E27\u0E48\u0E32\u0E08\u0E30\u0E16\u0E2D\u0E19\u0E01\u0E32\u0E23\u0E15\u0E34\u0E14\u0E15\u0E31\u0E49\u0E07\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E41\u0E25\u0E49\u0E27\u0E01\u0E47\u0E15\u0E32\u0E21 \u0E0B\u0E36\u0E48\u0E07\u0E2D\u0E32\u0E08\u0E21\u0E35\u0E1B\u0E23\u0E30\u0E42\u0E22\u0E0A\u0E19\u0E4C\u0E2B\u0E32\u0E01\u0E04\u0E38\u0E13\u0E27\u0E32\u0E07\u0E41\u0E1C\u0E19\u0E08\u0E30\u0E15\u0E34\u0E14\u0E15\u0E31\u0E49\u0E07\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E43\u0E2B\u0E21\u0E48\u0E43\u0E19\u0E20\u0E32\u0E22\u0E2B\u0E25\u0E31\u0E07","settings.title_startup_options":"\u0E15\u0E31\u0E27\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E01\u0E32\u0E23\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19","settings.unpair_bridge.load_error":"\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E08\u0E31\u0E1A\u0E04\u0E39\u0E48\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E42\u0E2B\u0E25\u0E14\u0E44\u0E14\u0E49","settings.unpair_bridge.unpair_error":"\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E01\u0E32\u0E23\u0E08\u0E31\u0E1A\u0E04\u0E39\u0E48\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E44\u0E14\u0E49","setup.button_get_started":"\u0E40\u0E23\u0E34\u0E48\u0E21","setup.create_account":"\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E1A\u0E31\u0E0D\u0E0A\u0E35","setup.create_account_reason":"\u0E01\u0E32\u0E23\u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A\u0E23\u0E2B\u0E31\u0E2A\u0E1C\u0E48\u0E32\u0E19\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E40\u0E27\u0E47\u0E1A\u0E2D\u0E34\u0E19\u0E40\u0E15\u0E2D\u0E23\u0E4C\u0E40\u0E1F\u0E2A\u0E1C\u0E39\u0E49\u0E14\u0E39\u0E41\u0E25\u0E23\u0E30\u0E1A\u0E1A Homebridge \u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E04\u0E48\u0E32 \u0E41\u0E21\u0E49\u0E27\u0E48\u0E32 Homebridge \u0E08\u0E30\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E40\u0E02\u0E49\u0E32\u0E16\u0E36\u0E07\u0E44\u0E14\u0E49\u0E40\u0E09\u0E1E\u0E32\u0E30\u0E43\u0E19\u0E40\u0E04\u0E23\u0E37\u0E2D\u0E02\u0E48\u0E32\u0E22\u0E17\u0E49\u0E2D\u0E07\u0E16\u0E34\u0E48\u0E19\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13 \u0E01\u0E47\u0E22\u0E31\u0E07\u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E34\u0E48\u0E07\u0E2A\u0E33\u0E04\u0E31\u0E0D\u0E17\u0E35\u0E48\u0E08\u0E30\u0E15\u0E49\u0E2D\u0E07\u0E1B\u0E01\u0E1B\u0E49\u0E2D\u0E07\u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E40\u0E02\u0E49\u0E32\u0E16\u0E36\u0E07\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E08\u0E33\u0E01\u0E31\u0E14","setup.open_dashboard":"\u0E40\u0E1B\u0E34\u0E14\u0E41\u0E14\u0E0A\u0E1A\u0E2D\u0E23\u0E4C\u0E14","setup.welcome_to_homebridge":"\u0E22\u0E34\u0E19\u0E14\u0E35\u0E15\u0E49\u0E2D\u0E19\u0E23\u0E31\u0E1A\u0E2A\u0E39\u0E48 Homebridge",setup_wizard_message_complete_message:"\u0E02\u0E31\u0E49\u0E19\u0E15\u0E2D\u0E19\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32\u0E40\u0E2A\u0E23\u0E47\u0E08\u0E2A\u0E21\u0E1A\u0E39\u0E23\u0E13\u0E4C \u0E41\u0E25\u0E30\u0E15\u0E2D\u0E19\u0E19\u0E35\u0E49\u0E04\u0E38\u0E13\u0E01\u0E47\u0E1E\u0E23\u0E49\u0E2D\u0E21\u0E17\u0E35\u0E48\u0E08\u0E30\u0E40\u0E23\u0E34\u0E48\u0E21\u0E43\u0E0A\u0E49 Homebridge \u0E41\u0E25\u0E49\u0E27",setup_wizard_message_complete_title:"\u0E22\u0E34\u0E19\u0E14\u0E35\u0E14\u0E49\u0E27\u0E22!",setup_wizard_message_restore:"\u0E01\u0E39\u0E49\u0E04\u0E37\u0E19\u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E2A\u0E33\u0E23\u0E2D\u0E07\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25","status.code_scan":"\u0E2A\u0E41\u0E01\u0E19\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E25\u0E07\u0E43\u0E19 HomeKit","status.cpu.load":"\u0E42\u0E2B\u0E25\u0E14","status.cpu.temp":"\u0E2D\u0E38\u0E13\u0E2B\u0E20\u0E39\u0E21\u0E34","status.cpu.title_cpu":"CPU","status.credits.title":"\u0E40\u0E04\u0E23\u0E14\u0E34\u0E15","status.homebridge.checking":"\u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A\u0E01\u0E32\u0E23\u0E2D\u0E31\u0E1B\u0E40\u0E14\u0E17\u2026","status.homebridge.up_to_date":"\u0E40\u0E1B\u0E47\u0E19\u0E1B\u0E31\u0E08\u0E08\u0E38\u0E1A\u0E31\u0E19\u0E41\u0E25\u0E49\u0E27","status.memory.label_available":"\u0E40\u0E2B\u0E25\u0E37\u0E2D\u0E27\u0E48\u0E32\u0E07","status.memory.label_total":"\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14","status.memory.title_memory":"\u0E2B\u0E19\u0E48\u0E27\u0E22\u0E04\u0E27\u0E32\u0E21\u0E08\u0E33","status.network.received_per_second":"\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E41\u0E25\u0E49\u0E27","status.network.sent_per_second":"\u0E2A\u0E48\u0E07","status.network.title_network":"\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E40\u0E04\u0E23\u0E37\u0E2D\u0E02\u0E48\u0E32\u0E22","status.plugin_out_of_date":"\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E25\u0E49\u0E32\u0E2A\u0E21\u0E31\u0E22","status.plugins_out_of_date":"\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E25\u0E49\u0E32\u0E2A\u0E21\u0E31\u0E22","status.services.label_not_running":"\u0E44\u0E21\u0E48\u0E17\u0E33\u0E07\u0E32\u0E19","status.services.label_running":"\u0E01\u0E33\u0E25\u0E31\u0E07\u0E17\u0E33\u0E07\u0E32\u0E19","status.services.updates":"Update Centre","status.uptime.title_uptime":"\u0E23\u0E30\u0E22\u0E30\u0E40\u0E27\u0E25\u0E32\u0E40\u0E1B\u0E34\u0E14\u0E1A\u0E23\u0E34\u0E01\u0E32\u0E23","status.widget.accessories.choose_accessories":"\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E17\u0E35\u0E48\u0E08\u0E30\u0E41\u0E2A\u0E14\u0E07\u0E43\u0E19\u0E27\u0E34\u0E14\u0E40\u0E08\u0E47\u0E15\u0E19\u0E35\u0E49\u0E08\u0E32\u0E01\u0E41\u0E17\u0E47\u0E1A\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21","status.widget.add.label_pairing_code":"\u0E23\u0E2B\u0E31\u0E2A\u0E01\u0E32\u0E23\u0E08\u0E31\u0E1A\u0E04\u0E39\u0E48","status.widget.bridge.restart_error":"\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E23\u0E35\u0E2A\u0E15\u0E32\u0E23\u0E4C\u0E17\u0E1A\u0E23\u0E34\u0E14\u0E08\u0E4C\u0E22\u0E48\u0E2D\u0E22\u0E44\u0E14\u0E49","status.widget.clock":"\u0E19\u0E32\u0E2C\u0E34\u0E01\u0E32","status.widget.clock_dateformat":"\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48","status.widget.clock_timeformat":"\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E40\u0E27\u0E25\u0E32","status.widget.font_size":"\u0E02\u0E19\u0E32\u0E14\u0E15\u0E31\u0E27\u0E2D\u0E31\u0E01\u0E29\u0E23","status.widget.font_weight":"\u0E19\u0E49\u0E33\u0E2B\u0E19\u0E31\u0E01\u0E15\u0E31\u0E27\u0E2D\u0E31\u0E01\u0E29\u0E23","status.widget.hide_on_mobile":"\u0E0B\u0E48\u0E2D\u0E19\u0E43\u0E19\u0E21\u0E38\u0E21\u0E21\u0E2D\u0E07\u0E17\u0E35\u0E48\u0E01\u0E30\u0E17\u0E31\u0E14\u0E23\u0E31\u0E14 (\u0E08\u0E2D\u0E41\u0E2A\u0E14\u0E07\u0E1C\u0E25\u0E21\u0E37\u0E2D\u0E16\u0E37\u0E2D)","status.widget.homebridge_logs":"Homebridge Logs","status.widget.info":"\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E23\u0E30\u0E1A\u0E1A","status.widget.info.config_path":"\u0E40\u0E2A\u0E49\u0E19\u0E17\u0E32\u0E07\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E04\u0E48\u0E32","status.widget.info.disabled":"\u0E1B\u0E34\u0E14\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49","status.widget.info.docker":"Docker","status.widget.info.glibc_message":"\u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21\u0E19\u0E35\u0E49\u0E23\u0E30\u0E1A\u0E38\u0E27\u0E48\u0E32\u0E23\u0E30\u0E1A\u0E1A\u0E1B\u0E0F\u0E34\u0E1A\u0E31\u0E15\u0E34\u0E01\u0E32\u0E23\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E44\u0E21\u0E48\u0E23\u0E2D\u0E07\u0E23\u0E31\u0E1A Node.js \u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E19\u0E43\u0E2B\u0E21\u0E48\u0E01\u0E27\u0E48\u0E32 \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E41\u0E01\u0E49\u0E44\u0E02\u0E1B\u0E31\u0E0D\u0E2B\u0E32\u0E19\u0E35\u0E49\u0E41\u0E25\u0E30\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E15\u0E34\u0E14\u0E15\u0E31\u0E49\u0E07 Node.js \u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E19\u0E2D\u0E31\u0E1B\u0E40\u0E14\u0E15\u0E44\u0E14\u0E49\u0E43\u0E19\u0E2D\u0E19\u0E32\u0E04\u0E15 \u0E04\u0E38\u0E13\u0E08\u0E30\u0E15\u0E49\u0E2D\u0E07\u0E2D\u0E31\u0E1B\u0E40\u0E14\u0E15\u0E23\u0E30\u0E1A\u0E1A\u0E1B\u0E0F\u0E34\u0E1A\u0E31\u0E15\u0E34\u0E01\u0E32\u0E23\u0E40\u0E1B\u0E47\u0E19\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E19\u0E25\u0E48\u0E32\u0E2A\u0E38\u0E14","status.widget.info.glibc_title":"\u0E2D\u0E31\u0E1E\u0E40\u0E14\u0E15\u0E23\u0E30\u0E1A\u0E1A\u0E1B\u0E0F\u0E34\u0E1A\u0E31\u0E15\u0E34\u0E01\u0E32\u0E23","status.widget.info.hostname":"\u0E0A\u0E37\u0E48\u0E2D\u0E42\u0E2E\u0E2A\u0E15\u0E4C","status.widget.info.ipv4":"IPv4","status.widget.info.ipv6":"IPv6","status.widget.info.no":"\u0E44\u0E21\u0E48","status.widget.info.node_unsupp":"Unsupported","status.widget.info.node_unsupp_message":"\u0E04\u0E38\u0E13\u0E01\u0E33\u0E25\u0E31\u0E07\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19 Node.js \u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E19\u0E17\u0E35\u0E48 Homebridge \u0E44\u0E21\u0E48\u0E23\u0E2D\u0E07\u0E23\u0E31\u0E1A\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E40\u0E1B\u0E47\u0E19\u0E17\u0E32\u0E07\u0E01\u0E32\u0E23 \u0E04\u0E38\u0E13\u0E04\u0E27\u0E23\u0E1E\u0E34\u0E08\u0E32\u0E23\u0E13\u0E32\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E40\u0E1B\u0E47\u0E19\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E19\u0E17\u0E35\u0E48\u0E23\u0E2D\u0E07\u0E23\u0E31\u0E1A","status.widget.info.node_unsupp_title":"\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E19\u0E42\u0E2B\u0E19\u0E14\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E23\u0E2D\u0E07\u0E23\u0E31\u0E1A","status.widget.info.node_update_message":"Homebridge \u0E08\u0E33\u0E40\u0E1B\u0E47\u0E19\u0E15\u0E49\u0E2D\u0E07\u0E15\u0E34\u0E14\u0E15\u0E31\u0E49\u0E07 Node.js \u0E1A\u0E19\u0E23\u0E30\u0E1A\u0E1A\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E08\u0E36\u0E07\u0E08\u0E30\u0E17\u0E33\u0E07\u0E32\u0E19\u0E44\u0E14\u0E49 \u0E43\u0E19\u0E1A\u0E32\u0E07\u0E04\u0E23\u0E31\u0E49\u0E07 \u0E04\u0E38\u0E13\u0E08\u0E30\u0E15\u0E49\u0E2D\u0E07\u0E2D\u0E31\u0E1B\u0E40\u0E14\u0E15\u0E23\u0E31\u0E19\u0E44\u0E17\u0E21\u0E4C Node.js \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E40\u0E1B\u0E34\u0E14\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E01\u0E32\u0E23\u0E23\u0E2D\u0E07\u0E23\u0E31\u0E1A\u0E04\u0E38\u0E13\u0E2A\u0E21\u0E1A\u0E31\u0E15\u0E34\u0E43\u0E2B\u0E21\u0E48 Homebridge (\u0E41\u0E25\u0E30\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E17\u0E35\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A\u0E41\u0E25\u0E49\u0E27) \u0E23\u0E2D\u0E07\u0E23\u0E31\u0E1A Node.js \u0E23\u0E38\u0E48\u0E19 Active \u0E41\u0E25\u0E30 Maintenance LTS \u0E43\u0E19\u0E1B\u0E31\u0E08\u0E08\u0E38\u0E1A\u0E31\u0E19\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14","status.widget.info.node_update_title":"\u0E2D\u0E31\u0E1E\u0E40\u0E14\u0E15\u0E42\u0E2B\u0E19\u0E14","status.widget.info.nodejs_path":"\u0E1E\u0E32\u0E18\u0E02\u0E2D\u0E07 Node.js","status.widget.info.nodejs_version":"\u0E23\u0E38\u0E48\u0E19\u0E02\u0E2D\u0E07 Node.js","status.widget.info.os":"\u0E23\u0E30\u0E1A\u0E1A\u0E1B\u0E0F\u0E34\u0E1A\u0E31\u0E15\u0E34\u0E01\u0E32\u0E23","status.widget.info.plugin_path":"\u0E40\u0E2A\u0E49\u0E19\u0E17\u0E32\u0E07\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19","status.widget.info.service_mode":"\u0E42\u0E2B\u0E21\u0E14\u0E1A\u0E23\u0E34\u0E01\u0E32\u0E23","status.widget.info.service_user":"\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49","status.widget.info.servicemode_message":"\u0E44\u0E21\u0E48\u0E41\u0E19\u0E30\u0E19\u0E33\u0E43\u0E2B\u0E49\u0E43\u0E0A\u0E49\u0E42\u0E2B\u0E21\u0E14\u0E2A\u0E41\u0E15\u0E19\u0E14\u0E4C\u0E2D\u0E42\u0E25\u0E19\u0E2D\u0E35\u0E01\u0E15\u0E48\u0E2D\u0E44\u0E1B \u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32 Homebridge \u0E41\u0E25\u0E30 Homebridge UI \u0E14\u0E49\u0E27\u0E22 hb-service \u0E21\u0E35\u0E02\u0E49\u0E2D\u0E14\u0E35\u0E40\u0E2B\u0E21\u0E37\u0E2D\u0E19\u0E01\u0E31\u0E1A\u0E42\u0E2B\u0E21\u0E14\u0E2A\u0E41\u0E15\u0E19\u0E14\u0E4C\u0E2D\u0E42\u0E25\u0E19 \u0E41\u0E15\u0E48\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32\u0E41\u0E25\u0E30\u0E1A\u0E33\u0E23\u0E38\u0E07\u0E23\u0E31\u0E01\u0E29\u0E32\u0E44\u0E14\u0E49\u0E07\u0E48\u0E32\u0E22\u0E01\u0E27\u0E48\u0E32\u0E21\u0E32\u0E01","status.widget.info.servicemode_title":"\u0E42\u0E2B\u0E21\u0E14\u0E1A\u0E23\u0E34\u0E01\u0E32\u0E23","status.widget.info.storage_path":"\u0E40\u0E2A\u0E49\u0E19\u0E17\u0E32\u0E07\u0E01\u0E32\u0E23\u0E08\u0E31\u0E14\u0E40\u0E01\u0E47\u0E1A","status.widget.info.synology_package":"\u0E41\u0E1E\u0E47\u0E04\u0E40\u0E01\u0E08 Synology","status.widget.info.timezone":"\u0E40\u0E02\u0E15\u0E40\u0E27\u0E25\u0E32","status.widget.info.yes":"\u0E43\u0E0A\u0E48","status.widget.network.history_items":"\u0E1B\u0E23\u0E30\u0E27\u0E31\u0E15\u0E34\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23","status.widget.network.items":"\u0E23\u0E32\u0E22\u0E07\u0E32\u0E19","status.widget.network.network_interface":"\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E40\u0E04\u0E23\u0E37\u0E2D\u0E02\u0E48\u0E32\u0E22","status.widget.network.none_selected":"\u0E44\u0E21\u0E48\u0E21\u0E35\u0E01\u0E32\u0E23\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E43\u0E19\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32 - \u0E43\u0E0A\u0E49\u0E04\u0E48\u0E32\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19","status.widget.network.refresh_interval":"\u0E0A\u0E48\u0E27\u0E07\u0E40\u0E27\u0E25\u0E32\u0E01\u0E32\u0E23\u0E23\u0E35\u0E40\u0E1F\u0E23\u0E0A","status.widget.network.refresh_note":"\u0E23\u0E35\u0E40\u0E1F\u0E23\u0E0A\u0E40\u0E1E\u0E08\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E43\u0E2B\u0E49\u0E01\u0E32\u0E23\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E41\u0E1B\u0E25\u0E07\u0E0A\u0E48\u0E27\u0E07\u0E40\u0E27\u0E25\u0E32\u0E23\u0E35\u0E40\u0E1F\u0E23\u0E0A\u0E21\u0E35\u0E1C\u0E25","status.widget.network.seconds":"\u0E27\u0E34\u0E19\u0E32\u0E17\u0E35","status.widget.qr_paired":"\u0E44\u0E14\u0E49\u0E16\u0E39\u0E01\u0E08\u0E31\u0E1A\u0E04\u0E39\u0E48\u0E41\u0E25\u0E49\u0E27","status.widget.qr_unpaired":"\u0E22\u0E31\u0E07\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E08\u0E31\u0E1A\u0E04\u0E39\u0E48","status.widget.show_hide":"\u0E41\u0E2A\u0E14\u0E07/\u0E0B\u0E48\u0E2D\u0E19\u0E27\u0E34\u0E14\u0E40\u0E08\u0E47\u0E15","status.widget.title_manage_widget":"\u0E08\u0E31\u0E14\u0E01\u0E32\u0E23\u0E27\u0E34\u0E14\u0E40\u0E08\u0E47\u0E15","status.widget.uptime.label_process":"\u0E42\u0E1B\u0E23\u0E40\u0E0B\u0E2A","status.widget.uptime.label_server":"\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C","status.widget.weather.label_config_required_help":"\u0E42\u0E1B\u0E23\u0E14\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E40\u0E21\u0E37\u0E2D\u0E07\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E43\u0E19\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32\u0E27\u0E34\u0E14\u0E40\u0E08\u0E47\u0E15","status.widget.weather.label_search_for_your_city":"\u0E04\u0E49\u0E19\u0E2B\u0E32\u0E40\u0E21\u0E37\u0E2D\u0E07\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13 :","status.widget.weather.title_weather":"\u0E2A\u0E20\u0E32\u0E1E\u0E2D\u0E32\u0E01\u0E32\u0E28","support.dev.api":"Homebridge API","support.dev.api_hap":"HAP-NodeJS API","support.dev.api_hap_sub":"HAP-NodeJS \u0E04\u0E37\u0E2D\u0E01\u0E32\u0E23\u0E19\u0E33 HomeKit Accessory Server \u0E21\u0E32\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E15\u0E32\u0E21\u0E17\u0E35\u0E48\u0E23\u0E30\u0E1A\u0E38\u0E44\u0E27\u0E49\u0E43\u0E19 HomeKit Accessory Protocol (HAP) \u0E0B\u0E36\u0E48\u0E07\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E42\u0E14\u0E22 Apple \u0E43\u0E2B\u0E49\u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E48\u0E27\u0E19\u0E2B\u0E19\u0E36\u0E48\u0E07\u0E02\u0E2D\u0E07 HomeKit Framework","support.dev.api_sub":"Homebridge \u0E40\u0E1B\u0E47\u0E19\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C Node.js \u0E19\u0E49\u0E33\u0E2B\u0E19\u0E31\u0E01\u0E40\u0E1A\u0E32\u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E23\u0E31\u0E19\u0E1A\u0E19\u0E40\u0E04\u0E23\u0E37\u0E2D\u0E02\u0E48\u0E32\u0E22\u0E20\u0E32\u0E22\u0E43\u0E19\u0E1A\u0E49\u0E32\u0E19\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E08\u0E33\u0E25\u0E2D\u0E07 HomeKit Accessory Protocol (HAP)","support.dev.item_swagger":"\u0E40\u0E2D\u0E01\u0E2A\u0E32\u0E23 Swagger","support.dev.item_swagger_sub":"Homebridge REST API \u0E0A\u0E48\u0E27\u0E22\u0E43\u0E2B\u0E49\u0E04\u0E38\u0E13\u0E42\u0E15\u0E49\u0E15\u0E2D\u0E1A\u0E01\u0E31\u0E1A\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C Homebridge \u0E42\u0E14\u0E22\u0E43\u0E0A\u0E49\u0E04\u0E33\u0E02\u0E2D HTTP","support.dev.template":"Repo \u0E40\u0E17\u0E21\u0E40\u0E1E\u0E25\u0E15\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19","support.dev.template_sub":"\u0E40\u0E17\u0E21\u0E40\u0E1E\u0E25\u0E15\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19 Homebridge \u0E17\u0E35\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E43\u0E0A\u0E49\u0E40\u0E1B\u0E47\u0E19\u0E10\u0E32\u0E19\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E0A\u0E48\u0E27\u0E22\u0E43\u0E2B\u0E49\u0E04\u0E38\u0E13\u0E40\u0E23\u0E34\u0E48\u0E21\u0E1E\u0E31\u0E12\u0E19\u0E32\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E40\u0E2D\u0E07\u0E44\u0E14\u0E49","support.dev.title":"\u0E19\u0E31\u0E01\u0E1E\u0E31\u0E12\u0E19\u0E32","support.dev.verified":"\u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A\u0E42\u0E14\u0E22 Homebridge","support.dev.verified_sub":"\u0E42\u0E1B\u0E23\u0E41\u0E01\u0E23\u0E21 Verified By Homebridge \u0E0A\u0E48\u0E27\u0E22\u0E43\u0E2B\u0E49\u0E1C\u0E39\u0E49\u0E1E\u0E31\u0E12\u0E19\u0E32\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A\u0E41\u0E25\u0E30\u0E23\u0E31\u0E1A\u0E23\u0E2D\u0E07\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E02\u0E2D\u0E07\u0E15\u0E19\u0E44\u0E14\u0E49\u0E08\u0E32\u0E01\u0E17\u0E35\u0E21\u0E07\u0E32\u0E19\u0E42\u0E04\u0E23\u0E07\u0E01\u0E32\u0E23 Homebridge","support.links.discord":"\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C Discord","support.links.discord_sub":"\u0E40\u0E02\u0E49\u0E32\u0E23\u0E48\u0E27\u0E21\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E41\u0E0A\u0E17 Homebridge Discord \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E2A\u0E19\u0E17\u0E19\u0E32\u0E01\u0E31\u0E1A\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49\u0E41\u0E25\u0E30\u0E19\u0E31\u0E01\u0E1E\u0E31\u0E12\u0E19\u0E32\u0E04\u0E19\u0E2D\u0E37\u0E48\u0E19\u0E46","support.links.documentation":"\u0E40\u0E2D\u0E01\u0E2A\u0E32\u0E23\u0E1B\u0E23\u0E30\u0E01\u0E2D\u0E1A","support.links.documentation_sub":"\u0E40\u0E2D\u0E01\u0E2A\u0E32\u0E23\u0E1B\u0E23\u0E30\u0E01\u0E2D\u0E1A\u0E02\u0E2D\u0E07 Homebridge \u0E43\u0E2B\u0E49\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E21\u0E32\u0E01\u0E21\u0E32\u0E22\u0E40\u0E01\u0E35\u0E48\u0E22\u0E27\u0E01\u0E31\u0E1A\u0E27\u0E34\u0E18\u0E35\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19 Homebridge \u0E41\u0E25\u0E30\u0E27\u0E34\u0E18\u0E35\u0E41\u0E01\u0E49\u0E44\u0E02\u0E1B\u0E31\u0E0D\u0E2B\u0E32\u0E17\u0E31\u0E48\u0E27\u0E44\u0E1B","support.links.issue":"\u0E23\u0E32\u0E22\u0E07\u0E32\u0E19\u0E1B\u0E31\u0E0D\u0E2B\u0E32","support.links.issue_sub":"\u0E2B\u0E32\u0E01\u0E04\u0E38\u0E13\u0E1B\u0E23\u0E30\u0E2A\u0E1A\u0E1B\u0E31\u0E0D\u0E2B\u0E32\u0E40\u0E01\u0E35\u0E48\u0E22\u0E27\u0E01\u0E31\u0E1A Homebridge \u0E42\u0E1B\u0E23\u0E14\u0E40\u0E1B\u0E34\u0E14\u0E1B\u0E31\u0E0D\u0E2B\u0E32\u0E43\u0E2B\u0E21\u0E48\u0E1A\u0E19 GitHub \u0E0B\u0E36\u0E48\u0E07\u0E44\u0E21\u0E48\u0E04\u0E27\u0E23\u0E43\u0E0A\u0E49\u0E01\u0E31\u0E1A\u0E1B\u0E31\u0E0D\u0E2B\u0E32\u0E02\u0E2D\u0E07\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E40\u0E09\u0E1E\u0E32\u0E30","support.links.reddit":"\u0E0A\u0E38\u0E21\u0E0A\u0E19 Reddit","support.links.reddit_sub":"Subreddit Homebridge \u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E16\u0E32\u0E19\u0E17\u0E35\u0E48\u0E17\u0E35\u0E48\u0E22\u0E2D\u0E14\u0E40\u0E22\u0E35\u0E48\u0E22\u0E21\u0E43\u0E19\u0E01\u0E32\u0E23\u0E41\u0E1A\u0E48\u0E07\u0E1B\u0E31\u0E19\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32 Homebridge \u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E41\u0E25\u0E30\u0E02\u0E2D\u0E04\u0E27\u0E32\u0E21\u0E0A\u0E48\u0E27\u0E22\u0E40\u0E2B\u0E25\u0E37\u0E2D","support.links.title":"\u0E25\u0E34\u0E07\u0E04\u0E4C\u0E17\u0E35\u0E48\u0E40\u0E1B\u0E47\u0E19\u0E1B\u0E23\u0E30\u0E42\u0E22\u0E0A\u0E19\u0E4C","support.title":"\u0E2A\u0E19\u0E31\u0E1A\u0E2A\u0E19\u0E38\u0E19","toast.no_auth":"\u0E40\u0E09\u0E1E\u0E32\u0E30\u0E1C\u0E39\u0E49\u0E14\u0E39\u0E41\u0E25\u0E23\u0E30\u0E1A\u0E1A\u0E40\u0E17\u0E48\u0E32\u0E19\u0E31\u0E49\u0E19\u0E17\u0E35\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E40\u0E02\u0E49\u0E32\u0E16\u0E36\u0E07\u0E2B\u0E19\u0E49\u0E32\u0E17\u0E35\u0E48\u0E23\u0E49\u0E2D\u0E07\u0E02\u0E2D\u0E44\u0E14\u0E49","toast.title_error":"\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14","toast.title_success":"\u0E2A\u0E33\u0E40\u0E23\u0E47\u0E08","toast.title_warning":"\u0E04\u0E33\u0E40\u0E15\u0E37\u0E2D\u0E19","users.button_add_new_user":"\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49\u0E43\u0E2B\u0E21\u0E48","users.button_add_user":"\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49","users.label_admin_user":"\u0E40\u0E1B\u0E47\u0E19 Admin \u0E14\u0E49\u0E27\u0E22\u0E2B\u0E23\u0E37\u0E2D\u0E44\u0E21\u0E48?","users.label_confirm_password":"\u0E22\u0E37\u0E19\u0E22\u0E31\u0E19\u0E23\u0E2B\u0E31\u0E2A\u0E1C\u0E48\u0E32\u0E19","users.label_full_name":"\u0E0A\u0E37\u0E48\u0E2D\u0E40\u0E15\u0E47\u0E21","users.label_new_password":"\u0E23\u0E2B\u0E31\u0E2A\u0E1C\u0E48\u0E32\u0E19\u0E43\u0E2B\u0E21\u0E48","users.label_password":"\u0E23\u0E2B\u0E31\u0E2A\u0E1C\u0E48\u0E32\u0E19","users.label_username":"\u0E0A\u0E37\u0E48\u0E2D\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49","users.setup_2fa":"\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32 2FA","users.setup_2fa_activate_error":"\u0E40\u0E01\u0E34\u0E14\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E43\u0E19\u0E01\u0E32\u0E23\u0E40\u0E1B\u0E34\u0E14\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19 2FA","users.setup_2fa_cannot_setup_2fa":"\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32 2FA \u0E44\u0E14\u0E49","users.setup_2fa_disable":"\u0E1B\u0E34\u0E14\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19 2FA","users.setup_2fa_disable_current_password":"\u0E1B\u0E49\u0E2D\u0E19\u0E23\u0E2B\u0E31\u0E2A\u0E1C\u0E48\u0E32\u0E19\u0E1B\u0E31\u0E08\u0E08\u0E38\u0E1A\u0E31\u0E19\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E1B\u0E34\u0E14\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E01\u0E32\u0E23\u0E23\u0E31\u0E1A\u0E23\u0E2D\u0E07\u0E04\u0E27\u0E32\u0E21\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07\u0E14\u0E49\u0E27\u0E22\u0E2A\u0E2D\u0E07\u0E1B\u0E31\u0E08\u0E08\u0E31\u0E22 :","users.setup_2fa_disable_success":"\u0E1B\u0E34\u0E14\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E01\u0E32\u0E23\u0E23\u0E31\u0E1A\u0E23\u0E2D\u0E07\u0E04\u0E27\u0E32\u0E21\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07\u0E14\u0E49\u0E27\u0E22\u0E2A\u0E2D\u0E07\u0E1B\u0E31\u0E08\u0E08\u0E31\u0E22\u0E41\u0E25\u0E49\u0E27","users.setup_2fa_enable":"\u0E40\u0E1B\u0E34\u0E14\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19 2FA","users.setup_2fa_enable_error":"\u0E40\u0E01\u0E34\u0E14\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E43\u0E19\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32 2FA","users.setup_2fa_enabled_success":"\u0E40\u0E1B\u0E34\u0E14\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E01\u0E32\u0E23\u0E23\u0E31\u0E1A\u0E23\u0E2D\u0E07\u0E04\u0E27\u0E32\u0E21\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07\u0E14\u0E49\u0E27\u0E22\u0E2A\u0E2D\u0E07\u0E1B\u0E31\u0E08\u0E08\u0E31\u0E22\u0E41\u0E25\u0E49\u0E27","users.setup_2fa_enter_code":"\u0E1B\u0E49\u0E2D\u0E19\u0E23\u0E2B\u0E31\u0E2A\u0E08\u0E32\u0E01\u0E41\u0E2D\u0E1B\u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A\u0E2A\u0E34\u0E17\u0E18\u0E34\u0E4C\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13 :","users.setup_2fa_scan_qr_code":"\u0E2A\u0E41\u0E01\u0E19\u0E42\u0E04\u0E49\u0E14 QR \u0E14\u0E49\u0E32\u0E19\u0E25\u0E48\u0E32\u0E07\u0E14\u0E49\u0E27\u0E22\u0E41\u0E2D\u0E1E\u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A\u0E2A\u0E34\u0E17\u0E18\u0E34\u0E4C\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13 :","users.setup_2fa_server_time_out":"\u0E19\u0E32\u0E2C\u0E34\u0E01\u0E32\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E21\u0E35\u0E40\u0E27\u0E25\u0E32\u0E41\u0E15\u0E01\u0E15\u0E48\u0E32\u0E07 {{ timeDiffError }} \u0E21\u0E34\u0E25\u0E25\u0E34\u0E27\u0E34\u0E19\u0E32\u0E17\u0E35 \u0E04\u0E48\u0E32\u0E40\u0E27\u0E25\u0E32\u0E41\u0E15\u0E01\u0E15\u0E48\u0E32\u0E07\u0E17\u0E35\u0E48\u0E22\u0E2D\u0E21\u0E23\u0E31\u0E1A\u0E44\u0E14\u0E49\u0E44\u0E21\u0E48\u0E40\u0E01\u0E34\u0E19 +/-5000 \u0E21\u0E34\u0E25\u0E25\u0E34\u0E27\u0E34\u0E19\u0E32\u0E17\u0E35","users.setup_2fa_warning":"\u0E01\u0E32\u0E23\u0E23\u0E31\u0E1A\u0E23\u0E2D\u0E07\u0E04\u0E27\u0E32\u0E21\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07\u0E14\u0E49\u0E27\u0E22\u0E2A\u0E2D\u0E07\u0E1B\u0E31\u0E08\u0E08\u0E31\u0E22\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E43\u0E2B\u0E49\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C Homebridge \u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E21\u0E35\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48\u0E41\u0E25\u0E30\u0E40\u0E27\u0E25\u0E32\u0E17\u0E35\u0E48\u0E41\u0E21\u0E48\u0E19\u0E22\u0E33\u0E21\u0E32\u0E01\u0E43\u0E19\u0E01\u0E32\u0E23\u0E40\u0E02\u0E49\u0E32\u0E2A\u0E39\u0E48\u0E23\u0E30\u0E1A\u0E1A \u0E2B\u0E32\u0E01\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E23\u0E31\u0E01\u0E29\u0E32\u0E40\u0E27\u0E25\u0E32\u0E44\u0E14\u0E49\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E41\u0E21\u0E48\u0E19\u0E22\u0E33\u0E04\u0E38\u0E13\u0E44\u0E21\u0E48\u0E04\u0E27\u0E23\u0E40\u0E1B\u0E34\u0E14\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19 2FA \u0E2B\u0E23\u0E37\u0E2D\u0E40\u0E2A\u0E35\u0E48\u0E22\u0E07\u0E15\u0E48\u0E2D\u0E01\u0E32\u0E23\u0E16\u0E39\u0E01\u0E25\u0E47\u0E2D\u0E01\u0E44\u0E21\u0E48\u0E43\u0E2B\u0E49\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19 Homebridge UI","users.title_add_user":"\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49","users.title_edit_user":"\u0E41\u0E01\u0E49\u0E44\u0E02\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49","users.title_users":"\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49","users.toast_added_new_user":"\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49\u0E43\u0E2B\u0E21\u0E48","users.toast_failed_to_add_user":"\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49\u0E44\u0E21\u0E48\u0E2A\u0E33\u0E40\u0E23\u0E47\u0E08","users.toast_failed_to_delete_user":"\u0E25\u0E1A\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49\u0E44\u0E21\u0E48\u0E2A\u0E33\u0E40\u0E23\u0E47\u0E08","users.toast_updated_user":"\u0E2D\u0E31\u0E1B\u0E40\u0E14\u0E15\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49\u0E41\u0E25\u0E49\u0E27","users.toast_user_deleted":"\u0E25\u0E1A\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49\u0E41\u0E25\u0E49\u0E27"}});var Gs=y((Jd,Aa)=>{Aa.exports={"accessories.button_add_room":"Oda Ekle","accessories.button_hidden_hide":"Hide Hidden","accessories.button_hidden_show":"Show Hidden","accessories.control.auto":"Otomatik","accessories.control.away":"Uzakta","accessories.control.battery_charging":"\u015Earj Oluyor","accessories.control.battery_notchargeable":"\u015Earj Edilemez","accessories.control.battery_notcharging":"\u015Earj Olmuyor","accessories.control.brightness":"Parlakl\u0131k","accessories.control.closed":"Kapand\u0131","accessories.control.closing":"Kapan\u0131yor","accessories.control.cool":"Serin","accessories.control.default_room":"Varsay\u0131lan Oda","accessories.control.default_running_time":"Varsay\u0131lan \xC7al\u0131\u015Fma Saati","accessories.control.dehumidifying":"Dehumidifying","accessories.control.detected":"Detected","accessories.control.drag_here":"Drag Here","accessories.control.fan":"Fan","accessories.control.heat":"S\u0131cak","accessories.control.home":"Ev","accessories.control.humidifying":"Humidifying","accessories.control.jammed":"Jammed","accessories.control.light":"I\u015F\u0131k","accessories.control.locked":"Kilitli","accessories.control.mute":"Sessiz","accessories.control.night":"Gece","accessories.control.not_detected":"Not Detected","accessories.control.not_mute":"On","accessories.control.off":"Kapal\u0131","accessories.control.on":"A\xE7\u0131k","accessories.control.open":"A\xE7\u0131k","accessories.control.opening":"A\xE7\u0131l\u0131yor","accessories.control.rotation_speed":"D\xF6nme H\u0131z\u0131","accessories.control.running":"\xC7al\u0131\u015F\u0131yor","accessories.control.speaker_volume":"Ses Seviyesi","accessories.control.stopped":"Durdu","accessories.control.target":"Hedef","accessories.control.target_humidity":"Target Humidity","accessories.control.target_temperature":"Hedef S\u0131cakl\u0131k","accessories.control.triggered":"Tetiklendi","accessories.control.unknown":"Bilinmeyen","accessories.control.unlocked":"Kilidi A\xE7\u0131ld\u0131","accessories.control_disabled":"Homebridge Aksesuar Kontrol\xFC Devre D\u0131\u015F\u0131 B\u0131rak\u0131ld\u0131","accessories.hide_this_accessory":"Bu aksesuar\u0131 gizle","accessories.message_for_more_information":"daha fazla bilgi i\xE7in.","accessories.message_must_use_insecure_mode":"Aksesuarlar\u0131n\u0131z\u0131 kontrol etmek i\xE7in Homebridge'i emniyetsiz modda \xE7al\u0131\u015Ft\u0131r\u0131yor olmal\u0131s\u0131n\u0131z.","accessories.message_please_see":"Bak\u0131n\u0131z","accessories.name":"Ad","accessories.room_name":"Oda Ad\u0131","accessories.rooms_not_appear_in_homekit":"The rooms you create here will not appear in HomeKit, they are only for the organisation of accessories in the Homebridge UI.","accessories.settings_link":"You can access the Homebridge Settings at any time from the cog icon in the side menu.","accessories.show_on_dashboard":"G\xF6sterge paneli arac\u0131nda g\xF6ster","accessories.title_accessories":"Aksesuarlar","backup.backup_delete_failed":"Backup deletion failed. See logs for details.","backup.backup_download_failed":"Yedekleme \u0130ndirme Ba\u015Far\u0131s\u0131z","backup.backup_exceeds_max_size":"Backup ({{ backupSize }}) exceeds maximum restore file size of {{ maxBackupSizeText }}","backup.backup_help_one":"Homebridge ortam\u0131n\u0131n tamam\u0131 i\xE7in bir yedekleme ar\u015Fivin indirin. Bu i\u015Flem daha sonra Homebridge UI \xE7al\u0131\u015Ft\u0131rabilen herhangi bir platformda geri y\xFCkleyebilece\u011Finiz, Homebridge depolama dizininin t\xFCm i\xE7eri\u011Fini yedekler.","backup.backup_help_two":"npm \xFCzerinde bar\u0131nd\u0131r\u0131lmayan, veya direkt Github \xFCzerinden kurulmu\u015F eklentiler yedeklenmeyecek ve geri y\xFCklenemeyecektir.","backup.backup_restored":"Yedekleme Ar\u015Fivi Geri Y\xFCklendi","backup.backup_warning":"Yedekleme ar\u015Fivleri hassas bilgiler bar\u0131nd\u0131r\u0131rlar ve ba\u015Fka ki\u015Filerle payla\u015F\u0131lmamal\u0131d\u0131rlar.","backup.button_restore_backup":"Yede\u011Fi Geri Y\xFCkle","backup.label_choose_backup_file_to_restore":"Geri y\xFCklemek i\xE7in yedekleme dosyas\u0131n\u0131 se\xE7in\u2026","backup.label_uploading":"Y\xFCkleniyor\u2026","backup.load_error":"Failed to load config backup.","backup.now":"Now","backup.restore_failed":"Geri Y\xFCkleme Ba\u015Far\u0131s\u0131z","backup.restore_help_one":"Daha \xF6ncesinde Homebridge UI kullanarak olu\u015Fturdu\u011Funuz bir yedekleme ar\u015Fivini geri y\xFCkleyin. Homebridge yap\u0131land\u0131rman\u0131z, \xF6nbelle\u011Fe al\u0131nm\u0131\u015F aksesuarlar\u0131n\u0131z, HomeKit e\u015Flemeleriniz ve Homebridge UI kullan\u0131c\u0131 hesaplar\u0131n\u0131z geri y\xFCklenecek. Ayr\u0131ca \xF6nceden kurdu\u011Funuz herhangi bir Homebridge eklentisi de npm \xFCzerinden indirilecek.","backup.restore_help_two":"Bir yede\u011Fi geri y\xFCkledikten sonra yedekteki kimlik bilgilerini kullanarak Homebridge UI'e giri\u015F yapman\u0131z gerekecek.","backup.restore_max_size":"You can restore a backup archive up to {{ maxBackupSizeText }} in size.","backup.restore_warning":"Bir yede\u011Fi geri y\xFCklemek, mevcuttaki Homebridge yap\u0131land\u0131rmas\u0131n\u0131 geri al\u0131namaz \u015Fekilde ge\xE7ersiz k\u0131lacak.","backup.scheduled_backup_time":"Homebridge'in tam bir yede\u011Fi otomatik olarak her g\xFCn \u015Fu saatde: {{ backupTime }} olu\u015Fturulacak ve {{ dayCount }} g\xFCn boyunca saklanacak.","backup.title_backup":"Yedekle","child_bridge.about":"Homebridge allows you to run your plugin's platform or accessory as an isolated child bridge. This can improve the general responsiveness and reliability of Homebridge.","child_bridge.bridge_connect":"Connect to HomeKit","child_bridge.bridge_settings":"Child Bridge Config","child_bridge.bridges":"HomeKit Bridges","child_bridge.bridges_paired":"Each child bridge platform or accessory will need to be paired with HomeKit separately.","child_bridge.config.debug":"Debug Mode","child_bridge.config.description":"These fields are not required, but can be used to override the HomeKit configuration for this bridge.","child_bridge.config.firmware":"Firmware Version","child_bridge.config.header":"Configuration","child_bridge.config.manufacturer":"Manufacturer","child_bridge.config.model":"Model","child_bridge.config.name":"Name","child_bridge.must_configure_plugin":"You need to configure this plugin before you can manage its bridge settings.","child_bridge.reset_accessories":"Reset Accessories","child_bridge.reset_accessories_list":"Choose from which child bridges you want to reset the accessories below:","child_bridge.restart":"Restart Child Bridges","child_bridge.restart_homebridge":"Restart Homebridge to finish setting up this child bridge.","child_bridge.restart_plural":"Restart Child Bridges","child_bridge.return_to_pair":"Return to this screen after Homebridge has restarted to view the pairing QR code.","child_bridge.select_type":"Select which platforms or accessories you want to run as a child bridge","child_bridge.setup":"Set Up Child Bridge","child_bridge.start":"Start Child Bridge","child_bridge.start_plural":"Start Child Bridges","child_bridge.stop":"Stop Child Bridge","child_bridge.stop_plural":"Stop Child Bridges","child_bridge.wiki_link":"Learn more about child bridges","config.config_accessory_must_be_array":"aksesuarlar bir dizi olmal\u0131 []","config.config_bridge_missing":"K\xF6pr\xFC ayarlar\u0131 eksik","config.config_invalid_json":"Yap\u0131land\u0131rma ge\xE7ersiz JSON bi\xE7imi i\xE7eriyor","config.config_platform_must_be_array":"platformlar bir dizi olmal\u0131 []","config.config_username_error":"K\xF6pr\xFC kullan\u0131c\u0131 ad\u0131 6 \xE7ift, iki nokta \xFCst \xFCste ile ayr\u0131lm\u0131\u015F onalt\u0131l\u0131k karakterlerden olu\u015Fmal\u0131d\u0131r (A-F 0-9)","config.error_blocks_objects":"All {{ type }} blocks must be objects.","config.error_blocks_type":"All {{ type }} blocks must contain the {{ type }} attribute.","config.error_string_array":"Each item in the {{ key }} array must be a string.","config.error_string_type":"The {{ type }} attribute must be a string.","config.failed_to_save_config":"Yap\u0131land\u0131rma kaydedilemedi","config.restore.confirm":"Bu yede\u011Fi geri y\xFCklemek istedi\u011Finizi onaylamak i\xE7in Kaydet'e t\u0131klay\u0131n.","config.restore.copy_to_editor":"Edit\xF6re Kopyala","config.restore.no_backups":"Yedekleme Yok","config.restore.title_restore_homebridge_backup":"Homebridge Yap\u0131land\u0131rma Yede\u011Fini Geri Y\xFCkle","config.restore.toast_backups_deleted":"T\xFCm Yedeklemeler Silindi","config.title_backup_loaded":"Yedekleme Y\xFCklendi","form.button_cancel":"\u0130ptal Et","form.button_close":"Kapat","form.button_delete":"Sil","form.button_disable":"Disable","form.button_download":"\u0130ndir","form.button_edit":"D\xFCzenle","form.button_enable":"Enable","form.button_hide":"Hide","form.button_lock":"Lock","form.button_more_info":"More Info","form.button_remove":"Remove","form.button_reset":"Reset","form.button_restore":"Yedekten Geri Y\xFCkle","form.button_save":"Kaydet","form.button_show":"Show","form.button_unlock":"Unlock","form.button_unpair":"Unpair","form.label_invalid":"Config validation failed - you can still save your changes.","form.label_invalid_strict":"Config validation failed - please review the form before saving.","form.label_valid":"Config validation passed.","form.select.auto":"Automatic (Use Browser Settings)","login.button_login":"Oturum A\xE7","login.invalid_credentials":"Ge\xE7ersiz Kullan\u0131c\u0131 Ad\u0131 ve Parola","login.label_2fa_code":"\u0130ki A\u015Famal\u0131 Do\u011Frulama Kodu","login.label_password":"Parola","login.label_username":"Kullan\u0131c\u0131 Ad\u0131","login.message_invalid_2fa_code":"Girilen kod ge\xE7rsiz veya s\xFCresi doldu.","logs.download.error":"Failed to download log file.","logs.download_warning":"Homebridge g\xFCnl\xFCk dosyalar\u0131 ki\u015Fisel bilgiler, parolalar ve eri\u015Fim belirte\xE7leri i\xE7eriyor olabilir. L\xFCtfen ba\u015Fka ki\u015Filerle payla\u015Fmadan \xF6nce g\xFCnl\xFCk dosyas\u0131n\u0131 inceleyin ve t\xFCm hassas bilgileri kald\u0131r\u0131n.","logs.log_file_truncated":"G\xFCnl\xFCk dosyas\u0131 budand\u0131.","logs.title_download_log_file":"G\xFCnl\xFCk Dosyas\u0131n\u0131 \u0130ndir","logs.title_truncate_log_file":"G\xFCnl\xFCk Dosyas\u0131n\u0131 Buda","logs.truncate.error":"Failed to truncate log file.","logs.truncate_log_warning":"Bu i\u015Flem mevcuttaki Homebridge g\xFCnl\xFCklerini geri al\u0131namaz \u015Fekilde silecektir. Devam etmek istedi\u011Finizden emin misiniz?","menu.config_json_editor":"JSON Config","menu.docker.restart_container":"Kapsay\u0131c\u0131y\u0131 Yeniden Ba\u015Flat","menu.docker.startup_script":"Ba\u015Flang\u0131\xE7 Komutu","menu.docker.terminal":"Terminal","menu.hbrestart.confirm_hb":"Restart Homebridge","menu.hbrestart.confirm_ui":"Restart HB Service & UI","menu.hbrestart.title":"Restart Homebridge","menu.label_accessories":"Aksesuarlar","menu.label_plugins":"Eklentiler","menu.label_settings":"Settings","menu.label_settings_advanced":"UI Advanced Settings","menu.label_status":"Durum","menu.linux.label_logs":"Logs","menu.linux.label_restart_server":"Sunucuyu Yeniden Ba\u015Flat","menu.linux.label_shutdown_server":"Sunucuyu Kapat","menu.linux.label_terminal":"Terminal","menu.restart.title":"Power Options","menu.settings.title":"Settings","menu.tooltip_logout":"\xC7\u0131k\u0131\u015F Yap","menu.tooltip_restart":"Yeniden Ba\u015Flat","menu.tooltip_user_accounts":"Kullan\u0131c\u0131 Hesaplar\u0131","menu.tooltip_view_logs":"G\xFCnl\xFCkleri G\xF6r\xFCnt\xFCle","platform.docker.container_restarted":"Docker kapsay\u0131c\u0131s\u0131 yeniden ba\u015Flat\u0131ld\u0131","platform.docker.must_use_hashbang":"Komut dosyas\u0131 #!/bin/sh hashbang kullanmal\u0131d\u0131r.","platform.docker.restart_required":"De\u011Fi\u015Fikliklerin etkili olmas\u0131 i\xE7in Docker kapsay\u0131c\u0131s\u0131n\u0131 yeniden ba\u015Flatman\u0131z gerekli.","platform.docker.run_with_restart":"Docker kapsay\u0131c\u0131s\u0131n\u0131 <code>--restart=always</code> ile \xE7al\u0131\u015Ft\u0131rd\u0131\u011F\u0131n\u0131zdan emin olun","platform.docker.script_help":"Bu komut dosyas\u0131 Docker kapsay\u0131c\u0131s\u0131n\u0131n ba\u015Flat\u0131l\u0131\u015F\u0131nda \xE7al\u0131\u015Ft\u0131r\u0131lacakt\u0131r. Bunu, eklentilerinizin ihtiya\xE7 duyabilece\u011Fi paketleri (ffmpeg ya da libpcap-dev gibi) y\xFCklemek i\xE7in kullanabilirsiniz.","platform.docker.script_saved":"Ba\u015Flang\u0131\xE7 Komut Dosyas\u0131 Kaydedildi","platform.docker.server_long_time":"Sunucunun yeniden ba\u015Flat\u0131lmas\u0131 uzun zaman al\u0131yor. Docker kapsay\u0131c\u0131s\u0131n\u0131 el ile aya\u011Fa kald\u0131rman\u0131z gerekebilir.","platform.docker.title_restarting":"Docker kapsay\u0131c\u0131s\u0131 yeniden ba\u015Flat\u0131l\u0131yor","platform.linux.long_time":"Sunucunun yeniden ba\u015Flat\u0131lmas\u0131 uzun zaman al\u0131yor. Sunucuyu el ile aya\u011Fa kald\u0131rman\u0131z gerekebilir.","platform.linux.restart":"L\xFCtfen bekleyin, Homebridge tekrardan \xE7evrimi\xE7i oldu\u011Funda bu sayfa otomatik olarak y\xF6nlendirilecektir.","platform.linux.restarting_server":"Sunucu Yeniden Ba\u015Flat\u0131l\u0131yor","platform.linux.server_restart_error":"Yeniden ba\u015Flatma komutu sunucuya g\xF6nderilirken hata olu\u015Ftu.","platform.linux.server_restarted":"Sunucu yeniden ba\u015Flat\u0131ld\u0131.","platform.linux.server_taking_long_time":"Sunucunun yeniden \xE7evirimi\xE7i olmas\u0131 uzun zaman al\u0131yor.","platform.linux.server_will_power_down":"Sunucu k\u0131sa bir s\xFCre sonra kapanacak.","platform.linux.shutting_down_server":"Sunucu Kapat\u0131l\u0131yor","platform.version.restart_required":"Homebridge UI v{{ uiVersion }} kuruldu, fakat sunucu halen v{{ serverVersion }} s\xFCr\xFCm\xFCn\xFC \xE7al\u0131\u015Ft\u0131r\u0131yor.","platform.version.service_restart_required":"Servisin Yeniden Ba\u015Flat\u0131lmas\u0131 Gerekli","plugins.bridge.action_error":"Failed to {{ action }} child bridge(s).","plugins.button_homepage":"Plugin Homepage","plugins.button_set_up":"Set Up","plugins.button_settings":"Ayarlar","plugins.button_uninstall":"Kald\u0131r","plugins.button_update":"G\xFCncelle","plugins.compat.are_you_sure":"Are you sure you want to continue anyway?","plugins.compat.hb_node_too_low":"{{ packageName }} v{{ latestVersion }}, Node.js v{{ minVersion }} veya daha \xFCst s\xFCr\xFCm\xFCne ihtiya\xE7 duyar. Mevcutta Node.js {{ installedVersion }} \xE7al\u0131\u015Ft\u0131r\u0131yorsunuz.","plugins.compat.hb_too_low":"{{ pluginName }} eklentisi Homebridge v{{ minVersion }} veya daha \xFCst s\xFCr\xFCm\xFCn\xFC \xE7al\u0131\u015Ft\u0131rman\u0131z\u0131 tavsiye ediyor. Mevutta Homebridge v{{ installedVersion }} \xE7al\u0131\u015Ft\u0131r\u0131yorsunuz.","plugins.compat.node_first":"L\xFCtfen {{ packageName }}'i g\xFCncellemeden \xF6nce Node.js s\xFCr\xFCm\xFCn\xFC y\xFCkseltin.","plugins.compat.node_link":"How To Update Node.js","plugins.compat.node_too_low":"{{ pluginName }} eklentisi Node.js v{{ minVersion }} veya daha \xFCst s\xFCr\xFCm\xFCn\xFC \xE7al\u0131\u015Ft\u0131rman\u0131z\u0131 tavsiye ediyor. Mevutta Node.js {{ installedVersion }} \xE7al\u0131\u015Ft\u0131r\u0131yorsunuz.","plugins.compat.title":"Compatibility Check","plugins.config.load_error":"Failed to load plugin config.","plugins.config.must_be_array":"Plugin config must be an array.","plugins.config.must_be_array_objects":"Plugin config must be an array of objects.","plugins.config.must_be_object":"Config block must be an object.","plugins.config.name_property":'Accessory must have a valid "name" attribute',"plugins.config.please_fix":"Please fix validation errors before adding a new block.","plugins.config.remove_error":"Failed to remove plugin config.","plugins.disable.error":"Failed to disable plugin.","plugins.donate.button_not_verified":"Not Verified","plugins.donate.button_verified":"Do\u011Fruland\u0131","plugins.donate.message_1":"As more users install their plugins through the Homebridge UI, they are less likely to visit the projects' GitHub page where the ways to support a developer would typically be displayed.","plugins.donate.message_2":"Adding donation links directly in the Homebridge UI ensures users know how to support Homebridge developers if they wish to do so.","plugins.donate.tile_donate_to":"{{ author }} Ki\u015Fisine Ba\u011F\u0131\u015F Yap.","plugins.enable.error":"Failed to enable plugin.","plugins.manage.all_versions":"All versions","plugins.manage.child_bridge_restart":"Child bridge restarted successfully.","plugins.manage.child_bridge_restart_failed":"Plugin restart failed, please restart Homebridge manually.","plugins.manage.confirm_disable":"Are you sure you want to disable {{ pluginName }}?","plugins.manage.confirm_disable_accessory_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen and removed from HomeKit.","plugins.manage.confirm_disable_accessory_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and HomeKit. The accessories will lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_disable_platform_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen but remain in HomeKit with a 'No Response' label.","plugins.manage.confirm_disable_platform_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and become controllable again in HomeKit. The accessories will not lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_enable":"{{ pluginName }} eklentisini etkinle\u015Ftirmek istedi\u011Finizden emin misiniz?","plugins.manage.disable":"Devre D\u0131\u015F\u0131 B\u0131rak","plugins.manage.enable":"Etkinle\u015Ftir","plugins.manage.information":"Plugin Information","plugins.manage.install":"Y\xFCkle","plugins.manage.installed":"Y\xFCkl\xFC","plugins.manage.json_config":"JSON Config","plugins.manage.manage_version":"Bir \xD6nceki S\xFCr\xFCm\xFC Y\xFCkle","plugins.manage.manual_update_command":"To upgrade the package run open a Node.js command prompt as an Administrator and run the following commands:","plugins.manage.manual_update_required":"El ile G\xFCncelleme Gerekli","plugins.manage.online_updates":"Windows'ta \xE7evrimi\xE7i g\xFCncellemeler desteklenmiyor. Homebridge UI'i, Homebridge servisini el ile durdurduktan sonra g\xFCncellemeniz gerekecek.","plugins.manage.plugin_logs":"Plugin Logs","plugins.manage.release_notes":"Release Notes","plugins.manage.scoped.error":"An error occurred. You can download the logs below.","plugins.manage.scoped.info":"For more information about scoped plugins and why to switch, see the wiki page {{ link }}.","plugins.manage.scoped.process":"This process will not affect your Homebridge/HomeKit accessories. You will not be able to cancel the process once it has started. It will:","plugins.manage.scoped.switch":"Switch To Scoped Plugin","plugins.manage.scoped.windows":"Online updates are not supported on Windows. You will need to install the new plugin and uninstall the old plugin manually.","plugins.manage.scoped.windows_service":'You should <span class="font-weight-bold">not</span> restart Homebridge until both steps are complete.',"plugins.manage.select_version":"Y\xFCklemek istedi\u011Finiz s\xFCr\xFCm\xFC se\xE7in","plugins.manage.thanks_for_updating":"{{ pluginName }}'in en son s\xFCr\xFCm\xFCn\xFC y\xFCkledi\u011Finiz i\xE7in te\u015Fekk\xFCr ederiz.","plugins.manage.uninstall":"Kald\u0131r","plugins.manage.uninstalled":"Kald\u0131r\u0131ld\u0131","plugins.manage.unverified_message":"Unverified Homebridge plugins indicate that they haven't undergone the review process by the Homebridge project team. Lack of verification does not necessarily imply inefficacy or safety concerns. Authors might have opted not to seek verification for various reasons.","plugins.manage.unverified_subtitle":"{{ pluginName }} is not verified","plugins.manage.unverified_title":"Unverified Plugins","plugins.manage.update":"G\xFCncelle","plugins.manage.updated":"G\xFCncellendi","plugins.manage.verified_message":"Homebridge plugins that are marked as verified have been reviewed by the Homebridge project team to ensure they meet various requirements that encourage best practices and a trouble-free user experience.","plugins.manage.verified_subtitle":"{{ pluginName }} is verified","plugins.manage.verified_title":"Verified Plugins","plugins.node_update.continue":"Continue","plugins.placeholder_search_first":"Use the search bar above to find your first plugin","plugins.placeholder_search_plugin":"Y\xFCklemek i\xE7in eklentiler aray\u0131n\u2026","plugins.settings.custom.homebridge-gsh.label_account_linked":"Hesap Ba\u011Fland\u0131","plugins.settings.custom.homebridge-gsh.label_link_account":"Hesab\u0131 Ba\u011Fla","plugins.settings.custom.homebridge-gsh.label_unlink_account":"Hesab\u0131n Ba\u011Flant\u0131s\u0131n\u0131 Kald\u0131r","plugins.settings.custom.homebridge-gsh.message_about":"Homebridge Google Smart Home eklentisi Homebridge aksesuarlar\u0131n\u0131z\u0131 Google Home kullanan ak\u0131ll\u0131 hoparl\xF6rlerinizden veya Google Home mobil uygulamas\u0131ndan kontrol etmenize olanak sa\u011Flar.","plugins.settings.custom.homebridge-gsh.message_account_link_required":"Bu \xF6zelli\u011Fi etkinle\u015Ftirmek i\xE7in Google veya Github hesab\u0131n\u0131z ile giri\u015F yapman\u0131z gerekli; Google Home mobil uygulamas\u0131nda Homebridge'i eklerken ayn\u0131 hesab\u0131 kulland\u0131\u011F\u0131n\u0131zdan emin olun.","plugins.settings.custom.homebridge-gsh.message_homebridge_restart_required":"De\u011Fi\u015Fikliklerin y\xFCr\xFCrl\xFC\u011Fe girmesi i\xE7in Homebridge yeniden ba\u015Flat\u0131lmaya ihtiya\xE7 duyar.","plugins.settings.custom.homebridge-gsh.message_invalid_token":"Invalid account linking token in config.json","plugins.settings.deconz.dump_no_exist":"Homebridge deCONZ dump file does not exist yet.","plugins.settings.hue.dump_no_exist":"Homebridge Hue dump file does not exist yet.","plugins.settings.label_open_config_editor":"Yap\u0131land\u0131rma D\xFCzenleyiciyi A\xE7","plugins.settings.message_consult_documentation":"Bu eklentiyi gerekti\u011Fi \u015Fekilde yap\u0131land\u0131rmak i\xE7in l\xFCtfen eklenti dok\xFCmantasyonuna ba\u015Fvurun.","plugins.settings.message_manual_config_required":"Bu eklenti Homebridge UI Yap\u0131land\u0131rma D\xFCzenleyicisi kullan\u0131larak el ile yap\u0131land\u0131r\u0131lmal\u0131d\u0131r.","plugins.settings.plugin_config_saved":"Eklenti Yap\u0131land\u0131rmas\u0131 Kaydedildi","plugins.settings.restart_required":"De\u011Fi\u015Fiklikleri uygulamak i\xE7in Homebridge'i yeniden ba\u015Flat\u0131n.","plugins.settings.title_settings":"Ayarlar","plugins.status_disabled":"Devre D\u0131\u015F\u0131 B\u0131rak\u0131ld\u0131","plugins.status_installed":"Y\xFCkl\xFC","plugins.toast_failed_to_load_plugin_schema":"Failed to load plugin config schema.","plugins.toast_failed_to_load_plugins":"Eklentiler y\xFCklenemedi","plugins.uninstall_bridge_error":"Failed to remove child bridge.","plugins.uninstall_remove_config_required":"E\u011Fer bu eklentiyi kal\u0131c\u0131 olarak kald\u0131r\u0131yorsan\u0131z Homebridge'i yeniden ba\u015Flatmadan \xF6nce yap\u0131land\u0131rma dosyas\u0131ndaki bu eklenti ile ilgili t\xFCm yap\u0131land\u0131rma bilgilerini de kald\u0131rd\u0131\u011F\u0131n\u0131zdan emin olun.","plugins.uninstall_remove_confirmation":"{{ pluginName }} eklentisini kald\u0131rmak istedi\u011Finize emin misiniz?","plugins.uninstall_remove_plugin_config":"Eklenti yap\u0131land\u0131rmas\u0131n\u0131 kald\u0131r?","plugins.uninstall_unpair_child_bridge":"Unpair plugin child bridge?","plugins.uninstall_unpair_child_bridges":"Unpair {{ count }} plugin child bridges?","reset.accessory_reset":"Homebridge Aksesuar S\u0131f\u0131rlama","reset.action_is_irreversible":"Bu i\u015Flem geri al\u0131namaz. L\xFCtfen devam etmeden \xF6nce dikkatlice okuyunuz.","reset.bridges.desc":"If you are having trouble pairing Homebridge, an external accessory or a child bridge to HomeKit, you may need to unpair it from HomeKit to start again.","reset.bridges.empty":"You have no bridges to unpair from HomeKit.","reset.bridges.title":"Bridges","reset.bridges_all.desc":"Unpair all bridges from HomeKit. This includes the main Homebridge bridge, child bridges and bridges for external accessories.","reset.bridges_all.list_1":"This will unpair the Homebridge bridge, all child bridges and bridges for external accessories from HomeKit.","reset.bridges_all.list_2":"Note that your accessories will continue to show in HomeKit as no response, until the bridges are manually removed from HomeKit. You can do this in the Home app, by accessing Home Settings \u2192 Home Hubs & Bridges \u2192 {Bridge} \u2192 Remove Bridge from Home.","reset.bridges_all.list_3":"All your Homebridge to HomeKit accessories, scenes and automations will need to be reconfigured after the unpairing.","reset.bridges_all.list_4":"The pin for pairing your Homebridge bridge to HomeKit will be changed. You can see the new values in your Homebridge config after the unpairing.","reset.bridges_all.title":"Unpair All Bridges","reset.bridges_single.desc":"Unpair a single bridge from HomeKit. This may be a child bridge or a bridge for an external accessory like a camera or TV.","reset.bridges_single.list_1":"When unpairing a bridge, any accessories published by this bridge will be removed from the Homebridge cache.","reset.bridges_single.list_2":"The accessories will become stale in HomeKit (showing no response). To remove them, you will need to manually remove this bridge from HomeKit. You can do this in the Home app from the Home Settings section.","reset.bridges_single.list_3":"You can then attempt to pair the bridge again if required.","reset.bridges_single.title":"Unpair Single Bridge","reset.cached_accessory_removed":"\xD6n belle\u011Fe al\u0131n\u0131m\u015F aksesuar kald\u0131r\u0131ld\u0131.","reset.clear_cache_all.desc":"Remove all accessories from the cache.","reset.clear_cache_all.list_1":"When clicking on the remove button below, Homebridge will restart and all your existing accessories will be removed from Homebridge and HomeKit.","reset.clear_cache_all.list_2":"All associated HomeKit data will also be removed, this includes room associations, scenes and automations that this accessory uses.","reset.clear_cache_all.list_3":"After Homebridge restarts, your plugins will re-add any accessories as if the plugin was being installed for the first time.","reset.clear_cache_all.title":"Remove All Accessories","reset.clear_cache_bridge.desc":"Remove all accessories published by a bridge from the cache.","reset.clear_cache_bridge.empty":"You have no bridges from which to remove accessories.","reset.clear_cache_bridge.list_1":"This function can be used to reset a plugin's existing accessories in HomeKit. They will be removed from Homebridge/HomeKit and then re-added by the plugin as new accessories.","reset.clear_cache_bridge.list_2":"The child bridge's pairing details and status will remain the same.","reset.clear_cache_bridge.title":"Remove Bridge Accessories","reset.clear_cache_single.desc":"Remove a single accessory from the cache.","reset.clear_cache_single.list_1":"Some plugins don't clean up after themselves properly! If an accessory that you no longer have in Homebridge is still being displayed in HomeKit, you can remove it from the cache.","reset.clear_cache_single.list_2":"This function can be used to reset an existing accessory in HomeKit. It will be removed from Homebridge/HomeKit and then re-added by the plugin as a new accessory.","reset.clear_cache_single.list_3":"When removing an accessory from the cache, all its associated HomeKit data will be removed. This includes any associated scenes and automations that use this accessory.","reset.clear_cache_single.list_4":"Accessories can only be removed when Homebridge is not running. Homebridge will automatically restart when clicking on each of the remove buttons below. If you need to remove multiple accessories, please be patient and allow Homebridge to restart between each removal.","reset.clear_cache_single.title":"Remove Single Accessory","reset.delete_failed":"Aksesuar\u0131n kald\u0131r\u0131lmas\u0131 ba\u015Far\u0131s\u0131z oldu.","reset.delete_success":"Homebridge yeniden ba\u015Flat\u0131l\u0131yor ve aksesuar \xF6n belle\u011Fi temizleniyor.","reset.error_message":"Accessory cache could not be loaded. You may not have any cached accessories.","reset.failed_to_reset":"Homebridge s\u0131f\u0131rlanamad\u0131. G\xFCnl\xFCkleri g\xF6r\xFCnt\xFCle.","reset.force_restart_hb_help_text":"hb-service servisini zorla yeniden ba\u015Flatmak i\xE7in bu i\u015Flevi kullan\u0131n.","reset.remove_cached_accessories_single_empty":"You have no cached accessories to remove.","reset.removing_cached_accessory_please_wait":"Aksesuar \xF6n bellekten kald\u0131r\u0131l\u0131yor, l\xFCtfen bekleyin\u2026","restart.child_bridge_list":"Please restart these child bridges for the changes to apply:","restart.child_bridges":"Please restart the plugin's child bridges for the changes to apply.","restart.homebridge":"Please restart Homebridge for the changes to apply.","restart.label_restart_command_executed":"Yeniden Ba\u015Flatma Komutu \xC7al\u0131\u015Ft\u0131r\u0131ld\u0131","restart.please_wait_while_server_restarts":"L\xFCtfen bekleyin, sunucu tekrar \xE7evrimi\xE7i oldu\u011Funda bu sayfa otomatik olarak y\xF6nlendirilecektir.","restart.server_is_taking_long_time_to_restart":"Sunucunun yeniden ba\u015Flat\u0131lmas\u0131 uzun zaman al\u0131yor. Homebridge servisini el ile aya\u011Fa kald\u0131rman\u0131z gerekebilir.","restart.service_ready":"Homebridge Sunucusu Haz\u0131r","restart.title_restart":"Homebridge Yeniden Ba\u015Flat\u0131l\u0131yor","restart.toast_server_restart_error":"Yeniden ba\u015Flatma komutunun sunucuya g\xF6nderilmesi s\u0131ras\u0131nda bir hata olu\u015Ftu.","restart.toast_server_restart_timeout":"Sunucunun tekrar \xE7evrimi\xE7i olmas\u0131 uzun zaman al\u0131yor.","restart.toast_server_restarted":"Sunucu Yeniden Ba\u015Flat\u0131ld\u0131","restart.ui_online":"Homebridge UI \xC7evrimi\xE7i","rpi.throttled.currently_message":"This Raspberry Pi is reporting it is currently under-voltage; please check it is connected to an appropriate power supply. Under-voltage can result in system instability and SD card corruption.","rpi.throttled.previously_message":"This Raspberry Pi has reported an under-voltage event since it was last rebooted; please check it is connected to an appropriate power supply.","rpi.throttled.undervoltage_title":"Under Voltage","settings.cache.desc":"Homebridge maintains accessories in cache so they aren't removed and re-added to HomeKit each time Homebridge restarts. Sometimes this cache can become out of sync with the actual accessories in Homebridge.","settings.cache.title":"Accessories","settings.changes.saved":"Your changes have been saved and require a restart to take effect.","settings.datetime.incorrect":"The date and time on your Homebridge server seem to be incorrect. This may cause unexpected issues. Click here for more information.","settings.display.blue":"Blue","settings.display.bluegrey":"Blue Grey","settings.display.brown":"Brown","settings.display.cyan":"Cyan","settings.display.dark":"Dark","settings.display.deep_purple":"Deep Purple","settings.display.green":"Green","settings.display.grey":"Grey","settings.display.indigo":"Indigo","settings.display.lang":"Language","settings.display.light":"Light","settings.display.lighting_mode":"Lighting Mode","settings.display.login_wallpaper":"Login Wallpaper","settings.display.login_wallpaper_desc":"A custom login wallpaper can be set by adding a <code>ui-wallpaper.jpg</code> file to your Homebridge storage directory, or by providing a full path to a local image file here.","settings.display.orange":"Orange","settings.display.pink":"Pink","settings.display.purple":"Purple","settings.display.red":"Red","settings.display.teal":"Teal","settings.display.temp_units":"Temperature Units","settings.display.temp_units.c":"Celsius (\xB0C)","settings.display.temp_units.f":"Fahrenheit (\xB0F)","settings.display.theme":"Theme","settings.general.title_display":"Display","settings.general.title_general":"General","settings.mdns_advertiser":"mDNS Advertiser","settings.mdns_advertiser_exp":"experimental","settings.mdns_advertiser_help":"If you have trouble connecting Homebridge to HomeKit (all accessories showing 'No Response' in the Home app), try using one of the alternate mDNS advertisers.","settings.mdns_advertiser_not_connected":"Not Connected","settings.mdns_advertiser_rec":"recommended","settings.network.label_interface_name":"Aray\xFCz Ad\u0131","settings.network.label_ip_address":"IP Adresi","settings.network.message_network_interface":"E\u011Fer herhangi bir a\u011F aray\xFCz\xFC se\xE7ilmezse, Homebridge otomatik olarak yay\u0131n yapmas\u0131 gereken aray\xFCz\xFC tesip etmeyi deneyecektir.","settings.network.port_hb":"Homebridge Port","settings.network.port_hb_desc":"The port number to run the Homebridge bridge on. This must be between 1025 and 65533, and should not be the same as the Homebridge UI port.","settings.network.port_ui":"UI Port","settings.network.port_ui_desc":"The port number to run the Homebridge UI on.","settings.network.title_network":"A\u011F","settings.network.title_network_interfaces":"A\u011F Aray\xFCzleri","settings.service.debug_tooltip":"Some plugins require you to set the DEBUG environment variable to enable debug level logging.","settings.service.node_tooltip":"Node.js runtime options for this process. This should be kept blank unless you know what you are doing.","settings.startup.debug":"Homebridge Debug Mode","settings.startup.debug_desc_v1":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge as well as all child bridges. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.debug_desc_v2":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge. The setting for child bridges can be found in the child bridge configuration from the plugins page. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.insecure":"Homebridge 'Insecure' Mode","settings.startup.insecure_desc":"To control your accessories via the Homebridge UI you must be running Homebridge in insecure mode.","settings.startup.keep_accessories":"Keep Accessories Of Uninstalled Plugins","settings.startup.keep_accessories_desc":"If enabled, accessories of platform plugins will remain in the cache even after the plugin is uninstalled. This can be useful if you plan to reinstall the plugin later.","settings.title_startup_options":"Ba\u015Flang\u0131\xE7 Se\xE7enekleri","settings.unpair_bridge.load_error":"Paired bridges could not be loaded.","settings.unpair_bridge.unpair_error":"Failed to unpair bridge.","setup.button_get_started":"Get Started","setup.create_account":"Create Account","setup.create_account_reason":"Password authentication to your Homebridge admin web interface must be configured. Even if Homebridge is accessible only in your local network, it is still important to protect it from unrestricted access.","setup.open_dashboard":"Open Dashboard","setup.welcome_to_homebridge":"Welcome to Homebridge",setup_wizard_message_complete_message:"The setup procedure is complete and you're now ready to start using Homebridge.",setup_wizard_message_complete_title:"Congratulations!",setup_wizard_message_restore:"Restore From Backup","status.code_scan":"HomeKit'e eklemek i\xE7in taray\u0131n","status.cpu.load":"Y\xFCkle","status.cpu.temp":"S\u0131cakl\u0131k","status.cpu.title_cpu":"\u0130\u015Flemci","status.credits.title":"Credits","status.homebridge.checking":"G\xFCncellemeler kontrol ediliyor\u2026","status.homebridge.up_to_date":"G\xFCncel","status.memory.label_available":"Kullan\u0131labilir","status.memory.label_total":"Toplam","status.memory.title_memory":"Bellek","status.network.received_per_second":"Received","status.network.sent_per_second":"Sent","status.network.title_network":"Network Activity","status.plugin_out_of_date":"Eklenti G\xFCncel De\u011Fil","status.plugins_out_of_date":"Eklentiler G\xFCncel De\u011Fil","status.services.label_not_running":"\xC7al\u0131\u015Fm\u0131yor","status.services.label_running":"\xC7al\u0131\u015F\u0131yor","status.services.updates":"Update Centre","status.uptime.title_uptime":"\xC7al\u0131\u015Fma S\xFCresi","status.widget.accessories.choose_accessories":"Bu ara\xE7ta g\xF6stermek istedi\u011Finiz aksesuarlar\u0131 aksesuarlar sekmesinden se\xE7in.","status.widget.add.label_pairing_code":"E\u015Fleme Kodu","status.widget.bridge.restart_error":"Failed to restart child bridge.","status.widget.clock":"Saat","status.widget.clock_dateformat":"Tarih Bi\xE7imi","status.widget.clock_timeformat":"Saat Bi\xE7imi","status.widget.font_size":"Yaz\u0131 Boyutu","status.widget.font_weight":"Yaz\u0131 Kal\u0131nl\u0131\u011F\u0131","status.widget.hide_on_mobile":"K\xFC\xE7\xFCk G\xF6sterimde Gizle (Mobil Ekranlar)","status.widget.homebridge_logs":"Homebridge G\xFCnl\xFCkleri","status.widget.info":"Sistem Bilgisi","status.widget.info.config_path":"Yap\u0131land\u0131rma Konumu","status.widget.info.disabled":"Disabled","status.widget.info.docker":"Docker","status.widget.info.glibc_message":"This message indicates that your operating system does not support newer versions of Node.js. To resolve this and be able to install updated versions of Node.js in the future, you will need to update your operating system to a more recent version.","status.widget.info.glibc_title":"OS Update","status.widget.info.hostname":"Ana Bilgisayar Ad\u0131","status.widget.info.ipv4":"IPv4","status.widget.info.ipv6":"IPv6","status.widget.info.no":"No","status.widget.info.node_unsupp":"Unsupported","status.widget.info.node_unsupp_message":"You are running a version of Node.js that is not officially supported by Homebridge. You should consider changing to a supported version.","status.widget.info.node_unsupp_title":"Unsupported Node Version","status.widget.info.node_update_message":"Homebridge requires Node.js installed on your system to run. From time to time, you will need to update the Node.js runtime to enable support for new features. Homebridge (and verified plugins) support all current Active and Maintenance LTS releases of Node.js.","status.widget.info.node_update_title":"Node Update","status.widget.info.nodejs_path":"Node.js Path","status.widget.info.nodejs_version":"Node.js S\xFCr\xFCm\xFC","status.widget.info.os":"\u0130S","status.widget.info.plugin_path":"Eklentiler Konumu","status.widget.info.service_mode":"Servis Modu","status.widget.info.service_user":"Kullan\u0131c\u0131","status.widget.info.servicemode_message":"Standalone mode is no longer recommended. Setting up Homebridge and Homebridge UI with hb-service has the same benefits of standalone mode but is much easier to setup and maintain.","status.widget.info.servicemode_title":"Service Mode","status.widget.info.storage_path":"Depolama Konumu","status.widget.info.synology_package":"Synology Package","status.widget.info.timezone":"Saat Dilimi","status.widget.info.yes":"Yes","status.widget.network.history_items":"History Items","status.widget.network.items":"items","status.widget.network.network_interface":"Network Interface","status.widget.network.none_selected":"None selected in settings - using default.","status.widget.network.refresh_interval":"Refresh Interval","status.widget.network.refresh_note":"Refresh the page after saving for changes to take effect.","status.widget.network.seconds":"seconds","status.widget.qr_paired":"Paired","status.widget.qr_unpaired":"Not Paired","status.widget.show_hide":"Show/Hide Widgets","status.widget.title_manage_widget":"Arac\u0131 Y\xF6net","status.widget.uptime.label_process":"\u0130\u015Flem","status.widget.uptime.label_server":"Sunucu","status.widget.weather.label_config_required_help":"L\xFCtfen ara\xE7 se\xE7eneklerinde \u015Fehrinizi se\xE7in.","status.widget.weather.label_search_for_your_city":"\u015Eehrinizi aray\u0131n:","status.widget.weather.title_weather":"Hava Durumu","support.dev.api":"Homebridge API","support.dev.api_hap":"HAP-NodeJS API","support.dev.api_hap_sub":"HAP-NodeJS is an implementation of the HomeKit Accessory Server as specified in the HomeKit Accessory Protocol (HAP), which is defined by Apple as part of the HomeKit Framework.","support.dev.api_sub":"Homebridge is a lightweight Node.js server you can run on your home network to emulate the HomeKit Accessory Protocol (HAP).","support.dev.item_swagger":"Swagger Docs","support.dev.item_swagger_sub":"The Homebridge REST API allows you to interact with your Homebridge server using HTTP requests.","support.dev.template":"Plugin Template Repo","support.dev.template_sub":"A template Homebridge plugin that can be used as a base to help you get started developing your own plugin.","support.dev.title":"Developers","support.dev.verified":"Verified By Homebridge","support.dev.verified_sub":"The Verified By Homebridge program allows plugin developers to get their plugins reviewed and endorsed by the Homebridge project team.","support.links.discord":"Discord Server","support.links.discord_sub":"Join the Homebridge Discord chat server to chat with other users and developers.","support.links.documentation":"Documentation","support.links.documentation_sub":"The Homebridge documentation provides a wealth of information on how to get started with Homebridge and common issue resolutions.","support.links.issue":"Report An Issue","support.links.issue_sub":"If you are experiencing an issue with Homebridge, please open a new issue on GitHub. This should not be used for issues with specific plugins.","support.links.reddit":"Reddit Community","support.links.reddit_sub":"The Homebridge subreddit is a great place to share your Homebridge setup and ask for help.","support.links.title":"Useful Links","support.title":"Support","toast.no_auth":"Only administrators may access the requested page.","toast.title_error":"Hata","toast.title_success":"Ba\u015Far\u0131l\u0131","toast.title_warning":"Uyar\u0131","users.button_add_new_user":"Yeni Kullan\u0131c\u0131 Ekle","users.button_add_user":"Kullan\u0131c\u0131 Ekle","users.label_admin_user":"Y\xF6netici Kullan\u0131c\u0131?","users.label_confirm_password":"Parolay\u0131 Do\u011Frula","users.label_full_name":"Tam Ad\u0131","users.label_new_password":"Yeni Parola","users.label_password":"Parola","users.label_username":"Kullan\u0131c\u0131 ad\u0131","users.setup_2fa":"2AD Kur","users.setup_2fa_activate_error":"An error occurred activating 2FA","users.setup_2fa_cannot_setup_2fa":"2AD Kurulam\u0131yor","users.setup_2fa_disable":"2AD'yi Devre D\u0131\u015F\u0131 B\u0131rak","users.setup_2fa_disable_current_password":"\u0130ki a\u015Famal\u0131 do\u011Frulamay\u0131 devre d\u0131\u015F\u0131 b\u0131rakmak i\xE7in mevcut parolan\u0131z\u0131 girin:","users.setup_2fa_disable_success":"\u0130ki a\u015Famal\u0131 do\u011Frulama devre d\u0131\u015F\u0131 b\u0131rak\u0131ld\u0131.","users.setup_2fa_enable":"2AD'yi Etkinle\u015Ftir","users.setup_2fa_enable_error":"An error occurred setting up 2FA","users.setup_2fa_enabled_success":"\u0130ki a\u015Famal\u0131 do\u011Frulama etkinle\u015Ftirildi.","users.setup_2fa_enter_code":"Do\u011Frulama uygulaman\u0131zdaki kodu girin:","users.setup_2fa_scan_qr_code":"Do\u011Frulama uygulaman\u0131zla a\u015Fa\u011F\u0131daki QR kodu taray\u0131n:","users.setup_2fa_server_time_out":"Sunucunuzun saat fark\u0131 {{ timeDiffError }} ms. En fazla izin verilen +/-5000 milisaniyedir","users.setup_2fa_warning":"\u0130ki a\u015Famal\u0131 do\u011Frulama ile giri\u015F yapmak i\xE7in Homebridge sunucunuzun tam do\u011Fru tarih ve zaman ayar\u0131nda olmas\u0131 gerekir. E\u011Fer sunucunuz tarih ve saat ayar\u0131n\u0131 do\u011Fru \u015Fekilde tutam\u0131yorsa 2AD'yi etkinle\u015Ftirmemeniz gerekir aksi takdirde Homebridge UI'a kal\u0131c\u0131 olarak giri\u015F yapamayabilirsiniz.","users.title_add_user":"Kullan\u0131c\u0131 Ekle","users.title_edit_user":"Kullan\u0131c\u0131y\u0131 D\xFCzenle","users.title_users":"Kullan\u0131c\u0131lar","users.toast_added_new_user":"Yeni Kullan\u0131c\u0131 Eklendi","users.toast_failed_to_add_user":"Kullan\u0131c\u0131 Eklenemedi","users.toast_failed_to_delete_user":"Kullan\u0131c\u0131 Silinemedi","users.toast_updated_user":"Kullan\u0131c\u0131 G\xFCncellendi","users.toast_user_deleted":"Kullan\u0131c\u0131 Silindi"}});var Ys=y(($d,Na)=>{Na.exports={"accessories.button_add_room":"\u0414\u043E\u0434\u0430\u0442\u0438 \u043A\u0456\u043C\u043D\u0430\u0442\u0443","accessories.button_hidden_hide":"\u041F\u0440\u0438\u0445\u043E\u0432\u0430\u0442\u0438 \u043F\u0440\u0438\u0445\u043E\u0432\u0430\u043D\u0456","accessories.button_hidden_show":"\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u0438 \u043F\u0440\u0438\u0445\u043E\u0432\u0430\u043D\u0456","accessories.control.auto":"\u0410\u0432\u0442\u043E","accessories.control.away":"\u0417\u0430 \u043C\u0435\u0436\u0430\u043C\u0438 \u0431\u0443\u0434\u0438\u043D\u043A\u0443","accessories.control.battery_charging":"\u0417\u0430\u0440\u044F\u0434\u043A\u0430","accessories.control.battery_notchargeable":"\u0412\u0456\u0434 \u0431\u0430\u0442\u0430\u0440\u0435\u0457","accessories.control.battery_notcharging":"\u041D\u0435 \u0437\u0430\u0440\u044F\u0434\u0436\u0430\u0454\u0442\u044C\u0441\u044F","accessories.control.brightness":"\u042F\u0441\u043A\u0440\u0430\u0432\u0456\u0441\u0442\u044C","accessories.control.closed":"\u0417\u0430\u0447\u0438\u043D\u0435\u043D\u043E","accessories.control.closing":"\u0417\u0430\u0447\u0438\u043D\u044F\u0454\u0442\u044C\u0441\u044F","accessories.control.cool":"\u041E\u0445\u043E\u043B\u043E\u0434\u0436\u0435\u043D\u043D\u044F","accessories.control.default_room":"\u041A\u0456\u043C\u043D\u0430\u0442\u0430 \u0437\u0430 \u0437\u0430\u043C\u043E\u0432\u0447\u0443\u0432\u0430\u043D\u043D\u044F\u043C","accessories.control.default_running_time":"\u0427\u0430\u0441 \u0440\u043E\u0431\u043E\u0442\u0438 \u0437\u0430 \u0437\u0430\u043C\u043E\u0432\u0447\u0443\u0432\u0430\u043D\u043D\u044F\u043C","accessories.control.dehumidifying":"\u041E\u0441\u0443\u0448\u0435\u043D\u043D\u044F","accessories.control.detected":"Detected","accessories.control.drag_here":"\u041F\u0435\u0440\u0435\u0442\u044F\u0433\u043D\u0456\u0442\u044C \u0441\u044E\u0434\u0438","accessories.control.fan":"\u0412\u0435\u043D\u0442\u0438\u043B\u044F\u0442\u043E\u0440","accessories.control.heat":"\u041D\u0430\u0433\u0440\u0456\u0432","accessories.control.home":"\u0412 \u0431\u0443\u0434\u0438\u043D\u043A\u0443","accessories.control.humidifying":"\u0417\u0432\u043E\u043B\u043E\u0436\u0443\u0432\u0430\u043D\u043D\u044F","accessories.control.jammed":"\u0417\u0430\u043A\u043B\u0438\u043D\u0438\u043B\u043E","accessories.control.light":"\u0421\u0432\u0456\u0442\u043B\u043E","accessories.control.locked":"\u0417\u0430\u0431\u043B\u043E\u043A\u043E\u0432\u0430\u043D\u043E","accessories.control.mute":"\u0411\u0435\u0437\u0437\u0432\u0443\u0447\u043D\u0438\u0439","accessories.control.night":"\u041D\u0456\u0447","accessories.control.not_detected":"Not Detected","accessories.control.not_mute":"\u0417\u0456 \u0437\u0432\u0443\u043A\u043E\u043C","accessories.control.off":"\u0412\u0438\u043C\u043A.","accessories.control.on":"\u0423\u0432\u0456\u043C.","accessories.control.open":"\u0412\u0456\u0434\u043A\u0440\u0438\u0442\u043E","accessories.control.opening":"\u0412\u0456\u0434\u043A\u0440\u0438\u0432\u0430\u0454\u0442\u044C\u0441\u044F","accessories.control.rotation_speed":"\u0428\u0432\u0438\u0434\u043A\u0456\u0441\u0442\u044C \u043E\u0431\u0435\u0440\u0442\u0430\u043D\u043D\u044F","accessories.control.running":"\u0417\u0430\u043F\u0443\u0449\u0435\u043D\u043E","accessories.control.speaker_volume":"\u0413\u0443\u0447\u043D\u0456\u0441\u0442\u044C","accessories.control.stopped":"\u0417\u0443\u043F\u0438\u043D\u0435\u043D\u043E","accessories.control.target":"\u0426\u0456\u043B\u044C","accessories.control.target_humidity":"\u0426\u0456\u043B\u044C\u043E\u0432\u0430 \u0432\u043E\u043B\u043E\u0433\u0456\u0441\u0442\u044C","accessories.control.target_temperature":"\u0417\u0430\u0434\u0430\u043D\u0430 \u0442\u0435\u043C\u043F\u0435\u0440\u0430\u0442\u0443\u0440\u0430","accessories.control.triggered":"\u0421\u043F\u0440\u0430\u0446\u044E\u0432\u0430\u043B\u043E","accessories.control.unknown":"\u041D\u0435\u0432\u0456\u0434\u043E\u043C\u0438\u0439","accessories.control.unlocked":"\u0420\u043E\u0437\u0431\u043B\u043E\u043A\u043E\u0432\u0430\u043D\u043E","accessories.control_disabled":"\u041A\u0435\u0440\u0443\u0432\u0430\u043D\u043D\u044F \u0430\u043A\u0441\u0435\u0441\u0443\u0430\u0440\u0430\u043C\u0438 \u0432\u0438\u043C\u043A\u043D\u0435\u043D\u043E","accessories.hide_this_accessory":"\u041F\u0440\u0438\u0445\u043E\u0432\u0430\u0442\u0438 \u0446\u0435\u0439 \u0430\u043A\u0441\u0435\u0441\u0443\u0430\u0440","accessories.message_for_more_information":"\u0429\u043E\u0431 \u043E\u0442\u0440\u0438\u043C\u0430\u0442\u0438 \u0431\u0456\u043B\u044C\u0448\u0435 \u0456\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0456\u0457","accessories.message_must_use_insecure_mode":"\u0429\u043E\u0431 \u043A\u0435\u0440\u0443\u0432\u0430\u0442\u0438 \u0441\u0432\u043E\u0457\u043C\u0438 \u0430\u043A\u0441\u0435\u0441\u0443\u0430\u0440\u0430\u043C\u0438, \u0412\u0438 \u043F\u043E\u0432\u0438\u043D\u043D\u0456 \u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u0438 Homebridge \u0432 \u0431\u0435\u0437\u043F\u0435\u0447\u043D\u043E\u043C\u0443 \u0440\u0435\u0436\u0438\u043C\u0456.","accessories.message_please_see":"\u0411\u0443\u0434\u044C \u043B\u0430\u0441\u043A\u0430, \u043F\u043E\u0434\u0438\u0432\u0456\u0442\u044C\u0441\u044F","accessories.name":"\u041D\u0430\u0437\u0432\u0430","accessories.room_name":"\u041D\u0430\u0437\u0432\u0430 \u043A\u0456\u043C\u043D\u0430\u0442\u0438","accessories.rooms_not_appear_in_homekit":"\u0421\u0442\u0432\u043E\u0440\u0435\u043D\u0456 \u0442\u0443\u0442 \u043A\u0456\u043C\u043D\u0430\u0442\u0438 \u043D\u0435 \u0437'\u044F\u0432\u043B\u044F\u0442\u044C\u0441\u044F \u0432 HomeKit, \u0432\u043E\u043D\u0438 \u043F\u0440\u0438\u0437\u043D\u0430\u0447\u0435\u043D\u0456 \u0434\u043B\u044F \u043E\u0440\u0433\u0430\u043D\u0456\u0437\u0430\u0446\u0456\u0457 \u0430\u043A\u0441\u0435\u0441\u0443\u0430\u0440\u0456\u0432 \u0432 \u0406\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0456 Homebridge Config X.","accessories.settings_link":"\u0412\u0438 \u043C\u043E\u0436\u0435\u0442\u0435 \u0431\u0443\u0434\u044C-\u043A\u043E\u043B\u0438 \u043E\u0442\u0440\u0438\u043C\u0430\u0442\u0438 \u0434\u043E\u0441\u0442\u0443\u043F \u0434\u043E \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u044C Homebridge \u0437 \u0433\u043E\u043B\u043E\u0432\u043D\u043E\u0433\u043E \u043C\u0435\u043D\u044E \u0430\u0431\u043E \u043D\u0430\u0442\u0438\u0441\u043D\u0456\u0442\u044C \u0448\u0435\u0441\u0442\u0435\u0440\u043D\u044E","accessories.show_on_dashboard":"\u0412\u0456\u0434\u043E\u0431\u0440\u0430\u0437\u0438\u0442\u0438 \u043D\u0430 \u043F\u0430\u043D\u0435\u043B\u0456 \u043F\u0440\u0438\u043B\u0430\u0434\u0456\u0432","accessories.title_accessories":"\u0410\u043A\u0441\u0435\u0441\u0443\u0430\u0440\u0438","backup.backup_delete_failed":"Backup deletion failed. See logs for details.","backup.backup_download_failed":"\u041F\u043E\u043C\u0438\u043B\u043A\u0430 \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u043E\u0433\u043E \u043A\u043E\u043F\u0456\u044E\u0432\u0430\u043D\u043D\u044F","backup.backup_exceeds_max_size":"Backup ({{ backupSize }}) exceeds maximum restore file size of {{ maxBackupSizeText }}","backup.backup_help_one":"\u0421\u0442\u0432\u043E\u0440\u0456\u0442\u044C \u0442\u0430 \u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0442\u0435 \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u0443 \u043A\u043E\u043F\u0456\u044E \u0432\u0441\u044C\u043E\u0433\u043E \u0412\u0430\u0448\u043E\u0433\u043E \u0441\u0435\u0440\u0435\u0434\u043E\u0432\u0438\u0449\u0430 Homebridge. \u0412 \u043F\u0440\u043E\u0446\u0435\u0441\u0456 \u0440\u0435\u0437\u0435\u0440\u0432\u0443\u0432\u0430\u043D\u0438\u044F \u0431\u0443\u0434\u0435 \u0441\u0442\u0432\u043E\u0440\u0435\u043D\u0430 \u043A\u043E\u043F\u0456\u044F \u0432\u0441\u044C\u043E\u0433\u043E \u0432\u043C\u0456\u0441\u0442\u0443 \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0456\u0457 \u0437\u0431\u0435\u0440\u0456\u0433\u0430\u043D\u043D\u044F Homebridge, \u044F\u043A\u0443 \u0437\u0433\u043E\u0434\u043E\u043C \u0412\u0438 \u0437\u043C\u043E\u0436\u0435\u0442\u0435 \u0432\u0456\u0434\u043D\u043E\u0432\u0438\u0442\u0438 \u043D\u0430 \u0431\u0443\u0434\u044C-\u044F\u043A\u0456\u0439 \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0456, \u044F\u043A\u0430 \u043F\u0456\u0434\u0442\u0440\u0438\u043C\u0443\u0454 \u0406\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441 Homebridge Config X.","backup.backup_help_two":"\u041F\u043B\u0430\u0433\u0456\u043D\u0438, \u044F\u043A\u0456 \u043D\u0435 \u0440\u043E\u0437\u043C\u0456\u0449\u0435\u043D\u0456 \u0432 npm, \u0430\u0431\u043E \u043F\u043B\u0430\u0433\u0456\u043D\u0438, \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u0456 \u0431\u0435\u0437\u043F\u043E\u0441\u0435\u0440\u0435\u0434\u043D\u044C\u043E \u0437 GitHub, \u043D\u0435 \u0431\u0443\u0434\u0443\u0442\u044C \u0441\u043A\u043E\u043F\u0456\u0439\u043E\u0432\u0430\u043D\u0456 \u0447\u0438 \u0432\u0456\u0434\u043D\u043E\u0432\u043B\u0435\u043D\u0456.","backup.backup_restored":"\u0420\u0435\u0437\u0435\u0440\u0432\u043D\u0430 \u043A\u043E\u043F\u0456\u044F \u0432\u0456\u0434\u043D\u043E\u0432\u043B\u0435\u043D\u0430","backup.backup_warning":"\u0410\u0440\u0445\u0456\u0432\u0438 \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u0438\u0445 \u043A\u043E\u043F\u0456\u0439 \u043C\u0456\u0441\u0442\u044F\u0442\u044C \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0457\u043D\u0443 \u0456\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0456\u044E \u0456 \u043D\u0435 \u043F\u043E\u0432\u0438\u043D\u043D\u0456 \u043F\u0435\u0440\u0435\u0434\u0430\u0432\u0430\u0442\u0438\u0441\u044C \u0456\u043D\u0448\u0438\u043C \u043E\u0441\u043E\u0431\u0430\u043C.","backup.button_restore_backup":"\u0412\u0456\u0434\u043D\u043E\u0432\u0438\u0442\u0438","backup.label_choose_backup_file_to_restore":"\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044C \u0444\u0430\u0439\u043B \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u043E\u0457 \u043A\u043E\u043F\u0456\u0457 \u0434\u043B\u044F \u0432\u0456\u0434\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F\u2026","backup.label_uploading":"\u0417\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F\u2026","backup.load_error":"Failed to load config backup.","backup.now":"Now","backup.restore_failed":"\u041F\u043E\u043C\u0438\u043B\u043A\u0430 \u0432\u0456\u0434\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F \u0437 \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u043E\u0457 \u043A\u043E\u043F\u0456\u0457","backup.restore_help_one":"\u0412\u0456\u0434\u043D\u043E\u0432\u0456\u0442\u044C \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u0443 \u043A\u043E\u043F\u0456\u044E, \u0441\u0442\u0432\u043E\u0440\u0435\u043D\u0443 \u0440\u0430\u043D\u0456\u0448\u0435 \u0437\u0430 \u0434\u043E\u043F\u043E\u043C\u043E\u0433\u043E\u044E \u0406\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0443 Homebridge Config X. \u0412\u0430\u0448\u0430 \u043A\u043E\u043D\u0444\u0456\u0433\u0443\u0440\u0430\u0446\u0456\u044F Homebridge, \u043A\u0435\u0448\u043E\u0432\u0430\u043D\u0456 \u0430\u043A\u0441\u0435\u0441\u0443\u0430\u0440\u0438, \u0441\u0442\u0432\u043E\u0440\u0435\u043D\u0430 \u043F\u0430\u0440\u0430 \u0437 HomeKit \u0442\u0430 \u043E\u0431\u043B\u0456\u043A\u043E\u0432\u0456 \u0437\u0430\u043F\u0438\u0441\u0438 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0456\u0432 Homebridge UI \u0431\u0443\u0434\u0443\u0442\u044C \u0432\u0456\u0434\u043D\u043E\u0432\u043B\u0435\u043D\u0456. \u0412\u0441\u0456 \u043F\u043B\u0430\u0433\u0456\u043D\u0438 Homebridge, \u044F\u043A\u0456 \u0412\u0438 \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u043B\u0438, \u0442\u0430\u043A\u043E\u0436 \u0431\u0443\u0434\u0443\u0442\u044C \u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u0456 \u0437 \u0440\u0435\u043F\u043E\u0437\u0438\u0442\u043E\u0440\u0456\u044E npm.","backup.restore_help_two":"\u041F\u0456\u0441\u043B\u044F \u0432\u0456\u0434\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F \u0412\u0430\u043C \u043F\u043E\u0442\u0440\u0456\u0431\u043D\u043E \u0431\u0443\u0434\u0435 \u0443\u0432\u0456\u0439\u0442\u0438 \u0432 Homebridge UI \u0437 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F\u043C \u043E\u0431\u043B\u0456\u043A\u043E\u0432\u0438\u0445 \u0434\u0430\u043D\u0438\u0445 \u0437 \u0432\u0456\u0434\u043D\u043E\u0432\u043B\u0435\u043D\u043E\u0433\u043E \u0435\u043A\u0437\u0435\u043C\u043F\u043B\u044F\u0440\u0443.","backup.restore_max_size":"\u0412\u0438 \u043C\u043E\u0436\u0435\u0442\u0435 \u0432\u0456\u0434\u043D\u043E\u0432\u0438\u0442\u0438 \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u0443 \u043A\u043E\u043F\u0456\u044E \u0430\u0440\u0445\u0456\u0432\u0443 \u0440\u043E\u0437\u043C\u0456\u0440\u043E\u043C \u0434\u043E {{ maxBackupSizeText }}.","backup.restore_warning":"\u0412\u0456\u0434\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F \u0437 \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u043E\u0457 \u043A\u043E\u043F\u0456\u0457 \u0431\u0435\u0437\u043F\u043E\u0432\u043E\u0440\u043E\u0442\u043D\u043E \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0438\u0448\u0435 \u043F\u043E\u0442\u043E\u0447\u043D\u0443 \u043A\u043E\u043D\u0444\u0456\u0433\u0443\u0440\u0430\u0446\u0456\u044E Homebridge.","backup.scheduled_backup_time":"\u041F\u043E\u0432\u043D\u0430 \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u0430 \u043A\u043E\u043F\u0456\u044F \u0435\u043A\u0437\u0435\u043C\u043F\u043B\u044F\u0440\u0430 Homebridge \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E \u0441\u0442\u0432\u043E\u0440\u044E\u0454\u0442\u044C\u0441\u044F \u0449\u043E\u0434\u043D\u044F \u043E {{ backupTime }} \u0456 \u0437\u0431\u0435\u0440\u0456\u0433\u0430\u0454\u0442\u044C\u0441\u044F \u043F\u0440\u043E\u0442\u044F\u0433\u043E\u043C {{ dayCount }} \u0434\u043D\u0456\u0432.","backup.title_backup":"\u0420\u0435\u0437\u0435\u0440\u0432\u043D\u0435 \u043A\u043E\u043F\u0456\u044E\u0432\u0430\u043D\u043D\u044F","child_bridge.about":"Homebridge \u0434\u043E\u0437\u0432\u043E\u043B\u044F\u0454 \u0437\u0430\u043F\u0443\u0441\u043A\u0430\u0442\u0438 \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0443 \u0430\u0431\u043E \u0430\u043A\u0441\u0435\u0441\u0443\u0430\u0440 \u0412\u0430\u0448\u043E\u0433\u043E \u043F\u043B\u0430\u0433\u0456\u043D\u0430 \u044F\u043A \u0456\u0437\u043E\u043B\u044C\u043E\u0432\u0430\u043D\u0438\u0439 \u0414\u043E\u0447\u0456\u0440\u043D\u0456\u0439 \u043C\u0456\u0441\u0442. \u0426\u0435 \u043C\u043E\u0436\u0435 \u043F\u043E\u043A\u0440\u0430\u0449\u0438\u0442\u0438 \u0437\u0430\u0433\u0430\u043B\u044C\u043D\u0443 \u0448\u0432\u0438\u0434\u043A\u0456\u0441\u0442\u044C \u0440\u0435\u0430\u043A\u0446\u0456\u0457 \u0442\u0430 \u043D\u0430\u0434\u0456\u0439\u043D\u0456\u0441\u0442\u044C Homebridge.","child_bridge.bridge_connect":"\u041F\u0456\u0434\u2019\u0454\u0434\u043D\u0430\u0439\u0442\u0435\u0441\u044F \u0434\u043E HomeKit","child_bridge.bridge_settings":"\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u043C\u043E\u0441\u0442\u0443","child_bridge.bridges":"HomeKit Bridges","child_bridge.bridges_paired":"\u041A\u043E\u0436\u0435\u043D \u0414\u043E\u0447\u0456\u0440\u043D\u0456\u0439 \u043C\u0456\u0441\u0442 \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0443 \u0430\u0431\u043E \u0430\u043A\u0441\u0435\u0441\u0443\u0430\u0440 \u043D\u0435\u043E\u0431\u0445\u0456\u0434\u043D\u043E \u043F\u0456\u0434\u2019\u0454\u0434\u043D\u0430\u0442\u0438 \u0434\u043E HomeKit \u043E\u043A\u0440\u0435\u043C\u043E.","child_bridge.config.debug":"Debug Mode","child_bridge.config.description":"\u0426\u0456 \u043F\u043E\u043B\u044F \u043D\u0435 \u0454 \u043E\u0431\u043E\u0432\u2019\u044F\u0437\u043A\u043E\u0432\u0438\u043C\u0438, \u0430\u043B\u0435 \u0457\u0445 \u043C\u043E\u0436\u043D\u0430 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0432\u0430\u0442\u0438 \u0434\u043B\u044F \u0437\u0430\u043C\u0456\u043D\u0438 \u043A\u043E\u043D\u0444\u0456\u0433\u0443\u0440\u0430\u0446\u0456\u0457 HomeKit \u0434\u043B\u044F \u0446\u044C\u043E\u0433\u043E \u043C\u043E\u0441\u0442\u0443.","child_bridge.config.firmware":"\u0412\u0435\u0440\u0441\u0456\u044F \u041F\u0417","child_bridge.config.header":"\u041A\u043E\u043D\u0444\u0456\u0433\u0443\u0440\u0430\u0446\u0456\u044F","child_bridge.config.manufacturer":"\u0412\u0438\u0440\u043E\u0431\u043D\u0438\u043A","child_bridge.config.model":"\u041C\u043E\u0434\u0435\u043B\u044C","child_bridge.config.name":"\u041D\u0430\u0437\u0432\u0430","child_bridge.must_configure_plugin":"\u0412\u0430\u043C \u043F\u043E\u0442\u0440\u0456\u0431\u043D\u043E \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438 \u0446\u0435\u0439 \u043F\u043B\u0430\u0433\u0456\u043D, \u043F\u0435\u0440\u0448 \u043D\u0456\u0436 \u0412\u0438 \u0437\u043C\u043E\u0436\u0435\u0442\u0435 \u043A\u0435\u0440\u0443\u0432\u0430\u0442\u0438 \u0439\u043E\u0433\u043E \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F\u043C\u0438 \u043C\u043E\u0441\u0442\u0443.","child_bridge.reset_accessories":"Reset Accessories","child_bridge.reset_accessories_list":"Choose from which child bridges you want to reset the accessories below:","child_bridge.restart":"\u041F\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0438\u0442\u0438 \u0414\u043E\u0447\u0456\u0440\u043D\u0456\u0439 \u043C\u0456\u0441\u0442","child_bridge.restart_homebridge":"\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0456\u0442\u044C Homebridge, \u0449\u043E\u0431 \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u0438 \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u0446\u044C\u043E\u0433\u043E \u0414\u043E\u0447\u0456\u0440\u043D\u044C\u043E\u0433\u043E \u043C\u043E\u0441\u0442\u0443.","child_bridge.restart_plural":"\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0456\u0442\u044C \u0414\u043E\u0447\u0456\u0440\u043D\u0456 \u043C\u043E\u0441\u0442\u0438","child_bridge.return_to_pair":"\u041F\u043E\u0432\u0435\u0440\u043D\u0456\u0442\u044C\u0441\u044F \u0434\u043E \u0446\u044C\u043E\u0433\u043E \u0435\u043A\u0440\u0430\u043D\u0443 \u043F\u0456\u0441\u043B\u044F \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A\u0443 Homebridge, \u0449\u043E\u0431 \u043F\u0435\u0440\u0435\u0433\u043B\u044F\u043D\u0443\u0442\u0438 QR-\u043A\u043E\u0434 \u0434\u043B\u044F \u0437\u2019\u0454\u0434\u043D\u0430\u043D\u043D\u044F.","child_bridge.select_type":"\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044C, \u044F\u043A\u0443 \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0443 \u0447\u0438 \u0430\u043A\u0441\u0435\u0441\u0443\u0430\u0440\u0438 \u0412\u0438 \u0445\u043E\u0447\u0435\u0442\u0435 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0432\u0430\u0442\u0438 \u044F\u043A \u0414\u043E\u0447\u0456\u0440\u043D\u0456\u0439 \u043C\u0456\u0441\u0442","child_bridge.setup":"\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438 \u0414\u043E\u0447\u0456\u0440\u043D\u0456\u0439 \u043C\u0456\u0441\u0442","child_bridge.start":"\u0417\u0430\u043F\u0443\u0441\u0442\u0456\u0442\u044C \u0414\u043E\u0447\u0456\u0440\u043D\u0456\u0439 \u043C\u0456\u0441\u0442","child_bridge.start_plural":"\u0417\u0430\u043F\u0443\u0441\u0442\u0456\u0442\u044C \u0414\u043E\u0447\u0456\u0440\u043D\u0456 \u043C\u043E\u0441\u0442\u0438","child_bridge.stop":"\u0417\u0443\u043F\u0438\u043D\u0456\u0442\u044C \u0414\u043E\u0447\u0456\u0440\u043D\u0456\u0439 \u043C\u0456\u0441\u0442","child_bridge.stop_plural":"\u0417\u0443\u043F\u0438\u043D\u0456\u0442\u044C \u0414\u043E\u0447\u0456\u0440\u043D\u0456 \u043C\u043E\u0441\u0442\u0438","child_bridge.wiki_link":"\u0414\u0456\u0437\u043D\u0430\u0439\u0442\u0435\u0441\u044F \u0431\u0456\u043B\u044C\u0448\u0435 \u043F\u0440\u043E \u0414\u043E\u0447\u0456\u0440\u043D\u0456 \u043C\u043E\u0441\u0442\u0438","config.config_accessory_must_be_array":"\u0430\u043A\u0441\u0435\u0441\u0443\u0430\u0440\u0438 \u043F\u043E\u0432\u0438\u043D\u043D\u0456 \u0431\u0443\u0442\u0438 \u043C\u0430\u0441\u0438\u0432\u043E\u043C []","config.config_bridge_missing":"\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u043C\u043E\u0441\u0442\u0443 \u0432\u0456\u0434\u0441\u0443\u0442\u043D\u0456","config.config_invalid_json":"\u041A\u043E\u043D\u0444\u0456\u0433\u0443\u0440\u0430\u0446\u0456\u044F \u043C\u0456\u0441\u0442\u0438\u0442\u044C \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u0438\u0439 JSON","config.config_platform_must_be_array":"\u041F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0438 \u043F\u043E\u0432\u0438\u043D\u043D\u0456 \u0431\u0443\u0442\u0438 \u043C\u0430\u0441\u0438\u0432\u043E\u043C []","config.config_username_error":"\u0406\u043C\u2019\u044F \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430 Bridge \u043C\u0430\u0454 \u0441\u043A\u043B\u0430\u0434\u0430\u0442\u0438\u0441\u044F \u0437 6-\u0442\u0438 \u043F\u0430\u0440 \u0448\u0456\u0441\u0442\u043D\u0430\u0434\u0446\u044F\u0442\u043A\u043E\u0432\u0438\u0445 \u0441\u0438\u043C\u0432\u043E\u043B\u0456\u0432, \u0440\u043E\u0437\u0434\u0456\u043B\u0435\u043D\u0438\u0445 \u0434\u0432\u043E\u043A\u0440\u0430\u043F\u043A\u0430\u043C\u0438 (A-F 0-9)","config.error_blocks_objects":"All {{ type }} blocks must be objects.","config.error_blocks_type":"All {{ type }} blocks must contain the {{ type }} attribute.","config.error_string_array":"Each item in the {{ key }} array must be a string.","config.error_string_type":"The {{ type }} attribute must be a string.","config.failed_to_save_config":"\u041D\u0435 \u0432\u0434\u0430\u043B\u043E\u0441\u044F \u0437\u0431\u0435\u0440\u0435\u0433\u0442\u0438 \u043A\u043E\u043D\u0444\u0456\u0433\u0443\u0440\u0430\u0446\u0456\u044E","config.restore.confirm":"\u041D\u0430\u0442\u0438\u0441\u043D\u0456\u0442\u044C \xAB\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438\xBB, \u0447\u0442\u043E\u0431 \u043F\u0456\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0438, \u0447\u0442\u043E \u0412\u044B \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u0432\u0456\u0434\u043D\u043E\u0432\u0438\u0442\u0438 \u0446\u044E \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u0443 \u043A\u043E\u043F\u0456\u044E.","config.restore.copy_to_editor":"\u041A\u043E\u043F\u0456\u044E\u0432\u0430\u0442\u0438 \u0432 \u0440\u0435\u0434\u0430\u043A\u0442\u043E\u0440","config.restore.no_backups":"\u041D\u0435\u043C\u0430\u0454 \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u0438\u0445 \u043A\u043E\u043F\u0456\u0439","config.restore.title_restore_homebridge_backup":"\u0412\u0456\u0434\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F \u043A\u043E\u043D\u0444\u0456\u0433\u0443\u0440\u0430\u0446\u0456\u0457 Homebridge \u0437 \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u043E\u0457 \u043A\u043E\u043F\u0456\u0457","config.restore.toast_backups_deleted":"\u0412\u0441\u0456 \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u0456 \u043A\u043E\u043F\u0456\u0457 \u0432\u0438\u0434\u0430\u043B\u0435\u043D\u043E","config.title_backup_loaded":"\u0420\u0435\u0437\u0435\u0440\u0432\u043D\u0430 \u043A\u043E\u043F\u0456\u044F \u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u0430","form.button_cancel":"\u0412\u0456\u0434\u043C\u0456\u043D\u0438\u0442\u0438","form.button_close":"\u0417\u0430\u043A\u0440\u0438\u0442\u0438","form.button_delete":"\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438","form.button_disable":"\u0412\u0438\u043C\u043A\u043D\u0443\u0442\u0438","form.button_download":"\u0417\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0438\u0442\u0438","form.button_edit":"\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438","form.button_enable":"\u0423\u0432\u0456\u043C\u043A\u043D\u0443\u0442\u0438","form.button_hide":"\u041F\u0440\u0438\u0445\u043E\u0432\u0430\u0442\u0438","form.button_lock":"\u0417\u0430\u0431\u043B\u043E\u043A\u0443\u0432\u0430\u0442\u0438","form.button_more_info":"\u0411\u0456\u043B\u044C\u0448\u0435 \u0456\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0456\u0457","form.button_remove":"\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438","form.button_reset":"\u0421\u043A\u0438\u043D\u0443\u0442\u0438","form.button_restore":"\u0412\u0456\u0434\u043D\u043E\u0432\u0438\u0442\u0438","form.button_save":"\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438","form.button_show":"Show","form.button_unlock":"\u0420\u043E\u0437\u0431\u043B\u043E\u043A\u0443\u0432\u0430\u0442\u0438","form.button_unpair":"Unpair","form.label_invalid":"Config validation failed - you can still save your changes.","form.label_invalid_strict":"Config validation failed - please review the form before saving.","form.label_valid":"Config validation passed.","form.select.auto":"Automatic (Use Browser Settings)","login.button_login":"\u0423\u0432\u0456\u0439\u0442\u0438","login.invalid_credentials":"\u041D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u0435 \u0456\u043C'\u044F \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430 \u0430\u0431\u043E \u043F\u0430\u0440\u043E\u043B\u044C.","login.label_2fa_code":"\u041A\u043E\u0434 2FA","login.label_password":"\u041F\u0430\u0440\u043E\u043B\u044C","login.label_username":"\u0406\u043C'\u044F \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430","login.message_invalid_2fa_code":"\u0412\u0432\u0435\u0434\u0435\u043D\u0438\u0439 \u043A\u043E\u0434 \u043D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u0438\u0439 \u0430\u0431\u043E \u0442\u0435\u0440\u043C\u0456\u043D \u0439\u043E\u0433\u043E \u0434\u0456\u0457 \u043C\u0438\u043D\u0443\u0432.","logs.download.error":"Failed to download log file.","logs.download_warning":"\u0424\u0430\u0439\u043B\u0438 \u0436\u0443\u0440\u043D\u0430\u043B\u0443 Homebridge \u043C\u043E\u0436\u0443\u0442\u044C \u043C\u0456\u0441\u0442\u0438\u0442\u0438 \u043E\u0441\u043E\u0431\u0438\u0441\u0442\u0443 \u0456\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0456\u044E, \u043F\u0430\u0440\u043E\u043B\u0456 \u0430\u0431\u043E \u043C\u0430\u0440\u043A\u0435\u0440\u0438 \u0434\u043E\u0441\u0442\u0443\u043F\u0443. \u0411\u0443\u0434\u044C \u043B\u0430\u0441\u043A\u0430, \u043F\u0435\u0440\u0435\u0433\u043B\u044F\u043D\u044C\u0442\u0435 \u0444\u0430\u0439\u043B \u0436\u0443\u0440\u043D\u0430\u043B\u0443 \u0442\u0430 \u0432\u0438\u0434\u0430\u043B\u0456\u0442\u044C \u0431\u0443\u0434\u044C-\u044F\u043A\u0443 \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u0443 \u0456\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0456\u044E, \u043F\u0435\u0440\u0448 \u043D\u0456\u0436 \u043F\u043E\u0434\u0456\u043B\u0438\u0442\u0438\u0441\u044F \u0437 \u0456\u043D\u0448\u0438\u043C\u0438.","logs.log_file_truncated":"\u0424\u0430\u0439\u043B \u0436\u0443\u0440\u043D\u0430\u043B\u0443 \u0441\u043A\u043E\u0440\u043E\u0447\u0435\u043D\u043E.","logs.title_download_log_file":"\u0417\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0438\u0442\u0438 \u0444\u0430\u0439\u043B \u0436\u0443\u0440\u043D\u0430\u043B\u0443","logs.title_truncate_log_file":"\u0421\u043A\u043E\u0440\u043E\u0442\u0438\u0442\u0438 \u0444\u0430\u0439\u043B \u0436\u0443\u0440\u043D\u0430\u043B\u0443","logs.truncate.error":"Failed to truncate log file.","logs.truncate_log_warning":"\u0426\u044F \u0434\u0456\u044F \u0431\u0435\u0437\u043F\u043E\u0432\u043E\u0440\u043E\u0442\u043D\u043E \u0432\u0438\u0434\u0430\u043B\u0438\u0442\u044C \u043D\u0430\u044F\u0432\u043D\u0456 \u0436\u0443\u0440\u043D\u0430\u043B\u0438 Homebridge. \u0412\u0438 \u0432\u043F\u0435\u0432\u043D\u0435\u043D\u0456, \u0449\u043E \u0445\u043E\u0447\u0435\u0442\u0435 \u043F\u0440\u043E\u0434\u043E\u0432\u0436\u0438\u0442\u0438?","menu.config_json_editor":"JSON Config","menu.docker.restart_container":"\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A \u043A\u043E\u043D\u0442\u0435\u0439\u043D\u0435\u0440\u0430","menu.docker.startup_script":"\u0421\u043A\u0440\u0438\u043F\u0442 \u0437\u0430\u043F\u0443\u0441\u043A\u0443","menu.docker.terminal":"\u0422\u0435\u0440\u043C\u0456\u043D\u0430\u043B","menu.hbrestart.confirm_hb":"\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u0438 Homebridge","menu.hbrestart.confirm_ui":"\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u0438 HB Service & UI","menu.hbrestart.title":"\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0456\u0442\u044C Homebridge","menu.label_accessories":"\u0410\u043A\u0441\u0435\u0441\u0443\u0430\u0440\u0438","menu.label_plugins":"\u041F\u043B\u0430\u0433\u0456\u043D\u0438","menu.label_settings":"\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F","menu.label_settings_advanced":"UI Advanced Settings","menu.label_status":"\u0421\u0442\u0430\u0442\u0443\u0441","menu.linux.label_logs":"\u0416\u0443\u0440\u043D\u0430\u043B\u0438","menu.linux.label_restart_server":"\u041F\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0438\u0442\u0438 \u0441\u0435\u0440\u0432\u0435\u0440","menu.linux.label_shutdown_server":"\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043D\u043D\u044F \u0440\u043E\u0431\u043E\u0442\u0438 \u0441\u0435\u0440\u0432\u0435\u0440\u0430","menu.linux.label_terminal":"\u0422\u0435\u0440\u043C\u0456\u043D\u0430\u043B","menu.restart.title":"\u041E\u043F\u0446\u0456\u0457 \u0436\u0438\u0432\u043B\u0435\u043D\u043D\u044F","menu.settings.title":"\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F","menu.tooltip_logout":"\u0412\u0438\u0445\u0456\u0434","menu.tooltip_restart":"\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A","menu.tooltip_user_accounts":"\u041A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0456","menu.tooltip_view_logs":"\u041F\u0435\u0440\u0435\u0433\u043B\u044F\u0434 \u0436\u0443\u0440\u043D\u0430\u043B\u0443","platform.docker.container_restarted":"\u041A\u043E\u043D\u0442\u0435\u0439\u043D\u0435\u0440 Docker \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0449\u0435\u043D\u0438\u0439","platform.docker.must_use_hashbang":"\u041A\u043E\u0434 \u0441\u043A\u0440\u0438\u043F\u0442\u0443 \u043F\u043E\u0432\u0438\u043D\u0435\u043D \u043F\u043E\u0447\u0438\u043D\u0430\u0442\u0438\u0441\u044C \u0437 #!/bin/sh","platform.docker.restart_required":"\u0412\u0430\u043C \u043D\u0435\u043E\u0431\u0445\u0456\u0434\u043D\u043E \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u0438 \u0446\u0435\u0439 \u043A\u043E\u043D\u0442\u0435\u0439\u043D\u0435\u0440, \u0449\u043E\u0431 \u0437\u043C\u0456\u043D\u0438 \u043F\u043E\u0447\u0430\u043B\u0438 \u0434\u0456\u044F\u0442\u0438.","platform.docker.run_with_restart":"\u041F\u0435\u0440\u0435\u043A\u043E\u043D\u0430\u0439\u0442\u0435\u0441\u044C, \u0449\u043E \u0412\u0438 \u0437\u0430\u043F\u0443\u0441\u043A\u0430\u0454\u0442\u0435 \u043A\u043E\u043D\u0442\u0435\u0439\u043D\u0435\u0440 Docker \u0437 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0430\u043C\u0438 <code>--restart=always</code>","platform.docker.script_help":"\u0426\u0435\u0439 \u0441\u043A\u0440\u0438\u043F\u0442 \u0431\u0443\u0434\u0435 \u0432\u0438\u043A\u043E\u043D\u0443\u0432\u0430\u0442\u0438\u0441\u044C \u043A\u043E\u0436\u043D\u043E\u0433\u043E \u0440\u0430\u0437\u0443 \u043F\u0440\u0438 \u0437\u0430\u043F\u0443\u0441\u043A\u0443 \u043A\u043E\u043D\u0442\u0435\u0439\u043D\u0435\u0440\u0430 Docker. \u0412\u0438 \u043C\u043E\u0436\u0435\u0442\u0435 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0432\u0430\u0442\u0438 \u0446\u0435 \u0434\u043B\u044F \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F \u0431\u0443\u0434\u044C-\u044F\u043A\u0438\u0445 \u0434\u043E\u0434\u0430\u0442\u043A\u043E\u0432\u0438\u0445 \u043F\u0430\u043A\u0435\u0442\u0456\u0432, \u043A\u043E\u0442\u0440\u0456 \u043C\u043E\u0436\u0443\u0442\u044C \u0437\u043D\u0430\u0434\u043E\u0431\u0438\u0442\u0438\u0441\u044F \u0412\u0430\u0448\u0438\u043C \u043F\u043B\u0430\u0433\u0456\u043D\u0430\u043C, \u043D\u0430\u043F\u0440\u0438\u043A\u043B\u0430\u0434, ffmpeg \u0430\u0431\u043E libpcap-dev.","platform.docker.script_saved":"\u0421\u043A\u0440\u0438\u043F\u0442 \u0430\u0432\u0442\u043E\u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F \u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043D\u0438\u0439","platform.docker.server_long_time":"\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A \u043A\u043E\u043D\u0442\u0435\u0439\u043D\u0435\u0440\u0430 \u0437\u0430\u0439\u043C\u0430\u0454 \u0431\u0430\u0433\u0430\u0442\u043E \u0447\u0430\u0441\u0443. \u041C\u043E\u0436\u043B\u0438\u0432\u043E \u0412\u0430\u043C \u0434\u043E\u0432\u0435\u0434\u0435\u0442\u044C\u0441\u044F \u0432\u0440\u0443\u0447\u043D\u0443\u044E \u0432\u0456\u0434\u043A\u0440\u0438\u0442\u0438 \u043A\u043E\u043D\u0442\u0435\u0439\u043D\u0435\u0440 Docker.","platform.docker.title_restarting":"\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A \u043A\u043E\u043D\u0442\u0435\u0439\u043D\u0435\u0440\u0430 Docker","platform.linux.long_time":"\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0437\u0430\u0439\u043C\u0430\u0454 \u0431\u0430\u0433\u0430\u0442\u043E \u0447\u0430\u0441\u0443. \u041C\u043E\u0436\u043B\u0438\u0432\u043E, \u0432\u0430\u043C \u0437\u043D\u0430\u0434\u043E\u0431\u0438\u0442\u044C\u0441\u044F \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u0438 \u0441\u0435\u0440\u0432\u0435\u0440 \u0432\u0440\u0443\u0447\u043D\u0443.","platform.linux.restart":"\u0411\u0443\u0434\u044C \u043B\u0430\u0441\u043A\u0430, \u0437\u0430\u0447\u0435\u043A\u0430\u0439\u0442\u0435, \u0446\u044F \u0441\u0442\u043E\u0440\u0456\u043D\u043A\u0430 \u0431\u0443\u0434\u0435 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E \u043E\u043D\u043E\u0432\u043B\u0435\u043D\u0430, \u043A\u043E\u043B\u0438 Homebridge \u0437\u043D\u043E\u0432\u0443 \u0431\u0443\u0434\u0435 \u043E\u043D\u043B\u0430\u0439\u043D.","platform.linux.restarting_server":"\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A \u0441\u0435\u0440\u0432\u0435\u0440\u0430","platform.linux.server_restart_error":"\u0412\u0438\u043D\u0438\u043A\u043B\u0430 \u043F\u043E\u043C\u0438\u043B\u043A\u0430 \u0432\u0456\u0434\u043F\u0440\u0430\u0432\u043A\u0438 \u043A\u043E\u043C\u0430\u043D\u0434\u0438 \u043F\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F \u043D\u0430 \u0441\u0435\u0440\u0432\u0435\u0440","platform.linux.server_restarted":"\u0421\u0435\u0440\u0432\u0435\u0440 \u043F\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u0438\u0439","platform.linux.server_taking_long_time":"\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0437\u0430\u0439\u043C\u0430\u0454 \u0431\u0430\u0433\u0430\u0442\u043E \u0447\u0430\u0441\u0443","platform.linux.server_will_power_down":"\u0421\u0435\u0440\u0432\u0435\u0440 \u0441\u043A\u043E\u0440\u043E \u0432\u0456\u0434\u043A\u043B\u044E\u0447\u0438\u0442\u044C\u0441\u044F.","platform.linux.shutting_down_server":"\u0412\u0438\u043C\u043A\u043D\u0435\u043D\u043D\u044F \u0441\u0435\u0440\u0432\u0435\u0440\u0430","platform.version.restart_required":"\u0406\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441 Homebridge v{{ uiVersion }} \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043E, \u0430\u043B\u0435 \u0441\u043B\u0443\u0436\u0431\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0432\u0441\u0435 \u0449\u0435 \u043F\u0440\u0430\u0446\u044E\u0454 \u043D\u0430 v{{ serverVersion }}.","platform.version.service_restart_required":"\u041F\u043E\u0442\u0440\u0456\u0431\u0435\u043D \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A \u0441\u043B\u0443\u0436\u0431\u0438","plugins.bridge.action_error":"Failed to {{ action }} child bridge(s).","plugins.button_homepage":"\u0414\u043E\u043C\u0430\u0448\u043D\u044F \u0441\u0442\u043E\u0440\u0456\u043D\u043A\u0430 \u043F\u043B\u0430\u0433\u0456\u043D\u0430","plugins.button_set_up":"\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438","plugins.button_settings":"\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F","plugins.button_uninstall":"\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438","plugins.button_update":"\u041E\u043D\u043E\u0432\u0438\u0442\u0438","plugins.compat.are_you_sure":"Are you sure you want to continue anyway?","plugins.compat.hb_node_too_low":"{{ packageName }} v{{ latestVersion }} \u043F\u043E\u0442\u0440\u0435\u0431\u0443\u0454 Node.js v{{ minVersion }} \u0430\u0431\u043E \u043D\u043E\u0432\u0456\u0448\u043E\u0457. \u041D\u0430 \u0434\u0430\u043D\u0438\u0439 \u0447\u0430\u0441 \u0412\u0438 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0454\u0442\u0435 Node.js {{ installedVersion }}.","plugins.compat.hb_too_low":"\u041F\u043B\u0430\u0433\u0456\u043D {{ pluginName }} \u0440\u0435\u043A\u043E\u043C\u0435\u043D\u0434\u043E\u0432\u0430\u043D\u043E \u0437\u0430\u043F\u0443\u0441\u043A\u0430\u0442\u0438 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u044E\u0447\u0438 Homebridge v{{ minVersion }} \u0430\u0431\u043E \u043D\u043E\u0432\u0456\u0448\u043E\u0457. \u041D\u0430 \u0434\u0430\u043D\u0438\u0439 \u0447\u0430\u0441 \u0412\u0438 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0454\u0442\u0435 Homebridge v{{ installedVersion }}.","plugins.compat.node_first":"\u0411\u0443\u0434\u044C \u043B\u0430\u0441\u043A\u0430, \u043E\u043D\u043E\u0432\u0456\u0442\u044C Node.js \u043F\u0435\u0440\u0435\u0434 \u043E\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F\u043C {{ packageName }}.","plugins.compat.node_link":"How To Update Node.js","plugins.compat.node_too_low":"\u041F\u043B\u0430\u0433\u0456\u043D {{ pluginName }} \u0440\u0435\u043A\u043E\u043C\u0435\u043D\u0434\u043E\u0432\u0430\u043D\u043E \u0437\u0430\u043F\u0443\u0441\u043A\u0430\u0442\u0438 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u044E\u0447\u0438 Node.js v{{ minVersion }} \u0430\u0431\u043E \u043D\u043E\u0432\u0456\u0448\u043E\u0457. \u041D\u0430 \u0434\u0430\u043D\u0438\u0439 \u0447\u0430\u0441 \u0412\u0438 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0454\u0442\u0435 Node.js {{ installedVersion }}.","plugins.compat.title":"Compatibility Check","plugins.config.load_error":"Failed to load plugin config.","plugins.config.must_be_array":"Plugin config must be an array.","plugins.config.must_be_array_objects":"Plugin config must be an array of objects.","plugins.config.must_be_object":"Config block must be an object.","plugins.config.name_property":'Accessory must have a valid "name" attribute',"plugins.config.please_fix":"Please fix validation errors before adding a new block.","plugins.config.remove_error":"Failed to remove plugin config.","plugins.disable.error":"Failed to disable plugin.","plugins.donate.button_not_verified":"\u041D\u0435 \u043F\u0435\u0440\u0435\u0432\u0456\u0440\u0435\u043D\u043E","plugins.donate.button_verified":"\u041F\u0435\u0440\u0435\u0432\u0456\u0440\u0435\u043D\u043E","plugins.donate.message_1":"\u041E\u0441\u043A\u0456\u043B\u044C\u043A\u0438 \u0432\u0441\u0435 \u0431\u0456\u043B\u044C\u0448\u0435 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0456\u0432 \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u044E\u044E\u0442\u044C \u0441\u0432\u043E\u0457 \u043F\u043B\u0430\u0433\u0456\u043D\u0438 \u0447\u0435\u0440\u0435\u0437 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u043B\u044C\u043D\u0438\u0446\u044C\u043A\u0438\u0439 \u0456\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441 Homebridge, \u0432\u043E\u043D\u0438 \u0437 \u043C\u0435\u043D\u0448\u043E\u044E \u0439\u043C\u043E\u0432\u0456\u0440\u043D\u0456\u0441\u0442\u044E \u0432\u0456\u0434\u0432\u0456\u0434\u0443\u0432\u0430\u0442\u0438\u043C\u0443\u0442\u044C \u0441\u0442\u043E\u0440\u0456\u043D\u043A\u0443 \u043F\u0440\u043E\u0435\u043A\u0442\u0443 \u043D\u0430 GitHub, \u0434\u0435 \u0437\u0430\u0437\u0432\u0438\u0447\u0430\u0439 \u0432\u0456\u0434\u043E\u0431\u0440\u0430\u0436\u0430\u044E\u0442\u044C\u0441\u044F \u0441\u043F\u043E\u0441\u043E\u0431\u0438 \u043F\u0456\u0434\u0442\u0440\u0438\u043C\u043A\u0438 \u0440\u043E\u0437\u0440\u043E\u0431\u043D\u0438\u043A\u0430.","plugins.donate.message_2":"\u0414\u043E\u0434\u0430\u0432\u0430\u043D\u043D\u044F \u043F\u043E\u0441\u0438\u043B\u0430\u043D\u044C \u0434\u043B\u044F \u0434\u043E\u043D\u0430\u0442\u0456\u0432 \u0431\u0435\u0437\u043F\u043E\u0441\u0435\u0440\u0435\u0434\u043D\u044C\u043E \u0432 \u0456\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0456 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430 Homebridge \u0433\u0430\u0440\u0430\u043D\u0442\u0443\u0454, \u0449\u043E \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0456 \u0437\u043D\u0430\u044E\u0442\u044C, \u044F\u043A \u043F\u0456\u0434\u0442\u0440\u0438\u043C\u0430\u0442\u0438 \u0440\u043E\u0437\u0440\u043E\u0431\u043D\u0438\u043A\u0456\u0432 Homebridge, \u044F\u043A\u0449\u043E \u0432\u043E\u043D\u0438 \u0446\u044C\u043E\u0433\u043E \u0437\u0430\u0431\u0430\u0436\u0430\u044E\u0442\u044C.","plugins.donate.tile_donate_to":"\u0417\u0430\u0434\u043E\u043D\u0430\u0442\u0438\u0442\u0438 \u0434\u043B\u044F {{ author }}","plugins.enable.error":"Failed to enable plugin.","plugins.manage.all_versions":"All versions","plugins.manage.child_bridge_restart":"Child bridge restarted successfully.","plugins.manage.child_bridge_restart_failed":"\u041D\u0435 \u0432\u0434\u0430\u043B\u043E\u0441\u044F \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u0438 \u043F\u043B\u0430\u0433\u0456\u043D, \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0456\u0442\u044C Homebridge \u0432\u0440\u0443\u0447\u043D\u0443.","plugins.manage.confirm_disable":"\u0412\u0438 \u0432\u043F\u0435\u0432\u043D\u0435\u043D\u0456, \u0449\u043E \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u0432\u0438\u043C\u043A\u043D\u0443\u0442\u0438 {{ pluginName }}?","plugins.manage.confirm_disable_accessory_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen and removed from HomeKit.","plugins.manage.confirm_disable_accessory_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and HomeKit. The accessories will lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_disable_platform_1":"\u0411\u0443\u0434\u044C-\u044F\u043A\u0456 \u0430\u043A\u0441\u0435\u0441\u0443\u0430\u0440\u0438, \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0456 \u0437\u0430 \u0434\u043E\u043F\u043E\u043C\u043E\u0433\u043E\u044E \u0446\u044C\u043E\u0433\u043E \u043F\u043B\u0430\u0433\u0456\u043D\u0430, \u0431\u0443\u0434\u0435 \u0432\u0438\u0434\u0430\u043B\u0435\u043D\u043E \u0437 \u0435\u043A\u0440\u0430\u043D\u0443 \u0430\u043A\u0441\u0435\u0441\u0443\u0430\u0440\u0456\u0432 Homebridge UI, \u0430\u043B\u0435 \u0432\u043E\u043D\u0438 \u0437\u0430\u043B\u0438\u0448\u0438\u0442\u044C\u0441\u044F \u0432 HomeKit \u0456\u0437 \u043F\u043E\u0437\u043D\u0430\u0447\u043A\u043E\u044E \xAB\u041D\u0435\u043C\u0430\u0454 \u0432\u0456\u0434\u043F\u043E\u0432\u0456\u0434\u0456\xBB.","plugins.manage.confirm_disable_platform_2":"\u041A\u043E\u043B\u0438 \u0432\u0438 \u0437\u043D\u043E\u0432\u0443 \u0432\u0432\u0456\u043C\u043A\u043D\u0435\u0442\u0435 \u043F\u043B\u0430\u0433\u0456\u043D, \u0430\u043A\u0441\u0435\u0441\u0443\u0430\u0440\u0438 \u0437\u2019\u044F\u0432\u043B\u044F\u0442\u044C\u0441\u044F \u0432 \u0456\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0456 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430 Homebridge, \u0456 \u043D\u0438\u043C\u0438 \u0437\u043D\u043E\u0432\u0443 \u043C\u043E\u0436\u043D\u0430 \u0431\u0443\u0434\u0435 \u043A\u0435\u0440\u0443\u0432\u0430\u0442\u0438 \u0432 HomeKit. \u0410\u043A\u0441\u0435\u0441\u0443\u0430\u0440\u0438 \u043D\u0435 \u0432\u0442\u0440\u0430\u0442\u044F\u0442\u044C \u0441\u0432\u043E\u0457 \u0434\u0430\u043D\u0456 \u0432 HomeKit (\u043D\u0430\u043F\u0440\u0438\u043A\u043B\u0430\u0434, \u043F\u043E\u0432\u2019\u044F\u0437\u0430\u043D\u0456 \u0441\u0446\u0435\u043D\u0438 \u0442\u0430 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0437\u0430\u0446\u0456\u044F).","plugins.manage.confirm_enable":"\u0412\u0438 \u0432\u043F\u0435\u0432\u043D\u0435\u043D\u0456, \u0449\u043E \u0445\u043E\u0447\u0435\u0442\u0435 \u0443\u0432\u0456\u043C\u043A\u043D\u0443\u0442\u0438{{ pluginName }}?","plugins.manage.disable":"\u0412\u0438\u043C\u043A\u043D\u0443\u0442\u0438","plugins.manage.enable":"\u0423\u0432\u0456\u043C\u043A\u043D\u0443\u0442\u0438","plugins.manage.information":"\u0406\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0456\u044F \u043F\u0440\u043E \u043F\u043B\u0430\u0433\u0456\u043D","plugins.manage.install":"\u0412\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F","plugins.manage.installed":"\u041F\u043B\u0430\u0433\u0456\u043D \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043E","plugins.manage.json_config":"\u041A\u043E\u043D\u0444\u0456\u0433\u0443\u0440\u0430\u0446\u0456\u044F JSON","plugins.manage.manage_version":"\u0412\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u0438 \u0430\u043B\u044C\u0442\u0435\u0440\u043D\u0430\u0442\u0438\u0432\u043D\u0443 \u0432\u0435\u0440\u0441\u0456\u044E","plugins.manage.manual_update_command":"\u0429\u043E\u0431 \u043E\u043D\u043E\u0432\u0438\u0442\u0438 \u043F\u0430\u043A\u0435\u0442, \u0432\u0456\u0434\u043A\u0440\u0438\u0439\u0442\u0435 \u043A\u043E\u043C\u0430\u043D\u0434\u043D\u0438\u0439 \u0440\u044F\u0434\u043E\u043A Node.js \u0432\u0456\u0434 \u0456\u043C\u0435\u043D\u0456 \u0430\u0434\u043C\u0456\u043D\u0456\u0441\u0442\u0440\u0430\u0442\u043E\u0440\u0430 \u0442\u0430 \u0432\u0438\u043A\u043E\u043D\u0430\u0439\u0442\u0435 \u0442\u0430\u043A\u0456 \u043A\u043E\u043C\u0430\u043D\u0434\u0438:","plugins.manage.manual_update_required":"\u041D\u0435\u043E\u0431\u0445\u0456\u0434\u043D\u0435 \u043E\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F \u0432\u0440\u0443\u0447\u043D\u0443\u044E","plugins.manage.online_updates":"\u041E\u043D\u043B\u0430\u0439\u043D \u043E\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F \u043D\u0435 \u043F\u0456\u0434\u0442\u0440\u0438\u043C\u0443\u0454\u0442\u044C\u0441\u044F \u0432 Windows. \u0412\u0430\u043C \u043D\u0435\u043E\u0431\u0445\u0456\u0434\u043D\u043E \u043E\u043D\u043E\u0432\u0438\u0442\u0438 Homebridge UI \u0432\u0440\u0443\u0447\u043D\u0443\u044E \u043F\u0456\u0441\u043B\u044F \u0437\u0443\u043F\u0438\u043D\u043A\u0438 \u0441\u043B\u0443\u0436\u0431\u0438 Homebridge.","plugins.manage.plugin_logs":"\u0416\u0443\u0440\u043D\u0430\u043B\u0438 \u043F\u043B\u0430\u0433\u0456\u043D\u0456\u0432","plugins.manage.release_notes":"\u041D\u043E\u0442\u0430\u0442\u043A\u0438 \u0434\u043E \u0440\u0435\u043B\u0456\u0437\u0443","plugins.manage.scoped.error":"An error occurred. You can download the logs below.","plugins.manage.scoped.info":"For more information about scoped plugins and why to switch, see the wiki page {{ link }}.","plugins.manage.scoped.process":"This process will not affect your Homebridge/HomeKit accessories. You will not be able to cancel the process once it has started. It will:","plugins.manage.scoped.switch":"Switch To Scoped Plugin","plugins.manage.scoped.windows":"Online updates are not supported on Windows. You will need to install the new plugin and uninstall the old plugin manually.","plugins.manage.scoped.windows_service":'You should <span class="font-weight-bold">not</span> restart Homebridge until both steps are complete.',"plugins.manage.select_version":"\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044C \u0432\u0435\u0440\u0441\u0456\u044E \u0434\u043B\u044F \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F","plugins.manage.thanks_for_updating":"\u0414\u044F\u043A\u0443\u0454\u043C\u043E \u0437\u0430 \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F \u043E\u0441\u0442\u0430\u043D\u043D\u044C\u043E\u0457 \u0432\u0435\u0440\u0441\u0456\u0457 {{ pluginName }}.","plugins.manage.uninstall":"\u0412\u0438\u0434\u0430\u043B\u0435\u043D\u043D\u044F","plugins.manage.uninstalled":"\u041F\u043B\u0430\u0433\u0456\u043D \u0432\u0438\u0434\u0430\u043B\u0435\u043D\u043E","plugins.manage.unverified_message":"\u041D\u0435\u043F\u0435\u0440\u0435\u0432\u0456\u0440\u0435\u043D\u0456 \u043F\u043B\u0430\u0433\u0456\u043D\u0438 Homebridge \u0441\u0432\u0456\u0434\u0447\u0430\u0442\u044C \u043F\u0440\u043E \u0442\u0435, \u0449\u043E \u0432\u043E\u043D\u0438 \u043D\u0435 \u043F\u0440\u043E\u0439\u0448\u043B\u0438 \u043F\u0435\u0440\u0435\u0432\u0456\u0440\u043A\u0443 \u043A\u043E\u043C\u0430\u043D\u0434\u043E\u044E \u043F\u0440\u043E\u0435\u043A\u0442\u0443 Homebridge. \u0412\u0456\u0434\u0441\u0443\u0442\u043D\u0456\u0441\u0442\u044C \u0432\u0435\u0440\u0438\u0444\u0456\u043A\u0430\u0446\u0456\u0457 \u043D\u0435 \u043E\u0431\u043E\u0432\u2019\u044F\u0437\u043A\u043E\u0432\u043E \u043E\u0437\u043D\u0430\u0447\u0430\u0454 \u043D\u0435\u0435\u0444\u0435\u043A\u0442\u0438\u0432\u043D\u0456\u0441\u0442\u044C \u0430\u0431\u043E \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0438 \u0437 \u0431\u0435\u0437\u043F\u0435\u043A\u043E\u044E. \u0410\u0432\u0442\u043E\u0440\u0438 \u043C\u043E\u0433\u043B\u0438 \u0432\u0456\u0434\u043C\u043E\u0432\u0438\u0442\u0438\u0441\u044F \u0432\u0456\u0434 \u043F\u0435\u0440\u0435\u0432\u0456\u0440\u043A\u0438 \u0437 \u0440\u0456\u0437\u043D\u0438\u0445 \u043F\u0440\u0438\u0447\u0438\u043D.","plugins.manage.unverified_subtitle":"{{ pluginName }} \u043D\u0435 \u043F\u0435\u0440\u0435\u0432\u0456\u0440\u0435\u043D\u043E","plugins.manage.unverified_title":"\u041D\u0435\u043F\u0435\u0440\u0435\u0432\u0456\u0440\u0435\u043D\u0456 \u043F\u043B\u0430\u0433\u0456\u043D\u0438","plugins.manage.update":"\u041E\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F","plugins.manage.updated":"\u041E\u043D\u043E\u0432\u043B\u0435\u043D\u043E","plugins.manage.verified_message":"\u041F\u043B\u0430\u0433\u0456\u043D\u0438 Homebridge, \u043F\u043E\u0437\u043D\u0430\u0447\u0435\u043D\u0456 \u044F\u043A \u043F\u0435\u0440\u0435\u0432\u0456\u0440\u0435\u043D\u0456, \u0431\u0443\u043B\u0438 \u0432\u0435\u0440\u0438\u0444\u0456\u043A\u043E\u0432\u0430\u043D\u0456 \u043A\u043E\u043C\u0430\u043D\u0434\u043E\u044E \u043F\u0440\u043E\u0435\u043A\u0442\u0443 Homebridge, \u0449\u043E\u0431 \u043F\u0435\u0440\u0435\u043A\u043E\u043D\u0430\u0442\u0438\u0441\u044F, \u0449\u043E \u0432\u043E\u043D\u0438 \u0432\u0456\u0434\u043F\u043E\u0432\u0456\u0434\u0430\u044E\u0442\u044C \u0440\u0456\u0437\u043D\u0438\u043C \u0432\u0438\u043C\u043E\u0433\u0430\u043C, \u044F\u043A\u0456 \u0437\u0430\u043E\u0445\u043E\u0447\u0443\u044E\u0442\u044C \u043F\u0435\u0440\u0435\u0434\u043E\u0432\u0456 \u043F\u0440\u0430\u043A\u0442\u0438\u043A\u0438 \u0442\u0430 \u0431\u0435\u0437\u043F\u0440\u043E\u0431\u043B\u0435\u043C\u043D\u0443 \u0440\u043E\u0431\u043E\u0442\u0443 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430.","plugins.manage.verified_subtitle":"{{ pluginName }} \u043F\u0435\u0440\u0435\u0432\u0456\u0440\u0435\u043D\u043E","plugins.manage.verified_title":"\u041F\u0435\u0440\u0435\u0432\u0456\u0440\u0435\u043D\u0456 \u043F\u043B\u0430\u0433\u0456\u043D\u0438","plugins.node_update.continue":"Continue","plugins.placeholder_search_first":"\u0412\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0439\u0442\u0435 \u0440\u044F\u0434\u043E\u043A \u043F\u043E\u0448\u0443\u043A\u0443 \u0432\u0438\u0449\u0435, \u0449\u043E\u0431 \u0437\u043D\u0430\u0439\u0442\u0438 \u0441\u0432\u0456\u0439 \u043F\u0435\u0440\u0448\u0438\u0439 \u043F\u043B\u0430\u0433\u0456\u043D","plugins.placeholder_search_plugin":"\u041F\u043E\u0448\u0443\u043A \u043F\u043B\u0430\u0433\u0456\u043D\u0456\u0432 \u0434\u043B\u044F \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F\u2026","plugins.settings.custom.homebridge-gsh.label_account_linked":"\u0410\u043A\u043A\u0430\u0443\u043D\u0442 \u043F\u0440\u0438\u0432'\u044F\u0437\u0430\u043D\u0438\u0439","plugins.settings.custom.homebridge-gsh.label_link_account":"\u041F\u0440\u0438\u0432'\u044F\u0437\u0430\u0442\u0438 \u0430\u043A\u043A\u0430\u0443\u043D\u0442","plugins.settings.custom.homebridge-gsh.label_unlink_account":"\u0412\u0456\u0434\u0432'\u044F\u0437\u0430\u0442\u0438 \u0430\u043A\u043A\u0430\u0443\u043D\u0442","plugins.settings.custom.homebridge-gsh.message_about":"\u041F\u043B\u0430\u0433\u0456\u043D Homebridge Google Smart Home \u0434\u043E\u0437\u0432\u043E\u043B\u044F\u0454 \u043A\u0443\u0440\u0443\u0432\u0430\u0442\u0438 \u0430\u043A\u0441\u0435\u0441\u0443\u0430\u0440\u0430\u043C\u0438 Homebridge \u0437\u0430 \u0434\u043E\u043F\u043E\u043C\u043E\u0433\u043E\u044E \u0440\u043E\u0437\u0443\u043C\u043D\u043E\u0457 \u043A\u043E\u043B\u043E\u043D\u043A\u0438 \u0437 \u043F\u0456\u0434\u0442\u0440\u0438\u043C\u043A\u043E\u044E Google Home \u0430\u0431\u043E \u043C\u043E\u0431\u0456\u043B\u044C\u043D\u043E\u0433\u043E \u0434\u043E\u0434\u0430\u0442\u043A\u0430 Google Home.","plugins.settings.custom.homebridge-gsh.message_account_link_required":"\u0429\u043E\u0431 \u0443\u0432\u0456\u043C\u043A\u043D\u0443\u0442\u0438 \u0446\u044E \u0444\u0443\u043D\u043A\u0446\u0456\u044E, \u0412\u0438 \u043F\u043E\u0432\u0438\u043D\u043D\u0456 \u0443\u0432\u0456\u0439\u0442\u0438 \u0432 \u0441\u0432\u0456\u0439 \u0430\u043A\u043A\u0430\u0443\u043D\u0442 Google \u0430\u0431\u043E GitHub; \u043F\u0435\u0440\u0435\u043A\u043E\u043D\u0430\u0439\u0442\u0435\u0441\u044F, \u0449\u043E \u0412\u0438 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0454\u0442\u0435 \u0442\u043E\u0439 \u0436\u0435 \u0430\u043A\u043A\u0430\u0443\u043D\u0442 \u043F\u0440\u0438 \u0434\u043E\u0434\u0430\u0432\u0430\u043D\u043D\u0456 Homebridge action \u0432 \u043C\u043E\u0431\u0438\u043B\u044C\u043D\u043E\u043C\u0443 \u0434\u043E\u0434\u0430\u0442\u043A\u0443 Google Home.","plugins.settings.custom.homebridge-gsh.message_homebridge_restart_required":"\u041F\u043E\u0442\u0440\u0456\u0431\u0435\u043D \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A Homebridge, \u0449\u043E\u0431 \u0437\u043C\u0456\u043D\u0438 \u043F\u043E\u0447\u0430\u043B\u0438 \u0434\u0456\u044F\u0442\u0438.","plugins.settings.custom.homebridge-gsh.message_invalid_token":"Invalid account linking token in config.json","plugins.settings.deconz.dump_no_exist":"Homebridge deCONZ dump file does not exist yet.","plugins.settings.hue.dump_no_exist":"Homebridge Hue dump file does not exist yet.","plugins.settings.label_open_config_editor":"\u0412\u0456\u0434\u043A\u0440\u0438\u0439\u0442\u0435 \u0440\u0435\u0434\u0430\u043A\u0442\u043E\u0440 \u043A\u043E\u043D\u0444\u0456\u0433\u0443\u0440\u0430\u0446\u0456\u0439","plugins.settings.message_consult_documentation":"\u0411\u0443\u0434\u044C \u043B\u0430\u0441\u043A\u0430, \u0437\u0432\u0435\u0440\u043D\u0456\u0442\u044C\u0441\u044F \u0434\u043E \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430\u0446\u0456\u0457 \u0434\u043E \u043F\u043B\u0430\u0433\u0456\u043D\u0430, \u0449\u043E\u0431 \u043E\u0442\u0440\u0438\u043C\u0430\u0442\u0438 \u0456\u043D\u0441\u0442\u0440\u0443\u043A\u0446\u0456\u0457 \u0449\u043E\u0434\u043E \u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u043E\u0433\u043E \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u0446\u044C\u043E\u0433\u043E \u043F\u043B\u0430\u0433\u0456\u043D\u0430.","plugins.settings.message_manual_config_required":"\u0426\u0435\u0439 \u043F\u043B\u0430\u0433\u0456\u043D \u043F\u043E\u0442\u0440\u0456\u0431\u043D\u043E \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438 \u0432\u0440\u0443\u0447\u043D\u0443 \u0437\u0430 \u0434\u043E\u043F\u043E\u043C\u043E\u0433\u043E\u044E \u0440\u0435\u0434\u0430\u043A\u0442\u043E\u0440\u0430 \u043A\u043E\u043D\u0444\u0456\u0433\u0443\u0440\u0430\u0446\u0456\u0457 \u0456\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0443 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430 Homebridge.","plugins.settings.plugin_config_saved":"\u041A\u043E\u043D\u0444\u0456\u0433\u0443\u0440\u0430\u0446\u0456\u044F \u043F\u043B\u0430\u0433\u0456\u043D\u0430 \u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043D\u0430","plugins.settings.restart_required":"\u041F\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0442\u0435 Homebridge, \u0449\u043E\u0431 \u0437\u043C\u0456\u043D\u0438 \u043F\u043E\u0447\u0430\u043B\u0438 \u0434\u0456\u044F\u0442\u0438.","plugins.settings.title_settings":"\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F","plugins.status_disabled":"\u0412\u0438\u043C\u043A\u043D\u0435\u043D\u043E","plugins.status_installed":"\u0412\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043E","plugins.toast_failed_to_load_plugin_schema":"Failed to load plugin config schema.","plugins.toast_failed_to_load_plugins":"\u041D\u0435 \u0432\u0434\u0430\u043B\u043E\u0441\u044F \u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0438\u0442\u0438 \u043F\u043B\u0430\u0433\u0456\u043D\u0438","plugins.uninstall_bridge_error":"Failed to remove child bridge.","plugins.uninstall_remove_config_required":"\u042F\u043A\u0449\u043E \u0412\u0438 \u043D\u0430\u0437\u0430\u0432\u0436\u0434\u0438 \u0432\u0438\u0434\u0430\u043B\u044F\u0454\u0442\u0435 \u0446\u0435\u0439 \u043F\u043B\u0430\u0433\u0456\u043D, \u043F\u0435\u0440\u0435\u043A\u043E\u043D\u0430\u0439\u0442\u0435\u0441\u044F, \u0449\u043E \u0412\u0438 \u0432\u0438\u0434\u0430\u043B\u0438\u043B\u0438 \u0432\u0441\u0456 \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u0434\u043B\u044F \u0446\u044C\u043E\u0433\u043E \u043F\u043B\u0430\u0433\u0456\u043D\u0443 \u0432 config.json \u043F\u0435\u0440\u0435\u0434 \u043F\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F\u043C Homebridge.","plugins.uninstall_remove_confirmation":"\u0412\u0438 \u0432\u043F\u0435\u0432\u043D\u0435\u043D\u0456, \u0449\u043E \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u0432\u0438\u0434\u0430\u043B\u0438\u0442\u0438 {{ pluginName }}?","plugins.uninstall_remove_plugin_config":"\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438 \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u043F\u043B\u0430\u0433\u0456\u043D\u0430?","plugins.uninstall_unpair_child_bridge":"Unpair plugin child bridge?","plugins.uninstall_unpair_child_bridges":"Unpair {{ count }} plugin child bridges?","reset.accessory_reset":"\u0421\u043A\u0438\u0434\u0430\u043D\u043D\u044F \u0430\u043A\u0441\u0435\u0441\u0443\u0430\u0440\u0456\u0432 Homebridge","reset.action_is_irreversible":"\u0426\u044F \u0434\u0456\u044F \u0431\u0435\u0437\u043F\u043E\u0432\u043E\u0440\u043E\u0442\u043D\u0430. \u0411\u0443\u0434\u044C \u043B\u0430\u0441\u043A\u0430, \u0443\u0432\u0430\u0436\u043D\u043E \u043F\u0440\u043E\u0447\u0438\u0442\u0430\u0439\u0442\u0435, \u043F\u0435\u0440\u0448 \u043D\u0456\u0436 \u043F\u0440\u043E\u0434\u043E\u0432\u0436\u0438\u0442\u0438.","reset.bridges.desc":"If you are having trouble pairing Homebridge, an external accessory or a child bridge to HomeKit, you may need to unpair it from HomeKit to start again.","reset.bridges.empty":"You have no bridges to unpair from HomeKit.","reset.bridges.title":"Bridges","reset.bridges_all.desc":"Unpair all bridges from HomeKit. This includes the main Homebridge bridge, child bridges and bridges for external accessories.","reset.bridges_all.list_1":"This will unpair the Homebridge bridge, all child bridges and bridges for external accessories from HomeKit.","reset.bridges_all.list_2":"Note that your accessories will continue to show in HomeKit as no response, until the bridges are manually removed from HomeKit. You can do this in the Home app, by accessing Home Settings \u2192 Home Hubs & Bridges \u2192 {Bridge} \u2192 Remove Bridge from Home.","reset.bridges_all.list_3":"All your Homebridge to HomeKit accessories, scenes and automations will need to be reconfigured after the unpairing.","reset.bridges_all.list_4":"The pin for pairing your Homebridge bridge to HomeKit will be changed. You can see the new values in your Homebridge config after the unpairing.","reset.bridges_all.title":"Unpair All Bridges","reset.bridges_single.desc":"Unpair a single bridge from HomeKit. This may be a child bridge or a bridge for an external accessory like a camera or TV.","reset.bridges_single.list_1":"When unpairing a bridge, any accessories published by this bridge will be removed from the Homebridge cache.","reset.bridges_single.list_2":"The accessories will become stale in HomeKit (showing no response). To remove them, you will need to manually remove this bridge from HomeKit. You can do this in the Home app from the Home Settings section.","reset.bridges_single.list_3":"You can then attempt to pair the bridge again if required.","reset.bridges_single.title":"Unpair Single Bridge","reset.cached_accessory_removed":"\u041A\u0435\u0448\u043E\u0432\u0430\u043D\u0438\u0439 \u0430\u043A\u0441\u0435\u0441\u0443\u0430\u0440 \u0432\u0438\u0434\u0430\u043B\u0435\u043D\u0438\u0439.","reset.clear_cache_all.desc":"Remove all accessories from the cache.","reset.clear_cache_all.list_1":"When clicking on the remove button below, Homebridge will restart and all your existing accessories will be removed from Homebridge and HomeKit.","reset.clear_cache_all.list_2":"All associated HomeKit data will also be removed, this includes room associations, scenes and automations that this accessory uses.","reset.clear_cache_all.list_3":"After Homebridge restarts, your plugins will re-add any accessories as if the plugin was being installed for the first time.","reset.clear_cache_all.title":"Remove All Accessories","reset.clear_cache_bridge.desc":"Remove all accessories published by a bridge from the cache.","reset.clear_cache_bridge.empty":"You have no bridges from which to remove accessories.","reset.clear_cache_bridge.list_1":"This function can be used to reset a plugin's existing accessories in HomeKit. They will be removed from Homebridge/HomeKit and then re-added by the plugin as new accessories.","reset.clear_cache_bridge.list_2":"The child bridge's pairing details and status will remain the same.","reset.clear_cache_bridge.title":"Remove Bridge Accessories","reset.clear_cache_single.desc":"Remove a single accessory from the cache.","reset.clear_cache_single.list_1":"Some plugins don't clean up after themselves properly! If an accessory that you no longer have in Homebridge is still being displayed in HomeKit, you can remove it from the cache.","reset.clear_cache_single.list_2":"This function can be used to reset an existing accessory in HomeKit. It will be removed from Homebridge/HomeKit and then re-added by the plugin as a new accessory.","reset.clear_cache_single.list_3":"When removing an accessory from the cache, all its associated HomeKit data will be removed. This includes any associated scenes and automations that use this accessory.","reset.clear_cache_single.list_4":"Accessories can only be removed when Homebridge is not running. Homebridge will automatically restart when clicking on each of the remove buttons below. If you need to remove multiple accessories, please be patient and allow Homebridge to restart between each removal.","reset.clear_cache_single.title":"Remove Single Accessory","reset.delete_failed":"\u041D\u0435 \u0432\u0434\u0430\u043B\u043E\u0441\u044F \u0432\u0438\u0434\u0430\u043B\u0438\u0442\u0438 \u0430\u043A\u0441\u0435\u0441\u0443\u0430\u0440.","reset.delete_success":"\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A Homebridge \u0442\u0430 \u043E\u0447\u0438\u0441\u0442\u043A\u0430 \u043A\u0435\u0448\u0443 \u0430\u043A\u0441\u0435\u0441\u0443\u0430\u0440\u0456\u0432.","reset.error_message":"\u041D\u0435 \u0432\u0434\u0430\u043B\u043E\u0441\u044F \u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0438\u0442\u0438 \u043A\u0435\u0448 \u0430\u043A\u0441\u0435\u0441\u0443\u0430\u0440\u0456\u0432. \u041C\u043E\u0436\u043B\u0438\u0432\u043E, \u0443 \u0412\u0430\u0441 \u043D\u0435\u043C\u0430\u0454 \u043A\u0435\u0448\u043E\u0432\u0430\u043D\u0438\u0445 \u0430\u043A\u0441\u0435\u0441\u0443\u0430\u0440\u0456\u0432.","reset.failed_to_reset":"\u041D\u0435 \u0432\u0434\u0430\u043B\u043E\u0441\u044F \u043F\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0438\u0442\u0438 Homebridge. \u0414\u0438\u0432\u0456\u0442\u044C\u0441\u044F \u0436\u0443\u0440\u043D\u0430\u043B.","reset.force_restart_hb_help_text":"\u0412\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0439\u0442\u0435 \u0446\u044E \u0434\u0456\u044E, \u0449\u043E\u0431 \u0437\u043C\u0443\u0441\u0438\u0442\u0438 \u0441\u043B\u0443\u0436\u0431\u0443 hb-service \u0432\u0438\u043A\u043E\u043D\u0430\u0442\u0438 \u043F\u043E\u0432\u043D\u0438\u0439 \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A.","reset.remove_cached_accessories_single_empty":"\u0423 \u0412\u0430\u0441 \u043D\u0435\u043C\u0430\u0454 \u043A\u0435\u0448\u043E\u0432\u0430\u043D\u0438\u0445 \u0430\u043A\u0441\u0435\u0441\u0443\u0430\u0440\u0456\u0432 \u0434\u043B\u044F \u0432\u0438\u0434\u0430\u043B\u0435\u043D\u043D\u044F.","reset.removing_cached_accessory_please_wait":"\u0412\u0438\u0434\u0430\u043B\u0435\u043D\u043D\u044F \u0430\u043A\u0441\u0435\u0441\u0443\u0430\u0440\u0430 \u0437 \u043A\u0435\u0448\u0443, \u0411\u0443\u0434\u044C \u043B\u0430\u0441\u043A\u0430, \u0437\u0430\u0447\u0435\u043A\u0430\u0439\u0442\u0435\u2026","restart.child_bridge_list":"Please restart these child bridges for the changes to apply:","restart.child_bridges":"\u0411\u0443\u0434\u044C \u043B\u0430\u0441\u043A\u0430, \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0456\u0442\u044C \u0414\u043E\u0447\u0456\u0440\u043D\u0456 \u043C\u043E\u0441\u0442\u0438 \u043F\u043B\u0430\u0433\u0456\u043D\u0430, \u0449\u043E\u0431 \u0437\u043C\u0456\u043D\u0438 \u043F\u043E\u0447\u0430\u043B\u0438 \u0434\u0456\u044F\u0442\u0438.","restart.homebridge":"\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0456\u0442\u044C Homebridge, \u0449\u043E\u0431 \u0437\u043C\u0456\u043D\u0438 \u043F\u043E\u0447\u0430\u043B\u0438 \u0434\u0456\u044F\u0442\u0438.","restart.label_restart_command_executed":"\u0412\u0438\u043A\u043E\u043D\u0430\u043D\u0430 \u043A\u043E\u043C\u0430\u043D\u0434\u0430 \u043F\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F","restart.please_wait_while_server_restarts":"\u0411\u0443\u0434\u044C \u043B\u0430\u0441\u043A\u0430, \u0437\u0430\u0447\u0435\u043A\u0430\u0439\u0442\u0435, \u0446\u044F \u0441\u0442\u043E\u0440\u0456\u043D\u043A\u0430 \u0431\u0443\u0434\u0435 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E \u043E\u043D\u043E\u0432\u043B\u0435\u043D\u0430 \u043F\u0456\u0441\u043B\u044F \u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F \u0441\u0435\u0440\u0432\u0435\u0440\u0430.","restart.server_is_taking_long_time_to_restart":"\u041F\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F \u0441\u0435\u0440\u0432\u0435\u0440\u0443 \u0437\u0430\u0439\u043C\u0430\u0454 \u0431\u0430\u0433\u0430\u0442\u043E \u0447\u0430\u0441\u0443. \u041C\u043E\u0436\u043B\u0438\u0432\u043E, \u0412\u0430\u043C \u0434\u043E\u0432\u0435\u0434\u0435\u0442\u044C\u0441\u044F \u0432\u0440\u0443\u0447\u043D\u0443 \u043F\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0438\u0442\u0438 Homebridge.","restart.service_ready":"Homebridge \u0441\u0435\u0440\u0432\u0435\u0440 \u0433\u043E\u0442\u043E\u0432\u0438\u0439","restart.title_restart":"\u041F\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F Homebridge","restart.toast_server_restart_error":"\u0412\u0438\u043D\u0438\u043A\u043B\u0430 \u043F\u043E\u043C\u0438\u043B\u043A\u0430 \u0432\u0456\u0434\u043F\u0440\u0430\u0432\u043A\u0438 \u043A\u043E\u043C\u0430\u043D\u0434\u0438 \u043F\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u0435\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F \u043D\u0430 \u0441\u0435\u0440\u0432\u0435\u0440","restart.toast_server_restart_timeout":"\u0417\u0430\u043F\u0443\u0441\u043A \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0437\u0430\u0439\u043C\u0430\u0454 \u043D\u0430\u0434\u0442\u043E \u0431\u0430\u0433\u0430\u0442\u043E \u0447\u0430\u0441\u0443.","restart.toast_server_restarted":"\u0421\u0435\u0440\u0432\u0435\u0440 \u043F\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u0435\u043D\u0442\u0430\u0436\u0435\u043D\u0438\u0439","restart.ui_online":"\u0406\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441 Homebridge \u043E\u043D\u043B\u0430\u0439\u043D","rpi.throttled.currently_message":"\u0426\u0435\u0439 Raspberry Pi \u043F\u043E\u0432\u0456\u0434\u043E\u043C\u043B\u044F\u0454, \u0449\u043E \u0437\u0430\u0440\u0430\u0437 \u0432\u0456\u043D \u043F\u0435\u0440\u0435\u0431\u0443\u0432\u0430\u0454 \u043F\u0456\u0434 \u043D\u0438\u0437\u044C\u043A\u043E\u044E \u043D\u0430\u043F\u0440\u0443\u0433\u043E\u044E. \u041F\u0435\u0440\u0435\u043A\u043E\u043D\u0430\u0439\u0442\u0435\u0441\u044F, \u0449\u043E \u0432\u0456\u043D \u043F\u0456\u0434'\u0454\u0434\u043D\u0430\u043D\u0438\u0439 \u0434\u043E \u0432\u0456\u0434\u043F\u043E\u0432\u0456\u0434\u043D\u043E\u0433\u043E \u0434\u0436\u0435\u0440\u0435\u043B\u0430 \u0436\u0438\u0432\u043B\u0435\u043D\u043D\u044F. \u041D\u0438\u0437\u044C\u043A\u0430 \u043D\u0430\u043F\u0440\u0443\u0433\u0430 \u043C\u043E\u0436\u0435 \u043F\u0440\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u0434\u043E \u043D\u0435\u0441\u0442\u0430\u0431\u0456\u043B\u044C\u043D\u043E\u0441\u0442\u0456 \u0441\u0438\u0441\u0442\u0435\u043C\u0438 \u0442\u0430 \u043F\u043E\u0448\u043A\u043E\u0434\u0436\u0435\u043D\u043D\u044F SD-\u043A\u0430\u0440\u0442\u0438.","rpi.throttled.previously_message":"\xAB\u0426\u0435\u0439 Raspberry Pi \u043F\u043E\u0432\u0456\u0434\u043E\u043C\u0438\u0432 \u043F\u0440\u043E \u043F\u043E\u0434\u0456\u044E \u043D\u0438\u0437\u044C\u043A\u043E\u0457 \u043D\u0430\u043F\u0440\u0443\u0433\u0438 \u0437 \u043C\u043E\u043C\u0435\u043D\u0442\u0443 \u043E\u0441\u0442\u0430\u043D\u043D\u044C\u043E\u0433\u043E \u043F\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F. \u0411\u0443\u0434\u044C \u043B\u0430\u0441\u043A\u0430, \u043F\u0435\u0440\u0435\u0432\u0456\u0440\u0442\u0435, \u0447\u0438 \u043F\u0456\u0434\u2019\u0454\u0434\u043D\u0430\u043D\u043E \u0439\u043E\u0433\u043E \u0434\u043E \u0432\u0456\u0434\u043F\u043E\u0432\u0456\u0434\u043D\u043E\u0433\u043E \u0434\u0436\u0435\u0440\u0435\u043B\u0430 \u0436\u0438\u0432\u043B\u0435\u043D\u043D\u044F.","rpi.throttled.undervoltage_title":"\u041D\u0438\u0437\u044C\u043A\u0430 \u041D\u0430\u043F\u0440\u0443\u0433\u0430","settings.cache.desc":"Homebridge maintains accessories in cache so they aren't removed and re-added to HomeKit each time Homebridge restarts. Sometimes this cache can become out of sync with the actual accessories in Homebridge.","settings.cache.title":"Accessories","settings.changes.saved":"Your changes have been saved and require a restart to take effect.","settings.datetime.incorrect":"The date and time on your Homebridge server seem to be incorrect. This may cause unexpected issues. Click here for more information.","settings.display.blue":"Blue","settings.display.bluegrey":"Blue Grey","settings.display.brown":"Brown","settings.display.cyan":"Cyan","settings.display.dark":"Dark","settings.display.deep_purple":"Deep Purple","settings.display.green":"Green","settings.display.grey":"Grey","settings.display.indigo":"Indigo","settings.display.lang":"\u041C\u043E\u0432\u0430","settings.display.light":"Light","settings.display.lighting_mode":"Lighting Mode","settings.display.login_wallpaper":"Login Wallpaper","settings.display.login_wallpaper_desc":"A custom login wallpaper can be set by adding a <code>ui-wallpaper.jpg</code> file to your Homebridge storage directory, or by providing a full path to a local image file here.","settings.display.orange":"Orange","settings.display.pink":"Pink","settings.display.purple":"Purple","settings.display.red":"Red","settings.display.teal":"Teal","settings.display.temp_units":"Temperature Units","settings.display.temp_units.c":"Celsius (\xB0C)","settings.display.temp_units.f":"Fahrenheit (\xB0F)","settings.display.theme":"\u0422\u0435\u043C\u0430","settings.general.title_display":"Display","settings.general.title_general":"\u0417\u0430\u0433\u0430\u043B\u044C\u043D\u0456","settings.mdns_advertiser":"\u0420\u0435\u043A\u043B\u0430\u043C\u0456\u0441\u0442 mDNS","settings.mdns_advertiser_exp":"experimental","settings.mdns_advertiser_help":"\u042F\u043A\u0449\u043E \u0443 \u0412\u0430\u0441 \u0432\u0438\u043D\u0438\u043A\u043B\u0438 \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0438 \u0437 \u043F\u0456\u0434\u043A\u043B\u044E\u0447\u0435\u043D\u043D\u044F\u043C \u0434\u043E Homebridge, \u0441\u043F\u0440\u043E\u0431\u0443\u0439\u0442\u0435 \u0441\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u0442\u0438\u0441\u044F \u043E\u0434\u043D\u0438\u043C \u0456\u0437 \u0430\u043B\u044C\u0442\u0435\u0440\u043D\u0430\u0442\u0438\u0432\u043D\u0438\u0445 \u0440\u0435\u043A\u043B\u0430\u043C\u0432\u0441\u0442\u0456\u0432 mDNS.","settings.mdns_advertiser_not_connected":"\u041D\u0435 \u0437'\u0454\u0434\u043D\u0430\u043D\u043E","settings.mdns_advertiser_rec":"recommended","settings.network.label_interface_name":"\u041D\u0430\u0437\u0432\u0430 \u0456\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0443","settings.network.label_ip_address":"IP \u0410\u0434\u0440\u0435\u0441\u0430","settings.network.message_network_interface":"\u042F\u043A\u0449\u043E \u043D\u0435 \u043E\u0431\u0440\u0430\u043D\u043E \u0436\u043E\u0434\u043D\u043E\u0433\u043E \u043C\u0435\u0440\u0435\u0436\u0435\u0432\u043E\u0433\u043E \u0456\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0443, Homebridge \u0441\u043F\u0440\u043E\u0431\u0443\u0454 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E \u0432\u0438\u0437\u043D\u0430\u0447\u0438\u0442\u0438, \u044F\u043A\u0456 \u0456\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0438 \u0440\u0435\u043A\u043B\u0430\u043C\u0443\u0432\u0430\u0442\u0438.","settings.network.port_hb":"Homebridge Port","settings.network.port_hb_desc":"The port number to run the Homebridge bridge on. This must be between 1025 and 65533, and should not be the same as the Homebridge UI port.","settings.network.port_ui":"UI Port","settings.network.port_ui_desc":"The port number to run the Homebridge UI on.","settings.network.title_network":"\u041C\u0435\u0440\u0435\u0436\u0430","settings.network.title_network_interfaces":"\u0406\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441 \u043C\u0435\u0440\u0435\u0436\u0456","settings.service.debug_tooltip":"\u0414\u0435\u044F\u043A\u0456 \u043F\u043B\u0430\u0433\u0456\u043D\u0438 \u0432\u0438\u043C\u0430\u0433\u0430\u044E\u0442\u044C \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F \u0437\u043C\u0456\u043D\u043D\u043E\u0433\u043E \u0441\u0435\u0440\u0435\u0434\u043E\u0432\u0438\u0449\u0430 DEBUG, \u0449\u043E\u0431 \u0443\u0432\u0456\u043C\u043A\u043D\u0443\u0442\u0438 \u0432\u0435\u0434\u0435\u043D\u043D\u044F \u0436\u0443\u0440\u043D\u0430\u043B\u0443 \u043D\u0430 \u0440\u0456\u0432\u043D\u0456 \u043D\u0430\u043B\u0430\u0433\u043E\u0434\u0436\u0435\u043D\u043D\u044F.","settings.service.node_tooltip":"\u041F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0438 \u0441\u0435\u0440\u0435\u0434\u043E\u0432\u0438\u0449\u0430 \u0432\u0438\u043A\u043E\u043D\u0430\u043D\u043D\u044F Node.js \u0434\u043B\u044F \u043F\u0440\u043E\u0446\u0435\u0441\u0443 Homebridge. \u0426\u0435 \u043C\u0430\u0454 \u0431\u0443\u0442\u0438 \u043F\u0443\u0441\u0442\u0438\u043C, \u044F\u043A\u0449\u043E \u0412\u0438 \u043D\u0435 \u0437\u043D\u0430\u0454\u0442\u0435, \u0449\u043E \u0440\u043E\u0431\u0438\u0442\u0435.","settings.startup.debug":"Homebridge \u0440\u0435\u0436\u0438\u043C \xAB\u041D\u0430\u043B\u0430\u0433\u043E\u0434\u0436\u0435\u043D\u043D\u044F\xBB","settings.startup.debug_desc_v1":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge as well as all child bridges. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.debug_desc_v2":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge. The setting for child bridges can be found in the child bridge configuration from the plugins page. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.insecure":"Homebridge \xAB\u041D\u0435\u0431\u0435\u0437\u043F\u0435\u0447\u043D\u0438\u0439\xBB \u0440\u0435\u0436\u0438\u043C","settings.startup.insecure_desc":"To control your accessories via the Homebridge UI you must be running Homebridge in insecure mode.","settings.startup.keep_accessories":"\u0417\u0431\u0435\u0440\u0456\u0433\u0430\u0439\u0442\u0435 \u0430\u043A\u0441\u0435\u0441\u0443\u0430\u0440\u0438 \u0432\u0438\u0434\u0430\u043B\u0435\u043D\u0438\u0445 \u043F\u043B\u0430\u0433\u0456\u043D\u0456\u0432","settings.startup.keep_accessories_desc":"If enabled, accessories of platform plugins will remain in the cache even after the plugin is uninstalled. This can be useful if you plan to reinstall the plugin later.","settings.title_startup_options":"\u041F\u0430\u0440\u0435\u043C\u0435\u0442\u0440\u0438 \u0437\u0430\u043F\u0443\u0441\u043A\u0443","settings.unpair_bridge.load_error":"Paired bridges could not be loaded.","settings.unpair_bridge.unpair_error":"Failed to unpair bridge.","setup.button_get_started":"\u0420\u043E\u0437\u043F\u043E\u0447\u0430\u0442\u0438","setup.create_account":"\u0421\u0442\u0432\u043E\u0440\u0438\u0442\u0438 \u043E\u0431\u043B\u0456\u043A\u043E\u0432\u0438\u0439 \u0437\u0430\u043F\u0438\u0441","setup.create_account_reason":"\u041D\u0435\u043E\u0431\u0445\u0456\u0434\u043D\u043E \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438 \u0430\u0432\u0442\u0435\u043D\u0442\u0438\u0444\u0456\u043A\u0430\u0446\u0456\u044E \u0437\u0430 \u0434\u043E\u043F\u043E\u043C\u043E\u0433\u043E\u044E \u043F\u0430\u0440\u043E\u043B\u044F \u0434\u043B\u044F \u0432\u0435\u0431-\u0456\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0443 \u0430\u0434\u043C\u0456\u043D\u0456\u0441\u0442\u0440\u0430\u0442\u043E\u0440\u0430 Homebridge. \u041D\u0430\u0432\u0456\u0442\u044C \u044F\u043A\u0449\u043E Homebridge \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0438\u0439 \u0442\u0456\u043B\u044C\u043A\u0438 \u0443 \u0412\u0430\u0448\u0456\u0439 \u043B\u043E\u043A\u0430\u043B\u044C\u043D\u0456\u0439 \u043C\u0435\u0440\u0435\u0436\u0456, \u0432\u0430\u0436\u043B\u0438\u0432\u043E \u0437\u0430\u0445\u0438\u0441\u0442\u0438\u0442\u0438 \u0439\u043E\u0433\u043E \u0432\u0456\u0434 \u043D\u0435\u043E\u0431\u043C\u0435\u0436\u0435\u043D\u043E\u0433\u043E \u0434\u043E\u0441\u0442\u0443\u043F\u0443.","setup.open_dashboard":"\u0412\u0456\u0434\u043A\u0440\u0438\u0439\u0442\u0435 \u043F\u0430\u043D\u0435\u043B\u044C \u043F\u0440\u0438\u043B\u0430\u0434\u0456\u0432","setup.welcome_to_homebridge":"\u041B\u0430\u0441\u043A\u0430\u0432\u043E \u043F\u0440\u043E\u0441\u0438\u043C\u043E \u0434\u043E Homebridge",setup_wizard_message_complete_message:"\u041F\u0440\u043E\u0446\u0435\u0434\u0443\u0440\u0443 \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043D\u043E, \u0442\u0435\u043F\u0435\u0440 \u0412\u0438 \u043C\u043E\u0436\u0435\u0442\u0435 \u043F\u043E\u0447\u0430\u0442\u0438 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0432\u0430\u0442\u0438 Homebridge.",setup_wizard_message_complete_title:"\u0412\u0456\u0442\u0430\u0454\u043C\u043E!",setup_wizard_message_restore:"\u0412\u0456\u0434\u043D\u043E\u0432\u0438\u0442\u0438 \u0437 \u0440\u0435\u0437\u0435\u0440\u0432\u043D\u043E\u0457 \u043A\u043E\u043F\u0456\u0457","status.code_scan":"\u0421\u043A\u0430\u043D\u0443\u0439\u0442\u0435, \u0449\u043E\u0431 \u0434\u043E\u0434\u0430\u0442\u0438 \u0434\u043E HomeKit","status.cpu.load":"\u0417\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F","status.cpu.temp":"\u0422\u0435\u043C\u043F\u0435\u0440\u0430\u0442\u0443\u0440\u0430","status.cpu.title_cpu":"\u041F\u0440\u043E\u0446\u0435\u0441\u043E\u0440","status.credits.title":"\u041A\u0440\u0435\u0434\u0438\u0442\u0438","status.homebridge.checking":"\u041F\u0435\u0440\u0435\u0432\u0456\u0440\u043A\u0430 \u043E\u043D\u043E\u0432\u043B\u0435\u043D\u044C\u2026","status.homebridge.up_to_date":"\u0410\u043A\u0442\u0443\u0430\u043B\u044C\u043D\u0430 \u0432\u0435\u0440\u0441\u0456\u044F","status.memory.label_available":"\u0412\u0456\u043B\u044C\u043D\u043E","status.memory.label_total":"\u0412\u0441\u044C\u043E\u0433\u043E","status.memory.title_memory":"\u041F\u0430\u043C'\u044F\u0442\u044C","status.network.received_per_second":"\u041E\u0442\u0440\u0438\u043C\u0430\u043D\u043E","status.network.sent_per_second":"\u041D\u0430\u0434\u0456\u0441\u043B\u0430\u043D\u043E","status.network.title_network":"\u0410\u043A\u0442\u0438\u0432\u043D\u0456\u0441\u0442\u044C \u0443 \u043C\u0435\u0440\u0435\u0436\u0456","status.plugin_out_of_date":"\u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0435 \u043E\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F","status.plugins_out_of_date":"\u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0438\u0445 \u043E\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F","status.services.label_not_running":"\u041D\u0435 \u043F\u0440\u0430\u0446\u044E\u0454","status.services.label_running":"\u041F\u0440\u0430\u0446\u044E\u0454","status.services.updates":"Update Centre","status.uptime.title_uptime":"\u0427\u0430\u0441 \u0431\u0435\u0437\u043F\u0435\u0440\u0435\u0440\u0432\u043D\u043E\u0457 \u0440\u043E\u0431\u043E\u0442\u0438","status.widget.accessories.choose_accessories":"\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044C \u0430\u043A\u0441\u0435\u0441\u0443\u0430\u0440\u0438 \u0434\u043B\u044F \u0432\u0456\u0434\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043D\u044F \u0443 \u0432\u0456\u0434\u0436\u0435\u0442\u0456 \u043D\u0430 \u0432\u043A\u043B\u0430\u0434\u0446\u0456 \u0410\u043A\u0441\u0435\u0441\u0443\u0430\u0440\u0438.","status.widget.add.label_pairing_code":"\u041A\u043E\u0434 \u0441\u043F\u043E\u043B\u0443\u0447\u0435\u043D\u043D\u044F","status.widget.bridge.restart_error":"Failed to restart child bridge.","status.widget.clock":"\u0413\u043E\u0434\u0438\u043D\u043D\u0438\u043A","status.widget.clock_dateformat":"\u0424\u043E\u0440\u043C\u0430\u0442 \u0434\u0430\u0442\u0438","status.widget.clock_timeformat":"\u0424\u043E\u0440\u043C\u0430\u0442 \u0447\u0430\u0441\u0443","status.widget.font_size":"\u0420\u043E\u0437\u043C\u0456\u0440 \u0448\u0440\u0438\u0444\u0442\u0443","status.widget.font_weight":"\u0422\u043E\u0432\u0449\u0438\u043D\u0430 \u0448\u0440\u0438\u0444\u0442\u0443","status.widget.hide_on_mobile":"\u041F\u0440\u0438\u0445\u043E\u0432\u0430\u0442\u0438 \u0432 \u043A\u043E\u043C\u043F\u0430\u043A\u0442\u043D\u043E\u043C\u0443 \u0432\u0438\u0433\u043B\u044F\u0434\u0456 (\u043C\u043E\u0431\u0438\u043B\u044C\u043D\u0456 \u0434\u0438\u0441\u043F\u043B\u0435\u0457)","status.widget.homebridge_logs":"\u0416\u0443\u0440\u043D\u0430\u043B Homebridge","status.widget.info":"\u0406\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0456\u044F \u043F\u0440\u043E \u0441\u0438\u0441\u0442\u0435\u043C\u0443","status.widget.info.config_path":"\u0424\u0430\u0439\u043B \u043A\u043E\u043D\u0444\u0456\u0433\u0443\u0440\u0430\u0446\u0456\u0457","status.widget.info.disabled":"\u0412\u0438\u043C\u043A\u043D\u0435\u043D\u043E","status.widget.info.docker":"Docker","status.widget.info.glibc_message":"\u0426\u0435 \u043F\u043E\u0432\u0456\u0434\u043E\u043C\u043B\u0435\u043D\u043D\u044F \u043E\u0437\u043D\u0430\u0447\u0430\u0454, \u0449\u043E \u0412\u0430\u0448\u0430 \u043E\u043F\u0435\u0440\u0430\u0446\u0456\u0439\u043D\u0430 \u0441\u0438\u0441\u0442\u0435\u043C\u0430 \u043D\u0435 \u043F\u0456\u0434\u0442\u0440\u0438\u043C\u0443\u0454 \u043D\u043E\u0432\u0456 \u0432\u0435\u0440\u0441\u0456\u0457 Node.js. \u0429\u043E\u0431 \u0432\u0438\u0440\u0456\u0448\u0438\u0442\u0438 \u0446\u044E \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0443 \u0442\u0430 \u043C\u0430\u0442\u0438 \u043C\u043E\u0436\u043B\u0438\u0432\u0456\u0441\u0442\u044C \u0456\u043D\u0441\u0442\u0430\u043B\u044E\u0432\u0430\u0442\u0438 \u043E\u043D\u043E\u0432\u043B\u0435\u043D\u0456 \u0432\u0435\u0440\u0441\u0456\u0457 Node.js \u0443 \u043C\u0430\u0439\u0431\u0443\u0442\u043D\u044C\u043E\u043C\u0443, \u0412\u0430\u043C \u043F\u043E\u0442\u0440\u0456\u0431\u043D\u043E \u043E\u043D\u043E\u0432\u0438\u0442\u0438 \u043E\u043F\u0435\u0440\u0430\u0446\u0456\u0439\u043D\u0443 \u0441\u0438\u0441\u0442\u0435\u043C\u0443 \u0434\u043E \u043D\u043E\u0432\u0456\u0448\u043E\u0457 \u0432\u0435\u0440\u0441\u0456\u0457.","status.widget.info.glibc_title":"OS \u041E\u043D\u043E\u0432\u043B\u0435\u043D\u0430","status.widget.info.hostname":"\u041D\u0430\u0437\u0432\u0430 \u0445\u043E\u0441\u0442\u0443","status.widget.info.ipv4":"IPv4","status.widget.info.ipv6":"IPv6","status.widget.info.no":"\u041D\u0456","status.widget.info.node_unsupp":"Unsupported","status.widget.info.node_unsupp_message":"\u0412\u0438 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0454\u0442\u0435 \u0432\u0435\u0440\u0441\u0456\u044E Node.js,\u044F\u043A\u0430 \u043E\u0444\u0456\u0446\u0456\u0439\u043D\u043E \u043D\u0435 \u043F\u0456\u0434\u0442\u0440\u0438\u043C\u0443\u0454\u0442\u044C\u0441\u044F Homebridge. \u0421\u043B\u0456\u0434 \u0440\u043E\u0437\u0433\u043B\u044F\u043D\u0443\u0442\u0438 \u043C\u043E\u0436\u043B\u0438\u0432\u0456\u0441\u0442\u044C \u043F\u0435\u0440\u0435\u0445\u043E\u0434\u0443 \u043D\u0430 \u043F\u0456\u0434\u0442\u0440\u0438\u043C\u0443\u0432\u0430\u043D\u0443 \u0432\u0435\u0440\u0441\u0456\u044E.","status.widget.info.node_unsupp_title":"\u0412\u0435\u0440\u0441\u0456\u044F Node \u043D\u0435 \u043F\u0456\u0434\u0442\u0440\u0438\u043C\u0443\u0454\u0442\u044C\u0441\u044F","status.widget.info.node_update_message":"\u0414\u043B\u044F \u0440\u043E\u0431\u043E\u0442\u0438 Homebridge \u043F\u043E\u0442\u0440\u0456\u0431\u0435\u043D Node.js, \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0439 \u0443 \u0412\u0430\u0448\u0456\u0439 \u0441\u0438\u0441\u0442\u0435\u043C\u0456. \u0427\u0430\u0441 \u0432\u0456\u0434 \u0447\u0430\u0441\u0443 \u0412\u0430\u043C \u043F\u043E\u0442\u0440\u0456\u0431\u043D\u043E \u0431\u0443\u0434\u0435 \u043E\u043D\u043E\u0432\u043B\u044E\u0432\u0430\u0442\u0438 \u0441\u0435\u0440\u0435\u0434\u043E\u0432\u0438\u0449\u0435 \u0432\u0438\u043A\u043E\u043D\u0430\u043D\u043D\u044F Node.js, \u0449\u043E\u0431 \u0443\u0432\u0456\u043C\u043A\u043D\u0443\u0442\u0438 \u043F\u0456\u0434\u0442\u0440\u0438\u043C\u043A\u0443 \u043D\u043E\u0432\u0438\u0445 \u0444\u0443\u043D\u043A\u0446\u0456\u0439. Homebridge (\u0442\u0430 \u043F\u0435\u0440\u0435\u0432\u0456\u0440\u0435\u043D\u0456 \u043F\u043B\u0430\u0433\u0456\u043D\u0438) \u043F\u0456\u0434\u0442\u0440\u0438\u043C\u0443\u044E\u0442\u044C \u0443\u0441\u0456 \u043F\u043E\u0442\u043E\u0447\u043D\u0456 \u0432\u0435\u0440\u0441\u0456\u0457 Node.js Active \u0456 Maintenance LTS.","status.widget.info.node_update_title":"\u041E\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F Node","status.widget.info.nodejs_path":"\u0428\u043B\u044F\u0445 Node.js","status.widget.info.nodejs_version":"\u0412\u0435\u0440\u0441\u0456\u044F Node.js","status.widget.info.os":"\u041E\u0421","status.widget.info.plugin_path":"\u0414\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0456\u044F \u043F\u043B\u0430\u0433\u0456\u043D\u0456\u0432","status.widget.info.service_mode":"\u0421\u0435\u0440\u0432\u0456\u0441\u043D\u0438\u0439 \u0440\u0435\u0436\u0438\u043C","status.widget.info.service_user":"\u041A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447","status.widget.info.servicemode_message":"\u0410\u0432\u0442\u043E\u043D\u043E\u043C\u043D\u0438\u0439 \u0440\u0435\u0436\u0438\u043C \u0431\u0456\u043B\u044C\u0448\u0435 \u043D\u0435 \u0440\u0435\u043A\u043E\u043C\u0435\u043D\u0434\u0443\u0454\u0442\u044C\u0441\u044F. \u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F Homebridge \u0456 Homebridge UI \u0437\u0430 \u0434\u043E\u043F\u043E\u043C\u043E\u0433\u043E\u044E hb-service \u043C\u0430\u0454 \u0442\u0456 \u0441\u0430\u043C\u0456 \u043F\u0435\u0440\u0435\u0432\u0430\u0433\u0438, \u0449\u043E \u0439 \u0430\u0432\u0442\u043E\u043D\u043E\u043C\u043D\u0438\u0439 \u0440\u0435\u0436\u0438\u043C, \u0430\u043B\u0435 \u0439\u043E\u0433\u043E \u043D\u0430\u0431\u0430\u0433\u0430\u0442\u043E \u043B\u0435\u0433\u0448\u0435 \u043D\u0430\u043B\u0430\u0448\u0442\u043E\u0432\u0443\u0432\u0430\u0442\u0438 \u0442\u0430 \u043F\u0456\u0434\u0442\u0440\u0438\u043C\u0443\u0432\u0430\u0442\u0438.","status.widget.info.servicemode_title":"\u0421\u0435\u0440\u0432\u0456\u0441\u043D\u0438\u0439 \u0440\u0435\u0436\u0438\u043C","status.widget.info.storage_path":"\u0414\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0456\u044F \u0437\u0431\u0435\u0440\u0456\u0433\u0430\u043D\u043D\u044F","status.widget.info.synology_package":"\u041F\u0430\u043A\u0435\u0442 Synology","status.widget.info.timezone":"\u0427\u0430\u0441\u043E\u0432\u0438\u0439 \u043F\u043E\u044F\u0441","status.widget.info.yes":"\u0422\u0430\u043A","status.widget.network.history_items":"\u0406\u0441\u0442\u043E\u0440\u0456\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0456\u0432","status.widget.network.items":"\u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0438","status.widget.network.network_interface":"\u041C\u0435\u0440\u0435\u0436\u0435\u0432\u0438\u0439 \u0456\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441","status.widget.network.none_selected":"None selected in settings - using default.","status.widget.network.refresh_interval":"\u0406\u043D\u0442\u0435\u0440\u0432\u0430\u043B \u043E\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F","status.widget.network.refresh_note":"\u041E\u043D\u043E\u0432\u0456\u0442\u044C \u0441\u0442\u043E\u0440\u0456\u043D\u043A\u0443, \u0449\u043E\u0431 \u0437\u043C\u0456\u043D\u0438 \u043D\u0430\u0431\u0443\u043B\u0438 \u0447\u0438\u043D\u043D\u043E\u0441\u0442\u0456.","status.widget.network.seconds":"\u0441\u0435\u043A\u0443\u043D\u0434\u0438","status.widget.qr_paired":"C\u043F\u0430\u0440\u043E\u0432\u0430\u043D\u0438\u0439","status.widget.qr_unpaired":"\u041D\u0435 \u0441\u043F\u0430\u0440\u043E\u0432\u0430\u043D\u0438\u0439","status.widget.show_hide":"Show/Hide Widgets","status.widget.title_manage_widget":"\u041A\u0435\u0440\u0443\u0432\u0430\u043D\u043D\u044F \u0432\u0456\u0434\u0436\u0435\u0442\u043E\u043C","status.widget.uptime.label_process":"\u041F\u0440\u043E\u0446\u0435\u0441","status.widget.uptime.label_server":"\u0421\u0435\u0440\u0432\u0435\u0440","status.widget.weather.label_config_required_help":"\u0412\u043A\u0430\u0436\u0456\u0442\u044C \u0412\u0430\u0448\u0435 \u043C\u0456\u0441\u0442\u043E \u0432 \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F\u0445 \u0432\u0456\u0434\u0436\u0435\u0442\u0430.","status.widget.weather.label_search_for_your_city":"\u0412\u043A\u0430\u0436\u0456\u0442\u044C \u0412\u0430\u0448\u0435 \u043C\u0456\u0441\u0442\u043E:","status.widget.weather.title_weather":"\u041F\u043E\u0433\u043E\u0434\u0430","support.dev.api":"Homebridge API","support.dev.api_hap":"HAP-NodeJS API","support.dev.api_hap_sub":"HAP-NodeJS \u2014 \u0446\u0435 \u0440\u0435\u0430\u043B\u0456\u0437\u0430\u0446\u0456\u044F \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0430\u043A\u0441\u0435\u0441\u0443\u0430\u0440\u0456\u0432 HomeKit, \u044F\u043A \u0437\u0430\u0437\u043D\u0430\u0447\u0435\u043D\u043E \u0432 \u043F\u0440\u043E\u0442\u043E\u043A\u043E\u043B\u0456 \u0430\u043A\u0441\u0435\u0441\u0443\u0430\u0440\u0456\u0432 HomeKit (HAP), \u044F\u043A\u0438\u0439 Apple \u0432\u0438\u0437\u043D\u0430\u0447\u0430\u0454 \u044F\u043A \u0447\u0430\u0441\u0442\u0438\u043D\u0443 HomeKit Framework.","support.dev.api_sub":"Homebridge \u2014 \u0446\u0435 \u043B\u0435\u0433\u043A\u0438\u0439 \u0441\u0435\u0440\u0432\u0435\u0440 Node.js, \u044F\u043A\u0438\u0439 \u043C\u043E\u0436\u043D\u0430 \u0437\u0430\u043F\u0443\u0441\u043A\u0430\u0442\u0438 \u0443 \u0434\u043E\u043C\u0430\u0448\u043D\u0456\u0439 \u043C\u0435\u0440\u0435\u0436\u0456 \u0442\u0430 \u044F\u043A\u0438\u0439 \u0435\u043C\u0443\u043B\u044E\u0454 iOS HomeKit API.","support.dev.item_swagger":"Swagger \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0438","support.dev.item_swagger_sub":"Homebridge REST API \u0434\u043E\u0437\u0432\u043E\u043B\u044F\u0454 \u0412\u0430\u043C \u0432\u0437\u0430\u0454\u043C\u043E\u0434\u0456\u044F\u0442\u0438 \u0437 \u0412\u0430\u0448\u0438\u043C \u0441\u0435\u0440\u0432\u0435\u0440\u043E\u043C Homebridge \u0437\u0430 \u0434\u043E\u043F\u043E\u043C\u043E\u0433\u043E\u044E HTTP-\u0437\u0430\u043F\u0438\u0442\u0456\u0432.","support.dev.template":"\u0420\u0435\u043F\u043E\u0437\u0438\u0442\u043E\u0440\u0456\u0439 \u0448\u0430\u0431\u043B\u043E\u043D\u0443 \u043F\u043B\u0430\u0433\u0456\u043D\u0430","support.dev.template_sub":"\u0428\u0430\u0431\u043B\u043E\u043D \u043F\u043B\u0430\u0433\u0456\u043D\u0430 Homebridge, \u044F\u043A\u0438\u0439 \u043C\u043E\u0436\u043D\u0430 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0432\u0430\u0442\u0438 \u044F\u043A \u043E\u0441\u043D\u043E\u0432\u0443, \u0449\u043E\u0431 \u0434\u043E\u043F\u043E\u043C\u043E\u0433\u0442\u0438 \u0412\u0430\u043C \u0440\u043E\u0437\u043F\u043E\u0447\u0430\u0442\u0438 \u0440\u043E\u0437\u0440\u043E\u0431\u043A\u0443 \u0432\u043B\u0430\u0441\u043D\u043E\u0433\u043E \u043F\u043B\u0430\u0433\u0456\u043D\u0430.","support.dev.title":"\u0420\u043E\u0437\u0440\u043E\u0431\u043D\u0438\u043A\u0438","support.dev.verified":"\u041F\u0435\u0440\u0435\u0432\u0456\u0440\u0435\u043D\u043E Homebridge","support.dev.verified_sub":"\u041F\u0440\u043E\u0433\u0440\u0430\u043C\u0430 Verified By Homebridge \u0434\u043E\u0437\u0432\u043E\u043B\u044F\u0454 \u0440\u043E\u0437\u0440\u043E\u0431\u043D\u0438\u043A\u0430\u043C \u043F\u043B\u0430\u0433\u0456\u043D\u0456\u0432 \u043E\u0442\u0440\u0438\u043C\u0443\u0432\u0430\u0442\u0438 \u043F\u0435\u0440\u0435\u0432\u0456\u0440\u043A\u0443 \u0442\u0430 \u0441\u0445\u0432\u0430\u043B\u0435\u043D\u043D\u044F \u0441\u0432\u043E\u0457\u0445 \u043F\u043B\u0430\u0433\u0456\u043D\u0456\u0432 \u043A\u043E\u043C\u0430\u043D\u0434\u043E\u044E \u043F\u0440\u043E\u0435\u043A\u0442\u0443 Homebridge.","support.links.discord":"\u0421\u0435\u0440\u0432\u0435\u0440 Discord","support.links.discord_sub":"\u041F\u0440\u0438\u0454\u0434\u043D\u0443\u0439\u0442\u0435\u0441\u044F \u0434\u043E \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0447\u0430\u0442\u0443 Homebridge Discord, \u0449\u043E\u0431 \u0441\u043F\u0456\u043B\u043A\u0443\u0432\u0430\u0442\u0438\u0441\u044F \u0437 \u0456\u043D\u0448\u0438\u043C\u0438 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430\u043C\u0438 \u0442\u0430 \u0440\u043E\u0437\u0440\u043E\u0431\u043D\u0438\u043A\u0430\u043C\u0438.","support.links.documentation":"\u0414\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430\u0446\u0456\u044F","support.links.documentation_sub":"\u0414\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430\u0446\u0456\u044F Homebridge \u043D\u0430\u0434\u0430\u0454 \u0432\u0435\u043B\u0438\u043A\u0443 \u043A\u0456\u043B\u044C\u043A\u0456\u0441\u0442\u044C \u0456\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0456\u0457 \u043F\u0440\u043E \u0442\u0435, \u044F\u043A \u0440\u043E\u0437\u043F\u043E\u0447\u0430\u0442\u0438 \u0440\u043E\u0431\u043E\u0442\u0443 \u0437 Homebridge, \u0442\u0430 \u043F\u0440\u043E \u0432\u0438\u0440\u0456\u0448\u0435\u043D\u043D\u044F \u0442\u0438\u043F\u043E\u0432\u0438\u0445 \u043F\u0440\u043E\u0431\u043B\u0435\u043C.","support.links.issue":"\u041F\u043E\u0432\u0456\u0434\u043E\u043C\u0438\u0442\u0438 \u043F\u0440\u043E \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0443","support.links.issue_sub":"\u042F\u043A\u0449\u043E \u0443 \u0412\u0430\u0441 \u0432\u0438\u043D\u0438\u043A\u043B\u0438 \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0438 \u0437 Homebridge, \u0431\u0443\u0434\u044C \u043B\u0430\u0441\u043A\u0430, \u0432\u0456\u0434\u043A\u0440\u0438\u0439\u0442\u0435 \u043D\u043E\u0432\u0443 \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0443 \u043D\u0430 GitHub. \u0410\u043B\u0435 - \u043D\u0435 \u0441\u043B\u0456\u0434 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0432\u0430\u0442\u0438 \u0446\u0435 \u0434\u043B\u044F \u043F\u0440\u043E\u0431\u043B\u0435\u043C \u0456\u0437 \u043F\u0435\u0432\u043D\u0438\u043C\u0438 \u043F\u043B\u0430\u0433\u0456\u043D\u0430\u043C\u0438.","support.links.reddit":"\u0421\u043F\u0456\u043B\u044C\u043D\u043E\u0442\u0430 Reddit","support.links.reddit_sub":"Subreddit Homebridge \u2014 \u0446\u0435 \u0447\u0443\u0434\u043E\u0432\u0435 \u043C\u0456\u0441\u0446\u0435, \u0434\u0435 \u043C\u043E\u0436\u043D\u0430 \u043F\u043E\u0434\u0456\u043B\u0438\u0442\u0438\u0441\u044F \u0441\u0432\u043E\u0457\u043C\u0438 \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F\u043C\u0438 Homebridge \u0442\u0430 \u043F\u043E\u043F\u0440\u043E\u0441\u0438\u0442\u0438 \u0434\u043E\u043F\u043E\u043C\u043E\u0433\u0438.","support.links.title":"\u041A\u043E\u0440\u0438\u0441\u043D\u0456 \u043F\u043E\u0441\u0438\u043B\u0430\u043D\u043D\u044F","support.title":"\u041F\u0456\u0434\u0442\u0440\u0438\u043C\u043A\u0430","toast.no_auth":"Only administrators may access the requested page.","toast.title_error":"\u041F\u043E\u043C\u0438\u043B\u043A\u0430","toast.title_success":"\u0423\u0441\u043F\u0456\u0448\u043D\u043E","toast.title_warning":"\u041F\u043E\u043F\u0435\u0440\u0435\u0434\u0436\u0435\u043D\u043D\u044F","users.button_add_new_user":"\u0414\u043E\u0434\u0430\u0442\u0438 \u043D\u043E\u0432\u043E\u0433\u043E \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430","users.button_add_user":"\u0414\u043E\u0434\u0430\u0442\u0438 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430","users.label_admin_user":"\u0410\u0434\u043C\u0456\u043D\u0456\u0441\u0442\u0440\u0430\u0442\u043E\u0440","users.label_confirm_password":"\u041F\u0456\u0434\u0442\u0432\u0435\u0440\u0434\u0456\u0442\u044C \u043F\u0430\u0440\u043E\u043B\u044C","users.label_full_name":"\u041F\u043E\u0432\u043D\u0435 \u0456\u043C'\u044F","users.label_new_password":"\u041D\u043E\u0432\u0438\u0439 \u043F\u0430\u0440\u043E\u043B\u044C","users.label_password":"\u041F\u0430\u0440\u043E\u043B\u044C","users.label_username":"\u0406\u043C'\u044F \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430","users.setup_2fa":"\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438 2FA","users.setup_2fa_activate_error":"An error occurred activating 2FA","users.setup_2fa_cannot_setup_2fa":"\u041D\u0435\u043C\u043E\u0436\u043B\u0438\u0432\u043E \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438 2FA","users.setup_2fa_disable":"\u0412\u0438\u043C\u043A\u043D\u0443\u0442\u0438 2FA","users.setup_2fa_disable_current_password":"\u0412\u0432\u0435\u0434\u0456\u0442\u044C \u0441\u0432\u0456\u0439 \u043F\u043E\u0442\u043E\u0447\u043D\u0438\u0439 \u043F\u0430\u0440\u043E\u043B\u044C, \u0449\u043E\u0431 \u0432\u0438\u043C\u043A\u043D\u0443\u0442\u0438 \u0434\u0432\u043E\u0444\u0430\u043A\u0442\u043E\u0440\u043D\u0443 \u0430\u0443\u0442\u0435\u043D\u0442\u0438\u0444\u0456\u043A\u0430\u0446\u0456\u044E:","users.setup_2fa_disable_success":"\u0414\u0432\u043E\u0444\u0430\u043A\u0442\u043E\u0440\u043D\u0430 \u0430\u0443\u0442\u0435\u043D\u0442\u0438\u0444\u0456\u043A\u0430\u0446\u0456\u044F \u0432\u0438\u043C\u043A\u043D\u0435\u043D\u0430.","users.setup_2fa_enable":"\u0423\u0432\u0456\u043C\u043A\u043D\u0443\u0442\u0438 2FA","users.setup_2fa_enable_error":"An error occurred setting up 2FA","users.setup_2fa_enabled_success":"\u0414\u0432\u043E\u0444\u0430\u043A\u0442\u043E\u0440\u043D\u0430 \u0430\u0443\u0442\u0435\u043D\u0442\u0438\u0444\u0456\u043A\u0430\u0446\u0456\u044F \u0443\u0432\u0456\u043C\u043A\u043D\u0435\u043D\u0430.","users.setup_2fa_enter_code":"\u0412\u0432\u0435\u0434\u0456\u0442\u044C \u043A\u043E\u0434 \u0437 \u0412\u0430\u0448\u043E\u0433\u043E \u0434\u043E\u0434\u0430\u0442\u043A\u0443 \u0434\u043B\u044F \u0430\u0443\u0442\u0435\u043D\u0442\u0438\u0444\u0456\u043A\u0430\u0446\u0456\u0457:","users.setup_2fa_scan_qr_code":"\u0412\u0456\u0434\u0441\u043A\u0430\u043D\u0443\u0439\u0442\u0435 QR-\u043A\u043E\u0434 \u043D\u0438\u0436\u0447\u0435 \u0437\u0430 \u0434\u043E\u043F\u043E\u043C\u043E\u0433\u043E\u044E \u0412\u0430\u0448\u043E\u0433\u043E \u0434\u043E\u0434\u0430\u0442\u043A\u0443 \u0434\u043B\u044F \u0430\u0443\u0442\u0435\u043D\u0442\u0438\u0444\u0456\u043A\u0430\u0446\u0456\u0457:","users.setup_2fa_server_time_out":"\u0413\u043E\u0434\u0438\u043D\u043D\u0438\u043A \u0412\u0430\u0448\u043E\u0433\u043E \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u043C\u0430\u0454 \u043F\u043E\u0445\u0438\u0431\u043A\u0443 \u043D\u0430 {{ timeDiffError }} \u043C\u0441. \u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u043E \u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u043D\u044F +/-5000 \u043C\u0441.","users.setup_2fa_warning":"\u0414\u0432\u043E\u0444\u0430\u043A\u0442\u043E\u0440\u043D\u0430 \u0430\u0443\u0442\u0435\u043D\u0442\u0438\u0444\u0456\u043A\u0430\u0446\u0456\u044F \u0432\u0438\u043C\u0430\u0433\u0430\u0454, \u0449\u043E\u0431 \u0412\u0430\u0448 \u0441\u0435\u0440\u0432\u0435\u0440 Homebridge \u043C\u0430\u0432 \u0434\u0443\u0436\u0435 \u0442\u043E\u0447\u043D\u0443 \u0434\u0430\u0442\u0443 \u0442\u0430 \u0447\u0430\u0441 \u0434\u043B\u044F \u0432\u0445\u043E\u0434\u0443 \u0432 \u0441\u0438\u0441\u0442\u0435\u043C\u0443. \u042F\u043A\u0449\u043E \u0412\u0430\u0448 \u0441\u0435\u0440\u0432\u0435\u0440 \u043D\u0435 \u043C\u0430\u0454 \u043C\u043E\u0436\u043B\u0438\u0432\u043E\u0441\u0442\u0456 \u0442\u043E\u0447\u043D\u043E \u0432\u0456\u0434\u0441\u0442\u0435\u0436\u0443\u0432\u0430\u0442\u0438 \u0447\u0430\u0441, \u0412\u0438 \u043D\u0435 \u043F\u043E\u0432\u0438\u043D\u043D\u0456 \u0432\u043C\u0438\u043A\u0430\u0442\u0438 2FA \u0430\u0431\u043E \u0440\u0438\u0437\u0438\u043A\u0443\u0454\u0442\u0435 \u0432\u0442\u0440\u0430\u0442\u0438\u0442\u0438 \u0434\u043E\u0441\u0442\u0443\u043F \u0434\u043E \u0456\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0443 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430 Homebridge.","users.title_add_user":"\u0414\u043E\u0434\u0430\u0442\u0438 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430","users.title_edit_user":"\u041F\u0440\u043E\u0444\u0456\u043B\u044C \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430","users.title_users":"\u041A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0456","users.toast_added_new_user":"\u041D\u043E\u0432\u043E\u0433\u043E \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430 \u0434\u043E\u0434\u0430\u043D\u043E","users.toast_failed_to_add_user":"\u041D\u0435 \u0432\u0434\u0430\u043B\u043E\u0441\u044F \u0434\u043E\u0434\u0430\u0442\u0438 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430","users.toast_failed_to_delete_user":"\u041D\u0435 \u0432\u0434\u0430\u043B\u043E\u0441\u044F \u0432\u0438\u0434\u0430\u043B\u0438\u0442\u0438 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430","users.toast_updated_user":"\u0414\u0430\u043D\u0456 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430 \u043E\u043D\u043E\u0432\u043B\u0435\u043D\u043E","users.toast_user_deleted":"\u041A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430 \u0432\u0438\u0434\u0430\u043B\u0435\u043D\u043E"}});var Ws=y((Zd,Pa)=>{Pa.exports={"accessories.button_add_room":"\u6DFB\u52A0\u623F\u95F4","accessories.button_hidden_hide":"Hide Hidden","accessories.button_hidden_show":"Show Hidden","accessories.control.auto":"\u81EA\u52A8","accessories.control.away":"\u79BB\u5F00","accessories.control.battery_charging":"\u5145\u7535\u4E2D","accessories.control.battery_notchargeable":"\u65E0\u6CD5\u5145\u7535","accessories.control.battery_notcharging":"\u672A\u5145\u7535","accessories.control.brightness":"\u4EAE\u5EA6","accessories.control.closed":"\u5173\u95ED","accessories.control.closing":"\u6B63\u5728\u5173\u95ED","accessories.control.cool":"\u5236\u51B7","accessories.control.default_room":"\u9ED8\u8BA4\u623F\u95F4","accessories.control.default_running_time":"\u9ED8\u8BA4\u8FD0\u884C\u65F6\u95F4","accessories.control.dehumidifying":"\u9664\u6E7F\u4E2D","accessories.control.detected":"Detected","accessories.control.drag_here":"\u62D6\u62FD\u5230\u6B64","accessories.control.fan":"\u98CE\u6247","accessories.control.heat":"\u5236\u70ED","accessories.control.home":"\u5BB6","accessories.control.humidifying":"\u52A0\u6E7F\u4E2D","accessories.control.jammed":"\u5361\u4F4F","accessories.control.light":"\u706F","accessories.control.locked":"\u5DF2\u9501\u5B9A","accessories.control.mute":"\u9759\u97F3","accessories.control.night":"\u591C\u665A\u6A21\u5F0F","accessories.control.not_detected":"Not Detected","accessories.control.not_mute":"\u6253\u5F00","accessories.control.off":"\u5173\u95ED","accessories.control.on":"\u5F00\u542F","accessories.control.open":"\u6253\u5F00","accessories.control.opening":"\u6B63\u5728\u6253\u5F00","accessories.control.rotation_speed":"\u8F6C\u901F","accessories.control.running":"\u8FD0\u884C\u4E2D","accessories.control.speaker_volume":"\u97F3\u91CF","accessories.control.stopped":"\u5DF2\u505C\u6B62","accessories.control.target":"\u76EE\u6807","accessories.control.target_humidity":"\u76EE\u6807\u6E7F\u5EA6","accessories.control.target_temperature":"\u76EE\u6807\u6E29\u5EA6","accessories.control.triggered":"\u5DF2\u89E6\u53D1","accessories.control.unknown":"\u672A\u77E5","accessories.control.unlocked":"\u5DF2\u89E3\u9501","accessories.control_disabled":"Homebridge \u914D\u4EF6\u63A7\u5236\u5DF2\u7981\u7528","accessories.hide_this_accessory":"\u9690\u85CF\u6B64\u914D\u4EF6","accessories.message_for_more_information":"\u4EE5\u83B7\u53D6\u66F4\u591A\u4FE1\u606F\u3002","accessories.message_must_use_insecure_mode":"\u60A8\u5FC5\u987B\u4EE5 insecure(-I) \u6A21\u5F0F\u542F\u52A8 Homebridge \u624D\u53EF\u4EE5\u63A7\u5236\u914D\u4EF6\u3002","accessories.message_please_see":"\u8BF7\u770B","accessories.name":"\u540D\u79F0","accessories.room_name":"\u623F\u95F4\u540D\u79F0","accessories.rooms_not_appear_in_homekit":"\u4F60\u521B\u5EFA\u7684\u623F\u95F4\u5C06\u4E0D\u4F1A\u5728 HomeKit \u4E2D\u663E\u793A, \u4ED6\u4EEC\u7684\u4F5C\u7528\u5728\u4E8E\u60A8\u53EF\u4EE5\u5728 Homebridge UI \u4E2D\u6574\u7406\u6240\u6709\u914D\u4EF6\u3002","accessories.settings_link":"You can access the Homebridge Settings at any time from the cog icon in the side menu.","accessories.show_on_dashboard":"\u663E\u793A\u5728\u4EEA\u8868\u76D8\u5C0F\u63D2\u4EF6","accessories.title_accessories":"\u914D\u4EF6","backup.backup_delete_failed":"Backup deletion failed. See logs for details.","backup.backup_download_failed":"\u5907\u4EFD\u4E0B\u8F7D\u5931\u8D25","backup.backup_exceeds_max_size":"Backup ({{ backupSize }}) exceeds maximum restore file size of {{ maxBackupSizeText }}","backup.backup_help_one":"\u4E0B\u8F7D\u60A8\u6574\u4E2A Homebridge \u73AF\u5883\u7684\u5B8C\u6574\u5907\u4EFD\u3002\u8FD9\u5C06\u4F1A\u628A\u6574\u4E2A Homebridge \u5B58\u50A8\u8DEF\u5F84\u4E0B\u7684\u6587\u4EF6\u8FDB\u884C\u5907\u4EFD\u4EE5\u65B9\u4FBF\u60A8\u4EE5\u540E\u901A\u8FC7 Homebridge UI \u8FDB\u884C\u6062\u590D\u3002","backup.backup_help_two":"\u63D2\u4EF6\u672A\u5728 npm \u5546\u5E97\u4E2D, \u6216\u8005\u76F4\u63A5\u4ECE GitHub \u5B89\u88C5\u7684\u63D2\u4EF6\u5C06\u4E0D\u4F1A\u52A0\u5165\u5907\u4EFD\u6216\u8005\u88AB\u6062\u590D\u3002","backup.backup_restored":"\u5DF2\u4ECE\u5907\u4EFD\u6863\u6848\u4E2D\u6062\u590D","backup.backup_warning":"\u5907\u4EFD\u6587\u6863\u5305\u542B\u4E86\u654F\u611F\u4FE1\u606F\uFF0C\u8BF7\u52FF\u4E0E\u4ED6\u4EBA\u5171\u4EAB\u3002","backup.button_restore_backup":"\u6062\u590D\u5907\u4EFD","backup.label_choose_backup_file_to_restore":"\u9009\u62E9\u6587\u4EF6\u4EE5\u6062\u590D\u2026","backup.label_uploading":"\u4E0A\u4F20\u4E2D\u2026","backup.load_error":"Failed to load config backup.","backup.now":"Now","backup.restore_failed":"\u6062\u590D\u5931\u8D25","backup.restore_help_one":"\u6062\u590D\u60A8\u4E4B\u524D\u901A\u8FC7 Homebridge UI \u751F\u6210\u7684\u5907\u4EFD\u6587\u6863\u3002 \u60A8\u7684 Homebridge \u914D\u7F6E\uFF0C\u5DF2\u7F13\u5B58\u7684\u914D\u4EF6\uFF0C, HomeKit \u5339\u914D\u4EE3\u7801\u548C Homebridge UI \u7528\u6237\u8D26\u6237\u5BC6\u7801\u5C06\u4F1A\u88AB\u6062\u590D\u3002 \u6240\u6709\u7684 Homebridge \u63D2\u4EF6\u5C06\u4F1A\u4ECE npm \u4E2D\u91CD\u65B0\u5B89\u88C5\u3002","backup.restore_help_two":"\u6062\u590D\u5907\u4EFD\u4E4B\u540E\uFF0C\u60A8\u5C06\u9700\u8981\u4F7F\u7528\u6062\u590D\u6587\u6863\u4E2D\u7684\u8D26\u53F7\u6765\u767B\u9646 Homebridge UI","backup.restore_max_size":"You can restore a backup archive up to {{ maxBackupSizeText }} in size.","backup.restore_warning":"\u6062\u590D\u5907\u4EFD\u5C06\u4F1A\u4E0D\u53EF\u9006\u7684\u8986\u76D6\u5F53\u524D\u7684 Homebridge \u914D\u7F6E\u3002","backup.scheduled_backup_time":"\u4E00\u4EFD\u5B8C\u6574\u7684 Homebridge \u5B9E\u4F8B\u5C06\u4F1A\u5728\u6BCF\u5929 {{ backupTime }} \u8FDB\u884C\u5907\u4EFD\u5E76\u4FDD\u5B58 {{ dayCount }} \u5929\u3002","backup.title_backup":"\u5907\u4EFD","child_bridge.about":"Homebridge \u5141\u8BB8\u60A8\u4EE5\u5B50\u7F51\u6865\u7684\u65B9\u5F0F\u8FD0\u884C\u63D2\u4EF6\u6216\u8005\u914D\u4EF6\u3002\u8BE5\u64CD\u4F5C\u901A\u5E38\u53EF\u4EE5\u589E\u52A0\u8BBE\u5907\u7684\u54CD\u5E94\u901F\u5EA6\u4EE5\u53CA\u7A33\u5B9A\u6027\u3002","child_bridge.bridge_connect":"Connect to HomeKit","child_bridge.bridge_settings":"\u7F51\u6865\u8BBE\u7F6E","child_bridge.bridges":"HomeKit Bridges","child_bridge.bridges_paired":"\u6BCF\u4E2A\u5B50\u7F51\u6865\u9700\u8981\u4E0E HomeKit \u5355\u72EC\u8FDB\u884C\u914D\u5BF9\u3002","child_bridge.config.debug":"Debug Mode","child_bridge.config.description":"These fields are not required, but can be used to override the HomeKit configuration for this bridge.","child_bridge.config.firmware":"Firmware Version","child_bridge.config.header":"Configuration","child_bridge.config.manufacturer":"Manufacturer","child_bridge.config.model":"Model","child_bridge.config.name":"Name","child_bridge.must_configure_plugin":"\u5728\u8FDB\u884C\u5B50\u7F51\u6865\u914D\u7F6E\u524D\uFF0C\u60A8\u9700\u8981\u5148\u5B8C\u6210\u63D2\u4EF6\u7684\u914D\u7F6E\u3002","child_bridge.reset_accessories":"Reset Accessories","child_bridge.reset_accessories_list":"Choose from which child bridges you want to reset the accessories below:","child_bridge.restart":"Restart Child Bridges","child_bridge.restart_homebridge":"\u91CD\u542F Homebridge \u4EE5\u5B8C\u6210\u5B50\u7F51\u6865\u8BBE\u7F6E\u3002","child_bridge.restart_plural":"Restart Child Bridges","child_bridge.return_to_pair":"\u5728 Homebridge \u91CD\u542F\u540E\u8FD4\u56DE\u5230\u8BE5\u9875\u9762\u67E5\u770B\u914D\u5BF9\u4E8C\u7EF4\u7801\u3002","child_bridge.select_type":"\u9009\u62E9\u60A8\u60F3\u4EE5\u5B50\u7F51\u6865\u8FD0\u884C\u7684\u63D2\u4EF6\u6216\u8BBE\u5907\u3002","child_bridge.setup":"Set Up Child Bridge","child_bridge.start":"Start Child Bridge","child_bridge.start_plural":"Start Child Bridges","child_bridge.stop":"Stop Child Bridge","child_bridge.stop_plural":"Stop Child Bridges","child_bridge.wiki_link":"\u4E86\u89E3\u5B50\u7F51\u6865","config.config_accessory_must_be_array":"\u914D\u4EF6\u5E94\u4E3A\u6570\u7EC4 []","config.config_bridge_missing":"Bridge \u8BBE\u7F6E\u4E22\u5931","config.config_invalid_json":"\u914D\u7F6E\u5305\u542B\u65E0\u6548 JSON","config.config_platform_must_be_array":"\u5E73\u53F0\u5E94\u4E3A\u6570\u7EC4 []","config.config_username_error":"Bridge \u7528\u6237\u540D\u5FC5\u987B\u662F6\u5BF9\u4EE5\u5192\u53F7\u5206\u9694\u7684\u5341\u516D\u8FDB\u5236\u5B57\u7B26\uFF08A-F 0-9\uFF09","config.error_blocks_objects":"All {{ type }} blocks must be objects.","config.error_blocks_type":"All {{ type }} blocks must contain the {{ type }} attribute.","config.error_string_array":"Each item in the {{ key }} array must be a string.","config.error_string_type":"The {{ type }} attribute must be a string.","config.failed_to_save_config":"\u4FDD\u5B58\u914D\u7F6E\u5931\u8D25","config.restore.confirm":"\u5355\u51FB\u201C\u4FDD\u5B58\u201D\u4EE5\u786E\u8BA4\u60A8\u8981\u8FD8\u539F\u6B64\u5907\u4EFD\u3002","config.restore.copy_to_editor":"\u590D\u5236\u5230\u5F53\u524D\u7F16\u8F91","config.restore.no_backups":"\u6CA1\u6709\u5907\u4EFD","config.restore.title_restore_homebridge_backup":"\u4ECE\u5907\u4EFD\u4E2D\u6062\u590D Homebridge \u914D\u7F6E","config.restore.toast_backups_deleted":"\u6240\u6709\u5907\u4EFD\u5DF2\u5220\u9664","config.title_backup_loaded":"\u5DF2\u8F7D\u5165\u5907\u4EFD","form.button_cancel":"\u53D6\u6D88","form.button_close":"\u5173\u95ED","form.button_delete":"\u5220\u9664","form.button_disable":"Disable","form.button_download":"\u4E0B\u8F7D","form.button_edit":"\u7F16\u8F91","form.button_enable":"Enable","form.button_hide":"Hide","form.button_lock":"Lock","form.button_more_info":"More Info","form.button_remove":"Remove","form.button_reset":"Reset","form.button_restore":"\u6062\u590D\u5907\u4EFD","form.button_save":"\u4FDD\u5B58","form.button_show":"Show","form.button_unlock":"Unlock","form.button_unpair":"Unpair","form.label_invalid":"Config validation failed - you can still save your changes.","form.label_invalid_strict":"Config validation failed - please review the form before saving.","form.label_valid":"Config validation passed.","form.select.auto":"Automatic (Use Browser Settings)","login.button_login":"\u767B\u5F55","login.invalid_credentials":"\u65E0\u6548\u7684\u7528\u6237\u540D\u6216\u5BC6\u7801","login.label_2fa_code":"\u4E24\u6B65\u9A8C\u8BC1\u4EE3\u7801","login.label_password":"\u5BC6\u7801","login.label_username":"\u7528\u6237\u540D","login.message_invalid_2fa_code":"\u60A8\u8F93\u5165\u7684\u4EE3\u7801\u4E0D\u6B63\u786E\u6216\u5DF2\u8FC7\u671F\u3002","logs.download.error":"Failed to download log file.","logs.download_warning":"Homebridge \u65E5\u5FD7\u6587\u4EF6\u5305\u542B\u4E86\u4E2A\u4EBA\u4FE1\u606F\uFF0C\u5BC6\u7801\u6216\u8005\u8BBF\u95EE\u4EE4\u724C\u3002 \u5728\u5206\u4EAB\u7ED9\u4ED6\u4EBA\u4E4B\u524D\u8BF7\u67E5\u770B\u65E5\u5FD7\u95EE\u5377\u5E76\u79FB\u9664\u4EFB\u4F55\u654F\u611F\u4FE1\u606F\u3002","logs.log_file_truncated":"\u65E5\u5FD7\u6587\u4EF6\u5DF2\u622A\u65AD\u3002","logs.title_download_log_file":"\u4E0B\u8F7D\u65E5\u5FD7\u6587\u4EF6","logs.title_truncate_log_file":"\u622A\u65AD\u65E5\u5FD7\u6587\u4EF6","logs.truncate.error":"Failed to truncate log file.","logs.truncate_log_warning":"\u8BE5\u64CD\u4F5C\u5C06\u4F1A\u5220\u9664\u4EE5\u5F80\u7684\u65E5\u5FD7\u5E76\u4E14\u662F\u4E0D\u53EF\u9006\u7684\u3002 \u60A8\u786E\u5B9A\u9700\u8981\u7EE7\u7EED\u5417\uFF1F","menu.config_json_editor":"JSON Config","menu.docker.restart_container":"\u91CD\u542F\u5BB9\u5668","menu.docker.startup_script":"\u542F\u52A8\u811A\u672C","menu.docker.terminal":"\u7EC8\u7AEF","menu.hbrestart.confirm_hb":"Restart Homebridge","menu.hbrestart.confirm_ui":"Restart HB Service & UI","menu.hbrestart.title":"Restart Homebridge","menu.label_accessories":"\u914D\u4EF6","menu.label_plugins":"\u63D2\u4EF6","menu.label_settings":"Settings","menu.label_settings_advanced":"UI Advanced Settings","menu.label_status":"\u72B6\u6001","menu.linux.label_logs":"Logs","menu.linux.label_restart_server":"\u91CD\u542F\u670D\u52A1\u5668","menu.linux.label_shutdown_server":"\u5173\u95ED\u670D\u52A1\u5668","menu.linux.label_terminal":"\u7EC8\u7AEF","menu.restart.title":"Power Options","menu.settings.title":"Settings","menu.tooltip_logout":"\u6CE8\u9500","menu.tooltip_restart":"\u91CD\u542F","menu.tooltip_user_accounts":"\u7528\u6237\u5E10\u6237","menu.tooltip_view_logs":"\u67E5\u770B\u65E5\u5FD7","platform.docker.container_restarted":"Docker \u5BB9\u5668\u5DF2\u91CD\u542F","platform.docker.must_use_hashbang":"\u811A\u672C\u5FC5\u987B\u4F7F\u7528 #!/bin/sh","platform.docker.restart_required":"\u60A8\u9700\u8981\u91CD\u65B0\u542F\u52A8\u6B64 Docker \u5BB9\u5668\u624D\u80FD\u4F7F\u66F4\u6539\u751F\u6548\u3002","platform.docker.run_with_restart":"\u786E\u4FDD\u4F7F\u7528 <code>--restart=always</code> \u542F\u52A8 Docker \u5BB9\u5668","platform.docker.script_help":"\u6BCF\u6B21\u542F\u52A8 Docker \u5BB9\u5668\u65F6\u90FD\u4F1A\u6267\u884C\u6B64\u811A\u672C\u3002\u60A8\u53EF\u4EE5\u4F7F\u7528\u5B83\u6765\u5B89\u88C5\u63D2\u4EF6\u53EF\u80FD\u9700\u8981\u7684\u4EFB\u4F55\u989D\u5916\u8F6F\u4EF6\u5305\uFF0C\u4F8B\u5982 ffmpeg \u6216 libpcap-dev\u3002","platform.docker.script_saved":"\u542F\u52A8\u811A\u672C\u5DF2\u4FDD\u5B58","platform.docker.server_long_time":"\u670D\u52A1\u5668\u91CD\u542F\u8D85\u65F6\u3002\u60A8\u53EF\u80FD\u9700\u8981\u624B\u52A8\u542F\u52A8 Docker \u5BB9\u5668\u3002","platform.docker.title_restarting":"\u6B63\u5728\u91CD\u65B0\u542F\u52A8 Docker \u5BB9\u5668","platform.linux.long_time":"\u670D\u52A1\u5668\u91CD\u542F\u8D85\u65F6\uFF0C\u60A8\u53EF\u80FD\u9700\u8981\u624B\u52A8\u542F\u52A8\u670D\u52A1\u5668\u3002","platform.linux.restart":"\u8BF7\u7A0D\u5019\uFF0C\u5F53 Homebridge \u91CD\u65B0\u53EF\u7528\u65F6\u5C06\u81EA\u52A8\u5237\u65B0\u3002","platform.linux.restarting_server":"\u6B63\u5728\u91CD\u542F\u670D\u52A1\u5668","platform.linux.server_restart_error":"\u5411\u670D\u52A1\u5668\u53D1\u9001\u91CD\u542F\u547D\u4EE4\u65F6\u51FA\u9519","platform.linux.server_restarted":"\u670D\u52A1\u5668\u5DF2\u91CD\u542F","platform.linux.server_taking_long_time":"\u670D\u52A1\u5668\u91CD\u542F\u5DF2\u8D85\u65F6","platform.linux.server_will_power_down":"\u670D\u52A1\u5668\u5F88\u5FEB\u5C31\u4F1A\u5173\u673A\u3002","platform.linux.shutting_down_server":"\u6B63\u5728\u5173\u95ED\u670D\u52A1\u5668","platform.version.restart_required":"Homebridge UI \u7248\u672C {{ uiVersion }} \u5DF2\u5B89\u88C5\u5230\u60A8\u7684\u7CFB\u7EDF\u4E2D\uFF0C\u4F46\u662F\u670D\u52A1\u8FDB\u7A0B\u7684\u7248\u672C\u4F9D\u7136\u4E3A {{ serverVersion }}\u3002","platform.version.service_restart_required":"\u9700\u8981\u91CD\u542F\u670D\u52A1","plugins.bridge.action_error":"Failed to {{ action }} child bridge(s).","plugins.button_homepage":"Plugin Homepage","plugins.button_set_up":"Set Up","plugins.button_settings":"\u8BBE\u7F6E","plugins.button_uninstall":"\u5378\u8F7D","plugins.button_update":"\u66F4\u65B0","plugins.compat.are_you_sure":"Are you sure you want to continue anyway?","plugins.compat.hb_node_too_low":"{{ packageName }} v{{ latestVersion }} \u9700\u8981\u6700\u4F4E Node.js \u7248\u672C\u4E3A v{{ minVersion }}\u3002 \u60A8\u73B0\u5728\u7684 Node.js \u7248\u672C\u662F v{{ installedVersion }}\u3002","plugins.compat.hb_too_low":"{{ pluginName }} \u63D2\u4EF6\u63A8\u8350\u4F7F\u7528 Homebridge v{{ minVersion }} \u6216\u8005\u66F4\u65B0\u7248\u672C\u3002 \u60A8\u73B0\u5728\u7684 Homebridge \u7248\u672C\u662F v{{ installedVersion }}\u3002","plugins.compat.node_first":"\u8BF7\u5728\u5347\u7EA7 {{ packageName }} \u524D\u5148\u5347\u7EA7 Node.js\u3002","plugins.compat.node_link":"How To Update Node.js","plugins.compat.node_too_low":"{{ pluginName }} \u63D2\u4EF6\u63A8\u8350\u4F7F\u7528 Node.js v{{ minVersion }} \u6216\u8005\u66F4\u65B0\u7248\u672C\u3002 \u60A8\u73B0\u5728\u7684 Node.js \u7248\u672C\u662F {{ installedVersion }}\u3002","plugins.compat.title":"Compatibility Check","plugins.config.load_error":"Failed to load plugin config.","plugins.config.must_be_array":"Plugin config must be an array.","plugins.config.must_be_array_objects":"Plugin config must be an array of objects.","plugins.config.must_be_object":"Config block must be an object.","plugins.config.name_property":'Accessory must have a valid "name" attribute',"plugins.config.please_fix":"Please fix validation errors before adding a new block.","plugins.config.remove_error":"Failed to remove plugin config.","plugins.disable.error":"Failed to disable plugin.","plugins.donate.button_not_verified":"Not Verified","plugins.donate.button_verified":"\u5DF2\u9A8C\u8BC1","plugins.donate.message_1":"As more users install their plugins through the Homebridge UI, they are less likely to visit the projects' GitHub page where the ways to support a developer would typically be displayed.","plugins.donate.message_2":"Adding donation links directly in the Homebridge UI ensures users know how to support Homebridge developers if they wish to do so.","plugins.donate.tile_donate_to":"\u6253\u8D4F\u7ED9 {{ author }}","plugins.enable.error":"Failed to enable plugin.","plugins.manage.all_versions":"All versions","plugins.manage.child_bridge_restart":"Child bridge restarted successfully.","plugins.manage.child_bridge_restart_failed":"Plugin restart failed, please restart Homebridge manually.","plugins.manage.confirm_disable":"Are you sure you want to disable {{ pluginName }}?","plugins.manage.confirm_disable_accessory_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen and removed from HomeKit.","plugins.manage.confirm_disable_accessory_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and HomeKit. The accessories will lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_disable_platform_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen but remain in HomeKit with a 'No Response' label.","plugins.manage.confirm_disable_platform_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and become controllable again in HomeKit. The accessories will not lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_enable":"\u60A8\u786E\u5B9A\u8981\u542F\u7528 {{ pluginName }} \u5417\uFF1F","plugins.manage.disable":"Disable","plugins.manage.enable":"Enable","plugins.manage.information":"Plugin Information","plugins.manage.install":"\u5B89\u88C5","plugins.manage.installed":"\u5DF2\u5B89\u88C5","plugins.manage.json_config":"JSON Config","plugins.manage.manage_version":"\u5B89\u88C5\u4EE5\u5F80\u7684\u7248\u672C","plugins.manage.manual_update_command":"To upgrade the package run open a Node.js command prompt as an Administrator and run the following commands:","plugins.manage.manual_update_required":"\u9700\u8981\u624B\u52A8\u5347\u7EA7","plugins.manage.online_updates":"Windows \u4E0D\u652F\u6301\u5728\u7EBF\u5347\u7EA7\u3002\u60A8\u9700\u8981\u5148\u624B\u52A8\u505C\u6B62 Homebridge \u670D\u52A1\u7136\u540E\u624D\u80FD\u66F4\u65B0 Homebridge UI\u3002","plugins.manage.plugin_logs":"Plugin Logs","plugins.manage.release_notes":"Release Notes","plugins.manage.scoped.error":"An error occurred. You can download the logs below.","plugins.manage.scoped.info":"For more information about scoped plugins and why to switch, see the wiki page {{ link }}.","plugins.manage.scoped.process":"This process will not affect your Homebridge/HomeKit accessories. You will not be able to cancel the process once it has started. It will:","plugins.manage.scoped.switch":"Switch To Scoped Plugin","plugins.manage.scoped.windows":"Online updates are not supported on Windows. You will need to install the new plugin and uninstall the old plugin manually.","plugins.manage.scoped.windows_service":'You should <span class="font-weight-bold">not</span> restart Homebridge until both steps are complete.',"plugins.manage.select_version":"\u9009\u62E9\u5B89\u88C5\u7684\u7248\u672C","plugins.manage.thanks_for_updating":"\u611F\u8C22\u60A8\u5B89\u88C5\u6700\u65B0\u7248\u672C\u7684 {{ pluginName }}.","plugins.manage.uninstall":"\u5378\u8F7D","plugins.manage.uninstalled":"\u5DF2\u79FB\u9664","plugins.manage.unverified_message":"Unverified Homebridge plugins indicate that they haven't undergone the review process by the Homebridge project team. Lack of verification does not necessarily imply inefficacy or safety concerns. Authors might have opted not to seek verification for various reasons.","plugins.manage.unverified_subtitle":"{{ pluginName }} is not verified","plugins.manage.unverified_title":"Unverified Plugins","plugins.manage.update":"\u66F4\u65B0","plugins.manage.updated":"\u5DF2\u66F4\u65B0","plugins.manage.verified_message":"Homebridge plugins that are marked as verified have been reviewed by the Homebridge project team to ensure they meet various requirements that encourage best practices and a trouble-free user experience.","plugins.manage.verified_subtitle":"{{ pluginName }} is verified","plugins.manage.verified_title":"Verified Plugins","plugins.node_update.continue":"Continue","plugins.placeholder_search_first":"Use the search bar above to find your first plugin","plugins.placeholder_search_plugin":"\u641C\u7D22\u63D2\u4EF6\u2026","plugins.settings.custom.homebridge-gsh.label_account_linked":"\u5DF2\u7ED1\u5B9A","plugins.settings.custom.homebridge-gsh.label_link_account":"\u7ED1\u5B9A\u8D26\u53F7","plugins.settings.custom.homebridge-gsh.label_unlink_account":"\u89E3\u7ED1\u8D26\u53F7","plugins.settings.custom.homebridge-gsh.message_about":"Homebridge \u8C37\u6B4C\u667A\u80FD\u5BB6\u5EAD \u63D2\u4EF6\u5C06\u5141\u8BB8\u60A8\u901A\u8FC7\u652F\u6301\u8C37\u6B4C\u5BB6\u5EAD\u7684\u667A\u80FD\u97F3\u7BB1\u6216\u8005\u624B\u673A\u4E0A\u7684\u8C37\u6B4C\u5BB6\u5EAD\u8F6F\u4EF6\u4E0A\u64CD\u4F5C Homebridge\u3002","plugins.settings.custom.homebridge-gsh.message_account_link_required":"\u82E5\u8981\u4F7F\u7528\u8BE5\u529F\u80FD\u60A8\u9700\u8981\u4F7F\u7528\u60A8\u7684\u8C37\u6B4C\u8D26\u53F7\u6216\u8005 GitHub \u8D26\u53F7\u767B\u9646; \u8BF7\u786E\u4FDD\u60A8\u5728\u8BBE\u5907\u95F4\u767B\u9646\u7684\u4E3A\u540C\u4E00\u8D26\u53F7\u3002","plugins.settings.custom.homebridge-gsh.message_homebridge_restart_required":"Homebridge \u9700\u8981\u91CD\u542F\u4EE5\u751F\u6548","plugins.settings.custom.homebridge-gsh.message_invalid_token":"Invalid account linking token in config.json","plugins.settings.deconz.dump_no_exist":"Homebridge deCONZ dump file does not exist yet.","plugins.settings.hue.dump_no_exist":"Homebridge Hue dump file does not exist yet.","plugins.settings.label_open_config_editor":"\u6253\u5F00\u914D\u7F6E\u7F16\u8F91\u5668","plugins.settings.message_consult_documentation":"\u8BF7\u53C2\u8003\u63D2\u4EF6\u6587\u6863\u4EE5\u8FDB\u884C\u6B63\u786E\u914D\u7F6E\u3002","plugins.settings.message_manual_config_required":"\u6B64\u63D2\u4EF6\u5FC5\u987B\u624B\u52A8\u901A\u8FC7 Homebridge UI \u914D\u7F6E\u7F16\u8F91\u5668\u8FDB\u884C\u914D\u7F6E\u3002","plugins.settings.plugin_config_saved":"\u63D2\u4EF6\u914D\u7F6E\u5DF2\u4FDD\u5B58","plugins.settings.restart_required":"\u91CD\u542F Homebridge \u4EE5\u5E94\u7528\u66F4\u6539\u3002","plugins.settings.title_settings":"\u8BBE\u7F6E","plugins.status_disabled":"Disabled","plugins.status_installed":"\u5DF2\u5B89\u88C5","plugins.toast_failed_to_load_plugin_schema":"Failed to load plugin config schema.","plugins.toast_failed_to_load_plugins":"\u8F7D\u5165\u63D2\u4EF6\u5931\u8D25","plugins.uninstall_bridge_error":"Failed to remove child bridge.","plugins.uninstall_remove_config_required":"\u5982\u679C\u60A8\u786E\u8BA4\u8981\u79FB\u9664\u8FD9\u4E2A\u63D2\u4EF6\uFF0C\u8BF7\u8BB0\u5F97\u5728\u91CD\u542F Homebridge \u670D\u52A1\u4E4B\u524D\u79FB\u9664 config.json \u4E2D\u4E0E\u8BE5\u63D2\u4EF6\u76F8\u5173\u7684\u914D\u7F6E\u4EE3\u7801\u3002","plugins.uninstall_remove_confirmation":"\u60A8\u786E\u5B9A\u8981\u5378\u8F7D {{ pluginName }} \u5417?","plugins.uninstall_remove_plugin_config":"\u540C\u65F6\u79FB\u9664\u63D2\u4EF6\u4EA7\u751F\u7684\u914D\u7F6E\u6587\u4EF6\u5417?","plugins.uninstall_unpair_child_bridge":"Unpair Plugin Child Bridge?","plugins.uninstall_unpair_child_bridges":"Unpair {{ count }} plugin child bridges?","reset.accessory_reset":"Homebridge \u914D\u4EF6\u91CD\u7F6E","reset.action_is_irreversible":"\u8FD9\u4E00\u884C\u52A8\u4E0D\u53EF\u9006\u3002\u5728\u7EE7\u7EED\u4E4B\u524D\u8BF7\u4ED4\u7EC6\u9605\u8BFB\u3002","reset.bridges.desc":"If you are having trouble pairing Homebridge, an external accessory or a child bridge to HomeKit, you may need to unpair it from HomeKit to start again.","reset.bridges.empty":"You have no bridges to unpair from HomeKit.","reset.bridges.title":"Bridges","reset.bridges_all.desc":"Unpair all bridges from HomeKit. This includes the main Homebridge bridge, child bridges and bridges for external accessories.","reset.bridges_all.list_1":"This will unpair the Homebridge bridge, all child bridges and bridges for external accessories from HomeKit.","reset.bridges_all.list_2":"Note that your accessories will continue to show in HomeKit as no response, until the bridges are manually removed from HomeKit. You can do this in the Home app, by accessing Home Settings \u2192 Home Hubs & Bridges \u2192 {Bridge} \u2192 Remove Bridge from Home.","reset.bridges_all.list_3":"All your Homebridge to HomeKit accessories, scenes and automations will need to be reconfigured after the unpairing.","reset.bridges_all.list_4":"The pin for pairing your Homebridge bridge to HomeKit will be changed. You can see the new values in your Homebridge config after the unpairing.","reset.bridges_all.title":"Unpair All Bridges","reset.bridges_single.desc":"Unpair a single bridge from HomeKit. This may be a child bridge or a bridge for an external accessory like a camera or TV.","reset.bridges_single.list_1":"When unpairing a bridge, any accessories published by this bridge will be removed from the Homebridge cache.","reset.bridges_single.list_2":"The accessories will become stale in HomeKit (showing no response). To remove them, you will need to manually remove this bridge from HomeKit. You can do this in the Home app from the Home Settings section.","reset.bridges_single.list_3":"You can then attempt to pair the bridge again if required.","reset.bridges_single.title":"Unpair Single Bridge","reset.cached_accessory_removed":"\u5DF2\u6E05\u9664\u5DF2\u7F13\u5B58\u7684\u914D\u4EF6","reset.clear_cache_all.desc":"Remove all accessories from the cache.","reset.clear_cache_all.list_1":"When clicking on the remove button below, Homebridge will restart and all your existing accessories will be removed from Homebridge and HomeKit.","reset.clear_cache_all.list_2":"All associated HomeKit data will also be removed, this includes room associations, scenes and automations that this accessory uses.","reset.clear_cache_all.list_3":"After Homebridge restarts, your plugins will re-add any accessories as if the plugin was being installed for the first time.","reset.clear_cache_all.title":"Remove All Accessories","reset.clear_cache_bridge.desc":"Remove all accessories published by a bridge from the cache.","reset.clear_cache_bridge.empty":"You have no bridges from which to remove accessories.","reset.clear_cache_bridge.list_1":"This function can be used to reset a plugin's existing accessories in HomeKit. They will be removed from Homebridge/HomeKit and then re-added by the plugin as new accessories.","reset.clear_cache_bridge.list_2":"The child bridge's pairing details and status will remain the same.","reset.clear_cache_bridge.title":"Remove Bridge Accessories","reset.clear_cache_single.desc":"Remove a single accessory from the cache.","reset.clear_cache_single.list_1":"Some plugins don't clean up after themselves properly! If an accessory that you no longer have in Homebridge is still being displayed in HomeKit, you can remove it from the cache.","reset.clear_cache_single.list_2":"This function can be used to reset an existing accessory in HomeKit. It will be removed from Homebridge/HomeKit and then re-added by the plugin as a new accessory.","reset.clear_cache_single.list_3":"When removing an accessory from the cache, all its associated HomeKit data will be removed. This includes any associated scenes and automations that use this accessory.","reset.clear_cache_single.list_4":"Accessories can only be removed when Homebridge is not running. Homebridge will automatically restart when clicking on each of the remove buttons below. If you need to remove multiple accessories, please be patient and allow Homebridge to restart between each removal.","reset.clear_cache_single.title":"Remove Single Accessory","reset.delete_failed":"\u5220\u9664\u914D\u4EF6\u5931\u8D25","reset.delete_success":"\u6B63\u5728\u6E05\u7406\u5DF2\u7F13\u5B58\u914D\u4EF6\u5E76\u91CD\u542F Homebridge\u3002","reset.error_message":"Accessory cache could not be loaded. You may not have any cached accessories.","reset.failed_to_reset":"Homebridge \u91CD\u7F6E\u5931\u8D25\u3002 \u8BE6\u89C1\u65E5\u5FD7\u3002","reset.force_restart_hb_help_text":"\u6267\u884C\u8BE5\u64CD\u4F5C\u4EE5\u5F3A\u5236\u5B8C\u6574\u91CD\u542F hb-service \u670D\u52A1","reset.remove_cached_accessories_single_empty":"You have no cached accessories to remove.","reset.removing_cached_accessory_please_wait":"\u6B63\u5728\u4ECE\u7F13\u5B58\u4E2D\u79FB\u9664\u914D\u4EF6\uFF0C\u8BF7\u7A0D\u7B49\u2026","restart.child_bridge_list":"Please restart these child bridges for the changes to apply:","restart.child_bridges":"Please restart the plugin's child bridges for the changes to apply.","restart.homebridge":"Please restart Homebridge for the changes to apply.","restart.label_restart_command_executed":"\u6B63\u5728\u6267\u884C\u91CD\u542F","restart.please_wait_while_server_restarts":"\u8BF7\u7A0D\u5019\uFF0C\u5F53\u670D\u52A1\u5668\u91CD\u65B0\u53EF\u7528\u65F6\u5C06\u81EA\u52A8\u5237\u65B0\u3002","restart.server_is_taking_long_time_to_restart":"\u670D\u52A1\u5668\u91CD\u542F\u8D85\u65F6\u3002\u60A8\u53EF\u80FD\u9700\u8981\u624B\u52A8\u542F\u52A8 Homebridge \u670D\u52A1\u3002","restart.service_ready":"Homebridge \u670D\u52A1\u51C6\u5907","restart.title_restart":"\u6B63\u5728\u91CD\u65B0\u542F\u52A8 Homebridge","restart.toast_server_restart_error":"\u5411\u670D\u52A1\u5668\u53D1\u9001\u91CD\u542F\u547D\u4EE4\u65F6\u51FA\u9519","restart.toast_server_restart_timeout":"\u670D\u52A1\u5668\u91CD\u542F\u5DF2\u8D85\u65F6","restart.toast_server_restarted":"\u670D\u52A1\u5668\u5DF2\u91CD\u542F","restart.ui_online":"Homebridge UI \u5728\u7EBF","rpi.throttled.currently_message":"This Raspberry Pi is reporting it is currently under-voltage; please check it is connected to an appropriate power supply. Under-voltage can result in system instability and SD card corruption.","rpi.throttled.previously_message":"This Raspberry Pi has reported an under-voltage event since it was last rebooted; please check it is connected to an appropriate power supply.","rpi.throttled.undervoltage_title":"Under Voltage","settings.cache.desc":"Homebridge maintains accessories in cache so they aren't removed and re-added to HomeKit each time Homebridge restarts. Sometimes this cache can become out of sync with the actual accessories in Homebridge.","settings.cache.title":"Accessories","settings.changes.saved":"Your changes have been saved and require a restart to take effect.","settings.datetime.incorrect":"The date and time on your Homebridge server seem to be incorrect. This may cause unexpected issues. Click here for more information.","settings.display.blue":"Blue","settings.display.bluegrey":"Blue Grey","settings.display.brown":"Brown","settings.display.cyan":"Cyan","settings.display.dark":"Dark","settings.display.deep_purple":"Deep Purple","settings.display.green":"Green","settings.display.grey":"Grey","settings.display.indigo":"Indigo","settings.display.lang":"Language","settings.display.light":"Light","settings.display.lighting_mode":"Lighting Mode","settings.display.login_wallpaper":"Login Wallpaper","settings.display.login_wallpaper_desc":"A custom login wallpaper can be set by adding a <code>ui-wallpaper.jpg</code> file to your Homebridge storage directory, or by providing a full path to a local image file here.","settings.display.orange":"Orange","settings.display.pink":"Pink","settings.display.purple":"Purple","settings.display.red":"Red","settings.display.teal":"Teal","settings.display.temp_units":"Temperature Units","settings.display.temp_units.c":"Celsius (\xB0C)","settings.display.temp_units.f":"Fahrenheit (\xB0F)","settings.display.theme":"Theme","settings.general.title_display":"Display","settings.general.title_general":"General","settings.mdns_advertiser":"mDNS Advertiser","settings.mdns_advertiser_exp":"experimental","settings.mdns_advertiser_help":"\u5982\u679C\u4F60\u65E0\u6CD5\u94FE\u63A5\u5230 Homebridge, \u8BF7\u5C1D\u8BD5\u66F4\u6362 mDNS advertisers.","settings.mdns_advertiser_not_connected":"Not Connected","settings.mdns_advertiser_rec":"recommended","settings.network.label_interface_name":"\u7AEF\u53E3\u540D\u79F0","settings.network.label_ip_address":"IP \u5730\u5740","settings.network.message_network_interface":"\u5982\u679C\u6CA1\u6709\u7F51\u7EDC\u7AEF\u53E3\u88AB\u9009\u4E2D\uFF0C Homebridge \u5C06\u4F1A\u5C1D\u8BD5\u81EA\u52A8\u641C\u7D22\u7AEF\u53E3\u5E76\u5E7F\u64AD\u3002","settings.network.port_hb":"Homebridge Port","settings.network.port_hb_desc":"The port number to run the Homebridge bridge on. This must be between 1025 and 65533, and should not be the same as the Homebridge UI port.","settings.network.port_ui":"UI Port","settings.network.port_ui_desc":"The port number to run the Homebridge UI on.","settings.network.title_network":"\u7F51\u7EDC","settings.network.title_network_interfaces":"\u7F51\u7EDC\u7AEF\u53E3","settings.service.debug_tooltip":"Some plugins require you to set the DEBUG environment variable to enable debug level logging.","settings.service.node_tooltip":"Node.js runtime options for this process. This should be kept blank unless you know what you are doing.","settings.startup.debug":"Homebridge Debug Mode","settings.startup.debug_desc_v1":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge as well as all child bridges. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.debug_desc_v2":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge. The setting for child bridges can be found in the child bridge configuration from the plugins page. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.insecure":"Homebridge 'Insecure' Mode","settings.startup.insecure_desc":"To control your accessories via the Homebridge UI you must be running Homebridge in insecure mode.","settings.startup.keep_accessories":"Keep Accessories Of Uninstalled Plugins","settings.startup.keep_accessories_desc":"If enabled, accessories of platform plugins will remain in the cache even after the plugin is uninstalled. This can be useful if you plan to reinstall the plugin later.","settings.title_startup_options":"\u542F\u52A8\u9009\u9879","settings.unpair_bridge.load_error":"Paired bridges could not be loaded.","settings.unpair_bridge.unpair_error":"Failed to unpair bridge.","setup.button_get_started":"Get Started","setup.create_account":"Create Account","setup.create_account_reason":"Password authentication to your Homebridge admin web interface must be configured. Even if Homebridge is accessible only in your local network, it is still important to protect it from unrestricted access.","setup.open_dashboard":"Open Dashboard","setup.welcome_to_homebridge":"Welcome to Homebridge",setup_wizard_message_complete_message:"The setup procedure is complete and you're now ready to start using Homebridge.",setup_wizard_message_complete_title:"Congratulations!",setup_wizard_message_restore:"Restore From Backup","status.code_scan":"\u626B\u63CF\u6DFB\u52A0\u5230HomeKit","status.cpu.load":"\u8D1F\u8F7D","status.cpu.temp":"\u6E29\u5EA6","status.cpu.title_cpu":"CPU","status.credits.title":"Credits","status.homebridge.checking":"\u6B63\u5728\u67E5\u627E\u66F4\u65B0\u2026","status.homebridge.up_to_date":"\u5DF2\u662F\u6700\u65B0\u7248\u672C","status.memory.label_available":"\u7A7A\u95F2","status.memory.label_total":"\u603B\u5185\u5B58","status.memory.title_memory":"\u5185\u5B58","status.network.received_per_second":"Received","status.network.sent_per_second":"Sent","status.network.title_network":"Network Activity","status.plugin_out_of_date":"\u63D2\u4EF6\u9700\u8981\u66F4\u65B0","status.plugins_out_of_date":"\u63D2\u4EF6\u9700\u8981\u66F4\u65B0","status.services.label_not_running":"\u672A\u8FD0\u884C","status.services.label_running":"\u8FD0\u884C\u4E2D","status.services.updates":"Update Centre","status.uptime.title_uptime":"\u7CFB\u7EDF\u8FD0\u884C\u65F6\u95F4","status.widget.accessories.choose_accessories":"\u8BF7\u5728\u914D\u4EF6\u680F\u4E2D\u9009\u62E9\u9700\u8981\u663E\u793A\u5728\u5C0F\u63D2\u4EF6\u4E2D\u7684\u914D\u4EF6","status.widget.add.label_pairing_code":"\u8BBE\u7F6E\u4EE3\u7801","status.widget.bridge.restart_error":"Failed to restart child bridge.","status.widget.clock":"\u65F6\u949F","status.widget.clock_dateformat":"\u65E5\u671F\u683C\u5F0F","status.widget.clock_timeformat":"\u65F6\u95F4\u683C\u5F0F","status.widget.font_size":"\u5B57\u4F53\u5927\u5C0F","status.widget.font_weight":"\u5B57\u4F53\u5BBD\u5EA6","status.widget.hide_on_mobile":"\u5728\u7D27\u51D1\u6A21\u5F0F\u4E0B\u9690\u85CF (\u79FB\u52A8\u8BBE\u5907)","status.widget.homebridge_logs":"Homebridge \u65E5\u5FD7","status.widget.info":"\u7CFB\u7EDF\u4FE1\u606F","status.widget.info.config_path":"Config \u8DEF\u5F84","status.widget.info.disabled":"Disabled","status.widget.info.docker":"Docker","status.widget.info.glibc_message":"This message indicates that your operating system does not support newer versions of Node.js. To resolve this and be able to install updated versions of Node.js in the future, you will need to update your operating system to a more recent version.","status.widget.info.glibc_title":"OS Update","status.widget.info.hostname":"\u4E3B\u673A\u540D\u79F0","status.widget.info.ipv4":"IPv4","status.widget.info.ipv6":"IPv6","status.widget.info.no":"No","status.widget.info.node_unsupp":"Unsupported","status.widget.info.node_unsupp_message":"You are running a version of Node.js that is not officially supported by Homebridge. You should consider changing to a supported version.","status.widget.info.node_unsupp_title":"Unsupported Node Version","status.widget.info.node_update_message":"Homebridge requires Node.js installed on your system to run. From time to time, you will need to update the Node.js runtime to enable support for new features. Homebridge (and verified plugins) support all current Active and Maintenance LTS releases of Node.js.","status.widget.info.node_update_title":"Node Update","status.widget.info.nodejs_path":"Node.js Path","status.widget.info.nodejs_version":"Node.js \u7248\u672C","status.widget.info.os":"\u64CD\u4F5C\u7CFB\u7EDF","status.widget.info.plugin_path":"\u63D2\u4EF6\u8DEF\u5F84","status.widget.info.service_mode":"\u670D\u52A1\u6A21\u5F0F","status.widget.info.service_user":"\u7528\u6237","status.widget.info.servicemode_message":"Standalone mode is no longer recommended. Setting up Homebridge and Homebridge UI with hb-service has the same benefits of standalone mode but is much easier to setup and maintain.","status.widget.info.servicemode_title":"Service Mode","status.widget.info.storage_path":"\u5B58\u50A8\u8DEF\u5F84","status.widget.info.synology_package":"Synology Package","status.widget.info.timezone":"\u65F6\u533A","status.widget.info.yes":"Yes","status.widget.network.history_items":"History Items","status.widget.network.items":"items","status.widget.network.network_interface":"Network Interface","status.widget.network.none_selected":"None selected in settings - using default.","status.widget.network.refresh_interval":"Refresh Interval","status.widget.network.refresh_note":"Refresh the page after saving for changes to take effect.","status.widget.network.seconds":"seconds","status.widget.qr_paired":"\u914D\u5BF9\u7684","status.widget.qr_unpaired":"\u672A\u914D\u5BF9\u7684","status.widget.show_hide":"Show/Hide Widgets","status.widget.title_manage_widget":"\u7BA1\u7406\u5C0F\u63D2\u4EF6","status.widget.uptime.label_process":"\u8FDB\u7A0B","status.widget.uptime.label_server":"\u670D\u52A1","status.widget.weather.label_config_required_help":"\u8BF7\u5728\u5C0F\u63D2\u4EF6\u8BBE\u7F6E\u4E2D\u9009\u62E9\u57CE\u5E02","status.widget.weather.label_search_for_your_city":"\u641C\u7D22\u60A8\u7684\u57CE\u5E02:","status.widget.weather.title_weather":"\u5929\u6C14","support.dev.api":"Homebridge API","support.dev.api_hap":"HAP-NodeJS API","support.dev.api_hap_sub":"HAP-NodeJS is an implementation of the HomeKit Accessory Server as specified in the HomeKit Accessory Protocol (HAP), which is defined by Apple as part of the HomeKit Framework.","support.dev.api_sub":"Homebridge is a lightweight Node.js server you can run on your home network to emulate the HomeKit Accessory Protocol (HAP).","support.dev.item_swagger":"Swagger Docs","support.dev.item_swagger_sub":"The Homebridge REST API allows you to interact with your Homebridge server using HTTP requests.","support.dev.template":"Plugin Template Repo","support.dev.template_sub":"A template Homebridge plugin that can be used as a base to help you get started developing your own plugin.","support.dev.title":"Developers","support.dev.verified":"Verified By Homebridge","support.dev.verified_sub":"The Verified By Homebridge program allows plugin developers to get their plugins reviewed and endorsed by the Homebridge project team.","support.links.discord":"Discord Server","support.links.discord_sub":"Join the Homebridge Discord chat server to chat with other users and developers.","support.links.documentation":"Documentation","support.links.documentation_sub":"The Homebridge documentation provides a wealth of information on how to get started with Homebridge and common issue resolutions.","support.links.issue":"Report An Issue","support.links.issue_sub":"If you are experiencing an issue with Homebridge, please open a new issue on GitHub. This should not be used for issues with specific plugins.","support.links.reddit":"Reddit Community","support.links.reddit_sub":"The Homebridge subreddit is a great place to share your Homebridge setup and ask for help.","support.links.title":"Useful Links","support.title":"Support","toast.no_auth":"Only administrators may access the requested page.","toast.title_error":"\u9519\u8BEF","toast.title_success":"\u6210\u529F","toast.title_warning":"\u8B66\u544A","users.button_add_new_user":"\u6DFB\u52A0\u65B0\u7528\u6237","users.button_add_user":"\u6DFB\u52A0\u7528\u6237","users.label_admin_user":"\u7BA1\u7406\u5458","users.label_confirm_password":"\u786E\u8BA4\u5BC6\u7801","users.label_full_name":"\u5168\u540D","users.label_new_password":"\u65B0\u5BC6\u7801","users.label_password":"\u5BC6\u7801","users.label_username":"\u7528\u6237\u540D","users.setup_2fa":"\u8BBE\u7F6E\u4E24\u6B65\u9A8C\u8BC1","users.setup_2fa_activate_error":"An error occurred activating 2FA","users.setup_2fa_cannot_setup_2fa":"\u65E0\u6CD5\u8BBE\u7F6E\u4E24\u6B65\u9A8C\u8BC1","users.setup_2fa_disable":"\u7981\u7528\u4E24\u6B65\u9A8C\u8BC1","users.setup_2fa_disable_current_password":"\u8F93\u5165\u60A8\u73B0\u5728\u7684\u5BC6\u7801\u4EE5\u7981\u7528\u4E24\u6B65\u9A8C\u8BC1\uFF1A","users.setup_2fa_disable_success":"\u4E24\u6B65\u9A8C\u8BC1\u5DF2\u7981\u7528\u3002","users.setup_2fa_enable":"\u542F\u7528\u4E24\u6B65\u9A8C\u8BC1","users.setup_2fa_enable_error":"An error occurred setting up 2FA","users.setup_2fa_enabled_success":"\u4E24\u6B65\u9A8C\u8BC1\u5DF2\u542F\u7528\u3002","users.setup_2fa_enter_code":"\u8F93\u5165\u60A8\u9A8C\u8BC1\u8F6F\u4EF6\u4E0A\u7684\u4EE3\u7801\uFF1A","users.setup_2fa_scan_qr_code":"\u4F7F\u7528\u60A8\u7684\u9A8C\u8BC1\u8F6F\u4EF6\u626B\u63CF\u4E0B\u9762\u7684\u4E8C\u7EF4\u7801\uFF1A","users.setup_2fa_server_time_out":"\u60A8\u7684\u670D\u52A1\u5668\u7684\u65F6\u95F4\u504F\u5DEE\u4E86 {{ timeDiffError }} \u6BEB\u79D2\u3002 \u5141\u8BB8\u6700\u5927\u7684\u65F6\u95F4\u504F\u5DEE\u503C\u662F +/-5000 \u6BEB\u79D2\u3002","users.setup_2fa_warning":"\u4E24\u6B65\u9A8C\u8BC1\u9700\u8981\u60A8\u670D\u52A1\u5668\u7684\u65F6\u95F4\u4E0E\u65E5\u671F\u6781\u5176\u51C6\u786E\u3002\u5982\u679C\u60A8\u4E0D\u80FD\u4FDD\u8BC1\u670D\u52A1\u5668\u7684\u65F6\u95F4\u51C6\u786E\uFF0C\u90A3\u4E48\u4E0D\u5EFA\u8BAE\u542F\u7528\u4E24\u6B65\u9A8C\u8BC1\uFF0C\u5426\u5219\u60A8\u5219\u6709\u7740\u65E0\u6CD5\u8BBF\u95EE Homebridge UI \u7684\u98CE\u9669\u3002","users.title_add_user":"\u6DFB\u52A0\u7528\u6237","users.title_edit_user":"\u7F16\u8F91\u7528\u6237","users.title_users":"\u7528\u6237","users.toast_added_new_user":"\u65B0\u7528\u6237\u5DF2\u6DFB\u52A0","users.toast_failed_to_add_user":"\u6DFB\u52A0\u65B0\u7528\u6237\u5931\u8D25","users.toast_failed_to_delete_user":"\u5220\u9664\u7528\u6237\u5931\u8D25","users.toast_updated_user":"\u7528\u6237\u4FE1\u606F\u5DF2\u66F4\u65B0","users.toast_user_deleted":"\u7528\u6237\u5DF2\u5220\u9664"}});var Js=y((Qd,Ta)=>{Ta.exports={"accessories.button_add_room":"\u65B0\u589E\u623F\u9593","accessories.button_hidden_hide":"\u96B1\u85CF\u96B1\u85CF\u9805\u76EE","accessories.button_hidden_show":"\u986F\u793A\u96B1\u85CF\u9805\u76EE","accessories.control.auto":"\u81EA\u52D5","accessories.control.away":"\u96E2\u958B","accessories.control.battery_charging":"\u5145\u96FB\u4E2D","accessories.control.battery_notchargeable":"\u4E0D\u53EF\u5145\u96FB","accessories.control.battery_notcharging":"\u672A\u5145\u96FB","accessories.control.brightness":"\u4EAE\u5EA6","accessories.control.closed":"\u95DC\u9589","accessories.control.closing":"\u95DC\u9589\u4E2D","accessories.control.cool":"\u51B7\u6C23","accessories.control.default_room":"\u9810\u8A2D\u623F\u9593","accessories.control.default_running_time":"\u9810\u8A2D\u57F7\u884C\u6642\u9593","accessories.control.dehumidifying":"\u9664\u6FD5\u4E2D","accessories.control.detected":"Detected","accessories.control.drag_here":"\u62D6\u5230\u9019","accessories.control.fan":"\u9001\u98A8","accessories.control.heat":"\u6696\u6C23","accessories.control.home":"\u56DE\u5145","accessories.control.humidifying":"\u52A0\u6FD5\u4E2D","accessories.control.jammed":"\u5361\u4F4F","accessories.control.light":"\u71C8\u5149","accessories.control.locked":"\u5DF2\u4E0A\u9396","accessories.control.mute":"\u975C\u97F3","accessories.control.night":"\u591C\u665A","accessories.control.not_detected":"Not Detected","accessories.control.not_mute":"\u95DC\u9589\u975C\u97F3","accessories.control.off":"\u95DC\u9589","accessories.control.on":"\u958B\u555F","accessories.control.open":"\u958B\u555F","accessories.control.opening":"\u958B\u555F\u4E2D","accessories.control.rotation_speed":"\u8F49\u901F","accessories.control.running":"\u57F7\u884C\u4E2D","accessories.control.speaker_volume":"\u97F3\u91CF","accessories.control.stopped":"\u5DF2\u505C\u6B62","accessories.control.target":"\u76EE\u6A19","accessories.control.target_humidity":"\u76EE\u6A19\u6FD5\u5EA6","accessories.control.target_temperature":"\u76EE\u6A19\u6EAB\u5EA6","accessories.control.triggered":"\u5DF2\u89F8\u767C","accessories.control.unknown":"\u672A\u77E5","accessories.control.unlocked":"\u5DF2\u89E3\u9396","accessories.control_disabled":"Homebridge \u914D\u4EF6\u63A7\u5236\u5DF2\u95DC\u9589","accessories.hide_this_accessory":"\u8A2D\u70BA\u96B1\u85CF","accessories.message_for_more_information":"\u66F4\u591A\u8CC7\u8A0A\u3002","accessories.message_must_use_insecure_mode":"\u5982\u679C\u60F3\u8981\u63A7\u5236\u914D\u4EF6\u3001\u5FC5\u9808\u4EE5\u975E\u52A0\u5BC6\u6A21\u5F0F(-I)\u555F\u52D5 Homebridge\u3002","accessories.message_please_see":"\u8ACB\u53C3\u95B1","accessories.name":"\u540D\u7A31","accessories.room_name":"\u623F\u9593\u540D\u7A31","accessories.rooms_not_appear_in_homekit":"\u65B0\u589E\u7684\u623F\u9593\u4E26\u4E0D\u6703\u51FA\u73FE\u5728 HomeKit \u4E2D\uFF0C\u50C5\u5728 Homebridge UI \u4E2D\u4F7F\u7528","accessories.settings_link":"You can access the Homebridge Settings at any time from the cog icon in the side menu.","accessories.show_on_dashboard":"\u65BC Dashboard Widget \u986F\u793A","accessories.title_accessories":"\u914D\u4EF6","backup.backup_delete_failed":"Backup deletion failed. See logs for details.","backup.backup_download_failed":"\u4E0B\u8F09\u5099\u4EFD\u5931\u6557","backup.backup_exceeds_max_size":"Backup ({{ backupSize }}) exceeds maximum restore file size of {{ maxBackupSizeText }}","backup.backup_help_one":"\u4E0B\u8F09 Homebridge \u74B0\u5883\u5B8C\u6574\u5099\u4EFD\u6A94\u6848\u3002\u6B64\u52D5\u4F5C\u5C07\u6703\u5099\u4EFD\u5B8C\u6574\u7684 Homebridge \u5132\u5B58\u6587\u4EF6\u593E\u3001\u53EF\u65BC\u7A0D\u5F8C\u900F\u904E\u4EFB\u4F55\u57F7\u884C Homebridge UI \u7684\u5E73\u53F0\u9032\u884C\u56DE\u5FA9\u3002","backup.backup_help_two":"Plugins \u4E26\u672A\u7F6E\u653E\u65BC NPM\u3001\u6216\u76F4\u63A5\u7531 Github \u6240\u5B89\u88DD\u7684 Plugins \u5C07\u7121\u6CD5\u9032\u884C\u5099\u4EFD\u6216\u56DE\u5FA9\u3002","backup.backup_restored":"\u5099\u4EFD\u6A94\u6848\u5DF2\u56DE\u5FA9","backup.backup_warning":"\u5099\u4EFD\u6A94\u6848\u5305\u542B\u654F\u611F\u8CC7\u8A0A\u3001\u8ACB\u4E0D\u8981\u96A8\u610F\u8207\u5176\u4ED6\u4EBA\u5171\u4EAB\u3002","backup.button_restore_backup":"\u56DE\u5FA9\u5099\u4EFD","backup.label_choose_backup_file_to_restore":"\u9078\u64C7\u5099\u4EFD\u6A94\u6848\u4EE5\u9032\u884C\u56DE\u5FA9\u2026","backup.label_uploading":"\u4E0A\u50B3\u4E2D\u2026","backup.load_error":"Failed to load config backup.","backup.now":"Now","backup.restore_failed":"\u56DE\u5FA9\u5931\u6557","backup.restore_help_one":"\u56DE\u5FA9\u5148\u524D\u900F\u904E Homebridge UI \u6240\u57F7\u884C\u7684\u5099\u4EFD\u6A94\u6848\u3002Homebridge config\u3001\u66AB\u5B58\u914D\u4EF6\u3001HomeKit \u914D\u5C0D\u8207 Homebridge UI \u4F7F\u7528\u8005\u5E33\u865F\u90FD\u6703\u9032\u884C\u56DE\u5FA9\u3002Homebridge \u6240\u5B89\u88DD\u7684 Plugins \u5247\u6703\u900F\u904E NPM \u9032\u884C\u4E0B\u8F09\u3002","backup.restore_help_two":"\u65BC\u56DE\u5FA9\u5F8C\uFF0C\u4F7F\u7528\u5099\u4EFD\u4E2D\u7684\u6191\u8B49\u6642\uFF0C\u5C07\u6703\u9700\u8981\u767B\u5165 Homebridge UI\u3002","backup.restore_max_size":"You can restore a backup archive up to {{ maxBackupSizeText }} in size.","backup.restore_warning":"\u5F9E\u5099\u4EFD\u6062\u5FA9\u5C07\u6703\u5B8C\u5168\u8986\u84CB\u73FE\u6709\u7684 Homebridge \u8A2D\u5B9A\u3002","backup.scheduled_backup_time":"\u6BCF\u5929 {{ backupTime }} \u6703\u81EA\u52D5\u5EFA\u7ACB Homebridge \u7684\u5B8C\u6574\u5099\u4EFD\uFF0C\u4E26\u4FDD\u7559 {{ dayCount }} \u5929\u3002","backup.title_backup":"\u5099\u4EFD","child_bridge.about":"Homebridge \u5141\u8A31\u4EE5\u7368\u7ACB\u7684\u5B50 Bridge \u6A21\u5F0F\u57F7\u884C Plugin \u5E73\u53F0\u6216\u914D\u4EF6\uFF0C\u5C07\u6709\u52A9\u65BC\u6539\u5584 Homebridge \u7684\u56DE\u61C9\u901F\u5EA6\u8207\u7A69\u5B9A\u5EA6\u3002","child_bridge.bridge_connect":"\u9023\u63A5 HomeKit","child_bridge.bridge_settings":"Bridge \u8A2D\u5B9A","child_bridge.bridges":"HomeKit Bridges","child_bridge.bridges_paired":"\u6BCF\u4E00\u500B\u5B50 Bridge \u5E73\u53F0\u6216\u914D\u4EF6\u5C07\u9700\u8981\u5206\u5225\u8207 HomeKit \u9032\u884C\u914D\u5C0D\u3002","child_bridge.config.debug":"Debug Mode","child_bridge.config.description":"These fields are not required, but can be used to override the HomeKit configuration for this bridge.","child_bridge.config.firmware":"Firmware Version","child_bridge.config.header":"Configuration","child_bridge.config.manufacturer":"Manufacturer","child_bridge.config.model":"Model","child_bridge.config.name":"Name","child_bridge.must_configure_plugin":"\u65BC\u7BA1\u7406\u8A72 Bridge \u8A2D\u5B9A\u4E4B\u524D\uFF0C\u9700\u8981\u5148\u8A2D\u5B9A\u6B64 Plugin\u3002","child_bridge.reset_accessories":"Reset Accessories","child_bridge.reset_accessories_list":"Choose from which child bridges you want to reset the accessories below:","child_bridge.restart":"\u91CD\u555F \u5B50Bridges","child_bridge.restart_homebridge":"\u91CD\u65B0\u555F\u52D5 Homebridge \u4EE5\u5B8C\u6210\u6B64 \u5B50Bridge \u8A2D\u5B9A\u3002","child_bridge.restart_plural":"\u91CD\u555F\u5B50 Bridges","child_bridge.return_to_pair":"\u65BC Homebridge \u91CD\u555F\u5F8C\u3001\u56DE\u5230\u6B64\u756B\u9762\u4EE5\u6AA2\u8996\u914D\u5C0D\u4E4B QR \u78BC\u3002","child_bridge.select_type":"\u9078\u64C7\u8981\u4EE5 \u5B50Bridge \u57F7\u884C\u7684\u7684\u5E73\u53F0\u6216\u914D\u4EF6","child_bridge.setup":"\u8A2D\u5B9A \u5B50Bridge","child_bridge.start":"\u555F\u52D5 \u5B50bridge","child_bridge.start_plural":"\u555F\u52D5 \u5B50Bridges","child_bridge.stop":"\u505C\u6B62 \u5B50Bridge","child_bridge.stop_plural":"\u505C\u6B62 \u5B50Bridges","child_bridge.wiki_link":"\u4E86\u89E3\u66F4\u591A\u95DC\u65BC \u5B50Bridges","config.config_accessory_must_be_array":"\u914D\u4EF6\u5FC5\u9808\u662F\u6578\u7D44 []","config.config_bridge_missing":"\u907A\u5931\u6A4B\u63A5\u5668","config.config_invalid_json":"\u8A2D\u5B9A\u4E2D\u5305\u542B\u7121\u6548\u7684 JSON","config.config_platform_must_be_array":"\u5E73\u53F0\u5FC5\u9808\u662F\u6578\u7D44 []","config.config_username_error":"\u6A4B\u63A5\u5668\u7684\u4F7F\u7528\u8005\u540D\u7A31\u5FC5\u9808\u8981\u662F\u7531 6 \u500B\u4EE5\u5192\u865F\u5206\u9694\u958B\u3001\u4E14\u70BA\u5341\u516D\u9032\u4F4D\u5236\uFF08A-F 0-9\uFF09\u7684\u6578\u503C\u6240\u7D44\u6210","config.error_blocks_objects":"All {{ type }} blocks must be objects.","config.error_blocks_type":"All {{ type }} blocks must contain the {{ type }} attribute.","config.error_string_array":"Each item in the {{ key }} array must be a string.","config.error_string_type":"The {{ type }} attribute must be a string.","config.failed_to_save_config":"Config \u5B58\u6A94\u5931\u6557","config.restore.confirm":"\u9EDE\u64CA\u300C\u5132\u5B58\u300D\u4EE5\u78BA\u8A8D\u56DE\u5FA9\u6B64\u5099\u4EFD\u3002","config.restore.copy_to_editor":"\u8907\u88FD\u5230\u7DE8\u8F2F\u5668","config.restore.no_backups":"\u6C92\u6709\u5099\u4EFD","config.restore.title_restore_homebridge_backup":"\u5F9E\u5099\u4EFD\u56DE\u5FA9 Homebridge \u8A2D\u5B9A","config.restore.toast_backups_deleted":"\u5DF2\u522A\u9664\u6240\u6709\u5099\u4EFD","config.title_backup_loaded":"\u5DF2\u8B80\u53D6\u5099\u4EFD","form.button_cancel":"\u53D6\u6D88","form.button_close":"\u95DC\u9589","form.button_delete":"\u522A\u9664","form.button_disable":"\u505C\u7528","form.button_download":"\u4E0B\u8F09","form.button_edit":"\u7DE8\u8F2F","form.button_enable":"\u555F\u7528","form.button_hide":"\u96B1\u85CF","form.button_lock":"\u4E0A\u9396","form.button_more_info":"\u66F4\u591A\u8CC7\u8A0A","form.button_remove":"\u79FB\u9664","form.button_reset":"\u91CD\u8A2D","form.button_restore":"\u5F9E\u5099\u4EFD\u56DE\u5FA9","form.button_save":"\u5132\u5B58","form.button_show":"Show","form.button_unlock":"\u89E3\u9396","form.button_unpair":"Unpair","form.label_invalid":"Config validation failed - you can still save your changes.","form.label_invalid_strict":"Config validation failed - please review the form before saving.","form.label_valid":"Config validation passed.","form.select.auto":"Automatic (Use Browser Settings)","login.button_login":"\u767B\u9304","login.invalid_credentials":"\u7121\u6548\u7684\u4F7F\u7528\u8005\u540D\u7A31\u548C\u5BC6\u78BC","login.label_2fa_code":"\u96D9\u91CD\u9A57\u8B49\u78BC","login.label_password":"\u5BC6\u78BC","login.label_username":"\u4F7F\u7528\u8005\u540D\u7A31","login.message_invalid_2fa_code":"\u6240\u8F38\u5165\u7684\u9A57\u8B49\u78BC\u932F\u8AA4\u6216\u5DF2\u904E\u671F\u3002","logs.download.error":"Failed to download log file.","logs.download_warning":"Homebridge \u65E5\u8A8C\u6A94\u6848\u53EF\u80FD\u5305\u542B\u90E8\u5206\u500B\u4EBA\u8CC7\u6599\u3001\u5BC6\u78BC\u6216\u5B58\u53D6\u5BC6\u9470\u3002\u8ACB\u65BC\u8207\u4ED6\u4EBA\u5206\u4EAB\u524D\u518D\u6B21\u78BA\u8A8D\u4E26\u79FB\u9664\u4EFB\u4F55\u654F\u611F\u8CC7\u8A0A\u3002","logs.log_file_truncated":"\u65E5\u8A8C\u6A94\u6848\u5DF2\u622A\u53BB\u3002","logs.title_download_log_file":"\u4E0B\u8F09\u65E5\u8A8C\u6A94\u6848","logs.title_truncate_log_file":"\u622A\u53BB\u65E5\u8A8C\u6A94\u6848","logs.truncate.error":"Failed to truncate log file.","logs.truncate_log_warning":"\u6B64\u52D5\u4F5C\u5C07\u5B8C\u5168\u6C38\u4E45\u522A\u9664\u73FE\u6709\u7684 Homebridge \u65E5\u8A8C\u3002\u662F\u5426\u8981\u7E7C\u7E8C\uFF1F","menu.config_json_editor":"JSON Config","menu.docker.restart_container":"\u91CD\u65B0\u555F\u52D5\u5BB9\u5668","menu.docker.startup_script":"\u555F\u52D5\u8173\u672C","menu.docker.terminal":"\u7D42\u7AEF","menu.hbrestart.confirm_hb":"Restart Homebridge","menu.hbrestart.confirm_ui":"Restart HB Service & UI","menu.hbrestart.title":"Restart Homebridge","menu.label_accessories":"\u914D\u4EF6","menu.label_plugins":"Plugins","menu.label_settings":"Settings","menu.label_settings_advanced":"UI Advanced Settings","menu.label_status":"\u72C0\u614B","menu.linux.label_logs":"Logs","menu.linux.label_restart_server":"\u91CD\u65B0\u555F\u52D5 Homebridge","menu.linux.label_shutdown_server":"\u95DC\u9589 Homebridge","menu.linux.label_terminal":"\u7D42\u7AEF\u6A5F","menu.restart.title":"Power Options","menu.settings.title":"Settings","menu.tooltip_logout":"\u767B\u51FA","menu.tooltip_restart":"\u91CD\u65B0\u555F\u52D5","menu.tooltip_user_accounts":"\u4F7F\u7528\u8005\u5E33\u865F","menu.tooltip_view_logs":"\u67E5\u770B\u65E5\u8A8C","platform.docker.container_restarted":"Docker \u5BB9\u5668\u5DF2\u91CD\u65B0\u555F\u52D5","platform.docker.must_use_hashbang":"\u8173\u672C\u5FC5\u9808\u4F7F\u7528 #!/bin/sh hashbang\u3002","platform.docker.restart_required":"\u9700\u8981\u91CD\u65B0\u555F\u52D5 docker \u5BB9\u5668\u3001\u624D\u80FD\u4F7F\u8B8A\u66F4\u751F\u6548\u3002","platform.docker.run_with_restart":"\u8ACB\u78BA\u5B9A\u60A8\u4EE5<code>--restart=always</code>\u53C3\u6578\u555F\u52D5\u57F7\u884C Docker","platform.docker.script_help":"\u6BCF\u6B21 Docker \u5BB9\u5668\u555F\u52D5\u6642\u90FD\u6703\u57F7\u884C\u6B64\u8173\u672C\uFF0C\u53EF\u4F7F\u7528\u4EE5\u5B89\u88DD\u4EFB\u4F55\u53EF\u80FD\u6240\u9700\u7684 Plugins\u3001\u4F8B\u5982 ffmpeg \u6216 libpcap-dev\u3002","platform.docker.script_saved":"\u555F\u52D5\u8173\u672C\u5DF2\u5132\u5B58","platform.docker.server_long_time":"\u4F3A\u670D\u5668\u91CD\u555F\u903E\u6642\u3001\u53EF\u80FD\u9700\u8981\u624B\u52D5\u555F\u52D5 Docker \u5BB9\u5668.","platform.docker.title_restarting":"\u6B63\u5728\u91CD\u65B0\u555F\u52D5 Docker \u5BB9\u5668","platform.linux.long_time":"\u4F3A\u670D\u5668\u91CD\u555F\u903E\u6642\u3001\u53EF\u80FD\u9700\u8981\u624B\u52D5\u91CD\u555F\u4F3A\u670D\u5668\u3002","platform.linux.restart":"\u8ACB\u7A0D\u5019\u3001\u9801\u9762\u5C07\u5728\u91CD\u65B0\u555F\u52D5\u5B8C\u6210\u5F8C\u81EA\u52D5\u91CD\u6574\u3002","platform.linux.restarting_server":"\u91CD\u65B0\u555F\u52D5\u4F3A\u670D\u5668","platform.linux.server_restart_error":"\u767C\u9001\u91CD\u555F\u547D\u4EE4\u81F3\u4F3A\u670D\u5668\u6642\u767C\u751F\u932F\u8AA4","platform.linux.server_restarted":"\u4F3A\u670D\u5668\u5DF2\u91CD\u65B0\u555F\u52D5","platform.linux.server_taking_long_time":"\u4F3A\u670D\u5668\u91CD\u65B0\u6062\u5FA9\u9023\u7DDA\u5DF2\u8D85\u6642","platform.linux.server_will_power_down":"\u4F3A\u670D\u5668\u5373\u5C07\u95DC\u6A5F\u3002","platform.linux.shutting_down_server":"\u6B63\u5728\u95DC\u9589\u4F3A\u670D\u5668","platform.version.restart_required":"Homebridge UI v{{ uiVersion }} \u5DF2\u7D93\u5B89\u88DD, \u4F46\u662F\u4F3A\u670D\u5668\u4ECD\u7136\u5728\u57F7\u884C v{{ serverVersion }}.","platform.version.service_restart_required":"\u9700\u8981\u91CD\u65B0\u555F\u52D5\u670D\u52D9","plugins.bridge.action_error":"Failed to {{ action }} child bridge(s).","plugins.button_homepage":"Plugin Homepage","plugins.button_set_up":"Set Up","plugins.button_settings":"\u8A2D\u5B9A","plugins.button_uninstall":"\u79FB\u9664","plugins.button_update":"\u66F4\u65B0","plugins.compat.are_you_sure":"Are you sure you want to continue anyway?","plugins.compat.hb_node_too_low":"{{ packageName }} v{{ latestVersion }} \u9700\u8981 Node.js v{{ minVersion }} \u6216\u66F4\u65B0\u7248\u672C\u3002\u76EE\u524D\u6240\u4F7F\u7528\u7684 Node.js \u7248\u672C\u70BA v{{ installedVersion }}\u3002","plugins.compat.hb_too_low":"{{ pluginName }} Plugin \u5EFA\u8B70\u4EE5 Homebridge v{{ minVersion }} \u6216\u66F4\u65B0\u7248\u672C\u57F7\u884C\u3002\u76EE\u524D\u6240\u4F7F\u7528\u7684 Homebridge \u7248\u672C\u70BA v{{ installedVersion }}\u3002","plugins.compat.node_first":"\u65BC\u66F4\u65B0 {{ packageName }} \u524D\u3001\u8ACB\u5148\u66F4\u65B0 Node.js\u3002","plugins.compat.node_link":"How To Update Node.js","plugins.compat.node_too_low":"{{ pluginName }} Plugin \u5EFA\u8B70\u4EE5 Node.js v{{ minVersion }} \u6216\u66F4\u65B0\u7248\u672C\u57F7\u884C\u3002\u76EE\u524D\u6240\u4F7F\u7528\u7684 Node.js \u7248\u672C\u70BA v{{ installedVersion }}\u3002","plugins.compat.title":"Compatibility Check","plugins.config.load_error":"Failed to load plugin config.","plugins.config.must_be_array":"Plugin config must be an array.","plugins.config.must_be_array_objects":"Plugin config must be an array of objects.","plugins.config.must_be_object":"Config block must be an object.","plugins.config.name_property":'Accessory must have a valid "name" attribute',"plugins.config.please_fix":"Please fix validation errors before adding a new block.","plugins.config.remove_error":"Failed to remove plugin config.","plugins.disable.error":"Failed to disable plugin.","plugins.donate.button_not_verified":"Not Verified","plugins.donate.button_verified":"\u5DF2\u9A8C\u8BC1","plugins.donate.message_1":"As more users install their plugins through the Homebridge UI, they are less likely to visit the projects' GitHub page where the ways to support a developer would typically be displayed.","plugins.donate.message_2":"Adding donation links directly in the Homebridge UI ensures users know how to support Homebridge developers if they wish to do so.","plugins.donate.tile_donate_to":"\u8D0A\u52A9 {{ author }}","plugins.enable.error":"Failed to enable plugin.","plugins.manage.all_versions":"All versions","plugins.manage.child_bridge_restart":"Child bridge restarted successfully.","plugins.manage.child_bridge_restart_failed":"Plugin restart failed, please restart Homebridge manually.","plugins.manage.confirm_disable":"Are you sure you want to disable {{ pluginName }}?","plugins.manage.confirm_disable_accessory_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen and removed from HomeKit.","plugins.manage.confirm_disable_accessory_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and HomeKit. The accessories will lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_disable_platform_1":"Any accessories exposed by this plugin will be removed from the Homebridge UI accessory screen but remain in HomeKit with a 'No Response' label.","plugins.manage.confirm_disable_platform_2":"When you re-enable the plugin, the accessories will reappear in the Homebridge UI and become controllable again in HomeKit. The accessories will not lose their HomeKit data (like related scenes and automations).","plugins.manage.confirm_enable":"\u78BA\u5B9A\u8981\u555F\u7528 {{ pluginName }} \u55CE\uFF1F","plugins.manage.disable":"\u95DC\u9589","plugins.manage.enable":"\u958B\u555F","plugins.manage.information":"Plugin Information","plugins.manage.install":"\u5B89\u88DD","plugins.manage.installed":"\u5DF2\u5B89\u88DD","plugins.manage.json_config":"JSON \u8A2D\u5B9A","plugins.manage.manage_version":"\u5B89\u88DD\u4EE5\u524D\u7684\u7248\u672C","plugins.manage.manual_update_command":"To upgrade the package run open a Node.js command prompt as an Administrator and run the following commands:","plugins.manage.manual_update_required":"\u9700\u8981\u624B\u52D5\u66F4\u65B0","plugins.manage.online_updates":"Windows \u7248\u4E0D\u652F\u63F4\u7DDA\u4E0A\u66F4\u65B0\u3002\u65BC\u505C\u6B62 Homebridge \u670D\u52D9\u5F8C\uFF0C\u5FC5\u9808\u624B\u52D5\u66F4\u65B0 Homebridge UI\u3002","plugins.manage.plugin_logs":"Plugin Logs","plugins.manage.release_notes":"Release Notes","plugins.manage.scoped.error":"An error occurred. You can download the logs below.","plugins.manage.scoped.info":"For more information about scoped plugins and why to switch, see the wiki page {{ link }}.","plugins.manage.scoped.process":"This process will not affect your Homebridge/HomeKit accessories. You will not be able to cancel the process once it has started. It will:","plugins.manage.scoped.switch":"Switch To Scoped Plugin","plugins.manage.scoped.windows":"Online updates are not supported on Windows. You will need to install the new plugin and uninstall the old plugin manually.","plugins.manage.scoped.windows_service":'You should <span class="font-weight-bold">not</span> restart Homebridge until both steps are complete.',"plugins.manage.select_version":"\u9078\u64C7\u8981\u5B89\u88DD\u7684\u7248\u672C","plugins.manage.thanks_for_updating":"\u611F\u8B1D\u60A8\u5B89\u88DD\u6700\u65B0\u7248\u672C {{ pluginName }}\u3002","plugins.manage.uninstall":"\u79FB\u9664","plugins.manage.uninstalled":"\u5DF2\u79FB\u9664","plugins.manage.unverified_message":"Unverified Homebridge plugins indicate that they haven't undergone the review process by the Homebridge project team. Lack of verification does not necessarily imply inefficacy or safety concerns. Authors might have opted not to seek verification for various reasons.","plugins.manage.unverified_subtitle":"{{ pluginName }} is not verified","plugins.manage.unverified_title":"Unverified Plugins","plugins.manage.update":"\u66F4\u65B0","plugins.manage.updated":"\u66F4\u65B0\u5B8C\u6210","plugins.manage.verified_message":"Homebridge plugins that are marked as verified have been reviewed by the Homebridge project team to ensure they meet various requirements that encourage best practices and a trouble-free user experience.","plugins.manage.verified_subtitle":"{{ pluginName }} is verified","plugins.manage.verified_title":"Verified Plugins","plugins.node_update.continue":"Continue","plugins.placeholder_search_first":"Use the search bar above to find your first plugin","plugins.placeholder_search_plugin":"\u641C\u5C0B Plugin \u4E26\u4E14\u5B89\u88DD\u2026","plugins.settings.custom.homebridge-gsh.label_account_linked":"\u5E33\u865F\u5DF2\u9023\u7D50","plugins.settings.custom.homebridge-gsh.label_link_account":"\u9023\u7D50\u5E33\u865F","plugins.settings.custom.homebridge-gsh.label_unlink_account":"\u89E3\u9664\u5E33\u865F\u9023\u7D50","plugins.settings.custom.homebridge-gsh.message_about":"Homebridge Google Smart Home Plugin \u53EF\u4F9B\u900F\u904E Google Home \u667A\u80FD\u97F3\u7BB1\u6216 Google Home app \u63A7\u5236 Homebridge \u914D\u4EF6\u3002","plugins.settings.custom.homebridge-gsh.message_account_link_required":"\u6B32\u555F\u7528\u6B64\u529F\u80FD\uFF0C\u5FC5\u9808\u5148\u767B\u5165 Google \u6216 Github \u5E33\u865F\uFF1B\u78BA\u5B9A\u65BC Google Home app \u4E2D\u65B0\u589E Homebridge \u6642\u4F7F\u7528\u4E86\u76F8\u540C\u7684\u5E33\u865F\u3002","plugins.settings.custom.homebridge-gsh.message_homebridge_restart_required":"Homebridge \u9700\u8981\u91CD\u65B0\u555F\u52D5\u4EE5\u671F\u8B8A\u66F4\u9032\u884C\u5957\u7528\u3002","plugins.settings.custom.homebridge-gsh.message_invalid_token":"Invalid account linking token in config.json","plugins.settings.deconz.dump_no_exist":"Homebridge deCONZ dump file does not exist yet.","plugins.settings.hue.dump_no_exist":"Homebridge Hue dump file does not exist yet.","plugins.settings.label_open_config_editor":"\u958B\u555F Config \u7DE8\u8F2F\u5668","plugins.settings.message_consult_documentation":"\u8ACB\u53C3\u95B1 Plugin \u6587\u4EF6\u4EE5\u4E86\u89E3\u5982\u4F55\u6B63\u78BA\u7684\u8A2D\u5B9A\u6B64 Plugin\u3002","plugins.settings.message_manual_config_required":"\u6B64 Plugin \u5FC5\u9808\u4F7F\u7528 Homebridge UI Config \u7DE8\u8F2F\u5668\u9032\u884C\u624B\u52D5\u7DE8\u8F2F\u3002","plugins.settings.plugin_config_saved":"Plugin Config \u5DF2\u5132\u5B58","plugins.settings.restart_required":"\u91CD\u65B0\u555F\u52D5 Homebridge \u65B9\u80FD\u4F7F Config \u7684\u8B8A\u66F4\u751F\u6548\u3002","plugins.settings.title_settings":"\u8A2D\u5B9A","plugins.status_disabled":"\u5DF2\u95DC\u9589","plugins.status_installed":"\u5DF2\u5B89\u88DD","plugins.toast_failed_to_load_plugin_schema":"Failed to load plugin config schema.","plugins.toast_failed_to_load_plugins":"Plugins \u8F09\u5165\u5931\u6557","plugins.uninstall_bridge_error":"Failed to remove child bridge.","plugins.uninstall_remove_config_required":"\u5047\u5982\u8981\u6C38\u4E45\u6027\u7684\u79FB\u9664\u6B64 Plugin\u3001\u8ACB\u78BA\u5B9A\u65BC\u91CD\u65B0\u555F\u52D5 Homebridge \u524D\u79FB\u9664 config.json \u4E2D\u7684\u76F8\u95DC\u8A2D\u5B9A\u3002","plugins.uninstall_remove_confirmation":"\u78BA\u5B9A\u8981\u79FB\u9664 {{ pluginName }}\uFF1F","plugins.uninstall_remove_plugin_config":"\u79FB\u9664 plugin config\uFF1F","plugins.uninstall_unpair_child_bridge":"Unpair plugin child bridge?","plugins.uninstall_unpair_child_bridges":"Unpair {{ count }} plugin child bridges?","reset.accessory_reset":"\u91CD\u7F6E Homebridge \u914D\u4EF6","reset.action_is_irreversible":"\u6B64\u884C\u70BA\u662F\u7121\u6CD5\u53D6\u6D88\u91CD\u4F86\u7684\uFF0C\u8ACB\u5728\u7E7C\u7E8C\u4E4B\u524D\u4ED4\u7D30\u95B1\u8B80\u3002","reset.bridges.desc":"If you are having trouble pairing Homebridge, an external accessory or a child bridge to HomeKit, you may need to unpair it from HomeKit to start again.","reset.bridges.empty":"You have no bridges to unpair from HomeKit.","reset.bridges.title":"Bridges","reset.bridges_all.desc":"Unpair all bridges from HomeKit. This includes the main Homebridge bridge, child bridges and bridges for external accessories.","reset.bridges_all.list_1":"This will unpair the Homebridge bridge, all child bridges and bridges for external accessories from HomeKit.","reset.bridges_all.list_2":"Note that your accessories will continue to show in HomeKit as no response, until the bridges are manually removed from HomeKit. You can do this in the Home app, by accessing Home Settings \u2192 Home Hubs & Bridges \u2192 {Bridge} \u2192 Remove Bridge from Home.","reset.bridges_all.list_3":"All your Homebridge to HomeKit accessories, scenes and automations will need to be reconfigured after the unpairing.","reset.bridges_all.list_4":"The pin for pairing your Homebridge bridge to HomeKit will be changed. You can see the new values in your Homebridge config after the unpairing.","reset.bridges_all.title":"Unpair All Bridges","reset.bridges_single.desc":"Unpair a single bridge from HomeKit. This may be a child bridge or a bridge for an external accessory like a camera or TV.","reset.bridges_single.list_1":"When unpairing a bridge, any accessories published by this bridge will be removed from the Homebridge cache.","reset.bridges_single.list_2":"The accessories will become stale in HomeKit (showing no response). To remove them, you will need to manually remove this bridge from HomeKit. You can do this in the Home app from the Home Settings section.","reset.bridges_single.list_3":"You can then attempt to pair the bridge again if required.","reset.bridges_single.title":"Unpair Single Bridge","reset.cached_accessory_removed":"\u66AB\u5B58\u914D\u4EF6\u5DF2\u79FB\u9664\u3002","reset.clear_cache_all.desc":"Remove all accessories from the cache.","reset.clear_cache_all.list_1":"When clicking on the remove button below, Homebridge will restart and all your existing accessories will be removed from Homebridge and HomeKit.","reset.clear_cache_all.list_2":"All associated HomeKit data will also be removed, this includes room associations, scenes and automations that this accessory uses.","reset.clear_cache_all.list_3":"After Homebridge restarts, your plugins will re-add any accessories as if the plugin was being installed for the first time.","reset.clear_cache_all.title":"Remove All Accessories","reset.clear_cache_bridge.desc":"Remove all accessories published by a bridge from the cache.","reset.clear_cache_bridge.empty":"You have no bridges from which to remove accessories.","reset.clear_cache_bridge.list_1":"This function can be used to reset a plugin's existing accessories in HomeKit. They will be removed from Homebridge/HomeKit and then re-added by the plugin as new accessories.","reset.clear_cache_bridge.list_2":"The child bridge's pairing details and status will remain the same.","reset.clear_cache_bridge.title":"Remove Bridge Accessories","reset.clear_cache_single.desc":"Remove a single accessory from the cache.","reset.clear_cache_single.list_1":"Some plugins don't clean up after themselves properly! If an accessory that you no longer have in Homebridge is still being displayed in HomeKit, you can remove it from the cache.","reset.clear_cache_single.list_2":"This function can be used to reset an existing accessory in HomeKit. It will be removed from Homebridge/HomeKit and then re-added by the plugin as a new accessory.","reset.clear_cache_single.list_3":"When removing an accessory from the cache, all its associated HomeKit data will be removed. This includes any associated scenes and automations that use this accessory.","reset.clear_cache_single.list_4":"Accessories can only be removed when Homebridge is not running. Homebridge will automatically restart when clicking on each of the remove buttons below. If you need to remove multiple accessories, please be patient and allow Homebridge to restart between each removal.","reset.clear_cache_single.title":"Remove Single Accessory","reset.delete_failed":"\u522A\u9664\u914D\u4EF6\u5931\u6557\u3002","reset.delete_success":"\u91CD\u65B0\u555F\u52D5 Homebridge \u4E26\u6E05\u9664\u914D\u4EF6\u66AB\u5B58\u3002","reset.error_message":"Accessory cache could not be loaded. You may not have any cached accessories.","reset.failed_to_reset":"\u7121\u6CD5\u91CD\u7F6E Homebridge\u3001\u8ACB\u53C3\u95B1\u65E5\u8A8C\u3002","reset.force_restart_hb_help_text":"\u6B64\u52D5\u4F5C\u5C07\u6703\u5F37\u5236 hb-service \u670D\u52D9\u9032\u884C\u5B8C\u5168\u91CD\u555F\u3002","reset.remove_cached_accessories_single_empty":"You have no cached accessories to remove.","reset.removing_cached_accessory_please_wait":"\u6B63\u7531\u66AB\u5B58\u4E2D\u79FB\u9664\u914D\u4EF6\uFF0C\u8ACB\u7A0D\u5019\u2026","restart.child_bridge_list":"Please restart these child bridges for the changes to apply:","restart.child_bridges":"Please restart the plugin's child bridges for the changes to apply.","restart.homebridge":"Please restart Homebridge for the changes to apply.","restart.label_restart_command_executed":"\u6B63\u5728\u57F7\u884C\u91CD\u65B0\u555F\u52D5\u547D\u4EE4","restart.please_wait_while_server_restarts":"\u8ACB\u7A0D\u5019\uFF0C\u6B64\u9801\u9762\u5C07\u5728\u91CD\u65B0\u555F\u52D5\u5B8C\u6210\u5F8C\u81EA\u52D5\u91CD\u6574\u3002","restart.server_is_taking_long_time_to_restart":"\u4F3A\u670D\u5668\u91CD\u65B0\u555F\u52D5\u5DF2\u8D85\u6642\u3002\u60A8\u53EF\u80FD\u9700\u8981\u624B\u52D5\u555F\u52D5 Homebridge \u670D\u52D9\u3002","restart.service_ready":"Homebridge \u4F3A\u670D\u5668\u5DF2\u5C31\u7DD2","restart.title_restart":"Homebridge \u6B63\u5728\u91CD\u65B0\u555F\u52D5","restart.toast_server_restart_error":"\u767C\u9001\u91CD\u65B0\u555F\u52D5\u547D\u4EE4\u6642\u51FA\u932F","restart.toast_server_restart_timeout":"\u4F3A\u670D\u5668\u91CD\u65B0\u555F\u52D5\u5DF2\u8D85\u6642","restart.toast_server_restarted":"\u5DF2\u91CD\u65B0\u555F\u52D5","restart.ui_online":"Homebridge UI \u4E0A\u7DDA","rpi.throttled.currently_message":"This Raspberry Pi is reporting it is currently under-voltage; please check it is connected to an appropriate power supply. Under-voltage can result in system instability and SD card corruption.","rpi.throttled.previously_message":"This Raspberry Pi has reported an under-voltage event since it was last rebooted; please check it is connected to an appropriate power supply.","rpi.throttled.undervoltage_title":"Under Voltage","settings.cache.desc":"Homebridge maintains accessories in cache so they aren't removed and re-added to HomeKit each time Homebridge restarts. Sometimes this cache can become out of sync with the actual accessories in Homebridge.","settings.cache.title":"Accessories","settings.changes.saved":"Your changes have been saved and require a restart to take effect.","settings.datetime.incorrect":"The date and time on your Homebridge server seem to be incorrect. This may cause unexpected issues. Click here for more information.","settings.display.blue":"Blue","settings.display.bluegrey":"Blue Grey","settings.display.brown":"Brown","settings.display.cyan":"Cyan","settings.display.dark":"Dark","settings.display.deep_purple":"Deep Purple","settings.display.green":"Green","settings.display.grey":"Grey","settings.display.indigo":"Indigo","settings.display.lang":"Language","settings.display.light":"Light","settings.display.lighting_mode":"Lighting Mode","settings.display.login_wallpaper":"Login Wallpaper","settings.display.login_wallpaper_desc":"A custom login wallpaper can be set by adding a <code>ui-wallpaper.jpg</code> file to your Homebridge storage directory, or by providing a full path to a local image file here.","settings.display.orange":"Orange","settings.display.pink":"Pink","settings.display.purple":"Purple","settings.display.red":"Red","settings.display.teal":"Teal","settings.display.temp_units":"Temperature Units","settings.display.temp_units.c":"Celsius (\xB0C)","settings.display.temp_units.f":"Fahrenheit (\xB0F)","settings.display.theme":"Theme","settings.general.title_display":"Display","settings.general.title_general":"General","settings.mdns_advertiser":"mDNS Advertiser","settings.mdns_advertiser_exp":"experimental","settings.mdns_advertiser_help":"\u5047\u5982\u65BC\u9023\u7DDA Homebridge \u6642\u9047\u5230\u554F\u984C\uFF0C\u8ACB\u8A66\u8457\u4F7F\u7528\u66FF\u4EE3\u7684 mDNS Advertiser\u3002","settings.mdns_advertiser_not_connected":"Not Connected","settings.mdns_advertiser_rec":"recommended","settings.network.label_interface_name":"\u4ECB\u9762\u540D\u7A31","settings.network.label_ip_address":"IP \u4F4D\u5740","settings.network.message_network_interface":"\u5982\u679C\u6C92\u6709\u9078\u64C7\u7DB2\u8DEF\u4ECB\u9762\uFF0CHomebridge \u5C07\u6703\u81EA\u52D5\u5075\u6E2C\u6240\u8981\u4F7F\u7528\u7684\u7DB2\u8DEF\u4ECB\u9762\u3002","settings.network.port_hb":"Homebridge Port","settings.network.port_hb_desc":"The port number to run the Homebridge bridge on. This must be between 1025 and 65533, and should not be the same as the Homebridge UI port.","settings.network.port_ui":"UI Port","settings.network.port_ui_desc":"The port number to run the Homebridge UI on.","settings.network.title_network":"\u7DB2\u8DEF","settings.network.title_network_interfaces":"\u7DB2\u8DEF\u4ECB\u9762","settings.service.debug_tooltip":"Some plugins require you to set the DEBUG environment variable to enable debug level logging.","settings.service.node_tooltip":"Node.js runtime options for this process. This should be kept blank unless you know what you are doing.","settings.startup.debug":"Homebridge Debug Mode","settings.startup.debug_desc_v1":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge as well as all child bridges. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.debug_desc_v2":"Enable this if you need Homebridge to output more detailed logs. This setting applies to the main Homebridge bridge. The setting for child bridges can be found in the child bridge configuration from the plugins page. Some plugins may also adhere to this setting and output more detailed logs.","settings.startup.insecure":"Homebridge 'Insecure' Mode","settings.startup.insecure_desc":"To control your accessories via the Homebridge UI you must be running Homebridge in insecure mode.","settings.startup.keep_accessories":"Keep Accessories Of Uninstalled Plugins","settings.startup.keep_accessories_desc":"If enabled, accessories of platform plugins will remain in the cache even after the plugin is uninstalled. This can be useful if you plan to reinstall the plugin later.","settings.title_startup_options":"\u555F\u52D5\u9078\u9805","settings.unpair_bridge.load_error":"Paired bridges could not be loaded.","settings.unpair_bridge.unpair_error":"Failed to unpair bridge.","setup.button_get_started":"Get Started","setup.create_account":"Create Account","setup.create_account_reason":"Password authentication to your Homebridge admin web interface must be configured. Even if Homebridge is accessible only in your local network, it is still important to protect it from unrestricted access.","setup.open_dashboard":"Open Dashboard","setup.welcome_to_homebridge":"Welcome to Homebridge",setup_wizard_message_complete_message:"The setup procedure is complete and you're now ready to start using Homebridge.",setup_wizard_message_complete_title:"Congratulations!",setup_wizard_message_restore:"Restore From Backup","status.code_scan":"\u6383\u63CF\u52A0\u5165\u5230HomeKit","status.cpu.load":"\u8CA0\u8F09","status.cpu.temp":"\u6EAB\u5EA6","status.cpu.title_cpu":"CPU","status.credits.title":"Credits","status.homebridge.checking":"\u6B63\u5728\u6AA2\u67E5\u53EF\u7528\u66F4\u65B0\u2026","status.homebridge.up_to_date":"\u5DF2\u7D93\u662F\u6700\u65B0\u7248\u672C","status.memory.label_available":"\u9592\u7F6E","status.memory.label_total":"\u8A18\u61B6\u9AD4\u7E3D\u8A08","status.memory.title_memory":"\u8A18\u61B6\u9AD4","status.network.received_per_second":"Received","status.network.sent_per_second":"Sent","status.network.title_network":"Network Activity","status.plugin_out_of_date":"Plugins \u904E\u820A","status.plugins_out_of_date":"Plugins \u904E\u820A","status.services.label_not_running":"\u672A\u555F\u52D5","status.services.label_running":"\u57F7\u884C\u4E2D","status.services.updates":"Update Centre","status.uptime.title_uptime":"\u7CFB\u7D71\u57F7\u884C\u6642\u9593","status.widget.accessories.choose_accessories":"\u65BC\u914D\u4EF6\u6B04\u4F4D\u4E2D\u9078\u64C7\u6240\u8981\u65BC Widget \u986F\u793A\u7684\u914D\u4EF6\u3002","status.widget.add.label_pairing_code":"\u914D\u5C0D\u78BC","status.widget.bridge.restart_error":"Failed to restart child bridge.","status.widget.clock":"\u6642\u9418","status.widget.clock_dateformat":"\u65E5\u671F\u683C\u5F0F","status.widget.clock_timeformat":"\u6642\u9593\u683C\u5F0F","status.widget.font_size":"\u5B57\u578B\u5927\u5C0F","status.widget.font_weight":"\u5B57\u578B\u5BEC\u5EA6","status.widget.hide_on_mobile":"\u65BC\u7CBE\u7C21\u6A21\u5F0F\u4E2D\u96B1\u85CF\uFF08\u884C\u52D5\u986F\u793A\uFF09","status.widget.homebridge_logs":"Homebridge \u65E5\u8A8C\u6A94","status.widget.info":"\u7CFB\u7D71\u8CC7\u8A0A","status.widget.info.config_path":"Config \u8DEF\u5F91","status.widget.info.disabled":"Disabled","status.widget.info.docker":"Docker","status.widget.info.glibc_message":"This message indicates that your operating system does not support newer versions of Node.js. To resolve this and be able to install updated versions of Node.js in the future, you will need to update your operating system to a more recent version.","status.widget.info.glibc_title":"OS Update","status.widget.info.hostname":"Hostname","status.widget.info.ipv4":"IPv4","status.widget.info.ipv6":"IPv6","status.widget.info.no":"No","status.widget.info.node_unsupp":"Unsupported","status.widget.info.node_unsupp_message":"You are running a version of Node.js that is not officially supported by Homebridge. You should consider changing to a supported version.","status.widget.info.node_unsupp_title":"Unsupported Node Version","status.widget.info.node_update_message":"Homebridge requires Node.js installed on your system to run. From time to time, you will need to update the Node.js runtime to enable support for new features. Homebridge (and verified plugins) support all current Active and Maintenance LTS releases of Node.js.","status.widget.info.node_update_title":"Node Update","status.widget.info.nodejs_path":"Node.js Path","status.widget.info.nodejs_version":"Node.js \u7248\u672C","status.widget.info.os":"OS","status.widget.info.plugin_path":"Plugin \u8DEF\u5F91","status.widget.info.service_mode":"\u670D\u52D9\u6A21\u5F0F","status.widget.info.service_user":"\u4F7F\u7528\u8005","status.widget.info.servicemode_message":"Standalone mode is no longer recommended. Setting up Homebridge and Homebridge UI with hb-service has the same benefits of standalone mode but is much easier to setup and maintain.","status.widget.info.servicemode_title":"Service Mode","status.widget.info.storage_path":"\u5132\u5B58\u8DEF\u5F91","status.widget.info.synology_package":"Synology Package","status.widget.info.timezone":"\u6642\u5340","status.widget.info.yes":"Yes","status.widget.network.history_items":"History Items","status.widget.network.items":"items","status.widget.network.network_interface":"Network Interface","status.widget.network.none_selected":"None selected in settings - using default.","status.widget.network.refresh_interval":"Refresh Interval","status.widget.network.refresh_note":"Refresh the page after saving for changes to take effect.","status.widget.network.seconds":"seconds","status.widget.qr_paired":"\u5DF2\u914D\u5C0D","status.widget.qr_unpaired":"\u672A\u914D\u5C0D","status.widget.show_hide":"Show/Hide Widgets","status.widget.title_manage_widget":"\u7BA1\u7406 Widget","status.widget.uptime.label_process":"\u7A0B\u5E8F","status.widget.uptime.label_server":"\u4F3A\u670D\u5668","status.widget.weather.label_config_required_help":"\u8ACB\u65BC Widget \u8A2D\u5B9A\u4E2D\u9078\u64C7\u57CE\u5E02\u3002","status.widget.weather.label_search_for_your_city":"\u641C\u5C0B\u57CE\u5E02\uFF1A","status.widget.weather.title_weather":"\u5929\u6C23","support.dev.api":"Homebridge API","support.dev.api_hap":"HAP-NodeJS API","support.dev.api_hap_sub":"HAP-NodeJS is an implementation of the HomeKit Accessory Server as specified in the HomeKit Accessory Protocol (HAP), which is defined by Apple as part of the HomeKit Framework.","support.dev.api_sub":"Homebridge is a lightweight Node.js server you can run on your home network to emulate the HomeKit Accessory Protocol (HAP).","support.dev.item_swagger":"Swagger Docs","support.dev.item_swagger_sub":"The Homebridge REST API allows you to interact with your Homebridge server using HTTP requests.","support.dev.template":"Plugin Template Repo","support.dev.template_sub":"A template Homebridge plugin that can be used as a base to help you get started developing your own plugin.","support.dev.title":"Developers","support.dev.verified":"Verified By Homebridge","support.dev.verified_sub":"The Verified By Homebridge program allows plugin developers to get their plugins reviewed and endorsed by the Homebridge project team.","support.links.discord":"Discord Server","support.links.discord_sub":"Join the Homebridge Discord chat server to chat with other users and developers.","support.links.documentation":"Documentation","support.links.documentation_sub":"The Homebridge documentation provides a wealth of information on how to get started with Homebridge and common issue resolutions.","support.links.issue":"Report An Issue","support.links.issue_sub":"If you are experiencing an issue with Homebridge, please open a new issue on GitHub. This should not be used for issues with specific plugins.","support.links.reddit":"Reddit Community","support.links.reddit_sub":"The Homebridge subreddit is a great place to share your Homebridge setup and ask for help.","support.links.title":"Useful Links","support.title":"Support","toast.no_auth":"Only administrators may access the requested page.","toast.title_error":"\u932F\u8AA4","toast.title_success":"\u6210\u529F","toast.title_warning":"\u8B66\u544A","users.button_add_new_user":"\u65B0\u589E\u4F7F\u7528\u8005","users.button_add_user":"\u65B0\u589E\u4F7F\u7528\u8005","users.label_admin_user":"\u7BA1\u7406\u54E1","users.label_confirm_password":"\u78BA\u8A8D\u5BC6\u78BC","users.label_full_name":"\u5168\u540D","users.label_new_password":"\u65B0\u5BC6\u78BC","users.label_password":"\u5BC6\u78BC","users.label_username":"\u4F7F\u7528\u8005\u540D\u7A31","users.setup_2fa":"Setup 2FA","users.setup_2fa_activate_error":"An error occurred activating 2FA","users.setup_2fa_cannot_setup_2fa":"\u7121\u6CD5\u8A2D\u5B9A\u96D9\u91CD\u9A57\u8B49","users.setup_2fa_disable":"\u95DC\u9589\u96D9\u91CD\u9A57\u8B49","users.setup_2fa_disable_current_password":"\u8F38\u5165\u5BC6\u78BC\u4EE5\u95DC\u9589\u96D9\u91CD\u9A57\u8B49\uFF1A","users.setup_2fa_disable_success":"\u96D9\u91CD\u9A57\u8B49\u5DF2\u95DC\u9589\u3002","users.setup_2fa_enable":"\u958B\u555F\u96D9\u91CD\u9A57\u8B49","users.setup_2fa_enable_error":"An error occurred setting up 2FA","users.setup_2fa_enabled_success":"\u96D9\u91CD\u9A57\u8B49\u5DF2\u958B\u555F\u3002","users.setup_2fa_enter_code":"\u8F38\u5165\u9A57\u8B49 App \u6240\u986F\u793A\u4E4B\u9A57\u8B49\u78BC\uFF1A","users.setup_2fa_scan_qr_code":"\u4EE5\u9A57\u8B49 App \u6383\u63CF\u4E0B\u65B9 QR \u78BC\uFF1A","users.setup_2fa_server_time_out":"\u4F3A\u670D\u5668\u6642\u9593\u8AA4\u5DEE {{ timeDiffError }} ms\u3002\u6700\u5927\u5141\u8A31\u503C\u70BA +/-5000 ms\u3002","users.setup_2fa_warning":"\u96D9\u91CD\u9A57\u8B49\u9700\u8981 Homebridge \u4F3A\u670D\u5668\u4EE5\u76F8\u7576\u7CBE\u6E96\u7684\u6642\u9593\u53CA\u6642\u9593\u57F7\u884C\u3001\u4EE5\u9032\u884C\u767B\u5165\u52D5\u4F5C\u3002\u5047\u5982\u60A8\u7684\u4F3A\u670D\u5668\u7121\u6CD5\u4FDD\u6301\u6642\u9593\u7CBE\u6E96\u3001\u5EFA\u8B70\u4E0D\u8981\u958B\u555F\u96D9\u91CD\u9A57\u8B49\uFF0C\u4EE5\u907F\u514D Homebridge UI \u906D\u5230\u9396\u5B9A\u3002","users.title_add_user":"\u65B0\u589E\u4F7F\u7528\u8005","users.title_edit_user":"\u7DE8\u8F2F\u4F7F\u7528\u8005","users.title_users":"\u4F7F\u7528\u8005","users.toast_added_new_user":"\u5DF2\u65B0\u589E\u65B0\u4F7F\u7528\u8005","users.toast_failed_to_add_user":"\u65B0\u589E\u4F7F\u7528\u8005\u5931\u6557","users.toast_failed_to_delete_user":"\u522A\u9664\u4F7F\u7528\u8005\u5931\u6557","users.toast_updated_user":"\u4F7F\u7528\u8005\u8CC7\u6599\u5DF2\u66F4\u65B0","users.toast_user_deleted":"\u4F7F\u7528\u8005\u5DF2\u522A\u9664"}});var Ee=(()=>{class s{$auth=E(pe);$router=E(_e);$settings=E(me);canActivate(e,i){return Te(this,null,function*(){return this.$settings.settingsLoaded||(yield De(this.$settings.onSettingsLoaded)),this.$auth.isLoggedIn()?!0:this.$settings.formAuth===!1?(yield this.$auth.noauth(),!0):(window.sessionStorage.setItem("target_route",i.url),this.$router.navigate(["login"]),!1)})}static \u0275fac=function(i){return new(i||s)};static \u0275prov=ee({token:s,factory:s.\u0275fac,providedIn:"root"})}return s})();var Re=(()=>{class s{$auth=E(pe);$router=E(_e);$settings=E(me);canActivate(){return Te(this,null,function*(){return this.$settings.settingsLoaded||(yield De(this.$settings.onSettingsLoaded)),this.$settings.env.setupWizardComplete===!1?(this.$router.navigate(["/setup"]),!1):this.$settings.formAuth===!1||this.$auth.isLoggedIn()?(this.$router.navigate(["/"]),!1):!0})}static \u0275fac=function(i){return new(i||s)};static \u0275prov=ee({token:s,factory:s.\u0275fac,providedIn:"root"})}return s})();var Qs=[{path:"login",loadComponent:()=>import("./chunk-26EDYJQW.js").then(s=>s.LoginComponent),canActivate:[Re]},{path:"setup",loadChildren:()=>import("./chunk-UKAOVQ6N.js").then(s=>s.SetupWizardModule),canActivate:[ri]},{path:"",loadComponent:()=>import("./chunk-7LUCJVXB.js").then(s=>s.LayoutComponent),canActivate:[Ee],children:[{path:"",loadComponent:()=>import("./chunk-AFRS7ZFI.js").then(s=>s.StatusComponent)},{path:"restart",loadComponent:()=>import("./chunk-4LLA7QYB.js").then(s=>s.RestartComponent),canActivate:[$]},{path:"plugins",loadChildren:()=>import("./chunk-5KIRKUWH.js").then(s=>s.PluginsModule),canActivate:[$]},{path:"config",loadChildren:()=>import("./chunk-A4HS5JYI.js").then(s=>s.ConfigEditorModule),canActivate:[$]},{path:"accessories",loadChildren:()=>import("./chunk-LV2VCDOI.js").then(s=>s.AccessoriesModule)},{path:"logs",loadChildren:()=>import("./chunk-IVORLBXB.js").then(s=>s.LogsModule)},{path:"users",loadChildren:()=>import("./chunk-AAVBU64J.js").then(s=>s.UsersModule),canActivate:[$]},{path:"settings",loadChildren:()=>import("./chunk-QKWNCNRW.js").then(s=>s.SettingsModule),canActivate:[$]},{path:"support",loadChildren:()=>import("./chunk-TCSXGQNF.js").then(s=>s.SupportModule)},{path:"power-options",loadChildren:()=>import("./chunk-2JDN5J3P.js").then(s=>s.PowerOptionsModule)},{path:"platform-tools",loadChildren:()=>import("./chunk-NDNK3KHG.js").then(s=>s.PlatformToolsModule),canActivate:[$]},{path:"docker/terminal",redirectTo:"platform-tools/terminal"},{path:"docker/startup-script",redirectTo:"platform-tools/docker/startup-script"},{path:"docker/restart",redirectTo:"platform-tools/docker/restart-container"},{path:"docker/settings",redirectTo:"platform-tools/docker/settings"},{path:"linux/terminal",redirectTo:"platform-tools/terminal"},{path:"linux/restart",redirectTo:"platform-tools/linux/restart-server"},{path:"linux/shutdown",redirectTo:"platform-tools/linux/shutdown-server"},{path:"platform-tools/docker/settings",redirectTo:"/settings"}]},{path:"**",pathMatch:"full",redirectTo:"/"}],bi=(()=>{class s{static \u0275fac=function(i){return new(i||s)};static \u0275mod=M({type:s});static \u0275inj=B({imports:[we.forRoot(Qs,{scrollPositionRestoration:"enabled",onSameUrlNavigation:"reload"}),we]})}return s})();var Xs=()=>localStorage.getItem(ce.jwt.tokenKey),hi=(()=>{class s{static \u0275fac=function(i){return new(i||s)};static \u0275mod=M({type:s});static \u0275inj=B({providers:[pe,Ee,$],imports:[te,be,he,L.forChild(),ii.forRoot({config:{authScheme:"bearer ",tokenGetter:Xs,skipWhenExpired:!1,allowedDomains:ce.jwt.allowedDomains,disallowedRoutes:ce.jwt.disallowedRoutes}})]})}return s})();function er(s){return s===1?1:5}var fi=["bg",[["am","pm"],void 0,["\u043F\u0440.\u043E\u0431.","\u0441\u043B.\u043E\u0431."]],[["am","pm"],void 0,void 0],[["\u043D","\u043F","\u0432","\u0441","\u0447","\u043F","\u0441"],["\u043D\u0434","\u043F\u043D","\u0432\u0442","\u0441\u0440","\u0447\u0442","\u043F\u0442","\u0441\u0431"],["\u043D\u0435\u0434\u0435\u043B\u044F","\u043F\u043E\u043D\u0435\u0434\u0435\u043B\u043D\u0438\u043A","\u0432\u0442\u043E\u0440\u043D\u0438\u043A","\u0441\u0440\u044F\u0434\u0430","\u0447\u0435\u0442\u0432\u044A\u0440\u0442\u044A\u043A","\u043F\u0435\u0442\u044A\u043A","\u0441\u044A\u0431\u043E\u0442\u0430"],["\u043D\u0434","\u043F\u043D","\u0432\u0442","\u0441\u0440","\u0447\u0442","\u043F\u0442","\u0441\u0431"]],void 0,[["\u044F","\u0444","\u043C","\u0430","\u043C","\u044E","\u044E","\u0430","\u0441","\u043E","\u043D","\u0434"],["\u044F\u043D\u0443","\u0444\u0435\u0432","\u043C\u0430\u0440\u0442","\u0430\u043F\u0440","\u043C\u0430\u0439","\u044E\u043D\u0438","\u044E\u043B\u0438","\u0430\u0432\u0433","\u0441\u0435\u043F","\u043E\u043A\u0442","\u043D\u043E\u0435","\u0434\u0435\u043A"],["\u044F\u043D\u0443\u0430\u0440\u0438","\u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438","\u043C\u0430\u0440\u0442","\u0430\u043F\u0440\u0438\u043B","\u043C\u0430\u0439","\u044E\u043D\u0438","\u044E\u043B\u0438","\u0430\u0432\u0433\u0443\u0441\u0442","\u0441\u0435\u043F\u0442\u0435\u043C\u0432\u0440\u0438","\u043E\u043A\u0442\u043E\u043C\u0432\u0440\u0438","\u043D\u043E\u0435\u043C\u0432\u0440\u0438","\u0434\u0435\u043A\u0435\u043C\u0432\u0440\u0438"]],void 0,[["\u043F\u0440.\u0425\u0440.","\u0441\u043B.\u0425\u0440."],void 0,["\u043F\u0440\u0435\u0434\u0438 \u0425\u0440\u0438\u0441\u0442\u0430","\u0441\u043B\u0435\u0434 \u0425\u0440\u0438\u0441\u0442\u0430"]],1,[6,0],["d.MM.yy '\u0433'.","d.MM.y '\u0433'.","d MMMM y '\u0433'.","EEEE, d MMMM y '\u0433'."],["H:mm '\u0447'.","H:mm:ss '\u0447'.","H:mm:ss '\u0447'. z","H:mm:ss '\u0447'. zzzz"],["{1}, {0}",void 0,void 0,void 0],[",","\xA0",";","%","+","-","E","\xD7","\u2030","\u221E","NaN",":"],["#,##0.###","#,##0%","0.00\xA0\xA4","#E0"],"BGN","\u043B\u0432.","\u0411\u044A\u043B\u0433\u0430\u0440\u0441\u043A\u0438 \u043B\u0435\u0432",{AFN:[void 0,"Af"],AMD:[],ARS:[],AUD:[],AZN:[],BBD:[],BDT:[],BGN:["\u043B\u0432."],BMD:[],BND:[],BRL:[],BSD:[],BZD:[],CAD:[],CLP:[],CNY:[],COP:[],CRC:[],CUP:[],DOP:[],FJD:[],FKP:[],GBP:[void 0,"\xA3"],GHS:[],GIP:[],GYD:[],HKD:[],ILS:[],INR:[],JMD:[],JPY:[void 0,"\xA5"],KHR:[],KRW:[],KYD:[],KZT:[],LAK:[],LRD:[],MNT:[],MXN:[],NAD:[],NGN:[],NZD:[],PHP:[],PYG:[],RON:[],SBD:[],SGD:[],SRD:[],SSP:[],TRY:[],TTD:[],TWD:[],UAH:[],USD:["\u0449.\u0434.","$"],UYU:[],VND:[],XCD:[void 0,"$"]},"ltr",er];function tr(s){let t=s,e=Math.floor(Math.abs(s)),i=s.toString().replace(/^[^.]*\.?/,"").length;return e===1&&i===0?1:5}var vi=["ca",[["a.\xA0m.","p.\xA0m."],void 0,void 0],void 0,[["dg","dl","dt","dc","dj","dv","ds"],["dg.","dl.","dt.","dc.","dj.","dv.","ds."],["diumenge","dilluns","dimarts","dimecres","dijous","divendres","dissabte"],["dg.","dl.","dt.","dc.","dj.","dv.","ds."]],void 0,[["GN","FB","M\xC7","AB","MG","JN","JL","AG","ST","OC","NV","DS"],["de gen.","de febr.","de mar\xE7","d\u2019abr.","de maig","de juny","de jul.","d\u2019ag.","de set.","d\u2019oct.","de nov.","de des."],["de gener","de febrer","de mar\xE7","d\u2019abril","de maig","de juny","de juliol","d\u2019agost","de setembre","d\u2019octubre","de novembre","de desembre"]],[["GN","FB","M\xC7","AB","MG","JN","JL","AG","ST","OC","NV","DS"],["gen.","febr.","mar\xE7","abr.","maig","juny","jul.","ag.","set.","oct.","nov.","des."],["gener","febrer","mar\xE7","abril","maig","juny","juliol","agost","setembre","octubre","novembre","desembre"]],[["aC","dC"],void 0,["abans de Crist","despr\xE9s de Crist"]],1,[6,0],["d/M/yy","d MMM y","d MMMM 'de' y","EEEE, d MMMM 'de' y"],["H:mm","H:mm:ss","H:mm:ss z","H:mm:ss (zzzz)"],["{1} {0}","{1}, {0}","{1}, 'a' 'les' {0}",void 0],[",",".",";","%","+","-","E","\xD7","\u2030","\u221E","NaN",":"],["#,##0.###","#,##0%","#,##0.00\xA0\xA4","#E0"],"EUR","\u20AC","euro",{AUD:["AU$","$"],BRL:[void 0,"R$"],BYN:[void 0,"\u0440."],CAD:[void 0,"$"],CNY:[void 0,"\xA5"],ESP:["\u20A7"],MXN:[void 0,"$"],PHP:[void 0,"\u20B1"],THB:["\u0E3F"],USD:[void 0,"$"],VEF:[void 0,"Bs F"],XCD:[void 0,"$"],XXX:[]},"ltr",tr];function ir(s){let t=s,e=Math.floor(Math.abs(s)),i=s.toString().replace(/^[^.]*\.?/,"").length;return e===1&&i===0?1:e===Math.floor(e)&&e>=2&&e<=4&&i===0?3:i!==0?4:5}var ki=["cs",[["dop.","odp."],void 0,void 0],void 0,[["N","P","\xDA","S","\u010C","P","S"],["ne","po","\xFAt","st","\u010Dt","p\xE1","so"],["ned\u011Ble","pond\u011Bl\xED","\xFAter\xFD","st\u0159eda","\u010Dtvrtek","p\xE1tek","sobota"],["ne","po","\xFAt","st","\u010Dt","p\xE1","so"]],void 0,[["1","2","3","4","5","6","7","8","9","10","11","12"],["led","\xFAno","b\u0159e","dub","kv\u011B","\u010Dvn","\u010Dvc","srp","z\xE1\u0159","\u0159\xEDj","lis","pro"],["ledna","\xFAnora","b\u0159ezna","dubna","kv\u011Btna","\u010Dervna","\u010Dervence","srpna","z\xE1\u0159\xED","\u0159\xEDjna","listopadu","prosince"]],[["1","2","3","4","5","6","7","8","9","10","11","12"],["led","\xFAno","b\u0159e","dub","kv\u011B","\u010Dvn","\u010Dvc","srp","z\xE1\u0159","\u0159\xEDj","lis","pro"],["leden","\xFAnor","b\u0159ezen","duben","kv\u011Bten","\u010Derven","\u010Dervenec","srpen","z\xE1\u0159\xED","\u0159\xEDjen","listopad","prosinec"]],[["p\u0159.n.l.","n.l."],["p\u0159. n. l.","n. l."],["p\u0159ed na\u0161\xEDm letopo\u010Dtem","na\u0161eho letopo\u010Dtu"]],1,[6,0],["dd.MM.yy","d. M. y","d. MMMM y","EEEE d. MMMM y"],["H:mm","H:mm:ss","H:mm:ss z","H:mm:ss zzzz"],["{1} {0}",void 0,void 0,void 0],[",","\xA0",";","%","+","-","E","\xD7","\u2030","\u221E","NaN",":"],["#,##0.###","#,##0\xA0%","#,##0.00\xA0\xA4","#E0"],"CZK","K\u010D","\u010Desk\xE1 koruna",{AUD:["AU$","$"],BYN:[void 0,"\u0440."],CSK:["K\u010Ds"],CZK:["K\u010D"],ILS:[void 0,"\u20AA"],INR:[void 0,"\u20B9"],JPY:["JP\xA5","\xA5"],PHP:[void 0,"\u20B1"],RON:[void 0,"L"],RUR:[void 0,"\u0440."],TWD:["NT$"],USD:["US$","$"],VND:[void 0,"\u20AB"],XEU:["ECU"],XXX:[]},"ltr",ir];function sr(s){let t=s,e=Math.floor(Math.abs(s)),i=s.toString().replace(/^[^.]*\.?/,"").length;return e===1&&i===0?1:5}var wi=["de",[["AM","PM"],void 0,void 0],void 0,[["S","M","D","M","D","F","S"],["So.","Mo.","Di.","Mi.","Do.","Fr.","Sa."],["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],["So.","Mo.","Di.","Mi.","Do.","Fr.","Sa."]],[["S","M","D","M","D","F","S"],["So","Mo","Di","Mi","Do","Fr","Sa"],["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],["So.","Mo.","Di.","Mi.","Do.","Fr.","Sa."]],[["J","F","M","A","M","J","J","A","S","O","N","D"],["Jan.","Feb.","M\xE4rz","Apr.","Mai","Juni","Juli","Aug.","Sept.","Okt.","Nov.","Dez."],["Januar","Februar","M\xE4rz","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"]],[["J","F","M","A","M","J","J","A","S","O","N","D"],["Jan","Feb","M\xE4r","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],["Januar","Februar","M\xE4rz","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"]],[["v. Chr.","n. Chr."],void 0,void 0],1,[6,0],["dd.MM.yy","dd.MM.y","d. MMMM y","EEEE, d. MMMM y"],["HH:mm","HH:mm:ss","HH:mm:ss z","HH:mm:ss zzzz"],["{1}, {0}",void 0,"{1} 'um' {0}",void 0],[",",".",";","%","+","-","E","\xB7","\u2030","\u221E","NaN",":"],["#,##0.###","#,##0\xA0%","#,##0.00\xA0\xA4","#E0"],"EUR","\u20AC","Euro",{ATS:["\xF6S"],AUD:["AU$","$"],BGM:["BGK"],BGO:["BGJ"],BYN:[void 0,"\u0440."],CUC:[void 0,"Cub$"],DEM:["DM"],FKP:[void 0,"Fl\xA3"],GHS:[void 0,"\u20B5"],GNF:[void 0,"F.G."],KMF:[void 0,"FC"],PHP:[void 0,"\u20B1"],RON:[void 0,"L"],RUR:[void 0,"\u0440."],RWF:[void 0,"F.Rw"],SYP:[],THB:["\u0E3F"],TWD:["NT$"],XXX:[],ZMW:[void 0,"K"]},"ltr",sr];function rr(s){let t=s,e=Math.floor(Math.abs(s)),i=s.toString().replace(/^[^.]*\.?/,"").length;return e===1&&i===0?1:5}var yi=["en",[["a","p"],["AM","PM"],void 0],[["AM","PM"],void 0,void 0],[["S","M","T","W","T","F","S"],["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],["Su","Mo","Tu","We","Th","Fr","Sa"]],void 0,[["J","F","M","A","M","J","J","A","S","O","N","D"],["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],["January","February","March","April","May","June","July","August","September","October","November","December"]],void 0,[["B","A"],["BC","AD"],["Before Christ","Anno Domini"]],0,[6,0],["M/d/yy","MMM d, y","MMMM d, y","EEEE, MMMM d, y"],["h:mm a","h:mm:ss a","h:mm:ss a z","h:mm:ss a zzzz"],["{1}, {0}",void 0,"{1} 'at' {0}",void 0],[".",",",";","%","+","-","E","\xD7","\u2030","\u221E","NaN",":"],["#,##0.###","#,##0%","\xA4#,##0.00","#E0"],"USD","$","US Dollar",{},"ltr",rr];function or(s){let t=s,e=Math.floor(Math.abs(s)),i=s.toString().replace(/^[^.]*\.?/,"").length,r=parseInt(s.toString().replace(/^[^e]*(e([-+]?\d+))?/,"$2"))||0;return t===1?1:r===0&&e!==0&&e%1e6===0&&i===0||!(r>=0&&r<=5)?4:5}var Hi=["es",[["a.\xA0m.","p.\xA0m."],void 0,void 0],void 0,[["D","L","M","X","J","V","S"],["dom","lun","mar","mi\xE9","jue","vie","s\xE1b"],["domingo","lunes","martes","mi\xE9rcoles","jueves","viernes","s\xE1bado"],["DO","LU","MA","MI","JU","VI","SA"]],void 0,[["E","F","M","A","M","J","J","A","S","O","N","D"],["ene","feb","mar","abr","may","jun","jul","ago","sept","oct","nov","dic"],["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre"]],void 0,[["a. C.","d. C."],void 0,["antes de Cristo","despu\xE9s de Cristo"]],1,[6,0],["d/M/yy","d MMM y","d 'de' MMMM 'de' y","EEEE, d 'de' MMMM 'de' y"],["H:mm","H:mm:ss","H:mm:ss z","H:mm:ss (zzzz)"],["{1}, {0}",void 0,void 0,void 0],[",",".",";","%","+","-","E","\xD7","\u2030","\u221E","NaN",":"],["#,##0.###","#,##0\xA0%","#,##0.00\xA0\xA4","#E0"],"EUR","\u20AC","euro",{AUD:[void 0,"$"],BRL:[void 0,"R$"],BYN:[void 0,"\u0440."],CAD:[void 0,"$"],CNY:[void 0,"\xA5"],EGP:[],ESP:["\u20A7"],GBP:[void 0,"\xA3"],HKD:[void 0,"$"],ILS:[void 0,"\u20AA"],INR:[void 0,"\u20B9"],JPY:[void 0,"\xA5"],KRW:[void 0,"\u20A9"],MXN:[void 0,"$"],NZD:[void 0,"$"],PHP:[void 0,"\u20B1"],RON:[void 0,"L"],THB:["\u0E3F"],TWD:[void 0,"NT$"],USD:["US$","$"],XAF:[],XCD:[void 0,"$"],XOF:[]},"ltr",or];function ar(s){let t=s,e=Math.floor(Math.abs(s)),i=s.toString().replace(/^[^.]*\.?/,"").length,r=parseInt(s.toString().replace(/^[^e]*(e([-+]?\d+))?/,"$2"))||0;return e===0||e===1?1:r===0&&e!==0&&e%1e6===0&&i===0||!(r>=0&&r<=5)?4:5}var zi=["fr",[["AM","PM"],void 0,void 0],void 0,[["D","L","M","M","J","V","S"],["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],["di","lu","ma","me","je","ve","sa"]],void 0,[["J","F","M","A","M","J","J","A","S","O","N","D"],["janv.","f\xE9vr.","mars","avr.","mai","juin","juil.","ao\xFBt","sept.","oct.","nov.","d\xE9c."],["janvier","f\xE9vrier","mars","avril","mai","juin","juillet","ao\xFBt","septembre","octobre","novembre","d\xE9cembre"]],void 0,[["av. J.-C.","ap. J.-C."],void 0,["avant J\xE9sus-Christ","apr\xE8s J\xE9sus-Christ"]],1,[6,0],["dd/MM/y","d MMM y","d MMMM y","EEEE d MMMM y"],["HH:mm","HH:mm:ss","HH:mm:ss z","HH:mm:ss zzzz"],["{1} {0}","{1}, {0}","{1} '\xE0' {0}",void 0],[",","\u202F",";","%","+","-","E","\xD7","\u2030","\u221E","NaN",":"],["#,##0.###","#,##0\xA0%","#,##0.00\xA0\xA4","#E0"],"EUR","\u20AC","euro",{ARS:["$AR","$"],AUD:["$AU","$"],BEF:["FB"],BMD:["$BM","$"],BND:["$BN","$"],BYN:[void 0,"\u0440."],BZD:["$BZ","$"],CAD:["$CA","$"],CLP:["$CL","$"],CNY:[void 0,"\xA5"],COP:["$CO","$"],CYP:["\xA3CY"],EGP:[void 0,"\xA3E"],FJD:["$FJ","$"],FKP:["\xA3FK","\xA3"],FRF:["F"],GBP:["\xA3GB","\xA3"],GIP:["\xA3GI","\xA3"],HKD:[void 0,"$"],IEP:["\xA3IE"],ILP:["\xA3IL"],ITL:["\u20A4IT"],JPY:[void 0,"\xA5"],KMF:[void 0,"FC"],LBP:["\xA3LB","\xA3L"],MTP:["\xA3MT"],MXN:["$MX","$"],NAD:["$NA","$"],NIO:[void 0,"$C"],NZD:["$NZ","$"],PHP:[void 0,"\u20B1"],RHD:["$RH"],RON:[void 0,"L"],RWF:[void 0,"FR"],SBD:["$SB","$"],SGD:["$SG","$"],SRD:["$SR","$"],TOP:[void 0,"$T"],TTD:["$TT","$"],TWD:[void 0,"NT$"],USD:["$US","$"],UYU:["$UY","$"],WST:["$WS"],XCD:[void 0,"$"],XPF:["FCFP"],ZMW:[void 0,"Kw"]},"ltr",ar];function nr(s){let t=s,e=Math.floor(Math.abs(s)),i=s.toString().replace(/^[^.]*\.?/,"").length;return e===1&&i===0?1:e===2&&i===0?2:i===0&&!(t>=0&&t<=10)&&t%10===0?4:5}var Si=["he",[["\u05DC\u05E4\u05E0\u05D4\u05F4\u05E6","\u05D0\u05D7\u05D4\u05F4\u05E6"],void 0,void 0],[["\u05DC\u05E4\u05E0\u05D4\u05F4\u05E6","\u05D0\u05D7\u05D4\u05F4\u05E6"],["AM","PM"],void 0],[["\u05D0\u05F3","\u05D1\u05F3","\u05D2\u05F3","\u05D3\u05F3","\u05D4\u05F3","\u05D5\u05F3","\u05E9\u05F3"],["\u05D9\u05D5\u05DD \u05D0\u05F3","\u05D9\u05D5\u05DD \u05D1\u05F3","\u05D9\u05D5\u05DD \u05D2\u05F3","\u05D9\u05D5\u05DD \u05D3\u05F3","\u05D9\u05D5\u05DD \u05D4\u05F3","\u05D9\u05D5\u05DD \u05D5\u05F3","\u05E9\u05D1\u05EA"],["\u05D9\u05D5\u05DD \u05E8\u05D0\u05E9\u05D5\u05DF","\u05D9\u05D5\u05DD \u05E9\u05E0\u05D9","\u05D9\u05D5\u05DD \u05E9\u05DC\u05D9\u05E9\u05D9","\u05D9\u05D5\u05DD \u05E8\u05D1\u05D9\u05E2\u05D9","\u05D9\u05D5\u05DD \u05D7\u05DE\u05D9\u05E9\u05D9","\u05D9\u05D5\u05DD \u05E9\u05D9\u05E9\u05D9","\u05D9\u05D5\u05DD \u05E9\u05D1\u05EA"],["\u05D0\u05F3","\u05D1\u05F3","\u05D2\u05F3","\u05D3\u05F3","\u05D4\u05F3","\u05D5\u05F3","\u05E9\u05F3"]],void 0,[["1","2","3","4","5","6","7","8","9","10","11","12"],["\u05D9\u05E0\u05D5\u05F3","\u05E4\u05D1\u05E8\u05F3","\u05DE\u05E8\u05E5","\u05D0\u05E4\u05E8\u05F3","\u05DE\u05D0\u05D9","\u05D9\u05D5\u05E0\u05D9","\u05D9\u05D5\u05DC\u05D9","\u05D0\u05D5\u05D2\u05F3","\u05E1\u05E4\u05D8\u05F3","\u05D0\u05D5\u05E7\u05F3","\u05E0\u05D5\u05D1\u05F3","\u05D3\u05E6\u05DE\u05F3"],["\u05D9\u05E0\u05D5\u05D0\u05E8","\u05E4\u05D1\u05E8\u05D5\u05D0\u05E8","\u05DE\u05E8\u05E5","\u05D0\u05E4\u05E8\u05D9\u05DC","\u05DE\u05D0\u05D9","\u05D9\u05D5\u05E0\u05D9","\u05D9\u05D5\u05DC\u05D9","\u05D0\u05D5\u05D2\u05D5\u05E1\u05D8","\u05E1\u05E4\u05D8\u05DE\u05D1\u05E8","\u05D0\u05D5\u05E7\u05D8\u05D5\u05D1\u05E8","\u05E0\u05D5\u05D1\u05DE\u05D1\u05E8","\u05D3\u05E6\u05DE\u05D1\u05E8"]],void 0,[["\u05DC\u05E4\u05E0\u05D9","\u05D0\u05D7\u05E8\u05D9\u05D9"],["\u05DC\u05E4\u05E0\u05D4\u05F4\u05E1","\u05DC\u05E1\u05E4\u05D9\u05E8\u05D4"],["\u05DC\u05E4\u05E0\u05D9 \u05D4\u05E1\u05E4\u05D9\u05E8\u05D4","\u05DC\u05E1\u05E4\u05D9\u05E8\u05D4"]],0,[5,6],["d.M.y","d \u05D1MMM y","d \u05D1MMMM y","EEEE, d \u05D1MMMM y"],["H:mm","H:mm:ss","H:mm:ss z","H:mm:ss zzzz"],["{1}, {0}",void 0,"{1} \u05D1\u05E9\u05E2\u05D4 {0}",void 0],[".",",",";","%","\u200E+","\u200E-","E","\xD7","\u2030","\u221E","NaN",":"],["#,##0.###","#,##0%","\u200F#,##0.00\xA0\xA4;\u200F-#,##0.00\xA0\xA4","#E0"],"ILS","\u20AA","\u05E9\u05E7\u05DC \u05D7\u05D3\u05E9",{BYN:[void 0,"\u0440"],CNY:["\u200ECN\xA5\u200E","\xA5"],ILP:["\u05DC\u05F4\u05D9"],PHP:[void 0,"\u20B1"],THB:["\u0E3F"],TWD:["NT$"]},"rtl",nr];function lr(s){return s===1?1:5}var ji=["hu",[["de.","du."],void 0,void 0],void 0,[["V","H","K","Sz","Cs","P","Sz"],["V","H","K","Sze","Cs","P","Szo"],["vas\xE1rnap","h\xE9tf\u0151","kedd","szerda","cs\xFCt\xF6rt\xF6k","p\xE9ntek","szombat"],["V","H","K","Sze","Cs","P","Szo"]],void 0,[["J","F","M","\xC1","M","J","J","A","Sz","O","N","D"],["jan.","febr.","m\xE1rc.","\xE1pr.","m\xE1j.","j\xFAn.","j\xFAl.","aug.","szept.","okt.","nov.","dec."],["janu\xE1r","febru\xE1r","m\xE1rcius","\xE1prilis","m\xE1jus","j\xFAnius","j\xFAlius","augusztus","szeptember","okt\xF3ber","november","december"]],void 0,[["ie.","isz."],["i. e.","i. sz."],["Krisztus el\u0151tt","id\u0151sz\xE1m\xEDt\xE1sunk szerint"]],1,[6,0],["y. MM. dd.","y. MMM d.","y. MMMM d.","y. MMMM d., EEEE"],["H:mm","H:mm:ss","H:mm:ss z","H:mm:ss zzzz"],["{1} {0}",void 0,void 0,void 0],[",","\xA0",";","%","+","-","E","\xD7","\u2030","\u221E","NaN",":"],["#,##0.###","#,##0%","#,##0.00\xA0\xA4","#E0"],"HUF","Ft","magyar forint",{AUD:[void 0,"$"],BRL:[void 0,"R$"],BYN:[void 0,"\u0440."],CAD:[void 0,"$"],CNY:[void 0,"\xA5"],EUR:[void 0,"\u20AC"],GBP:[void 0,"\xA3"],HKD:[void 0,"$"],HUF:["Ft"],ILS:[void 0,"\u20AA"],INR:[void 0,"\u20B9"],KRW:[void 0,"\u20A9"],MXN:[void 0,"$"],NZD:[void 0,"$"],PHP:[void 0,"\u20B1"],TWD:[void 0,"NT$"],USD:[void 0,"$"],VND:[void 0,"\u20AB"],XCD:[void 0,"$"]},"ltr",lr];function dr(s){let t=s;return 5}var Ai=["id",[["AM","PM"],void 0,void 0],void 0,[["M","S","S","R","K","J","S"],["Min","Sen","Sel","Rab","Kam","Jum","Sab"],["Minggu","Senin","Selasa","Rabu","Kamis","Jumat","Sabtu"],["Min","Sen","Sel","Rab","Kam","Jum","Sab"]],void 0,[["J","F","M","A","M","J","J","A","S","O","N","D"],["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Agu","Sep","Okt","Nov","Des"],["Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","November","Desember"]],void 0,[["SM","M"],void 0,["Sebelum Masehi","Masehi"]],0,[6,0],["dd/MM/yy","d MMM y","d MMMM y","EEEE, dd MMMM y"],["HH.mm","HH.mm.ss","HH.mm.ss z","HH.mm.ss zzzz"],["{1} {0}",void 0,void 0,void 0],[",",".",";","%","+","-","E","\xD7","\u2030","\u221E","NaN","."],["#,##0.###","#,##0%","\xA4#,##0.00","#E0"],"IDR","Rp","Rupiah Indonesia",{AUD:["AU$","$"],BYN:[void 0,"\u0440."],IDR:["Rp"],INR:["Rs","\u20B9"],JPY:["JP\xA5","\xA5"],PHP:[void 0,"\u20B1"],THB:["\u0E3F"],TWD:["NT$"],USD:["US$","$"],XXX:[]},"ltr",dr];function ur(s){let t=s,e=Math.floor(Math.abs(s)),i=s.toString().replace(/^[^.]*\.?/,"").length,r=parseInt(s.toString().replace(/^[^e]*(e([-+]?\d+))?/,"$2"))||0;return e===1&&i===0?1:r===0&&e!==0&&e%1e6===0&&i===0||!(r>=0&&r<=5)?4:5}var Ni=["it",[["m.","p."],["AM","PM"],void 0],void 0,[["D","L","M","M","G","V","S"],["dom","lun","mar","mer","gio","ven","sab"],["domenica","luned\xEC","marted\xEC","mercoled\xEC","gioved\xEC","venerd\xEC","sabato"],["dom","lun","mar","mer","gio","ven","sab"]],void 0,[["G","F","M","A","M","G","L","A","S","O","N","D"],["gen","feb","mar","apr","mag","giu","lug","ago","set","ott","nov","dic"],["gennaio","febbraio","marzo","aprile","maggio","giugno","luglio","agosto","settembre","ottobre","novembre","dicembre"]],void 0,[["aC","dC"],["a.C.","d.C."],["avanti Cristo","dopo Cristo"]],1,[6,0],["dd/MM/yy","d MMM y","d MMMM y","EEEE d MMMM y"],["HH:mm","HH:mm:ss","HH:mm:ss z","HH:mm:ss zzzz"],["{1}, {0}",void 0,"{1} {0}",void 0],[",",".",";","%","+","-","E","\xD7","\u2030","\u221E","NaN",":"],["#,##0.###","#,##0%","#,##0.00\xA0\xA4","#E0"],"EUR","\u20AC","euro",{BRL:[void 0,"R$"],BYN:[void 0,"Br"],EGP:[void 0,"\xA3E"],HKD:[void 0,"$"],INR:[void 0,"\u20B9"],JPY:[void 0,"\xA5"],KRW:[void 0,"\u20A9"],MXN:[void 0,"$"],NOK:[void 0,"NKr"],THB:["\u0E3F"],TWD:[void 0,"NT$"],USD:[void 0,"$"],VND:[void 0,"\u20AB"]},"ltr",ur];function cr(s){let t=s;return 5}var Pi=["ja",[["\u5348\u524D","\u5348\u5F8C"],void 0,void 0],void 0,[["\u65E5","\u6708","\u706B","\u6C34","\u6728","\u91D1","\u571F"],void 0,["\u65E5\u66DC\u65E5","\u6708\u66DC\u65E5","\u706B\u66DC\u65E5","\u6C34\u66DC\u65E5","\u6728\u66DC\u65E5","\u91D1\u66DC\u65E5","\u571F\u66DC\u65E5"],["\u65E5","\u6708","\u706B","\u6C34","\u6728","\u91D1","\u571F"]],void 0,[["1","2","3","4","5","6","7","8","9","10","11","12"],["1\u6708","2\u6708","3\u6708","4\u6708","5\u6708","6\u6708","7\u6708","8\u6708","9\u6708","10\u6708","11\u6708","12\u6708"],void 0],void 0,[["BC","AD"],["\u7D00\u5143\u524D","\u897F\u66A6"],void 0],0,[6,0],["y/MM/dd",void 0,"y\u5E74M\u6708d\u65E5","y\u5E74M\u6708d\u65E5EEEE"],["H:mm","H:mm:ss","H:mm:ss z","H\u6642mm\u5206ss\u79D2 zzzz"],["{1} {0}",void 0,void 0,void 0],[".",",",";","%","+","-","E","\xD7","\u2030","\u221E","NaN",":"],["#,##0.###","#,##0%","\xA4#,##0.00","#E0"],"JPY","\uFFE5","\u65E5\u672C\u5186",{BYN:[void 0,"\u0440."],CNY:["\u5143","\uFFE5"],JPY:["\uFFE5"],PHP:[void 0,"\u20B1"],RON:[void 0,"\u30EC\u30A4"],XXX:[]},"ltr",cr];function gr(s){let t=s;return 5}var Ti=["ko",[["AM","PM"],void 0,["\uC624\uC804","\uC624\uD6C4"]],void 0,[["\uC77C","\uC6D4","\uD654","\uC218","\uBAA9","\uAE08","\uD1A0"],void 0,["\uC77C\uC694\uC77C","\uC6D4\uC694\uC77C","\uD654\uC694\uC77C","\uC218\uC694\uC77C","\uBAA9\uC694\uC77C","\uAE08\uC694\uC77C","\uD1A0\uC694\uC77C"],["\uC77C","\uC6D4","\uD654","\uC218","\uBAA9","\uAE08","\uD1A0"]],void 0,[["1\uC6D4","2\uC6D4","3\uC6D4","4\uC6D4","5\uC6D4","6\uC6D4","7\uC6D4","8\uC6D4","9\uC6D4","10\uC6D4","11\uC6D4","12\uC6D4"],void 0,void 0],void 0,[["BC","AD"],void 0,["\uAE30\uC6D0\uC804","\uC11C\uAE30"]],0,[6,0],["yy. M. d.","y. M. d.","y\uB144 M\uC6D4 d\uC77C","y\uB144 M\uC6D4 d\uC77C EEEE"],["a h:mm","a h:mm:ss","a h\uC2DC m\uBD84 s\uCD08 z","a h\uC2DC m\uBD84 s\uCD08 zzzz"],["{1} {0}",void 0,void 0,void 0],[".",",",";","%","+","-","E","\xD7","\u2030","\u221E","NaN",":"],["#,##0.###","#,##0%","\xA4#,##0.00","#E0"],"KRW","\u20A9","\uB300\uD55C\uBBFC\uAD6D \uC6D0",{AUD:["AU$","$"],BYN:[void 0,"\u0440."],JPY:["JP\xA5","\xA5"],PHP:[void 0,"\u20B1"],RON:[void 0,"L"],TWD:["NT$"],USD:["US$","$"]},"ltr",gr];function mr(s){let t=s,e=Math.floor(Math.abs(s)),i=s.toString().replace(/^[^.]*\.?/,"").length,r=parseInt(s.toString().replace(/^[^.]*\.?/,""),10)||0;return i===0&&e%10===1&&e%100!==11||r%10===1&&r%100!==11?1:5}var Di=["mk",[["\u043F\u0440\u0435\u0442\u043F\u043B.","\u043F\u043E\u043F\u043B."],void 0,["\u043F\u0440\u0435\u0442\u043F\u043B\u0430\u0434\u043D\u0435","\u043F\u043E\u043F\u043B\u0430\u0434\u043D\u0435"]],void 0,[["\u043D","\u043F","\u0432","\u0441","\u0447","\u043F","\u0441"],["\u043D\u0435\u0434.","\u043F\u043E\u043D.","\u0432\u0442\u043E.","\u0441\u0440\u0435.","\u0447\u0435\u0442.","\u043F\u0435\u0442.","\u0441\u0430\u0431."],["\u043D\u0435\u0434\u0435\u043B\u0430","\u043F\u043E\u043D\u0435\u0434\u0435\u043B\u043D\u0438\u043A","\u0432\u0442\u043E\u0440\u043D\u0438\u043A","\u0441\u0440\u0435\u0434\u0430","\u0447\u0435\u0442\u0432\u0440\u0442\u043E\u043A","\u043F\u0435\u0442\u043E\u043A","\u0441\u0430\u0431\u043E\u0442\u0430"],["\u043D\u0435\u0434.","\u043F\u043E\u043D.","\u0432\u0442\u043E.","\u0441\u0440\u0435.","\u0447\u0435\u0442.","\u043F\u0435\u0442.","\u0441\u0430\u0431."]],void 0,[["\u0458","\u0444","\u043C","\u0430","\u043C","\u0458","\u0458","\u0430","\u0441","\u043E","\u043D","\u0434"],["\u0458\u0430\u043D.","\u0444\u0435\u0432.","\u043C\u0430\u0440.","\u0430\u043F\u0440.","\u043C\u0430\u0458","\u0458\u0443\u043D.","\u0458\u0443\u043B.","\u0430\u0432\u0433.","\u0441\u0435\u043F\u0442.","\u043E\u043A\u0442.","\u043D\u043E\u0435\u043C.","\u0434\u0435\u043A."],["\u0458\u0430\u043D\u0443\u0430\u0440\u0438","\u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438","\u043C\u0430\u0440\u0442","\u0430\u043F\u0440\u0438\u043B","\u043C\u0430\u0458","\u0458\u0443\u043D\u0438","\u0458\u0443\u043B\u0438","\u0430\u0432\u0433\u0443\u0441\u0442","\u0441\u0435\u043F\u0442\u0435\u043C\u0432\u0440\u0438","\u043E\u043A\u0442\u043E\u043C\u0432\u0440\u0438","\u043D\u043E\u0435\u043C\u0432\u0440\u0438","\u0434\u0435\u043A\u0435\u043C\u0432\u0440\u0438"]],void 0,[["\u043F.\u043D.\u0435.","\u043D.\u0435."],void 0,["\u043F\u0440\u0435\u0434 \u043D\u0430\u0448\u0430\u0442\u0430 \u0435\u0440\u0430","\u043E\u0434 \u043D\u0430\u0448\u0430\u0442\u0430 \u0435\u0440\u0430"]],1,[6,0],["d.M.yy","d.M.y","d MMMM y","EEEE, d MMMM y"],["HH:mm","HH:mm:ss","HH:mm:ss z","HH:mm:ss zzzz"],["{1}, '\u0432\u043E' {0}",void 0,void 0,void 0],[",",".",";","%","+","-","E","\xD7","\u2030","\u221E","NaN",":"],["#,##0.###","#,##0\xA0%","#,##0.00\xA0\xA4","#E0"],"MKD","\u0434\u0435\u043D.","\u041C\u0430\u043A\u0435\u0434\u043E\u043D\u0441\u043A\u0438 \u0434\u0435\u043D\u0430\u0440",{AUD:[void 0,"$"],BYN:[void 0,"\u0440."],CNY:[void 0,"\xA5"],GBP:[void 0,"\xA3"],HKD:[void 0,"$"],ILS:[void 0,"\u20AA"],INR:[void 0,"\u20B9"],JPY:[void 0,"\xA5"],KRW:[void 0,"\u20A9"],MKD:["\u0434\u0435\u043D."],NZD:[void 0,"$"],PHP:[void 0,"\u20B1"],TWD:[void 0,"NT$"],USD:["US$","$"],VND:[void 0,"\u20AB"]},"ltr",mr];function pr(s){return s===1?1:5}var Ui=["nb",[["a","p"],["a.m.","p.m."],void 0],[["a.m.","p.m."],void 0,void 0],[["S","M","T","O","T","F","L"],["s\xF8n.","man.","tir.","ons.","tor.","fre.","l\xF8r."],["s\xF8ndag","mandag","tirsdag","onsdag","torsdag","fredag","l\xF8rdag"],["s\xF8.","ma.","ti.","on.","to.","fr.","l\xF8."]],void 0,[["J","F","M","A","M","J","J","A","S","O","N","D"],["jan.","feb.","mar.","apr.","mai","jun.","jul.","aug.","sep.","okt.","nov.","des."],["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"]],[["J","F","M","A","M","J","J","A","S","O","N","D"],["jan","feb","mar","apr","mai","jun","jul","aug","sep","okt","nov","des"],["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"]],[["f.Kr.","e.Kr."],void 0,["f\xF8r Kristus","etter Kristus"]],1,[6,0],["dd.MM.y","d. MMM y","d. MMMM y","EEEE d. MMMM y"],["HH:mm","HH:mm:ss","HH:mm:ss z","HH:mm:ss zzzz"],["{1}, {0}",void 0,"{1} 'kl'. {0}",void 0],[",","\xA0",";","%","+","\u2212","E","\xD7","\u2030","\u221E","NaN",":"],["#,##0.###","#,##0\xA0%","\xA4\xA0#,##0.00;\xA4\xA0-#,##0.00","#E0"],"NOK","kr","norske kroner",{AUD:[void 0,"$"],BRL:[void 0,"R$"],BYN:[void 0,"\u0440."],CAD:[void 0,"$"],CNY:[void 0,"\xA5"],HKD:[void 0,"$"],ILS:[void 0,"\u20AA"],INR:[void 0,"\u20B9"],JPY:[void 0,"\xA5"],KRW:[void 0,"\u20A9"],MXN:[void 0,"$"],NOK:["kr"],NZD:[void 0,"$"],PHP:[void 0,"\u20B1"],RON:[void 0,"L"],TWD:[void 0,"NT$"],USD:[void 0,"$"],VND:[void 0,"\u20AB"],XAF:[],XCD:[void 0,"$"],XPF:[],XXX:[]},"ltr",pr];function _r(s){let t=s,e=Math.floor(Math.abs(s)),i=s.toString().replace(/^[^.]*\.?/,"").length;return e===1&&i===0?1:5}var Ki=["nl",[["a.m.","p.m."],void 0,void 0],void 0,[["Z","M","D","W","D","V","Z"],["zo","ma","di","wo","do","vr","za"],["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],["zo","ma","di","wo","do","vr","za"]],void 0,[["J","F","M","A","M","J","J","A","S","O","N","D"],["jan.","feb.","mrt.","apr.","mei","jun.","jul.","aug.","sep.","okt.","nov.","dec."],["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"]],void 0,[["v.C.","n.C."],["v.Chr.","n.Chr."],["voor Christus","na Christus"]],1,[6,0],["dd-MM-y","d MMM y","d MMMM y","EEEE d MMMM y"],["HH:mm","HH:mm:ss","HH:mm:ss z","HH:mm:ss zzzz"],["{1} {0}",void 0,"{1} 'om' {0}",void 0],[",",".",";","%","+","-","E","\xD7","\u2030","\u221E","NaN",":"],["#,##0.###","#,##0%","\xA4\xA0#,##0.00;\xA4\xA0-#,##0.00","#E0"],"EUR","\u20AC","Euro",{AUD:["AU$","$"],BYN:[void 0,"\u0440."],CAD:["C$","$"],FJD:["FJ$","$"],JPY:["JP\xA5","\xA5"],PHP:[void 0,"\u20B1"],RUR:[void 0,"\u0440."],SBD:["SI$","$"],THB:["\u0E3F"],TWD:["NT$"],USD:["US$","$"],XPF:[],XXX:[]},"ltr",_r];function br(s){let t=s,e=Math.floor(Math.abs(s)),i=s.toString().replace(/^[^.]*\.?/,"").length;return e===1&&i===0?1:i===0&&e%10===Math.floor(e%10)&&e%10>=2&&e%10<=4&&!(e%100>=12&&e%100<=14)?3:i===0&&e!==1&&e%10===Math.floor(e%10)&&e%10>=0&&e%10<=1||i===0&&e%10===Math.floor(e%10)&&e%10>=5&&e%10<=9||i===0&&e%100===Math.floor(e%100)&&e%100>=12&&e%100<=14?4:5}var Ii=["pl",[["a","p"],["AM","PM"],void 0],void 0,[["n","p","w","\u015B","c","p","s"],["niedz.","pon.","wt.","\u015Br.","czw.","pt.","sob."],["niedziela","poniedzia\u0142ek","wtorek","\u015Broda","czwartek","pi\u0105tek","sobota"],["nie","pon","wto","\u015Bro","czw","pi\u0105","sob"]],[["N","P","W","\u015A","C","P","S"],["niedz.","pon.","wt.","\u015Br.","czw.","pt.","sob."],["niedziela","poniedzia\u0142ek","wtorek","\u015Broda","czwartek","pi\u0105tek","sobota"],["nie","pon","wto","\u015Bro","czw","pi\u0105","sob"]],[["s","l","m","k","m","c","l","s","w","p","l","g"],["sty","lut","mar","kwi","maj","cze","lip","sie","wrz","pa\u017A","lis","gru"],["stycznia","lutego","marca","kwietnia","maja","czerwca","lipca","sierpnia","wrze\u015Bnia","pa\u017Adziernika","listopada","grudnia"]],[["S","L","M","K","M","C","L","S","W","P","L","G"],["sty","lut","mar","kwi","maj","cze","lip","sie","wrz","pa\u017A","lis","gru"],["stycze\u0144","luty","marzec","kwiecie\u0144","maj","czerwiec","lipiec","sierpie\u0144","wrzesie\u0144","pa\u017Adziernik","listopad","grudzie\u0144"]],[["p.n.e.","n.e."],void 0,["przed nasz\u0105 er\u0105","naszej ery"]],1,[6,0],["d.MM.y","d MMM y","d MMMM y","EEEE, d MMMM y"],["HH:mm","HH:mm:ss","HH:mm:ss z","HH:mm:ss zzzz"],["{1}, {0}",void 0,"{1} {0}",void 0],[",","\xA0",";","%","+","-","E","\xD7","\u2030","\u221E","NaN",":"],["#,##0.###","#,##0%","#,##0.00\xA0\xA4","#E0"],"PLN","z\u0142","z\u0142oty polski",{AUD:[void 0,"$"],CAD:[void 0,"$"],CNY:[void 0,"\xA5"],GBP:[void 0,"\xA3"],HKD:[void 0,"$"],ILS:[void 0,"\u20AA"],INR:[void 0,"\u20B9"],JPY:[void 0,"\xA5"],KRW:[void 0,"\u20A9"],MXN:[void 0,"$"],NZD:[void 0,"$"],PHP:[void 0,"\u20B1"],PLN:["z\u0142"],RON:[void 0,"lej"],TWD:[void 0,"NT$"],USD:[void 0,"$"],VND:[void 0,"\u20AB"]},"ltr",br];function hr(s){let t=s,e=Math.floor(Math.abs(s)),i=s.toString().replace(/^[^.]*\.?/,"").length,r=parseInt(s.toString().replace(/^[^e]*(e([-+]?\d+))?/,"$2"))||0;return e===Math.floor(e)&&e>=0&&e<=1?1:r===0&&e!==0&&e%1e6===0&&i===0||!(r>=0&&r<=5)?4:5}var Ci=["pt",[["AM","PM"],void 0,void 0],void 0,[["D","S","T","Q","Q","S","S"],["dom.","seg.","ter.","qua.","qui.","sex.","s\xE1b."],["domingo","segunda-feira","ter\xE7a-feira","quarta-feira","quinta-feira","sexta-feira","s\xE1bado"],["dom.","seg.","ter.","qua.","qui.","sex.","s\xE1b."]],void 0,[["J","F","M","A","M","J","J","A","S","O","N","D"],["jan.","fev.","mar.","abr.","mai.","jun.","jul.","ago.","set.","out.","nov.","dez."],["janeiro","fevereiro","mar\xE7o","abril","maio","junho","julho","agosto","setembro","outubro","novembro","dezembro"]],void 0,[["a.C.","d.C."],void 0,["antes de Cristo","depois de Cristo"]],0,[6,0],["dd/MM/y","d 'de' MMM 'de' y","d 'de' MMMM 'de' y","EEEE, d 'de' MMMM 'de' y"],["HH:mm","HH:mm:ss","HH:mm:ss z","HH:mm:ss zzzz"],["{1} {0}",void 0,void 0,void 0],[",",".",";","%","+","-","E","\xD7","\u2030","\u221E","NaN",":"],["#,##0.###","#,##0%","\xA4\xA0#,##0.00","#E0"],"BRL","R$","Real brasileiro",{AUD:["AU$","$"],BYN:[void 0,"\u0440."],JPY:["JP\xA5","\xA5"],PHP:[void 0,"\u20B1"],PTE:["Esc."],RON:[void 0,"L"],SYP:[void 0,"S\xA3"],THB:["\u0E3F"],TWD:["NT$"],USD:["US$","$"]},"ltr",hr];function fr(s){let t=s,e=Math.floor(Math.abs(s)),i=s.toString().replace(/^[^.]*\.?/,"").length;return i===0&&e%10===1&&e%100!==11?1:i===0&&e%10===Math.floor(e%10)&&e%10>=2&&e%10<=4&&!(e%100>=12&&e%100<=14)?3:i===0&&e%10===0||i===0&&e%10===Math.floor(e%10)&&e%10>=5&&e%10<=9||i===0&&e%100===Math.floor(e%100)&&e%100>=11&&e%100<=14?4:5}var xi=["ru",[["AM","PM"],void 0,void 0],void 0,[["\u0412","\u041F","\u0412","\u0421","\u0427","\u041F","\u0421"],["\u0432\u0441","\u043F\u043D","\u0432\u0442","\u0441\u0440","\u0447\u0442","\u043F\u0442","\u0441\u0431"],["\u0432\u043E\u0441\u043A\u0440\u0435\u0441\u0435\u043D\u044C\u0435","\u043F\u043E\u043D\u0435\u0434\u0435\u043B\u044C\u043D\u0438\u043A","\u0432\u0442\u043E\u0440\u043D\u0438\u043A","\u0441\u0440\u0435\u0434\u0430","\u0447\u0435\u0442\u0432\u0435\u0440\u0433","\u043F\u044F\u0442\u043D\u0438\u0446\u0430","\u0441\u0443\u0431\u0431\u043E\u0442\u0430"],["\u0432\u0441","\u043F\u043D","\u0432\u0442","\u0441\u0440","\u0447\u0442","\u043F\u0442","\u0441\u0431"]],void 0,[["\u042F","\u0424","\u041C","\u0410","\u041C","\u0418","\u0418","\u0410","\u0421","\u041E","\u041D","\u0414"],["\u044F\u043D\u0432.","\u0444\u0435\u0432\u0440.","\u043C\u0430\u0440.","\u0430\u043F\u0440.","\u043C\u0430\u044F","\u0438\u044E\u043D.","\u0438\u044E\u043B.","\u0430\u0432\u0433.","\u0441\u0435\u043D\u0442.","\u043E\u043A\u0442.","\u043D\u043E\u044F\u0431.","\u0434\u0435\u043A."],["\u044F\u043D\u0432\u0430\u0440\u044F","\u0444\u0435\u0432\u0440\u0430\u043B\u044F","\u043C\u0430\u0440\u0442\u0430","\u0430\u043F\u0440\u0435\u043B\u044F","\u043C\u0430\u044F","\u0438\u044E\u043D\u044F","\u0438\u044E\u043B\u044F","\u0430\u0432\u0433\u0443\u0441\u0442\u0430","\u0441\u0435\u043D\u0442\u044F\u0431\u0440\u044F","\u043E\u043A\u0442\u044F\u0431\u0440\u044F","\u043D\u043E\u044F\u0431\u0440\u044F","\u0434\u0435\u043A\u0430\u0431\u0440\u044F"]],[["\u042F","\u0424","\u041C","\u0410","\u041C","\u0418","\u0418","\u0410","\u0421","\u041E","\u041D","\u0414"],["\u044F\u043D\u0432.","\u0444\u0435\u0432\u0440.","\u043C\u0430\u0440\u0442","\u0430\u043F\u0440.","\u043C\u0430\u0439","\u0438\u044E\u043D\u044C","\u0438\u044E\u043B\u044C","\u0430\u0432\u0433.","\u0441\u0435\u043D\u0442.","\u043E\u043A\u0442.","\u043D\u043E\u044F\u0431.","\u0434\u0435\u043A."],["\u044F\u043D\u0432\u0430\u0440\u044C","\u0444\u0435\u0432\u0440\u0430\u043B\u044C","\u043C\u0430\u0440\u0442","\u0430\u043F\u0440\u0435\u043B\u044C","\u043C\u0430\u0439","\u0438\u044E\u043D\u044C","\u0438\u044E\u043B\u044C","\u0430\u0432\u0433\u0443\u0441\u0442","\u0441\u0435\u043D\u0442\u044F\u0431\u0440\u044C","\u043E\u043A\u0442\u044F\u0431\u0440\u044C","\u043D\u043E\u044F\u0431\u0440\u044C","\u0434\u0435\u043A\u0430\u0431\u0440\u044C"]],[["\u0434\u043E \u043D.\u044D.","\u043D.\u044D."],["\u0434\u043E \u043D. \u044D.","\u043D. \u044D."],["\u0434\u043E \u0420\u043E\u0436\u0434\u0435\u0441\u0442\u0432\u0430 \u0425\u0440\u0438\u0441\u0442\u043E\u0432\u0430","\u043E\u0442 \u0420\u043E\u0436\u0434\u0435\u0441\u0442\u0432\u0430 \u0425\u0440\u0438\u0441\u0442\u043E\u0432\u0430"]],1,[6,0],["dd.MM.y","d MMM y '\u0433'.","d MMMM y '\u0433'.","EEEE, d MMMM y '\u0433'."],["HH:mm","HH:mm:ss","HH:mm:ss z","HH:mm:ss zzzz"],["{1}, {0}",void 0,void 0,void 0],[",","\xA0",";","%","+","-","E","\xD7","\u2030","\u221E","\u043D\u0435\xA0\u0447\u0438\u0441\u043B\u043E",":"],["#,##0.###","#,##0\xA0%","#,##0.00\xA0\xA4","#E0"],"RUB","\u20BD","\u0440\u043E\u0441\u0441\u0438\u0439\u0441\u043A\u0438\u0439 \u0440\u0443\u0431\u043B\u044C",{BYN:[void 0,"\u0440."],GEL:[void 0,"\u10DA"],PHP:[void 0,"\u20B1"],RON:[void 0,"L"],RUB:["\u20BD"],RUR:["\u0440."],THB:["\u0E3F"],TMT:["\u0422\u041C\u0422"],TWD:["NT$"],UAH:["\u20B4"],XXX:["XXXX"]},"ltr",fr];function vr(s){let t=s,e=Math.floor(Math.abs(s)),i=s.toString().replace(/^[^.]*\.?/,"").length;return i===0&&e%100===1?1:i===0&&e%100===2?2:i===0&&e%100===Math.floor(e%100)&&e%100>=3&&e%100<=4||i!==0?3:5}var Ei=["sl",[["d","p"],["dop.","pop."],void 0],[["d","p"],["dop.","pop."],["dopoldne","popoldne"]],[["n","p","t","s","\u010D","p","s"],["ned.","pon.","tor.","sre.","\u010Det.","pet.","sob."],["nedelja","ponedeljek","torek","sreda","\u010Detrtek","petek","sobota"],["ned.","pon.","tor.","sre.","\u010Det.","pet.","sob."]],void 0,[["j","f","m","a","m","j","j","a","s","o","n","d"],["jan.","feb.","mar.","apr.","maj","jun.","jul.","avg.","sep.","okt.","nov.","dec."],["januar","februar","marec","april","maj","junij","julij","avgust","september","oktober","november","december"]],void 0,[["pr. Kr.","po Kr."],void 0,["pred Kristusom","po Kristusu"]],1,[6,0],["d. MM. yy","d. MMM y","d. MMMM y","EEEE, d. MMMM y"],["HH:mm","HH:mm:ss","HH:mm:ss z","HH:mm:ss zzzz"],["{1}, {0}",void 0,"{1} {0}",void 0],[",",".",";","%","+","\u2212","e","\xD7","\u2030","\u221E","NaN",":"],["#,##0.###","#,##0\xA0%","#,##0.00\xA0\xA4","#E0"],"EUR","\u20AC","evro",{AUD:[void 0,"$"],BRL:[void 0,"R$"],BYN:[void 0,"\u0440."],CAD:[void 0,"$"],GBP:[void 0,"\xA3"],MXN:[void 0,"$"],NZD:[void 0,"$"],PHP:[void 0,"\u20B1"],TWD:[void 0,"NT$"],XCD:[void 0,"$"]},"ltr",vr];function kr(s){let t=s,e=Math.floor(Math.abs(s)),i=s.toString().replace(/^[^.]*\.?/,"").length;return e===1&&i===0?1:5}var Ri=["sv",[["fm","em"],void 0,void 0],[["fm","em"],["f.m.","e.m."],["f\xF6rmiddag","eftermiddag"]],[["S","M","T","O","T","F","L"],["s\xF6n","m\xE5n","tis","ons","tors","fre","l\xF6r"],["s\xF6ndag","m\xE5ndag","tisdag","onsdag","torsdag","fredag","l\xF6rdag"],["s\xF6","m\xE5","ti","on","to","fr","l\xF6"]],void 0,[["J","F","M","A","M","J","J","A","S","O","N","D"],["jan.","feb.","mars","apr.","maj","juni","juli","aug.","sep.","okt.","nov.","dec."],["januari","februari","mars","april","maj","juni","juli","augusti","september","oktober","november","december"]],void 0,[["f.Kr.","e.Kr."],void 0,["f\xF6re Kristus","efter Kristus"]],1,[6,0],["y-MM-dd","d MMM y","d MMMM y","EEEE d MMMM y"],["HH:mm","HH:mm:ss","HH:mm:ss z","HH:mm:ss zzzz"],["{1} {0}",void 0,void 0,void 0],[",","\xA0",";","%","+","\u2212","\xD710^","\xD7","\u2030","\u221E","NaN",":"],["#,##0.###","#,##0\xA0%","#,##0.00\xA0\xA4","#E0"],"SEK","kr","svensk krona",{AUD:[void 0,"$"],BBD:["Bds$","$"],BMD:["BM$","$"],BRL:["BR$","R$"],BSD:["BS$","$"],BYN:[void 0,"\u0440."],BZD:["BZ$","$"],CNY:[void 0,"\xA5"],DKK:["Dkr","kr"],DOP:["RD$","$"],EEK:["Ekr"],EGP:["EG\xA3","E\xA3"],ESP:[],GBP:[void 0,"\xA3"],HKD:[void 0,"$"],IEP:["IE\xA3"],INR:[void 0,"\u20B9"],ISK:["Ikr","kr"],JMD:["JM$","$"],JPY:[void 0,"\xA5"],KRW:[void 0,"\u20A9"],NOK:["Nkr","kr"],NZD:[void 0,"$"],PHP:[void 0,"\u20B1"],RON:[void 0,"L"],SEK:["kr"],TWD:[void 0,"NT$"],USD:["US$","$"],VND:[void 0,"\u20AB"]},"ltr",kr];function wr(s){let t=s;return 5}var Bi=["th",[["a","p"],["\u0E01\u0E48\u0E2D\u0E19\u0E40\u0E17\u0E35\u0E48\u0E22\u0E07","\u0E2B\u0E25\u0E31\u0E07\u0E40\u0E17\u0E35\u0E48\u0E22\u0E07"],void 0],[["\u0E01\u0E48\u0E2D\u0E19\u0E40\u0E17\u0E35\u0E48\u0E22\u0E07","\u0E2B\u0E25\u0E31\u0E07\u0E40\u0E17\u0E35\u0E48\u0E22\u0E07"],void 0,void 0],[["\u0E2D\u0E32","\u0E08","\u0E2D","\u0E1E","\u0E1E\u0E24","\u0E28","\u0E2A"],["\u0E2D\u0E32.","\u0E08.","\u0E2D.","\u0E1E.","\u0E1E\u0E24.","\u0E28.","\u0E2A."],["\u0E27\u0E31\u0E19\u0E2D\u0E32\u0E17\u0E34\u0E15\u0E22\u0E4C","\u0E27\u0E31\u0E19\u0E08\u0E31\u0E19\u0E17\u0E23\u0E4C","\u0E27\u0E31\u0E19\u0E2D\u0E31\u0E07\u0E04\u0E32\u0E23","\u0E27\u0E31\u0E19\u0E1E\u0E38\u0E18","\u0E27\u0E31\u0E19\u0E1E\u0E24\u0E2B\u0E31\u0E2A\u0E1A\u0E14\u0E35","\u0E27\u0E31\u0E19\u0E28\u0E38\u0E01\u0E23\u0E4C","\u0E27\u0E31\u0E19\u0E40\u0E2A\u0E32\u0E23\u0E4C"],["\u0E2D\u0E32.","\u0E08.","\u0E2D.","\u0E1E.","\u0E1E\u0E24.","\u0E28.","\u0E2A."]],void 0,[["\u0E21.\u0E04.","\u0E01.\u0E1E.","\u0E21\u0E35.\u0E04.","\u0E40\u0E21.\u0E22.","\u0E1E.\u0E04.","\u0E21\u0E34.\u0E22.","\u0E01.\u0E04.","\u0E2A.\u0E04.","\u0E01.\u0E22.","\u0E15.\u0E04.","\u0E1E.\u0E22.","\u0E18.\u0E04."],void 0,["\u0E21\u0E01\u0E23\u0E32\u0E04\u0E21","\u0E01\u0E38\u0E21\u0E20\u0E32\u0E1E\u0E31\u0E19\u0E18\u0E4C","\u0E21\u0E35\u0E19\u0E32\u0E04\u0E21","\u0E40\u0E21\u0E29\u0E32\u0E22\u0E19","\u0E1E\u0E24\u0E29\u0E20\u0E32\u0E04\u0E21","\u0E21\u0E34\u0E16\u0E38\u0E19\u0E32\u0E22\u0E19","\u0E01\u0E23\u0E01\u0E0E\u0E32\u0E04\u0E21","\u0E2A\u0E34\u0E07\u0E2B\u0E32\u0E04\u0E21","\u0E01\u0E31\u0E19\u0E22\u0E32\u0E22\u0E19","\u0E15\u0E38\u0E25\u0E32\u0E04\u0E21","\u0E1E\u0E24\u0E28\u0E08\u0E34\u0E01\u0E32\u0E22\u0E19","\u0E18\u0E31\u0E19\u0E27\u0E32\u0E04\u0E21"]],void 0,[["\u0E01\u0E48\u0E2D\u0E19 \u0E04.\u0E28.","\u0E04.\u0E28."],void 0,["\u0E1B\u0E35\u0E01\u0E48\u0E2D\u0E19\u0E04\u0E23\u0E34\u0E2A\u0E15\u0E01\u0E32\u0E25","\u0E04\u0E23\u0E34\u0E2A\u0E15\u0E4C\u0E28\u0E31\u0E01\u0E23\u0E32\u0E0A"]],0,[6,0],["d/M/yy","d MMM y","d MMMM G y","EEEE\u0E17\u0E35\u0E48 d MMMM G y"],["HH:mm","HH:mm:ss","H \u0E19\u0E32\u0E2C\u0E34\u0E01\u0E32 mm \u0E19\u0E32\u0E17\u0E35 ss \u0E27\u0E34\u0E19\u0E32\u0E17\u0E35 z","H \u0E19\u0E32\u0E2C\u0E34\u0E01\u0E32 mm \u0E19\u0E32\u0E17\u0E35 ss \u0E27\u0E34\u0E19\u0E32\u0E17\u0E35 zzzz"],["{1} {0}",void 0,void 0,void 0],[".",",",";","%","+","-","E","\xD7","\u2030","\u221E","NaN",":"],["#,##0.###","#,##0%","\xA4#,##0.00","#E0"],"THB","\u0E3F","\u0E1A\u0E32\u0E17",{AUD:["AU$","$"],BYN:[void 0,"\u0440."],PHP:[void 0,"\u20B1"],THB:["\u0E3F"],TWD:["NT$"],USD:["US$","$"],XXX:[]},"ltr",wr];function yr(s){return s===1?1:5}var Mi=["tr",[["\xF6\xF6","\xF6s"],["\xD6\xD6","\xD6S"],void 0],[["\xD6\xD6","\xD6S"],void 0,void 0],[["P","P","S","\xC7","P","C","C"],["Paz","Pzt","Sal","\xC7ar","Per","Cum","Cmt"],["Pazar","Pazartesi","Sal\u0131","\xC7ar\u015Famba","Per\u015Fembe","Cuma","Cumartesi"],["Pa","Pt","Sa","\xC7a","Pe","Cu","Ct"]],void 0,[["O","\u015E","M","N","M","H","T","A","E","E","K","A"],["Oca","\u015Eub","Mar","Nis","May","Haz","Tem","A\u011Fu","Eyl","Eki","Kas","Ara"],["Ocak","\u015Eubat","Mart","Nisan","May\u0131s","Haziran","Temmuz","A\u011Fustos","Eyl\xFCl","Ekim","Kas\u0131m","Aral\u0131k"]],void 0,[["M\xD6","MS"],void 0,["Milattan \xD6nce","Milattan Sonra"]],1,[6,0],["d.MM.y","d MMM y","d MMMM y","d MMMM y EEEE"],["HH:mm","HH:mm:ss","HH:mm:ss z","HH:mm:ss zzzz"],["{1} {0}",void 0,void 0,void 0],[",",".",";","%","+","-","E","\xD7","\u2030","\u221E","NaN",":"],["#,##0.###","%#,##0","\xA4#,##0.00","#E0"],"TRY","\u20BA","T\xFCrk Liras\u0131",{AUD:["AU$","$"],BYN:[void 0,"\u0440."],PHP:[void 0,"\u20B1"],RON:[void 0,"L"],RUR:[void 0,"\u0440."],THB:["\u0E3F"],TRY:["\u20BA"],TWD:["NT$"]},"ltr",yr];function Hr(s){let t=s,e=Math.floor(Math.abs(s)),i=s.toString().replace(/^[^.]*\.?/,"").length;return i===0&&e%10===1&&e%100!==11?1:i===0&&e%10===Math.floor(e%10)&&e%10>=2&&e%10<=4&&!(e%100>=12&&e%100<=14)?3:i===0&&e%10===0||i===0&&e%10===Math.floor(e%10)&&e%10>=5&&e%10<=9||i===0&&e%100===Math.floor(e%100)&&e%100>=11&&e%100<=14?4:5}var Fi=["uk",[["\u0434\u043F","\u043F\u043F"],void 0,void 0],void 0,[["\u041D","\u041F","\u0412","\u0421","\u0427","\u041F","\u0421"],["\u043D\u0434","\u043F\u043D","\u0432\u0442","\u0441\u0440","\u0447\u0442","\u043F\u0442","\u0441\u0431"],["\u043D\u0435\u0434\u0456\u043B\u044F","\u043F\u043E\u043D\u0435\u0434\u0456\u043B\u043E\u043A","\u0432\u0456\u0432\u0442\u043E\u0440\u043E\u043A","\u0441\u0435\u0440\u0435\u0434\u0430","\u0447\u0435\u0442\u0432\u0435\u0440","\u043F\u02BC\u044F\u0442\u043D\u0438\u0446\u044F","\u0441\u0443\u0431\u043E\u0442\u0430"],["\u043D\u0434","\u043F\u043D","\u0432\u0442","\u0441\u0440","\u0447\u0442","\u043F\u0442","\u0441\u0431"]],void 0,[["\u0441","\u043B","\u0431","\u043A","\u0442","\u0447","\u043B","\u0441","\u0432","\u0436","\u043B","\u0433"],["\u0441\u0456\u0447.","\u043B\u044E\u0442.","\u0431\u0435\u0440.","\u043A\u0432\u0456\u0442.","\u0442\u0440\u0430\u0432.","\u0447\u0435\u0440\u0432.","\u043B\u0438\u043F.","\u0441\u0435\u0440\u043F.","\u0432\u0435\u0440.","\u0436\u043E\u0432\u0442.","\u043B\u0438\u0441\u0442.","\u0433\u0440\u0443\u0434."],["\u0441\u0456\u0447\u043D\u044F","\u043B\u044E\u0442\u043E\u0433\u043E","\u0431\u0435\u0440\u0435\u0437\u043D\u044F","\u043A\u0432\u0456\u0442\u043D\u044F","\u0442\u0440\u0430\u0432\u043D\u044F","\u0447\u0435\u0440\u0432\u043D\u044F","\u043B\u0438\u043F\u043D\u044F","\u0441\u0435\u0440\u043F\u043D\u044F","\u0432\u0435\u0440\u0435\u0441\u043D\u044F","\u0436\u043E\u0432\u0442\u043D\u044F","\u043B\u0438\u0441\u0442\u043E\u043F\u0430\u0434\u0430","\u0433\u0440\u0443\u0434\u043D\u044F"]],[["\u0421","\u041B","\u0411","\u041A","\u0422","\u0427","\u041B","\u0421","\u0412","\u0416","\u041B","\u0413"],["\u0441\u0456\u0447","\u043B\u044E\u0442","\u0431\u0435\u0440","\u043A\u0432\u0456","\u0442\u0440\u0430","\u0447\u0435\u0440","\u043B\u0438\u043F","\u0441\u0435\u0440","\u0432\u0435\u0440","\u0436\u043E\u0432","\u043B\u0438\u0441","\u0433\u0440\u0443"],["\u0441\u0456\u0447\u0435\u043D\u044C","\u043B\u044E\u0442\u0438\u0439","\u0431\u0435\u0440\u0435\u0437\u0435\u043D\u044C","\u043A\u0432\u0456\u0442\u0435\u043D\u044C","\u0442\u0440\u0430\u0432\u0435\u043D\u044C","\u0447\u0435\u0440\u0432\u0435\u043D\u044C","\u043B\u0438\u043F\u0435\u043D\u044C","\u0441\u0435\u0440\u043F\u0435\u043D\u044C","\u0432\u0435\u0440\u0435\u0441\u0435\u043D\u044C","\u0436\u043E\u0432\u0442\u0435\u043D\u044C","\u043B\u0438\u0441\u0442\u043E\u043F\u0430\u0434","\u0433\u0440\u0443\u0434\u0435\u043D\u044C"]],[["\u0434\u043E \u043D.\u0435.","\u043D.\u0435."],["\u0434\u043E \u043D. \u0435.","\u043D. \u0435."],["\u0434\u043E \u043D\u0430\u0448\u043E\u0457 \u0435\u0440\u0438","\u043D\u0430\u0448\u043E\u0457 \u0435\u0440\u0438"]],1,[6,0],["dd.MM.yy","d MMM y '\u0440'.","d MMMM y '\u0440'.","EEEE, d MMMM y '\u0440'."],["HH:mm","HH:mm:ss","HH:mm:ss z","HH:mm:ss zzzz"],["{1}, {0}",void 0,"{1} '\u043E' {0}",void 0],[",","\xA0",";","%","+","-","\u0415","\xD7","\u2030","\u221E","NaN",":"],["#,##0.###","#,##0%","#,##0.00\xA0\xA4","#E0"],"UAH","\u20B4","\u0443\u043A\u0440\u0430\u0457\u043D\u0441\u044C\u043A\u0430 \u0433\u0440\u0438\u0432\u043D\u044F",{AUD:[void 0,"$"],BRL:[void 0,"R$"],BYN:[void 0,"\u0440."],CAD:[void 0,"$"],CNY:[void 0,"\xA5"],EUR:[void 0,"\u20AC"],GBP:[void 0,"\xA3"],HKD:[void 0,"$"],ILS:[void 0,"\u20AA"],INR:[void 0,"\u20B9"],KRW:[void 0,"\u20A9"],MXN:[void 0,"$"],NZD:[void 0,"$"],PHP:[void 0,"\u20B1"],RUR:[void 0,"\u0440."],TWD:[void 0,"$"],UAH:["\u20B4"],UAK:["\u043A\u0440\u0431."],USD:[void 0,"$"],VND:[void 0,"\u20AB"],XCD:[void 0,"$"]},"ltr",Hr];function zr(s){let t=s;return 5}var qi=["zh-Hans",[["\u4E0A\u5348","\u4E0B\u5348"],void 0,void 0],void 0,[["\u65E5","\u4E00","\u4E8C","\u4E09","\u56DB","\u4E94","\u516D"],["\u5468\u65E5","\u5468\u4E00","\u5468\u4E8C","\u5468\u4E09","\u5468\u56DB","\u5468\u4E94","\u5468\u516D"],["\u661F\u671F\u65E5","\u661F\u671F\u4E00","\u661F\u671F\u4E8C","\u661F\u671F\u4E09","\u661F\u671F\u56DB","\u661F\u671F\u4E94","\u661F\u671F\u516D"],["\u5468\u65E5","\u5468\u4E00","\u5468\u4E8C","\u5468\u4E09","\u5468\u56DB","\u5468\u4E94","\u5468\u516D"]],void 0,[["1","2","3","4","5","6","7","8","9","10","11","12"],["1\u6708","2\u6708","3\u6708","4\u6708","5\u6708","6\u6708","7\u6708","8\u6708","9\u6708","10\u6708","11\u6708","12\u6708"],["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00\u6708","\u5341\u4E8C\u6708"]],void 0,[["\u516C\u5143\u524D","\u516C\u5143"],void 0,void 0],0,[6,0],["y/M/d","y\u5E74M\u6708d\u65E5",void 0,"y\u5E74M\u6708d\u65E5EEEE"],["HH:mm","HH:mm:ss","z HH:mm:ss","zzzz HH:mm:ss"],["{1} {0}",void 0,void 0,void 0],[".",",",";","%","+","-","E","\xD7","\u2030","\u221E","NaN",":"],["#,##0.###","#,##0%","\xA4#,##0.00","#E0"],"CNY","\xA5","\u4EBA\u6C11\u5E01",{AUD:["AU$","$"],BYN:[void 0,"\u0440."],CNY:["\xA5"],ILR:["ILS"],JPY:["JP\xA5","\xA5"],KRW:["\uFFE6","\u20A9"],PHP:[void 0,"\u20B1"],RUR:[void 0,"\u0440."],TWD:["NT$"],USD:["US$","$"],XXX:[]},"ltr",zr];function Sr(s){let t=s;return 5}var Vi=["zh-Hant",[["\u4E0A\u5348","\u4E0B\u5348"],void 0,void 0],void 0,[["\u65E5","\u4E00","\u4E8C","\u4E09","\u56DB","\u4E94","\u516D"],["\u9031\u65E5","\u9031\u4E00","\u9031\u4E8C","\u9031\u4E09","\u9031\u56DB","\u9031\u4E94","\u9031\u516D"],["\u661F\u671F\u65E5","\u661F\u671F\u4E00","\u661F\u671F\u4E8C","\u661F\u671F\u4E09","\u661F\u671F\u56DB","\u661F\u671F\u4E94","\u661F\u671F\u516D"],["\u65E5","\u4E00","\u4E8C","\u4E09","\u56DB","\u4E94","\u516D"]],void 0,[["1","2","3","4","5","6","7","8","9","10","11","12"],["1\u6708","2\u6708","3\u6708","4\u6708","5\u6708","6\u6708","7\u6708","8\u6708","9\u6708","10\u6708","11\u6708","12\u6708"],void 0],void 0,[["\u897F\u5143\u524D","\u897F\u5143"],void 0,void 0],0,[6,0],["y/M/d","y\u5E74M\u6708d\u65E5",void 0,"y\u5E74M\u6708d\u65E5 EEEE"],["Bh:mm","Bh:mm:ss","Bh:mm:ss [z]","Bh:mm:ss [zzzz]"],["{1} {0}",void 0,void 0,void 0],[".",",",";","%","+","-","E","\xD7","\u2030","\u221E","\u975E\u6578\u503C",":"],["#,##0.###","#,##0%","\xA4#,##0.00","#E0"],"TWD","$","\u65B0\u53F0\u5E63",{AUD:["AU$","$"],BYN:[void 0,"\u0440."],KRW:["\uFFE6","\u20A9"],PHP:[void 0,"\u20B1"],RON:[void 0,"L"],RUR:[void 0,"\u0440."],TWD:["$"],USD:["US$","$"],XXX:[]},"ltr",Sr];H(yi);H(wi);H(zi);H(Ii);H(ki);H(xi);H(qi);H(Vi);H(ji);H(Pi);H(Hi);H(Ki);H(Mi);H(Ni);H(fi);H(Ri);H(Ui);H(Ei);H(Ci);H(Ai);H(vi);H(Ti);H(Di);H(Bi);H(Fi);H(Si);var at={en:"en",de:"de",fi:"fi",fr:"fr",pl:"pl",cs:"cs",ru:"ru","zh-CN":"zh-Hans","zh-TW":"zh-Hant",hu:"hu",ja:"ja",es:"es",nl:"nl",tr:"tr",it:"it",bg:"bg",sl:"sl",sv:"sv",no:"nb",pt:"pt","pt-BR":"pt",id:"id",ca:"ca",ko:"ko",mk:"mk",th:"th",uk:"uk",he:"he"};var Oi=(()=>{class s{static \u0275fac=function(i){return new(i||s)};static \u0275mod=M({type:s});static \u0275inj=B({providers:[Re],imports:[te,be,he,L,oi]})}return s})();var Li=(()=>{class s{static \u0275fac=function(i){return new(i||s)};static \u0275mod=M({type:s});static \u0275inj=B({imports:[te,L.forChild()]})}return s})();var Gi=(()=>{class s{static \u0275fac=function(i){return new(i||s)};static \u0275mod=M({type:s});static \u0275inj=B({providers:[ui(di())],imports:[te,we,be,he,L.forChild(),Ce,ni,xe,_i,mi,gi,ai,li]})}return s})();function Yi(s){return new w(3e3,!1)}function jr(){return new w(3100,!1)}function Ar(){return new w(3101,!1)}function Nr(s){return new w(3001,!1)}function Pr(s){return new w(3003,!1)}function Tr(s){return new w(3004,!1)}function Dr(s,t){return new w(3005,!1)}function Ur(){return new w(3006,!1)}function Kr(){return new w(3007,!1)}function Ir(s,t){return new w(3008,!1)}function Cr(s){return new w(3002,!1)}function xr(s,t,e,i,r){return new w(3010,!1)}function Er(){return new w(3011,!1)}function Rr(){return new w(3012,!1)}function Br(){return new w(3200,!1)}function Mr(){return new w(3202,!1)}function Fr(){return new w(3013,!1)}function qr(s){return new w(3014,!1)}function Vr(s){return new w(3015,!1)}function Or(s){return new w(3016,!1)}function Lr(s,t){return new w(3404,!1)}function Gr(s){return new w(3502,!1)}function Yr(s){return new w(3503,!1)}function Wr(){return new w(3300,!1)}function Jr(s){return new w(3504,!1)}function $r(s){return new w(3301,!1)}function Zr(s,t){return new w(3302,!1)}function Qr(s){return new w(3303,!1)}function Xr(s,t){return new w(3400,!1)}function eo(s){return new w(3401,!1)}function to(s){return new w(3402,!1)}function io(s,t){return new w(3505,!1)}function ie(s){switch(s.length){case 0:return new ge;case 1:return s[0];default:return new ot(s)}}function ns(s,t,e=new Map,i=new Map){let r=[],o=[],a=-1,n=null;if(t.forEach(l=>{let d=l.get("offset"),u=d==a,c=u&&n||new Map;l.forEach((f,h)=>{let p=h,b=f;if(h!=="offset")switch(p=s.normalizePropertyName(p,r),b){case Ie:b=e.get(h);break;case G:b=i.get(h);break;default:b=s.normalizeStyleValue(h,p,b,r);break}c.set(p,b)}),u||o.push(c),n=c,a=d}),r.length)throw Gr(r);return o}function Nt(s,t,e,i){switch(t){case"start":s.onStart(()=>i(e&&nt(e,"start",s)));break;case"done":s.onDone(()=>i(e&&nt(e,"done",s)));break;case"destroy":s.onDestroy(()=>i(e&&nt(e,"destroy",s)));break}}function nt(s,t,e){let i=e.totalTime,r=!!e.disabled,o=Pt(s.element,s.triggerName,s.fromState,s.toState,t||s.phaseName,i==null?s.totalTime:i,r),a=s._data;return a!=null&&(o._data=a),o}function Pt(s,t,e,i,r="",o=0,a){return{element:s,triggerName:t,fromState:e,toState:i,phaseName:r,totalTime:o,disabled:!!a}}function C(s,t,e){let i=s.get(t);return i||s.set(t,i=e),i}function Wi(s){let t=s.indexOf(":"),e=s.substring(1,t),i=s.slice(t+1);return[e,i]}var so=typeof document>"u"?null:document.documentElement;function Tt(s){let t=s.parentNode||s.host||null;return t===so?null:t}function ro(s){return s.substring(1,6)=="ebkit"}var oe=null,Ji=!1;function oo(s){oe||(oe=ao()||{},Ji=oe.style?"WebkitAppearance"in oe.style:!1);let t=!0;return oe.style&&!ro(s)&&(t=s in oe.style,!t&&Ji&&(t="Webkit"+s.charAt(0).toUpperCase()+s.slice(1)in oe.style)),t}function ao(){return typeof document<"u"?document.body:null}function ls(s,t){for(;t;){if(t===s)return!0;t=Tt(t)}return!1}function ds(s,t,e){if(e)return Array.from(s.querySelectorAll(t));let i=s.querySelector(t);return i?[i]:[]}var Dt=(()=>{class s{validateStyleProperty(e){return oo(e)}containsElement(e,i){return ls(e,i)}getParentElement(e){return Tt(e)}query(e,i,r){return ds(e,i,r)}computeStyle(e,i,r){return r||""}animate(e,i,r,o,a,n=[],l){return new ge(r,o)}static \u0275fac=function(i){return new(i||s)};static \u0275prov=ee({token:s,factory:s.\u0275fac})}return s})(),le=class{static NOOP=new Dt},de=class{};var no=1e3,us="{{",lo="}}",cs="ng-enter",mt="ng-leave",Be="ng-trigger",Oe=".ng-trigger",$i="ng-animating",pt=".ng-animating";function Q(s){if(typeof s=="number")return s;let t=s.match(/^(-?[\.\d]+)(m?s)/);return!t||t.length<2?0:_t(parseFloat(t[1]),t[2])}function _t(s,t){switch(t){case"s":return s*no;default:return s}}function Le(s,t,e){return s.hasOwnProperty("duration")?s:uo(s,t,e)}function uo(s,t,e){let i=/^(-?[\.\d]+)(m?s)(?:\s+(-?[\.\d]+)(m?s))?(?:\s+([-a-z]+(?:\(.+?\))?))?$/i,r,o=0,a="";if(typeof s=="string"){let n=s.match(i);if(n===null)return t.push(Yi(s)),{duration:0,delay:0,easing:""};r=_t(parseFloat(n[1]),n[2]);let l=n[3];l!=null&&(o=_t(parseFloat(l),n[4]));let d=n[5];d&&(a=d)}else r=s;if(!e){let n=!1,l=t.length;r<0&&(t.push(jr()),n=!0),o<0&&(t.push(Ar()),n=!0),n&&t.splice(l,0,Yi(s))}return{duration:r,delay:o,easing:a}}function co(s){return s.length?s[0]instanceof Map?s:s.map(t=>new Map(Object.entries(t))):[]}function Y(s,t,e){t.forEach((i,r)=>{let o=Ut(r);e&&!e.has(r)&&e.set(r,s.style[o]),s.style[o]=i})}function ne(s,t){t.forEach((e,i)=>{let r=Ut(i);s.style[r]=""})}function ye(s){return Array.isArray(s)?s.length==1?s[0]:ei(s):s}function go(s,t,e){let i=t.params||{},r=gs(s);r.length&&r.forEach(o=>{i.hasOwnProperty(o)||e.push(Nr(o))})}var bt=new RegExp(`${us}\\s*(.+?)\\s*${lo}`,"g");function gs(s){let t=[];if(typeof s=="string"){let e;for(;e=bt.exec(s);)t.push(e[1]);bt.lastIndex=0}return t}function ze(s,t,e){let i=`${s}`,r=i.replace(bt,(o,a)=>{let n=t[a];return n==null&&(e.push(Pr(a)),n=""),n.toString()});return r==i?s:r}var mo=/-+([a-z0-9])/g;function Ut(s){return s.replace(mo,(...t)=>t[1].toUpperCase())}function po(s,t){return s===0||t===0}function _o(s,t,e){if(e.size&&t.length){let i=t[0],r=[];if(e.forEach((o,a)=>{i.has(a)||r.push(a),i.set(a,o)}),r.length)for(let o=1;o<t.length;o++){let a=t[o];r.forEach(n=>a.set(n,Kt(s,n)))}}return t}function I(s,t,e){switch(t.type){case k.Trigger:return s.visitTrigger(t,e);case k.State:return s.visitState(t,e);case k.Transition:return s.visitTransition(t,e);case k.Sequence:return s.visitSequence(t,e);case k.Group:return s.visitGroup(t,e);case k.Animate:return s.visitAnimate(t,e);case k.Keyframes:return s.visitKeyframes(t,e);case k.Style:return s.visitStyle(t,e);case k.Reference:return s.visitReference(t,e);case k.AnimateChild:return s.visitAnimateChild(t,e);case k.AnimateRef:return s.visitAnimateRef(t,e);case k.Query:return s.visitQuery(t,e);case k.Stagger:return s.visitStagger(t,e);default:throw Tr(t.type)}}function Kt(s,t){return window.getComputedStyle(s)[t]}var bo=new Set(["width","height","minWidth","minHeight","maxWidth","maxHeight","left","top","bottom","right","fontSize","outlineWidth","outlineOffset","paddingTop","paddingLeft","paddingBottom","paddingRight","marginTop","marginLeft","marginBottom","marginRight","borderRadius","borderWidth","borderTopWidth","borderLeftWidth","borderRightWidth","borderBottomWidth","textIndent","perspective"]),Ge=class extends de{normalizePropertyName(t,e){return Ut(t)}normalizeStyleValue(t,e,i,r){let o="",a=i.toString().trim();if(bo.has(e)&&i!==0&&i!=="0")if(typeof i=="number")o="px";else{let n=i.match(/^[+-]?[\d\.]+([a-z]*)$/);n&&n[1].length==0&&r.push(Dr(t,i))}return a+o}};var Ye="*";function ho(s,t){let e=[];return typeof s=="string"?s.split(/\s*,\s*/).forEach(i=>fo(i,e,t)):e.push(s),e}function fo(s,t,e){if(s[0]==":"){let l=vo(s,e);if(typeof l=="function"){t.push(l);return}s=l}let i=s.match(/^(\*|[-\w]+)\s*(<?[=-]>)\s*(\*|[-\w]+)$/);if(i==null||i.length<4)return e.push(Vr(s)),t;let r=i[1],o=i[2],a=i[3];t.push(Zi(r,a));let n=r==Ye&&a==Ye;o[0]=="<"&&!n&&t.push(Zi(a,r))}function vo(s,t){switch(s){case":enter":return"void => *";case":leave":return"* => void";case":increment":return(e,i)=>parseFloat(i)>parseFloat(e);case":decrement":return(e,i)=>parseFloat(i)<parseFloat(e);default:return t.push(Or(s)),"* => *"}}var Me=new Set(["true","1"]),Fe=new Set(["false","0"]);function Zi(s,t){let e=Me.has(s)||Fe.has(s),i=Me.has(t)||Fe.has(t);return(r,o)=>{let a=s==Ye||s==r,n=t==Ye||t==o;return!a&&e&&typeof r=="boolean"&&(a=r?Me.has(s):Fe.has(s)),!n&&i&&typeof o=="boolean"&&(n=o?Me.has(t):Fe.has(t)),a&&n}}var ms=":self",ko=new RegExp(`s*${ms}s*,?`,"g");function ps(s,t,e,i){return new ht(s).build(t,e,i)}var Qi="",ht=class{_driver;constructor(t){this._driver=t}build(t,e,i){let r=new ft(e);return this._resetContextStyleTimingState(r),I(this,ye(t),r)}_resetContextStyleTimingState(t){t.currentQuerySelector=Qi,t.collectedStyles=new Map,t.collectedStyles.set(Qi,new Map),t.currentTime=0}visitTrigger(t,e){let i=e.queryCount=0,r=e.depCount=0,o=[],a=[];return t.name.charAt(0)=="@"&&e.errors.push(Ur()),t.definitions.forEach(n=>{if(this._resetContextStyleTimingState(e),n.type==k.State){let l=n,d=l.name;d.toString().split(/\s*,\s*/).forEach(u=>{l.name=u,o.push(this.visitState(l,e))}),l.name=d}else if(n.type==k.Transition){let l=this.visitTransition(n,e);i+=l.queryCount,r+=l.depCount,a.push(l)}else e.errors.push(Kr())}),{type:k.Trigger,name:t.name,states:o,transitions:a,queryCount:i,depCount:r,options:null}}visitState(t,e){let i=this.visitStyle(t.styles,e),r=t.options&&t.options.params||null;if(i.containsDynamicStyles){let o=new Set,a=r||{};i.styles.forEach(n=>{n instanceof Map&&n.forEach(l=>{gs(l).forEach(d=>{a.hasOwnProperty(d)||o.add(d)})})}),o.size&&e.errors.push(Ir(t.name,[...o.values()]))}return{type:k.State,name:t.name,style:i,options:r?{params:r}:null}}visitTransition(t,e){e.queryCount=0,e.depCount=0;let i=I(this,ye(t.animation),e),r=ho(t.expr,e.errors);return{type:k.Transition,matchers:r,animation:i,queryCount:e.queryCount,depCount:e.depCount,options:ae(t.options)}}visitSequence(t,e){return{type:k.Sequence,steps:t.steps.map(i=>I(this,i,e)),options:ae(t.options)}}visitGroup(t,e){let i=e.currentTime,r=0,o=t.steps.map(a=>{e.currentTime=i;let n=I(this,a,e);return r=Math.max(r,e.currentTime),n});return e.currentTime=r,{type:k.Group,steps:o,options:ae(t.options)}}visitAnimate(t,e){let i=zo(t.timings,e.errors);e.currentAnimateTimings=i;let r,o=t.styles?t.styles:rt({});if(o.type==k.Keyframes)r=this.visitKeyframes(o,e);else{let a=t.styles,n=!1;if(!a){n=!0;let d={};i.easing&&(d.easing=i.easing),a=rt(d)}e.currentTime+=i.duration+i.delay;let l=this.visitStyle(a,e);l.isEmptyStep=n,r=l}return e.currentAnimateTimings=null,{type:k.Animate,timings:i,style:r,options:null}}visitStyle(t,e){let i=this._makeStyleAst(t,e);return this._validateStyleAst(i,e),i}_makeStyleAst(t,e){let i=[],r=Array.isArray(t.styles)?t.styles:[t.styles];for(let n of r)typeof n=="string"?n===G?i.push(n):e.errors.push(Cr(n)):i.push(new Map(Object.entries(n)));let o=!1,a=null;return i.forEach(n=>{if(n instanceof Map&&(n.has("easing")&&(a=n.get("easing"),n.delete("easing")),!o)){for(let l of n.values())if(l.toString().indexOf(us)>=0){o=!0;break}}}),{type:k.Style,styles:i,easing:a,offset:t.offset,containsDynamicStyles:o,options:null}}_validateStyleAst(t,e){let i=e.currentAnimateTimings,r=e.currentTime,o=e.currentTime;i&&o>0&&(o-=i.duration+i.delay),t.styles.forEach(a=>{typeof a!="string"&&a.forEach((n,l)=>{let d=e.collectedStyles.get(e.currentQuerySelector),u=d.get(l),c=!0;u&&(o!=r&&o>=u.startTime&&r<=u.endTime&&(e.errors.push(xr(l,u.startTime,u.endTime,o,r)),c=!1),o=u.startTime),c&&d.set(l,{startTime:o,endTime:r}),e.options&&go(n,e.options,e.errors)})})}visitKeyframes(t,e){let i={type:k.Keyframes,styles:[],options:null};if(!e.currentAnimateTimings)return e.errors.push(Er()),i;let r=1,o=0,a=[],n=!1,l=!1,d=0,u=t.steps.map(A=>{let N=this._makeStyleAst(A,e),D=N.offset!=null?N.offset:Ho(N.styles),P=0;return D!=null&&(o++,P=N.offset=D),l=l||P<0||P>1,n=n||P<d,d=P,a.push(P),N});l&&e.errors.push(Rr()),n&&e.errors.push(Br());let c=t.steps.length,f=0;o>0&&o<c?e.errors.push(Mr()):o==0&&(f=r/(c-1));let h=c-1,p=e.currentTime,b=e.currentAnimateTimings,z=b.duration;return u.forEach((A,N)=>{let D=f>0?N==h?1:f*N:a[N],P=D*z;e.currentTime=p+b.delay+P,b.duration=P,this._validateStyleAst(A,e),A.offset=D,i.styles.push(A)}),i}visitReference(t,e){return{type:k.Reference,animation:I(this,ye(t.animation),e),options:ae(t.options)}}visitAnimateChild(t,e){return e.depCount++,{type:k.AnimateChild,options:ae(t.options)}}visitAnimateRef(t,e){return{type:k.AnimateRef,animation:this.visitReference(t.animation,e),options:ae(t.options)}}visitQuery(t,e){let i=e.currentQuerySelector,r=t.options||{};e.queryCount++,e.currentQuery=t;let[o,a]=wo(t.selector);e.currentQuerySelector=i.length?i+" "+o:o,C(e.collectedStyles,e.currentQuerySelector,new Map);let n=I(this,ye(t.animation),e);return e.currentQuery=null,e.currentQuerySelector=i,{type:k.Query,selector:o,limit:r.limit||0,optional:!!r.optional,includeSelf:a,animation:n,originalSelector:t.selector,options:ae(t.options)}}visitStagger(t,e){e.currentQuery||e.errors.push(Fr());let i=t.timings==="full"?{duration:0,delay:0,easing:"full"}:Le(t.timings,e.errors,!0);return{type:k.Stagger,animation:I(this,ye(t.animation),e),timings:i,options:null}}};function wo(s){let t=!!s.split(/\s*,\s*/).find(e=>e==ms);return t&&(s=s.replace(ko,"")),s=s.replace(/@\*/g,Oe).replace(/@\w+/g,e=>Oe+"-"+e.slice(1)).replace(/:animating/g,pt),[s,t]}function yo(s){return s?Pe({},s):null}var ft=class{errors;queryCount=0;depCount=0;currentTransition=null;currentQuery=null;currentQuerySelector=null;currentAnimateTimings=null;currentTime=0;collectedStyles=new Map;options=null;unsupportedCSSPropertiesFound=new Set;constructor(t){this.errors=t}};function Ho(s){if(typeof s=="string")return null;let t=null;if(Array.isArray(s))s.forEach(e=>{if(e instanceof Map&&e.has("offset")){let i=e;t=parseFloat(i.get("offset")),i.delete("offset")}});else if(s instanceof Map&&s.has("offset")){let e=s;t=parseFloat(e.get("offset")),e.delete("offset")}return t}function zo(s,t){if(s.hasOwnProperty("duration"))return s;if(typeof s=="number"){let o=Le(s,t).duration;return lt(o,0,"")}let e=s;if(e.split(/\s+/).some(o=>o.charAt(0)=="{"&&o.charAt(1)=="{")){let o=lt(0,0,"");return o.dynamic=!0,o.strValue=e,o}let r=Le(e,t);return lt(r.duration,r.delay,r.easing)}function ae(s){return s?(s=Pe({},s),s.params&&(s.params=yo(s.params))):s={},s}function lt(s,t,e){return{duration:s,delay:t,easing:e}}function It(s,t,e,i,r,o,a=null,n=!1){return{type:1,element:s,keyframes:t,preStyleProps:e,postStyleProps:i,duration:r,delay:o,totalTime:r+o,easing:a,subTimeline:n}}var Se=class{_map=new Map;get(t){return this._map.get(t)||[]}append(t,e){let i=this._map.get(t);i||this._map.set(t,i=[]),i.push(...e)}has(t){return this._map.has(t)}clear(){this._map.clear()}},So=1,jo=":enter",Ao=new RegExp(jo,"g"),No=":leave",Po=new RegExp(No,"g");function _s(s,t,e,i,r,o=new Map,a=new Map,n,l,d=[]){return new vt().buildKeyframes(s,t,e,i,r,o,a,n,l,d)}var vt=class{buildKeyframes(t,e,i,r,o,a,n,l,d,u=[]){d=d||new Se;let c=new kt(t,e,d,r,o,u,[]);c.options=l;let f=l.delay?Q(l.delay):0;c.currentTimeline.delayNextStep(f),c.currentTimeline.setStyles([a],null,c.errors,l),I(this,i,c);let h=c.timelines.filter(p=>p.containsAnimation());if(h.length&&n.size){let p;for(let b=h.length-1;b>=0;b--){let z=h[b];if(z.element===e){p=z;break}}p&&!p.allowOnlyTimelineStyles()&&p.setStyles([n],null,c.errors,l)}return h.length?h.map(p=>p.buildKeyframes()):[It(e,[],[],[],0,f,"",!1)]}visitTrigger(t,e){}visitState(t,e){}visitTransition(t,e){}visitAnimateChild(t,e){let i=e.subInstructions.get(e.element);if(i){let r=e.createSubContext(t.options),o=e.currentTimeline.currentTime,a=this._visitSubInstructions(i,r,r.options);o!=a&&e.transformIntoNewTimeline(a)}e.previousNode=t}visitAnimateRef(t,e){let i=e.createSubContext(t.options);i.transformIntoNewTimeline(),this._applyAnimationRefDelays([t.options,t.animation.options],e,i),this.visitReference(t.animation,i),e.transformIntoNewTimeline(i.currentTimeline.currentTime),e.previousNode=t}_applyAnimationRefDelays(t,e,i){var r;for(let o of t){let a=o==null?void 0:o.delay;if(a){let n=typeof a=="number"?a:Q(ze(a,(r=o==null?void 0:o.params)!=null?r:{},e.errors));i.delayNextStep(n)}}}_visitSubInstructions(t,e,i){let o=e.currentTimeline.currentTime,a=i.duration!=null?Q(i.duration):null,n=i.delay!=null?Q(i.delay):null;return a!==0&&t.forEach(l=>{let d=e.appendInstructionToTimeline(l,a,n);o=Math.max(o,d.duration+d.delay)}),o}visitReference(t,e){e.updateOptions(t.options,!0),I(this,t.animation,e),e.previousNode=t}visitSequence(t,e){let i=e.subContextCount,r=e,o=t.options;if(o&&(o.params||o.delay)&&(r=e.createSubContext(o),r.transformIntoNewTimeline(),o.delay!=null)){r.previousNode.type==k.Style&&(r.currentTimeline.snapshotCurrentStyles(),r.previousNode=We);let a=Q(o.delay);r.delayNextStep(a)}t.steps.length&&(t.steps.forEach(a=>I(this,a,r)),r.currentTimeline.applyStylesToKeyframe(),r.subContextCount>i&&r.transformIntoNewTimeline()),e.previousNode=t}visitGroup(t,e){let i=[],r=e.currentTimeline.currentTime,o=t.options&&t.options.delay?Q(t.options.delay):0;t.steps.forEach(a=>{let n=e.createSubContext(t.options);o&&n.delayNextStep(o),I(this,a,n),r=Math.max(r,n.currentTimeline.currentTime),i.push(n.currentTimeline)}),i.forEach(a=>e.currentTimeline.mergeTimelineCollectedStyles(a)),e.transformIntoNewTimeline(r),e.previousNode=t}_visitTiming(t,e){if(t.dynamic){let i=t.strValue,r=e.params?ze(i,e.params,e.errors):i;return Le(r,e.errors)}else return{duration:t.duration,delay:t.delay,easing:t.easing}}visitAnimate(t,e){let i=e.currentAnimateTimings=this._visitTiming(t.timings,e),r=e.currentTimeline;i.delay&&(e.incrementTime(i.delay),r.snapshotCurrentStyles());let o=t.style;o.type==k.Keyframes?this.visitKeyframes(o,e):(e.incrementTime(i.duration),this.visitStyle(o,e),r.applyStylesToKeyframe()),e.currentAnimateTimings=null,e.previousNode=t}visitStyle(t,e){let i=e.currentTimeline,r=e.currentAnimateTimings;!r&&i.hasCurrentStyleProperties()&&i.forwardFrame();let o=r&&r.easing||t.easing;t.isEmptyStep?i.applyEmptyStep(o):i.setStyles(t.styles,o,e.errors,e.options),e.previousNode=t}visitKeyframes(t,e){let i=e.currentAnimateTimings,r=e.currentTimeline.duration,o=i.duration,n=e.createSubContext().currentTimeline;n.easing=i.easing,t.styles.forEach(l=>{let d=l.offset||0;n.forwardTime(d*o),n.setStyles(l.styles,l.easing,e.errors,e.options),n.applyStylesToKeyframe()}),e.currentTimeline.mergeTimelineCollectedStyles(n),e.transformIntoNewTimeline(r+o),e.previousNode=t}visitQuery(t,e){let i=e.currentTimeline.currentTime,r=t.options||{},o=r.delay?Q(r.delay):0;o&&(e.previousNode.type===k.Style||i==0&&e.currentTimeline.hasCurrentStyleProperties())&&(e.currentTimeline.snapshotCurrentStyles(),e.previousNode=We);let a=i,n=e.invokeQuery(t.selector,t.originalSelector,t.limit,t.includeSelf,!!r.optional,e.errors);e.currentQueryTotal=n.length;let l=null;n.forEach((d,u)=>{e.currentQueryIndex=u;let c=e.createSubContext(t.options,d);o&&c.delayNextStep(o),d===e.element&&(l=c.currentTimeline),I(this,t.animation,c),c.currentTimeline.applyStylesToKeyframe();let f=c.currentTimeline.currentTime;a=Math.max(a,f)}),e.currentQueryIndex=0,e.currentQueryTotal=0,e.transformIntoNewTimeline(a),l&&(e.currentTimeline.mergeTimelineCollectedStyles(l),e.currentTimeline.snapshotCurrentStyles()),e.previousNode=t}visitStagger(t,e){let i=e.parentContext,r=e.currentTimeline,o=t.timings,a=Math.abs(o.duration),n=a*(e.currentQueryTotal-1),l=a*e.currentQueryIndex;switch(o.duration<0?"reverse":o.easing){case"reverse":l=n-l;break;case"full":l=i.currentStaggerTime;break}let u=e.currentTimeline;l&&u.delayNextStep(l);let c=u.currentTime;I(this,t.animation,e),e.previousNode=t,i.currentStaggerTime=r.currentTime-c+(r.startTime-i.currentTimeline.startTime)}},We={},kt=class s{_driver;element;subInstructions;_enterClassName;_leaveClassName;errors;timelines;parentContext=null;currentTimeline;currentAnimateTimings=null;previousNode=We;subContextCount=0;options={};currentQueryIndex=0;currentQueryTotal=0;currentStaggerTime=0;constructor(t,e,i,r,o,a,n,l){this._driver=t,this.element=e,this.subInstructions=i,this._enterClassName=r,this._leaveClassName=o,this.errors=a,this.timelines=n,this.currentTimeline=l||new Je(this._driver,e,0),n.push(this.currentTimeline)}get params(){return this.options.params}updateOptions(t,e){if(!t)return;let i=t,r=this.options;i.duration!=null&&(r.duration=Q(i.duration)),i.delay!=null&&(r.delay=Q(i.delay));let o=i.params;if(o){let a=r.params;a||(a=this.options.params={}),Object.keys(o).forEach(n=>{(!e||!a.hasOwnProperty(n))&&(a[n]=ze(o[n],a,this.errors))})}}_copyOptions(){let t={};if(this.options){let e=this.options.params;if(e){let i=t.params={};Object.keys(e).forEach(r=>{i[r]=e[r]})}}return t}createSubContext(t=null,e,i){let r=e||this.element,o=new s(this._driver,r,this.subInstructions,this._enterClassName,this._leaveClassName,this.errors,this.timelines,this.currentTimeline.fork(r,i||0));return o.previousNode=this.previousNode,o.currentAnimateTimings=this.currentAnimateTimings,o.options=this._copyOptions(),o.updateOptions(t),o.currentQueryIndex=this.currentQueryIndex,o.currentQueryTotal=this.currentQueryTotal,o.parentContext=this,this.subContextCount++,o}transformIntoNewTimeline(t){return this.previousNode=We,this.currentTimeline=this.currentTimeline.fork(this.element,t),this.timelines.push(this.currentTimeline),this.currentTimeline}appendInstructionToTimeline(t,e,i){let r={duration:e!=null?e:t.duration,delay:this.currentTimeline.currentTime+(i!=null?i:0)+t.delay,easing:""},o=new wt(this._driver,t.element,t.keyframes,t.preStyleProps,t.postStyleProps,r,t.stretchStartingKeyframe);return this.timelines.push(o),r}incrementTime(t){this.currentTimeline.forwardTime(this.currentTimeline.duration+t)}delayNextStep(t){t>0&&this.currentTimeline.delayNextStep(t)}invokeQuery(t,e,i,r,o,a){let n=[];if(r&&n.push(this.element),t.length>0){t=t.replace(Ao,"."+this._enterClassName),t=t.replace(Po,"."+this._leaveClassName);let l=i!=1,d=this._driver.query(this.element,t,l);i!==0&&(d=i<0?d.slice(d.length+i,d.length):d.slice(0,i)),n.push(...d)}return!o&&n.length==0&&a.push(qr(e)),n}},Je=class s{_driver;element;startTime;_elementTimelineStylesLookup;duration=0;easing=null;_previousKeyframe=new Map;_currentKeyframe=new Map;_keyframes=new Map;_styleSummary=new Map;_localTimelineStyles=new Map;_globalTimelineStyles;_pendingStyles=new Map;_backFill=new Map;_currentEmptyStepKeyframe=null;constructor(t,e,i,r){this._driver=t,this.element=e,this.startTime=i,this._elementTimelineStylesLookup=r,this._elementTimelineStylesLookup||(this._elementTimelineStylesLookup=new Map),this._globalTimelineStyles=this._elementTimelineStylesLookup.get(e),this._globalTimelineStyles||(this._globalTimelineStyles=this._localTimelineStyles,this._elementTimelineStylesLookup.set(e,this._localTimelineStyles)),this._loadKeyframe()}containsAnimation(){switch(this._keyframes.size){case 0:return!1;case 1:return this.hasCurrentStyleProperties();default:return!0}}hasCurrentStyleProperties(){return this._currentKeyframe.size>0}get currentTime(){return this.startTime+this.duration}delayNextStep(t){let e=this._keyframes.size===1&&this._pendingStyles.size;this.duration||e?(this.forwardTime(this.currentTime+t),e&&this.snapshotCurrentStyles()):this.startTime+=t}fork(t,e){return this.applyStylesToKeyframe(),new s(this._driver,t,e||this.currentTime,this._elementTimelineStylesLookup)}_loadKeyframe(){this._currentKeyframe&&(this._previousKeyframe=this._currentKeyframe),this._currentKeyframe=this._keyframes.get(this.duration),this._currentKeyframe||(this._currentKeyframe=new Map,this._keyframes.set(this.duration,this._currentKeyframe))}forwardFrame(){this.duration+=So,this._loadKeyframe()}forwardTime(t){this.applyStylesToKeyframe(),this.duration=t,this._loadKeyframe()}_updateStyle(t,e){this._localTimelineStyles.set(t,e),this._globalTimelineStyles.set(t,e),this._styleSummary.set(t,{time:this.currentTime,value:e})}allowOnlyTimelineStyles(){return this._currentEmptyStepKeyframe!==this._currentKeyframe}applyEmptyStep(t){t&&this._previousKeyframe.set("easing",t);for(let[e,i]of this._globalTimelineStyles)this._backFill.set(e,i||G),this._currentKeyframe.set(e,G);this._currentEmptyStepKeyframe=this._currentKeyframe}setStyles(t,e,i,r){var n;e&&this._previousKeyframe.set("easing",e);let o=r&&r.params||{},a=To(t,this._globalTimelineStyles);for(let[l,d]of a){let u=ze(d,o,i);this._pendingStyles.set(l,u),this._localTimelineStyles.has(l)||this._backFill.set(l,(n=this._globalTimelineStyles.get(l))!=null?n:G),this._updateStyle(l,u)}}applyStylesToKeyframe(){this._pendingStyles.size!=0&&(this._pendingStyles.forEach((t,e)=>{this._currentKeyframe.set(e,t)}),this._pendingStyles.clear(),this._localTimelineStyles.forEach((t,e)=>{this._currentKeyframe.has(e)||this._currentKeyframe.set(e,t)}))}snapshotCurrentStyles(){for(let[t,e]of this._localTimelineStyles)this._pendingStyles.set(t,e),this._updateStyle(t,e)}getFinalKeyframe(){return this._keyframes.get(this.duration)}get properties(){let t=[];for(let e in this._currentKeyframe)t.push(e);return t}mergeTimelineCollectedStyles(t){t._styleSummary.forEach((e,i)=>{let r=this._styleSummary.get(i);(!r||e.time>r.time)&&this._updateStyle(i,e.value)})}buildKeyframes(){this.applyStylesToKeyframe();let t=new Set,e=new Set,i=this._keyframes.size===1&&this.duration===0,r=[];this._keyframes.forEach((n,l)=>{let d=new Map([...this._backFill,...n]);d.forEach((u,c)=>{u===Ie?t.add(c):u===G&&e.add(c)}),i||d.set("offset",l/this.duration),r.push(d)});let o=[...t.values()],a=[...e.values()];if(i){let n=r[0],l=new Map(n);n.set("offset",0),l.set("offset",1),r=[n,l]}return It(this.element,r,o,a,this.duration,this.startTime,this.easing,!1)}},wt=class extends Je{keyframes;preStyleProps;postStyleProps;_stretchStartingKeyframe;timings;constructor(t,e,i,r,o,a,n=!1){super(t,e,a.delay),this.keyframes=i,this.preStyleProps=r,this.postStyleProps=o,this._stretchStartingKeyframe=n,this.timings={duration:a.duration,delay:a.delay,easing:a.easing}}containsAnimation(){return this.keyframes.length>1}buildKeyframes(){let t=this.keyframes,{delay:e,duration:i,easing:r}=this.timings;if(this._stretchStartingKeyframe&&e){let o=[],a=i+e,n=e/a,l=new Map(t[0]);l.set("offset",0),o.push(l);let d=new Map(t[0]);d.set("offset",Xi(n)),o.push(d);let u=t.length-1;for(let c=1;c<=u;c++){let f=new Map(t[c]),h=f.get("offset"),p=e+h*i;f.set("offset",Xi(p/a)),o.push(f)}i=a,e=0,r="",t=o}return It(this.element,t,this.preStyleProps,this.postStyleProps,i,e,r,!0)}};function Xi(s,t=3){let e=Math.pow(10,t-1);return Math.round(s*e)/e}function To(s,t){let e=new Map,i;return s.forEach(r=>{if(r==="*"){i!=null||(i=t.keys());for(let o of i)e.set(o,G)}else for(let[o,a]of r)e.set(o,a)}),e}function es(s,t,e,i,r,o,a,n,l,d,u,c,f){return{type:0,element:s,triggerName:t,isRemovalTransition:r,fromState:e,fromStyles:o,toState:i,toStyles:a,timelines:n,queriedElements:l,preStyleProps:d,postStyleProps:u,totalTime:c,errors:f}}var dt={},$e=class{_triggerName;ast;_stateStyles;constructor(t,e,i){this._triggerName=t,this.ast=e,this._stateStyles=i}match(t,e,i,r){return Do(this.ast.matchers,t,e,i,r)}buildStyles(t,e,i){let r=this._stateStyles.get("*");return t!==void 0&&(r=this._stateStyles.get(t==null?void 0:t.toString())||r),r?r.buildStyles(e,i):new Map}build(t,e,i,r,o,a,n,l,d,u){var V;let c=[],f=this.ast.options&&this.ast.options.params||dt,h=n&&n.params||dt,p=this.buildStyles(i,h,c),b=l&&l.params||dt,z=this.buildStyles(r,b,c),A=new Set,N=new Map,D=new Map,P=r==="void",ue={params:bs(b,f),delay:(V=this.ast.options)==null?void 0:V.delay},q=u?[]:_s(t,e,this.ast.animation,o,a,p,z,ue,d,c),U=0;return q.forEach(W=>{U=Math.max(W.duration+W.delay,U)}),c.length?es(e,this._triggerName,i,r,P,p,z,[],[],N,D,U,c):(q.forEach(W=>{let J=W.element,Ct=C(N,J,new Set);W.preStyleProps.forEach(se=>Ct.add(se));let ke=C(D,J,new Set);W.postStyleProps.forEach(se=>ke.add(se)),J!==e&&A.add(J)}),es(e,this._triggerName,i,r,P,p,z,q,[...A.values()],N,D,U))}};function Do(s,t,e,i,r){return s.some(o=>o(t,e,i,r))}function bs(s,t){let e=Pe({},t);return Object.entries(s).forEach(([i,r])=>{r!=null&&(e[i]=r)}),e}var yt=class{styles;defaultParams;normalizer;constructor(t,e,i){this.styles=t,this.defaultParams=e,this.normalizer=i}buildStyles(t,e){let i=new Map,r=bs(t,this.defaultParams);return this.styles.styles.forEach(o=>{typeof o!="string"&&o.forEach((a,n)=>{a&&(a=ze(a,r,e));let l=this.normalizer.normalizePropertyName(n,e);a=this.normalizer.normalizeStyleValue(n,l,a,e),i.set(n,a)})}),i}};function Uo(s,t,e){return new Ht(s,t,e)}var Ht=class{name;ast;_normalizer;transitionFactories=[];fallbackTransition;states=new Map;constructor(t,e,i){this.name=t,this.ast=e,this._normalizer=i,e.states.forEach(r=>{let o=r.options&&r.options.params||{};this.states.set(r.name,new yt(r.style,o,i))}),ts(this.states,"true","1"),ts(this.states,"false","0"),e.transitions.forEach(r=>{this.transitionFactories.push(new $e(t,r,this.states))}),this.fallbackTransition=Ko(t,this.states,this._normalizer)}get containsQueries(){return this.ast.queryCount>0}matchTransition(t,e,i,r){return this.transitionFactories.find(a=>a.match(t,e,i,r))||null}matchStyles(t,e,i){return this.fallbackTransition.buildStyles(t,e,i)}};function Ko(s,t,e){let i=[(a,n)=>!0],r={type:k.Sequence,steps:[],options:null},o={type:k.Transition,animation:r,matchers:i,options:null,queryCount:0,depCount:0};return new $e(s,o,t)}function ts(s,t,e){s.has(t)?s.has(e)||s.set(e,s.get(t)):s.has(e)&&s.set(t,s.get(e))}var Io=new Se,zt=class{bodyNode;_driver;_normalizer;_animations=new Map;_playersById=new Map;players=[];constructor(t,e,i){this.bodyNode=t,this._driver=e,this._normalizer=i}register(t,e){let i=[],r=[],o=ps(this._driver,e,i,r);if(i.length)throw Yr(i);r.length&&void 0,this._animations.set(t,o)}_buildPlayer(t,e,i){let r=t.element,o=ns(this._normalizer,t.keyframes,e,i);return this._driver.animate(r,o,t.duration,t.delay,t.easing,[],!0)}create(t,e,i={}){let r=[],o=this._animations.get(t),a,n=new Map;if(o?(a=_s(this._driver,e,o,cs,mt,new Map,new Map,i,Io,r),a.forEach(u=>{let c=C(n,u.element,new Map);u.postStyleProps.forEach(f=>c.set(f,null))})):(r.push(Wr()),a=[]),r.length)throw Jr(r);n.forEach((u,c)=>{u.forEach((f,h)=>{u.set(h,this._driver.computeStyle(c,h,G))})});let l=a.map(u=>{let c=n.get(u.element);return this._buildPlayer(u,new Map,c)}),d=ie(l);return this._playersById.set(t,d),d.onDestroy(()=>this.destroy(t)),this.players.push(d),d}destroy(t){let e=this._getPlayer(t);e.destroy(),this._playersById.delete(t);let i=this.players.indexOf(e);i>=0&&this.players.splice(i,1)}_getPlayer(t){let e=this._playersById.get(t);if(!e)throw $r(t);return e}listen(t,e,i,r){let o=Pt(e,"","","");return Nt(this._getPlayer(t),i,o,r),()=>{}}command(t,e,i,r){if(i=="register"){this.register(t,r[0]);return}if(i=="create"){let a=r[0]||{};this.create(t,e,a);return}let o=this._getPlayer(t);switch(i){case"play":o.play();break;case"pause":o.pause();break;case"reset":o.reset();break;case"restart":o.restart();break;case"finish":o.finish();break;case"init":o.init();break;case"setPosition":o.setPosition(parseFloat(r[0]));break;case"destroy":this.destroy(t);break}}},is="ng-animate-queued",Co=".ng-animate-queued",ut="ng-animate-disabled",xo=".ng-animate-disabled",Eo="ng-star-inserted",Ro=".ng-star-inserted",Bo=[],hs={namespaceId:"",setForRemoval:!1,setForMove:!1,hasAnimation:!1,removedBeforeQueried:!1},Mo={namespaceId:"",setForMove:!1,setForRemoval:!1,hasAnimation:!1,removedBeforeQueried:!0},F="__ng_removed",je=class{namespaceId;value;options;get params(){return this.options.params}constructor(t,e=""){this.namespaceId=e;let i=t&&t.hasOwnProperty("value"),r=i?t.value:t;if(this.value=qo(r),i){let o=t,{value:a}=o,n=Mt(o,["value"]);this.options=n}else this.options={};this.options.params||(this.options.params={})}absorbOptions(t){let e=t.params;if(e){let i=this.options.params;Object.keys(e).forEach(r=>{i[r]==null&&(i[r]=e[r])})}}},He="void",ct=new je(He),St=class{id;hostElement;_engine;players=[];_triggers=new Map;_queue=[];_elementListeners=new Map;_hostClassName;constructor(t,e,i){this.id=t,this.hostElement=e,this._engine=i,this._hostClassName="ng-tns-"+t,R(e,this._hostClassName)}listen(t,e,i,r){if(!this._triggers.has(e))throw Zr(i,e);if(i==null||i.length==0)throw Qr(e);if(!Vo(i))throw Xr(i,e);let o=C(this._elementListeners,t,[]),a={name:e,phase:i,callback:r};o.push(a);let n=C(this._engine.statesByElement,t,new Map);return n.has(e)||(R(t,Be),R(t,Be+"-"+e),n.set(e,ct)),()=>{this._engine.afterFlush(()=>{let l=o.indexOf(a);l>=0&&o.splice(l,1),this._triggers.has(e)||n.delete(e)})}}register(t,e){return this._triggers.has(t)?!1:(this._triggers.set(t,e),!0)}_getTrigger(t){let e=this._triggers.get(t);if(!e)throw eo(t);return e}trigger(t,e,i,r=!0){let o=this._getTrigger(e),a=new Ae(this.id,e,t),n=this._engine.statesByElement.get(t);n||(R(t,Be),R(t,Be+"-"+e),this._engine.statesByElement.set(t,n=new Map));let l=n.get(e),d=new je(i,this.id);if(!(i&&i.hasOwnProperty("value"))&&l&&d.absorbOptions(l.options),n.set(e,d),l||(l=ct),!(d.value===He)&&l.value===d.value){if(!Go(l.params,d.params)){let b=[],z=o.matchStyles(l.value,l.params,b),A=o.matchStyles(d.value,d.params,b);b.length?this._engine.reportError(b):this._engine.afterFlush(()=>{ne(t,z),Y(t,A)})}return}let f=C(this._engine.playersByElement,t,[]);f.forEach(b=>{b.namespaceId==this.id&&b.triggerName==e&&b.queued&&b.destroy()});let h=o.matchTransition(l.value,d.value,t,d.params),p=!1;if(!h){if(!r)return;h=o.fallbackTransition,p=!0}return this._engine.totalQueuedPlayers++,this._queue.push({element:t,triggerName:e,transition:h,fromState:l,toState:d,player:a,isFallbackTransition:p}),p||(R(t,is),a.onStart(()=>{fe(t,is)})),a.onDone(()=>{let b=this.players.indexOf(a);b>=0&&this.players.splice(b,1);let z=this._engine.playersByElement.get(t);if(z){let A=z.indexOf(a);A>=0&&z.splice(A,1)}}),this.players.push(a),f.push(a),a}deregister(t){this._triggers.delete(t),this._engine.statesByElement.forEach(e=>e.delete(t)),this._elementListeners.forEach((e,i)=>{this._elementListeners.set(i,e.filter(r=>r.name!=t))})}clearElementCache(t){this._engine.statesByElement.delete(t),this._elementListeners.delete(t);let e=this._engine.playersByElement.get(t);e&&(e.forEach(i=>i.destroy()),this._engine.playersByElement.delete(t))}_signalRemovalForInnerTriggers(t,e){let i=this._engine.driver.query(t,Oe,!0);i.forEach(r=>{if(r[F])return;let o=this._engine.fetchNamespacesByElement(r);o.size?o.forEach(a=>a.triggerLeaveAnimation(r,e,!1,!0)):this.clearElementCache(r)}),this._engine.afterFlushAnimationsDone(()=>i.forEach(r=>this.clearElementCache(r)))}triggerLeaveAnimation(t,e,i,r){let o=this._engine.statesByElement.get(t),a=new Map;if(o){let n=[];if(o.forEach((l,d)=>{if(a.set(d,l.value),this._triggers.has(d)){let u=this.trigger(t,d,He,r);u&&n.push(u)}}),n.length)return this._engine.markElementAsRemoved(this.id,t,!0,e,a),i&&ie(n).onDone(()=>this._engine.processLeaveNode(t)),!0}return!1}prepareLeaveAnimationListeners(t){let e=this._elementListeners.get(t),i=this._engine.statesByElement.get(t);if(e&&i){let r=new Set;e.forEach(o=>{let a=o.name;if(r.has(a))return;r.add(a);let l=this._triggers.get(a).fallbackTransition,d=i.get(a)||ct,u=new je(He),c=new Ae(this.id,a,t);this._engine.totalQueuedPlayers++,this._queue.push({element:t,triggerName:a,transition:l,fromState:d,toState:u,player:c,isFallbackTransition:!0})})}}removeNode(t,e){let i=this._engine;if(t.childElementCount&&this._signalRemovalForInnerTriggers(t,e),this.triggerLeaveAnimation(t,e,!0))return;let r=!1;if(i.totalAnimations){let o=i.players.length?i.playersByQueriedElement.get(t):[];if(o&&o.length)r=!0;else{let a=t;for(;a=a.parentNode;)if(i.statesByElement.get(a)){r=!0;break}}}if(this.prepareLeaveAnimationListeners(t),r)i.markElementAsRemoved(this.id,t,!1,e);else{let o=t[F];(!o||o===hs)&&(i.afterFlush(()=>this.clearElementCache(t)),i.destroyInnerAnimations(t),i._onRemovalComplete(t,e))}}insertNode(t,e){R(t,this._hostClassName)}drainQueuedTransitions(t){let e=[];return this._queue.forEach(i=>{let r=i.player;if(r.destroyed)return;let o=i.element,a=this._elementListeners.get(o);a&&a.forEach(n=>{if(n.name==i.triggerName){let l=Pt(o,i.triggerName,i.fromState.value,i.toState.value);l._data=t,Nt(i.player,n.phase,l,n.callback)}}),r.markedForDestroy?this._engine.afterFlush(()=>{r.destroy()}):e.push(i)}),this._queue=[],e.sort((i,r)=>{let o=i.transition.ast.depCount,a=r.transition.ast.depCount;return o==0||a==0?o-a:this._engine.driver.containsElement(i.element,r.element)?1:-1})}destroy(t){this.players.forEach(e=>e.destroy()),this._signalRemovalForInnerTriggers(this.hostElement,t)}},jt=class{bodyNode;driver;_normalizer;players=[];newHostElements=new Map;playersByElement=new Map;playersByQueriedElement=new Map;statesByElement=new Map;disabledNodes=new Set;totalAnimations=0;totalQueuedPlayers=0;_namespaceLookup={};_namespaceList=[];_flushFns=[];_whenQuietFns=[];namespacesByHostElement=new Map;collectedEnterElements=[];collectedLeaveElements=[];onRemovalComplete=(t,e)=>{};_onRemovalComplete(t,e){this.onRemovalComplete(t,e)}constructor(t,e,i){this.bodyNode=t,this.driver=e,this._normalizer=i}get queuedPlayers(){let t=[];return this._namespaceList.forEach(e=>{e.players.forEach(i=>{i.queued&&t.push(i)})}),t}createNamespace(t,e){let i=new St(t,e,this);return this.bodyNode&&this.driver.containsElement(this.bodyNode,e)?this._balanceNamespaceList(i,e):(this.newHostElements.set(e,i),this.collectEnterElement(e)),this._namespaceLookup[t]=i}_balanceNamespaceList(t,e){let i=this._namespaceList,r=this.namespacesByHostElement;if(i.length-1>=0){let a=!1,n=this.driver.getParentElement(e);for(;n;){let l=r.get(n);if(l){let d=i.indexOf(l);i.splice(d+1,0,t),a=!0;break}n=this.driver.getParentElement(n)}a||i.unshift(t)}else i.push(t);return r.set(e,t),t}register(t,e){let i=this._namespaceLookup[t];return i||(i=this.createNamespace(t,e)),i}registerTrigger(t,e,i){let r=this._namespaceLookup[t];r&&r.register(e,i)&&this.totalAnimations++}destroy(t,e){t&&(this.afterFlush(()=>{}),this.afterFlushAnimationsDone(()=>{let i=this._fetchNamespace(t);this.namespacesByHostElement.delete(i.hostElement);let r=this._namespaceList.indexOf(i);r>=0&&this._namespaceList.splice(r,1),i.destroy(e),delete this._namespaceLookup[t]}))}_fetchNamespace(t){return this._namespaceLookup[t]}fetchNamespacesByElement(t){let e=new Set,i=this.statesByElement.get(t);if(i){for(let r of i.values())if(r.namespaceId){let o=this._fetchNamespace(r.namespaceId);o&&e.add(o)}}return e}trigger(t,e,i,r){if(qe(e)){let o=this._fetchNamespace(t);if(o)return o.trigger(e,i,r),!0}return!1}insertNode(t,e,i,r){if(!qe(e))return;let o=e[F];if(o&&o.setForRemoval){o.setForRemoval=!1,o.setForMove=!0;let a=this.collectedLeaveElements.indexOf(e);a>=0&&this.collectedLeaveElements.splice(a,1)}if(t){let a=this._fetchNamespace(t);a&&a.insertNode(e,i)}r&&this.collectEnterElement(e)}collectEnterElement(t){this.collectedEnterElements.push(t)}markElementAsDisabled(t,e){e?this.disabledNodes.has(t)||(this.disabledNodes.add(t),R(t,ut)):this.disabledNodes.has(t)&&(this.disabledNodes.delete(t),fe(t,ut))}removeNode(t,e,i){if(qe(e)){let r=t?this._fetchNamespace(t):null;r?r.removeNode(e,i):this.markElementAsRemoved(t,e,!1,i);let o=this.namespacesByHostElement.get(e);o&&o.id!==t&&o.removeNode(e,i)}else this._onRemovalComplete(e,i)}markElementAsRemoved(t,e,i,r,o){this.collectedLeaveElements.push(e),e[F]={namespaceId:t,setForRemoval:r,hasAnimation:i,removedBeforeQueried:!1,previousTriggersValues:o}}listen(t,e,i,r,o){return qe(e)?this._fetchNamespace(t).listen(e,i,r,o):()=>{}}_buildInstruction(t,e,i,r,o){return t.transition.build(this.driver,t.element,t.fromState.value,t.toState.value,i,r,t.fromState.options,t.toState.options,e,o)}destroyInnerAnimations(t){let e=this.driver.query(t,Oe,!0);e.forEach(i=>this.destroyActiveAnimationsForElement(i)),this.playersByQueriedElement.size!=0&&(e=this.driver.query(t,pt,!0),e.forEach(i=>this.finishActiveQueriedAnimationOnElement(i)))}destroyActiveAnimationsForElement(t){let e=this.playersByElement.get(t);e&&e.forEach(i=>{i.queued?i.markedForDestroy=!0:i.destroy()})}finishActiveQueriedAnimationOnElement(t){let e=this.playersByQueriedElement.get(t);e&&e.forEach(i=>i.finish())}whenRenderingDone(){return new Promise(t=>{if(this.players.length)return ie(this.players).onDone(()=>t());t()})}processLeaveNode(t){var i;let e=t[F];if(e&&e.setForRemoval){if(t[F]=hs,e.namespaceId){this.destroyInnerAnimations(t);let r=this._fetchNamespace(e.namespaceId);r&&r.clearElementCache(t)}this._onRemovalComplete(t,e.setForRemoval)}(i=t.classList)!=null&&i.contains(ut)&&this.markElementAsDisabled(t,!1),this.driver.query(t,xo,!0).forEach(r=>{this.markElementAsDisabled(r,!1)})}flush(t=-1){let e=[];if(this.newHostElements.size&&(this.newHostElements.forEach((i,r)=>this._balanceNamespaceList(i,r)),this.newHostElements.clear()),this.totalAnimations&&this.collectedEnterElements.length)for(let i=0;i<this.collectedEnterElements.length;i++){let r=this.collectedEnterElements[i];R(r,Eo)}if(this._namespaceList.length&&(this.totalQueuedPlayers||this.collectedLeaveElements.length)){let i=[];try{e=this._flushAnimations(i,t)}finally{for(let r=0;r<i.length;r++)i[r]()}}else for(let i=0;i<this.collectedLeaveElements.length;i++){let r=this.collectedLeaveElements[i];this.processLeaveNode(r)}if(this.totalQueuedPlayers=0,this.collectedEnterElements.length=0,this.collectedLeaveElements.length=0,this._flushFns.forEach(i=>i()),this._flushFns=[],this._whenQuietFns.length){let i=this._whenQuietFns;this._whenQuietFns=[],e.length?ie(e).onDone(()=>{i.forEach(r=>r())}):i.forEach(r=>r())}}reportError(t){throw to(t)}_flushAnimations(t,e){let i=new Se,r=[],o=new Map,a=[],n=new Map,l=new Map,d=new Map,u=new Set;this.disabledNodes.forEach(g=>{u.add(g);let m=this.driver.query(g,Co,!0);for(let _=0;_<m.length;_++)u.add(m[_])});let c=this.bodyNode,f=Array.from(this.statesByElement.keys()),h=os(f,this.collectedEnterElements),p=new Map,b=0;h.forEach((g,m)=>{let _=cs+b++;p.set(m,_),g.forEach(v=>R(v,_))});let z=[],A=new Set,N=new Set;for(let g=0;g<this.collectedLeaveElements.length;g++){let m=this.collectedLeaveElements[g],_=m[F];_&&_.setForRemoval&&(z.push(m),A.add(m),_.hasAnimation?this.driver.query(m,Ro,!0).forEach(v=>A.add(v)):N.add(m))}let D=new Map,P=os(f,Array.from(A));P.forEach((g,m)=>{let _=mt+b++;D.set(m,_),g.forEach(v=>R(v,_))}),t.push(()=>{h.forEach((g,m)=>{let _=p.get(m);g.forEach(v=>fe(v,_))}),P.forEach((g,m)=>{let _=D.get(m);g.forEach(v=>fe(v,_))}),z.forEach(g=>{this.processLeaveNode(g)})});let ue=[],q=[];for(let g=this._namespaceList.length-1;g>=0;g--)this._namespaceList[g].drainQueuedTransitions(e).forEach(_=>{let v=_.player,j=_.element;if(ue.push(v),this.collectedEnterElements.length){let T=j[F];if(T&&T.setForMove){if(T.previousTriggersValues&&T.previousTriggersValues.has(_.triggerName)){let re=T.previousTriggersValues.get(_.triggerName),x=this.statesByElement.get(_.element);if(x&&x.has(_.triggerName)){let Ne=x.get(_.triggerName);Ne.value=re,x.set(_.triggerName,Ne)}}v.destroy();return}}let O=!c||!this.driver.containsElement(c,j),K=D.get(j),X=p.get(j),S=this._buildInstruction(_,i,X,K,O);if(S.errors&&S.errors.length){q.push(S);return}if(O){v.onStart(()=>ne(j,S.fromStyles)),v.onDestroy(()=>Y(j,S.toStyles)),r.push(v);return}if(_.isFallbackTransition){v.onStart(()=>ne(j,S.fromStyles)),v.onDestroy(()=>Y(j,S.toStyles)),r.push(v);return}let Rt=[];S.timelines.forEach(T=>{T.stretchStartingKeyframe=!0,this.disabledNodes.has(T.element)||Rt.push(T)}),S.timelines=Rt,i.append(j,S.timelines);let Zs={instruction:S,player:v,element:j};a.push(Zs),S.queriedElements.forEach(T=>C(n,T,[]).push(v)),S.preStyleProps.forEach((T,re)=>{if(T.size){let x=l.get(re);x||l.set(re,x=new Set),T.forEach((Ne,tt)=>x.add(tt))}}),S.postStyleProps.forEach((T,re)=>{let x=d.get(re);x||d.set(re,x=new Set),T.forEach((Ne,tt)=>x.add(tt))})});if(q.length){let g=[];q.forEach(m=>{g.push(io(m.triggerName,m.errors))}),ue.forEach(m=>m.destroy()),this.reportError(g)}let U=new Map,V=new Map;a.forEach(g=>{let m=g.element;i.has(m)&&(V.set(m,m),this._beforeAnimationBuild(g.player.namespaceId,g.instruction,U))}),r.forEach(g=>{let m=g.element;this._getPreviousPlayers(m,!1,g.namespaceId,g.triggerName,null).forEach(v=>{C(U,m,[]).push(v),v.destroy()})});let W=z.filter(g=>as(g,l,d)),J=new Map;rs(J,this.driver,N,d,G).forEach(g=>{as(g,l,d)&&W.push(g)});let ke=new Map;h.forEach((g,m)=>{rs(ke,this.driver,new Set(g),l,Ie)}),W.forEach(g=>{var v,j;let m=J.get(g),_=ke.get(g);J.set(g,new Map([...(v=m==null?void 0:m.entries())!=null?v:[],...(j=_==null?void 0:_.entries())!=null?j:[]]))});let se=[],xt=[],Et={};a.forEach(g=>{let{element:m,player:_,instruction:v}=g;if(i.has(m)){if(u.has(m)){_.onDestroy(()=>Y(m,v.toStyles)),_.disabled=!0,_.overrideTotalTime(v.totalTime),r.push(_);return}let j=Et;if(V.size>1){let K=m,X=[];for(;K=K.parentNode;){let S=V.get(K);if(S){j=S;break}X.push(K)}X.forEach(S=>V.set(S,j))}let O=this._buildAnimation(_.namespaceId,v,U,o,ke,J);if(_.setRealPlayer(O),j===Et)se.push(_);else{let K=this.playersByElement.get(j);K&&K.length&&(_.parentPlayer=ie(K)),r.push(_)}}else ne(m,v.fromStyles),_.onDestroy(()=>Y(m,v.toStyles)),xt.push(_),u.has(m)&&r.push(_)}),xt.forEach(g=>{let m=o.get(g.element);if(m&&m.length){let _=ie(m);g.setRealPlayer(_)}}),r.forEach(g=>{g.parentPlayer?g.syncPlayerEvents(g.parentPlayer):g.destroy()});for(let g=0;g<z.length;g++){let m=z[g],_=m[F];if(fe(m,mt),_&&_.hasAnimation)continue;let v=[];if(n.size){let O=n.get(m);O&&O.length&&v.push(...O);let K=this.driver.query(m,pt,!0);for(let X=0;X<K.length;X++){let S=n.get(K[X]);S&&S.length&&v.push(...S)}}let j=v.filter(O=>!O.destroyed);j.length?Oo(this,m,j):this.processLeaveNode(m)}return z.length=0,se.forEach(g=>{this.players.push(g),g.onDone(()=>{g.destroy();let m=this.players.indexOf(g);this.players.splice(m,1)}),g.play()}),se}afterFlush(t){this._flushFns.push(t)}afterFlushAnimationsDone(t){this._whenQuietFns.push(t)}_getPreviousPlayers(t,e,i,r,o){let a=[];if(e){let n=this.playersByQueriedElement.get(t);n&&(a=n)}else{let n=this.playersByElement.get(t);if(n){let l=!o||o==He;n.forEach(d=>{d.queued||!l&&d.triggerName!=r||a.push(d)})}}return(i||r)&&(a=a.filter(n=>!(i&&i!=n.namespaceId||r&&r!=n.triggerName))),a}_beforeAnimationBuild(t,e,i){let r=e.triggerName,o=e.element,a=e.isRemovalTransition?void 0:t,n=e.isRemovalTransition?void 0:r;for(let l of e.timelines){let d=l.element,u=d!==o,c=C(i,d,[]);this._getPreviousPlayers(d,u,a,n,e.toState).forEach(h=>{let p=h.getRealPlayer();p.beforeDestroy&&p.beforeDestroy(),h.destroy(),c.push(h)})}ne(o,e.fromStyles)}_buildAnimation(t,e,i,r,o,a){let n=e.triggerName,l=e.element,d=[],u=new Set,c=new Set,f=e.timelines.map(p=>{let b=p.element;u.add(b);let z=b[F];if(z&&z.removedBeforeQueried)return new ge(p.duration,p.delay);let A=b!==l,N=Lo((i.get(b)||Bo).map(U=>U.getRealPlayer())).filter(U=>{let V=U;return V.element?V.element===b:!1}),D=o.get(b),P=a.get(b),ue=ns(this._normalizer,p.keyframes,D,P),q=this._buildPlayer(p,ue,N);if(p.subTimeline&&r&&c.add(b),A){let U=new Ae(t,n,b);U.setRealPlayer(q),d.push(U)}return q});d.forEach(p=>{C(this.playersByQueriedElement,p.element,[]).push(p),p.onDone(()=>Fo(this.playersByQueriedElement,p.element,p))}),u.forEach(p=>R(p,$i));let h=ie(f);return h.onDestroy(()=>{u.forEach(p=>fe(p,$i)),Y(l,e.toStyles)}),c.forEach(p=>{C(r,p,[]).push(h)}),h}_buildPlayer(t,e,i){return e.length>0?this.driver.animate(t.element,e,t.duration,t.delay,t.easing,i):new ge(t.duration,t.delay)}},Ae=class{namespaceId;triggerName;element;_player=new ge;_containsRealPlayer=!1;_queuedCallbacks=new Map;destroyed=!1;parentPlayer=null;markedForDestroy=!1;disabled=!1;queued=!0;totalTime=0;constructor(t,e,i){this.namespaceId=t,this.triggerName=e,this.element=i}setRealPlayer(t){this._containsRealPlayer||(this._player=t,this._queuedCallbacks.forEach((e,i)=>{e.forEach(r=>Nt(t,i,void 0,r))}),this._queuedCallbacks.clear(),this._containsRealPlayer=!0,this.overrideTotalTime(t.totalTime),this.queued=!1)}getRealPlayer(){return this._player}overrideTotalTime(t){this.totalTime=t}syncPlayerEvents(t){let e=this._player;e.triggerCallback&&t.onStart(()=>e.triggerCallback("start")),t.onDone(()=>this.finish()),t.onDestroy(()=>this.destroy())}_queueEvent(t,e){C(this._queuedCallbacks,t,[]).push(e)}onDone(t){this.queued&&this._queueEvent("done",t),this._player.onDone(t)}onStart(t){this.queued&&this._queueEvent("start",t),this._player.onStart(t)}onDestroy(t){this.queued&&this._queueEvent("destroy",t),this._player.onDestroy(t)}init(){this._player.init()}hasStarted(){return this.queued?!1:this._player.hasStarted()}play(){!this.queued&&this._player.play()}pause(){!this.queued&&this._player.pause()}restart(){!this.queued&&this._player.restart()}finish(){this._player.finish()}destroy(){this.destroyed=!0,this._player.destroy()}reset(){!this.queued&&this._player.reset()}setPosition(t){this.queued||this._player.setPosition(t)}getPosition(){return this.queued?0:this._player.getPosition()}triggerCallback(t){let e=this._player;e.triggerCallback&&e.triggerCallback(t)}};function Fo(s,t,e){let i=s.get(t);if(i){if(i.length){let r=i.indexOf(e);i.splice(r,1)}i.length==0&&s.delete(t)}return i}function qo(s){return s!=null?s:null}function qe(s){return s&&s.nodeType===1}function Vo(s){return s=="start"||s=="done"}function ss(s,t){let e=s.style.display;return s.style.display=t!=null?t:"none",e}function rs(s,t,e,i,r){let o=[];e.forEach(l=>o.push(ss(l)));let a=[];i.forEach((l,d)=>{let u=new Map;l.forEach(c=>{let f=t.computeStyle(d,c,r);u.set(c,f),(!f||f.length==0)&&(d[F]=Mo,a.push(d))}),s.set(d,u)});let n=0;return e.forEach(l=>ss(l,o[n++])),a}function os(s,t){let e=new Map;if(s.forEach(n=>e.set(n,[])),t.length==0)return e;let i=1,r=new Set(t),o=new Map;function a(n){if(!n)return i;let l=o.get(n);if(l)return l;let d=n.parentNode;return e.has(d)?l=d:r.has(d)?l=i:l=a(d),o.set(n,l),l}return t.forEach(n=>{let l=a(n);l!==i&&e.get(l).push(n)}),e}function R(s,t){var e;(e=s.classList)==null||e.add(t)}function fe(s,t){var e;(e=s.classList)==null||e.remove(t)}function Oo(s,t,e){ie(e).onDone(()=>s.processLeaveNode(t))}function Lo(s){let t=[];return fs(s,t),t}function fs(s,t){for(let e=0;e<s.length;e++){let i=s[e];i instanceof ot?fs(i.players,t):t.push(i)}}function Go(s,t){let e=Object.keys(s),i=Object.keys(t);if(e.length!=i.length)return!1;for(let r=0;r<e.length;r++){let o=e[r];if(!t.hasOwnProperty(o)||s[o]!==t[o])return!1}return!0}function as(s,t,e){let i=e.get(s);if(!i)return!1;let r=t.get(s);return r?i.forEach(o=>r.add(o)):t.set(s,i),e.delete(s),!0}var ve=class{_driver;_normalizer;_transitionEngine;_timelineEngine;_triggerCache={};onRemovalComplete=(t,e)=>{};constructor(t,e,i){this._driver=e,this._normalizer=i,this._transitionEngine=new jt(t.body,e,i),this._timelineEngine=new zt(t.body,e,i),this._transitionEngine.onRemovalComplete=(r,o)=>this.onRemovalComplete(r,o)}registerTrigger(t,e,i,r,o){let a=t+"-"+r,n=this._triggerCache[a];if(!n){let l=[],d=[],u=ps(this._driver,o,l,d);if(l.length)throw Lr(r,l);d.length&&void 0,n=Uo(r,u,this._normalizer),this._triggerCache[a]=n}this._transitionEngine.registerTrigger(e,r,n)}register(t,e){this._transitionEngine.register(t,e)}destroy(t,e){this._transitionEngine.destroy(t,e)}onInsert(t,e,i,r){this._transitionEngine.insertNode(t,e,i,r)}onRemove(t,e,i){this._transitionEngine.removeNode(t,e,i)}disableAnimations(t,e){this._transitionEngine.markElementAsDisabled(t,e)}process(t,e,i,r){if(i.charAt(0)=="@"){let[o,a]=Wi(i),n=r;this._timelineEngine.command(o,e,a,n)}else this._transitionEngine.trigger(t,e,i,r)}listen(t,e,i,r,o){if(i.charAt(0)=="@"){let[a,n]=Wi(i);return this._timelineEngine.listen(a,e,n,o)}return this._transitionEngine.listen(t,e,i,r,o)}flush(t=-1){this._transitionEngine.flush(t)}get players(){return[...this._transitionEngine.players,...this._timelineEngine.players]}whenRenderingDone(){return this._transitionEngine.whenRenderingDone()}afterFlushAnimationsDone(t){this._transitionEngine.afterFlushAnimationsDone(t)}};function Yo(s,t){let e=null,i=null;return Array.isArray(t)&&t.length?(e=gt(t[0]),t.length>1&&(i=gt(t[t.length-1]))):t instanceof Map&&(e=gt(t)),e||i?new Wo(s,e,i):null}var Wo=(()=>{class s{_element;_startStyles;_endStyles;static initialStylesByElement=new WeakMap;_state=0;_initialStyles;constructor(e,i,r){this._element=e,this._startStyles=i,this._endStyles=r;let o=s.initialStylesByElement.get(e);o||s.initialStylesByElement.set(e,o=new Map),this._initialStyles=o}start(){this._state<1&&(this._startStyles&&Y(this._element,this._startStyles,this._initialStyles),this._state=1)}finish(){this.start(),this._state<2&&(Y(this._element,this._initialStyles),this._endStyles&&(Y(this._element,this._endStyles),this._endStyles=null),this._state=1)}destroy(){this.finish(),this._state<3&&(s.initialStylesByElement.delete(this._element),this._startStyles&&(ne(this._element,this._startStyles),this._endStyles=null),this._endStyles&&(ne(this._element,this._endStyles),this._endStyles=null),Y(this._element,this._initialStyles),this._state=3)}}return s})();function gt(s){let t=null;return s.forEach((e,i)=>{Jo(i)&&(t=t||new Map,t.set(i,e))}),t}function Jo(s){return s==="display"||s==="position"}var Ze=class{element;keyframes;options;_specialStyles;_onDoneFns=[];_onStartFns=[];_onDestroyFns=[];_duration;_delay;_initialized=!1;_finished=!1;_started=!1;_destroyed=!1;_finalKeyframe;_originalOnDoneFns=[];_originalOnStartFns=[];domPlayer;time=0;parentPlayer=null;currentSnapshot=new Map;constructor(t,e,i,r){this.element=t,this.keyframes=e,this.options=i,this._specialStyles=r,this._duration=i.duration,this._delay=i.delay||0,this.time=this._duration+this._delay}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(t=>t()),this._onDoneFns=[])}init(){this._buildPlayer(),this._preparePlayerBeforeStart()}_buildPlayer(){if(this._initialized)return;this._initialized=!0;let t=this.keyframes;this.domPlayer=this._triggerWebAnimation(this.element,t,this.options),this._finalKeyframe=t.length?t[t.length-1]:new Map;let e=()=>this._onFinish();this.domPlayer.addEventListener("finish",e),this.onDestroy(()=>{this.domPlayer.removeEventListener("finish",e)})}_preparePlayerBeforeStart(){this._delay?this._resetDomPlayerState():this.domPlayer.pause()}_convertKeyframesToObject(t){let e=[];return t.forEach(i=>{e.push(Object.fromEntries(i))}),e}_triggerWebAnimation(t,e,i){return t.animate(this._convertKeyframesToObject(e),i)}onStart(t){this._originalOnStartFns.push(t),this._onStartFns.push(t)}onDone(t){this._originalOnDoneFns.push(t),this._onDoneFns.push(t)}onDestroy(t){this._onDestroyFns.push(t)}play(){this._buildPlayer(),this.hasStarted()||(this._onStartFns.forEach(t=>t()),this._onStartFns=[],this._started=!0,this._specialStyles&&this._specialStyles.start()),this.domPlayer.play()}pause(){this.init(),this.domPlayer.pause()}finish(){this.init(),this._specialStyles&&this._specialStyles.finish(),this._onFinish(),this.domPlayer.finish()}reset(){this._resetDomPlayerState(),this._destroyed=!1,this._finished=!1,this._started=!1,this._onStartFns=this._originalOnStartFns,this._onDoneFns=this._originalOnDoneFns}_resetDomPlayerState(){this.domPlayer&&this.domPlayer.cancel()}restart(){this.reset(),this.play()}hasStarted(){return this._started}destroy(){this._destroyed||(this._destroyed=!0,this._resetDomPlayerState(),this._onFinish(),this._specialStyles&&this._specialStyles.destroy(),this._onDestroyFns.forEach(t=>t()),this._onDestroyFns=[])}setPosition(t){this.domPlayer===void 0&&this.init(),this.domPlayer.currentTime=t*this.time}getPosition(){var t;return+((t=this.domPlayer.currentTime)!=null?t:0)/this.time}get totalTime(){return this._delay+this._duration}beforeDestroy(){let t=new Map;this.hasStarted()&&this._finalKeyframe.forEach((i,r)=>{r!=="offset"&&t.set(r,this._finished?i:Kt(this.element,r))}),this.currentSnapshot=t}triggerCallback(t){let e=t==="start"?this._onStartFns:this._onDoneFns;e.forEach(i=>i()),e.length=0}},Qe=class{validateStyleProperty(t){return!0}validateAnimatableStyleProperty(t){return!0}containsElement(t,e){return ls(t,e)}getParentElement(t){return Tt(t)}query(t,e,i){return ds(t,e,i)}computeStyle(t,e,i){return Kt(t,e)}animate(t,e,i,r,o,a=[]){let n=r==0?"both":"forwards",l={duration:i,delay:r,fill:n};o&&(l.easing=o);let d=new Map,u=a.filter(h=>h instanceof Ze);po(i,r)&&u.forEach(h=>{h.currentSnapshot.forEach((p,b)=>d.set(b,p))});let c=co(e).map(h=>new Map(h));c=_o(t,c,d);let f=Yo(t,c);return new Ze(t,c,l,f)}};var Ve="@",vs="@.disabled",Xe=class{namespaceId;delegate;engine;_onDestroy;\u0275type=0;constructor(t,e,i,r){this.namespaceId=t,this.delegate=e,this.engine=i,this._onDestroy=r}get data(){return this.delegate.data}destroyNode(t){var e,i;(i=(e=this.delegate).destroyNode)==null||i.call(e,t)}destroy(){var t;this.engine.destroy(this.namespaceId,this.delegate),this.engine.afterFlushAnimationsDone(()=>{queueMicrotask(()=>{this.delegate.destroy()})}),(t=this._onDestroy)==null||t.call(this)}createElement(t,e){return this.delegate.createElement(t,e)}createComment(t){return this.delegate.createComment(t)}createText(t){return this.delegate.createText(t)}appendChild(t,e){this.delegate.appendChild(t,e),this.engine.onInsert(this.namespaceId,e,t,!1)}insertBefore(t,e,i,r=!0){this.delegate.insertBefore(t,e,i),this.engine.onInsert(this.namespaceId,e,t,r)}removeChild(t,e,i){this.parentNode(e)&&this.engine.onRemove(this.namespaceId,e,this.delegate)}selectRootElement(t,e){return this.delegate.selectRootElement(t,e)}parentNode(t){return this.delegate.parentNode(t)}nextSibling(t){return this.delegate.nextSibling(t)}setAttribute(t,e,i,r){this.delegate.setAttribute(t,e,i,r)}removeAttribute(t,e,i){this.delegate.removeAttribute(t,e,i)}addClass(t,e){this.delegate.addClass(t,e)}removeClass(t,e){this.delegate.removeClass(t,e)}setStyle(t,e,i,r){this.delegate.setStyle(t,e,i,r)}removeStyle(t,e,i){this.delegate.removeStyle(t,e,i)}setProperty(t,e,i){e.charAt(0)==Ve&&e==vs?this.disableAnimations(t,!!i):this.delegate.setProperty(t,e,i)}setValue(t,e){this.delegate.setValue(t,e)}listen(t,e,i){return this.delegate.listen(t,e,i)}disableAnimations(t,e){this.engine.disableAnimations(t,e)}},At=class extends Xe{factory;constructor(t,e,i,r,o){super(e,i,r,o),this.factory=t,this.namespaceId=e}setProperty(t,e,i){e.charAt(0)==Ve?e.charAt(1)=="."&&e==vs?(i=i===void 0?!0:!!i,this.disableAnimations(t,i)):this.engine.process(this.namespaceId,t,e.slice(1),i):this.delegate.setProperty(t,e,i)}listen(t,e,i){if(e.charAt(0)==Ve){let r=$o(t),o=e.slice(1),a="";return o.charAt(0)!=Ve&&([o,a]=Zo(o)),this.engine.listen(this.namespaceId,r,o,a,n=>{let l=n._data||-1;this.factory.scheduleListenerCallback(l,i,n)})}return this.delegate.listen(t,e,i)}};function $o(s){switch(s){case"body":return document.body;case"document":return document;case"window":return window;default:return s}}function Zo(s){let t=s.indexOf("."),e=s.substring(0,t),i=s.slice(t+1);return[e,i]}var et=class{delegate;engine;_zone;_currentId=0;_microtaskId=1;_animationCallbacksBuffer=[];_rendererCache=new Map;_cdRecurDepth=0;constructor(t,e,i){this.delegate=t,this.engine=e,this._zone=i,e.onRemovalComplete=(r,o)=>{o==null||o.removeChild(null,r)}}createRenderer(t,e){var d;let i="",r=this.delegate.createRenderer(t,e);if(!t||!((d=e==null?void 0:e.data)!=null&&d.animation)){let u=this._rendererCache,c=u.get(r);if(!c){let f=()=>u.delete(r);c=new Xe(i,r,this.engine,f),u.set(r,c)}return c}let o=e.id,a=e.id+"-"+this._currentId;this._currentId++,this.engine.register(a,t);let n=u=>{Array.isArray(u)?u.forEach(n):this.engine.registerTrigger(o,a,t,u.name,u)};return e.data.animation.forEach(n),new At(this,a,r,this.engine)}begin(){this._cdRecurDepth++,this.delegate.begin&&this.delegate.begin()}_scheduleCountTask(){queueMicrotask(()=>{this._microtaskId++})}scheduleListenerCallback(t,e,i){if(t>=0&&t<this._microtaskId){this._zone.run(()=>e(i));return}let r=this._animationCallbacksBuffer;r.length==0&&queueMicrotask(()=>{this._zone.run(()=>{r.forEach(o=>{let[a,n]=o;a(n)}),this._animationCallbacksBuffer=[]})}),r.push([e,i])}end(){this._cdRecurDepth--,this._cdRecurDepth==0&&this._zone.runOutsideAngular(()=>{this._scheduleCountTask(),this.engine.flush(this._microtaskId)}),this.delegate.end&&this.delegate.end()}whenRenderingDone(){return this.engine.whenRenderingDone()}};var Xo=(()=>{class s extends ve{constructor(e,i,r){super(e,i,r)}ngOnDestroy(){this.flush()}static \u0275fac=function(i){return new(i||s)(Ue(Wt),Ue(le),Ue(de))};static \u0275prov=ee({token:s,factory:s.\u0275fac})}return s})();function ea(){return new Ge}function ta(s,t,e){return new et(s,t,e)}var ks=[{provide:de,useFactory:ea},{provide:ve,useClass:Xo},{provide:Ot,useFactory:ta,deps:[Qt,ve,qt]}],ia=[{provide:le,useFactory:()=>new Qe},{provide:it,useValue:"BrowserAnimations"},...ks],Hd=[{provide:le,useClass:Dt},{provide:it,useValue:"NoopAnimations"},...ks];function ws(){return Vt("NgEagerAnimations"),[...ia]}var Da=Bt({"../i18n/bg.json":()=>ys(),"../i18n/ca.json":()=>Hs(),"../i18n/cs.json":()=>zs(),"../i18n/de.json":()=>Ss(),"../i18n/en.json":()=>js(),"../i18n/es.json":()=>As(),"../i18n/fi.json":()=>Ns(),"../i18n/fr.json":()=>Ps(),"../i18n/he.json":()=>Ts(),"../i18n/hu.json":()=>Ds(),"../i18n/id.json":()=>Us(),"../i18n/it.json":()=>Ks(),"../i18n/ja.json":()=>Is(),"../i18n/ko.json":()=>Cs(),"../i18n/mk.json":()=>xs(),"../i18n/nl.json":()=>Es(),"../i18n/no.json":()=>Rs(),"../i18n/pl.json":()=>Bs(),"../i18n/pt-BR.json":()=>Ms(),"../i18n/pt.json":()=>Fs(),"../i18n/ru.json":()=>qs(),"../i18n/sl.json":()=>Vs(),"../i18n/sv.json":()=>Os(),"../i18n/th.json":()=>Ls(),"../i18n/tr.json":()=>Gs(),"../i18n/uk.json":()=>Ys(),"../i18n/zh-CN.json":()=>Ws(),"../i18n/zh-TW.json":()=>Js()});var $s=(()=>{class s{$router=E(_e);$translate=E(Ke);$settings=E(me);constructor(){let e=this.$translate,i=this.$settings,r=window.matchMedia("(prefers-color-scheme: dark)"),o=d=>{i.setBrowserLightingMode(d.matches?"dark":"light")};o(r),r.addEventListener("change",o);let a=["en","de","fi","fr","pl","cs","ru","zh-CN","zh-TW","hu","ja","es","nl","tr","it","bg","sv","no","sl","pt-BR","pt","id","ca","ko","mk","th","uk","he"],n=["he"];e.onLangChange.subscribe(()=>{i.rtl=n.includes(e.currentLang)});let l=a.find(d=>d===e.getBrowserLang()||d===e.getBrowserCultureLang());for(let d of a)e.setTranslation(d,Da(`../i18n/${d}.json`));l?e.use(l):e.setDefaultLang("en")}static \u0275fac=function(i){return new(i||s)};static \u0275cmp=Lt({type:s,selectors:[["app-root"]],decls:1,vars:0,template:function(i,r){i&1&&Gt(0,"router-outlet")},dependencies:[si],encapsulation:2})}return s})();globalThis.backup={maxBackupSize:25*1024*1024,maxBackupSizeText:"25MB",maxBackupFileSize:10*1024*1024,maxBackupFileSizeText:"10MB"};ce.production&&void 0;Xt($s,{providers:[Ft(st,L.forRoot(),ti.forRoot({autoDismiss:!0,newestOnTop:!1,closeButton:!0,maxOpened:2,positionClass:"toast-bottom-right"}),Ce,ci.forRoot({defaultOptions:{scrollBeyondLastLine:!1,quickSuggestions:!0,parameterHints:!0,formatOnType:!0,formatOnPaste:!0,folding:!0,minimap:{enabled:!1}},onMonacoLoad:pi}),xe.forRoot(),hi,Oi,Gi,Li,bi,Jt),{provide:Yt,useFactory:s=>s.currentLang in at?at[s.currentLang]:"en",deps:[Ke]},ws(),$t(Zt())]}).catch(s=>console.log(s));
|