Coverage for website/utils/countries.py: 100.00%
2 statements
« prev ^ index » next coverage.py v7.6.7, created at 2025-08-14 10:31 +0000
« prev ^ index » next coverage.py v7.6.7, created at 2025-08-14 10:31 +0000
1from django.utils.translation import gettext_lazy as _
3EUROPE = (
4 ("AX", _("Åland Islands")),
5 ("AL", _("Albania")),
6 ("AD", _("Andorra")),
7 ("AT", _("Austria")),
8 ("BY", _("Belarus")),
9 ("BE", _("Belgium")),
10 ("BA", _("Bosnia and Herzegovina")),
11 ("BG", _("Bulgaria")),
12 ("HR", _("Croatia")),
13 ("CZ", _("Czechia")),
14 ("DK", _("Denmark")),
15 ("EE", _("Estonia")),
16 ("FO", _("Faroe Islands")),
17 ("FI", _("Finland")),
18 ("FR", _("France")),
19 ("DE", _("Germany")),
20 ("GI", _("Gibraltar")),
21 ("GR", _("Greece")),
22 ("GG", _("Guernsey")),
23 ("VA", _("Vatican City")),
24 ("HU", _("Hungary")),
25 ("IS", _("Iceland")),
26 ("IE", _("Ireland")),
27 ("IM", _("Isle of Man")),
28 ("IT", _("Italy")),
29 ("JE", _("Jersey")),
30 ("LV", _("Latvia")),
31 ("LI", _("Liechtenstein")),
32 ("LT", _("Lithuania")),
33 ("LU", _("Luxembourg")),
34 ("MK", _("Macedonia (FYROM)")),
35 ("MT", _("Malta")),
36 ("MD", _("Moldova")),
37 ("MC", _("Monaco")),
38 ("ME", _("Montenegro")),
39 ("NL", _("Netherlands")),
40 ("NO", _("Norway")),
41 ("PL", _("Poland")),
42 ("PT", _("Portugal")),
43 ("RO", _("Romania")),
44 ("RU", _("Russian Federation")),
45 ("SM", _("San Marino")),
46 ("RS", _("Serbia")),
47 ("SK", _("Slovakia")),
48 ("SI", _("Slovenia")),
49 ("ES", _("Spain")),
50 ("SJ", _("Svalbard and Jan Mayen")),
51 ("SE", _("Sweden")),
52 ("CH", _("Switzerland")),
53 ("UA", _("Ukraine")),
54 ("GB", _("United Kingdom")),
55)