-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenames.py
80 lines (76 loc) · 2.55 KB
/
renames.py
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
"""
MAP [ filepath ] [from] = <to>.txt
"""
MAP = {
'common/countries': {
'Ottoman Empire': 'Ottomans',
'Castile': 'Castille',
'Great Horde': 'GoldenHorde',
'Mameluks': 'Egypt', # ???
'Timurid Empire':'Timurid',
'Dai Viet': 'DaiViet',
'Vijayanagar': 'Vijaynagara',
'kong': 'Kong',
'Teutonic Order': 'Teutonicorder',
'Chagatai Khanate': 'ChagataiKhanate',
'Qara Koyunlu': 'QaraKoyunlu',
'Ak Koyunlu': 'AkKoyunlu',
'Shirvan': 'Shirvanshah',
'Aztec Empire': 'Aztec',
'bonoman': 'Bonoman',
'Ditmarschen': 'Dithmarschen',
'Pommern': 'Pommerania',
'Iroqouis': 'Iroquois',
'Jangaldesh': 'Jangladesh',
'Principality of Achaia': 'PrincipalityOfAchaia',
'Samthske': 'Samtskhe',
'Switzerland': 'Schweiz',
'Zwahili': 'Swahili', # ???
'The Knights': 'Knights',
'East Frisia': 'EastFrisia',
'Janjiro': 'Janjero',
'The Hedjaz': 'Hedjaz',
'Hisn Kayfa': 'Ayyubids',
'Clanricarde': 'Connacht',
'Rewa Kantha': 'RewaKantha',
'nupe': 'Nupe',
'Despotate of Epirus': 'Epirus',
'dahomey': 'Dahomey',
'Golcanda': 'Golconda',
'Beni Yas': 'Yas',
'Djerid': 'Ghadames',
'Great Britain': 'GreatBritain',
'Mdo Khams': 'Mdokhams',
'Annizah': 'Anizah',
'dagbon': 'Dagbon',
'Kara Del': 'Karadel',
'Karabakh': 'Kashen',
'Kilwa': 'Swahili',
'Madyas': 'Madyaas',
#'Maynila': '',
}
}
NAMES = {
'Swahili': 'Kilwa',
}
RELIGIONS = {
'tengri_pagan_reformed': 'tengri',
'animism': 'animist',
'buddhism': 'theravada',
}
# from achievements.txt: our converted name from the name in achievement yml file
ACHIEVEMENT_KEYS = {
'a_heros_welcome': 'a_hero_s_welcome',
'take_that_habsburgs': 'take_that_von_habsburgs',
'guaranteer_of_peace': 'guarantor_of_peace',
'magellans_voyage': 'magellan_s_voyage',
'no_pirates_in_my_carribean': 'no_pirates_in_my_caribbean',
'dude_where_s_my_boat': 'dude_wheres_my_boat',
'komenoi_empire': 'komnenoi_empire',
'abu_bakr_IIs_ambition': 'abu_bakr_ii_s_ambition',
'the_burgundian_inheritance': 'the_burgundian_conquest',
'graze_my_horse_here_and_here': 'ill_graze_my_horse_here___and_here',
'three_trivial_tributaries': 'three_trivial_tributary_tribes',
'around_the_world_in_eighty_years': 'around_the_world_in_80_years',
'all_that_is_thine_shall_be_mine': 'all_thats_thine_shall_be_mine',
}