From 3509beb828d15df567b24fd10cee71e9bc0e0b23 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Mon, 27 Sep 2010 09:22:07 +0200 Subject: [PATCH] some missing _() --- pyfpdb/HUD_main.pyw | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw index c3ac5d18..fdba5108 100755 --- a/pyfpdb/HUD_main.pyw +++ b/pyfpdb/HUD_main.pyw @@ -131,16 +131,16 @@ class HUD_main(object): print hud, hud.table.name, "moved", hud.table.x, hud.table.y def client_resized(self, widget, hud): - print "Client resized" + print _("Client resized") def client_destroyed(self, widget, hud): # call back for terminating the main eventloop self.kill_hud(None, hud.table.name) def game_changed(self, widget, hud): - print "Game Changed." + print _("Game changed.") def table_changed(self, widget, hud): - print "Table Changed." + print _("Table changed.") self.kill_hud(None, hud.table.name) def destroy(self, *args): # call back for terminating the main eventloop