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:47:47 (GMT)
committer Alan Aguiar <alanjas@hotmail.com>2012-12-04 04:47:47 (GMT)
commitfa0c56c62ead1b146ae693ec372115fc58c9a57f (patch)
tree57a53f40abd962d5bca9b974caedbc46dfe6ab8a
parent7a3d32ea43c5ca0197c932e4be5226e8d5d7a3a5 (diff)
use short way treinta y tres routes
-rw-r--r--recursos/4treinta_y_tres/datos/4treinta_y_tres.py12
-rw-r--r--recursos/4treinta_y_tres/datos/levels.py14
2 files changed, 13 insertions, 13 deletions
diff --git a/recursos/4treinta_y_tres/datos/4treinta_y_tres.py b/recursos/4treinta_y_tres/datos/4treinta_y_tres.py
index 577e516..2c19eaf 100644
--- a/recursos/4treinta_y_tres/datos/4treinta_y_tres.py
+++ b/recursos/4treinta_y_tres/datos/4treinta_y_tres.py
@@ -65,10 +65,10 @@ HILLS = [
]
ROUTES = [
- (_('Ruta 8'), 250, 350, 412, 60),
- (_('Ruta 19'), 249, 195, 527, 0),
- (_('Ruta 7'), 248, 24, 491, 90),
- (_('Ruta 98'), 247, 275, 439, -70),
- (_('Ruta 18'), 246, 436, 402, 35),
- (_('Ruta 17'), 245, 443, 513, -18)
+ (_('Route %s') % 8, 250, 350, 412, 60),
+ (_('Route %s') % 19, 249, 195, 527, 0),
+ (_('Route %s') % 7, 248, 24, 491, 90),
+ (_('Route %s') % 98, 247, 275, 439, -70),
+ (_('Route %s') % 18, 246, 436, 402, 35),
+ (_('Route %s') % 17, 245, 443, 513, -18)
]
diff --git a/recursos/4treinta_y_tres/datos/levels.py b/recursos/4treinta_y_tres/datos/levels.py
index 5765b28..ad425ed 100644
--- a/recursos/4treinta_y_tres/datos/levels.py
+++ b/recursos/4treinta_y_tres/datos/levels.py
@@ -67,17 +67,17 @@ LEVEL4 = [
]
LEVEL5 = [
- 1,
+ 5,
_('Routes'),
['rutas', 'capitales'],
['capitales', 'ciudades'],
[
- (_('the %s') % _('Ruta 8'), 6, _('Ruta 8'), _('Pasa por la capital\ndepartamental')),
- (_('the %s') % _('Ruta 19'), 6, _('Ruta 19'), _('Viene de Florida')),
- (_('the %s') % _('Ruta 7'), 6, _('Ruta 7'), _('Pasa por el límite\ncon Florida')),
- (_('the %s') % _('Ruta 98'), 6, _('Ruta 98'), _('Pasa por Isla Patrulla')),
- (_('the %s') % _('Ruta 18'), 6, _('Ruta 18'), _('Pasa por Vergara')),
- (_('the %s') % _('Ruta 17'), 6, _('Ruta 17'), _('Pasa por La Charqueada'))
+ (_('Route %s') % 8, _('Pasa por la capital\ndepartamental')),
+ (_('Route %s') % 19, _('Viene de Florida')),
+ (_('Route %s') % 7, _('Pasa por el límite\ncon Florida')),
+ (_('Route %s') % 98, _('Pasa por Isla Patrulla')),
+ (_('Route %s') % 18, _('Pasa por Vergara')),
+ (_('Route %s') % 17, _('Pasa por La Charqueada'))
]
]