-
Notifications
You must be signed in to change notification settings - Fork 6
/
app.json
880 lines (880 loc) · 28.3 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
{
"_comment": "This file is generated. Please edit .homeycompose/app.json instead.",
"id": "com.athom.flowchecker",
"version": "1.29.4",
"compatibility": ">=12.1.0",
"sdk": 3,
"permissions": [
"homey:manager:api"
],
"brandColor": "#000000",
"name": {
"en": "Flow Checker",
"nl": "Flow Checker",
"de": "Flow Checker",
"sv": "Flow Checker"
},
"description": {
"en": "Detect broken Flows and Logic Variables",
"nl": "Detecteer kapotte Flows en Logic variabelen",
"de": "Beschädigte Flows und Logik-Variablen erkennen",
"sv": "Upptäck trasiga flöden och logiska variabler"
},
"tags": {
"en": [
"Flows",
"Variables",
"Tokens",
"Tags",
"Broken",
"Disabled",
"Broken flows",
"Disabled flows",
"Broken variables",
"Checker",
"Security",
"Control",
"Official",
"Homey",
"Athom",
"Better Logic",
"Flow Utilities",
"Filters",
"Notifications",
"Flow start",
"Logic",
"Apps",
"Devices"
]
},
"category": [
"tools"
],
"images": {
"xlarge": "/assets/images/xlarge.png",
"large": "/assets/images/large.png",
"small": "/assets/images/small.png"
},
"author": {
"name": "Martijn Poppen",
"email": "flowchecker@martijnpoppen.nl"
},
"contributors": {
"developers": [
{
"name": "Martijn Poppen",
"email": "flowchecker@martijnpoppen.nl"
}
],
"translators": [
{
"name": "🇬🇧 Martijn Poppen"
},
{
"name": "🇳🇱 Martijn Poppen"
},
{
"name": "🇩🇪 Dirk Göbel"
},
{
"name": "🇸🇪 Magnus Claesson"
}
]
},
"contributing": {
"donate": {
"paypal": {
"username": "martijnpoppen"
},
"bunq": {
"username": "martijnpoppen"
}
}
},
"bugs": {
"url": "https://community.athom.com/t/app-flowchecker/50986"
},
"source": "https://github.com/martijnpoppen/com.athom.flowchecker",
"homeyCommunityTopicId": 50986,
"support": "https://community.athom.com/t/app-flowchecker/50986",
"api": {
"settings": {
"method": "put",
"path": "/settings/"
}
},
"flow": {
"triggers": [
{
"id": "trigger_BROKEN",
"title": {
"en": "A flow is broken",
"nl": "Een flow is kapot gegaan",
"de": "Ein Flow ist beschädigt",
"sv": "Ett flow är trasigt"
},
"tokens": [
{
"name": "flow",
"type": "string",
"title": {
"en": "Flow",
"nl": "Flow",
"de": "Flow",
"sv": "Flow"
}
},
{
"name": "id",
"type": "string",
"title": {
"en": "ID",
"nl": "ID",
"de": "ID",
"sv": "ID"
}
},
{
"name": "type",
"type": "string",
"title": {
"en": "Type",
"nl": "Type",
"de": "Type",
"sv": "Type"
}
},
{
"name": "folder",
"type": "string",
"title": {
"en": "Folder",
"nl": "Folder",
"de": "Folder",
"sv": "Folder"
}
}
]
},
{
"id": "trigger_BROKEN_VARIABLE",
"title": {
"en": "A flow has a broken variable",
"nl": "Een flow heeft een kapotte variabele",
"de": "Ein Flow hat eine beschädigte Variable",
"sv": "Ett flow har en trasig variabel"
},
"tokens": [
{
"name": "flow",
"type": "string",
"title": {
"en": "Flow",
"nl": "Flow",
"de": "Flow",
"sv": "Flow"
}
},
{
"name": "id",
"type": "string",
"title": {
"en": "ID",
"nl": "ID",
"de": "ID",
"sv": "ID"
}
},
{
"name": "type",
"type": "string",
"title": {
"en": "Type",
"nl": "Type",
"de": "Type",
"sv": "Type"
}
},
{
"name": "folder",
"type": "string",
"title": {
"en": "Folder",
"nl": "Folder",
"de": "Folder",
"sv": "Folder"
}
}
]
},
{
"id": "trigger_DISABLED",
"title": {
"en": "A flow is disabled",
"nl": "Een flow is uitgezet",
"de": "Ein Flow ist deaktiviert",
"sv": "Ett flow är inaktiverat"
},
"tokens": [
{
"name": "flow",
"type": "string",
"title": {
"en": "Flow",
"nl": "Flow",
"de": "Flow",
"sv": "Flow"
}
},
{
"name": "id",
"type": "string",
"title": {
"en": "ID",
"nl": "ID",
"de": "ID",
"sv": "ID"
}
},
{
"name": "type",
"type": "string",
"title": {
"en": "Type",
"nl": "Type",
"de": "Type",
"sv": "Type"
}
},
{
"name": "folder",
"type": "string",
"title": {
"en": "Folder",
"nl": "Folder",
"de": "Folder",
"sv": "Folder"
}
}
]
},
{
"id": "trigger_FIXED",
"title": {
"en": "A flow started working again",
"nl": "Een flow is actief geworden",
"de": "Ein Flow wurde wieder aktiviert",
"sv": "Ett flow börjar fungera igen"
},
"tokens": [
{
"name": "flow",
"type": "string",
"title": {
"en": "Flow",
"nl": "Flow",
"de": "Flow",
"sv": "Flow"
}
},
{
"name": "id",
"type": "string",
"title": {
"en": "ID",
"nl": "ID",
"de": "ID",
"sv": "ID"
}
},
{
"name": "type",
"type": "string",
"title": {
"en": "Type",
"nl": "Type",
"de": "Type",
"sv": "Type"
}
},
{
"name": "folder",
"type": "string",
"title": {
"en": "Folder",
"nl": "Folder",
"de": "Folder",
"sv": "Folder"
}
}
]
},
{
"id": "trigger_FIXED_LOGIC",
"title": {
"en": "A logic variable started working again",
"nl": "Een logic variabele is actief geworden",
"de": "Eine Logik-Variable wurde wieder aktiviert",
"sv": "En logisk variabel börjar fungera igen"
},
"tokens": [
{
"name": "logic",
"type": "string",
"title": {
"en": "Logic",
"nl": "Logic",
"de": "Logik",
"sv": "Logik"
}
},
{
"name": "id",
"type": "string",
"title": {
"en": "ID",
"nl": "ID",
"de": "ID",
"sv": "ID"
}
}
]
},
{
"id": "trigger_UNUSED_FLOWS",
"title": {
"en": "A flow became unused",
"nl": "Een flow is ongebruikt geworden",
"de": "Ein Flow wurde nutzlos",
"sv": "Ett flow blir oanvänt"
},
"tokens": [
{
"name": "flow",
"type": "string",
"title": {
"en": "Flow",
"nl": "Flow",
"de": "Flow",
"sv": "Flow"
}
},
{
"name": "id",
"type": "string",
"title": {
"en": "ID",
"nl": "ID",
"de": "ID",
"sv": "ID"
}
},
{
"name": "type",
"type": "string",
"title": {
"en": "Type",
"nl": "Type",
"de": "Type",
"sv": "Type"
}
},
{
"name": "folder",
"type": "string",
"title": {
"en": "Folder",
"nl": "Folder",
"de": "Folder",
"sv": "Folder"
}
}
]
},
{
"id": "trigger_UNUSED_LOGIC",
"title": {
"en": "A logic variable became unused",
"nl": "Een logic variabele is ongebruikt geworden",
"de": "Eine Logik-Variable wurde nutzlos",
"sv": "En logisk variabel blir oanvänd"
},
"tokens": [
{
"name": "flow",
"type": "string",
"title": {
"en": "Logic",
"nl": "Logic",
"de": "Logik",
"sv": "Logik"
}
},
{
"name": "id",
"type": "string",
"title": {
"en": "ID",
"nl": "ID",
"de": "ID",
"sv": "ID"
}
}
]
}
],
"conditions": [
{
"id": "condition_BROKEN",
"title": {
"en": "There !{{are|aren't}} broken flows",
"nl": "Er !{{zijn|zijn geen}} kapotte flows",
"de": "Beschädigte Flows !{{sind|sind nicht}} vorhanden",
"sv": "Det !{{finns|finns inga}} trasiga flows"
}
},
{
"id": "condition_BROKEN_VARIABLE",
"title": {
"en": "There !{{are|aren't}} flows with broken variables",
"nl": "Er !{{zijn|zijn geen}} flows met kapotte variabelen",
"de": "Flows mit beschädigten Variablen !{{sind|sind nicht}} vorhanden",
"sv": "Det !{{finns|finns inga}} flows med trasiga variabler"
}
},
{
"id": "condition_DISABLED",
"title": {
"en": "There !{{are|aren't}} disabled flows",
"nl": "Er !{{zijn|zijn geen}} uitgeschakelde flows",
"de": "Deaktivierte Flows !{{sind|sind nicht}} vorhanden",
"sv": "Det !{{finns|finns inga}} inaktiva flows"
}
},
{
"id": "condition_UNUSED_FLOWS",
"title": {
"en": "There !{{are|aren't}} unused flows",
"nl": "Er !{{zijn|zijn geen}} ongebruikte flows",
"de": "Ungenutzte Flows !{{sind|sind nicht}} vorhanden",
"sv": "Det !{{finns|finns inga}} oanvända flows"
}
},
{
"id": "condition_UNUSED_LOGIC",
"title": {
"en": "There !{{are|aren't}} unused logic variables",
"nl": "Er !{{zijn|zijn geen}} ongebruikte logic variabelen",
"de": "Ungenutzte Logik-Variablen !{{sind|sind nicht}} vorhanden",
"sv": "Det !{{finns|finns inga}} oanvända logiska variabler"
}
}
],
"actions": [
{
"id": "action_check_flows",
"title": {
"en": "Update broken flows and variables",
"nl": "Update kapotte flows en variabelen",
"de": "Update beschädigter Flows und Flows mit beschädigten Variablen",
"sv": "Uppdatera trasiga flows och variabler"
}
},
{
"id": "action_disable_flow_interval",
"title": {
"en": "Disable Flow interval",
"nl": "Zet Flow interval uit",
"de": "Flow Prüfungsintervall deaktivieren",
"sv": "Inaktivera flow-intervall"
}
},
{
"id": "action_enable_flow_interval",
"title": {
"en": "Enable Flow interval",
"nl": "Zet Flow interval aan",
"de": "Flow Prüfungsintervall aktivieren",
"sv": "Aktivera flow-intervall"
}
},
{
"id": "action_set_flow_interval",
"title": {
"en": "Set Flow interval",
"nl": "Stel Flow interval in",
"de": "Flow Prüfungsintervall einstellen",
"sv": "Ställ in flow-intervall"
},
"titleFormatted": {
"en": "Set Flow check interval to [[minutes]] minutes",
"nl": "Stel Flow check interval in op [[minutes]] minuten",
"de": "Flow Prüfungsintervall auf [[minutes]] Minuten einstellen",
"sv": "Ställ in intervall för flow-kontroll till [[minutes]] minuter"
},
"args": [
{
"name": "minutes",
"type": "number",
"min": 3,
"step": 1,
"placeholder": {
"en": "Minutes",
"nl": "Minuten",
"de": "Minuten",
"sv": "Minuter"
}
}
]
}
]
},
"widgets": {
"flow-overview": {
"name": {
"en": "FlowChecker Overview"
},
"settings": [
{
"id": "widgetAutoHeight",
"type": "checkbox",
"value": true,
"title": {
"en": "Widget auto height",
"nl": "Widget automatische hoogte",
"de": "Widget-Autohöhe",
"fr": "Hauteur automatique du widget",
"it": "Altezza automatica del widget",
"sv": "Widget automatisk höjd",
"no": "Widget automatisk høyde",
"es": "Altura automática del widget",
"da": "Widget automatisk højde",
"ru": "Автоматическая высота виджета",
"pl": "Automatyczna wysokość widżetu",
"ko": "위젯 자동 높이"
},
"hint": {
"en": "Automatically adjust the height of the widget",
"nl": "Pas de hoogte van de widget automatisch aan",
"de": "Passen Sie die Höhe des Widgets automatisch an",
"fr": "Ajuster automatiquement la hauteur du widget",
"it": "Regola automaticamente l'altezza del widget",
"sv": "Justera automatiskt höjden på widgeten",
"no": "Juster automatisk høyden på widgeten",
"es": "Ajustar automáticamente la altura del widget",
"da": "Juster automatisk højden af widgeten",
"ru": "Автоматически настраивайте высоту виджета",
"pl": "Automatycznie dostosuj wysokość widżetu",
"ko": "위젯의 높이를 자동으로 조정합니다"
}
},
{
"id": "widgetHeight",
"type": "number",
"value": 540,
"title": {
"en": "Widget height",
"nl": "Widgethoogte",
"de": "Widget-Höhe",
"fr": "Hauteur du widget",
"it": "Altezza del widget",
"sv": "Widgethöjd",
"no": "Widgethøyde",
"es": "Altura del widget",
"da": "Widgethøjde",
"ru": "Высота виджета",
"pl": "Wysokość widżetu",
"ko": "위젯 높이"
},
"hint": {
"en": "Height of the widget in pixels (this setting is only used when 'Widget auto height' is disabled)",
"nl": "Hoogte van de widget in pixels (deze instelling wordt alleen gebruikt wanneer 'Widget automatische hoogte' is uitgeschakeld)",
"de": "Höhe des Widgets in Pixeln (diese Einstellung wird nur verwendet, wenn 'Widget-Autohöhe' deaktiviert ist)",
"fr": "Hauteur du widget en pixels (ce paramètre est utilisé uniquement lorsque 'Hauteur automatique du widget' est désactivé)",
"it": "Altezza del widget in pixel (questa impostazione viene utilizzata solo quando 'Altezza automatica del widget' è disabilitata)",
"sv": "Höjden på widgeten i pixlar (den här inställningen används endast när 'Widget automatisk höjd' är inaktiverad)",
"no": "Høyden på widgeten i piksler (denne innstillingen brukes bare når 'Widget automatisk høyde' er deaktivert)",
"es": "Altura del widget en píxeles (esta configuración solo se utiliza cuando 'Altura automática del widget' está desactivada)",
"da": "Højden af widgeten i pixels (denne indstilling bruges kun, når 'Widget automatisk højde' er deaktiveret)",
"ru": "Высота виджета в пикселях (этот параметр используется только при отключенной функции 'Автоматическая высота виджета')",
"pl": "Wysokość widżetu w pikselach (ta opcja jest używana tylko wtedy, gdy opcja „Automatyczna wysokość widżetu” jest wyłączona)",
"ko": "픽셀 단위의 위젯 높이 ('위젯 자동 높이'가 비활성화된 경우에만 사용되는 설정)"
}
},
{
"id": "showBrokenFlows",
"type": "checkbox",
"value": true,
"title": {
"en": "Show broken flows",
"nl": "Toon defecte flows",
"de": "Defekte Flows anzeigen",
"fr": "Afficher les flows cassés",
"it": "Mostra flussi rotti",
"sv": "Visa trasiga flöden",
"no": "Vis ødelagte flows",
"es": "Mostrar flujos rotos",
"da": "Vis ødelagte flows",
"ru": "Показать сломанные потоки",
"pl": "Pokaż zepsute przepływy",
"ko": "고장난 플로우 표시"
}
},
{
"id": "showDisabledFlows",
"type": "checkbox",
"value": true,
"title": {
"en": "Show disabled flows",
"nl": "Toon uitgeschakelde flows",
"de": "Deaktivierte Flows anzeigen",
"fr": "Afficher les flows désactivés",
"it": "Mostra flussi disabilitati",
"sv": "Visa inaktiverade flöden",
"no": "Vis deaktiverte flows",
"es": "Mostrar flujos deshabilitados",
"da": "Vis deaktiverede flows",
"ru": "Показать отключенные потоки",
"pl": "Pokaż wyłączone przepływy",
"ko": "비활성화된 플로우 표시"
}
},
{
"id": "showBrokenVariables",
"type": "checkbox",
"value": true,
"title": {
"en": "Show broken variables",
"nl": "Toon defecte variabelen",
"de": "Defekte Variablen anzeigen",
"fr": "Afficher les variables cassées",
"it": "Mostra variabili rotte",
"sv": "Visa trasiga variabler",
"no": "Vis ødelagte variabler",
"es": "Mostrar variables rotas",
"da": "Vis ødelagte variabler",
"ru": "Показать сломанные переменные",
"pl": "Pokaż zepsute zmienne",
"ko": "고장난 변수 표시"
}
},
{
"id": "showUnusedFlows",
"type": "checkbox",
"value": true,
"title": {
"en": "Show unused flows",
"nl": "Toon ongebruikte flows",
"de": "Unbenutzte Flows anzeigen",
"fr": "Afficher les flows inutilisés",
"it": "Mostra flussi non utilizzati",
"sv": "Visa oanvända flöden",
"no": "Vis ubrukte flows",
"es": "Mostrar flujos no utilizados",
"da": "Vis ubrugte flows",
"ru": "Показать неиспользуемые потоки",
"pl": "Pokaż nieużywane przepływy",
"ko": "사용되지 않는 플로우 표시"
}
},
{
"id": "showUnusedLogicVariables",
"type": "checkbox",
"value": true,
"title": {
"en": "Show unused logic variables",
"nl": "Toon ongebruikte logische variabelen",
"de": "Unbenutzte Logikvariablen anzeigen",
"fr": "Afficher les variables logiques inutilisées",
"it": "Mostra variabili logiche non utilizzate",
"sv": "Visa oanvända logiska variabler",
"no": "Vis ubrukte logiske variabler",
"es": "Mostrar variables lógicas no utilizadas",
"da": "Vis ubrugte logiske variabler",
"ru": "Показать неиспользуемые логические переменные",
"pl": "Pokaż nieużywane zmienne logiczne",
"ko": "사용되지 않는 논리 변수 표시"
}
},
{
"id": "showAllFlows",
"type": "checkbox",
"value": true,
"title": {
"en": "Show all flows",
"nl": "Toon alle flows",
"de": "Alle Flows anzeigen",
"fr": "Afficher tous les flows",
"it": "Mostra tutti i flussi",
"sv": "Visa alla flöden",
"no": "Vis alle flows",
"es": "Mostrar todos los flujos",
"da": "Vis alle flows",
"ru": "Показать все потоки",
"pl": "Pokaż wszystkie przepływy",
"ko": "모든 플로우 표시"
}
},
{
"id": "showAllScreensavers",
"type": "checkbox",
"value": true,
"title": {
"en": "Show all screensavers",
"nl": "Toon alle screensavers",
"de": "Alle Bildschirmschoner anzeigen",
"fr": "Afficher tous les économiseurs d'écran",
"it": "Mostra tutti gli screensaver",
"sv": "Visa alla skärmsläckare",
"no": "Vis alle skjermsparere",
"es": "Mostrar todos los protectores de pantalla",
"da": "Vis alle skærmsparere",
"ru": "Показать все заставки",
"pl": "Pokaż wszystkie wygaszacze ekranu",
"ko": "모든 화면 보호기 표시"
}
},
{
"id": "showAllVariablesInFlows",
"type": "checkbox",
"value": true,
"title": {
"en": "Show all variables in flows",
"nl": "Toon alle variabelen in flows",
"de": "Alle Variablen in Flows anzeigen",
"fr": "Afficher toutes les variables dans les flows",
"it": "Mostra tutte le variabili nei flussi",
"sv": "Visa alla variabler i flöden",
"no": "Vis alle variabler i flows",
"es": "Mostrar todas las variables en flujos",
"da": "Vis alle variabler i flows",
"ru": "Показать все переменные в потоках",
"pl": "Pokaż wszystkie zmienne w przepływach",
"ko": "플로우의 모든 변수 표시"
}
},
{
"id": "showAllLogicVariables",
"type": "checkbox",
"value": true,
"title": {
"en": "Show all logic variables",
"nl": "Toon alle logische variabelen",
"de": "Alle Logikvariablen anzeigen",
"fr": "Afficher toutes les variables logiques",
"it": "Mostra tutte le variabili logiche",
"sv": "Visa alla logiska variabler",
"no": "Vis alle logiske variabler",
"es": "Mostrar todas las variables lógicas",
"da": "Vis alle logiske variabler",
"ru": "Показать все логические переменные",
"pl": "Pokaż wszystkie zmienne logiczne",
"ko": "모든 논리 변수 표시"
}
},
{
"id": "showAllDevicesVariables",
"type": "checkbox",
"value": true,
"title": {
"en": "Show all devices variables",
"nl": "Toon alle apparaatvariabelen",
"de": "Alle Gerätevariablen anzeigen",
"fr": "Afficher toutes les variables de périphériques",
"it": "Mostra tutte le variabili dei dispositivi",
"sv": "Visa alla enhetsvariabler",
"no": "Vis alle enhetsvariabler",
"es": "Mostrar todas las variables de dispositivos",
"da": "Vis alle enhedsvariabler",
"ru": "Показать все переменные устройств",
"pl": "Pokaż wszystkie zmienne urządzeń",
"ko": "모든 장치 변수 표시"
}
},
{
"id": "showAllAppsVariables",
"type": "checkbox",
"value": true,
"title": {
"en": "Show all apps variables",
"nl": "Toon alle apps-variabelen",
"de": "Alle Apps-Variablen anzeigen",
"fr": "Afficher toutes les variables d'application",
"it": "Mostra tutte le variabili delle app",
"sv": "Visa alla apparvariabler",
"no": "Vis alle appvariabler",
"es": "Mostrar todas las variables de aplicaciones",
"da": "Vis alle appvariabler",
"ru": "Показать все переменные приложений",
"pl": "Pokaż wszystkie zmienne aplikacji",
"ko": "모든 앱 변수 표시"
}
},
{
"id": "showAllBetterLogicVariables",
"type": "checkbox",
"value": true,
"title": {
"en": "Show all Better Logic variables",
"nl": "Toon alle Better Logic-variabelen",
"de": "Alle Better Logic-Variablen anzeigen",
"fr": "Afficher toutes les variables Better Logic",
"it": "Mostra tutte le variabili Better Logic",
"sv": "Visa alla Better Logic-variabler",
"no": "Vis alle Better Logic-variabler",
"es": "Mostrar todas las variables de Better Logic",
"da": "Vis alle Better Logic-variabler",
"ru": "Показать все переменные Better Logic",
"pl": "Pokaż wszystkie zmienne Better Logic",
"ko": "모든 Better Logic 변수 표시"
}
},
{
"id": "showAllFlowUtilitiesVariables",
"type": "checkbox",
"value": true,
"title": {
"en": "Show all Flow Utilities variables",
"nl": "Toon alle Flow Utilities-variabelen",
"de": "Alle Flow Utilities-Variablen anzeigen",
"fr": "Afficher toutes les variables Flow Utilities",
"it": "Mostra tutte le variabili Flow Utilities",
"sv": "Visa alla Flow Utilities-variabler",
"no": "Vis alle Flow Utilities-variabler",
"es": "Mostrar todas las variables de Flow Utilities",
"da": "Vis alle Flow Utilities-variabler",
"ru": "Показать все переменные Flow Utilities",
"pl": "Pokaż wszystkie zmienne Flow Utilities",
"ko": "모든 Flow Utilities 변수 표시"
}
},
{
"id": "showAllScreensaversVariables",
"type": "checkbox",
"value": true,
"title": {
"en": "Show all screensavers variables",
"nl": "Toon alle screensavers-variabelen",
"de": "Alle Bildschirmschoner-Variablen anzeigen",
"fr": "Afficher toutes les variables d'économiseur d'écran",
"it": "Mostra tutte le variabili degli screensaver",
"sv": "Visa alla skärmsläckarvariabler",
"no": "Vis alle skjermspareringsvariabler",
"es": "Mostrar todas las variables de protectores de pantalla",
"da": "Vis alle skærmspareringsvariabler",
"ru": "Показать все переменные заставок",
"pl": "Pokaż wszystkie zmienne wygaszaczy ekranu",
"ko": "모든 화면 보호기 변수 표시"
}
}
],
"api": {
"getSettings": {
"method": "GET",
"path": "/"
}
},
"id": "flow-overview"
}
}
}