summaryrefslogtreecommitdiff
path: root/src/components/application_manager/test/sdl_pt_update.json
blob: e3c9c15861014bd09c957401aaf00f3a31a513c7 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
{
   "policy_table" : {
      "app_policies" : {
         "1010101010" : {
            "AppHMIType" : [ "MEDIA" ],
            "certificate" : "akdjfhaliuygrglurng",
            "default_hmi" : "BACKGROUND",
            "groups" : [
               "Notifications",
               "Location-1",
               "PropriataryData-1",
               "Navigation-1",
               "Base-4",
               "VehicleInfo-3",
               "DrivingCharacteristics-3",
               "Emergency-1"
            ],
            "keep_context" : true,
            "nicknames" : [ "SyncProxyTester" ],
            "priority" : "EMERGENCY",
            "steal_focus" : true,
            "watchdog_timer_ms" : 20000,
            "app_services": {
               "MEDIA": {
                  "service_names" : ["SDL App", "SDL Music"],
                  "handled_rpcs" : [{"function_id": 41}]
               }
            }
         },
         "default" : {
            "default_hmi" : "NONE",
            "groups" : [ "Base-4" ],
            "keep_context" : false,
            "priority" : "NONE",
            "steal_focus" : false,
            "watchdog_timer_ms" : 20000
         },
         "device" : {
            "default_hmi" : "NONE",
            "groups" : [ "Base-4" ],
            "watchdog_timer_ms" : 20000,
            "keep_context" : false,
            "priority" : "NONE",
            "steal_focus" : false
         },
         "pre_DataConsent" : {
            "default_hmi" : "NONE",
            "groups" : [ "pre_Base-1" ],
            "keep_context" : false,
            "priority" : "NONE",
            "steal_focus" : false,
            "watchdog_timer_ms" : 20000
         }
      },
      "consumer_friendly_messages" : {
         "messages" : {
            "AppPermissions" : {
               "languages" : {
                  "de-de" : {
                     "line1" : "Zugriffsanfrage(n)",
                     "line2" : "erlauben?",
                     "tts" : "%appName% benötigt die folgenden Fahrzeuginformationen und Zugriffsberechtigungen: %functionalGroupLabels%. Wenn Sie Ja drücken, erklären Sie sich damit einverstanden, dass %vehicleMake% nicht für Schäden oder Verletzungen der Privatsphäre haftet, die im Zusammenhang mit der Nutzung Ihrer Benutzerdaten durch %appName% entstehen. Mit Ja stimmen Sie zu; mit Nein lehnen Sie ab."
                  },
                  "en-au" : {
                     "line1" : "Grant requested",
                     "line2" : "permission(s)?",
                     "tts" : "%appName% is requesting the use of the following vehicle information and permissions: %functionalGroupLabels%. If you press Yes, you agree that %vehicleMake% will not be liable for any damages or loss of privacy related to %appName%'s use of your data. Please press Yes to allow or No to deny."
                  },
                  "en-gb" : {
                     "line1" : "Grant requested",
                     "line2" : "permission(s)?",
                     "tts" : "%appName% is requesting the use of the following vehicle information and permissions: %functionalGroupLabels%. If you press Yes, you agree that %vehicleMake% will not be liable for any damages or loss of privacy related to %appName%'s use of your data. Please press Yes to allow or No to deny."
                  },
                  "en-us" : {
                     "line1" : "Grant Requested",
                     "line2" : "Permission(s)?",
                     "tts" : "%appName% is requesting the use of the following vehicle information and permissions: %functionalGroupLabels%. If you press yes, you agree that %vehicleMake% will not be liable for any damages or loss of privacy related to %appName%'s use of your data. Please press yes to allow or no to deny."
                  },
                  "es-es" : {
                     "line1" : "¿Conceder permisos",
                     "line2" : "solicitados?",
                     "tts" : "%appName% está solicitando el uso de los siguientes permisos e información del vehículo: %functionalGroupLabels%. Si pulsa sí, acepta que %vehicleMake% no será responsable de los daños o la pérdida de privacidad relacionados con el uso de sus datos por parte de %appName%. Pulse sí para permitir o no para denegar."
                  },
                  "es-mx" : {
                     "line1" : "¿Otorgar permiso(s)",
                     "line2" : "solicitado(s)?",
                     "tts" : "%appName% solicita el uso de la siguiente información y permisos del vehículo: %functionalGroupLabels%. Si presiona Sí, acepta que %vehicleMake% no se hará responsable por los daños o pérdidas de privacidad relacionados con el uso que %appName% haga de sus datos. Presione Sí para permitir y No para denegar."
                  },
                  "fr-ca" : {
                     "line1" : "Accorder permission(s)",
                     "line2" : "demandée(s)",
                     "tts" : "%appName% demande d’utiliser les informations du véhicule et les permissions suivantes : %functionalGroupLabels%. Si vous appuyez sur Oui, vous acceptez que %vehicleMake% ne sera pas responsable des dommages ou des pertes de confidentialité reliées à l’utilisation de vos données par %appName%. Veuillez appuyer sur Oui pour autoriser ou sur Non pour refuser."
                  },
                  "fr-fr" : {
                     "line1" : "Accorder permission(s)",
                     "line2" : "demandée(s)",
                     "tts" : "%appName% demande d’utiliser les informations du véhicule et les permissions suivantes : %functionalGroupLabels%. Si vous appuyez sur Oui, vous acceptez que %vehicleMake% ne sera pas responsable des dommages ou des pertes de confidentialité reliées à l’utilisation de vos données par %appName%. Veuillez appuyer sur Oui pour autoriser ou sur Non pour refuser."
                  },
                  "it-it" : {
                     "line1" : "Concedi autorizzaz.",
                     "line2" : "richiesta(e)?",
                     "tts" : "%appName% richiede l'uso delle seguenti informazioni e autorizzazioni sul veicolo: %functionalGroupLabels%. Se si preme Sì, si acconsente che %vehicleMake% non sarà responsabile per danni o perdita di privacy in relazione all'impiego dei dati da parte di %appName%. Premere Sì per consentire e No per negare."
                  },
                  "nl-nl" : {
                     "line1" : "Aangevraagde",
                     "line2" : "permissie(s) verlenen?",
                     "tts" : "%appName% vraagt gebruikmaking van de volgende voertuiginformatie en toestemmingen aan: %functionalGroupLabels%. Als u op Ja drukt, gaat u ermee akkoord dat %vehicleMake% in geen geval aansprakelijk gesteld kan worden voor schade of verlies van privacy als gevolg van het feit dat %appName% gebruik maakt van uw gegevens. Druk op Ja om dit toe te staan of Nee om te weigeren."
                  },
                  "pl-pl" : {
                     "line1" : "Udzielić żądanych",
                     "line2" : "pozwoleń?",
                     "tts" : "%appName% wymaga następujących informacji o pojeździe oraz pozwoleń: %functionalGroupLabels%. Naciśnięcie TAK oznacza zgodę na fakt, iż %vehicleMake% nie będzie ponosić odpowiedzialności za szkody ani utratę prywatności w związku z wykorzystaniem przez %appName% danych, należących do użytkownika. Naciśnij TAK w celu udzielenia zgody lub NIE w celu odrzucenia żądania."
                  },
                  "pt-br" : {
                     "line1" : "Conceder permissão",
                     "line2" : "solicitada?",
                     "tts" : "%appName% está solicitando o uso das seguintes informações e permissões do veículo: %functionalGroupLabels%. Se pressionar sim, você concorda que a %vehicleMake% não será responsável por danos ou perdas de privacidade relacionados ao uso dos seus dados por %appName%. Pressione sim para permitir ou não para negar."
                  },
                  "pt-pt" : {
                     "line1" : "Conceder permiss.",
                     "line2" : "solicitada(s)?",
                     "tts" : "%appName% está a solicitar a utilização das seguintes informações e permissões do veículo: %functionalGroupLabels%. Se premir “Sim”, concorda que %vehicleMake% não será responsável por quaisquer danos ou perda de privacidade relacionada com a utilização dos seus dados por parte de %appName%. Prima “Sim” para permitir ou “Não” para recusar."
                  },
                  "ru-ru" : {
                     "line1" : "Предост. заправш.",
                     "line2" : "разрешения?",
                     "tts" : "%appName% запрашивает следующую информацию об автомобиле и разрешения: %functionalGroupLabels%. Нажатием \"\"да\"\", Вы соглашаетесь, что %vehicleMake% не будет нести ответственность за какие-либо убытки или потерю прайвеси, связанные с использованием Ваших данных компанией %appName%. Нажмите \"\"Да\"\", если Вы согласны, или \"\"Нет\"\" - если не согласны."
                  },
                  "sv-se" : {
                     "line1" : "Vill du ge",
                     "line2" : "tillstånd?",
                     "tts" : "%appName% begär att få tillgång till följande fordonsinformation och tillstånd: %functionalGroupLabels%. Om du trycker Ja godkänner du att %vehicleMake% ska hållas skadeslös för alla skador som kan uppstå eller eventuella integritetsintrång som uppstår när %appName% använder dina data. Tryck Ja för att godkänna eller Nej för att neka."
                  },
                  "tr-tr" : {
                     "line1" : "İstenen izinler",
                     "line2" : "verilsin mi?",
                     "tts" : "%appName%, şu araç bilgilerini ve izinleri kullanma isteğinde bulunuyor: %functionalGroupLabels%. Evet'e basarsanız, %appName%'in verilerinizi kullanması sonucunda oluşabilecek hasarlardan veya gizlilik kaybından %vehicleMake%'in sorumlu olmayacağını kabul etmiş olacaksınız. Lütfen kabul etmek için Evet'e veya reddetmek için Hayır'a basın."
                  },
                  "zh-cn" : {
                     "line1" : "是否允许请求的",
                     "line2" : "权限?",
                     "tts" : "%appName% 正在请求使用下列车辆信息和权限: %functionalGroupLabels%。如果您按“是”,则表示您同意。 %vehicleMake% 将不会对因 %appName% 使用您的数据而引起的任何损毁或隐私损失负责。 请按“是”允许或按“否”拒绝。"
                  },
                  "zh-tw" : {
                     "line1" : "允許",
                     "line2" : "授權請求?",
                     "tts" : "%appName% 正請求使用 %functionalGroupLabels% 的車輛資訊和許可。按「是」,表示您同意,如因 %appName% 使用您的資料導致任何損害或損失,%vehicleMake% 將不負賠償責任。同意請按「是」,拒絕請按「否」。"
                  }
               }
            },
            "AppPermissionsHelp" : {
               "languages" : {
                  "de-de" : {
                     "tts" : "%appName% fordert folgende Fahrzeuginformationen und Zugriffsberechtigungen: %functionalGroupLabels%. Im Einstellungsmenü der mobilen Apps können Sie diese Berechtigungen ändern und sich detaillierte Beschreibungen anhören. Mit Ja stimmen Sie zu; mit Nein lehnen Sie ab."
                  },
                  "en-au" : {
                     "tts" : "%appName% is requesting the following vehicle information and permissions: %functionalGroupLabels%. You can change these permissions and hear detailed descriptions in the mobile apps settings menu. Please press Yes to grant permissions or No to deny."
                  },
                  "en-gb" : {
                     "tts" : "%appName% is requesting the following vehicle information and permissions: %functionalGroupLabels%. You can change these permissions and hear detailed descriptions in the mobile apps settings menu. Please press Yes to grant permissions or No to deny."
                  },
                  "en-us" : {
                     "tts" : "%appName% is requesting the following vehicle information and permissions: %functionalGroupLabels%. You can change these permissions and hear detailed descriptions in the mobile apps settings menu. Please press yes to grant permissions or no to deny."
                  },
                  "es-es" : {
                     "tts" : "%appName% está solicitando los siguientes permisos e información del vehículo: %functionalGroupLabels%. Puede cambiar estos permisos y escuchar descripciones detalladas en el menú de configuración de la aplicación móvil. Pulse sí para conceder el permiso o no para denegarlo."
                  },
                  "es-mx" : {
                     "tts" : "%appName% solicita la siguiente información y permisos del vehículo: %functionalGroupLabels%. Puede cambiar estos permisos y consultar descripciones detalladas en el menú de configuración de las aplicaciones móviles. Presione Sí para otorgar permisos y No para denegar."
                  },
                  "fr-ca" : {
                     "tts" : "%appName% demande d’utiliser les informations du véhicule et les permissions suivantes : %functionalGroupLabels%. Vous pouvez modifier ces permissions et entendre les descriptions détaillées dans le menu des réglages des applications mobiles. Veuillez appuyer sur Oui pour accorder les permissions ou sur Non pour refuser."
                  },
                  "fr-fr" : {
                     "tts" : "%appName% demande d’utiliser les informations du véhicule et les permissions suivantes : %functionalGroupLabels%. Vous pouvez modifier ces permissions et entendre les descriptions détaillées dans le menu des réglages des applications mobiles. Veuillez appuyer sur Oui pour accorder les permissions ou sur Non pour refuser."
                  },
                  "it-it" : {
                     "tts" : "%appName% richiede le seguenti informazioni e autorizzazioni riguardo il veicolo: %functionalGroupLabels%. È possibile modificare tali autorizzazioni e ascoltare descrizioni dettagliate nel menu impostazioni delle app mobili. Premere Sì per concedere le autorizzazioni e No per negarle."
                  },
                  "nl-nl" : {
                     "tts" : "%appName% vraagt gebruikmaking van de volgende voertuiginformatie en toestemmingen aan: %functionalGroupLabels%. U kunt deze toestemmingen wijzigen en gedetailleerde beschrijvingen beluisteren in het instellingenmenu voor mobiele apps. Druk op Ja om permissies te verlenen of op Nee om te weigeren."
                  },
                  "pl-pl" : {
                     "tts" : "%appName% wymaga następujących informacji o pojeździe oraz zezwoleń: %functionalGroupLabels%. W menu ustawień aplikacji mobilnych można zmienić owe zezwolenia i usłyszeć ich szczegółowy opis. Naciśnij TAK, aby wyrazić zgodę lub NIE w celu odrzucenia żądania."
                  },
                  "pt-br" : {
                     "tts" : "%appName% está solicitando as seguintes informações e permissões do veículo: %functionalGroupLabels%. Você pode alterar estas permissões e ouvir descrições detalhadas no menu de configurações de aplicativos móveis. Pressione sim para conceder as permissões ou não para negar."
                  },
                  "pt-pt" : {
                     "tts" : "%appName% está a solicitar as seguintes informações e permissões do veículo: %functionalGroupLabels%. Pode alterar estas permissões e ouvir descrições detalhadas no menu de definições das aplicações móveis. Prima \"\"Sim\"\" para permitir ou \"\"Não\"\" para recusar."
                  },
                  "ru-ru" : {
                     "tts" : "%appName% запрашивает следующую информацию об автомобиле и разрешения: %functionalGroupLabels%. Вы можете изменить эти разрешения и прослушать подробные их описания в меню настроек мобильного приложения. Нажмите \"\"да\"\", чтобы предоставить разрешения, или \"\"нет\"\", чтобы не предоставлять."
                  },
                  "sv-se" : {
                     "tts" : "%appName% begär tillgång till följande fordonsinformation och tillstånd: %functionalGroupLabels%. Du kan ändra tillstånden och höra detaljerade beskrivningar i menyn för mobilappsinställningar. Tryck Ja för att ge tillstånd eller Nej för att neka."
                  },
                  "tr-tr" : {
                     "tts" : "%appName%, şu araç bilgilerini ve izinleri istiyor: %functionalGroupLabels%. Bu izinleri değiştirebilir ve mobil uygulamalar ayarlar menüsünden ayrıntılı açıklamaları dinleyebilirsiniz. Lütfen izin vermek için Evet'e veya reddetmek için Hayır'a basın."
                  },
                  "zh-cn" : {
                     "tts" : "%appName% 正在请求下列车辆信息和权限: %functionalGroupLabels%。您可在移动应用程序设置菜单中更改这些权限,并听取详细说明。请按“是”允许权限或按“否”拒绝。"
                  },
                  "zh-tw" : {
                     "tts" : "%appName% 正請求使用 %functionalGroupLabels% 的車輛資訊和許可。您可在行動應用程式設定清單中更改這些許可,並聆聽詳細說明。給予許可請按「是」,拒絕請按「否」。"
                  }
               }
            },
            "AppPermissionsRevoked" : {
               "languages" : {
                  "de-de" : {
                     "tts" : "Die Autorisierungsdaten der App wurden geändert. %appName% hat keinen Zugriff auf %functionalGroupLabels% mehr. Installieren Sie die neueste Version der App auf Ihrem Gerät.."
                  },
                  "en-au" : {
                     "tts" : "App authorizations have changed. %appName% can no longer access %functionalGroupLabels%. Please ensure you have the most recent app version installed on your mobile device."
                  },
                  "en-gb" : {
                     "tts" : "App authorizations have changed. %appName% can no longer access %functionalGroupLabels%. Please ensure you have the most recent app version installed on your mobile device."
                  },
                  "en-us" : {
                     "tts" : "App authorizations have changed. %appName% can no longer access %functionalGroupLabels%. Please ensure you have the most recent app version installed on your mobile device."
                  },
                  "es-es" : {
                     "tts" : "Las autorizaciones de la aplicación han cambiado. %appName% ya no puede acceder a %functionalGroupLabels%. Asegúrese de que tiene la versión más reciente de la aplicación instalada en su dispositivo móvil."
                  },
                  "es-mx" : {
                     "tts" : "Las autorizaciones de la aplicación han cambiado. %appName% ya no puede acceder a %functionalGroupLabels%. Asegúrese de haber instalado la versión más reciente de la aplicación en su dispositivo móvil."
                  },
                  "fr-ca" : {
                     "tts" : "Les autorisations pour app ont changé. %appName% ne peut plus accéder à %functionalGroupLabels%. Veuillez vous assurer que la plus récente version de l’application est installée sur votre appareil mobile."
                  },
                  "fr-fr" : {
                     "tts" : "Les autorisations pour app ont changé. %appName% ne peut plus accéder à %functionalGroupLabels%. Veuillez vous assurer que la plus récente version de l’application est installée sur votre appareil mobile."
                  },
                  "it-it" : {
                     "tts" : "Le autorizzazioni dell'app sono cambiate. %appName% non è più in grado di accedere a %functionalGroupLabels%. Assicurarsi di avere la versione più recente dell'app installata sul dispositivo mobile."
                  },
                  "nl-nl" : {
                     "tts" : "De app-autorisaties zijn gewijzigd. %appName% heeft geen toegang meer tot %functionalGroupLabels%. Zorg ervoor dat u de meest recente app-versie op uw mobiele apparaat geïnstalleerd hebt."
                  },
                  "pl-pl" : {
                     "tts" : "Dane dostępu aplikacji zostały zmienione. %appName% nie ma już dostępu do %functionalGroupLabels%. Sprawdź, czy na telefonie komórkowym zainstalowano najnowszą wersję aplikacji."
                  },
                  "pt-br" : {
                     "tts" : "As autorizações dos aplicativos foram alteradas. %appName% não pode mais acessar %functionalGroupLabels%. Certifique-se de que a versão mais recente do aplicativo está instalada no seu dispositivo móvel."
                  },
                  "pt-pt" : {
                     "tts" : "As autorizações das aplicações mudaram. %appName% já não consegue aceder a %functionalGroupLabels%. Certifique-se de que tem a última versão da aplicação no seu dispositivo móvel."
                  },
                  "ru-ru" : {
                     "tts" : "Авторизации приложения изменены. %appName% больше не имеет доступа к %functionalGroupLabels%. Убедитесь, что на вашем мобильном устройстве установлена самая новая версия приложения."
                  },
                  "sv-se" : {
                     "tts" : "Appens behörigheter har ändrats. %appName% har inte längre åtkomst till %functionalGroupLabels%. Kontrollera att du har installerat den senaste versionen av appen på mobilenheten."
                  },
                  "tr-tr" : {
                     "tts" : "Uygulama yetkileri değişti. %appName% artık %functionalGroupLabels%'e erişemeyecek. Lütfen mobil aygıtınızda en son uygulama sürümünün yüklü olduğundan emin olun."
                  },
                  "zh-cn" : {
                     "tts" : "应用程序授权已变更。 %appName% 将不能再访问 %functionalGroupLabels%。 请确认您的移动设备上安装的应用程序是最新版本。"
                  },
                  "zh-tw" : {
                     "tts" : "應用程式授權已改變。%appName% 已無法進入 %functionalGroupLabels%。請確認您的行動裝置上安裝了最新版應用程式。"
                  }
               }
            },
            "AppUnauthorized" : {
               "languages" : {
                  "de-de" : {
                     "line1" : "nicht autorisiert",
                     "tts" : "Diese Version von %appName% ist nicht autorisiert und wird nicht mit SYNC funktionieren."
                  },
                  "en-au" : {
                     "line1" : "not authorized",
                     "tts" : "This version of %appName% is not authorized and will not work with SYNC."
                  },
                  "en-gb" : {
                     "line1" : "not authorized",
                     "tts" : "This version of %appName% is not authorized and will not work with SYNC."
                  },
                  "en-us" : {
                     "line1" : "Not Authorized",
                     "tts" : "This version of %appName% is not authorized and will not work with SYNC."
                  },
                  "es-es" : {
                     "line1" : "No autorizada",
                     "tts" : "Esta versión de %appName% no está autorizada y no funcionará con SYNC."
                  },
                  "es-mx" : {
                     "line1" : "no autorizada",
                     "tts" : "Esta versión de %appName% no tiene autorización y no funcionará con SYNC."
                  },
                  "fr-ca" : {
                     "line1" : "non autorisée",
                     "tts" : "Cette version de %appName% n’est pas autorisée et ne fonctionnera pas avec SYNC."
                  },
                  "fr-fr" : {
                     "line1" : "non autorisée",
                     "tts" : "Cette version de %appName% n’est pas autorisée et ne fonctionnera pas avec SYNC."
                  },
                  "it-it" : {
                     "line1" : "non autorizzata",
                     "tts" : "Questa versione di %appName% non è autorizzata e non funziona con il SYNC."
                  },
                  "nl-nl" : {
                     "line1" : "niet geautoriseerd",
                     "tts" : "Deze versie van %appName% is niet geautoriseerd en werkt niet met SYNC."
                  },
                  "pl-pl" : {
                     "line1" : "brak autoryzacji",
                     "tts" : "Niniejsza wersja %appName% nie posiada autoryzacji i nie będzie działać z SYNC."
                  },
                  "pt-br" : {
                     "line1" : "não autorizado",
                     "tts" : "Esta versão do %appName% não tem autorização e não funcionará com o SYNC."
                  },
                  "pt-pt" : {
                     "line1" : "não autorizada",
                     "tts" : "Esta versão de %appName% não está autorizada e não funcionará com o SYNC."
                  },
                  "ru-ru" : {
                     "line1" : "не авторизировано",
                     "tts" : "Эта версия %appName% не авторизирована и не будет работать с SYNC."
                  },
                  "sv-se" : {
                     "line1" : "är ej godkänd",
                     "tts" : "Den här versionen av %appName% är inte godkänd och fungerar inte med SYNC."
                  },
                  "tr-tr" : {
                     "line1" : "için izin yok",
                     "tts" : "Bu %appName% sürümüne izin verilmediğinden SYNC ile çalışamaz."
                  },
                  "zh-cn" : {
                     "line1" : "未得到授权",
                     "tts" : "此版本的%appName% 未得到授权,无法在SYNC上使用。"
                  },
                  "zh-tw" : {
                     "line1" : "無授權",
                     "tts" : "%appName% 的版本未獲得授權,將無法透過 SYNC 使用。"
                  }
               }
            },
            "AppUnsupported" : {
               "languages" : {
                  "de-de" : {
                     "line1" : "nicht unterstützt",
                     "tts" : "Diese Version von %appName% wird von SYNC nicht unterstützt."
                  },
                  "en-au" : {
                     "line1" : "not supported",
                     "tts" : "This version of %appName% is not supported by SYNC."
                  },
                  "en-gb" : {
                     "line1" : "not supported",
                     "tts" : "This version of %appName% is not supported by SYNC."
                  },
                  "en-us" : {
                     "line1" : "Not Supported",
                     "tts" : "This version of %appName% is not supported by SYNC."
                  },
                  "es-es" : {
                     "line1" : "No compatible",
                     "tts" : "Esta versión de %appName% no es compatible con SYNC."
                  },
                  "es-mx" : {
                     "line1" : "no compatible",
                     "tts" : "Esta versión de %appName% no es compatible con SYNC."
                  },
                  "fr-ca" : {
                     "line1" : "incompatible",
                     "tts" : "Cette version de %appName% n’est pas prise en charge par SYNC."
                  },
                  "fr-fr" : {
                     "line1" : "incompatible",
                     "tts" : "Cette version de %appName% n’est pas prise en charge par SYNC."
                  },
                  "it-it" : {
                     "line1" : "non supportata",
                     "tts" : "Questa versione di %appName% non è supportata dal SYNC."
                  },
                  "nl-nl" : {
                     "line1" : "niet ondersteund",
                     "tts" : "Deze versie van %appName% wordt niet ondersteund door SYNC."
                  },
                  "pl-pl" : {
                     "line1" : "aplikacja nie obsług.",
                     "tts" : "Niniejsza wersja %appName% nie jest obsługiwana przez system SYNC."
                  },
                  "pt-br" : {
                     "line1" : "não suportado",
                     "tts" : "Esta versão do %appName% não é suportada pelo SYNC."
                  },
                  "pt-pt" : {
                     "line1" : "não suportada",
                     "tts" : "Esta versão de %appName% não é suportado pelo SYNC."
                  },
                  "ru-ru" : {
                     "line1" : "не поддерживается",
                     "tts" : "Эта версия %appName% не поддерживается SYNC."
                  },
                  "sv-se" : {
                     "line1" : "stöds ej",
                     "tts" : "SYNC har inte stöd för den här versionen av %appName%."
                  },
                  "tr-tr" : {
                     "line1" : "desteklenmiyor",
                     "tts" : "Bu %appName% sürümü SYNC tarafından desteklenmiyor."
                  },
                  "zh-cn" : {
                     "line1" : "不受支持",
                     "tts" : "SYNC不支持此版本的%appName%。"
                  },
                  "zh-tw" : {
                     "line1" : "不支援",
                     "tts" : "SYNC 不支援此版本的%appName% 。"
                  }
               }
            },
            "DataConsent" : {
               "languages" : {
                  "en-us" : {
                     "line1" : "Enable Mobile Apps",
                     "line2" : "on SYNC? (Uses Data)",
                     "tts" : "To use mobile apps with SYNC, SYNC will communicate with Ford at least once per month using your mobile device's data plan. Standard rates may apply. SYNC will send your VIN and SYNC module number to Ford U.S. Please press yes or no, or help for more information. "
                  }
               }
            },
            "DataConsentHelp" : {
               "languages" : {
                  "en-us" : {
                     "tts" : "Updates are about the size of an email, and the occurrence of updates depends on your vehicle usage and when a new app is found on your device. To turn on or off, visit the SYNC mobile apps settings menu. See your Owner Guide for more information. "
                  }
               }
            },
            "DisableApps" : {
               "languages" : {
                  "de-de" : {
                     "line1" : "Auto-Update",
                     "line2" : "und Mobile Apps deaktivieren",
                     "tts" : "Ausschalten der automatischen Updates führt zum Ausschalten von SYNC mobile Apps. Sie können Ihre mobilen Apps dann nicht mehr mit SYNC nutzen. Bitte drücken Sie Ja zur Bestätigung oder Nein, um abzubrechen."
                  },
                  "en-au" : {
                     "line1" : "Disable auto-updates",
                     "line2" : "and Mobile Apps?",
                     "tts" : "Disabling automatic updates will also disable SYNC mobile apps. You will not be able to use any mobile apps with SYNC. Please press Yes to confirm or No to cancel."
                  },
                  "en-gb" : {
                     "line1" : "Disable auto-updates",
                     "line2" : "and Mobile Apps?",
                     "tts" : "Disabling automatic updates will also disable SYNC mobile apps. You will not be able to use any mobile apps with SYNC. Please press Yes to confirm or No to cancel."
                  },
                  "en-us" : {
                     "line1" : "Disable Auto-Updates",
                     "line2" : "and Mobile Apps?",
                     "tts" : "Disabling automatic updates will also disable sync mobile apps. You will not be able to use any mobile apps with SYNC. Please press yes to confirm or no to cancel."
                  },
                  "es-es" : {
                     "line1" : "¿Desact. actual. auto",
                     "line2" : "y apl. móviles?",
                     "tts" : "Si desactiva las actualizaciones automáticas, también se desactivará la sincronización de las aplicaciones móviles. No podrá utilizar ninguna aplicación móvil con SYNC. Pulse sí para confirmar o no para cancelar."
                  },
                  "es-mx" : {
                     "line1" : "¿Deshab. actualiz.",
                     "line2" : "autom. y aplic. móv.?",
                     "tts" : "Si se desactivan las actualizaciones automáticas, también se desactivarán las aplicaciones móviles de SYNC. No podrá usar ninguna aplicación móvil con SYNC. Presione Sí para confirmar o No para cancelar."
                  },
                  "fr-ca" : {
                     "line1" : "Désactiver màj autom.",
                     "line2" : "et app. mobiles?",
                     "tts" : "La désactivation des mises à jour automatiques désactivera aussi les applications mobiles SYNC. Vous ne pourrez pas utiliser d’application mobile avec SYNC. Veuillez appuyer sur Oui pour confirmer ou sur Non pour annuler."
                  },
                  "fr-fr" : {
                     "line1" : "Désactiver màj autom.",
                     "line2" : "et app. mobiles?",
                     "tts" : "La désactivation des mises à jour automatiques désactivera aussi les applications mobiles SYNC. Vous ne pourrez pas utiliser d’application mobile avec SYNC. Veuillez appuyer sur Oui pour confirmer ou sur Non pour annuler."
                  },
                  "it-it" : {
                     "line1" : "Disabilitare agg. aut.",
                     "line2" : "e app mobili?",
                     "tts" : "Disabilitando gli aggiornamenti automatici si disattiva anche la sincronizzazione delle app mobili. Non sarà possibile usare app mobili con il SYNC. Premere Sì per confermare e No per cancellare."
                  },
                  "nl-nl" : {
                     "line1" : "Auto-updates en mob.",
                     "line2" : "apps uitschakelen?",
                     "tts" : "Door automatische updates uit te schakelen, schakelt u ook SYNC-mobiele apps uit. U kunt dan geen mobiele apps meer gebruiken met SYNC. Druk op Ja om te bevestigen of op Nee om te annuleren."
                  },
                  "pl-pl" : {
                     "line1" : "Wył. automat. aktual.",
                     "line2" : "i aplikacje mobilne?",
                     "tts" : "Wyłączenie automatycznych aktualizacji spowoduje także wyłączenie aplikacji mobilnych SYNC. Korzystanie z mobilnych aplikacji za pomocą SYNC będzie niemożliwe. Naciśnij TAK, by potwierdzić lub NIE, by anulować."
                  },
                  "pt-br" : {
                     "line1" : "Desativar atualizações",
                     "line2" : "autom. e aplicativos?",
                     "tts" : "Se as atualizações automáticas forem desativadas, os aplicativos também serão desativados. Você não poderá usar nenhum aplicativo com o SYNC. Pressione sim para confirmar ou não para cancelar."
                  },
                  "pt-pt" : {
                     "line1" : "Desact. actual. autom.",
                     "line2" : "e aplicações móveis?",
                     "tts" : "A desactivação das actualizações automáticas desactiva igualmente as aplicações móveis do SYNC. Não poderá utilizar quaisquer aplicações móveis com o SYNC. Prima \"\"Sim\"\" para confirmar ou \"\"Não\"\" para cancelar."
                  },
                  "ru-ru" : {
                     "line1" : "Откл. автообновления",
                     "line2" : "и мобил. прилож.?",
                     "tts" : "При отключении автоматических обновлений также будут отключены мобильные приложения sync. Вы не сможете использовать какие-либо мобильные приложения с SYNC. Нажмите \"\"Да\"\" для подтверждения или \"\"Нет\"\" для отмены."
                  },
                  "sv-se" : {
                     "line1" : "Avaktiverar autouppdat.",
                     "line2" : "och mobilappar?",
                     "tts" : "Om du avaktiverar automatisk uppdatering avaktiverar du även synkning av mobilappar. Du kommer inte längre att kunna använda dina mobilappar med SYNC. Tryck Ja för att bekräfta eller Nej för att avbryta."
                  },
                  "tr-tr" : {
                     "line1" : "Oto. güncelleme ve",
                     "line2" : "mobil uygul. kapat?",
                     "tts" : "Otomatik güncellemeleri devre dışı bırakırsanız sync mobil uygulamalar da devre dışı kalır. SYNC ile mobil uygulama kullanmanız mümkün olmaz. Lütfen onaylamak için Evet'e veya iptal etmek için Hayır'a basın."
                  },
                  "zh-cn" : {
                     "line1" : "是否禁用自动更新和",
                     "line2" : "移动应用程序?",
                     "tts" : "禁用自动更新同时也会禁用SYNC移动应用程序。您将无法在 SYNC 中使用任何移动应用程序。请按“是”确认或按“否”取消。"
                  },
                  "zh-tw" : {
                     "line1" : "停用自動更新",
                     "line2" : "和行動應用程式?",
                     "tts" : "停用自動更新也將停用 sync 行動應用程式。您將無法透過 SYNC 使用任何行動應用程式。確認請按「是」,取消請按「否」。"
                  }
               }
            },
            "DrivingCharacteristics" : {
               "languages" : {
                  "de-de" : {
                     "label" : "Fahreigenschaften",
                     "tts" : "Eine App hat Zugriff auf die folgenden Fahreigenschaften: Kraftstoffverbrauch, MyKey, Sicherheitsgurtstatus."
                  },
                  "en-au" : {
                     "label" : "Driving characteristics",
                     "tts" : "An app can access the following driving characteristics: Fuel consumption, MyKey, Seat belt status."
                  },
                  "en-gb" : {
                     "label" : "Driving characteristics",
                     "tts" : "An app can access the following driving characteristics: Fuel consumption, MyKey, Seat belt status."
                  },
                  "en-us" : {
                     "label" : "Driving Characteristics",
                     "tts" : "An app can access the following driving characteristics: Fuel Consumption, MyKey, Seat Belt Status."
                  },
                  "es-es" : {
                     "label" : "Características de conducción",
                     "tts" : "Una aplicación puede acceder a las siguientes características de conducción: Consumo de combustible, MyKey, Estado cinturones de seguridad."
                  },
                  "es-mx" : {
                     "label" : "Características del manejo",
                     "tts" : "Las aplicaciones pueden acceder a las siguientes características del manejo: Consumo de combustible, MyKey, Estado del cinturón de seguridad."
                  },
                  "fr-ca" : {
                     "label" : "Caractéristiques de conduite",
                     "tts" : "Une application peut accéder aux caractéristiques de conduite suivantes: Consommation de carburant, MyKey, État des ceintures de sécurité."
                  },
                  "fr-fr" : {
                     "label" : "Caractéristiques de conduite",
                     "tts" : "Une application peut accéder aux caractéristiques de conduite suivantes: Consommation de carburant, MyKey, État des ceintures de sécurité."
                  },
                  "it-it" : {
                     "label" : "Caratteristiche di guida",
                     "tts" : "Un'app può avere accesso alle seguenti caratteristiche di guida: Consumo carburante, MyKey, Stato cinture di sicurezza."
                  },
                  "nl-nl" : {
                     "label" : "Rijkenmerken",
                     "tts" : "Een app heeft toegang tot de volgende rijkenmerken: Brandstofverbruik, MyKey, Veiligheidsgordelstatus."
                  },
                  "pl-pl" : {
                     "label" : "Informacje dotyczące stylu jazdy",
                     "tts" : "Aplikacja może uzyskać dostęp do następujących informacji dotyczących jazdy: Zużycie paliwa, MyKey, Stan pasów bezpieczeństwa."
                  },
                  "pt-br" : {
                     "label" : "Características de condução",
                     "tts" : "Um aplicativo pode acessar as seguintes características de condução: Consumo de combustível, MyKey, Estado do cinto de segurança."
                  },
                  "pt-pt" : {
                     "label" : "Características de condução",
                     "tts" : "Uma aplicação consegue aceder às seguintes informações de condução: Consumo de combustível, MyKey, Estado dos cintos de segurança."
                  },
                  "ru-ru" : {
                     "label" : "Характеристики движения",
                     "tts" : "Приложение имеет доступ к следующим характеристикам движения: Расход топлива, MyKey, Состояние ремней безопасности."
                  },
                  "sv-se" : {
                     "label" : "Köregenskaper",
                     "tts" : "Appen kan komma åt följande köregenskaper: Bränsleförbrukning, MyKey, Bältesstatus."
                  },
                  "tr-tr" : {
                     "label" : "Sürüş karakteristikleri",
                     "tts" : "Bir uygulama şu sürüş karakteristiklerine erişebilir: Yakıt tüketimi, MyKey, Emniyet kemeri durumu."
                  },
                  "zh-cn" : {
                     "label" : "行驶特性",
                     "tts" : "移动应用程序可访问下列行驶特性: 油耗, MyKey, 安全带状态"
                  },
                  "zh-tw" : {
                     "label" : "駕駛特性",
                     "tts" : "應用程式可存取以下駕駛特性: 油耗, MyKey, 安全帶狀態"
                  }
               }
            },
            "Location" : {
               "languages" : {
                  "de-de" : {
                     "label" : "GPS und Geschwindigkeit",
                     "tts" : "Eine App hat Zugriff auf die GPS-Daten und die Geschwindigkeit des Fahrzeugs."
                  },
                  "en-au" : {
                     "label" : "GPS and speed",
                     "tts" : "An app can access vehicle GPS and speed."
                  },
                  "en-gb" : {
                     "label" : "GPS and speed",
                     "tts" : "An app can access vehicle GPS and speed."
                  },
                  "en-us" : {
                     "label" : "GPS and speed",
                     "tts" : "An app can access vehicle GPS and speed."
                  },
                  "es-es" : {
                     "label" : "GPS y velocidad",
                     "tts" : "Una aplicación puede acceder al GPS y la velocidad del vehículo."
                  },
                  "es-mx" : {
                     "label" : "GPS y velocidad",
                     "tts" : "Las aplicaciones pueden acceder al GPS y a la velocidad del vehículo."
                  },
                  "fr-ca" : {
                     "label" : "GPS et vitesse",
                     "tts" : "Une application peut accéder au GPS et à la vitesse du véhicule."
                  },
                  "fr-fr" : {
                     "label" : "GPS et vitesse",
                     "tts" : "Une application peut accéder au GPS et à la vitesse du véhicule."
                  },
                  "it-it" : {
                     "label" : "GPS e velocità",
                     "tts" : "Un'app può avere accesso a GPS e velocità del veicolo."
                  },
                  "nl-nl" : {
                     "label" : "Gps en snelheid",
                     "tts" : "Een app heeft toegang tot gps en de snelheid van het voertuig."
                  },
                  "pl-pl" : {
                     "label" : "GPS i prędkość",
                     "tts" : "Aplikacja może uzyskać dostęp do modułu GPS i prędkości pojazdu."
                  },
                  "pt-br" : {
                     "label" : "GPS e velocidade",
                     "tts" : "Um aplicativo pode acessar o GPS e a velocidade do veículo."
                  },
                  "pt-pt" : {
                     "label" : "GPS e velocidade",
                     "tts" : "Uma aplicação consegue aceder ao GPS e à velocidade do veículo."
                  },
                  "ru-ru" : {
                     "label" : "GPS и скорость",
                     "tts" : "Приложение имеет доступ к GPS и скорости автомобиля."
                  },
                  "sv-se" : {
                     "label" : "GPS och hastighet",
                     "tts" : "Appen kan komma åt fordonets GPS och hastighetsmätare."
                  },
                  "tr-tr" : {
                     "label" : "GPS ve hız",
                     "tts" : "Bu uygulama aracın GPS ve hız bilgilerine erişebilir."
                  },
                  "zh-cn" : {
                     "label" : "GPS 和车速",
                     "tts" : "移动应用程序可以访问车辆 GPS 和车速信息。"
                  },
                  "zh-tw" : {
                     "label" : "GPS和車速",
                     "tts" : "應用程式可存取車輛的GPS和速度。"
                  }
               }
            },
            "Notifications" : {
               "languages" : {
                  "de-de" : {
                     "label" : "Push-Benachrichtigungen",
                     "tts" : "Läuft die App im Hintergrund, kann Sie Benachrichtigungen senden."
                  },
                  "en-au" : {
                     "label" : "Push notifications",
                     "tts" : "An app can send notifications when running in the background."
                  },
                  "en-gb" : {
                     "label" : "Push notifications",
                     "tts" : "An app can send notifications when running in the background."
                  },
                  "en-us" : {
                     "label" : "Push notifications",
                     "tts" : "An app can send notifications when running in the background."
                  },
                  "es-es" : {
                     "label" : "Notificaciones push",
                     "tts" : "Una aplicación puede enviar notificaciones cuando se está ejecutando en segundo plano."
                  },
                  "es-mx" : {
                     "label" : "Notificaciones tipo Push",
                     "tts" : "Las aplicaciones pueden enviar notificaciones cuando se ejecutan en segundo plano."
                  },
                  "fr-ca" : {
                     "label" : "Notifications instantanées",
                     "tts" : "Une application peut envoyer des avis lorsqu’elle fonctionne en arrière-plan."
                  },
                  "fr-fr" : {
                     "label" : "Notifications push",
                     "tts" : "Une application peut envoyer des avis lorsqu’elle fonctionne en arrière-plan."
                  },
                  "it-it" : {
                     "label" : "Notifiche push",
                     "tts" : "Un'app può inviare notifiche se eseguita in background."
                  },
                  "nl-nl" : {
                     "label" : "Push-meldingen",
                     "tts" : "Een app kan meldingen versturen als deze op de achtergrond actief is."
                  },
                  "pl-pl" : {
                     "label" : "Powiadomienia Push",
                     "tts" : "Aplikacja może wysyłać powiadomienia, działając w tle."
                  },
                  "pt-br" : {
                     "label" : "Notificações Push",
                     "tts" : "Um aplicativo pode enviar notificações quando estiver sendo executado em segundo plano."
                  },
                  "pt-pt" : {
                     "label" : "Notificações push",
                     "tts" : "Uma aplicação consegue enviar notificações quando está activa em segundo plano."
                  },
                  "ru-ru" : {
                     "label" : "Оповещения о пересылке",
                     "tts" : "Если приложение работает в фоновом режиме, оно может отправлять оповещения."
                  },
                  "sv-se" : {
                     "label" : "Push-notiser",
                     "tts" : "Appen kan skicka meddelanden när den körs i bakgrunden."
                  },
                  "tr-tr" : {
                     "label" : "Anlık bildirimleri",
                     "tts" : "Bir uygulama arka planda çalışırken bildirim gönderebilir."
                  },
                  "zh-cn" : {
                     "label" : "推送通知",
                     "tts" : "移动应用程序在后台运行时可推送通知。"
                  },
                  "zh-tw" : {
                     "label" : "傳送通知",
                     "tts" : "車輛行進時,應用程式可在背景中傳送通知。"
                  }
               }
            },
            "SettingDisableUpdates" : {
               "languages" : {
                  "de-de" : {
                     "line1" : "Updates deakt."
                  },
                  "en-au" : {
                     "line1" : "Disable updates"
                  },
                  "en-gb" : {
                     "line1" : "Disable updates"
                  },
                  "en-us" : {
                     "line1" : "Disable Updates"
                  },
                  "es-es" : {
                     "line1" : "Desact. actual."
                  },
                  "es-mx" : {
                     "line1" : "Deshab. actual."
                  },
                  "fr-ca" : {
                     "line1" : "Désactiver MAJ"
                  },
                  "fr-fr" : {
                     "line1" : "Désactiver màj"
                  },
                  "it-it" : {
                     "line1" : "Disabilita agg."
                  },
                  "nl-nl" : {
                     "line1" : "Upd. uitschak."
                  },
                  "pl-pl" : {
                     "line1" : "Wyłącz aktual."
                  },
                  "pt-br" : {
                     "line1" : "Desat. atualiz."
                  },
                  "pt-pt" : {
                     "line1" : "Desact. actualiz."
                  },
                  "ru-ru" : {
                     "line1" : "Откл. обновл."
                  },
                  "sv-se" : {
                     "line1" : "Inaktivera uppd."
                  },
                  "tr-tr" : {
                     "line1" : "Güncell. Kapat"
                  },
                  "zh-cn" : {
                     "line1" : "禁用更新"
                  },
                  "zh-tw" : {
                     "line1" : "停用更新"
                  }
               }
            },
            "SettingEnableUpdates" : {
               "languages" : {
                  "de-de" : {
                     "line1" : "Apps aktivieren"
                  },
                  "en-au" : {
                     "line1" : "Enable Apps"
                  },
                  "en-gb" : {
                     "line1" : "Enable Apps"
                  },
                  "en-us" : {
                     "line1" : "Enable Apps"
                  },
                  "es-es" : {
                     "line1" : "Activar apl."
                  },
                  "es-mx" : {
                     "line1" : "Hab. aplic."
                  },
                  "fr-ca" : {
                     "line1" : "Activer app."
                  },
                  "fr-fr" : {
                     "line1" : "Activer app."
                  },
                  "it-it" : {
                     "line1" : "Abilita app"
                  },
                  "nl-nl" : {
                     "line1" : "Apps inschak."
                  },
                  "pl-pl" : {
                     "line1" : "Włącz aplikacje"
                  },
                  "pt-br" : {
                     "line1" : "Ativar aplic."
                  },
                  "pt-pt" : {
                     "line1" : "Activar actualiz."
                  },
                  "ru-ru" : {
                     "line1" : "Вкл. прилож."
                  },
                  "sv-se" : {
                     "line1" : "Aktivera appar"
                  },
                  "tr-tr" : {
                     "line1" : "Uygulamaları aç"
                  },
                  "zh-cn" : {
                     "line1" : "启用应用程序"
                  },
                  "zh-tw" : {
                     "line1" : "啟用應用程式"
                  }
               }
            },
            "SettingUpdateAuto" : {
               "languages" : {
                  "de-de" : {
                     "line1" : "Update anford."
                  },
                  "en-au" : {
                     "line1" : "Request update"
                  },
                  "en-gb" : {
                     "line1" : "Request update"
                  },
                  "en-us" : {
                     "line1" : "Request Update"
                  },
                  "es-es" : {
                     "line1" : "Solicitar actual."
                  },
                  "es-mx" : {
                     "line1" : "Solicit. actualiz."
                  },
                  "fr-ca" : {
                     "line1" : "Demander MAJ"
                  },
                  "fr-fr" : {
                     "line1" : "Demander màj"
                  },
                  "it-it" : {
                     "line1" : "Rich. aggiorn."
                  },
                  "nl-nl" : {
                     "line1" : "Upd. aanvragen"
                  },
                  "pl-pl" : {
                     "line1" : "Zażądaj aktual."
                  },
                  "pt-br" : {
                     "line1" : "Solicitar atualiz."
                  },
                  "pt-pt" : {
                     "line1" : "Solicit. actualiz."
                  },
                  "ru-ru" : {
                     "line1" : "Запрос на обн."
                  },
                  "sv-se" : {
                     "line1" : "Begär uppdat."
                  },
                  "tr-tr" : {
                     "line1" : "Güncelleme iste"
                  },
                  "zh-cn" : {
                     "line1" : "请求更新"
                  },
                  "zh-tw" : {
                     "line1" : "請求更新"
                  }
               }
            },
            "StatusNeeded" : {
               "languages" : {
                  "de-de" : {
                     "line1" : "Update benötigt"
                  },
                  "en-au" : {
                     "line1" : "Update needed"
                  },
                  "en-gb" : {
                     "line1" : "Update needed"
                  },
                  "en-us" : {
                     "line1" : "Update Needed"
                  },
                  "es-es" : {
                     "line1" : "Actu. necesaria"
                  },
                  "es-mx" : {
                     "line1" : "Actualiz. neces."
                  },
                  "fr-ca" : {
                     "line1" : "Màj requise"
                  },
                  "fr-fr" : {
                     "line1" : "Mise à jour requise"
                  },
                  "it-it" : {
                     "line1" : "Necess. aggiorn."
                  },
                  "nl-nl" : {
                     "line1" : "Update nodig"
                  },
                  "pl-pl" : {
                     "line1" : "Potrzeba aktual."
                  },
                  "pt-br" : {
                     "line1" : "Atualiz. necess."
                  },
                  "pt-pt" : {
                     "line1" : "Actual. necess."
                  },
                  "ru-ru" : {
                     "line1" : "Необх. обновл."
                  },
                  "sv-se" : {
                     "line1" : "Uppdat. krävs"
                  },
                  "tr-tr" : {
                     "line1" : "Güncellenmeli"
                  },
                  "zh-cn" : {
                     "line1" : "需要进行更新"
                  },
                  "zh-tw" : {
                     "line1" : "需更新"
                  }
               }
            },
            "StatusPending" : {
               "languages" : {
                  "de-de" : {
                     "line1" : "Aktualisieren..."
                  },
                  "en-au" : {
                     "line1" : "Updating..."
                  },
                  "en-gb" : {
                     "line1" : "Updating..."
                  },
                  "en-us" : {
                     "line1" : "Updating..."
                  },
                  "es-es" : {
                     "line1" : "Actualizando..."
                  },
                  "es-mx" : {
                     "line1" : "Actualizando..."
                  },
                  "fr-ca" : {
                     "line1" : "MAJ en cours..."
                  },
                  "fr-fr" : {
                     "line1" : "Màj en cours..."
                  },
                  "it-it" : {
                     "line1" : "Aggiornamento"
                  },
                  "nl-nl" : {
                     "line1" : "Updaten..."
                  },
                  "pl-pl" : {
                     "line1" : "Aktualizowanie"
                  },
                  "pt-br" : {
                     "line1" : "Atualizando..."
                  },
                  "pt-pt" : {
                     "line1" : "A actualizar..."
                  },
                  "ru-ru" : {
                     "line1" : "Обновление..."
                  },
                  "sv-se" : {
                     "line1" : "Uppdaterar..."
                  },
                  "tr-tr" : {
                     "line1" : "Güncelleniyor..."
                  },
                  "zh-cn" : {
                     "line1" : "正在更新......"
                  },
                  "zh-tw" : {
                     "line1" : "更新中..."
                  }
               }
            },
            "StatusUpToDate" : {
               "languages" : {
                  "de-de" : {
                     "line1" : "Aktuelle Version"
                  },
                  "en-au" : {
                     "line1" : "Up-to-date"
                  },
                  "en-gb" : {
                     "line1" : "Up-to-date"
                  },
                  "en-us" : {
                     "line1" : "Up-To-Date"
                  },
                  "es-es" : {
                     "line1" : "Actualizada"
                  },
                  "es-mx" : {
                     "line1" : "Actualizado"
                  },
                  "fr-ca" : {
                     "line1" : "Déjà à jour"
                  },
                  "fr-fr" : {
                     "line1" : "Déjà à jour"
                  },
                  "it-it" : {
                     "line1" : "più recente"
                  },
                  "nl-nl" : {
                     "line1" : "Up-to-date"
                  },
                  "pl-pl" : {
                     "line1" : "Aktualne"
                  },
                  "pt-br" : {
                     "line1" : "Atualizado"
                  },
                  "pt-pt" : {
                     "line1" : "Actualizado"
                  },
                  "ru-ru" : {
                     "line1" : "Обновлено"
                  },
                  "sv-se" : {
                     "line1" : "Uppdat. krävs ej"
                  },
                  "tr-tr" : {
                     "line1" : "Güncel"
                  },
                  "zh-cn" : {
                     "line1" : "最新更新"
                  },
                  "zh-tw" : {
                     "line1" : "更新最新"
                  }
               }
            },
            "VehicleInfo" : {
               "languages" : {
                  "de-de" : {
                     "label" : "Fahrzeuginformationen",
                     "tts" : "Eine App hat Zugriff auf die folgenden Fahrzeuginformationen: Kraftstoff-Füllstand, Kraftstoffverbrauch, Motordrehzahl, Kilometerzähler, FIN, Außentemperatur, Gangstellung, Reifenluftdruck."
                  },
                  "en-au" : {
                     "label" : "Vehicle information",
                     "tts" : "An app can access the following vehicle information: Fuel level, Fuel economy, Engine RPMs, Odometer, VIN, Outside air temperature, Gear position, Tyre pressure."
                  },
                  "en-gb" : {
                     "label" : "Vehicle information",
                     "tts" : "An app can access the following vehicle information: Fuel level, Fuel economy, Engine RPMs, Odometer, VIN, Outside air temperature, Gear position, Tyre pressure."
                  },
                  "en-us" : {
                     "label" : "Vehicle information",
                     "tts" : "An app can access the following vehicle information: Fuel Level, Fuel Economy, Engine RPMs, Odometer, VIN, External Temperature, Gear Position, Tire Pressure."
                  },
                  "es-es" : {
                     "label" : "Información del vehículo",
                     "tts" : "Una aplicación puede acceder a la siguiente información del vehículo: Nivel de combustible, Ahorro de combustible, RPM del motor, Cuentakilómetros, VIN, Temperatura aire exterior, Marcha engranada, Presión de neumáticos."
                  },
                  "es-mx" : {
                     "label" : "Información del vehículo",
                     "tts" : "Las aplicaciones pueden acceder a la siguiente información del vehículo: Nivel de combustible, Economía de combustible, RPM del motor, Cuentakilómetros, Número de identificación del vehículo, Temperatura externa, Posición del cambio, Presión de los neumáticos."
                  },
                  "fr-ca" : {
                     "label" : "Renseignements du véhicule",
                     "tts" : "Une application peut accéder aux informations suivantes du véhicule: Niveau de carburant, Économie de carburant, Au régime du moteur, Odomètre, NIV, Température extérieure, Position d’embrayage, Pression des pneus."
                  },
                  "fr-fr" : {
                     "label" : "Renseignements du véhicule",
                     "tts" : "Une application peut accéder aux informations suivantes du véhicule: Niveau de carburant, Économie de carburant, Vitesse de moteur, Compteur kilométrique, NIV, Température extérieure, Position de vitesse, Pression des pneus."
                  },
                  "it-it" : {
                     "label" : "Informazioni sul veicolo",
                     "tts" : "Un'app può avere accesso alle seguenti informazioni del veicolo: Livello carburante, Consumi carburante, Numero giri motore, Contachilometri, VIN, Temperatura esterna, Posizione marcia, Pressione pneumatici."
                  },
                  "nl-nl" : {
                     "label" : "Voertuiginformatie",
                     "tts" : "Een app heeft toegang tot de volgende voertuiginformatie: Brandstofpeil, Brandstofverbruik, Motortoerental, Kilometerteller, VIN, Buitentemperatuur, Versnellingsstand, Bandenspanning."
                  },
                  "pl-pl" : {
                     "label" : "Informacje o pojeździe",
                     "tts" : "Aplikacja może uzyskać dostęp do następujących informacji o pojeździe: Poziom paliwa, Zużycie paliwa, Obroty silnika, Licznik przebiegu, Numer VIN, Temperatura zewnętrzna, Aktualny bieg, Ciśnienie opon."
                  },
                  "pt-br" : {
                     "label" : "Informações sobre o veículo",
                     "tts" : "Um aplicativo pode acessar as seguintes informações sobre o veículo: Nível de combustível, Economia de combustível, RPM do motor, Hodômetro, VIN, Temperatura externa, Posição das marchas, Pressão dos pneus."
                  },
                  "pt-pt" : {
                     "label" : "Informações do veículo",
                     "tts" : "Uma aplicação consegue aceder às seguintes informações do veículo: Nível de combustível, Poupança de combustível, RPM do motor, Conta-quilómetros, VIN, Temperatura exterior, Posição da mudança de velocidade, Pressão dos pneus."
                  },
                  "ru-ru" : {
                     "label" : "Информация об автомобиле",
                     "tts" : "Приложение имеет доступ к следующим данным автомобиля: Уровень топлива, Економия топлива, Число оборотов двигателя, Одометр, Номер VIN, Температура за бортом, Положение передачи, Давление шин."
                  },
                  "sv-se" : {
                     "label" : "Fordonsinformation",
                     "tts" : "Appen kan komma åt följande fordonsinformation: Bränslenivå, Bränsleekonomi, Motorns varvtal, Vägmätare, VIN, Utetemperatur, Växelläge, Däcktryck."
                  },
                  "tr-tr" : {
                     "label" : "Araç bilgisi",
                     "tts" : "Bir uygulama şu araç bilgilerine erişebilir: Yakıt seviyesi, Yakıt ekonomisi, Motor devirleri, Kilometre sayacı, VIN, Dış sıcaklık, Vites konumu, Lastik basıncı."
                  },
                  "zh-cn" : {
                     "label" : "车辆信息",
                     "tts" : "移动应用程序可访问下列车辆信息 : 燃油量, 燃油经济性, 发动机转速(RPM), 里程表, VIN, 车外温度, 档位, 胎压."
                  },
                  "zh-tw" : {
                     "label" : "車輛資訊",
                     "tts" : "一個應用程式可存取以下車輛資訊 : 燃油存量, 燃油經濟性, 引擎轉速, 里程表, 車輛識別號碼, 車外溫度, 檔位, 胎壓."
                  }
               }
            }
         },
         "version" : "001.001.015"
      },
      "functional_groupings" : {
         "Base-4" : {
            "rpcs" : {
               "AddCommand" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ]
               },
               "AddSubMenu" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ]
               },
               "Alert" : {
                  "hmi_levels" : [ "FULL", "LIMITED" ]
               },
               "ChangeRegistration" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED", "NONE" ]
               },
               "CreateInteractionChoiceSet" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ]
               },
               "DeleteCommand" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ]
               },
               "DeleteFile" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED", "NONE" ]
               },
               "DeleteInteractionChoiceSet" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ]
               },
               "DeleteSubMenu" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ]
               },
               "EncodedSyncPData" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED", "NONE" ]
               },
               "EndAudioPassThru" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ]
               },
               "GenericResponse" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ]
               },
               "ListFiles" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED", "NONE" ]
               },
               "OnAppInterfaceUnregistered" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED", "NONE" ]
               },
               "OnAudioPassThru" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ]
               },
               "OnButtonEvent" : {
                  "hmi_levels" : [ "FULL", "LIMITED" ]
               },
               "OnButtonPress" : {
                  "hmi_levels" : [ "FULL", "LIMITED" ]
               },
               "OnCommand" : {
                  "hmi_levels" : [ "FULL", "LIMITED" ]
               },
               "OnDriverDistraction" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ]
               },
               "OnEncodedSyncPData" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED", "NONE" ]
               },
               "OnHMIStatus" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED", "NONE" ]
               },
               "OnLanguageChange" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED", "NONE" ]
               },
               "OnPermissionsChange" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED", "NONE" ]
               },
               "OnSyncPData" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED", "NONE" ]
               },
               "OnTBTClientState" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ]
               },
               "PerformAudioPassThru" : {
                  "hmi_levels" : [ "FULL", "LIMITED" ]
               },
               "PerformInteraction" : {
                  "hmi_levels" : [ "FULL", "LIMITED" ]
               },
               "PutFile" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED", "NONE" ]
               },
               "RegisterAppInterface" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED", "NONE" ]
               },
               "ResetGlobalProperties" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ]
               },
               "ScrollableMessage" : {
                  "hmi_levels" : [ "FULL" ]
               },
               "SetAppIcon" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED", "NONE" ]
               },
               "SetDisplayLayout" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED", "NONE" ]
               },
               "SetGlobalProperties" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ]
               },
               "SetMediaClockTimer" : {
                  "hmi_levels" : [ "FULL", "LIMITED" ]
               },
               "Show" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ]
               },
               "Slider" : {
                  "hmi_levels" : [ "FULL" ]
               },
               "Speak" : {
                  "hmi_levels" : [ "FULL", "LIMITED" ]
               },
               "SubscribeButton" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ]
               },
               "SyncPData" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED", "NONE" ]
               },
               "UnregisterAppInterface" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED", "NONE" ]
               },
               "UnsubscribeButton" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ]
               }
            }
         },
         "DrivingCharacteristics-3" : {
            "rpcs" : {
               "GetVehicleData" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ],
                  "parameters" : [
                     "accPedalPosition",
                     "beltStatus",
                     "electronicParkBrakeStatus",
                     "driverBraking",
                     "myKey",
                     "prndl",
                     "rpm",
                     "steeringWheelAngle"
                  ]
               },
               "OnVehicleData" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ],
                  "parameters" : [
                     "accPedalPosition",
                     "beltStatus",
                     "electronicParkBrakeStatus",
                     "driverBraking",
                     "myKey",
                     "prndl",
                     "rpm",
                     "steeringWheelAngle"
                  ]
               },
               "SubscribeVehicleData" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ],
                  "parameters" : [
                     "accPedalPosition",
                     "beltStatus",
                     "electronicParkBrakeStatus",
                     "driverBraking",
                     "myKey",
                     "prndl",
                     "rpm",
                     "steeringWheelAngle"
                  ]
               },
               "UnsubscribeVehicleData" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ],
                  "parameters" : [
                     "accPedalPosition",
                     "beltStatus",
                     "electronicParkBrakeStatus",
                     "driverBraking",
                     "myKey",
                     "prndl",
                     "rpm",
                     "steeringWheelAngle"
                  ]
               }
            },
            "user_consent_prompt" : "DrivingCharacteristics"
         },
         "Emergency-1" : {
            "rpcs" : {
               "GetVehicleData" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ],
                  "parameters" : [
                     "airbagStatus",
                     "bodyInformation",
                     "clusterModeStatus",
                     "deviceStatus",
                     "eCallInfo",
                     "emergencyEvent"
                  ]
               },
               "OnVehicleData" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ],
                  "parameters" : [
                     "airbagStatus",
                     "bodyInformation",
                     "clusterModeStatus",
                     "deviceStatus",
                     "eCallInfo",
                     "emergencyEvent"
                  ]
               },
               "SubscribeVehicleData" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ],
                  "parameters" : [
                     "airbagStatus",
                     "bodyInformation",
                     "clusterModeStatus",
                     "deviceStatus",
                     "eCallInfo",
                     "emergencyEvent"
                  ]
               },
               "UnsubscribeVehicleData" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ],
                  "parameters" : [
                     "airbagStatus",
                     "bodyInformation",
                     "clusterModeStatus",
                     "deviceStatus",
                     "eCallInfo",
                     "emergencyEvent"
                  ]
               }
            }
         },
         "Location-1" : {
            "rpcs" : {
               "GetVehicleData" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ],
                  "parameters" : [ "gps", "speed" ]
               },
               "OnVehicleData" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ],
                  "parameters" : [ "gps", "speed" ]
               },
               "SubscribeVehicleData" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ],
                  "parameters" : [ "gps", "speed" ]
               },
               "UnsubscribeVehicleData" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ],
                  "parameters" : [ "gps", "speed" ]
               }
            },
            "user_consent_prompt" : "Location"
         },
         "Navigation-1" : {
            "rpcs" : {
               "AlertManeuver" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ]
               },
               "ShowConstantTBT" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ]
               },
               "UpdateTurnList" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ]
               }
            }
         },
         "Notifications" : {
            "rpcs" : {
               "Alert" : {
                  "hmi_levels" : [ "BACKGROUND" ]
               }
            },
            "user_consent_prompt" : "Notifications"
         },
         "PropriataryData-1" : {
            "rpcs" : {
               "DiagnosticMessage" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ]
               },
               "GetDTCs" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ]
               },
               "ReadDID" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ]
               }
            }
         },
         "VehicleInfo-3" : {
            "rpcs" : {
               "GetVehicleData" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ],
                  "parameters" : [
                     "engineOilLife",
                     "engineTorque",
                     "externalTemperature",
                     "turnSignal",
                     "fuelLevel",
                     "fuelLevel_State",
                     "headLampStatus",
                     "instantFuelConsumption",
                     "fuelRange",
                     "cloudAppVehicleID",
                     "odometer",
                     "tirePressure",
                     "vin",
                     "wiperStatus",
                     "stabilityControlsStatus"
                  ]
               },
               "OnVehicleData" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ],
                  "parameters" : [
                     "engineOilLife",
                     "engineTorque",
                     "externalTemperature",
                     "turnSignal",
                     "fuelLevel",
                     "fuelLevel_State",
                     "headLampStatus",
                     "instantFuelConsumption",
                     "fuelRange",
                     "cloudAppVehicleID",
                     "odometer",
                     "tirePressure",
                     "vin",
                     "wiperStatus",
                     "stabilityControlsStatus"
                  ]
               },
               "SubscribeVehicleData" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ],
                  "parameters" : [
                     "engineOilLife",
                     "engineTorque",
                     "externalTemperature",
                     "turnSignal",
                     "fuelLevel",
                     "fuelLevel_State",
                     "headLampStatus",
                     "instantFuelConsumption",
                     "fuelRange",
                     "cloudAppVehicleID",
                     "odometer",
                     "tirePressure",
                     "wiperStatus",
                     "stabilityControlsStatus"
                  ]
               },
               "UnsubscribeVehicleData" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ],
                  "parameters" : [
                     "engineOilLife",
                     "engineTorque",
                     "externalTemperature",
                     "turnSignal",
                     "fuelLevel",
                     "fuelLevel_State",
                     "headLampStatus",
                     "instantFuelConsumption",
                     "fuelRange",
                     "cloudAppVehicleID",
                     "odometer",
                     "tirePressure",
                     "wiperStatus",
                     "stabilityControlsStatus"
                  ]
               }
            },
            "user_consent_prompt" : "VehicleInfo"
         },
         "pre_Base-1" : {
            "rpcs" : {
               "ChangeRegistration" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED", "NONE" ]
               },
               "DeleteFile" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED", "NONE" ]
               },
               "GenericResponse" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ]
               },
               "ListFiles" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED", "NONE" ]
               },
               "OnAppInterfaceUnregistered" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED", "NONE" ]
               },
               "OnLanguageChange" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED", "NONE" ]
               },
               "OnPermissionsChange" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED", "NONE" ]
               },
               "PutFile" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED", "NONE" ]
               },
               "RegisterAppInterface" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED", "NONE" ]
               },
               "ResetGlobalProperties" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ]
               },
               "SetAppIcon" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED", "NONE" ]
               },
               "SetDisplayLayout" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED", "NONE" ]
               },
               "SetGlobalProperties" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED" ]
               },
               "UnregisterAppInterface" : {
                  "hmi_levels" : [ "BACKGROUND", "FULL", "LIMITED", "NONE" ]
               }
            }
         }
      },
      "module_config" : {
         "endpoints" : {
            "0x07" : {
               "default" : [ "http://x.x.x.x:3000/api/1/policies" ]
            }
         },
         "exchange_after_x_days" : 30,
         "exchange_after_x_ignition_cycles" : 100,
         "exchange_after_x_kilometers" : 1800,
         "notifications_per_minute_by_priority" : {
            "COMMUNICATION" : 6,
            "EMERGENCY" : 60,
            "NAVIGATION" : 15,
            "PROJECTION": 15,
            "NONE" : 0,
            "NORMAL" : 4,
            "VOICECOMM" : 10
         },
         "subtle_notifications_per_minute_by_priority": {
            "COMMUNICATION": 15,
            "EMERGENCY": 60,
            "NAVIGATION": 20,
            "PROJECTION": 20,
            "NONE": 0,
            "NORMAL": 10,
            "VOICECOMM": 30
         },
         "seconds_between_retries" : [ 1, 5, 25, 125, 625 ],
         "timeout_after_x_seconds" : 60,
         "vehicle_make" : "Stark Industries",
         "vehicle_model" : "E-Tron",
         "vehicle_year" : "1992"
      }
   }
}