Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Brassel Buss <dbrassel@gmail.com>2010-05-20 13:31:59 (GMT)
committer Daniel Brassel Buss <dbrassel@gmail.com>2010-05-20 13:31:59 (GMT)
commit38b5c4b99bee6c071cecd26353ef7ed375824ad3 (patch)
treec7fcddf6959778f86da0ed901b3a3fbd67e5b7fb
parent838e2c770a5a2d4d9e31b93b919486944b9579c8 (diff)
Minor changes to the python script file.
The changes are mostly related to sections in the code where the Uruguay word is showed. Now we show you Paraguay instead.
-rwxr-xr-xconozcopy.py17
1 files changed, 8 insertions, 9 deletions
diff --git a/conozcopy.py b/conozcopy.py
index e419cc7..5014828 100755
--- a/conozcopy.py
+++ b/conozcopy.py
@@ -1,6 +1,6 @@
#! /usr/bin/env python
-# Conozco Uruguay
-# Copyright (C) 2008,2009,2010 Gabriel Eirea
+# Conozco Paraguay
+# Copyright (C) 2010 ParaguayEduca
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -16,8 +16,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# Contact information:
-# Gabriel Eirea geirea@gmail.com
-# Ceibal Jam http://ceibaljam.org
+# Daniel Brassel Buss <dbrassel@gmail.com>
import sys
import random
@@ -222,7 +221,7 @@ class Nivel():
pygame.display.flip()
-class ConozcoUy():
+class ConozcoPy():
"""Clase principal del juego.
"""
@@ -454,7 +453,7 @@ class ConozcoUy():
self.pantalla.blit(self.terron,
(int(20*scale+shift_x),
int(20*scale+shift_y)))
- self.mostrarTexto("Acerca de Conozco Uruguay",
+ self.mostrarTexto("Acerca de Conozco Paraguay",
self.fuente40,
(int(600*scale+shift_x),
int(100*scale+shift_y)),
@@ -493,7 +492,7 @@ class ConozcoUy():
"""Pantalla con el menu principal del juego"""
global scale, shift_x, shift_y
self.pantalla.fill((0,0,0))
- self.mostrarTexto("Conozco Uruguay",
+ self.mostrarTexto("Conozco Paraguay",
self.fuente48,
(int(600*scale+shift_x),
int(80*scale+shift_y)),
@@ -595,7 +594,7 @@ class ConozcoUy():
"""Pantalla con el menu de directorios"""
global scale, shift_x, shift_y
self.pantalla.fill((0,0,0))
- self.mostrarTexto("Conozco Uruguay",
+ self.mostrarTexto("Conozco Paraguay",
self.fuente48,
(int(600*scale+shift_x),int(80*scale+shift_y)),
(255,255,255))
@@ -1653,7 +1652,7 @@ class ConozcoUy():
def main():
- juego = ConozcoUy()
+ juego = ConozcoPy()
juego.principal()