summaryrefslogtreecommitdiff
path: root/src/components/policy/policy_regular/test/PTU4.json
blob: dad00de53e6ac3a381c3ef4b694cf50735eb3abc (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
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
    {
    "policy_table": {
        "module_config": {
            "preloaded_pt": true,
            "preloaded_date": "2015-12-08",
            "exchange_after_x_ignition_cycles": 100,
            "exchange_after_x_kilometers": 1800,
            "exchange_after_x_days": 30,
            "timeout_after_x_seconds": 60,
            "seconds_between_retries": [1,
            5,
            25,
            125,
            625],
            "endpoints": {
                "0x07": {
                    "default": ["http://x.x.x.x:3000/api/1/policies"]
                }
            },
            "notifications_per_minute_by_priority": {
                "EMERGENCY": 60,
                "NAVIGATION": 15,
                "COMMUNICATION": 6,
                "NORMAL": 4,
                "NONE": 0
            }
        },
        "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": ["BACKGROUND",
                        "FULL",
                        "LIMITED"]
                    },
                    "OnDriverDistraction": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED"]
                    },
                    "OnEncodedSyncPData": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED",
                        "NONE"]
                    },
                    "OnHashChange": {
                        "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"]
                    },
                    "OnSystemRequest": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED",
                        "NONE"]
                    },
                    "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"]
                    },
                    "SystemRequest": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED",
                        "NONE"]
                    },
                    "UnregisterAppInterface": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED",
                        "NONE"]
                    },
                    "UnsubscribeButton": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED"]
                    }
                }
            },
            "Location-1": {
                "user_consent_prompt": "Location",
                "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"]
                    }
                }
            },
            "Notifications": {
                "user_consent_prompt": "Notifications",
                "rpcs": {
                    "Alert": {
                        "hmi_levels": ["BACKGROUND"]
                    }
                }
            },
            "DrivingCharacteristics-3": {
                "user_consent_prompt": "DrivingCharacteristics",
                "rpcs": {
                    "GetVehicleData": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED"],
                        "parameters": ["accPedalPosition",
                        "beltStatus",
                        "driverBraking",
                        "myKey",
                        "prndl",
                        "rpm",
                        "steeringWheelAngle"]
                    },
                    "OnVehicleData": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED"],
                        "parameters": ["accPedalPosition",
                        "beltStatus",
                        "driverBraking",
                        "myKey",
                        "prndl",
                        "rpm",
                        "steeringWheelAngle"]
                    },
                    "SubscribeVehicleData": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED"],
                        "parameters": ["accPedalPosition",
                        "beltStatus",
                        "driverBraking",
                        "myKey",
                        "prndl",
                        "rpm",
                        "steeringWheelAngle"]
                    },
                    "UnsubscribeVehicleData": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED"],
                        "parameters": ["accPedalPosition",
                        "beltStatus",
                        "driverBraking",
                        "myKey",
                        "prndl",
                        "rpm",
                        "steeringWheelAngle"]
                    }
                }
            },
            "VehicleInfo-3": {
                "user_consent_prompt": "VehicleInfo",
                "rpcs": {
                    "GetVehicleData": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED"],
                        "parameters": ["bodyInformation",
                        "deviceStatus",
                        "engineOilLife",
                        "engineTorque",
                        "externalTemperature",
                        "turnSignal",
                        "fuelLevel",
                        "fuelLevel_State",
                        "headLampStatus",
                        "instantFuelConsumption",
                        "fuelRange",
                        "odometer",
                        "tirePressure",
                        "vin",
                        "wiperStatus"]
                    },
                    "OnVehicleData": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED"],
                        "parameters": ["bodyInformation",
                        "deviceStatus",
                        "engineOilLife",
                        "engineTorque",
                        "externalTemperature",
                        "turnSignal",
                        "fuelLevel",
                        "fuelLevel_State",
                        "headLampStatus",
                        "instantFuelConsumption",
                        "fuelRange",
                        "odometer",
                        "tirePressure",
                        "vin",
                        "wiperStatus"]
                    },
                    "SubscribeVehicleData": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED"],
                        "parameters": ["bodyInformation",
                        "deviceStatus",
                        "engineOilLife",
                        "engineTorque",
                        "externalTemperature",
                        "turnSignal",
                        "fuelLevel",
                        "fuelLevel_State",
                        "headLampStatus",
                        "instantFuelConsumption",
                        "fuelRange",
                        "odometer",
                        "tirePressure",
                        "wiperStatus"]
                    },
                    "UnsubscribeVehicleData": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED"],
                        "parameters": ["bodyInformation",
                        "deviceStatus",
                        "engineOilLife",
                        "engineTorque",
                        "externalTemperature",
                        "turnSignal",
                        "fuelLevel",
                        "fuelLevel_State",
                        "headLampStatus",
                        "instantFuelConsumption",
                        "fuelRange",
                        "odometer",
                        "tirePressure",
                        "wiperStatus"]
                    }
                }
            },
            "PropriataryData-1": {
                "rpcs": {
                    "DiagnosticMessage": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED"]
                    },
                    "GetDTCs": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED"]
                    },
                    "ReadDID": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED"]
                    }
                }
            },
            "Emergency-1": {
                "rpcs": {
                    "GetVehicleData": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED"],
                        "parameters": ["airbagStatus",
                        "clusterModeStatus",
                        "eCallInfo",
                        "emergencyEvent"]
                    },
                    "OnVehicleData": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED"],
                        "parameters": ["airbagStatus",
                        "clusterModeStatus",
                        "eCallInfo",
                        "emergencyEvent"]
                    },
                    "SubscribeVehicleData": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED"],
                        "parameters": ["airbagStatus",
                        "clusterModeStatus",
                        "eCallInfo",
                        "emergencyEvent"]
                    },
                    "UnsubscribeVehicleData": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED"],
                        "parameters": ["airbagStatus",
                        "clusterModeStatus",
                        "eCallInfo",
                        "emergencyEvent"]
                    }
                }
            },
            "Navigation-1": {
                "rpcs": {
                    "AlertManeuver": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED"]
                    },
                    "ShowConstantTBT": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED"]
                    },
                    "UpdateTurnList": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED"]
                    }
                }
            },
            "DataConsent-2": {
                "user_consent_prompt": "DataConsent",
                "rpcs": null
            },
            "BaseBeforeDataConsent": {
                "rpcs": {
                    "ChangeRegistration": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED",
                        "NONE"]
                    },
                    "DeleteFile": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED",
                        "NONE"]
                    },
                    "EncodedSyncPData": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED",
                        "NONE"]
                    },
                    "ListFiles": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED",
                        "NONE"]
                    },
                    "OnAppInterfaceUnregistered": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED",
                        "NONE"]
                    },
                    "OnEncodedSyncPData": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED",
                        "NONE"]
                    },
                    "OnHashChange": {
                        "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"]
                    },
                    "OnSystemRequest": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED",
                        "NONE"]
                    },
                    "PutFile": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED",
                        "NONE"]
                    },
                    "RegisterAppInterface": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED",
                        "NONE"]
                    },
                    "SetAppIcon": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED",
                        "NONE"]
                    },
                    "SetDisplayLayout": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED",
                        "NONE"]
                    },
                    "SystemRequest": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED",
                        "NONE"]
                    },
                    "UnregisterAppInterface": {
                        "hmi_levels": ["BACKGROUND",
                        "FULL",
                        "LIMITED",
                        "NONE"]
                    }
                }
            }
        },
        "consumer_friendly_messages": {
            "version": "001.001.019",
            "messages": {
                "AppPermissions": {
                    "languages": {
                        "de-de": {
                            "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.",
                            "line1": "Zugriffsanfrage(n)",
                            "line2": "erlauben?"
                        },
                        "en-au": {
                            "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.",
                            "line1": "Grant requested",
                            "line2": "permission(s)?"
                        },
                        "en-gb": {
                            "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.",
                            "line1": "Grant requested",
                            "line2": "permission(s)?",
                            "textBody": "%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. You can change these permissions and hear detailed descriptions in the mobile apps settings menu."
                        },
                        "en-ie": {
                            "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.",
                            "line1": "Grant requested",
                            "line2": "permission(s)?"
                        },
                        "en-us": {
                            "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.",
                            "line1": "Grant Requested",
                            "line2": "Permission(s)?",
                            "textBody": "%appName% is requesting the use of the following vehicle information and permissions: %functionalGroupLabels%. \n\nIf 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. You can change these permissions and hear detailed descriptions in the mobile apps settings menu."
                        },
                        "es-en": {
                            "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.",
                            "line1": "¿Otorgar permiso(s)",
                            "line2": "solicitado(s)?",
                            "textBody": "%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. \n\n Puede cambiar estos permisos y consultar descripciones detalladas en el menú de configuración de las aplicaciones móviles."
                        },
                        "es-es": {
                            "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.",
                            "line1": "¿Conceder permisos",
                            "line2": "solicitados?"
                        },
                        "es-mx": {
                            "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.",
                            "line1": "¿Otorgar permiso(s)",
                            "line2": "solicitado(s)?"
                        },
                        "fr-ca": {
                            "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.",
                            "line1": "Accorder permission(s)",
                            "line2": "demandée(s)",
                            "textBody": "%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%. Vous pouvez modifier ces permissions et entendre les descriptions détaillées dans le menu des réglages des applications mobiles."
                        },
                        "fr-fr": {
                            "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.",
                            "line1": "Accorder permission(s)",
                            "line2": "demandée(s)"
                        },
                        "it-it": {
                            "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.",
                            "line1": "Concedi autorizzaz.",
                            "line2": "richiesta(e)?"
                        },
                        "nl-nl": {
                            "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.",
                            "line1": "Aangevraagde",
                            "line2": "permissie(s) verlenen?"
                        },
                        "pl-pl": {
                            "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.",
                            "line1": "Udzielić żądanych",
                            "line2": "pozwoleń?"
                        },
                        "pt-br": {
                            "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.",
                            "line1": "Conceder permissão",
                            "line2": "solicitada?"
                        },
                        "pt-pt": {
                            "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.",
                            "line1": "Conceder permiss.",
                            "line2": "solicitada(s)?"
                        },
                        "ru-ru": {
                            "tts": "%appName% запрашивает следующую информацию об автомобиле и разрешения: %functionalGroupLabels%. Нажатием \"\"да\"\", Вы соглашаетесь, что %vehicleMake% не будет нести ответственность за какие-либо убытки или потерю прайвеси, связанные с использованием Ваших данных компанией %appName%. Нажмите \"\"Да\"\", если Вы согласны, или \"\"Нет\"\" - если не согласны.",
                            "line1": "Предост. заправш.",
                            "line2": "разрешения?"
                        },
                        "sv-se": {
                            "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.",
                            "line1": "Vill du ge",
                            "line2": "tillstånd?"
                        },
                        "tr-tr": {
                            "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.",
                            "line1": "İstenen izinler",
                            "line2": "verilsin mi?"
                        },
                        "zh-cn": {
                            "tts": "%appName% 正在请求使用下列车辆信息和权限: %functionalGroupLabels%。如果您按“是”,则表示您同意。 %vehicleMake% 将不会对因 %appName% 使用您的数据而引起的任何损毁或隐私损失负责。 请按“是”允许或按“否”拒绝。",
                            "line1": "是否允许请求的",
                            "line2": "权限?"
                        },
                        "zh-tw": {
                            "tts": "%appName% 正請求使用 %functionalGroupLabels% 的車輛資訊和許可。按「是」,表示您同意,如因 %appName% 使用您的資料導致任何損害或損失,%vehicleMake% 將不負賠償責任。同意請按「是」,拒絕請按「否」。",
                            "line1": "允許",
                            "line2": "授權請求?"
                        }
                    }
                },
                "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-ie": {
                            "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-en": {
                            "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."
                        },
                        "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-ie": {
                            "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-en": {
                            "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."
                        },
                        "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": {
                            "tts": "Diese Version von %appName% ist nicht autorisiert und wird nicht mit SYNC funktionieren.",
                            "line1": "nicht autorisiert"
                        },
                        "en-au": {
                            "tts": "This version of %appName% is not authorized and will not work with SYNC.",
                            "line1": "not authorized"
                        },
                        "en-gb": {
                            "tts": "This version of %appName% is not authorized and will not work with SYNC.",
                            "line1": "not authorized",
                            "textBody": "This version of %appName% is not authorized and will not work with SYNC."
                        },
                        "en-ie": {
                            "tts": "This version of %appName% is not authorized and will not work with SYNC.",
                            "line1": "not authorized"
                        },
                        "en-us": {
                            "tts": "This version of %appName% is not authorized and will not work with SYNC.",
                            "line1": "Not Authorized",
                            "textBody": "This version of %appName% is no longer authorized to work with AppLink. Please update to the latest version of %appName%."
                        },
                        "es-en": {
                            "tts": "Esta versión de %appName% no tiene autorización y no funcionará con SYNC.",
                            "line1": "no autorizada",
                            "textBody": "Esta versión de %appName% no tiene autorización y no funcionará con SYNC."
                        },
                        "es-es": {
                            "tts": "Esta versión de %appName% no está autorizada y no funcionará con SYNC.",
                            "line1": "No autorizada"
                        },
                        "es-mx": {
                            "tts": "Esta versión de %appName% no tiene autorización y no funcionará con SYNC.",
                            "line1": "no autorizada"
                        },
                        "fr-ca": {
                            "tts": "Cette version de %appName% n’est pas autorisée et ne fonctionnera pas avec SYNC.",
                            "line1": "non autorisée",
                            "textBody": "Cette version de %appName% n’est pas autorisée et ne fonctionnera pas avec SYNC."
                        },
                        "fr-fr": {
                            "tts": "Cette version de %appName% n’est pas autorisée et ne fonctionnera pas avec SYNC.",
                            "line1": "non autorisée"
                        },
                        "it-it": {
                            "tts": "Questa versione di %appName% non è autorizzata e non funziona con il SYNC.",
                            "line1": "non autorizzata"
                        },
                        "nl-nl": {
                            "tts": "Deze versie van %appName% is niet geautoriseerd en werkt niet met SYNC.",
                            "line1": "niet geautoriseerd"
                        },
                        "pl-pl": {
                            "tts": "Niniejsza wersja %appName% nie posiada autoryzacji i nie będzie działać z SYNC.",
                            "line1": "brak autoryzacji"
                        },
                        "pt-br": {
                            "tts": "Esta versão do %appName% não tem autorização e não funcionará com o SYNC.",
                            "line1": "não autorizado"
                        },
                        "pt-pt": {
                            "tts": "Esta versão de %appName% não está autorizada e não funcionará com o SYNC.",
                            "line1": "não autorizada"
                        },
                        "ru-ru": {
                            "tts": "Эта версия %appName% не авторизирована и не будет работать с SYNC.",
                            "line1": "не авторизировано"
                        },
                        "sv-se": {
                            "tts": "Den här versionen av %appName% är inte godkänd och fungerar inte med SYNC.",
                            "line1": "är ej godkänd"
                        },
                        "tr-tr": {
                            "tts": "Bu %appName% sürümüne izin verilmediğinden SYNC ile çalışamaz.",
                            "line1": "için izin yok"
                        },
                        "zh-cn": {
                            "tts": "此版本的%appName% 未得到授权,无法在SYNC上使用。",
                            "line1": "未得到授权"
                        },
                        "zh-tw": {
                            "tts": "%appName% 的版本未獲得授權,將無法透過 SYNC 使用。",
                            "line1": "無授權"
                        }
                    }
                },
                "AppUnsupported": {
                    "languages": {
                        "de-de": {
                            "tts": "Diese Version von %appName% wird von SYNC nicht unterstützt.",
                            "line1": "nicht unterstützt"
                        },
                        "en-au": {
                            "tts": "This version of %appName% is not supported by SYNC.",
                            "line1": "not supported"
                        },
                        "en-gb": {
                            "tts": "This version of %appName% is not supported by SYNC.",
                            "line1": "not supported",
                            "textBody": "This version of %appName% is not supported by SYNC."
                        },
                        "en-ie": {
                            "tts": "This version of %appName% is not supported by SYNC.",
                            "line1": "not supported"
                        },
                        "en-us": {
                            "tts": "This version of %appName% is not supported by SYNC.",
                            "line1": "Not Supported",
                            "textBody": "Your version of %appName% is not supported by SYNC."
                        },
                        "es-en": {
                            "tts": "Esta versión de %appName% no es compatible con SYNC.",
                            "line1": "no compatible",
                            "textBody": "Esta versión de %appName% no es compatible con SYNC."
                        },
                        "es-es": {
                            "tts": "Esta versión de %appName% no es compatible con SYNC.",
                            "line1": "No compatible"
                        },
                        "es-mx": {
                            "tts": "Esta versión de %appName% no es compatible con SYNC.",
                            "line1": "no compatible"
                        },
                        "fr-ca": {
                            "tts": "Cette version de %appName% n’est pas prise en charge par SYNC.",
                            "line1": "incompatible",
                            "textBody": "Cette version de %appName% n’est pas prise en charge par SYNC."
                        },
                        "fr-fr": {
                            "tts": "Cette version de %appName% n’est pas prise en charge par SYNC.",
                            "line1": "incompatible"
                        },
                        "it-it": {
                            "tts": "Questa versione di %appName% non è supportata dal SYNC.",
                            "line1": "non supportata"
                        },
                        "nl-nl": {
                            "tts": "Deze versie van %appName% wordt niet ondersteund door SYNC.",
                            "line1": "niet ondersteund"
                        },
                        "pl-pl": {
                            "tts": "Niniejsza wersja %appName% nie jest obsługiwana przez system SYNC.",
                            "line1": "aplikacja nie obsług."
                        },
                        "pt-br": {
                            "tts": "Esta versão do %appName% não é suportada pelo SYNC.",
                            "line1": "não suportado"
                        },
                        "pt-pt": {
                            "tts": "Esta versão de %appName% não é suportado pelo SYNC.",
                            "line1": "não suportada"
                        },
                        "ru-ru": {
                            "tts": "Эта версия %appName% не поддерживается SYNC.",
                            "line1": "не поддерживается"
                        },
                        "sv-se": {
                            "tts": "SYNC har inte stöd för den här versionen av %appName%.",
                            "line1": "stöds ej"
                        },
                        "tr-tr": {
                            "tts": "Bu %appName% sürümü SYNC tarafından desteklenmiyor.",
                            "line1": "desteklenmiyor"
                        },
                        "zh-cn": {
                            "tts": "SYNC不支持此版本的%appName%。",
                            "line1": "不受支持"
                        },
                        "zh-tw": {
                            "tts": "SYNC 不支援此版本的%appName% 。",
                            "line1": "不支援"
                        }
                    }
                },
                "DataConsent": {
                    "languages": {
                        "en-gb": {
                            "textBody": "Would you like to enable Mobile Apps on SYNC? 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. 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 Settings menu. See your Owner Guide for more information."
                        },
                        "en-us": {
                            "line1": "Enable Mobile Apps",
                            "line2": "on SYNC? (Uses Data)",
                            "textBody": "Would you like to enable Mobile Apps on SYNC?\n\nTo 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.\n\nUpdates 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 Settings menu. See your Owner Guide for more information."
                        },
                        "es-en": {
                            "textBody": "Para usar aplicaciones móviles con SYNC, este debe comunicarse con Ford al menos una vez al mes a través del plan de datos de su dispositivo móvil. Pueden aplicar tarifas normales. SYNC enviará su VIN y el número de módulo de SYNC a Ford de Estados Unidos de América. Las actualizaciones tienen el tamaño aproximado de un mensaje de correo electrónico, y la frecuencia de las actualizaciones depende del uso de su vehículo y de si se encuentran nuevas aplicaciones en su dispositivo. Para obtener más información, consulte la Guía del propietario. /r Presione Sí para permitir y No para denegar."
                        },
                        "fr-ca": {
                            "textBody": "Pour utiliser AppLink, SYNC devra communiquer avec Ford au moins une fois par mois en utilisant le forfait de données de votre appareil mobile. Les tarifs réguliers peuvent s’appliquer. SYNC enverra votre NIV et le numéro de votre module SYNC à Ford États-Unis. Les mises à jour ont la taille d’un courriel et la fréquence des mises à jour dépend de l’utilisation de votre véhicule et si une nouvelle application se trouve sur votre appareil. Consultez le Guide de l’utilisateur pour obtenir d’autres renseignements. /r Veuillez appuyer sur Oui pour autoriser ou sur Non pour refuser."
                        }
                    }
                },
                "DataConsentHelp": {
                    "languages": {
                        "en-us": {
                            "textBody": "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. See your Owner Guide for more information."
                        },
                        "es-en": {
                            "textBody": "Las actualizaciones tienen el tamaño aproximado de un mensaje de correo electrónico, y la frecuencia de las actualizaciones depende del uso de su vehículo y de si se encuentran nuevas aplicaciones en su dispositivo. Para obtener más información, consulte la Guía del propietario."
                        },
                        "fr-ca": {
                            "textBody": "Les mises à jour ont la taille d’un courriel et la fréquence des mises à jour dépend de l’utilisation de votre véhicule et si une nouvelle application se trouve sur votre appareil. Consultez le Guide de l’utilisateur pour obtenir d’autres renseignements."
                        }
                    }
                },
                "DisableApps": {
                    "languages": {
                        "de-de": {
                            "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.",
                            "line1": "Auto-Update",
                            "line2": "und Mobile Apps deaktivieren"
                        },
                        "en-au": {
                            "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.",
                            "line1": "Disable auto-updates",
                            "line2": "and Mobile Apps?"
                        },
                        "en-gb": {
                            "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.",
                            "line1": "Disable auto-updates",
                            "line2": "and Mobile Apps?",
                            "textBody": "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-ie": {
                            "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.",
                            "line1": "Disable auto-updates",
                            "line2": "and Mobile Apps?"
                        },
                        "en-us": {
                            "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.",
                            "line1": "Disable Auto-Updates",
                            "line2": "and Mobile Apps?",
                            "textBody": "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-en": {
                            "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.",
                            "line1": "¿Deshab. actualiz.",
                            "line2": "autom. y aplic. móv.?",
                            "textBody": "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."
                        },
                        "es-es": {
                            "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.",
                            "line1": "¿Desact. actual. auto",
                            "line2": "y apl. móviles?"
                        },
                        "es-mx": {
                            "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.",
                            "line1": "¿Deshab. actualiz.",
                            "line2": "autom. y aplic. móv.?"
                        },
                        "fr-ca": {
                            "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.",
                            "line1": "Désactiver màj autom.",
                            "line2": "et app. mobiles?",
                            "textBody": "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": {
                            "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.",
                            "line1": "Désactiver màj autom.",
                            "line2": "et app. mobiles?"
                        },
                        "it-it": {
                            "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.",
                            "line1": "Disabilitare agg. aut.",
                            "line2": "e app mobili?"
                        },
                        "nl-nl": {
                            "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.",
                            "line1": "Auto-updates en mob.",
                            "line2": "apps uitschakelen?"
                        },
                        "pl-pl": {
                            "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ć.",
                            "line1": "Wył. automat. aktual.",
                            "line2": "i aplikacje mobilne?"
                        },
                        "pt-br": {
                            "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.",
                            "line1": "Desativar atualizações",
                            "line2": "autom. e aplicativos?"
                        },
                        "pt-pt": {
                            "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.",
                            "line1": "Desact. actual. autom.",
                            "line2": "e aplicações móveis?"
                        },
                        "ru-ru": {
                            "tts": "При отключении автоматических обновлений также будут отключены мобильные приложения sync. Вы не сможете использовать какие-либо мобильные приложения с SYNC. Нажмите \"\"Да\"\" для подтверждения или \"\"Нет\"\" для отмены.",
                            "line1": "Откл. автообновления",
                            "line2": "и мобил. прилож.?"
                        },
                        "sv-se": {
                            "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.",
                            "line1": "Avaktiverar autouppdat.",
                            "line2": "och mobilappar?"
                        },
                        "tr-tr": {
                            "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.",
                            "line1": "Oto. güncelleme ve",
                            "line2": "mobil uygul. kapat?"
                        },
                        "zh-cn": {
                            "tts": "禁用自动更新同时也会禁用SYNC移动应用程序。您将无法在 SYNC 中使用任何移动应用程序。请按“是”确认或按“否”取消。",
                            "line1": "是否禁用自动更新和",
                            "line2": "移动应用程序?"
                        },
                        "zh-tw": {
                            "tts": "停用自動更新也將停用 sync 行動應用程式。您將無法透過 SYNC 使用任何行動應用程式。確認請按「是」,取消請按「否」。",
                            "line1": "停用自動更新",
                            "line2": "和行動應用程式?"
                        }
                    }
                },
                "DrivingCharacteristics": {
                    "languages": {
                        "de-de": {
                            "tts": "Eine App hat Zugriff auf die folgenden Fahreigenschaften: Kraftstoffverbrauch, MyKey, Sicherheitsgurtstatus.",
                            "label": "Fahreigenschaften"
                        },
                        "en-au": {
                            "tts": "An app can access the following driving characteristics: Fuel consumption, MyKey, Seat belt status.",
                            "label": "Driving characteristics"
                        },
                        "en-gb": {
                            "tts": "An app can access the following driving characteristics: Fuel consumption, MyKey, Seat belt status.",
                            "label": "Driving characteristics",
                            "textBody": "An app can access the following driving characteristics: Fuel consumption, MyKey, Seat belt status."
                        },
                        "en-ie": {
                            "tts": "An app can access the following driving characteristics: Fuel consumption, MyKey, Seat belt status.",
                            "label": "Driving characteristics"
                        },
                        "en-us": {
                            "tts": "An app can access the following driving characteristics: Fuel Consumption, MyKey, Seat Belt Status.",
                            "label": "Driving Characteristics",
                            "textBody": "An app can access the following driving characteristics: Fuel Consumption, MyKey, Seat Belt Status."
                        },
                        "es-en": {
                            "tts": "Las aplicaciones pueden acceder a las siguientes características del manejo: Consumo de combustible, MyKey, Estado del cinturón de seguridad.",
                            "label": "Características del manejo",
                            "textBody": "Las aplicaciones pueden acceder a las siguientes características del manejo: Consumo de combustible, MyKey, Estado del cinturón de seguridad."
                        },
                        "es-es": {
                            "tts": "Una aplicación puede acceder a las siguientes características de conducción: Consumo de combustible, MyKey, Estado cinturones de seguridad.",
                            "label": "Características de conducción"
                        },
                        "es-mx": {
                            "tts": "Las aplicaciones pueden acceder a las siguientes características del manejo: Consumo de combustible, MyKey, Estado del cinturón de seguridad.",
                            "label": "Características del manejo"
                        },
                        "fr-ca": {
                            "tts": "Une application peut accéder aux caractéristiques de conduite suivantes: Consommation de carburant, MyKey, État des ceintures de sécurité.",
                            "label": "Caractéristiques de conduite",
                            "textBody": "Une application peut accéder aux caractéristiques de conduite suivantes: Consommation de carburant, MyKey, État des ceintures de sécurité."
                        },
                        "fr-fr": {
                            "tts": "Une application peut accéder aux caractéristiques de conduite suivantes: Consommation de carburant, MyKey, État des ceintures de sécurité.",
                            "label": "Caractéristiques de conduite"
                        },
                        "it-it": {
                            "tts": "Un'app può avere accesso alle seguenti caratteristiche di guida: Consumo carburante, MyKey, Stato cinture di sicurezza.",
                            "label": "Caratteristiche di guida"
                        },
                        "nl-nl": {
                            "tts": "Een app heeft toegang tot de volgende rijkenmerken: Brandstofverbruik, MyKey, Veiligheidsgordelstatus.",
                            "label": "Rijkenmerken"
                        },
                        "pl-pl": {
                            "tts": "Aplikacja może uzyskać dostęp do następujących informacji dotyczących jazdy: Zużycie paliwa, MyKey, Stan pasów bezpieczeństwa.",
                            "label": "Informacje dotyczące stylu jazdy"
                        },
                        "pt-br": {
                            "tts": "Um aplicativo pode acessar as seguintes características de condução: Consumo de combustível, MyKey, Estado do cinto de segurança.",
                            "label": "Características de condução"
                        },
                        "pt-pt": {
                            "tts": "Uma aplicação consegue aceder às seguintes informações de condução: Consumo de combustível, MyKey, Estado dos cintos de segurança.",
                            "label": "Características de condução"
                        },
                        "ru-ru": {
                            "tts": "Приложение имеет доступ к следующим характеристикам движения: Расход топлива, MyKey, Состояние ремней безопасности.",
                            "label": "Характеристики движения"
                        },
                        "sv-se": {
                            "tts": "Appen kan komma åt följande köregenskaper: Bränsleförbrukning, MyKey, Bältesstatus.",
                            "label": "Köregenskaper"
                        },
                        "tr-tr": {
                            "tts": "Bir uygulama şu sürüş karakteristiklerine erişebilir: Yakıt tüketimi, MyKey, Emniyet kemeri durumu.",
                            "label": "Sürüş karakteristikleri"
                        },
                        "zh-cn": {
                            "tts": "移动应用程序可访问下列行驶特性: 油耗, MyKey, 安全带状态",
                            "label": "行驶特性"
                        },
                        "zh-tw": {
                            "tts": "應用程式可存取以下駕駛特性: 油耗, MyKey, 安全帶狀態",
                            "label": "駕駛特性"
                        }
                    }
                },
                "Location": {
                    "languages": {
                        "de-de": {
                            "tts": "Eine App hat Zugriff auf die GPS-Daten und die Geschwindigkeit des Fahrzeugs.",
                            "label": "GPS und Geschwindigkeit"
                        },
                        "en-au": {
                            "tts": "An app can access vehicle GPS and speed.",
                            "label": "GPS and speed"
                        },
                        "en-gb": {
                            "tts": "An app can access vehicle GPS and speed.",
                            "label": "GPS and speed",
                            "textBody": "An app can access vehicle GPS and speed."
                        },
                        "en-ie": {
                            "tts": "An app can access vehicle GPS and speed.",
                            "label": "GPS and speed"
                        },
                        "en-us": {
                            "tts": "An app can access vehicle GPS and speed.",
                            "label": "GPS and speed",
                            "textBody": "An app can access vehicle GPS and speed."
                        },
                        "es-en": {
                            "tts": "Las aplicaciones pueden acceder al GPS y a la velocidad del vehículo.",
                            "label": "GPS y velocidad",
                            "textBody": "Las aplicaciones pueden acceder al GPS y a la velocidad del vehículo."
                        },
                        "es-es": {
                            "tts": "Una aplicación puede acceder al GPS y la velocidad del vehículo.",
                            "label": "GPS y velocidad"
                        },
                        "es-mx": {
                            "tts": "Las aplicaciones pueden acceder al GPS y a la velocidad del vehículo.",
                            "label": "GPS y velocidad"
                        },
                        "fr-ca": {
                            "tts": "Une application peut accéder au GPS et à la vitesse du véhicule.",
                            "label": "GPS et vitesse",
                            "textBody": "Une application peut accéder au GPS et à la vitesse du véhicule."
                        },
                        "fr-fr": {
                            "tts": "Une application peut accéder au GPS et à la vitesse du véhicule.",
                            "label": "GPS et vitesse"
                        },
                        "it-it": {
                            "tts": "Un'app può avere accesso a GPS e velocità del veicolo.",
                            "label": "GPS e velocità"
                        },
                        "nl-nl": {
                            "tts": "Een app heeft toegang tot gps en de snelheid van het voertuig.",
                            "label": "Gps en snelheid"
                        },
                        "pl-pl": {
                            "tts": "Aplikacja może uzyskać dostęp do modułu GPS i prędkości pojazdu.",
                            "label": "GPS i prędkość"
                        },
                        "pt-br": {
                            "tts": "Um aplicativo pode acessar o GPS e a velocidade do veículo.",
                            "label": "GPS e velocidade"
                        },
                        "pt-pt": {
                            "tts": "Uma aplicação consegue aceder ao GPS e à velocidade do veículo.",
                            "label": "GPS e velocidade"
                        },
                        "ru-ru": {
                            "tts": "Приложение имеет доступ к GPS и скорости автомобиля.",
                            "label": "GPS и скорость"
                        },
                        "sv-se": {
                            "tts": "Appen kan komma åt fordonets GPS och hastighetsmätare.",
                            "label": "GPS och hastighet"
                        },
                        "tr-tr": {
                            "tts": "Bu uygulama aracın GPS ve hız bilgilerine erişebilir.",
                            "label": "GPS ve hız"
                        },
                        "zh-cn": {
                            "tts": "移动应用程序可以访问车辆 GPS 和车速信息。",
                            "label": "GPS 和车速"
                        },
                        "zh-tw": {
                            "tts": "應用程式可存取車輛的GPS和速度。",
                            "label": "GPS和車速"
                        }
                    }
                },
                "Notifications": {
                    "languages": {
                        "de-de": {
                            "tts": "Läuft die App im Hintergrund, kann Sie Benachrichtigungen senden.",
                            "label": "Push-Benachrichtigungen"
                        },
                        "en-au": {
                            "tts": "An app can send notifications when running in the background.",
                            "label": "Push notifications"
                        },
                        "en-gb": {
                            "tts": "An app can send notifications when running in the background.",
                            "label": "Push notifications",
                            "textBody": "An app can send notifications when running in the background."
                        },
                        "en-ie": {
                            "tts": "An app can send notifications when running in the background.",
                            "label": "Push notifications"
                        },
                        "en-us": {
                            "tts": "An app can send notifications when running in the background.",
                            "label": "Push notifications",
                            "textBody": "An app can send notifications when running in the background."
                        },
                        "es-en": {
                            "tts": "Las aplicaciones pueden enviar notificaciones cuando se ejecutan en segundo plano.",
                            "label": "Notificaciones tipo Push",
                            "textBody": "Las aplicaciones pueden enviar notificaciones cuando se ejecutan en segundo plano."
                        },
                        "es-es": {
                            "tts": "Una aplicación puede enviar notificaciones cuando se está ejecutando en segundo plano.",
                            "label": "Notificaciones push"
                        },
                        "es-mx": {
                            "tts": "Las aplicaciones pueden enviar notificaciones cuando se ejecutan en segundo plano.",
                            "label": "Notificaciones tipo Push"
                        },
                        "fr-ca": {
                            "tts": "Une application peut envoyer des avis lorsqu’elle fonctionne en arrière-plan.",
                            "label": "Notifications instantanées",
                            "textBody": "Une application peut envoyer des avis lorsqu’elle fonctionne en arrière-plan."
                        },
                        "fr-fr": {
                            "tts": "Une application peut envoyer des avis lorsqu’elle fonctionne en arrière-plan.",
                            "label": "Notifications push"
                        },
                        "it-it": {
                            "tts": "Un'app può inviare notifiche se eseguita in background.",
                            "label": "Notifiche push"
                        },
                        "nl-nl": {
                            "tts": "Een app kan meldingen versturen als deze op de achtergrond actief is.",
                            "label": "Push-meldingen"
                        },
                        "pl-pl": {
                            "tts": "Aplikacja może wysyłać powiadomienia, działając w tle.",
                            "label": "Powiadomienia Push"
                        },
                        "pt-br": {
                            "tts": "Um aplicativo pode enviar notificações quando estiver sendo executado em segundo plano.",
                            "label": "Notificações Push"
                        },
                        "pt-pt": {
                            "tts": "Uma aplicação consegue enviar notificações quando está activa em segundo plano.",
                            "label": "Notificações push"
                        },
                        "ru-ru": {
                            "tts": "Если приложение работает в фоновом режиме, оно может отправлять оповещения.",
                            "label": "Оповещения о пересылке"
                        },
                        "sv-se": {
                            "tts": "Appen kan skicka meddelanden när den körs i bakgrunden.",
                            "label": "Push-notiser"
                        },
                        "tr-tr": {
                            "tts": "Bir uygulama arka planda çalışırken bildirim gönderebilir.",
                            "label": "Anlık bildirimleri"
                        },
                        "zh-cn": {
                            "tts": "移动应用程序在后台运行时可推送通知。",
                            "label": "推送通知"
                        },
                        "zh-tw": {
                            "tts": "車輛行進時,應用程式可在背景中傳送通知。",
                            "label": "傳送通知"
                        }
                    }
                },
                "SettingDisableUpdates": {
                    "languages": {
                        "de-de": {
                            "line1": "Updates deakt."
                        },
                        "en-au": {
                            "line1": "Disable updates"
                        },
                        "en-gb": {
                            "line1": "Disable updates"
                        },
                        "en-ie": {
                            "line1": "Disable updates"
                        },
                        "en-us": {
                            "line1": "Disable Updates",
                            "textBody": "Disable Updates"
                        },
                        "es-en": {
                            "line1": "Deshab. actual.",
                            "textBody": "Deshab. actual."
                        },
                        "es-es": {
                            "line1": "Desact. actual."
                        },
                        "es-mx": {
                            "line1": "Deshab. actual."
                        },
                        "fr-ca": {
                            "line1": "Désactiver MAJ",
                            "textBody": "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-ie": {
                            "line1": "Enable Apps"
                        },
                        "en-us": {
                            "line1": "Enable Apps"
                        },
                        "es-en": {
                            "line1": "Hab. aplic."
                        },
                        "es-es": {
                            "line1": "Activar apl."
                        },
                        "es-mx": {
                            "line1": "Hab. aplic."
                        },
                        "fr-ca": {
                            "line1": "Activer app.",
                            "textBody": "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-ie": {
                            "line1": "Request update"
                        },
                        "en-us": {
                            "line1": "Request Update",
                            "textBody": "Select `Update now` to receive app authorization information for your SYNC-enabled mobile apps. This may enable additional functionality depending on the app and your settings. If your phone has a working data connection, an update should complete in less than 1 minute."
                        },
                        "es-en": {
                            "line1": "Solicit. actualiz.",
                            "textBody": "Solicit. actualiz."
                        },
                        "es-es": {
                            "line1": "Solicitar actual."
                        },
                        "es-mx": {
                            "line1": "Solicit. actualiz."
                        },
                        "fr-ca": {
                            "line1": "Demander MAJ",
                            "textBody": "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",
                            "textBody": "Update needed"
                        },
                        "en-ie": {
                            "line1": "Update needed"
                        },
                        "en-us": {
                            "line1": "Update Needed",
                            "textBody": "Update Needed"
                        },
                        "es-en": {
                            "line1": "Actualiz. neces.",
                            "textBody": "Actualiz. neces."
                        },
                        "es-es": {
                            "line1": "Actu. necesaria"
                        },
                        "es-mx": {
                            "line1": "Actualiz. neces."
                        },
                        "fr-ca": {
                            "line1": "Màj requise",
                            "textBody": "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...",
                            "textBody": "Updating..."
                        },
                        "en-ie": {
                            "line1": "Updating..."
                        },
                        "en-us": {
                            "line1": "Updating...",
                            "textBody": "Updating..."
                        },
                        "es-en": {
                            "line1": "Actualizando...",
                            "textBody": "Actualizando..."
                        },
                        "es-es": {
                            "line1": "Actualizando..."
                        },
                        "es-mx": {
                            "line1": "Actualizando..."
                        },
                        "fr-ca": {
                            "line1": "MAJ en cours...",
                            "textBody": "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",
                            "textBody": "Up-to-date"
                        },
                        "en-ie": {
                            "line1": "Up-to-date"
                        },
                        "en-us": {
                            "line1": "Up-To-Date",
                            "textBody": "Up-To-Date"
                        },
                        "es-en": {
                            "line1": "Actualizado",
                            "textBody": "Actualizado"
                        },
                        "es-es": {
                            "line1": "Actualizada"
                        },
                        "es-mx": {
                            "line1": "Actualizado"
                        },
                        "fr-ca": {
                            "line1": "Déjà à jour",
                            "textBody": "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": {
                            "tts": "Eine App hat Zugriff auf die folgenden Fahrzeuginformationen: Kraftstoff-Füllstand, Kraftstoffverbrauch, Motordrehzahl, Kilometerzähler, FIN, Außentemperatur, Gangstellung, Reifenluftdruck.",
                            "label": "Fahrzeuginformationen"
                        },
                        "en-au": {
                            "tts": "An app can access the following vehicle information: Fuel level, Fuel economy, Engine RPMs, Odometer, VIN, Outside air temperature, Gear position, Tyre pressure.",
                            "label": "Vehicle information"
                        },
                        "en-gb": {
                            "tts": "An app can access the following vehicle information: Fuel level, Fuel economy, Engine RPMs, Odometer, VIN, Outside air temperature, Gear position, Tire pressure.",
                            "label": "Vehicle information",
                            "textBody": "An app can access the following vehicle information: Fuel level, Fuel economy, Engine RPMs, Odometer, VIN, Outside air temperature, Gear position, Tire pressure."
                        },
                        "en-ie": {
                            "tts": "An app can access the following vehicle information: Fuel level, Fuel economy, Engine RPMs, Odometer, VIN, Outside air temperature, Gear position, Tyre pressure.",
                            "label": "Vehicle information"
                        },
                        "en-us": {
                            "tts": "An app can access the following vehicle information: Fuel Level, Fuel Economy, Engine RPMs, Odometer, VIN, External Temperature, Gear Position, Tire Pressure.",
                            "label": "Vehicle information",
                            "textBody": "An app can access the following vehicle information: Fuel Level, Fuel Economy, Engine RPMs, Odometer, VIN, External Temperature, Gear Position, Tire Pressure."
                        },
                        "es-en": {
                            "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.",
                            "label": "Información del vehículo",
                            "textBody": "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."
                        },
                        "es-es": {
                            "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.",
                            "label": "Información del vehículo"
                        },
                        "es-mx": {
                            "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.",
                            "label": "Información del vehículo"
                        },
                        "fr-ca": {
                            "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.",
                            "label": "Renseignements du véhicule",
                            "textBody": "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": {
                            "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.",
                            "label": "Renseignements du véhicule"
                        },
                        "it-it": {
                            "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.",
                            "label": "Informazioni sul veicolo"
                        },
                        "nl-nl": {
                            "tts": "Een app heeft toegang tot de volgende voertuiginformatie: Brandstofpeil, Brandstofverbruik, Motortoerental, Kilometerteller, VIN, Buitentemperatuur, Versnellingsstand, Bandenspanning.",
                            "label": "Voertuiginformatie"
                        },
                        "pl-pl": {
                            "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.",
                            "label": "Informacje o pojeździe"
                        },
                        "pt-br": {
                            "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.",
                            "label": "Informações sobre o veículo"
                        },
                        "pt-pt": {
                            "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.",
                            "label": "Informações do veículo"
                        },
                        "ru-ru": {
                            "tts": "Приложение имеет доступ к следующим данным автомобиля: Уровень топлива, Економия топлива, Число оборотов двигателя, Одометр, Номер VIN, Температура за бортом, Положение передачи, Давление шин.",
                            "label": "Информация об автомобиле"
                        },
                        "sv-se": {
                            "tts": "Appen kan komma åt följande fordonsinformation: Bränslenivå, Bränsleekonomi, Motorns varvtal, Vägmätare, VIN, Utetemperatur, Växelläge, Däcktryck.",
                            "label": "Fordonsinformation"
                        },
                        "tr-tr": {
                            "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ı.",
                            "label": "Araç bilgisi"
                        },
                        "zh-cn": {
                            "tts": "移动应用程序可访问下列车辆信息 : 燃油量, 燃油经济性, 发动机转速(RPM), 里程表, VIN, 车外温度, 档位, 胎压.",
                            "label": "车辆信息"
                        },
                        "zh-tw": {
                            "tts": "一個應用程式可存取以下車輛資訊 : 燃油存量, 燃油經濟性, 引擎轉速, 里程表, 車輛識別號碼, 車外溫度, 檔位, 胎壓.",
                            "label": "車輛資訊"
                        }
                    }
                }
            }
        },
        "app_policies": {
            "default": {
                "keep_context": false,
                "steal_focus": false,
                "priority": "NONE",
                "default_hmi": "NONE",
                "groups": ["Base-4"]
            },
            "device": {
                "keep_context": false,
                "steal_focus": false,
                "priority": "NONE",
                "default_hmi": "NONE",
                "groups": ["DataConsent-2"]
            },
            "pre_DataConsent": {
                "keep_context": false,
                "steal_focus": false,
                "priority": "NONE",
                "default_hmi": "NONE",
                "groups": ["BaseBeforeDataConsent"]
            },
            "1234": {
              "keep_context": false,
              "steal_focus": false,
              "priority": "NONE",
              "default_hmi": "NONE",
              "groups": ["BaseBeforeDataConsent"],
              "RequestType": [
                "TRAFFIC_MESSAGE_CHANNEL",
                "QUERY_APPS",
                "LAUNCH_APP",
                "PROPRIETARY",
                "NAVIGATION",
                "MEDIA",
                "INVALID_REQUEST_TYPE"
              ]
            }
        }
    }
    }