-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
1005 lines (1005 loc) · 32.1 KB
/
app.json
File metadata and controls
1005 lines (1005 loc) · 32.1 KB
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
{
"id": "de.mhaid.panasonicTVIP",
"sdk": 3,
"version": "4.1.1",
"compatibility": ">=5.0.0",
"brandColor": "#2C4285",
"name": {
"en": "Panasonic TV IP Viera",
"de": "Panasonic TV IP Viera",
"nl": "Panasonic TV IP Viera",
"fr": "Panasonic TV IP Viera",
"it": "Panasonic TV IP Viera",
"sv": "Panasonic TV IP Viera",
"no": "Panasonic TV IP Viera"
},
"description": {
"en": "Quick access to just the contents you want",
"de": "Quick access to just the contents you want",
"nl": "Quick access to just the contents you want",
"fr": "Quick access to just the contents you want",
"it": "Quick access to just the contents you want",
"sv": "Quick access to just the contents you want",
"no": "Quick access to just the contents you want"
},
"category": [
"video"
],
"tags": {
"en": [
"tv",
"panasonic",
"remote",
"control",
"viera"
],
"nl": [
"tv",
"panasonic",
"afstandsbediening",
"control",
"viera"
],
"de": [
"tv",
"panasonic",
"fernbedienung",
"steuerung",
"viera"
]
},
"images": {
"large": "/assets/images/large.png",
"small": "/assets/images/small.png"
},
"permissions": [],
"author": {
"name": "Morris Haid",
"email": "mhaid2016@outlook.com"
},
"contributors": {
"developers": [
{
"email": "moh2014@live.de",
"name": "Michael Haid"
},
{
"email": "mhaid2016@outlook.com",
"name": "Morris Haid"
}
]
},
"bugs": {
"url": "https://github.com/mhaid/de.mhaid.panasonicTVIP/issues"
},
"source": "https://github.com/mhaid/de.mhaid.panasonicTVIP",
"support": "mailto:mhaid2016@outlook.com",
"capabilities": {
"tv_input": {
"type": "boolean",
"title": {
"en": "Change input",
"de": "Eingang ändern",
"nl": "Invoer wijzigen",
"fr": "Modifier l'entrée",
"it": "Cambia Input",
"sv": "Ändra ingång",
"no": "Endre inngang"
},
"getable": false,
"setable": true,
"uiComponent": "button",
"uiQuickAction": false
},
"tv_apps": {
"type": "boolean",
"title": {
"en": "Apps",
"de": "Apps",
"nl": "Apps",
"fr": "Apps",
"it": "Apps",
"sv": "Apps",
"no": "Apps"
},
"getable": false,
"setable": true,
"uiComponent": "button",
"uiQuickAction": false
},
"tv_home": {
"type": "boolean",
"title": {
"en": "Homescreen",
"de": "Startseite",
"nl": "Home",
"fr": "Écran d'accueil",
"it": "Schermo di casa",
"sv": "Hemskärm",
"no": "Startskjermen"
},
"getable": false,
"setable": true,
"uiComponent": "button",
"uiQuickAction": false
},
"tv_cancel": {
"type": "boolean",
"title": {
"en": "Cancel",
"de": "Abbrechen",
"nl": "Annuleren",
"fr": "Annuler",
"it": "Annulla",
"sv": "Avbryt",
"no": "Avbryt"
},
"getable": false,
"setable": true,
"uiComponent": "button",
"uiQuickAction": false
},
"tv_return": {
"type": "boolean",
"title": {
"en": "Return",
"de": "Zurück",
"nl": "Back",
"fr": "Retour",
"it": "Indietro",
"sv": "Tillbaka",
"no": "Tilbake"
},
"getable": false,
"setable": true,
"uiComponent": "button",
"uiQuickAction": false
},
"tv_selector_uod": {
"title": {
"en": "Up/Ok/Down",
"de": "Auf/Ok/Ab",
"nl": "Omhoog/Ok/Omlaag"
},
"type": "enum",
"values": [
{
"id": "up",
"title": {
"en": "Up",
"de": "Hoch",
"nl": "Op",
"fr": "Élevé",
"it": "Sopra",
"sv": "Höga",
"no": "Høye"
}
},
{
"id": "idle",
"title": {
"en": "OK",
"de": "Ok",
"nl": "Ok",
"fr": "Ok",
"it": "Ok",
"sv": "Ok",
"no": "Ok"
}
},
{
"id": "down",
"title": {
"en": "Down",
"de": "Runter",
"nl": "Neer",
"fr": "Bas",
"it": "Giù",
"sv": "Ner",
"no": "Ned"
}
}
],
"getable": false,
"setable": true,
"uiComponent": "ternary"
},
"tv_selector_lor": {
"title": {
"en": "Left/Ok/Right",
"de": "Links/Ok/Rechts",
"nl": "Links/Ok/Rechts"
},
"type": "enum",
"values": [
{
"id": "up",
"title": {
"en": "Left",
"de": "Links",
"nl": "Links",
"fr": "Gauche",
"it": "Sinistra",
"sv": "Lämnade",
"no": "Dro"
}
},
{
"id": "idle",
"title": {
"en": "OK",
"de": "Ok",
"nl": "Ok",
"fr": "Ok",
"it": "Ok",
"sv": "Ok",
"no": "Ok"
}
},
{
"id": "down",
"title": {
"en": "Right",
"de": "Rechts",
"nl": "Rechts",
"fr": "Droite",
"it": "Destra",
"sv": "Rätt",
"no": "Rett"
}
}
],
"getable": false,
"setable": true,
"uiComponent": "ternary"
}
},
"drivers": [
{
"deprecated": true,
"id": "panasonic_viera",
"class": "tv",
"capabilities": [
"onoff",
"channel_up",
"volume_up",
"channel_down",
"volume_down",
"tv_input",
"volume_mute",
"tv_home",
"tv_apps",
"tv_return",
"tv_cancel",
"tv_selector_uod",
"tv_selector_lor"
],
"name": {
"en": "Panasonic Remote",
"de": "Panasonic Fernbedienung",
"nl": "Panasonic Afstandsbediening",
"fr": "Télécommande Panasonic",
"it": "Telecomando Panasonic",
"sv": "Panasonic fjärrkontroll",
"no": "Panasonic fjernkontroll"
},
"images": {
"large": "/drivers/panasonic_viera/assets/images/large.png",
"small": "/drivers/panasonic_viera/assets/images/small.png"
},
"settings": [
{
"type": "group",
"label": {
"en": "General settings",
"de": "Allgemeine Einstellungen",
"nl": "Algemene instellingen",
"fr": "Paramètres généraux",
"it": "Impostazioni generali",
"sv": "Allmänna Inställningar",
"no": "Generelle innstillinger"
},
"children": [
{
"id": "ip",
"type": "text",
"label": {
"en": "IP-Address",
"de": "IP Adresse",
"nl": "IP adres",
"fr": "Adresse IP",
"it": "Indirizzo IP",
"sv": "IP adresse",
"no": "IP adresse"
},
"value": "192.168.1.1",
"hint": {
"en": "The IP-Address is required and can be found in your TV-Settings.",
"de": "Die IP-Adresse ist erforderlich und finden Sie in Ihren TV-Einstellungen.",
"nl": "Het IP-adres is verplicht en staat in je TV-instellingen.",
"fr": "L'adresse IP est nécessaire et se trouve dans les paramètres de votre télévision.",
"it": "L'indirizzo IP è richiesto e può essere trovato nelle impostazioni della TV.",
"sv": "IP-adressen krävs och finns i dina TV-inställningar.",
"no": "IP-adressen er obligatorisk og finner du i TV-innstillingene."
}
},
{
"id": "iprefresh",
"type": "checkbox",
"label": {
"en": "IP-Address refresh",
"de": "IP-Adresse Aktualisierung",
"nl": "IP-Adres vernieuwen",
"fr": "Actualisation de l'adresse IP",
"it": "Aggiornamento dell'indirizzo IP",
"sv": "Uppdatering av IP-adress",
"no": "Oppdatering av IP-adresse"
},
"value": true,
"hint": {
"en": "If turned on, the IP address is updated automatically on change. Does not work on every TV properly! Does only work, if a valid MAC-Adress was entered on setup.",
"de": "Wenn eingeschaltet, wird die IP-Adresse bei Änderung automatisch aktualisiert. Funktioniert nicht auf jedem Fernseher richtig! Funktioniert nur, wenn beim Setup eine gültige MAC-Adresse eingegeben wurde.",
"nl": "Als de instelling is ingeschakeld, wordt het IP-adres bij wijziging automatisch bijgewerkt. Werkt niet op elke TV goed! Werkt alleen als bij de instelling een geldig MAC-adres is ingevoerd.",
"fr": "Si elle est activée, l'adresse IP est mise à jour automatiquement en cas de changement. Ne fonctionne pas correctement sur tous les téléviseurs ! Ne fonctionne que si une adresse MAC valide a été saisie lors de la configuration.",
"it": "Se abilitato, l'indirizzo IP viene aggiornato automaticamente in caso di modifica. Non funziona correttamente su tutti i televisori! Funziona solo se durante la configurazione è stato inserito un indirizzo MAC valido.",
"sv": "Om det är aktiverat uppdateras IP-adressen automatiskt när det sker en ändring. Fungerar inte ordentligt på alla TV-apparater! Fungerar bara om en giltig MAC-adress har angetts under konfigurationen.",
"no": "Hvis aktivert, oppdateres IP-adressen automatisk når det skjer en endring. Fungerer ikke ordentlig på alle TV-er! Fungerer bare hvis en gyldig MAC-adresse ble angitt under konfigurasjonen."
}
}
]
}
]
},
{
"id": "panasonic_viera_uuid",
"class": "tv",
"capabilities": [
"onoff",
"channel_up",
"volume_up",
"channel_down",
"volume_down",
"tv_input",
"volume_mute",
"tv_home",
"tv_apps",
"tv_return",
"tv_cancel",
"tv_selector_uod",
"tv_selector_lor"
],
"name": {
"en": "Panasonic Remote",
"de": "Panasonic Fernbedienung",
"nl": "Panasonic Afstandsbediening",
"fr": "Télécommande Panasonic",
"it": "Impostazioni generali",
"sv": "Allmänna Inställningar",
"no": "Generelle innstillinger"
},
"images": {
"large": "/drivers/panasonic_viera_uuid/assets/images/large.png",
"small": "/drivers/panasonic_viera_uuid/assets/images/small.png"
},
"pair": [
{
"id": "request_device",
"navigation": {
"next": "request_ip"
}
},
{
"id": "request_ip"
}
],
"settings": [
{
"type": "group",
"label": {
"en": "General settings",
"de": "Allgemeine Einstellungen",
"nl": "Algemene instellingen",
"fr": "Paramètres généraux",
"it": "Impostazioni generali",
"sv": "Allmänna Inställningar",
"no": "Generelle innstillinger"
},
"children": [
{
"id": "ip",
"type": "text",
"label": {
"en": "IP-Address",
"de": "IP Adresse",
"nl": "IP adres",
"fr": "Adresse IP",
"it": "Indirizzo IP",
"sv": "IP adresse",
"no": "IP adresse"
},
"value": "192.168.1.1",
"hint": {
"en": "The IP-Address is required and can be found in your TV-Settings.",
"de": "Die IP-Adresse ist erforderlich und finden Sie in Ihren TV-Einstellungen.",
"nl": "Het IP-adres is verplicht en staat in je TV-instellingen.",
"fr": "L'adresse IP est nécessaire et se trouve dans les paramètres de votre télévision.",
"it": "L'indirizzo IP è richiesto e può essere trovato nelle impostazioni della TV.",
"sv": "IP-adressen krävs och finns i dina TV-inställningar.",
"no": "IP-adressen er obligatorisk og finner du i TV-innstillingene."
}
},
{
"id": "mac",
"type": "text",
"label": {
"en": "MAC-Address",
"de": "MAC-Adresse",
"nl": "MAC-adres",
"fr": "Adresse MAC",
"it": "Indirizzo MAC",
"sv": "MAC-adress",
"no": "MAC-adresse"
},
"hint": {
"en": "The MAC-Address is required for 'Wake On LAN' and can be found in your TV-Settings.",
"de": "Die MAC-Adresse ist erforderlich für 'Wake On LAN' und finden Sie in Ihren TV-Einstellungen.",
"nl": "Het MAC-adres is verplicht for 'Wake On LAN' en staat in je TV-instellingen.",
"fr": "",
"it": "L'indirizzo MAC è richiesto per 'Wake On LAN' e può essere trovato nelle impostazioni della TV.",
"sv": "MAC-adressen krävs för 'Wake On LAN' och finns i dina TV-inställningar.",
"no": "MAC-adressen kreves for 'Wake On LAN' og finner du i TV-innstillingene dine."
}
},
{
"id": "iprefresh",
"type": "checkbox",
"label": {
"en": "IP-Address refresh",
"de": "IP-Adresse Aktualisierung",
"nl": "IP-Adres vernieuwen",
"fr": "Actualisation de l'adresse IP",
"it": "Aggiornamento dell'indirizzo IP",
"sv": "Uppdatering av IP-adress",
"no": "Oppdatering av IP-adresse"
},
"value": true,
"hint": {
"en": "If turned on, the IP address is updated automatically on change. Does not work on every TV properly! Does only work, if a valid MAC-Adress was entered on setup.",
"de": "Wenn eingeschaltet, wird die IP-Adresse bei Änderung automatisch aktualisiert. Funktioniert nicht auf jedem Fernseher richtig! Funktioniert nur, wenn beim Setup eine gültige MAC-Adresse eingegeben wurde.",
"nl": "Als de instelling is ingeschakeld, wordt het IP-adres bij wijziging automatisch bijgewerkt. Werkt niet op elke TV goed! Werkt alleen als bij de instelling een geldig MAC-adres is ingevoerd.",
"fr": "Si elle est activée, l'adresse IP est mise à jour automatiquement en cas de changement. Ne fonctionne pas correctement sur tous les téléviseurs ! Ne fonctionne que si une adresse MAC valide a été saisie lors de la configuration.",
"it": "Se abilitato, l'indirizzo IP viene aggiornato automaticamente in caso di modifica. Non funziona correttamente su tutti i televisori! Funziona solo se durante la configurazione è stato inserito un indirizzo MAC valido.",
"sv": "Om det är aktiverat uppdateras IP-adressen automatiskt när det sker en ändring. Fungerar inte ordentligt på alla TV-apparater! Fungerar bara om en giltig MAC-adress har angetts under konfigurationen.",
"no": "Hvis aktivert, oppdateres IP-adressen automatisk når det skjer en endring. Fungerer ikke ordentlig på alle TV-er! Fungerer bare hvis en gyldig MAC-adresse ble angitt under konfigurasjonen."
}
}
]
}
]
}
],
"discovery": {
"discovery_viera": {
"type": "ssdp",
"ssdp": {
"search": "urn:panasonic-com:device:p00RemoteController:1"
},
"id": "{{headers.usn}}",
"conditions": [
[
{
"field": "headers.st",
"match": {
"type": "string",
"value": "urn:panasonic-com:device:p00RemoteController:1"
}
}
]
]
}
},
"flow": {
"actions": [
{
"id": "change_inputs",
"title": {
"en": "Change Input X times",
"de": "Eingang X-mal ändern",
"nl": "Verander invoer X keer",
"fr": "Modifier l'entrée X times",
"it": "Cambia Input X volte",
"sv": "Ändra ingång X gånger",
"no": "Endre inngang X ganger"
},
"titleFormatted": {
"en": "Change Input [[times]] times",
"de": "Eingang [[times]] mal ändern",
"nl": "Verander invoer [[times]] keer",
"fr": "Modifier l'entrée [[times]] times",
"it": "Cambia Input [[times]] volte",
"sv": "Ändra ingång [[times]] gånger",
"no": "Endre inngang [[times]] ganger"
},
"args": [
{
"name": "my_device",
"type": "device",
"filter": "driver_id=panasonic_viera_uuid"
},
{
"name": "times",
"type": "dropdown",
"values": [
{
"id": "1",
"label": {
"en": "1",
"de": "1",
"nl": "1",
"fr": "1",
"it": "1",
"sv": "1",
"no": "1"
}
},
{
"id": "2",
"label": {
"en": "2",
"de": "2",
"nl": "2",
"fr": "2",
"it": "2",
"sv": "2",
"no": "2"
}
},
{
"id": "3",
"label": {
"en": "3",
"de": "3",
"nl": "3",
"fr": "3",
"it": "3",
"sv": "3",
"no": "3"
}
},
{
"id": "4",
"label": {
"en": "4",
"de": "4",
"nl": "4",
"fr": "4",
"it": "4",
"sv": "4",
"no": "4"
}
},
{
"id": "5",
"label": {
"en": "5",
"de": "5",
"nl": "5",
"fr": "5",
"it": "5",
"sv": "5",
"no": "5"
}
},
{
"id": "6",
"label": {
"en": "6",
"de": "6",
"nl": "6",
"fr": "6",
"it": "6",
"sv": "6",
"no": "6"
}
},
{
"id": "7",
"label": {
"en": "7",
"de": "7",
"nl": "7",
"fr": "7",
"it": "7",
"sv": "7",
"no": "7"
}
},
{
"id": "8",
"label": {
"en": "8",
"de": "8",
"nl": "8",
"fr": "8",
"it": "8",
"sv": "8",
"no": "8"
}
},
{
"id": "9",
"label": {
"en": "9",
"de": "9",
"nl": "9",
"fr": "9",
"it": "9",
"sv": "9",
"no": "9"
}
}
]
}
]
},
{
"id": "press_key",
"title": {
"en": "Press X key",
"de": "X-Taste drücken",
"nl": "Druk op X-toets",
"fr": "Appuyez sur la touche X",
"it": "Premi il tasto X",
"sv": "Tryck på X-knappen",
"no": "Trykk på X-knappen"
},
"titleFormatted": {
"en": "Press [[button]] key",
"de": "[[button]]-Taste drücken",
"nl": "Druk op [[button]]-toets",
"fr": "Appuyez sur la touche [[button]].",
"it": "Premere il tasto [[button]]",
"sv": "Tryck på [[button]]-tangenten",
"no": "Trykk på [[button]]-tasten"
},
"args": [
{
"name": "my_device",
"type": "device",
"filter": "driver_id=panasonic_viera_uuid"
},
{
"name": "button",
"type": "dropdown",
"values": [
{
"id": "home",
"label": {
"en": "Home",
"de": "Home",
"nl": "Home",
"fr": "Home",
"it": "Home",
"sv": "Home",
"no": "Home"
}
},
{
"id": "apps",
"label": {
"en": "Apps",
"de": "Apps",
"nl": "Apps",
"fr": "Apps",
"it": "Apps",
"sv": "Apps",
"no": "Apps"
}
},
{
"id": "return",
"label": {
"en": "Return",
"de": "Zurück",
"nl": "Back",
"fr": "Retour",
"it": "Indietro",
"sv": "Tillbaka",
"no": "Tilbake"
}
},
{
"id": "cancel",
"label": {
"en": "Cancel",
"de": "Abbrechen",
"nl": "Annuleren",
"fr": "Annuler",
"it": "Annulla",
"sv": "Avbryt",
"no": "Avbryt"
}
},
{
"id": "selector_up",
"label": {
"en": "Selector Up",
"de": "Wähler Hoch",
"nl": "Selector Op",
"fr": "Électeur élevé",
"it": "Selettore sopra",
"sv": "Väljare höga",
"no": "Velger høye"
}
},
{
"id": "selector_dn",
"label": {
"en": "Selector Down",
"de": "Wähler Runter",
"nl": "Selector Neer",
"fr": "Électeur bas",
"it": "Selettore giù",
"sv": "Väljare ner",
"no": "Velger ned"
}
},
{
"id": "selector_lf",
"label": {
"en": "Selector Left",
"de": "Wähler Links",
"nl": "Selector Links",
"fr": "Électeur gauche",
"it": "Selettore sinistra",
"sv": "Väljare lämnade",
"no": "Velger dro"
}
},
{
"id": "selector_rg",
"label": {
"en": "Selector Right",
"de": "Wähler Rechts",
"nl": "Selector Rechts",
"fr": "Électeur droite",
"it": "Selettore destra",
"sv": "Väljare rätt",
"no": "Velger rett"
}
},
{
"id": "selector_enter",
"label": {
"en": "Selector Enter",
"de": "Wähler Enter",
"nl": "Selector Enter",
"fr": "Électeur Enter",
"it": "Selettore Enter",
"sv": "Väljarna Enter",
"no": "Velgerne Enter"
}
},
{
"id": "numpad_1",
"label": {
"en": "Numpad 1",
"de": "Ziffernblock 1",
"nl": "Numeriek toetsenbord 1",
"fr": "Pavé numérique 1",
"it": "Tastiera numerica 1",
"sv": "Numeriskt tangentbord 1",
"no": "Numerisk tastatur 1"
}
},
{
"id": "numpad_2",
"label": {
"en": "Numpad 2",
"de": "Ziffernblock 2",
"nl": "Numeriek toetsenbord 2",
"fr": "Pavé numérique 2",
"it": "Tastiera numerica 2",
"sv": "Numeriskt tangentbord 2",
"no": "Numerisk tastatur 2"
}
},
{
"id": "numpad_3",
"label": {
"en": "Numpad 3",
"de": "Ziffernblock 3",
"nl": "Numeriek toetsenbord 3",
"fr": "Pavé numérique 3",
"it": "Tastiera numerica 3",
"sv": "Numeriskt tangentbord 3",
"no": "Numerisk tastatur 3"
}
},
{
"id": "numpad_4",
"label": {
"en": "Numpad 4",
"de": "Ziffernblock 4",
"nl": "Numeriek toetsenbord 4",
"fr": "Pavé numérique 4",
"it": "Tastiera numerica 4",
"sv": "Numeriskt tangentbord 4",
"no": "Numerisk tastatur 4"
}
},
{
"id": "numpad_5",
"label": {
"en": "Numpad 5",
"de": "Ziffernblock 5",
"nl": "Numeriek toetsenbord 5",
"fr": "Pavé numérique 5",
"it": "Tastiera numerica 5",
"sv": "Numeriskt tangentbord 5",
"no": "Numerisk tastatur 5"
}
},
{
"id": "numpad_6",
"label": {
"en": "Numpad 6",
"de": "Ziffernblock 6",
"nl": "Numeriek toetsenbord 6",
"fr": "Pavé numérique 6",
"it": "Tastiera numerica 6",
"sv": "Numeriskt tangentbord 6",
"no": "Numerisk tastatur 6"
}
},
{
"id": "numpad_7",
"label": {
"en": "Numpad 7",
"de": "Ziffernblock 7",
"nl": "Numeriek toetsenbord 7",
"fr": "Pavé numérique 7",
"it": "Tastiera numerica 7",
"sv": "Numeriskt tangentbord 7",
"no": "Numerisk tastatur 7"
}
},
{
"id": "numpad_8",
"label": {
"en": "Numpad 8",
"de": "Ziffernblock 8",
"nl": "Numeriek toetsenbord 8",
"fr": "Pavé numérique 8",
"it": "Tastiera numerica 8",
"sv": "Numeriskt tangentbord 8",
"no": "Numerisk tastatur 8"
}
},
{
"id": "numpad_9",
"label": {
"en": "Numpad 9",
"de": "Ziffernblock 9",
"nl": "Numeriek toetsenbord 9",
"fr": "Pavé numérique 9",
"it": "Tastiera numerica 9",
"sv": "Numeriskt tangentbord 9",
"no": "Numerisk tastatur 9"
}
},
{
"id": "numpad_0",
"label": {
"en": "Numpad 0",
"de": "Ziffernblock 0",
"nl": "Numeriek toetsenbord 0",
"fr": "Pavé numérique 0",
"it": "Tastiera numerica 0",
"sv": "Numeriskt tangentbord 0",
"no": "Numerisk tastatur 0"
}
},
{
"id": "input",
"label": {
"en": "Change Input",
"de": "Eingang ändern",
"nl": "Wijzig invoer",
"fr": "Changer l'entrée",
"it": "Cambia ingresso",
"sv": "Ändra ingång",
"no": "Endre inngang"
}
},
{
"id": "tv",
"label": {
"en": "Change Input to TV",
"de": "Eingang auf TV ändern",
"nl": "Verander Ingang naar TV",
"fr": "Changer l'entrée pour TV",
"it": "Cambia ingresso in TV",
"sv": "Ändra ingång till TV",
"no": "Bytt inngang til TV"
}
},
{
"id": "hdmi1",
"label": {
"en": "Change Input to HDMI1",
"de": "Eingang auf HDMI1 ändern",
"nl": "Verander Ingang naar HDMI1",
"fr": "Changer l'entrée pour HDMI1",
"it": "Cambia ingresso in HDMI1",
"sv": "Ändra ingång till HDMI1",
"no": "Bytt inngang til HDMI1"
}
},
{
"id": "hdmi2",
"label": {
"en": "Change Input to HDMI2",
"de": "Eingang auf HDMI2 ändern",
"nl": "Verander Ingang naar HDMI2",
"fr": "Changer l'entrée pour HDMI2",
"it": "Cambia ingresso in HDMI2",
"sv": "Ändra ingång till HDMI2",
"no": "Bytt inngang til HDMI2"
}
},
{
"id": "hdmi3",
"label": {
"en": "Change Input to HDMI3",
"de": "Eingang auf HDMI3 ändern",
"nl": "Verander Ingang naar HDMI3",
"fr": "Changer l'entrée pour HDMI3",
"it": "Cambia ingresso in HDMI3",
"sv": "Ändra ingång till HDMI3",
"no": "Bytt inngang til HDMI3"
}
},
{
"id": "hdmi4",
"label": {
"en": "Change Input to HDMI4",
"de": "Eingang auf HDMI4 ändern",
"nl": "Verander Ingang naar HDMI4",
"fr": "Changer l'entrée pour HDMI4",
"it": "Cambia ingresso in HDMI4",
"sv": "Ändra ingång till HDMI4",
"no": "Bytt inngang til HDMI4"
}
},
{
"id": "sd-card",
"label": {
"en": "Change Input to SD-card",
"de": "Eingang auf SD-card ändern",
"nl": "Verander Ingang naar SD-card",
"fr": "Changer l'entrée pour SD-card",
"it": "Cambia ingresso in SD-card",
"sv": "Ändra ingång till SD-card",
"no": "Bytt inngang til SD-card"
}
},
{
"id": "3D",
"label": {
"en": "Toggle 3D",
"de": "3D umschalten",
"nl": "Toggle 3D",
"fr": "Toggle 3D",
"it": "Attiva / disattiva 3D",
"sv": "Växla 3D",
"no": "Bytt 3D"
}
}
]
}