Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/finishGame.py
diff options
context:
space:
mode:
Diffstat (limited to 'finishGame.py')
-rwxr-xr-xfinishGame.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/finishGame.py b/finishGame.py
index 9fd3f8a..8ff5035 100755
--- a/finishGame.py
+++ b/finishGame.py
@@ -5,6 +5,7 @@ import pygame,sys
import txtlib
from pygame.locals import *
from constants import *
+from gettext import gettext as _
def finishing():
pygame.init()
@@ -12,13 +13,13 @@ def finishing():
screen = pygame.display.set_mode(screen_size)
text = txtlib.Text((screen_size[0]-200,screen_size[1]-200), 'freesans')
- text.text = '''Actividad Esquiador terminada!
+ text.text = _('''Actividad Esquiador terminada!
\nModalidad:
\nPuntaje:
\nFelicitaciones ! ! ! ! !
\nEste juego permite diferenciar entre los diferentes tipos de numeros.
\nGracias por jugarlo, y buena suerte!
- '''
+ ''')
text.add_style(0, 30, txtlib.FONT, './fonts/ice_sticks.ttf')
text.add_style(0, 30, txtlib.SIZE,(screen_size[0]*25)/800)