-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoverrides.json5
91 lines (88 loc) · 1.82 KB
/
overrides.json5
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
// This file contains manually entered overrides to
// be applied after the automated service completes,
// each list is in alphabetical order by their code.
{
// if the item is found it will be updated,
// otherwise it will be added
add:
[
],
// if the item is found it will be updated,
// otherwise it will be ignored
update:
[
{
alpha2Code: "AU",
officialName: "the Commonwealth of Australia", // add 'the Commonwealth of'
},
{
alpha2Code: "CD",
shortName: "DR Congo",
},
{
alpha2Code: "CV",
officialName: "the Republic of Cabo Verde", // add 'the'
},
{
alpha2Code: "KN",
officialName: "the Federation of Saint Kitts and Nevis",
},
{
alpha2Code: "KP",
shortName: "Korea, North",
},
{
alpha2Code: "KR",
shortName: "Korea",
},
{
alpha2Code: "LA",
shortName: "Laos",
},
{
alpha2Code: "MD",
shortName: "Moldova",
},
{
alpha2Code: "MK",
shortName: "Macedonia",
name: "Republic of Macedonia",
},
{
alpha2Code: "MP",
officialName: "the Commonwealth of the Northern Mariana Islands", // add 'the'
},
{
alpha2Code: "PR",
officialName: "the Commonwealth of Puerto Rico", // add 'the'
},
{
alpha2Code: "RE",
shortName: "Réunion", // use 'é' instead of 'e'
},
{
alpha2Code: "SY",
shortName: "Syria",
},
{
alpha2Code: "TZ",
shortName: "Tanzania",
},
{
alpha2Code: "US",
shortName: "United States",
},
{
alpha2Code: "VN",
shortName: "Vietnam",
},
],
// if the item is found it will be removed,
// otherwise it will be ignored
remove:
[
{
alpha2Code: "AQ", // remove Antarctica
},
]
}