Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/BiblioJAM/JAMBoard.py
diff options
context:
space:
mode:
Diffstat (limited to 'BiblioJAM/JAMBoard.py')
-rw-r--r--BiblioJAM/JAMBoard.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/BiblioJAM/JAMBoard.py b/BiblioJAM/JAMBoard.py
index e15fc68..f464e09 100644
--- a/BiblioJAM/JAMBoard.py
+++ b/BiblioJAM/JAMBoard.py
@@ -11,6 +11,8 @@ import pygame, gc, sys
from pygame.locals import *
gc.enable()
+from gettext import gettext as _
+
import JAMGlobals as VG
from JAMBoardTypes import JAMBoardTypes
@@ -18,7 +20,7 @@ class JAMBoard(pygame.sprite.OrderedUpdates):
def __init__(self):
pygame.sprite.OrderedUpdates.__init__(self)
- self.tipo_buttons= "rectangulo"
+ self.tipo_buttons= _("rectangle")
self.posicion= (0,0)
self.text_buffer= ""
@@ -401,7 +403,7 @@ class Ejemplo(object):
def setup(self):
pygame.init()
pygame.display.set_mode(self.resolucion , 0, 0)
- pygame.display.set_caption("Ejemplo")
+ pygame.display.set_caption(_("Example"))
self.fondo = self.get_Fondo()