gettext-ify GuiPositionalStats.py
This commit is contained in:
parent
c87c0f0f9d
commit
215bc5b0f3
|
@ -132,7 +132,7 @@ class GuiPositionalStats (threading.Thread):
|
||||||
def toggleCallback(self, widget, data=None):
|
def toggleCallback(self, widget, data=None):
|
||||||
# print "%s was toggled %s" % (data, ("OFF", "ON")[widget.get_active()])
|
# print "%s was toggled %s" % (data, ("OFF", "ON")[widget.get_active()])
|
||||||
self.activesite = data
|
self.activesite = data
|
||||||
print "DEBUG: activesite set to %s" %(self.activesite)
|
print _("DEBUG: activesite set to %s") %(self.activesite)
|
||||||
|
|
||||||
def refreshStats(self, widget, data):
|
def refreshStats(self, widget, data):
|
||||||
try: self.stats_vbox.destroy()
|
try: self.stats_vbox.destroy()
|
||||||
|
@ -163,13 +163,13 @@ class GuiPositionalStats (threading.Thread):
|
||||||
|
|
||||||
if not sitenos:
|
if not sitenos:
|
||||||
#Should probably pop up here.
|
#Should probably pop up here.
|
||||||
print "No sites selected - defaulting to PokerStars"
|
print _("No sites selected - defaulting to PokerStars")
|
||||||
sitenos = [2]
|
sitenos = [2]
|
||||||
if not playerids:
|
if not playerids:
|
||||||
print "No player ids found"
|
print _("No player ids found")
|
||||||
return
|
return
|
||||||
if not limits:
|
if not limits:
|
||||||
print "No limits found"
|
print _("No limits found")
|
||||||
return
|
return
|
||||||
|
|
||||||
self.createStatsTable(vbox, playerids, sitenos, limits, seats, dates)
|
self.createStatsTable(vbox, playerids, sitenos, limits, seats, dates)
|
||||||
|
@ -318,7 +318,7 @@ class GuiPositionalStats (threading.Thread):
|
||||||
vbox.show_all()
|
vbox.show_all()
|
||||||
|
|
||||||
self.db.rollback()
|
self.db.rollback()
|
||||||
print "Positional Stats page displayed in %4.2f seconds" % (time() - starttime)
|
print _("Positional Stats page displayed in %4.2f seconds") % (time() - starttime)
|
||||||
#end def fillStatsFrame(self, vbox):
|
#end def fillStatsFrame(self, vbox):
|
||||||
|
|
||||||
def refineQuery(self, query, playerids, sitenos, limits, seats, dates):
|
def refineQuery(self, query, playerids, sitenos, limits, seats, dates):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user