-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtranslate.py
104 lines (99 loc) · 1.61 KB
/
translate.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
##This file contains strings that have to be detected by django-admin.py
##makemessages
## country names
_("Austria")
_("Florence")
_("France")
_("Milan")
_("Naples")
_("Papacy")
_("Turks")
_("Venice")
_("Savoy")
_("H. Roman Empire")
_("Genoa")
_("Spanish Empire")
## scenario names
_("Development")
_("The Spanish Preponderance")
_("The Balance of Power")
_("Struggle for Dominance I")
_("Struggle for Dominance II")
_("The Death of the Duke of Milan")
## area names (excluding the areas whose name is the one of a country)
_("Albania")
_("Ancona")
_("Aquila")
_("Arezzo")
_("Avignon")
_("Bari")
_("Bergamo")
_("Bologna")
_("Bosnia")
_("Capua")
_("Carniola")
_("Carinthia")
_("Central Mediterranean")
_("Como")
_("Corsica")
_("Cremona")
_("Croatia")
_("Dalmatia")
_("Durazzo")
_("Ferrara")
_("Fornovo")
_("Friuli")
_("Genoa")
_("Gulf of Lions")
_("Gulf of Naples")
_("Herzegovina")
_("Hungary")
_("Ionian Sea")
_("Istria")
_("Lower Adriatic")
_("Ligurian Sea")
_("Lucca")
_("Mantua")
_("Marseille")
_("Messina")
_("Modena")
_("Montferrat")
_("Otranto")
_("Padua")
_("Palermo")
_("Parma")
_("Patrimony")
_("Pavia")
_("Perugia")
_("Piombino")
_("Pistoia")
_("Pisa")
_("Provence")
_("Ragusa")
_("Rome")
_("Salerno")
_("Saluzzo")
_("Sardinia")
_("Savoy")
_("Siena")
_("Slavonia")
_("Spoleto")
_("Swiss")
_("Treviso")
_("Trent")
_("Thyrrenian Sea")
_("Tunis")
_("Turin")
_("Tyrol")
_("Upper Adriatic")
_("Urbino")
_("Venice")
_("Verona")
_("Western Mediterranean")
## Special units titles
_("Regular")
_("Citizen militia")
_("Elite mercenaries")
_("Elite professionals")
## subject of the # code email
_("Create an acccount on %(domain)s")