-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathio-package.json
1513 lines (1513 loc) · 50.4 KB
/
io-package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"common": {
"name": "reolink",
"version": "1.2.1",
"news": {
"1.2.1": {
"en": "set some errors to debug logs",
"de": "fehler auf debug-logs einstellen",
"ru": "установить некоторые ошибки для отладки журналов",
"pt": "definir alguns erros para depurar logs",
"nl": "enkele fouten in de debug-logs plaatsen",
"fr": "définir quelques erreurs pour déboguer les journaux",
"it": "impostare alcuni errori per debug logs",
"es": "establecer algunos errores para depurar registros",
"pl": "ustawić pewne błędy w logach debugowania",
"uk": "встановити деякі помилки для видалення журналів",
"zh-cn": "设置一些调试日志错误"
},
"1.2.0": {
"en": "update disk info\nuri enconding is switchable (helps sometimes by one special char)\n#28 PTZ check added",
"de": "dateidaten aktualisieren\nuri enconding ist schaltbar (hilfe manchmal von einem speziellen zeichen)\n#28 PTZ Check hinzugefügt",
"ru": "info\nuri enconding можно переключить (помогает иногда одним специальным шаром)\n#28 PTZ добавлена",
"pt": "atualizar informações do disco\nuri enconding é comutável (ajuda às vezes por um carvão especial)\n#28 PTZ Verificação adicionada",
"nl": "schijfinfo bijwerken\nuri enconding is schakelbaar (helpt soms door een speciale char)\n28 PTZ controle toegevoegd",
"fr": "mettre à jour les informations du disque\nuri enconding est commutable (aide parfois par un char spécial)\n#28 PTZ vérification ajoutée",
"it": "aggiornare le informazioni sul disco\nuri enconding è commutabile (aiuta a volte da uno speciale char)\n#28 PTZ controllo aggiunto",
"es": "actualización del disco info\nuri enconding es conmutable (ayuda a veces por un char especial)\n#28 PTZ cheque añadido",
"pl": "aktualizacja informacji o dysku\nuri enconding jest switchable (pomaga czasami przez jeden specjalny znak)\n# 28 PTZ check added",
"uk": "оновлення інформації диска\nuri enconding (допомагає іноді одним особливим char)\n#28 ПТЗ додано",
"zh-cn": "更新磁盘信息\nuri 编码是可切换的(有时由一个特殊的字符帮助)\n#28 PTZ (英语). 检查已添加"
},
"1.1.2": {
"en": "[#22](https://github.com/aendue/ioBroker.reolink/issues/22) password with some more special chars works now\nadapter warnings resolved",
"de": "[#22](https://github.com/aendue/ioBroker.reolink/issues/22) Passwort mit einigen weiteren speziellen Zeichen funktioniert jetzt\nadapterwarnungen behoben",
"ru": "[#22] (https://github.com/aendue/ioBroker.reolink/issues/22) пароль с некоторыми более специальными харями работает сейчас\nпредупреждения адаптера разрешены",
"pt": "[#22](https://github.com/aendue/ioBroker.reolink/issues/22) senha com algumas obras de caridade mais especiais agora\navisos do adaptador resolvidos",
"nl": "[#22](https://github.com/aendue/ioBroker.reolink/issues/22) wachtwoord met wat meer speciale tekens werkt nu\nadapter waarschuwingen verdwenen",
"fr": "[#22](https://github.com/aendue/ioBroker.reolink/issues/22) mot de passe avec des caractères plus spéciaux fonctionne maintenant\navertissements d'adaptateur résolus",
"it": "[#22](https://github.com/aendue/ioBroker.reolink/issues/22) password con alcune opere di beneficenza più speciali ora\navvertenze adattatori risolte",
"es": "[#22](https://github.com/aendue/ioBroker.reolink/issues/22) contraseña con algunos más obras de caridad especiales ahora\nadmisiones de adaptador resueltas",
"pl": "[# 22] (https: / / github.com / aendue / ioBroker.reolink / issues / 22) hasło z trochę więcej specjalnych znaków działa teraz\nostrzeżenia adaptera ustąpiły",
"uk": "[#22](https://github.com/aendue/ioBroker.reolink/products/22) пароля з деякими спеціальними chars працює зараз\nпопередження адаптерів",
"zh-cn": "[#22] (https://github.com/aendue/ioBroker.reolink/issues/22) (中文(简体) ). 密码加上一些特殊的字符\n已解决适配器警告"
},
"1.1.1": {
"en": "removed warnings from adapter check\nadded ftp support\nchannel now distinguishing most requests\n[#79](https://github.com/aendue/ioBroker.reolink/issues/79) error messages with more info where",
"de": "entfernte warnungen aus der adapterprüfung\nftp unterstützung\nkanal jetzt unterscheiden die meisten anfragen\n[#79](https://github.com/aendue/ioBroker.reolink/issues/79) Fehlermeldungen mit mehr Info wo",
"ru": "удаленные предупреждения от проверки адаптера\nдобавленная поддержка ftp\nканал теперь различает большинство запросов\n[#79] (https://github.com/aendue/ioBroker.reolink/issues/79) сообщения об ошибках с большей информацией, где",
"pt": "avisos removidos da verificação do adaptador\nsuporte de ftp adicionado\ncanal agora distingue a maioria dos pedidos\n[#79](https://github.com/aendue/ioBroker.reolink/issues/79) mensagens de erro com mais informações onde",
"nl": "verwijderde waarschuwingen van adaptercontrole\ntoegevoegde ftp-ondersteuning\nkanaal dat nu de meeste verzoeken onderscheidt\n[#79](https://github.com/aendue/ioBroker.reolink/issues/79) foutmeldingen met meer informatie waar",
"fr": "avertissements supprimés de la vérification de l'adaptateur\nsupport ftp ajouté\ncanal distinguant maintenant la plupart des requêtes\n[#79](https://github.com/aendue/ioBroker.reolink/issues/79) messages d'erreur avec plus d'informations où",
"it": "avvisi rimossi dal controllo dell'adattatore\nsupporto ftp aggiunto\ncanale ora distinguere la maggior parte delle richieste\n[#79](https://github.com/aendue/ioBroker.reolink/issues/79) messaggi di errore con più informazioni dove",
"es": "advertencias eliminadas de la comprobación del adaptador\napoyo añadido ftp\ncanal ahora distingue la mayoría de las solicitudes\n[#79](https://github.com/aendue/ioBroker.reolink/issues/79) mensajes de error con más información",
"pl": "usunięte ostrzeżenia z kontroli adaptera\ndodane wsparcie ftp\nkanał wyróżniający większość żądań\n[# 79] (https: / / github.com / aendue / ioBroker.reolink / issues / 79) komunikaty błędów z więcej informacji, gdzie",
"uk": "видалити попередження з перевірки адаптера\nдодано підтримку ftp\nканал тепер відрізняє більшість запитів\n[#79](https://github.com/aendue/ioBroker.reolink/issues/79) повідомлення про помилки з більш детальною інформацією, де",
"zh-cn": "从适配器检查中删除警告\n添加 ftp 支持\n频道现在区分大多数请求\n[79] (https://github.com/aendue/ioBroker.reolink/issues/79) (中文(简体) ). 带有更多信息的错误信息"
},
"1.1.0": {
"en": "[#56](https://github.com/aendue/ioBroker.reolink/issues/56) added function to switch scheduled recording on and off\n[#25](https://github.com/aendue/ioBroker.reolink/issues/25) detach led light from led light mode\nadded setWhiteLedMode function\nread zoom and focus with POST request (works on RLC-823A v3.1)\nremoved node 16",
"de": "[#56](https://github.com/aendue/ioBroker.reolink/issues/56) hat die Funktion hinzugefügt, die geplante Aufnahme ein- und ausschaltet\n[#25](https://github.com/aendue/ioBroker.reolink/issues/25) abnehmbares LED-Licht aus LED-Lichtmodus\nhinzugefügt WhiteLedMode Funktion\nzoom und fokus mit POST-Anforderung (Arbeiten auf RLC-823A v3.1)\nentfernter knoten anhang",
"ru": "[#56] (https://github.com/aendue/ioBroker.reolink/issues/56)\n[#25] (https://github.com/aendue/ioBroker.reolink/issues/25) Отключение светодиодного света\nдобавлен Функция WhiteLedMode\nчитайте зум и сосредоточьтесь с запросом POST (работает на RLC-823A v3.1)\nудаленный узел 16",
"pt": "[#56](https://github.com/aendue/ioBroker.reolink/issues/56) adicionou a função para alternar a gravação agendada e desligada\n[#25](https://github.com/aendue/ioBroker.reolink/issues/25) deslize levou luz do modo de luz led\nconjunto adicionado Função de WhiteLedMode\nler zoom e foco com pedido POST (trabalho em RLC-823A v3.1)\nnó removido 16",
"nl": "[#56](https://github.com/aendue/ioBroker.reolink/issues/56) toegevoegd functie om geplande opname aan en uit te schakelen\n[#25](https://github.com/aendue/ioBroker.reolink/issues/25) loskoppelen led licht van led licht modus\nset toegevoegd WhiteLedMode-functie\nlees zoom en focus met POST verzoek (werken op RLC-823A v3.1)\nverwijderde knoop 16",
"fr": "[#56](https://github.com/aendue/ioBroker.reolink/issues/56) a ajouté une fonction pour activer et désactiver l'enregistrement programmé\n[#25](https://github.com/aendue/ioBroker.reolink/issues/25) détachez la lumière led du mode lumière led\nensemble ajouté Fonction WhiteLedMode\nlire zoom et mise au point avec la demande POST (travaille sur RLC-823A v3.1)\nnoeud enlevé 16",
"it": "[#56](https://github.com/aendue/ioBroker.reolink/issues/56) funzione aggiunta per attivare e disattivare la registrazione programmata\n[#25](https://github.com/aendue/ioBroker.reolink/issues/25) il distacco ha condotto la luce dalla modalità di luce led\nset aggiunto Funzione WhiteLedMode\nleggere lo zoom e concentrarsi sulla richiesta POST (lavora su RLC-823A v3.1)\nnodo rimosso 16",
"es": "[#56](https://github.com/aendue/ioBroker.reolink/issues/56) añadió la función de activar y apagar la grabación programada\n[#25](https://github.com/aendue/ioBroker.reolink/issues/25) desprendimiento de luz led del modo de luz led\nconjunto Función WhiteLedMode\nleer zoom y enfoque con solicitud POST (trabaja en RLC-823A v3.1)\nnodo eliminado 16",
"pl": "[# 56] (https: / / github.com / aendue / ioBroker.reolink / issues / 56) dodano funkcję włączania i wyłączania planowego zapisu\n[# 25] (https: / / github.com / aendue / ioBroker.reolink / issues / 25) odłączanie światła LED od trybu światła LED\ndodany zestaw Funkcja WhiteLedMode\nczytaj zoom i ostrość z zapytaniem POST (działa na RLC- 823A v3.1)\nusunięty węzeł 16",
"uk": "[#56](https://github.com/aendue/ioBroker.reolink/issues/56) додана функція для перемикання запланованого запису та вимкнення\n[#25](https://github.com/aendue/ioBroker.reolink/issues/25) detach світлодіодний світло від світлодіодного світла\nдодано набір Функція WhiteLedMode\nчитати Зомбі та фокус із запитом POST (працює на RLC-823A v3.1)\nвидалений вузол 16 мар",
"zh-cn": "[#56] (https://github.com/aendue/ioBroker.reolink/issues/56) 添加了功能,以切换已排定的录制开关\n[#25] (https://github.com/aendue/ioBroker.reolink/issues/25) (中文(简体) ). 从导光模式分离引光\n添加的一组 WhiteLedMode 函数\n使用 POST 请求读取缩放和焦点( RLC-823A v3.1 的工作)\n删除节点 第 16 条"
},
"1.0.3": {
"en": "[#49](https://github.com/aendue/ioBroker.reolink/issues/49)\n[#47](https://github.com/aendue/ioBroker.reolink/issues/47)",
"de": "[#49](https://github.com/aendue/ioBroker.reolink/issues/49)\n[#47](https://github.com/aendue/ioBroker.reolink/issues/47)",
"ru": "[#49] (https://github.com/aendue/ioBroker.reolink/issues/49)\n[#47] (https://github.com/aendue/ioBroker.reolink/issues/47)",
"pt": "[#49](https://github.com/aendue/ioBroker.reolink/issues/49)\n[#47](https://github.com/aendue/ioBroker.reolink/issues/47)",
"nl": "[#49](https://github.com/aendue/ioBroker.reolink/issues/49)\n[#47](https://github.com/aendue/ioBroker.reolink/issues/47)",
"fr": "[#49](https://github.com/aendue/ioBroker.reolink/issues/49)\n[#47](https://github.com/aendue/ioBroker.reolink/issues/47)",
"it": "[#49](https://github.com/aendue/ioBroker.reolink/issues/49)\n[#47](https://github.com/aendue/ioBroker.reolink/issues/47)",
"es": "[#49](https://github.com/aendue/ioBroker.reolink/issues/49)\n[#47](https://github.com/aendue/ioBroker.reolink/issues/47)",
"pl": "[# 49] (https: / / github.com / aendue / ioBroker.reolink / issues / 49)\n[# 47] (https: / / github.com / aendue / ioBroker.reolink / issues / 47)",
"uk": "[#49](https://github.com/aendue/ioBroker.reolink/issues/49)\n[#47](https://github.com/aendue/ioBroker.reolink/issues/47)",
"zh-cn": "[49] (https://github.com/aendue/ioBroker.reolink/issues/49) (中文(简体) )\n[47] (https://github.com/aendue/ioBroker.reolink/issues/47) (中文(简体) )"
},
"1.0.2": {
"en": "known working cameras added\nsetIrLights accept \"On\" now\n[#40](https://github.com/aendue/ioBroker.reolink/issues/40)\n[#42](https://github.com/aendue/ioBroker.reolink/issues/42)",
"de": "bekannte arbeitskameras hinzugefügt\nsetIrLights akzeptieren Jetzt\n[#40](https://github.com/aendue/ioBroker.reolink/issues/40)\n[#42](https://github.com/aendue/ioBroker.reolink/issues/42)",
"ru": "добавлены известные рабочие камеры\nsetIrLights принять Сейчас\n[#40](https://github.com/aendue/ioBroker.reolink/issues/40)\n[#42](https://github.com/aendue/ioBroker.reolink/issues/42)",
"pt": "câmaras de trabalho conhecidas adicionadas\nsetIrLights aceitar Agora\n[#40](https://github.com/aendue/ioBroker.reolink/issues/40)\n[#42](https://github.com/aendue/ioBroker.reolink/issues/42)",
"nl": "gekende camera's toegevoegd\nplaatsen accepteren Op dit moment\n* _htps * *github.com/ aendue/ioBroker\n_",
"fr": "caméras de travail connues ajoutées\nsetIrLights accept Maintenant\n[#40](https://github.com/aendue/ioBroker.reolink/issues/40)\n[#42](https://github.com/aendue/ioBroker.reolink/issues/42)",
"it": "telecamere di lavoro note aggiunto\naccettazione di setIrLights Ora\n[#40](https://github.com/aendue/ioBroker.reolink/issues/40)\n[#42](https://github.com/aendue/ioBroker.reolink/issues/42)",
"es": "cámaras de trabajo conocidas\nsetIrLights aceptar Ahora\n[#40](https://github.com/aendue/ioBroker.reolink/issues/40)\n[#42](https://github.com/aendue/ioBroker.reolink/issues/42)",
"pl": "dodawane są znane kamery robocze\nsetIrLight (ang.). teraz\n(#40(https:/github.com/aendue/ioBroker.reolink/issues/40) (ang.)\n(#42(https:/github.com/aendue/ioBroker.reolink/issues/42) (ang.)",
"uk": "відомі робочі камери\nsetIrLights Приймати Зараз\n[#40](https://github.com/aendue/ioBroker.reolink/issues/40)\n[#42](https://github.com/aendue/ioBroker.reolink/issues/42)",
"zh-cn": "已知的工作摄像机添加\nb. 接受的一套最佳做法 我现在\n[第40](http://github.com/aendue/ioBroker.reolink/issues/40)\n[第42](http://github.com/aendue/ioBroker.reolink/issues/42)"
}
},
"titleLang": {
"en": "reolink",
"de": "reolink",
"ru": "реолин",
"pt": "religação",
"nl": "reolink",
"fr": "reolink",
"it": "reolink",
"es": "reolink",
"pl": "reolinka",
"zh-cn": "重新联系",
"uk": "reolink"
},
"desc": {
"en": "reolink",
"de": "reolink",
"ru": "реолин",
"pt": "religação",
"nl": "reolink",
"fr": "reolink",
"it": "reolink",
"es": "reolink",
"pl": "reolinka",
"zh-cn": "重新联系",
"uk": "reolink"
},
"authors": [
"Andy Grundt <andy.grundt@icloud.com>"
],
"keywords": [
"reolink",
"ip-camera",
"image",
"camera"
],
"licenseInformation": {
"type": "free",
"license": "MIT"
},
"platform": "Javascript/Node.js",
"icon": "reolink_logo.png",
"enabled": true,
"extIcon": "https://raw.githubusercontent.com/aendue/ioBroker.reolink/main/admin/reolink_logo.png",
"readme": "https://github.com/aendue/ioBroker.reolink/blob/main/README.md",
"loglevel": "info",
"tier": 3,
"mode": "daemon",
"type": "alarm",
"compact": true,
"connectionType": "local",
"dataSource": "poll",
"messagebox": true,
"adminUI": {
"config": "json"
},
"dependencies": [
{
"js-controller": ">=5.0.19"
}
],
"globalDependencies": [
{
"admin": ">=5.1.28"
}
]
},
"encryptedNative": [
"cameraPassword"
],
"protectedNative": [
"cameraPassword"
],
"native": {
"cameraType": "",
"cameraIp": "",
"cameraProtocol": "https",
"cameraChannel": 0,
"cameraUser": "",
"cameraPassword": "",
"apiRefreshInterval": "10",
"sslvalid": false,
"UriEncodedPassword": true
},
"objects": [],
"instanceObjects": [
{
"_id": "sensor",
"type": "channel",
"common": {
"name": {
"en": "sensor",
"de": "sensor",
"ru": "датчик",
"pt": "sensor de sensor",
"nl": "sensor",
"fr": "capteur",
"it": "sensore sensore sensore sensore",
"es": "sensor",
"pl": "sensor",
"zh-cn": "传感"
}
},
"native": {}
},
{
"_id": "sensor.dog_cat",
"type": "channel",
"common": {
"name": {
"en": "dog cat",
"de": "hund katze",
"ru": "собака кот",
"pt": "cão gato",
"nl": "hond",
"fr": "chien chat",
"it": "cane gatto",
"es": "perro",
"pl": "kot",
"uk": "собака кішка",
"zh-cn": "导 言"
}
},
"native": {}
},
{
"_id": "sensor.dog_cat.state",
"type": "state",
"common": {
"role": "value",
"name": {
"en": "dog cat detection",
"de": "hund katze erkennung",
"ru": "обнаружение собаки кота",
"pt": "detecção de gato cão",
"nl": "hondenpolitie",
"fr": "détection de chiens",
"it": "rilevamento del gatto del cane",
"es": "detección de gatos",
"pl": "psy",
"uk": "виявлення собак",
"zh-cn": "目 录"
},
"type": "boolean",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sensor.dog_cat.support",
"type": "state",
"common": {
"role": "value",
"name": {
"en": "dog cat support",
"de": "hund katze unterstützung",
"ru": "собака кошка поддержка",
"pt": "cão gato apoio",
"nl": "honden",
"fr": "soutien aux chats",
"it": "cane gatto supporto",
"es": "gato apoyo",
"pl": "koty",
"uk": "підтримка собак",
"zh-cn": "b. 导向"
},
"type": "boolean",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sensor.face",
"type": "channel",
"common": {
"name": {
"en": "face",
"de": "gesicht",
"ru": "лицо",
"pt": "rosto",
"nl": "gezicht",
"fr": "face",
"it": "faccia",
"es": "cara",
"pl": "face",
"uk": "обличчя",
"zh-cn": "面对面"
}
},
"native": {}
},
{
"_id": "sensor.face.state",
"type": "state",
"common": {
"role": "value",
"name": {
"en": "face detection",
"de": "gesichtserkennung",
"ru": "обнаружение лица",
"pt": "detecção de face",
"nl": "gezichtsdetector",
"fr": "détection du visage",
"it": "rilevamento del viso",
"es": "detección facial",
"pl": "wykrywanie twarzy",
"uk": "виявлення обличчя",
"zh-cn": "探 视"
},
"type": "boolean",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sensor.face.support",
"type": "state",
"common": {
"role": "value",
"name": {
"en": "face support",
"de": "gesichts erkennung möglich",
"ru": "поддержка лица",
"pt": "suporte de face",
"nl": "ondersteuning",
"fr": "face support",
"it": "supporto viso",
"es": "soporte facial",
"pl": "wsparcie",
"uk": "підтримка обличчя",
"zh-cn": "面对的支助"
},
"type": "boolean",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sensor.people",
"type": "channel",
"common": {
"name": {
"en": "people",
"de": "menschen",
"ru": "люди",
"pt": "pessoas",
"nl": "mensen",
"fr": "gens",
"it": "persone",
"es": "gente",
"pl": "ludzie",
"uk": "люди",
"zh-cn": "人民"
}
},
"native": {}
},
{
"_id": "sensor.people.state",
"type": "state",
"common": {
"role": "value",
"name": {
"en": "people detection",
"de": "menschen entdecken",
"ru": "обнаружение людей",
"pt": "detecção de pessoas",
"nl": "mensen detecteren",
"fr": "détection des personnes",
"it": "rilevamento persone",
"es": "detección de personas",
"pl": "wykrywanie",
"uk": "виявлення людей",
"zh-cn": "目 录"
},
"type": "boolean",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sensor.people.support",
"type": "state",
"common": {
"role": "value",
"name": {
"en": "people support",
"de": "menschen unterstützen",
"ru": "люди поддерживают",
"pt": "apoio de pessoas",
"nl": "mensen steunen mensen",
"fr": "soutien aux personnes",
"it": "persone sostengono",
"es": "apoyo a las personas",
"pl": "wspieranie",
"uk": "підтримка людей",
"zh-cn": "人民支持"
},
"type": "boolean",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sensor.vehicle",
"type": "channel",
"common": {
"name": {
"en": "vehicle",
"de": "fahrzeug",
"ru": "автомобиль",
"pt": "veículo",
"nl": "voertuig",
"fr": "véhicule",
"it": "veicolo",
"es": "vehículo",
"pl": "pojazd",
"uk": "автомобіль",
"zh-cn": "车辆"
}
},
"native": {}
},
{
"_id": "sensor.vehicle.state",
"type": "state",
"common": {
"role": "value",
"name": {
"en": "vehicle detection",
"de": "fahrzeugerkennung",
"ru": "обнаружение автомобиля",
"pt": "detecção de veículos",
"nl": "voertuig detectie",
"fr": "détection du véhicule",
"it": "rilevamento del veicolo",
"es": "detección de vehículos",
"pl": "detektor",
"uk": "виявлення транспортного засобу",
"zh-cn": "车辆检查"
},
"type": "boolean",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sensor.vehicle.support",
"type": "state",
"common": {
"role": "value",
"name": {
"en": "vehicle support",
"de": "fahrzeugunterstützung",
"ru": "поддержка автомобиля",
"pt": "suporte do veículo",
"nl": "voertuig ondersteuning",
"fr": "support du véhicule",
"it": "supporto veicolo",
"es": "soporte para vehículos",
"pl": "wsparcie",
"uk": "підтримка автомобіля",
"zh-cn": "车辆支助"
},
"type": "boolean",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "info.connection",
"type": "state",
"common": {
"role": "indicator.connected",
"name": "Device or service connected",
"type": "boolean",
"read": true,
"write": false,
"def": false
},
"native": {}
},
{
"_id": "sensor.motion",
"type": "state",
"common": {
"role": "sensor.motion",
"name": {
"en": "Motion Detection",
"de": "Bewegungserkennung",
"ru": "Обнаружение движения",
"pt": "Detecção de movimento",
"nl": "Motion Detect",
"fr": "Détection de mouvement",
"it": "Rilevamento di movimento",
"es": "Motion Detection",
"pl": "Motion Detection",
"zh-cn": "纠正"
},
"type": "boolean",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "disc",
"type": "channel",
"common": {
"name": {
"en": "harddisk",
"de": "harddisk",
"ru": "харддиск",
"pt": "disco rígido",
"nl": "harddisk",
"fr": "harddisk",
"it": "dischio duro",
"es": "harddisk",
"pl": "harddisk",
"zh-cn": "硬盘"
}
},
"native": {}
},
{
"_id": "disc.capacity",
"type": "state",
"common": {
"role": "value",
"name": {
"en": "capacity [MB]",
"de": "kapazität [MB]",
"ru": "вместимость [MB]",
"pt": "capacidade [MB]",
"nl": "capaciteit [MB]",
"fr": "capacité [MB]",
"it": "capacità [MB]",
"es": "capacidad [MB]",
"pl": "pojemność [MB]",
"zh-cn": "能力 [MB]"
},
"type": "number",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "disc.formatted",
"type": "state",
"common": {
"role": "indicator",
"name": {
"en": "formatted",
"de": "formatiert",
"ru": "форматирование",
"pt": "formatado",
"nl": "gevormd",
"fr": "formaté",
"it": "formattato",
"es": "formateado",
"pl": "formatować",
"zh-cn": "格式"
},
"type": "boolean",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "disc.mounted",
"type": "state",
"common": {
"role": "indicator",
"name": {
"en": "loaded",
"de": "geladen",
"ru": "загружено",
"pt": "carregado",
"nl": "geladen",
"fr": "chargé",
"it": "caricato",
"es": "cargado",
"pl": "loaded",
"zh-cn": "装载"
},
"type": "boolean",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "disc.free",
"type": "state",
"common": {
"role": "value",
"name": {
"en": "free memory [MB]",
"de": "freier speicher [MB]",
"ru": "бесплатная память [MB]",
"pt": "memória livre [MB]",
"nl": "gratis geheugen [MB]",
"fr": "mémoire libre [MB]",
"it": "memoria libera [MB]",
"es": "memoria libre [MB]",
"pl": "free memory [MB]",
"zh-cn": "免费记忆 [MB]"
},
"type": "number",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "network",
"type": "channel",
"common": {
"name": {
"en": "Network",
"de": "Netzwerk",
"ru": "Сеть",
"pt": "Rede",
"nl": "Netwerk",
"fr": "Network",
"it": "Rete di rete",
"es": "Red",
"pl": "Network",
"zh-cn": "网络"
}
},
"native": {}
},
{
"_id": "network.ip",
"type": "state",
"common": {
"role": "value",
"name": {
"en": "IP address",
"de": "IP-Adresse",
"ru": "IP адрес",
"pt": "Endereço IP",
"nl": "IP adres",
"fr": "Adresse IP",
"it": "Indirizzo IP",
"es": "Dirección IP",
"pl": "Adres IP",
"zh-cn": "IP地址"
},
"type": "string",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "network.channel",
"type": "state",
"common": {
"role": "value",
"name": {
"en": "Channel",
"de": "Kanal",
"ru": "Канал",
"pt": "Canal",
"nl": "Channel",
"fr": "Channel",
"it": "Canale",
"es": "Canal",
"pl": "Channel",
"zh-cn": "海峡"
},
"type": "number",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "network.connected",
"type": "state",
"common": {
"role": "indicator.reachable",
"name": {
"en": "Camera connected",
"de": "Kamera verbunden",
"ru": "Камера подключена",
"pt": "Câmara conectada",
"nl": "Camera verbonden",
"fr": "Caméra connectée",
"it": "Telecamera collegata",
"es": "Cámara conectada",
"pl": "Camera connected",
"zh-cn": "2. Camera联系"
},
"type": "boolean",
"read": true,
"write": false
}
},
{
"_id": "network.mac",
"type": "state",
"common": {
"role": "value",
"name": {
"en": "Camera mac",
"de": "Kamera mac",
"ru": "Камера mac",
"pt": "Mac da câmera",
"nl": "Camera mac",
"fr": "Caméra mac",
"it": "Macchina fotografica",
"es": "Cámara mac",
"pl": "Camera macer",
"zh-cn": "Camera mac"
},
"type": "string",
"read": true,
"write": false
}
},
{
"_id": "network.activeLink",
"type": "state",
"common": {
"role": "value",
"name": {
"en": "active link",
"de": "aktiver link",
"ru": "активная ссылка",
"pt": "link ativo",
"nl": "active",
"fr": "active link",
"it": "link attivo",
"es": "enlace activo",
"pl": "link",
"zh-cn": "积极联系"
},
"type": "string",
"read": true,
"write": false
}
},
{
"_id": "network.dns",
"type": "state",
"common": {
"role": "value",
"name": {
"en": "DNS address",
"de": "DNS-Adresse",
"ru": "DNS адрес",
"pt": "Endereço DNS",
"nl": "DNS adres",
"fr": "Adresse DNS",
"it": "Indirizzo DNS",
"es": "Dirección del DNS",
"pl": "Adres DNS",
"zh-cn": "DNS地址"
},
"type": "string",
"read": true,
"write": false
}
},
{
"_id": "network.gateway",
"type": "state",
"common": {
"role": "value",
"name": {
"en": "Gateway address",
"de": "Gateway-Adresse",
"ru": "Gateway адрес",
"pt": "Endereço do Gateway",
"nl": "Gateway adres",
"fr": "Adresse de la passerelle",
"it": "Indirizzo del gateway",
"es": "Dirección de puerta",
"pl": "Adres Gateway",
"zh-cn": "Gateway地址"
},
"type": "string",
"read": true,
"write": false
}
},
{
"_id": "network.mask",
"type": "state",
"common": {
"role": "value",
"name": {
"en": "Subnetmask",
"de": "Subnetmask",
"ru": "Субнетмаск",
"pt": "Subnetmask",
"nl": "Vertaling:",
"fr": "Subnetmask",
"it": "Subnetmask",
"es": "Subnetmask",
"pl": "Subnet",
"zh-cn": "Subnetmask"
},
"type": "string",
"read": true,
"write": false
}
},
{
"_id": "network.networkType",
"type": "state",
"common": {
"role": "value",
"name": {
"en": "NetworkType",
"de": "Netzwerktyp",
"ru": "NetworkType",
"pt": "Tipo de rede",
"nl": "NetworkT",
"fr": "NetworkType",
"it": "Rete",
"es": "NetworkType",
"pl": "NetworkType",
"zh-cn": "网络"
},
"type": "string",
"read": true,
"write": false
}
},
{
"_id": "device",
"type": "channel",
"common": {
"name": {
"en": "Information from Device",
"de": "Informationen vom Gerät",
"ru": "Информация от устройства",
"pt": "Informação do Dispositivo",
"nl": "Informatie van Device",
"fr": "Information de l'appareil",
"it": "Informazioni da Dispositivo",
"es": "Información del dispositivo",
"pl": "Informacja o Device",
"zh-cn": "从Devic收到的资料"
}
},
"native": {}
},
{
"_id": "device.model",
"type": "state",
"common": {
"role": "value",
"name": {
"en": "Camera model",
"de": "Kameramodell",
"ru": "Модель камеры",
"pt": "Modelo de câmera",
"nl": "Camera model",
"fr": "Modèle de caméra",
"it": "Modello di fotocamera",
"es": "Modelo de cámara",
"pl": "Model Camera",
"zh-cn": "2. Camera模型"
},
"type": "string",
"read": true,
"write": false
}
},
{
"_id": "device.buildDay",
"type": "state",
"common": {
"role": "value",
"name": {
"en": "Camera buildDay",
"de": "Kamera Produktionstag",
"ru": "Создание камеры День",
"pt": "Construção de câmera Dia",
"nl": "Camera bouwt Dag",
"fr": "Camera build Jour",
"it": "Costruzione della macchina fotografica Giorno",
"es": "Cámara Día",
"pl": "Kamera Dzień",
"zh-cn": "Camera大楼 日 日"
},
"type": "string",
"read": true,
"write": false
}
},
{
"_id": "device.cfgVer",
"type": "state",
"common": {
"role": "value",
"name": {
"en": "Camera cfgVer",
"de": "Kamera cfg",
"ru": "Камера cfg",
"pt": "Câmera cfg",
"nl": "Camera cfg",
"fr": "Caméra cfg",
"it": "Macchina fotografica cfg",
"es": "Cámara cfg",
"pl": "Camera cfg.",
"zh-cn": "Camera cfg"
},
"type": "string",
"read": true,
"write": false
}
},
{
"_id": "device.detail",
"type": "state",
"common": {
"role": "value",
"name": {
"en": "Camera detail",
"de": "Kamera Detail",
"ru": "Деталь камеры",
"pt": "Detalhes da câmera",
"nl": "Camera detail",
"fr": "Détail de la caméra",
"it": "Dettaglio della fotocamera",
"es": "Detalles de la cámara",
"pl": "Szczegół",
"zh-cn": "Camera详细情况"
},
"type": "string",
"read": true,
"write": false
}
},
{
"_id": "device.diskNum",
"type": "state",
"common": {
"role": "value",
"name": {
"en": "Camera diskNum",
"de": "Kamera HDDAnz",
"ru": "Диск камерыNum",
"pt": "Disco da câmeraNum",
"nl": "Camera DiskNum",
"fr": "Disque de caméraNum",
"it": "Fotocamera discoNum",
"es": "Disco de cámaraNum",
"pl": "Camera discNum",
"zh-cn": "Camera dikNum"
},
"type": "number",
"read": true,
"write": false
}
},
{
"_id": "device.firmVer",
"type": "state",
"common": {
"role": "value",
"name": {
"en": "Camera firmVer",
"de": "Kamera Firmware Version",
"ru": "Камера фирма Вер",
"pt": "Empresa de câmera Ver",
"nl": "Camera firma Ver",
"fr": "Camera firm Ver",
"it": "Azienda di macchine fotografiche Ver",
"es": "Firma de cámara Ver",
"pl": "Firma Camera Wiersze",
"zh-cn": "Camera公司 附 件"
},
"type": "string",
"read": true,
"write": false
}
},
{
"_id": "device.name",
"type": "state",
"common": {
"role": "value",
"name": {
"en": "Camera name",
"de": "Kameraname",
"ru": "Название камеры",
"pt": "Nome da câmara",