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:28:08 (GMT)
committer Alan Aguiar <alanjas@hotmail.com>2012-12-04 04:28:08 (GMT)
commit4a1e58f24d23e3fc35585b1bfa6a688ea23da67b (patch)
tree9ee68355fb4451d175f6e5e26b6db85facc42234
parent333d5a3a222a0cb2ca62ae5edc9c3838154b7587 (diff)
use short way artigas routes
-rw-r--r--recursos/4artigas/datos/4artigas.py6
-rw-r--r--recursos/4artigas/datos/levels.py8
2 files changed, 7 insertions, 7 deletions
diff --git a/recursos/4artigas/datos/4artigas.py b/recursos/4artigas/datos/4artigas.py
index 036bc56..7c18c99 100644
--- a/recursos/4artigas/datos/4artigas.py
+++ b/recursos/4artigas/datos/4artigas.py
@@ -70,7 +70,7 @@ HILLS = [
]
ROUTES = [
- (_('Ruta 3'), 250, 98, 316, 75),
- (_('Ruta 4'), 249, 425, 398, 50),
- (_('Ruta 30'), 248, 378, 291, 0)
+ (_('Route %s') % 3, 250, 98, 316, 75),
+ (_('Route %s') % 4, 249, 425, 398, 50),
+ (_('Route %s') % 30, 248, 378, 291, 0)
]
diff --git a/recursos/4artigas/datos/levels.py b/recursos/4artigas/datos/levels.py
index e1868bb..09d113b 100644
--- a/recursos/4artigas/datos/levels.py
+++ b/recursos/4artigas/datos/levels.py
@@ -73,14 +73,14 @@ LEVEL4 = [
]
LEVEL5 = [
- 1,
+ 5,
_('Routes'),
['rutas', 'capitales'],
['capitales', 'ciudades'],
[
- (_('the %s') % _('Ruta 3'), 6, _('Ruta 3'), _('La Ruta 3 recorre\nel litoral del país')),
- (_('the %s') % _('Ruta 4'), 6, _('Ruta 4'), _('Llega hasta la capital\ndel departamento')),
- (_('the %s') % _('Ruta 30'), 6, _('Ruta 30'), _('Atraviesa todo el departamento'))
+ (_('Route %s') % 3, _('La Ruta 3 recorre\nel litoral del país')),
+ (_('Route %s') % 4, _('Llega hasta la capital\ndel departamento')),
+ (_('Route %s') % 30, _('Atraviesa todo el departamento'))
]
]