-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
3739 lines (3739 loc) · 125 KB
/
app.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
{
"_comment": "This file is generated. Please edit .homeycompose/app.json instead.",
"id": "com.electrolux-aeg.ocp",
"version": "1.4.16",
"compatibility": ">=12.0.0",
"sdk": 3,
"platforms": [
"local"
],
"name": {
"en": "Electrolux AEG",
"nl": "Electrolux AEG",
"da": "Electrolux AEG",
"de": "Electrolux AEG",
"es": "Electrolux AEG",
"fr": "Electrolux AEG",
"it": "Electrolux AEG",
"no": "Electrolux AEG",
"sv": "Electrolux AEG",
"pl": "Electrolux AEG",
"ru": "Electrolux AEG",
"ko": "Electrolux AEG"
},
"description": {
"en": "One Connected Platform appliances and services - for an effortlessly smarter home",
"nl": "Eén verbonden platform voor apparaten en diensten - voor een moeiteloos slimmer huis",
"da": "En sammenkoblet platform til apparater og tjenester - for et ubesværet smartere hjem",
"de": "Eine verbundene Plattform für Geräte und Dienstleistungen - für ein mühelos intelligenteres Zuhause",
"es": "Una plataforma conectada para electrodomésticos y servicios - para un hogar más inteligente sin esfuerzo",
"fr": "Une plateforme connectée pour les appareils et services - pour une maison plus intelligente et sans effort",
"it": "Una piattaforma connessa per elettrodomestici e servizi - per una casa più intelligente senza sforzo",
"no": "En tilkoblet plattform for apparater og tjenester - for et ubesværet smartere hjem",
"sv": "En ansluten plattform för apparater och tjänster - för ett smartare hem utan ansträngning",
"pl": "Jedna połączona platforma urządzeń i usług - dla beztrosko mądrzejszego domu",
"ru": "Единая платформа для устройств и услуг - для более умного дома без усилий",
"ko": "하나의 연결된 플랫폼 기기 및 서비스 - 더 스마트한 집을 위해"
},
"brandColor": "#d31937",
"category": [
"appliances"
],
"permissions": [],
"images": {
"small": "/assets/images/small.png",
"large": "/assets/images/large.png"
},
"author": {
"name": "Grant Slender",
"email": "gslender@gmail.com"
},
"source": "https://github.com/gslender/com.electrolux-aeg.ocp",
"bugs": {
"url": "https://github.com/gslender/com.electrolux-aeg.ocp/issues"
},
"flow": {
"triggers": [
{
"id": "measure_alerts_changed",
"title": {
"en": "The Alerts has changed"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=oven|laundry|dishwasher|air-purifier|robot|air-conditioning"
}
],
"tokens": [
{
"name": "measure_alerts",
"title": {
"en": "Alert"
},
"type": "string",
"example": "NEEDS SALT"
}
]
},
{
"id": "measure_applianceMode_changed",
"title": {
"en": "The Appliance Mode has changed",
"nl": "De modus van het apparaat is gewijzigd",
"da": "Apparatets tilstand er ændret",
"de": "Der Gerätemodus hat sich geändert",
"es": "El modo del electrodoméstico ha cambiado",
"fr": "Le mode de l'appareil a changé",
"it": "La modalità dell'apparecchio è cambiata",
"no": "Enhetens modus har endret",
"sv": "Apparatläget har ändrats",
"pl": "Tryb urządzenia został zmieniony",
"ru": "Режим прибора изменился",
"ko": "기기 모드가 변경되었습니다"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=oven|laundry|dishwasher|air-purifier|robot|air-conditioning"
}
],
"tokens": [
{
"name": "measure_applianceMode",
"title": {
"en": "Appliance Mode",
"nl": "Apparaatmodus",
"da": "Apparattilstand",
"de": "Gerätemodus",
"es": "Modo del electrodoméstico",
"fr": "Mode de l'appareil",
"it": "Modalità dell'apparecchio",
"no": "Enhetsmodus",
"sv": "Apparatläge",
"pl": "Tryb urządzenia",
"ru": "Режим прибора",
"ko": "기기 모드"
},
"type": "string",
"example": "RUNNING"
}
]
},
{
"id": "measure_applianceState_changed",
"title": {
"en": "The Appliance State has changed",
"nl": "De status van het apparaat is gewijzigd",
"da": "Apparatets tilstand er ændret",
"de": "Der Gerätezustand hat sich geändert",
"es": "El estado del electrodoméstico ha cambiado",
"fr": "L'état de l'appareil a changé",
"it": "Lo stato dell'apparecchio è cambiato",
"no": "Apparatets tilstand har endret seg",
"sv": "Apparatens tillstånd har ändrats",
"pl": "Stan urządzenia uległ zmianie",
"ru": "Состояние прибора изменилось",
"ko": "가전 제품 상태가 변경되었습니다"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=oven|laundry|dishwasher|air-purifier|robot|air-conditioning"
}
],
"tokens": [
{
"name": "measure_applianceState",
"title": {
"en": "Appliance State",
"nl": "Apparaatstatus",
"da": "Apparatets tilstand",
"de": "Zustand des Geräts",
"es": "Estado del aparato",
"fr": "État de l'appareil",
"it": "Stato dell'apparecchio",
"no": "Apparatets tilstand",
"sv": "Apparatens tillstånd",
"pl": "Stan urządzenia",
"ru": "Состояние прибора",
"ko": "가전 제품 상태"
},
"type": "string",
"example": "RUNNING"
}
]
},
{
"id": "measure_connectionState_changed",
"title": {
"en": "The Connection State has changed",
"de": "Der Verbindungsstatus hat sich geändert",
"nl": "De verbindingsstatus is gewijzigd",
"da": "Forbindelsestilstanden er ændret",
"es": "El estado de la conexión ha cambiado",
"fr": "L'état de la connexion a changé",
"it": "Lo stato della connessione è cambiato",
"no": "Tilkoblingstilstanden har endret seg",
"sv": "Anslutningstillståndet har ändrats",
"pl": "Stan połączenia uległ zmianie",
"ru": "Состояние подключения изменилось",
"ko": "연결 상태가 변경되었습니다"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=oven|laundry|dishwasher|air-purifier|robot|air-conditioning"
}
],
"tokens": [
{
"name": "measure_connectionState",
"title": "Connection State",
"type": "string",
"example": "connected"
}
]
},
{
"id": "measure_cyclePhase_changed",
"title": {
"en": "The Cycle Phase has changed",
"nl": "De cyclusfase is veranderd",
"da": "Cyklusfasen er ændret",
"de": "Die Zyklusphase hat sich geändert",
"es": "La fase del ciclo ha cambiado",
"fr": "La phase du cycle a changé",
"it": "La fase del ciclo è cambiata",
"no": "Syklusfasen har endret seg",
"sv": "Cykelfasen har ändrats",
"pl": "Faza cyklu została zmieniona",
"ru": "Фаза цикла изменилась",
"ko": "사이클 단계가 변경되었습니다"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=oven|laundry|dishwasher|air-purifier"
}
],
"tokens": [
{
"name": "measure_cyclePhase",
"title": {
"en": "Cycle Phase",
"nl": "Cyclusfase",
"da": "Cyklusfase",
"de": "Zyklusphase",
"es": "Fase del ciclo",
"fr": "Phase du cycle",
"it": "Fase del ciclo",
"no": "Syklusfase",
"sv": "Cykelfas",
"pl": "Faza cyklu",
"ru": "Фаза цикла",
"ko": "사이클 단계"
},
"type": "string",
"example": "OFF"
}
]
},
{
"id": "measure_doorState_changed",
"title": {
"en": "The Door State has changed",
"nl": "De deurstatus is gewijzigd",
"da": "Dørstatus er ændret",
"de": "Der Türzustand hat sich geändert",
"es": "El estado de la puerta ha cambiado",
"fr": "L'état de la porte a changé",
"it": "Lo stato della porta è cambiato",
"no": "Dørtilstanden har endret seg",
"sv": "Dörrstatus har ändrats",
"pl": "Stan drzwi został zmieniony",
"ru": "Состояние двери изменилось",
"ko": "문 상태가 변경되었습니다"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=oven|laundry|dishwasher|air-purifier"
}
],
"tokens": [
{
"name": "measure_doorState",
"title": "Door State",
"type": "string",
"example": "CLOSED"
}
]
},
{
"id": "measure_filter_changed",
"title": {
"en": "The filter life changed",
"nl": "Het filterleven is veranderd",
"da": "Filterets levetid er ændret",
"de": "Die Filterlebensdauer hat sich geändert",
"es": "La vida útil del filtro ha cambiado",
"fr": "La durée de vie du filtre a changé",
"it": "La vita del filtro è cambiata",
"no": "Filterlevetiden er endret",
"sv": "Filtrets livslängd har ändrats",
"pl": "Żywotność filtra została zmieniona",
"ru": "Срок службы фильтра изменился",
"ko": "필터 수명이 변경되었습니다"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=air-purifier"
}
],
"tokens": [
{
"name": "measure_filter",
"title": {
"en": "Filter life",
"nl": "Filterleven",
"da": "Filterliv",
"de": "Filterlaufzeit",
"es": "Vida del filtro",
"fr": "Durée de vie du filtre",
"it": "Vita del filtro",
"no": "Filterliv",
"sv": "Filtrets livslängd",
"pl": "Żywotność filtra",
"ru": "Срок службы фильтра",
"ko": "필터 수명"
},
"type": "number",
"example": 99
}
]
},
{
"id": "measure_pm1_changed",
"title": {
"en": "The PM1 value has changed",
"nl": "De PM1 waarde is veranderd",
"de": "Der PM1-Wert hat sich geändert",
"da": "PM1-værdien er ændret",
"es": "El valor de PM1 ha cambiado",
"fr": "La valeur PM1 a changé",
"it": "Il valore PM1 è cambiato",
"no": "PM1-verdien har endret seg",
"sv": "PM1-värdet har ändrats",
"pl": "Wartość PM1 zmieniła się",
"ru": "Значение PM1 изменилось",
"ko": "PM1 값이 변경되었습니다"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=air-purifier"
}
],
"tokens": [
{
"name": "measure_pm1",
"title": {
"en": "PM1",
"da": "PM1",
"es": "PM1",
"fr": "PM1",
"it": "PM1",
"no": "PM1",
"sv": "PM1",
"pl": "PM1",
"ru": "PM1",
"ko": "PM1"
},
"type": "number",
"example": 2
}
]
},
{
"id": "measure_pm10_changed",
"title": {
"en": "The PM10 value has changed",
"nl": "De PM10 waarde is veranderd",
"de": "Der PM10-Wert hat sich geändert",
"da": "PM10-værdien er ændret",
"es": "El valor de PM10 ha cambiado",
"fr": "La valeur PM10 a changé",
"it": "Il valore PM10 è cambiato",
"no": "PM10-verdien har endret seg",
"sv": "PM10-värdet har ändrats",
"pl": "Wartość PM10 się zmieniła",
"ru": "Значение PM10 изменилось",
"ko": "PM10 값이 변경되었습니다"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=air-purifier"
}
],
"tokens": [
{
"name": "measure_pm10",
"title": "PM10",
"type": "number",
"example": 2
}
]
},
{
"id": "measure_remoteControl_changed",
"title": {
"en": "The Remote Control status has changed",
"de": "Der Fernbedienungsstatus hat sich geändert",
"nl": "De status van de afstandsbediening is gewijzigd",
"da": "Fjernbetjeningens status er ændret",
"es": "El estado del control remoto ha cambiado",
"fr": "Le statut de la télécommande a changé",
"it": "Lo stato del telecomando è cambiato",
"no": "Fjernkontrollens status har endret seg",
"sv": "Fjärrkontrollens status har ändrats",
"pl": "Status pilota uległ zmianie",
"ru": "Статус удаленного управления изменился",
"ko": "원격 제어 상태가 변경되었습니다"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=oven|laundry|dishwasher|air-purifier"
}
],
"tokens": [
{
"name": "measure_remoteControl",
"title": "Remote Control",
"type": "string",
"example": "Enabled"
}
]
},
{
"id": "measure_runningTime_changed",
"title": {
"en": "The Running Time has changed",
"nl": "De looptijd is veranderd",
"da": "Køretiden er ændret",
"de": "Die Laufzeit hat sich geändert",
"es": "El tiempo de funcionamiento ha cambiado",
"fr": "Le temps de fonctionnement a changé",
"it": "Il tempo di esecuzione è cambiato",
"no": "Kjøretiden har endret seg",
"sv": "Körtiden har ändrats",
"pl": "Czas działania uległ zmianie",
"ru": "Время работы изменилось",
"ko": "실행 시간이 변경되었습니다"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=oven|laundry|dishwasher|air-purifier"
}
],
"tokens": [
{
"name": "measure_runningTime",
"title": {
"en": "Running Time",
"nl": "Looptijd",
"da": "Køretid",
"de": "Laufzeit",
"es": "Tiempo de funcionamiento",
"fr": "Temps de fonctionnement",
"it": "Tempo di esecuzione",
"no": "Kjøretid",
"sv": "Körtid",
"pl": "Czas działania",
"ru": "Время работы",
"ko": "실행 시간"
},
"type": "number",
"example": 0
}
]
},
{
"id": "measure_startTime_changed",
"title": {
"en": "The Start Time has changed",
"nl": "De starttijd is veranderd",
"da": "Starttiden er ændret",
"de": "Die Startzeit hat sich geändert",
"es": "La hora de inicio ha cambiado",
"fr": "L'heure de début a changé",
"it": "L'orario di inizio è cambiato",
"no": "Starttiden har endret seg",
"sv": "Starttiden har ändrats",
"pl": "Czas rozpoczęcia został zmieniony",
"ru": "Время начала изменилось",
"ko": "시작 시간이 변경되었습니다"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=oven|laundry|dishwasher|air-conditioning"
}
],
"tokens": [
{
"name": "measure_startTime",
"title": {
"en": "Start Time",
"nl": "Starttijd",
"da": "Starttid",
"de": "Startzeit",
"es": "Hora de inicio",
"fr": "Heure de début",
"it": "Orario di inizio",
"no": "Starttid",
"sv": "Starttid",
"pl": "Czas rozpoczęcia",
"ru": "Время начала",
"ko": "시작 시간"
},
"type": "string",
"example": "5 minutes"
}
]
},
{
"id": "measure_stopTime_changed",
"title": {
"en": "The Stop Time has changed",
"nl": "De stoptijd is gewijzigd",
"da": "Stop tiden er ændret",
"de": "Die Stoppzeit hat sich geändert",
"es": "El tiempo de detención ha cambiado",
"fr": "Le temps d'arrêt a changé",
"it": "Il tempo di arresto è cambiato",
"no": "Stoptiden har endret seg",
"sv": "Stopptiden har ändrats",
"pl": "Czas zatrzymania się zmienił",
"ru": "Время остановки изменилось",
"ko": "정지 시간이 변경되었습니다"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=laundry|air-conditioning"
}
],
"tokens": [
{
"name": "measure_stopTime",
"title": {
"en": "Stop Time",
"nl": "Stoptijd",
"da": "Stoptid",
"de": "Stoppzeit",
"es": "Tiempo de detención",
"fr": "Temps d'arrêt",
"it": "Tempo di arresto",
"no": "Stoptid",
"sv": "Stopptid",
"pl": "Czas zatrzymania",
"ru": "Время остановки",
"ko": "정지 시간"
},
"type": "string",
"example": "5 minutes"
}
]
},
{
"id": "measure_targetTemperature_changed",
"title": {
"en": "The Target Temperature value has changed"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=oven|laundry"
}
],
"tokens": [
{
"name": "measure_targetTemperature",
"title": {
"en": "Target Temperature"
},
"type": "number",
"example": 20
}
]
},
{
"id": "measure_timeToEnd_changed",
"title": {
"en": "The Time To End has changed",
"nl": "De Tijd Tot Eind is veranderd",
"da": "Tiden til slutning er ændret",
"de": "Die Zeit bis zum Ende hat sich geändert",
"es": "El tiempo para terminar ha cambiado",
"fr": "Le Temps Jusqu'à la Fin a changé",
"it": "Il tempo per finire è cambiato",
"no": "Tiden til slutt har endret seg",
"sv": "Tiden till slut har ändrats",
"pl": "Czas do końca zmienił się",
"ru": "Время до конца изменилось",
"ko": "종료 시간 변경됨"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=oven|laundry|dishwasher"
}
],
"tokens": [
{
"name": "measure_timeToEnd",
"title": {
"en": "Time To End",
"nl": "Tijd Tot Einde",
"da": "Tid til afslutning",
"de": "Zeit bis zum Ende",
"es": "Tiempo para terminar",
"fr": "Temps jusqu'à la fin",
"it": "Tempo per finire",
"no": "Tid til slutt",
"sv": "Tid till slut",
"pl": "Czas do końca",
"ru": "Время до конца",
"ko": "종료 시간"
},
"type": "number",
"example": 0
}
]
},
{
"id": "measure_voc_changed",
"title": {
"en": "The VOC value has changed",
"nl": "De VOC waarde is veranderd",
"de": "Der VOC-Wert hat sich geändert",
"da": "VOC-værdien har ændret sig",
"es": "El valor de VOC ha cambiado",
"fr": "La valeur de COV a changé",
"it": "Il valore VOC è cambiato",
"no": "VOC-verdien har endret seg",
"sv": "VOC-värdet har ändrats",
"pl": "Wartość VOC się zmieniła",
"ru": "Значение VOC изменилось",
"ko": "VOC 값이 변경되었습니다"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=air-purifier"
}
],
"tokens": [
{
"name": "measure_voc",
"title": "VOC",
"type": "number",
"example": 2
}
]
}
],
"conditions": [
{
"title": {
"en": "Appliance State !{{is|isn't}} ...",
"nl": "Apparaatstatus !{{is|is niet}} ...",
"da": "Apparatstatus !{{er|er ikke}} ...",
"de": "Gerätestatus !{{ist|ist nicht}} ...",
"es": "Estado del aparato !{{está|no está}} ...",
"fr": "État de l'appareil !{{est|n'est pas}} ...",
"it": "Stato dell'apparecchio !{{è|non è}} ...",
"no": "Apparatstatus !{{er|er ikke}} ...",
"sv": "Apparatstatus !{{är|är inte}} ...",
"pl": "Stan urządzenia !{{jest|nie jest}} ...",
"ru": "Состояние прибора !{{есть|нет}} ...",
"ko": "기기 상태 !{{입니다|아닙니다}} ..."
},
"titleFormatted": {
"en": "Appliance State !{{is|isn't}} [[value]]",
"nl": "Apparaatstatus !{{is|is niet}} [[value]]",
"da": "Apparatstatus !{{er|er ikke}} [[value]]",
"de": "Gerätestatus !{{ist|ist nicht}} [[value]]",
"es": "Estado del aparato !{{está|no está}} [[value]]",
"fr": "État de l'appareil !{{est|n'est pas}} [[value]]",
"it": "Stato dell'apparecchio !{{è|non è}} [[value]]",
"no": "Apparatstatus !{{er|er ikke}} [[value]]",
"sv": "Apparatstatus !{{är|är inte}} [[value]]",
"pl": "Stan urządzenia !{{jest|nie jest}} [[value]]",
"ru": "Состояние прибора !{{есть|нет}} [[value]]",
"ko": "기기 상태 !{{입니다|아닙니다}} [[value]]"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=oven|laundry|dishwasher|air-purifier|robot|air-conditioning"
},
{
"name": "value",
"type": "dropdown",
"values": [
{
"id": "ALARM",
"label": {
"en": "ALARM"
}
},
{
"id": "DELAYED_START",
"label": {
"en": "DELAYED START"
}
},
{
"id": "END_OF_CYCLE",
"label": {
"en": "END OF CYCLE"
}
},
{
"id": "IDLE",
"label": {
"en": "IDLE"
}
},
{
"id": "OFF",
"label": {
"en": "OFF"
}
},
{
"id": "PAUSED",
"label": {
"en": "PAUSED"
}
},
{
"id": "READY_TO_START",
"label": {
"en": "READY TO START"
}
},
{
"id": "RUNNING",
"label": {
"en": "RUNNING"
}
}
]
}
],
"id": "applianceState_is"
},
{
"title": {
"en": "Connection State !{{is|isn't}} ...",
"de": "Verbindungsstatus !{{ist|ist nicht}} ...",
"nl": "Verbindingsstatus !{{is|is niet}} ...",
"da": "Forbindelsestilstand !{{er|er ikke}} ...",
"es": "Estado de Conexión !{{es|no es}} ...",
"fr": "État de Connexion !{{est|n'est pas}} ...",
"it": "Stato della Connessione !{{è|non è}} ...",
"no": "Tilkoblingsstatus !{{er|er ikke}} ...",
"sv": "Anslutningstillstånd !{{är|är inte}} ...",
"pl": "Stan Połączenia !{{jest|nie jest}} ...",
"ru": "Состояние соединения !{{есть|нет}} ...",
"ko": "연결 상태 !{{연결됨|연결되지 않음}} ..."
},
"titleFormatted": {
"en": "Connection State !{{is|isn't}} [[value]]",
"de": "Verbindungsstatus !{{ist|ist nicht}} [[value]]",
"nl": "Verbindingsstatus !{{is|is niet}} [[value]]",
"da": "Forbindelsestilstand !{{er|er ikke}} [[value]]",
"es": "Estado de Conexión !{{es|no es}} [[value]]",
"fr": "État de Connexion !{{est|n'est pas}} [[value]]",
"it": "Stato della Connessione !{{è|non è}} [[value]]",
"no": "Tilkoblingsstatus !{{er|er ikke}} [[value]]",
"sv": "Anslutningstillstånd !{{är|är inte}} [[value]]",
"pl": "Stan Połączenia !{{jest|nie jest}} [[value]]",
"ru": "Состояние соединения !{{есть|нет}} [[value]]",
"ko": "연결 상태 !{{연결됨|연결되지 않음}} [[value]]"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=oven|laundry|dishwasher|air-purifier|robot|air-conditioning"
},
{
"name": "value",
"type": "dropdown",
"values": [
{
"id": "CONNECTED",
"label": {
"en": "Connected",
"de": "Verbunden",
"nl": "Verbonden",
"da": "Forbundet",
"es": "Conectado",
"fr": "Connecté",
"it": "Connesso",
"no": "Tilkoblet",
"sv": "Ansluten",
"pl": "Połączony",
"ru": "Подключено",
"ko": "연결됨"
}
},
{
"id": "DISCONNECTED",
"label": {
"en": "Disconnected",
"de": "Getrennt",
"nl": "Verbroken",
"da": "Frakoblet",
"es": "Desconectado",
"fr": "Déconnecté",
"it": "Disconnesso",
"no": "Frakoblet",
"sv": "Frånkopplad",
"pl": "Rozłączony",
"ru": "Отключено",
"ko": "연결 끊김"
}
},
{
"id": "UNKNOWN",
"label": {
"en": "Unknown",
"de": "Unbekannt",
"nl": "Onbekend",
"da": "Ukendt",
"es": "Desconocido",
"fr": "Inconnu",
"it": "Sconosciuto",
"no": "Ukjent",
"sv": "Okänd",
"pl": "Nieznany",
"ru": "Неизвестно",
"ko": "알 수 없음"
}
}
]
}
],
"id": "connectionState_is"
},
{
"title": {
"en": "Cycle Phase !{{is|isn't}} ...",
"nl": "Cycle-fase !{{is|isn't}} ...",
"da": "Cyklusfase !{{is|isn't}} ...",
"de": "Zyklusphase !{{is|isn't}} ...",
"es": "Fase de Ciclo !{{is|isn't}} ...",
"fr": "Phase de Cycle !{{is|isn't}} ...",
"it": "Fase del Ciclo !{{is|isn't}} ...",
"no": "Syklusfase !{{is|isn't}} ...",
"sv": "Cykelfas !{{is|isn't}} ...",
"pl": "Faza Cyklu !{{is|isn't}} ...",
"ru": "Фаза цикла !{{is|isn't}} ...",
"ko": "주기 단계 !{{is|isn't}} ..."
},
"titleFormatted": {
"en": "Cycle Phase !{{is|isn't}} [[value]]",
"nl": "Cycle-fase !{{is|isn't}} [[value]]",
"da": "Cyklusfase !{{is|isn't}} [[value]]",
"de": "Zyklusphase !{{is|isn't}} [[value]]",
"es": "Fase de Ciclo !{{is|isn't}} [[value]]",
"fr": "Phase de Cycle !{{is|isn't}} [[value]]",
"it": "Fase del Ciclo !{{is|isn't}} [[value]]",
"no": "Syklusfase !{{is|isn't}} [[value]]",
"sv": "Cykelfas !{{is|isn't}} [[value]]",
"pl": "Faza Cyklu !{{is|isn't}} [[value]]",
"ru": "Фаза цикла !{{is|isn't}} [[value]]",
"ko": "주기 단계 !{{is|isn't}} [[value]]"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=oven|laundry|dishwasher|air-purifier|robot|air-conditioning"
},
{
"name": "value",
"type": "dropdown",
"values": [
{
"id": "ANTICREASE",
"label": {
"en": "Anti-Crease"
}
},
{
"id": "COOL",
"label": {
"en": "Cool"
}
},
{
"id": "DRY",
"label": {
"en": "Dry"
}
},
{
"id": "COLDRINSE",
"label": {
"en": "Cold Rinse"
}
},
{
"id": "EXTRARINSE",
"label": {
"en": "Extra Rinse"
}
},
{
"id": "HOTRINSE",
"label": {
"en": "Hot Rinse"
}
},
{
"id": "DRYING",
"label": {
"en": "Drying"
}
},
{
"id": "PREWASH",
"label": {
"en": "Pre Wash"
}
},
{
"id": "MAINWASH",
"label": {
"en": "Main Wash"
}
},
{
"id": "UNAVAILABLE",
"label": {
"en": "Unavailable"
}
}
]
}
],
"id": "cyclePhase_is"
},
{
"title": {
"en": "Remote Control !{{is|isn't}} ...",
"de": "Fernbedienung !{{ist|ist nicht}} ...",
"nl": "Afstandsbediening !{{is|is niet}} ...",
"da": "Fjernbetjening !{{er|er ikke}} ...",
"es": "Control Remoto !{{es|no es}} ...",
"fr": "Télécommande !{{est|n'est pas}} ...",
"it": "Telecomando !{{è|non è}} ...",
"no": "Fjernkontroll !{{er|er ikke}} ...",
"sv": "Fjärrkontroll !{{är|är inte}} ...",
"pl": "Pilot !{{jest|nie jest}} ...",
"ru": "Удаленное управление !{{есть|нет}} ...",
"ko": "원격 제어 !{{연결됨|연결되지 않음}} ..."
},
"titleFormatted": {
"en": "Remote Control !{{is|isn't}} [[value]]",
"de": "Fernbedienung !{{ist|ist nicht}} [[value]]",
"nl": "Afstandsbediening !{{is|is niet}} [[value]]",
"da": "Fjernbetjening !{{er|er ikke}} [[value]]",
"es": "Control Remoto !{{es|no es}} [[value]]",
"fr": "Télécommande !{{est|n'est pas}} [[value]]",
"it": "Telecomando !{{è|non è}} [[value]]",
"no": "Fjernkontroll !{{er|er ikke}} [[value]]",
"sv": "Fjärrkontroll !{{är|är inte}} [[value]]",
"pl": "Pilot !{{jest|nie jest}} [[value]]",
"ru": "Удаленное управление !{{есть|нет}} [[value]]",
"ko": "원격 제어 !{{연결됨|연결되지 않음}} [[value]]"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=oven|laundry|dishwasher|air-purifier"
},
{
"name": "value",
"type": "dropdown",
"values": [
{
"id": "DISABLED",
"label": {