gettextify PS Summary, add note about py2exe
This commit is contained in:
parent
9ba2c5cdc4
commit
8abfff4cc0
|
@ -69,7 +69,7 @@ class PokerStarsSummary(TourneySummary):
|
||||||
elif lines[1].find("FPP")!=-1:
|
elif lines[1].find("FPP")!=-1:
|
||||||
self.currency="PSFP"
|
self.currency="PSFP"
|
||||||
else:
|
else:
|
||||||
raise FpdbParseError("didn't recognise buyin currency in:"+lines[1])
|
raise FpdbParseError(_("didn't recognise buyin currency in:")+lines[1])
|
||||||
|
|
||||||
if self.currency=="USD" or self.currency=="EUR":
|
if self.currency=="USD" or self.currency=="EUR":
|
||||||
result=self.re_BuyInFee.search(lines[1])
|
result=self.re_BuyInFee.search(lines[1])
|
||||||
|
@ -109,7 +109,7 @@ class PokerStarsSummary(TourneySummary):
|
||||||
useET=False
|
useET=False
|
||||||
result=self.re_DateTime.search(lines[currentLine])
|
result=self.re_DateTime.search(lines[currentLine])
|
||||||
if not result:
|
if not result:
|
||||||
print "in not result starttime"
|
print _("in not result starttime")
|
||||||
useET=True
|
useET=True
|
||||||
result=self.re_DateTimeET.search(lines[currentLine])
|
result=self.re_DateTimeET.search(lines[currentLine])
|
||||||
result=result.groupdict()
|
result=result.groupdict()
|
||||||
|
|
|
@ -69,6 +69,7 @@ Py2exe script for fpdb.
|
||||||
# See walkthrough in packaging directory for versions used
|
# See walkthrough in packaging directory for versions used
|
||||||
# Updates to this script have broken python 2.5 compatibility (gio module, msvcr71 references now msvcp90)
|
# Updates to this script have broken python 2.5 compatibility (gio module, msvcr71 references now msvcp90)
|
||||||
|
|
||||||
|
# steffeN: Doesnt seem necessary to gettext-ify this, but feel free to if you disagree
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
Loading…
Reference in New Issue
Block a user