Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/recursos/4canelones/datos/levels.py
blob: f411bb2dfde1a2b4021ecc934d3404908fb056a5 (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
# -*- coding: utf-8 -*-

from gettext import gettext as _

LEVEL1 = [
        1,
        _('Cities'),
        ['lineasDepto', 'capitales', 'ciudades'],
        [],
[
    (_('the city of %s') % _('Santa Lucía'), 2, _('Santa Lucía'), _("It's on the border\nwith %s") % _('San José')),
    (_('the city of %s') % _('Aguas Corrientes'), 2, _('Aguas Corrientes'), _("It's on the border\nwith %s") % _('San José')),
    (_('the city of %s') % _('Los Cerrillos'), 2, _('Los Cerrillos'), _("It's in the west")),
    (_('the city of %s') % _('Juanicó'), 2, _('Juanicó'), _("It's at south of the capital")),
    (_('the city of %s') % _('Canelones'), 2, _('Canelones'), _("It's the capital of\nthe department")),
    (_('the city of %s') % _('Progreso'), 2, _('Progreso'), _("It's in the west")),
    (_('the city of %s') % _('Las Piedras'), 2, _('Las Piedras'), _("It's near of %s") % _('Montevideo')),
    (_('the city of %s') % _('La Paz'), 2, _('La Paz'), _("It's on the border\nwith %s") % _('Montevideo')),
    (_('the city of %s') % _('San Antonio'), 2, _('San Antonio'), _("It's in the %s") % _('center-north')),
    (_('the city of %s') % _('Santa Rosa'), 2, _('Santa Rosa'), _("It's in the %s") % _('center-north')),
    (_('the city of %s') % _('Sauce'), 2, _('Sauce'), _("It's in the center")),
    (_('the city of %s') % _('Toledo'), 2, _('Toledo'), _("It's on the border\nwith %s") % _('Montevideo')),
    (_('the city of %s') % _('San Ramón'), 2, _('San Ramón'), _("It's in the north")),
    (_('the city of %s') % _('San Bautista'), 2, _('San Bautista'), _("It's in the %s") % _('center-north')),
    (_('the city of %s') % _('San Jacinto'), 2, _('San Jacinto'), _("It's in the center")),
    (_('the city of %s') % _('Suárez'), 2, _('Suárez'), _("It's near of %s") % _('Pando')),
    (_('the city of %s') % _('Pando'), 2, _('Pando'), _("It's near of %s") % _('Montevideo')),
    (_('the city of %s') % _('Empalme Olmos'), 2, _('Empalme Olmos'), _("It's near of %s") % _('Pando')),
    (_('the resort of %s') % _('Salinas'), 2, _('Salinas'), _("It's an resort\nof %s") % _('Río de la Plata')),
    (_('the city of %s') % _('Tala'), 2, _('Tala'), _("It's in the northeast")),
    (_('the resort of %s') % _('Atlántida'), 2, _('Atlántida'), _("It's an important resort")),
    (_('the resort of %s') % _('Parque del Plata'), 2, _('Parque del Plata'), _("It's an resort\nof %s") % _('Costa de Oro')),
    (_('the resort of %s') % _('La Floresta'), 2, _('La Floresta'), _("It's an resort\nof %s") % _('Costa de Oro')),
    (_('the city of %s') % _('Migues'), 2, _('Migues'), _("It's in the east")),
    (_('the city of %s') % _('Montes'), 2, _('Montes'), _("It's on the border\nwith %s") % _('Lavalleja')),
    (_('the city of %s') % _('Soca'), 2, _('Soca'), _("It's in the southeast")),
    (_('the resort of %s') % _('San Luis'), 2, _('San Luis'), _("It's an resort")),
    (_('the city of %s') % _('Piedras de Afilar'), 2, _('Piedras de Afilar'), _("It's in the southeast")),
    (_('the resort of %s') % _('Lagomar'), 2, _('Lagomar'), _("It's in %s") % _('Ciudad de la Costa')),
    (_('the resort of %s') % _('Solymar'), 2, _('Solymar'), _("It's in %s") % _('Ciudad de la Costa')),
    (_('the resort of %s') % _('El Pinar'), 2, _('El Pinar'), _("It's in %s") % _('Ciudad de la Costa')),
    (_('the resort of %s') % _('Cuchilla Alta'), 2, _('Cuchilla Alta'), _("It's an resort\nof %s") % _('Costa de Oro')),
    (_('the resort of %s') % _('Jaureguiberry'), 2, _('Jaureguiberry'), _("It's on the border\nwith %s") % _('Maldonado')),
    (_('the resort of %s') % _('Bello Horizonte'), 2, _('Bello Horizonte'), _("It's an resort\nof %s") % _('Costa de Oro')),
    (_('the %s') % _('Parque Roosvelt'), 2, _('Parque Roosvelt'), _("It's on the border\nwith %s") % _('Montevideo'))
]
]

LEVEL2 = [
        1,
        _('Information'),
        ['lineasDepto', 'capitales', 'ciudades'],
        ['capitales', 'ciudades'],
[
    (_('where was found the\nlargest cemetery of\nprehistoric animals of\nSouth America'), 2, _('Sauce'), _('It is the birthplace of Artigas')),
    (_('where is the only\ncemetery of the Jewish\nreligion in Uruguay'), 2, _('La Paz'), _("It's on the border\nwith %s") % _('Montevideo')),
    (_('one of the main\nsites of wine production'), 2, _('Santa Rosa'), _("It's in the center")),
    (_('the city that bearing\nthe name of interim\npresident of Uruguay\nbetween 1843 and 1852'), 2, _('Suárez'), _("It's near of %s") % _('Pando')),
    (_('where was Hernandarias\nand noted the "great abundance\nand fertility of this land"'), 2, _('Los Cerrillos'), _("It's in the west")),
    (_('a place that has had\ncountless exponents of\nmusic and art'), 2, _('San Bautista'), _("It's in the %s") % _('center-north')),
    (_('a city whose name\nmeans the existence of\na sense of improvement\nin the human condition'), 2, _('Progreso'), _("It's near of %s") % _('Montevideo')),
    (_('where there is a\nmonument to the\nindependence of the\nRepublic of 8 meters'), 2, _('Migues'), _("It's in the east")),
    (_('a town whose name\nderives from the\ninstallation of pumping\nplants, water filtering\nand purification'), 2, _('Aguas Corrientes'), _("It's on the border\nwith %s") % _('San José')),
    (_('a city whose name\ncomes from being a\nformer mining area\nof stone masons'), 2, _('Las Piedras'), _("It's where there was\na major battle \nfor independence")),
    (_('an important commercial\nand industrial center\nof the department'), 2, _('Pando'), _("It's near of %s") % _('Montevideo'))
]
]

LEVEL3 = [
        1,
        _('resorts'),
        ['lineasDepto', 'capitales', 'ciudades'],
        ['capitales', 'ciudades'],
[
    (_('a resort with a lake\nlocated north of\nAvenue Giannattasio'), 2, _('Lagomar'), _('The name refers to\nthe salt waters of\nthe Rio de la Plata')),
    (_('where is the original\nBread Museum'), 2, _('Solymar'), _('The name refers\nto the summer')),
    (_('where is the Autodrome\nVictor Borrat Fabini'), 2, _('El Pinar'), _("It's where the first\ntoll to the East")),
    (_('a resort that welcomes\nyou with a bow\non the route'), 2, _('Salinas'), _("It's near of %s") % _('Atlántida')),
    (_('one of the most popular\nresorts and preferred\nby tourists'), 2, _('Atlántida'), _('It is on a peninsula')),
    (_('a resort that is on\nthe stream Solís Chico'), 2, _('Parque del Plata'), _('It is east of Atlántida')),
    (_('one of the oldest\nresorts on the\nCosta de Oro'), 2, _('La Floresta'), _('The name refers\nto the vegetation')),
    (_('where there is a\nfishing village'), 2, _('San Luis'), _('It has saint name')),
    (_('one of the most\npicturesque resorts\nin the Costa de Oro'), 2, _('Cuchilla Alta'), _('It is famous for\nits freshwater jet\non the beach')),
    (_('The resort that is\nsituated on the\nbanks of the\nArroyo Solís Grande'), 2, _('Jaureguiberry'), _("It's the last resort of\nCosta de Oro")),
    (_('where Arabian horses\nruns international rallies'), 2, _('Bello Horizonte'), _("It's near of %s") % _('La Floresta')),
    (_('where creoles are\nperformed during Holy Week'), 2, _('Parque Roosvelt'), _("It's on the border\nwith %s") % _('Montevideo'))
]
]
	
LEVEL3 = [
        15,
        _('Waterways'),
        ['lineasDepto', 'rios'],
        [],
[
    (_('Río de la Plata'), _("It's in the south")),
    (_('Río Santa Lucía'), _("It's in the north")),
    (_('Arroyo Vejigas'), _("It's in the north")),
    (_('Arroyo del Tala'), _("It's in the north")),
    (_('Arroyo Sarandí'), _("It's in the east")),
    (_('Arroyo Canelón Grande'), _("It's in the northwest")),
    (_('Arroyo Canelón Chico'), _("It's in the west")),
    (_('Arroyo Pando'), _('Flows in the %s') % _('Río de la Plata')),
    (_('Arroyo Solís Chico'), _('Flows in the %s') % _('Río de la Plata')),
    (_('Arroyo Solís Grande'), _("It's on the border\nwith %s") % _('Maldonado')),
    (_('Arroyo Mosquitos'), _("It's in the southeast")),
    (_('Arroyo Sauce'), _("It's in the center")),
    (_('Arroyo Brujas Grande'), _("It's in the west")),
    (_('Arroyo de las Piedras'), _("It's on the border\nwith %s") % _('Montevideo')),
    (_('Arroyo Colorado'), _("It's in the west")),
    (_('Arroyo Toledo'), _("It's on the border\nwith %s") % _('Montevideo')),
    (_('Arroyo Carrasco'), _("It's on the border\nwith %s") % _('Montevideo'))
]
]

LEVEL4 = [
        1,
        _('Elevations'),
        ['cuchillas', 'cerros'],
        [],
[
    (_('the %(f)s') % {'f': _('Cuchilla Grande')}, 4, _('Cuchilla Grande'), _('Try again')),
    (_('the %(f)s') % {'f': _('Cuchilla Cabo de Hornos')}, 4, _('Cabo de Hornos'), _("It's in the east"))
]
]

LEVEL5 = [
        5,
        _('Routes'),
        ['rutas', 'capitales'],
        ['capitales', 'ciudades'],
[
    (_('Route %s') % 5, _('Passes through of %s') % _('Canelones')),
    (_('Route %s') % 6, _('Passes through of %s') % _('Sauce')),
    (_('Route %s') % 7, _('Passes through of %s') % _('San Jacinto')),
    (_('Route %s') % 8, _('Passes through of %s') % _('Pando')),
    (_('Route %s') % 9, _('Try again')),
    (_('Route %s') % 'Interbalnearia', _('Try again')),
    (_('Route %s') % 11, _('Ends in %s') % _('Atlántida'))
]
]

LEVELS = [LEVEL1, LEVEL2, LEVEL3, LEVEL4, LEVEL5]