diff frontends/sortilege/window.py @ 70:8f2ed279784b

i18n - gettext support added in frontends - first draft of frontends french translation
author Goffi <goffi@goffi.org>
date Fri, 05 Mar 2010 20:33:10 +1100
parents a5b5fb5fc9fd
children
line wrap: on
line diff
--- a/frontends/sortilege/window.py	Wed Mar 03 17:12:23 2010 +1100
+++ b/frontends/sortilege/window.py	Fri Mar 05 20:33:10 2010 +1100
@@ -25,10 +25,6 @@
 import pdb
 
 
-def echo(message):
-        return
-        os.system('echo "'+str(message)+'" >> /tmp/toto')
-
 class Window():
     def __init__(self, parent, height, width, y, x, border=False, title="", code="utf-8"):
         self.__border=border
@@ -93,7 +89,6 @@
         self.__coordAdjust(self.__coords)
         height,width,y,x=self.__coords
        
-        echo ("newwin %d %d %d %d" % (height, width, y, x))
         self.window = self.__parent.subwin(height, width, y, x)
         self.defInsideCoord()