-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
1854 lines (1854 loc) · 57.2 KB
/
app.json
File metadata and controls
1854 lines (1854 loc) · 57.2 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
{
"_comment": "This file is generated. Please edit .homeycompose/app.json instead.",
"id": "com.basmilius.apple",
"version": "1.5.3",
"compatibility": ">=12.9.0",
"sdk": 3,
"brandColor": "#147efb",
"platforms": [
"local"
],
"name": {
"en": "Apple TV & HomePod",
"nl": "Apple TV & HomePod",
"da": "Apple TV & HomePod",
"de": "Apple TV & HomePod",
"es": "Apple TV & HomePod",
"fr": "Apple TV & HomePod",
"it": "Apple TV & HomePod",
"no": "Apple TV & HomePod",
"sv": "Apple TV & HomePod",
"pl": "Apple TV & HomePod",
"ru": "Apple TV & HomePod",
"ko": "Apple TV & HomePod",
"ar": "Apple TV & HomePod"
},
"description": {
"en": "Control your Apple devices from your Homey.",
"nl": "Beheer je Apple apparaten vanuit je Homey.",
"da": "Styr dine Apple-enheder fra din Homey.",
"de": "Steuere deine Apple-Geräte von deinem Homey aus.",
"es": "Controla tus dispositivos Apple desde tu Homey.",
"fr": "Contrôlez vos appareils Apple depuis votre Homey.",
"it": "Controlla i tuoi dispositivi Apple dal tuo Homey.",
"no": "Kontroller Apple-enhetene dine fra Homey.",
"sv": "Styr dina Apple-enheter från din Homey.",
"pl": "Steruj urządzeniami Apple z poziomu Homey.",
"ru": "Управляйте устройствами Apple с помощью Homey.",
"ko": "Homey에서 Apple 기기를 제어하세요.",
"ar": "تحكم في أجهزة Apple الخاصة بك من Homey."
},
"category": [
"music",
"video",
"appliances"
],
"tags": {
"en": [
"apple",
"apple tv",
"appletv",
"tv",
"homepod",
"homepod mini",
"companion link"
],
"nl": [
"apple",
"apple tv",
"appletv",
"tv",
"homepod",
"homepod mini",
"companion link"
],
"da": [
"apple",
"apple tv",
"appletv",
"tv",
"homepod",
"homepod mini",
"companion link"
],
"de": [
"apple",
"apple tv",
"appletv",
"tv",
"homepod",
"homepod mini",
"companion link"
],
"es": [
"apple",
"apple tv",
"appletv",
"tv",
"homepod",
"homepod mini",
"companion link"
],
"fr": [
"apple",
"apple tv",
"appletv",
"tv",
"homepod",
"homepod mini",
"companion link"
],
"it": [
"apple",
"apple tv",
"appletv",
"tv",
"homepod",
"homepod mini",
"companion link"
],
"no": [
"apple",
"apple tv",
"appletv",
"tv",
"homepod",
"homepod mini",
"companion link"
],
"sv": [
"apple",
"apple tv",
"appletv",
"tv",
"homepod",
"homepod mini",
"companion link"
],
"pl": [
"apple",
"apple tv",
"appletv",
"tv",
"homepod",
"homepod mini",
"companion link"
],
"ru": [
"apple",
"apple tv",
"appletv",
"tv",
"homepod",
"homepod mini",
"companion link"
],
"ko": [
"apple",
"apple tv",
"appletv",
"tv",
"homepod",
"homepod mini",
"companion link"
],
"ar": [
"apple",
"apple tv",
"appletv",
"tv",
"homepod",
"homepod mini",
"companion link"
]
},
"permissions": [],
"images": {
"small": "/assets/images/small.png",
"large": "/assets/images/large.png",
"xlarge": "/assets/images/xlarge.png"
},
"author": {
"name": "Bas Milius",
"email": "bas@mili.us"
},
"bugs": {
"url": "https://github.com/basmilius/homey-apple/issues"
},
"homepage": "https://bas.dev",
"source": "https://github.com/basmilius/homey-apple",
"support": "https://github.com/basmilius/homey-apple/issues",
"homeyCommunityTopicId": 147663,
"contributors": {
"developers": [
{
"name": "Martijn Woolschot"
}
]
},
"contributing": {
"donate": {
"paypal": {
"username": "basmilius"
},
"githubSponsors": {
"username": "basmilius"
}
}
},
"flow": {
"triggers": [
{
"id": "appletv_artwork_url_updated",
"title": {
"en": "Artwork URL updated",
"nl": "Albumhoes URL bijgewerkt",
"da": "Kunstværk URL opdateret",
"de": "Artwork-URL aktualisiert",
"es": "URL de ilustración actualizada",
"fr": "URL de l'illustration mise à jour",
"it": "URL dell'artwork aggiornato",
"no": "Kunstverk URL oppdatert",
"sv": "Konstverk URL uppdaterad",
"pl": "URL grafiki zaktualizowany",
"ru": "URL обложки обновлён",
"ko": "아트워크 URL이 업데이트됨",
"ar": "تم تحديث رابط الصورة الفنية"
},
"titleFormatted": {
"en": "Artwork URL updated",
"nl": "Albumhoes URL bijgewerkt",
"da": "Kunstværk URL opdateret",
"de": "Artwork-URL aktualisiert",
"es": "URL de ilustración actualizada",
"fr": "URL de l'illustration mise à jour",
"it": "URL dell'artwork aggiornato",
"no": "Kunstverk URL oppdatert",
"sv": "Konstverk URL uppdaterad",
"pl": "URL grafiki zaktualizowany",
"ru": "URL обложки обновлён",
"ko": "아트워크 URL이 업데이트됨",
"ar": "تم تحديث رابط الصورة الفنية"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=apple-tv"
}
],
"tokens": [
{
"name": "localUrl",
"type": "string",
"title": {
"en": "Local URL",
"nl": "Lokale URL",
"da": "Lokal URL",
"de": "Lokale URL",
"es": "URL local",
"fr": "URL locale",
"it": "URL locale",
"no": "Lokal URL",
"sv": "Lokal URL",
"pl": "Lokalny URL",
"ru": "Локальный URL",
"ko": "로컬 URL",
"ar": "الرابط المحلي"
}
},
{
"name": "cloudUrl",
"type": "string",
"title": {
"en": "Cloud URL",
"nl": "Cloud URL",
"da": "Cloud URL",
"de": "Cloud-URL",
"es": "URL de la nube",
"fr": "URL du cloud",
"it": "URL cloud",
"no": "Sky-URL",
"sv": "Moln-URL",
"pl": "URL chmury",
"ru": "URL в облаке",
"ko": "클라우드 URL",
"ar": "رابط السحابة"
}
}
]
},
{
"id": "appletv_companion_link_failed",
"title": {
"en": "Companion Link protocol connection failed",
"nl": "Companion Link protocol verbinding mislukt",
"da": "Companion Link protokolforbindelse mislykkedes",
"de": "Companion Link Protokollverbindung fehlgeschlagen",
"es": "Falló la conexión del protocolo Companion Link",
"fr": "Échec de la connexion du protocole Companion Link",
"it": "Connessione protocollo Companion Link non riuscita",
"no": "Companion Link protokolltilkobling mislyktes",
"sv": "Companion Link protokollanslutning misslyckades",
"pl": "Połączenie protokołu Companion Link nie powiodło się",
"ru": "Не удалось подключиться к протоколу Companion Link",
"ko": "Companion Link 프로토콜 연결 실패",
"ar": "فشل اتصال بروتوكول Companion Link"
},
"titleFormatted": {
"en": "Companion Link protocol connection failed",
"nl": "Companion Link protocol verbinding mislukt",
"da": "Companion Link protokolforbindelse mislykkedes",
"de": "Companion Link Protokollverbindung fehlgeschlagen",
"es": "Falló la conexión del protocolo Companion Link",
"fr": "Échec de la connexion du protocole Companion Link",
"it": "Connessione protocollo Companion Link non riuscita",
"no": "Companion Link protokolltilkobling mislyktes",
"sv": "Companion Link protokollanslutning misslyckades",
"pl": "Połączenie protokołu Companion Link nie powiodło się",
"ru": "Не удалось подключиться к протоколу Companion Link",
"ko": "Companion Link 프로토콜 연결 실패",
"ar": "فشل اتصال بروتوكول Companion Link"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=apple-tv"
}
],
"tokens": []
},
{
"id": "appletv_now_playing_app_changes",
"title": {
"en": "Now playing app changes",
"nl": "Nu spelende app verandert",
"da": "Nu afspilles appændringer",
"de": "Jetzt spielende App-Änderungen",
"es": "Cambios en la aplicación de reproducción ahora",
"fr": "Modifications de l'application en cours de lecture",
"it": "Modifiche all'app di riproduzione ora in corso",
"no": "Nåværende app-endringer",
"sv": "Nu spelas appändringar",
"pl": "Zmiany w aplikacji Teraz odtwarzane",
"ru": "Изменения в приложении \"Сейчас играет\"",
"ko": "이제 재생 중인 앱 변경사항",
"ar": "تغييرات تطبيق التشغيل الآن"
},
"titleFormatted": {
"en": "Now playing app changes",
"nl": "Nu spelende app verandert",
"da": "Ændringer i nuværende afspilningsapp",
"de": "Änderungen der Jetzt-Läuft-App",
"es": "Cambios en la aplicación de reproducción ahora",
"fr": "Modifications de l'application en cours de lecture",
"it": "Modifiche all'app di riproduzione ora in corso",
"no": "Nåværende app-endringer for avspilling",
"sv": "Nu spelas appändringar",
"pl": "Zmiany w aplikacji Teraz odtwarzane",
"ru": "Изменения в приложении \"Сейчас играет\"",
"ko": "이제 재생 중인 앱 변경사항",
"ar": "تغييرات تطبيق التشغيل الآن"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=apple-tv"
}
],
"tokens": [
{
"name": "bundleIdentifier",
"type": "string",
"title": {
"en": "Bundle identifier",
"nl": "Bundle identifier",
"da": "Bundle-identifikator",
"de": "Bundle-Identifier",
"es": "Identificador de paquete",
"fr": "Identifiant de bundle",
"it": "Identificatore del bundle",
"no": "Pakkebunt-ID",
"sv": "Paketidentifierare",
"pl": "Identyfikator pakietu",
"ru": "Идентификатор пакета",
"ko": "번들 식별자",
"ar": "معرّف الحزمة"
}
},
{
"name": "displayName",
"type": "string",
"title": {
"en": "Display name",
"nl": "Weergavenaam",
"da": "Visningsnavn",
"de": "Anzeigename",
"es": "Nombre para mostrar",
"fr": "Nom d'affichage",
"it": "Nome visualizzato",
"no": "Visningsnavn",
"sv": "Visningsnamn",
"pl": "Nazwa wyświetlana",
"ru": "Отображаемое имя",
"ko": "디스플레이 이름",
"ar": "اسم العرض"
}
}
]
},
{
"id": "homepod_artwork_url_updated",
"title": {
"en": "Artwork URL updated",
"nl": "Albumhoes URL bijgewerkt",
"da": "Kunstværk URL opdateret",
"de": "Artwork-URL aktualisiert",
"es": "URL de ilustración actualizada",
"fr": "URL de l'illustration mise à jour",
"it": "URL dell'artwork aggiornato",
"no": "Kunstverk URL oppdatert",
"sv": "Konstverk URL uppdaterad",
"pl": "URL grafiki zaktualizowany",
"ru": "URL обложки обновлён",
"ko": "아트워크 URL이 업데이트됨",
"ar": "تم تحديث رابط الصورة الفنية"
},
"titleFormatted": {
"en": "Artwork URL updated",
"nl": "Albumhoes URL bijgewerkt",
"da": "Kunstværk URL opdateret",
"de": "Artwork-URL aktualisiert",
"es": "URL de ilustración actualizada",
"fr": "URL de l'illustration mise à jour",
"it": "URL dell'artwork aggiornato",
"no": "Kunstverk URL oppdatert",
"sv": "Konstverk URL uppdaterad",
"pl": "URL grafiki zaktualizowany",
"ru": "URL обложки обновлён",
"ko": "아트워크 URL이 업데이트됨",
"ar": "تم تحديث رابط الصورة الفنية"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=homepod|homepod-mini"
}
],
"tokens": [
{
"name": "localUrl",
"type": "string",
"title": {
"en": "Local URL",
"nl": "Lokale URL",
"da": "Lokal URL",
"de": "Lokale URL",
"es": "URL local",
"fr": "URL locale",
"it": "URL locale",
"no": "Lokal URL",
"sv": "Lokal URL",
"pl": "Lokalny URL",
"ru": "Локальный URL",
"ko": "로컬 URL",
"ar": "الرابط المحلي"
}
},
{
"name": "cloudUrl",
"type": "string",
"title": {
"en": "Cloud URL",
"nl": "Cloud URL",
"da": "Cloud URL",
"de": "Cloud-URL",
"es": "URL de la nube",
"fr": "URL du cloud",
"it": "URL cloud",
"no": "Sky-URL",
"sv": "Moln-URL",
"pl": "URL chmury",
"ru": "URL в облаке",
"ko": "클라우드 URL",
"ar": "رابط السحابة"
}
}
]
}
],
"actions": [
{
"highlight": true,
"id": "appletv_launch_app",
"title": {
"en": "Launch an app",
"nl": "Open een app",
"da": "Start en app",
"de": "Eine App starten",
"es": "Iniciar una app",
"fr": "Lancer une application",
"it": "Avvia un'app",
"no": "Start en app",
"sv": "Starta en app",
"pl": "Uruchom aplikację",
"ru": "Запустить приложение",
"ko": "앱 실행",
"ar": "افتح تطبيقًا"
},
"titleFormatted": {
"en": "Launch app [[app]]",
"nl": "Open app [[app]]",
"da": "Start appen [[app]]",
"de": "App [[app]] starten",
"es": "Inicia la app [[app]]",
"fr": "Lancer l'application [[app]]",
"it": "Avvia l'app [[app]]",
"no": "Start appen [[app]]",
"sv": "Starta appen [[app]]",
"pl": "Uruchom aplikację [[app]]",
"ru": "Запустите приложение [[app]]",
"ko": "앱 [[app]] 실행",
"ar": "افتح التطبيق [[app]]"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=apple-tv"
},
{
"type": "autocomplete",
"name": "app",
"title": {
"en": "App",
"nl": "App",
"da": "App",
"de": "App",
"es": "App",
"fr": "App",
"it": "App",
"no": "App",
"sv": "App",
"pl": "Aplikacja",
"ru": "Приложение",
"ko": "앱",
"ar": "تطبيق"
}
}
]
},
{
"id": "appletv_launch_url",
"title": {
"en": "Launch a URL",
"nl": "Open een URL",
"da": "Åbn en URL",
"de": "Eine URL starten",
"es": "Abrir una URL",
"fr": "Lancer une URL",
"it": "Avvia un URL",
"no": "Åpne en URL",
"sv": "Starta en URL",
"pl": "Uruchom URL",
"ru": "Запустить URL",
"ko": "URL 실행",
"ar": "فتح رابط URL"
},
"titleFormatted": {
"en": "Launch URL [[url]]",
"nl": "Open URL [[url]]",
"da": "Start URL [[url]]",
"de": "URL starten [[url]]",
"es": "Abrir URL [[url]]",
"fr": "Lancer l'URL [[url]]",
"it": "Avvia URL [[url]]",
"no": "Start URL [[url]]",
"sv": "Starta URL [[url]]",
"pl": "Uruchom URL [[url]]",
"ru": "Запустить URL [[url]]",
"ko": "URL 실행 [[url]]",
"ar": "افتح الرابط [[url]]"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=apple-tv"
},
{
"name": "url",
"type": "text",
"required": true,
"title": {
"en": "URL",
"nl": "URL",
"da": "URL",
"de": "URL",
"es": "URL",
"fr": "URL",
"it": "URL",
"no": "URL",
"sv": "URL",
"pl": "URL",
"ru": "URL",
"ko": "URL",
"ar": "الرابط"
}
}
]
},
{
"id": "appletv_remote",
"title": {
"en": "Execute remote command",
"nl": "Voer afstandsbediening commando uit",
"da": "Udfør fjernkommando",
"de": "Führe Fernbefehl aus",
"es": "Ejecutar comando remoto",
"fr": "Exécuter une commande à distance",
"it": "Esegui comando remoto",
"no": "Utfør fjernkommando",
"sv": "Utför fjärrkommando",
"pl": "Wykonaj polecenie zdalne",
"ru": "Выполнить удалённую команду",
"ko": "원격 명령 실행",
"ar": "تنفيذ أمر عن بُعد"
},
"titleFormatted": {
"en": "Execute [[command]]",
"nl": "Voer [[command]] uit",
"da": "Udfør [[command]]",
"de": "Führe [[command]] aus",
"es": "Ejecutar [[command]]",
"fr": "Exécuter [[command]]",
"it": "Esegui [[command]]",
"no": "Utfør [[command]]",
"sv": "Utför [[command]]",
"pl": "Wykonaj [[command]]",
"ru": "Выполнить [[command]]",
"ko": "[[command]] 실행",
"ar": "نفذ [[command]]"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=apple-tv"
},
{
"type": "dropdown",
"name": "command",
"title": {
"en": "Command",
"nl": "Commando",
"da": "Kommando",
"de": "Befehl",
"es": "Comando",
"fr": "Commande",
"it": "Comando",
"no": "Kommando",
"sv": "Kommando",
"pl": "Polecenie",
"ru": "Команда",
"ko": "명령",
"ar": "أمر"
},
"values": [
{
"id": "up",
"label": {
"en": "Up",
"nl": "Omhoog",
"da": "Op",
"de": "Hoch",
"es": "Arriba",
"fr": "Haut",
"it": "Su",
"no": "Opp",
"sv": "Upp",
"pl": "W górę",
"ru": "Вверх",
"ko": "업",
"ar": "أعلى"
}
},
{
"id": "down",
"label": {
"en": "Down",
"nl": "Omlaag",
"da": "Ned",
"de": "Unten",
"es": "Abajo",
"fr": "Bas",
"it": "Giù",
"no": "Ned",
"sv": "Ner",
"pl": "Dół",
"ru": "Вниз",
"ko": "아래",
"ar": "أسفل"
}
},
{
"id": "left",
"label": {
"en": "Left",
"nl": "Links",
"da": "Venstre",
"de": "Links",
"es": "Izquierda",
"fr": "Gauche",
"it": "Sinistra",
"no": "Venstre",
"sv": "Vänster",
"pl": "Lewo",
"ru": "Левый",
"ko": "왼쪽",
"ar": "يسار"
}
},
{
"id": "right",
"label": {
"en": "Right",
"nl": "Rechts",
"da": "Rigtigt",
"de": "Richtig",
"es": "Correcto",
"fr": "D'accord",
"it": "Giusto",
"no": "Riktig",
"sv": "Rätt",
"pl": "Dobrze",
"ru": "Верно",
"ko": "맞아요",
"ar": "صحيح"
}
},
{
"id": "select",
"label": {
"en": "Select",
"nl": "Selecteer",
"da": "Vælg",
"de": "Auswählen",
"es": "Seleccionar",
"fr": "Sélectionner",
"it": "Seleziona",
"no": "Velg",
"sv": "Välj",
"pl": "Wybierz",
"ru": "Выбрать",
"ko": "선택",
"ar": "اختر"
}
},
{
"id": "menu",
"label": {
"en": "Menu/Back",
"nl": "Menu/Terug",
"da": "Menu/Tilbage",
"de": "Menü/Zurück",
"es": "Menú/Atrás",
"fr": "Menu/Retour",
"it": "Menu/Indietro",
"no": "Meny/Tilbake",
"sv": "Meny/Tillbaka",
"pl": "Menu/Wstecz",
"ru": "Меню/Назад",
"ko": "메뉴/뒤로",
"ar": "القائمة/الرجوع"
}
},
{
"id": "home",
"label": {
"en": "Home",
"nl": "Home",
"da": "Hjem",
"de": "Zuhause",
"es": "Inicio",
"fr": "Accueil",
"it": "Casa",
"no": "Hjem",
"sv": "Hem",
"pl": "Dom",
"ru": "Дом",
"ko": "홈",
"ar": "الصفحة الرئيسية"
}
},
{
"id": "play",
"label": {
"en": "Play",
"nl": "Afspelen",
"da": "Afspil",
"de": "Abspielen",
"es": "Reproducir",
"fr": "Lire",
"it": "Riproduci",
"no": "Spill",
"sv": "Spela",
"pl": "Odtwórz",
"ru": "Воспроизвести",
"ko": "재생",
"ar": "تشغيل"
}
},
{
"id": "pause",
"label": {
"en": "Pause",
"nl": "Pauzeren",
"da": "Pause",
"de": "Pause",
"es": "Pausa",
"fr": "Pause",
"it": "Pausa",
"no": "Pause",
"sv": "Pausa",
"pl": "Pauza",
"ru": "Пауза",
"ko": "일시 정지",
"ar": "إيقاف مؤقت"
}
},
{
"id": "playPause",
"label": {
"en": "Play/Pause",
"nl": "Afspelen/Pauzeren",
"da": "Afspil/Pause",
"de": "Wiedergabe/Pause",
"es": "Reproducir/Pausar",
"fr": "Lecture/Pause",
"it": "Riproduci/Pausa",
"no": "Spill/Pause",
"sv": "Spela/Pausa",
"pl": "Odtwórz/Pauza",
"ru": "Воспроизведение/Пауза",
"ko": "재생/일시 정지",
"ar": "تشغيل/إيقاف مؤقت"
}
},
{
"id": "next",
"label": {
"en": "Next",
"nl": "Volgende",
"da": "Næste",
"de": "Weiter",
"es": "Siguiente",
"fr": "Suivant",
"it": "Avanti",
"no": "Neste",
"sv": "Nästa",
"pl": "Dalej",
"ru": "Далее",
"ko": "다음",
"ar": "التالي"
}
},
{
"id": "previous",
"label": {
"en": "Previous",
"nl": "Vorige",
"da": "Forrige",
"de": "Vorherige",
"es": "Anterior",
"fr": "Précédent",
"it": "Precedente",
"no": "Forrige",
"sv": "Föregående",
"pl": "Poprzedni",
"ru": "Предыдущий",
"ko": "이전",
"ar": "السابق"
}
},
{
"id": "volumeUp",
"label": {
"en": "Volume Up",
"nl": "Volume omhoog",
"da": "Skru op for lyden",
"de": "Lauter stellen",
"es": "Subir volumen",
"fr": "Augmenter le volume",
"it": "Aumenta Volume",
"no": "Volum opp",
"sv": "Volym upp",
"pl": "Zwiększ głośność",
"ru": "Увеличить громкость",
"ko": "볼륨 올리기",
"ar": "رفع الصوت"
}
},
{
"id": "volumeDown",
"label": {
"en": "Volume Down",
"nl": "Volume omlaag",
"da": "Skru ned for lyden",
"de": "Leiser",
"es": "Bajar volumen",
"fr": "Baisser le volume",
"it": "Abbassa il volume",
"no": "Volum ned",
"sv": "Volym ner",
"pl": "Ściszanie dźwięku",
"ru": "Уменьшить громкость",
"ko": "볼륨 낮추기",
"ar": "خفض الصوت"
}
},
{
"id": "mute",
"label": {
"en": "Mute",
"nl": "Dempen",
"da": "Slå lyd fra",
"de": "Stummschalten",
"es": "Silenciar",
"fr": "Muet",
"it": "Disattiva audio",
"no": "Demp",
"sv": "Stäng av ljudet",
"pl": "Wycisz",
"ru": "Отключить звук",
"ko": "음소거",
"ar": "كتم الصوت"
}
},
{
"id": "wake",
"label": {
"en": "Wake",
"nl": "Activeren",
"da": "Væk",
"de": "Aufwecken",
"es": "Despertar",
"fr": "Réveille",
"it": "Sveglia",
"no": "Vekk opp",
"sv": "Väck",
"pl": "Obudź",
"ru": "Проснись",
"ko": "깨우기",
"ar": "استيقظ"
}
},
{
"id": "suspend",
"label": {
"en": "Sleep",
"nl": "Slaapstand",
"da": "Søvn",
"de": "Schlaf",
"es": "Dormir",
"fr": "Sommeil",
"it": "Sonno",
"no": "Søvn",
"sv": "Sömn",
"pl": "Sen",
"ru": "Сон",
"ko": "수면",
"ar": "نوم"
}
}
]
}
]
},
{
"id": "appletv_switch_account",
"title": {
"en": "Switch account",
"nl": "Wissel van gebruiker",
"da": "Skift konto",
"de": "Konto wechseln",
"es": "Cambiar cuenta",
"fr": "Changer de compte",
"it": "Cambia account",
"no": "Bytt konto",
"sv": "Byt konto",
"pl": "Przełącz konto",
"ru": "Сменить аккаунт",
"ko": "계정 전환",
"ar": "تبديل الحساب"
},
"titleFormatted": {
"en": "Switch to account [[account]]",
"nl": "Wissel naar gebruiker [[account]]",
"da": "Skift til konto [[account]]",
"de": "Zu Konto [[account]] wechseln",
"es": "Cambiar a la cuenta [[account]]",
"fr": "Passer à l'utilisateur [[account]]",
"it": "Passa all'account [[account]]",
"no": "Bytt til konto [[account]]",
"sv": "Byt till konto [[account]]",
"pl": "Przełącz na konto [[account]]",
"ru": "Переключиться на аккаунт [[account]]",
"ko": "[[account]] 계정으로 전환하기",