Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlan Aguiar <alanjas@hotmail.com>2012-12-04 04:21:51 (GMT)
committer Alan Aguiar <alanjas@hotmail.com>2012-12-04 04:21:51 (GMT)
commit9a522864f203f72755cfd0577169919927f3f04e (patch)
tree4f51642e1278eee5022235a9e6184c71c31041ea
parent77dc6e88af463400a240f60e814b2687d4889764 (diff)
use short way for rocha routes
-rw-r--r--recursos/4rocha/datos/4rocha.py16
-rw-r--r--recursos/4rocha/datos/levels.py18
2 files changed, 17 insertions, 17 deletions
diff --git a/recursos/4rocha/datos/4rocha.py b/recursos/4rocha/datos/4rocha.py
index 82aec42..a0e2c82 100644
--- a/recursos/4rocha/datos/4rocha.py
+++ b/recursos/4rocha/datos/4rocha.py
@@ -75,12 +75,12 @@ HILLS = [
]
ROUTES = [
- (_('Ruta 9'), 250, 422, 626, 55),
- (_('Ruta 10'), 249, 441, 698, 30),
- (_('Ruta 109'), 248, 250, 699, -30),
- (_('Ruta 15'), 247, 291, 608, 90),
- (_('Ruta 13'), 246, 414, 498, 0),
- (_('Ruta 16'), 245, 528, 500, 80),
- (_('Ruta 14'), 244, 453, 374, -30),
- (_('Ruta 19'), 243, 499, 276, -20)
+ (_('Route %s') % 9, 250, 422, 626, 55),
+ (_('Route %s') % 10, 249, 441, 698, 30),
+ (_('Route %s') % 109, 248, 250, 699, -30),
+ (_('Route %s') % 15, 247, 291, 608, 90),
+ (_('Route %s') % 13, 246, 414, 498, 0),
+ (_('Route %s') % 16, 245, 528, 500, 80),
+ (_('Route %s') % 14, 244, 453, 374, -30),
+ (_('Route %s') % 19, 243, 499, 276, -20)
]
diff --git a/recursos/4rocha/datos/levels.py b/recursos/4rocha/datos/levels.py
index 734457a..28c6ef0 100644
--- a/recursos/4rocha/datos/levels.py
+++ b/recursos/4rocha/datos/levels.py
@@ -80,19 +80,19 @@ LEVEL4 = [
]
LEVEL5 = [
- 1,
+ 5,
_('Routes'),
['rutas', 'capitales'],
['capitales', 'ciudades'],
[
- (_('the %s') % _('Ruta 9'), 6, _('Ruta 9'), _('Va hasta el Chuy')),
- (_('the %s') % _('Ruta 10'), 6, _('Ruta 10'), _('Pasa por La Paloma')),
- (_('the %s') % _('Ruta 109'), 6, _('Ruta 109'), _('Termina en la\nciudad de Rocha')),
- (_('the %s') % _('Ruta 15'), 6, _('Ruta 15'), _('Pasa por Lascano')),
- (_('the %s') % _('Ruta 13'), 6, _('Ruta 13'), _('Está en el centro\ndel departamento')),
- (_('the %s') % _('Ruta 16'), 6, _('Ruta 16'), _('Pasa por Castillos')),
- (_('the %s') % _('Ruta 14'), 6, _('Ruta 14'), _('Viene del departamento\nde Lavalleja')),
- (_('the %s') % _('Ruta 19'), 6, _('Ruta 19'), _('Pasa por San Luis al Medio'))
+ (_('Route %s') % 9, _('Va hasta el Chuy')),
+ (_('Route %s') % 10, _('Pasa por La Paloma')),
+ (_('Route %s') % 109, _('Termina en la\nciudad de Rocha')),
+ (_('Route %s') % 15, _('Pasa por Lascano')),
+ (_('Route %s') % 13, _('Está en el centro\ndel departamento')),
+ (_('Route %s') % 16, _('Pasa por Castillos')),
+ (_('Route %s') % 14, _('Viene del departamento\nde Lavalleja')),
+ (_('Route %s') % 19, _('Pasa por San Luis al Medio'))
]
]