more string unification, update l10n files
This commit is contained in:
parent
d7697f4328
commit
1fac2ffe13
|
@ -52,7 +52,7 @@ else:
|
||||||
m = hhc.re_PlayerInfo.finditer(filecontents)
|
m = hhc.re_PlayerInfo.finditer(filecontents)
|
||||||
|
|
||||||
outfile = options.filename+".anon"
|
outfile = options.filename+".anon"
|
||||||
print _("Output being written to"), outfile
|
print (_("Output being written to %s") % outfile)
|
||||||
|
|
||||||
savestdout = sys.stdout
|
savestdout = sys.stdout
|
||||||
fsock = open(outfile,"w")
|
fsock = open(outfile,"w")
|
||||||
|
|
|
@ -105,7 +105,7 @@ class Betfair(HandHistoryConverter):
|
||||||
def readHandInfo(self, hand):
|
def readHandInfo(self, hand):
|
||||||
m = self.re_HandInfo.search(hand.handText)
|
m = self.re_HandInfo.search(hand.handText)
|
||||||
if(m == None):
|
if(m == None):
|
||||||
log.error(_("Didn't match re_HandInfo"))
|
log.error(_("No match in readHandInfo."))
|
||||||
raise FpdbParseError(_("No match in readHandInfo."))
|
raise FpdbParseError(_("No match in readHandInfo."))
|
||||||
logging.debug("HID %s, Table %s" % (m.group('HID'), m.group('TABLE')))
|
logging.debug("HID %s, Table %s" % (m.group('HID'), m.group('TABLE')))
|
||||||
hand.handid = m.group('HID')
|
hand.handid = m.group('HID')
|
||||||
|
@ -196,7 +196,7 @@ class Betfair(HandHistoryConverter):
|
||||||
elif action.group('ATYPE') == 'checks':
|
elif action.group('ATYPE') == 'checks':
|
||||||
hand.addCheck( street, action.group('PNAME'))
|
hand.addCheck( street, action.group('PNAME'))
|
||||||
else:
|
else:
|
||||||
sys.stderr.write(_("DEBUG: ") + _("unimplemented readAction: '%s' '%s'") % (action.group('PNAME'),action.group('ATYPE')))
|
sys.stderr.write(_("DEBUG: ") + _("Unimplemented readAction: '%s' '%s'") % (action.group('PNAME'),action.group('ATYPE')))
|
||||||
|
|
||||||
|
|
||||||
def readShowdownActions(self, hand):
|
def readShowdownActions(self, hand):
|
||||||
|
|
|
@ -160,7 +160,7 @@ or None if we fail to get the info """
|
||||||
def readHandInfo(self, hand):
|
def readHandInfo(self, hand):
|
||||||
m = self.re_HandInfo.search(hand.handText)
|
m = self.re_HandInfo.search(hand.handText)
|
||||||
if m is None:
|
if m is None:
|
||||||
logging.info(_("Didn't match re_HandInfo"))
|
logging.info(_("No match in readHandInfo."))
|
||||||
logging.info(hand.handText)
|
logging.info(hand.handText)
|
||||||
raise FpdbParseError(_("No match in readHandInfo."))
|
raise FpdbParseError(_("No match in readHandInfo."))
|
||||||
logging.debug("HID %s-%s, Table %s" % (m.group('HID1'),
|
logging.debug("HID %s-%s, Table %s" % (m.group('HID1'),
|
||||||
|
|
|
@ -142,7 +142,7 @@ class Everest(HandHistoryConverter):
|
||||||
def readHandInfo(self, hand):
|
def readHandInfo(self, hand):
|
||||||
m = self.re_HandInfo.search(hand.handText)
|
m = self.re_HandInfo.search(hand.handText)
|
||||||
if m is None:
|
if m is None:
|
||||||
logging.info(_("Didn't match re_HandInfo"))
|
logging.info(_("No match in readHandInfo."))
|
||||||
logging.info(hand.handText)
|
logging.info(hand.handText)
|
||||||
raise FpdbParseError(_("No match in readHandInfo."))
|
raise FpdbParseError(_("No match in readHandInfo."))
|
||||||
hand.handid = m.group('HID')
|
hand.handid = m.group('HID')
|
||||||
|
|
|
@ -334,7 +334,7 @@ class OnGame(HandHistoryConverter):
|
||||||
elif action.group('ATYPE') == ' stands pat':
|
elif action.group('ATYPE') == ' stands pat':
|
||||||
hand.addStandsPat( street, action.group('PNAME'))
|
hand.addStandsPat( street, action.group('PNAME'))
|
||||||
else:
|
else:
|
||||||
print (_("DEBUG: ") + _("unimplemented readAction: '%s' '%s'") % (action.group('PNAME'), action.group('ATYPE')))
|
print (_("DEBUG: ") + _("Unimplemented readAction: '%s' '%s'") % (action.group('PNAME'), action.group('ATYPE')))
|
||||||
|
|
||||||
def readShowdownActions(self, hand):
|
def readShowdownActions(self, hand):
|
||||||
for shows in self.re_ShowdownAction.finditer(hand.handText):
|
for shows in self.re_ShowdownAction.finditer(hand.handText):
|
||||||
|
|
|
@ -436,7 +436,7 @@ class PokerStars(HandHistoryConverter):
|
||||||
elif action.group('ATYPE') == ' stands pat':
|
elif action.group('ATYPE') == ' stands pat':
|
||||||
hand.addStandsPat( street, action.group('PNAME'))
|
hand.addStandsPat( street, action.group('PNAME'))
|
||||||
else:
|
else:
|
||||||
print (_("DEBUG: ") + _("unimplemented readAction: '%s' '%s'") % (action.group('PNAME'),action.group('ATYPE')))
|
print (_("DEBUG: ") + _("Unimplemented readAction: '%s' '%s'") % (action.group('PNAME'),action.group('ATYPE')))
|
||||||
|
|
||||||
|
|
||||||
def readShowdownActions(self, hand):
|
def readShowdownActions(self, hand):
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -1,20 +1,20 @@
|
||||||
# SOME DESCRIPTIVE TITLE.
|
# SOME DESCRIPTIVE TITLE.
|
||||||
# Copyright (C) YEAR ORGANIZATION
|
# Copyright (C) YEAR ORGANIZATION
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
# Steffen Schaumburg <steffen@schaumburger.info>, 2011.
|
||||||
#
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Free Poker Database\n"
|
"Project-Id-Version: Free Poker Database\n"
|
||||||
"POT-Creation-Date: 2011-03-10 06:16+CET\n"
|
"POT-Creation-Date: 2011-03-11 07:06+CET\n"
|
||||||
"PO-Revision-Date: 2011-03-10 01:42+0000\n"
|
"PO-Revision-Date: 2011-03-11 07:05+0200\n"
|
||||||
"Last-Translator: steffen123 <steffen@schaumburger.info>\n"
|
"Last-Translator: Steffen Schaumburg <steffen@schaumburger.info>\n"
|
||||||
"Language-Team: German (Germany) <fpdb-main@lists.sourceforge.net>\n"
|
"Language-Team: Fpdb\n"
|
||||||
"Language: de_DE\n"
|
"Language: de\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: ENCODING\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
"X-Generator: Virtaal 0.6.1\n"
|
||||||
"Generated-By: pygettext.py 1.5\n"
|
"Generated-By: pygettext.py 1.5\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
|
||||||
|
|
||||||
#: AbsoluteToFpdb.py:139 AbsoluteToFpdb.py:141 BetfairToFpdb.py:76
|
#: AbsoluteToFpdb.py:139 AbsoluteToFpdb.py:141 BetfairToFpdb.py:76
|
||||||
#: BetfairToFpdb.py:78 CarbonToFpdb.py:130 CarbonToFpdb.py:132
|
#: BetfairToFpdb.py:78 CarbonToFpdb.py:130 CarbonToFpdb.py:132
|
||||||
|
@ -44,7 +44,7 @@ msgstr "Keine Treffer für re_HandInfo"
|
||||||
|
|
||||||
#: AbsoluteToFpdb.py:207
|
#: AbsoluteToFpdb.py:207
|
||||||
msgid "readHandInfo: File name didn't match re_*InfoFromFilename"
|
msgid "readHandInfo: File name didn't match re_*InfoFromFilename"
|
||||||
msgstr ""
|
msgstr "readHandInfo: Dateiname wurde von re_*InfoFromFilename nicht erkannt"
|
||||||
|
|
||||||
#: AbsoluteToFpdb.py:208
|
#: AbsoluteToFpdb.py:208
|
||||||
msgid "File name: %s"
|
msgid "File name: %s"
|
||||||
|
@ -63,11 +63,11 @@ msgstr "Lese Antes"
|
||||||
|
|
||||||
#: AbsoluteToFpdb.py:287 BetfairToFpdb.py:160 FulltiltToFpdb.py:426
|
#: AbsoluteToFpdb.py:287 BetfairToFpdb.py:160 FulltiltToFpdb.py:426
|
||||||
msgid "Player bringing in: %s for %s"
|
msgid "Player bringing in: %s for %s"
|
||||||
msgstr ""
|
msgstr "Spieler macht Bring In: %s für %s"
|
||||||
|
|
||||||
#: AbsoluteToFpdb.py:290 EverleafToFpdb.py:230
|
#: AbsoluteToFpdb.py:290 EverleafToFpdb.py:230
|
||||||
msgid "No bringin found."
|
msgid "No bringin found."
|
||||||
msgstr "Kein Bringin gefunden."
|
msgstr "Kein Bring In gefunden."
|
||||||
|
|
||||||
#: AbsoluteToFpdb.py:297 EverleafToFpdb.py:237
|
#: AbsoluteToFpdb.py:297 EverleafToFpdb.py:237
|
||||||
msgid "No small blind"
|
msgid "No small blind"
|
||||||
|
@ -80,19 +80,19 @@ msgstr ""
|
||||||
#: AbsoluteToFpdb.py:351 CarbonToFpdb.py:267 EverestToFpdb.py:234
|
#: AbsoluteToFpdb.py:351 CarbonToFpdb.py:267 EverestToFpdb.py:234
|
||||||
#: EverestToFpdb.py:235 EverleafToFpdb.py:288
|
#: EverestToFpdb.py:235 EverleafToFpdb.py:288
|
||||||
msgid "Unimplemented readAction: %s %s"
|
msgid "Unimplemented readAction: %s %s"
|
||||||
msgstr ""
|
msgstr "Nicht implementierte readAction: %s %s"
|
||||||
|
|
||||||
#: AbsoluteToFpdb.py:401 BetfairToFpdb.py:222 CarbonToFpdb.py:298
|
#: AbsoluteToFpdb.py:401 BetfairToFpdb.py:222 CarbonToFpdb.py:298
|
||||||
#: EverleafToFpdb.py:326 FulltiltToFpdb.py:784 PartyPokerToFpdb.py:577
|
#: EverleafToFpdb.py:326 FulltiltToFpdb.py:784 PartyPokerToFpdb.py:577
|
||||||
#: PokerStarsToFpdb.py:467 Win2dayToFpdb.py:368 iPokerToFpdb.py:291
|
#: PokerStarsToFpdb.py:467 Win2dayToFpdb.py:368 iPokerToFpdb.py:291
|
||||||
msgid "parse input hand history"
|
msgid "parse input hand history"
|
||||||
msgstr ""
|
msgstr "Zu lesende Hand History"
|
||||||
|
|
||||||
#: AbsoluteToFpdb.py:402 BetfairToFpdb.py:223 CarbonToFpdb.py:299
|
#: AbsoluteToFpdb.py:402 BetfairToFpdb.py:223 CarbonToFpdb.py:299
|
||||||
#: EverleafToFpdb.py:327 FulltiltToFpdb.py:785 PartyPokerToFpdb.py:578
|
#: EverleafToFpdb.py:327 FulltiltToFpdb.py:785 PartyPokerToFpdb.py:578
|
||||||
#: PokerStarsToFpdb.py:468 Win2dayToFpdb.py:369 iPokerToFpdb.py:292
|
#: PokerStarsToFpdb.py:468 Win2dayToFpdb.py:369 iPokerToFpdb.py:292
|
||||||
msgid "output translation to"
|
msgid "output translation to"
|
||||||
msgstr ""
|
msgstr "Ausgabepfad"
|
||||||
|
|
||||||
#: AbsoluteToFpdb.py:403 BetfairToFpdb.py:224 CarbonToFpdb.py:300
|
#: AbsoluteToFpdb.py:403 BetfairToFpdb.py:224 CarbonToFpdb.py:300
|
||||||
#: EverleafToFpdb.py:328 FulltiltToFpdb.py:786 PartyPokerToFpdb.py:579
|
#: EverleafToFpdb.py:328 FulltiltToFpdb.py:786 PartyPokerToFpdb.py:579
|
||||||
|
@ -105,18 +105,14 @@ msgid "Could not find file %s"
|
||||||
msgstr "Konnte Datei %s nicht finden"
|
msgstr "Konnte Datei %s nicht finden"
|
||||||
|
|
||||||
#: Anonymise.py:55
|
#: Anonymise.py:55
|
||||||
msgid "Output being written to"
|
msgid "Output being written to %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: BetfairToFpdb.py:108 CarbonToFpdb.py:163 EverestToFpdb.py:145
|
#: BetfairToFpdb.py:108 BetfairToFpdb.py:109 CarbonToFpdb.py:163
|
||||||
#: EverleafToFpdb.py:145 iPokerToFpdb.py:156 iPokerToFpdb.py:158
|
#: CarbonToFpdb.py:165 EverestToFpdb.py:145 EverestToFpdb.py:147
|
||||||
msgid "Didn't match re_HandInfo"
|
|
||||||
msgstr "Keine Treffer für re_HandInfo"
|
|
||||||
|
|
||||||
#: BetfairToFpdb.py:109 CarbonToFpdb.py:165 EverestToFpdb.py:147
|
|
||||||
#: PokerStarsToFpdb.py:223
|
#: PokerStarsToFpdb.py:223
|
||||||
msgid "No match in readHandInfo."
|
msgid "No match in readHandInfo."
|
||||||
msgstr ""
|
msgstr "Keine Treffer für re_HandInfo"
|
||||||
|
|
||||||
#: BetfairToFpdb.py:123
|
#: BetfairToFpdb.py:123
|
||||||
msgid "readPlayerStacks: Less than 2 players found in a hand"
|
msgid "readPlayerStacks: Less than 2 players found in a hand"
|
||||||
|
@ -135,9 +131,9 @@ msgstr "Kein Bringin gefunden"
|
||||||
msgid "DEBUG: "
|
msgid "DEBUG: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: BetfairToFpdb.py:199 OnGameToFpdb.py:337 PokerStarsToFpdb.py:439
|
#: BetfairToFpdb.py:199 OnGameToFpdb.py:337 PartyPokerToFpdb.py:536
|
||||||
#: Win2dayToFpdb.py:341 WinamaxToFpdb.py:406
|
#: PokerStarsToFpdb.py:439
|
||||||
msgid "unimplemented readAction: '%s' '%s'"
|
msgid "Unimplemented readAction: '%s' '%s'"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Card.py:431
|
#: Card.py:431
|
||||||
|
@ -534,39 +530,39 @@ msgstr ""
|
||||||
msgid "***Error sending finish: "
|
msgid "***Error sending finish: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2401
|
#: Database.py:2405
|
||||||
msgid "invalid source in Database.createOrUpdateTourney"
|
msgid "invalid source in Database.createOrUpdateTourney"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2414
|
#: Database.py:2418
|
||||||
msgid "invalid source in Database.createOrUpdateTourneysPlayers"
|
msgid "invalid source in Database.createOrUpdateTourneysPlayers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2540
|
#: Database.py:2554
|
||||||
msgid "HandToWrite.init error: "
|
msgid "HandToWrite.init error: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2590
|
#: Database.py:2604
|
||||||
msgid "HandToWrite.set_all error: "
|
msgid "HandToWrite.set_all error: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2621
|
#: Database.py:2635
|
||||||
msgid "nutOmatic is id_player = %d"
|
msgid "nutOmatic is id_player = %d"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2629
|
#: Database.py:2643
|
||||||
msgid "query plan: "
|
msgid "query plan: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2638
|
#: Database.py:2652
|
||||||
msgid "cards ="
|
msgid "cards ="
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2641
|
#: Database.py:2655
|
||||||
msgid "get_stats took: %4.3f seconds"
|
msgid "get_stats took: %4.3f seconds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2643
|
#: Database.py:2657
|
||||||
msgid "press enter to continue"
|
msgid "press enter to continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -574,6 +570,10 @@ msgstr ""
|
||||||
msgid "Unable to recognise handinfo from: '%s'"
|
msgid "Unable to recognise handinfo from: '%s'"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: EverleafToFpdb.py:145 iPokerToFpdb.py:156 iPokerToFpdb.py:158
|
||||||
|
msgid "Didn't match re_HandInfo"
|
||||||
|
msgstr "Keine Treffer für re_HandInfo"
|
||||||
|
|
||||||
#: EverleafToFpdb.py:265
|
#: EverleafToFpdb.py:265
|
||||||
msgid "Everleaf readStudPlayerCards is only a stub."
|
msgid "Everleaf readStudPlayerCards is only a stub."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2887,10 +2887,6 @@ msgstr ""
|
||||||
msgid "Failed to detect currency. HID: %s: '%s'"
|
msgid "Failed to detect currency. HID: %s: '%s'"
|
||||||
msgstr "Konnte Währung nicht finden"
|
msgstr "Konnte Währung nicht finden"
|
||||||
|
|
||||||
#: PartyPokerToFpdb.py:536
|
|
||||||
msgid "Unimplemented readAction: '%s' '%s'"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: PokerStarsToFpdb.py:265
|
#: PokerStarsToFpdb.py:265
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Failed to detect currency: '%s'"
|
msgid "Failed to detect currency: '%s'"
|
||||||
|
@ -3357,6 +3353,10 @@ msgid ""
|
||||||
"using version %d.%d.%d. Your milage may vary."
|
"using version %d.%d.%d. Your milage may vary."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: Win2dayToFpdb.py:341 WinamaxToFpdb.py:406
|
||||||
|
msgid "unimplemented readAction: '%s' '%s'"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: WinTables.py:81
|
#: WinTables.py:81
|
||||||
msgid "Window %s not found. Skipping."
|
msgid "Window %s not found. Skipping."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2011-03-10 06:16+CET\n"
|
"POT-Creation-Date: 2011-03-11 07:06+CET\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -102,15 +102,11 @@ msgid "Could not find file %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Anonymise.py:55
|
#: Anonymise.py:55
|
||||||
msgid "Output being written to"
|
msgid "Output being written to %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: BetfairToFpdb.py:108 CarbonToFpdb.py:163 EverestToFpdb.py:145
|
#: BetfairToFpdb.py:108 BetfairToFpdb.py:109 CarbonToFpdb.py:163
|
||||||
#: EverleafToFpdb.py:145 iPokerToFpdb.py:156 iPokerToFpdb.py:158
|
#: CarbonToFpdb.py:165 EverestToFpdb.py:145 EverestToFpdb.py:147
|
||||||
msgid "Didn't match re_HandInfo"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: BetfairToFpdb.py:109 CarbonToFpdb.py:165 EverestToFpdb.py:147
|
|
||||||
#: PokerStarsToFpdb.py:223
|
#: PokerStarsToFpdb.py:223
|
||||||
msgid "No match in readHandInfo."
|
msgid "No match in readHandInfo."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -132,9 +128,9 @@ msgstr ""
|
||||||
msgid "DEBUG: "
|
msgid "DEBUG: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: BetfairToFpdb.py:199 OnGameToFpdb.py:337 PokerStarsToFpdb.py:439
|
#: BetfairToFpdb.py:199 OnGameToFpdb.py:337 PartyPokerToFpdb.py:536
|
||||||
#: Win2dayToFpdb.py:341 WinamaxToFpdb.py:406
|
#: PokerStarsToFpdb.py:439
|
||||||
msgid "unimplemented readAction: '%s' '%s'"
|
msgid "Unimplemented readAction: '%s' '%s'"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Card.py:431
|
#: Card.py:431
|
||||||
|
@ -520,39 +516,39 @@ msgstr ""
|
||||||
msgid "***Error sending finish: "
|
msgid "***Error sending finish: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2401
|
#: Database.py:2405
|
||||||
msgid "invalid source in Database.createOrUpdateTourney"
|
msgid "invalid source in Database.createOrUpdateTourney"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2414
|
#: Database.py:2418
|
||||||
msgid "invalid source in Database.createOrUpdateTourneysPlayers"
|
msgid "invalid source in Database.createOrUpdateTourneysPlayers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2540
|
#: Database.py:2554
|
||||||
msgid "HandToWrite.init error: "
|
msgid "HandToWrite.init error: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2590
|
#: Database.py:2604
|
||||||
msgid "HandToWrite.set_all error: "
|
msgid "HandToWrite.set_all error: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2621
|
#: Database.py:2635
|
||||||
msgid "nutOmatic is id_player = %d"
|
msgid "nutOmatic is id_player = %d"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2629
|
#: Database.py:2643
|
||||||
msgid "query plan: "
|
msgid "query plan: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2638
|
#: Database.py:2652
|
||||||
msgid "cards ="
|
msgid "cards ="
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2641
|
#: Database.py:2655
|
||||||
msgid "get_stats took: %4.3f seconds"
|
msgid "get_stats took: %4.3f seconds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2643
|
#: Database.py:2657
|
||||||
msgid "press enter to continue"
|
msgid "press enter to continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -560,6 +556,10 @@ msgstr ""
|
||||||
msgid "Unable to recognise handinfo from: '%s'"
|
msgid "Unable to recognise handinfo from: '%s'"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: EverleafToFpdb.py:145 iPokerToFpdb.py:156 iPokerToFpdb.py:158
|
||||||
|
msgid "Didn't match re_HandInfo"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: EverleafToFpdb.py:265
|
#: EverleafToFpdb.py:265
|
||||||
msgid "Everleaf readStudPlayerCards is only a stub."
|
msgid "Everleaf readStudPlayerCards is only a stub."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2808,10 +2808,6 @@ msgstr ""
|
||||||
msgid "Failed to detect currency. HID: %s: '%s'"
|
msgid "Failed to detect currency. HID: %s: '%s'"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: PartyPokerToFpdb.py:536
|
|
||||||
msgid "Unimplemented readAction: '%s' '%s'"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: PokerStarsToFpdb.py:265
|
#: PokerStarsToFpdb.py:265
|
||||||
msgid "Failed to detect currency: '%s'"
|
msgid "Failed to detect currency: '%s'"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3276,6 +3272,10 @@ msgstr ""
|
||||||
msgid "This module was developed and tested with version 2.8.18 of gtk. You are using version %d.%d.%d. Your milage may vary."
|
msgid "This module was developed and tested with version 2.8.18 of gtk. You are using version %d.%d.%d. Your milage may vary."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: Win2dayToFpdb.py:341 WinamaxToFpdb.py:406
|
||||||
|
msgid "unimplemented readAction: '%s' '%s'"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: WinTables.py:81
|
#: WinTables.py:81
|
||||||
msgid "Window %s not found. Skipping."
|
msgid "Window %s not found. Skipping."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: fpdb\n"
|
"Project-Id-Version: fpdb\n"
|
||||||
"POT-Creation-Date: 2011-03-10 06:16+CET\n"
|
"POT-Creation-Date: 2011-03-11 07:06+CET\n"
|
||||||
"PO-Revision-Date: \n"
|
"PO-Revision-Date: \n"
|
||||||
"Last-Translator: Javier Sánchez <donoban@gmail.com>\n"
|
"Last-Translator: Javier Sánchez <donoban@gmail.com>\n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
|
@ -99,15 +99,11 @@ msgid "Could not find file %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Anonymise.py:55
|
#: Anonymise.py:55
|
||||||
msgid "Output being written to"
|
msgid "Output being written to %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: BetfairToFpdb.py:108 CarbonToFpdb.py:163 EverestToFpdb.py:145
|
#: BetfairToFpdb.py:108 BetfairToFpdb.py:109 CarbonToFpdb.py:163
|
||||||
#: EverleafToFpdb.py:145 iPokerToFpdb.py:156 iPokerToFpdb.py:158
|
#: CarbonToFpdb.py:165 EverestToFpdb.py:145 EverestToFpdb.py:147
|
||||||
msgid "Didn't match re_HandInfo"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: BetfairToFpdb.py:109 CarbonToFpdb.py:165 EverestToFpdb.py:147
|
|
||||||
#: PokerStarsToFpdb.py:223
|
#: PokerStarsToFpdb.py:223
|
||||||
msgid "No match in readHandInfo."
|
msgid "No match in readHandInfo."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -129,9 +125,9 @@ msgstr ""
|
||||||
msgid "DEBUG: "
|
msgid "DEBUG: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: BetfairToFpdb.py:199 OnGameToFpdb.py:337 PokerStarsToFpdb.py:439
|
#: BetfairToFpdb.py:199 OnGameToFpdb.py:337 PartyPokerToFpdb.py:536
|
||||||
#: Win2dayToFpdb.py:341 WinamaxToFpdb.py:406
|
#: PokerStarsToFpdb.py:439
|
||||||
msgid "unimplemented readAction: '%s' '%s'"
|
msgid "Unimplemented readAction: '%s' '%s'"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Card.py:431
|
#: Card.py:431
|
||||||
|
@ -522,39 +518,39 @@ msgstr ""
|
||||||
msgid "***Error sending finish: "
|
msgid "***Error sending finish: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2401
|
#: Database.py:2405
|
||||||
msgid "invalid source in Database.createOrUpdateTourney"
|
msgid "invalid source in Database.createOrUpdateTourney"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2414
|
#: Database.py:2418
|
||||||
msgid "invalid source in Database.createOrUpdateTourneysPlayers"
|
msgid "invalid source in Database.createOrUpdateTourneysPlayers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2540
|
#: Database.py:2554
|
||||||
msgid "HandToWrite.init error: "
|
msgid "HandToWrite.init error: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2590
|
#: Database.py:2604
|
||||||
msgid "HandToWrite.set_all error: "
|
msgid "HandToWrite.set_all error: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2621
|
#: Database.py:2635
|
||||||
msgid "nutOmatic is id_player = %d"
|
msgid "nutOmatic is id_player = %d"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2629
|
#: Database.py:2643
|
||||||
msgid "query plan: "
|
msgid "query plan: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2638
|
#: Database.py:2652
|
||||||
msgid "cards ="
|
msgid "cards ="
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2641
|
#: Database.py:2655
|
||||||
msgid "get_stats took: %4.3f seconds"
|
msgid "get_stats took: %4.3f seconds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2643
|
#: Database.py:2657
|
||||||
msgid "press enter to continue"
|
msgid "press enter to continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -562,6 +558,10 @@ msgstr ""
|
||||||
msgid "Unable to recognise handinfo from: '%s'"
|
msgid "Unable to recognise handinfo from: '%s'"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: EverleafToFpdb.py:145 iPokerToFpdb.py:156 iPokerToFpdb.py:158
|
||||||
|
msgid "Didn't match re_HandInfo"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: EverleafToFpdb.py:265
|
#: EverleafToFpdb.py:265
|
||||||
msgid "Everleaf readStudPlayerCards is only a stub."
|
msgid "Everleaf readStudPlayerCards is only a stub."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2873,10 +2873,6 @@ msgstr ""
|
||||||
msgid "Failed to detect currency. HID: %s: '%s'"
|
msgid "Failed to detect currency. HID: %s: '%s'"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: PartyPokerToFpdb.py:536
|
|
||||||
msgid "Unimplemented readAction: '%s' '%s'"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: PokerStarsToFpdb.py:265
|
#: PokerStarsToFpdb.py:265
|
||||||
msgid "Failed to detect currency: '%s'"
|
msgid "Failed to detect currency: '%s'"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3342,6 +3338,10 @@ msgid ""
|
||||||
"using version %d.%d.%d. Your milage may vary."
|
"using version %d.%d.%d. Your milage may vary."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: Win2dayToFpdb.py:341 WinamaxToFpdb.py:406
|
||||||
|
msgid "unimplemented readAction: '%s' '%s'"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: WinTables.py:81
|
#: WinTables.py:81
|
||||||
msgid "Window %s not found. Skipping."
|
msgid "Window %s not found. Skipping."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Free Poker Database\n"
|
"Project-Id-Version: Free Poker Database\n"
|
||||||
"POT-Creation-Date: 2011-03-10 06:16+CET\n"
|
"POT-Creation-Date: 2011-03-11 07:06+CET\n"
|
||||||
"PO-Revision-Date: 2011-03-09 15:37+0000\n"
|
"PO-Revision-Date: 2011-03-09 15:37+0000\n"
|
||||||
"Last-Translator: kibbitzer <thomas.joannes@gmail.com>\n"
|
"Last-Translator: kibbitzer <thomas.joannes@gmail.com>\n"
|
||||||
"Language-Team: French (France) <>\n"
|
"Language-Team: French (France) <>\n"
|
||||||
|
@ -107,15 +107,12 @@ msgid "Could not find file %s"
|
||||||
msgstr "Impossible de trouver le fichier %s"
|
msgstr "Impossible de trouver le fichier %s"
|
||||||
|
|
||||||
#: Anonymise.py:55
|
#: Anonymise.py:55
|
||||||
msgid "Output being written to"
|
#, fuzzy
|
||||||
|
msgid "Output being written to %s"
|
||||||
msgstr "Enregistrement du résultat dans"
|
msgstr "Enregistrement du résultat dans"
|
||||||
|
|
||||||
#: BetfairToFpdb.py:108 CarbonToFpdb.py:163 EverestToFpdb.py:145
|
#: BetfairToFpdb.py:108 BetfairToFpdb.py:109 CarbonToFpdb.py:163
|
||||||
#: EverleafToFpdb.py:145 iPokerToFpdb.py:156 iPokerToFpdb.py:158
|
#: CarbonToFpdb.py:165 EverestToFpdb.py:145 EverestToFpdb.py:147
|
||||||
msgid "Didn't match re_HandInfo"
|
|
||||||
msgstr "Ne correspond pas à re_HandInfo"
|
|
||||||
|
|
||||||
#: BetfairToFpdb.py:109 CarbonToFpdb.py:165 EverestToFpdb.py:147
|
|
||||||
#: PokerStarsToFpdb.py:223
|
#: PokerStarsToFpdb.py:223
|
||||||
msgid "No match in readHandInfo."
|
msgid "No match in readHandInfo."
|
||||||
msgstr "Pas de correspondance dans readHandInfo"
|
msgstr "Pas de correspondance dans readHandInfo"
|
||||||
|
@ -137,10 +134,9 @@ msgstr "Bring-In non trouvé"
|
||||||
msgid "DEBUG: "
|
msgid "DEBUG: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: BetfairToFpdb.py:199 OnGameToFpdb.py:337 PokerStarsToFpdb.py:439
|
#: BetfairToFpdb.py:199 OnGameToFpdb.py:337 PartyPokerToFpdb.py:536
|
||||||
#: Win2dayToFpdb.py:341 WinamaxToFpdb.py:406
|
#: PokerStarsToFpdb.py:439
|
||||||
#, fuzzy
|
msgid "Unimplemented readAction: '%s' '%s'"
|
||||||
msgid "unimplemented readAction: '%s' '%s'"
|
|
||||||
msgstr "readAction non implémenté: '%s' '%s'"
|
msgstr "readAction non implémenté: '%s' '%s'"
|
||||||
|
|
||||||
#: Card.py:431
|
#: Card.py:431
|
||||||
|
@ -556,39 +552,39 @@ msgstr ""
|
||||||
msgid "***Error sending finish: "
|
msgid "***Error sending finish: "
|
||||||
msgstr "***Erreur lors de l'envoi de fin: "
|
msgstr "***Erreur lors de l'envoi de fin: "
|
||||||
|
|
||||||
#: Database.py:2401
|
#: Database.py:2405
|
||||||
msgid "invalid source in Database.createOrUpdateTourney"
|
msgid "invalid source in Database.createOrUpdateTourney"
|
||||||
msgstr "source invalide dans Database.createOrUpdateTourney"
|
msgstr "source invalide dans Database.createOrUpdateTourney"
|
||||||
|
|
||||||
#: Database.py:2414
|
#: Database.py:2418
|
||||||
msgid "invalid source in Database.createOrUpdateTourneysPlayers"
|
msgid "invalid source in Database.createOrUpdateTourneysPlayers"
|
||||||
msgstr "source invalide dans Database.createOrUpdateTourneysPlayers"
|
msgstr "source invalide dans Database.createOrUpdateTourneysPlayers"
|
||||||
|
|
||||||
#: Database.py:2540
|
#: Database.py:2554
|
||||||
msgid "HandToWrite.init error: "
|
msgid "HandToWrite.init error: "
|
||||||
msgstr "HandToWrite.init erreur: "
|
msgstr "HandToWrite.init erreur: "
|
||||||
|
|
||||||
#: Database.py:2590
|
#: Database.py:2604
|
||||||
msgid "HandToWrite.set_all error: "
|
msgid "HandToWrite.set_all error: "
|
||||||
msgstr "HandToWrite.set_all erreur: "
|
msgstr "HandToWrite.set_all erreur: "
|
||||||
|
|
||||||
#: Database.py:2621
|
#: Database.py:2635
|
||||||
msgid "nutOmatic is id_player = %d"
|
msgid "nutOmatic is id_player = %d"
|
||||||
msgstr "nutOmatic est id_player = %d"
|
msgstr "nutOmatic est id_player = %d"
|
||||||
|
|
||||||
#: Database.py:2629
|
#: Database.py:2643
|
||||||
msgid "query plan: "
|
msgid "query plan: "
|
||||||
msgstr "plan de requête: "
|
msgstr "plan de requête: "
|
||||||
|
|
||||||
#: Database.py:2638
|
#: Database.py:2652
|
||||||
msgid "cards ="
|
msgid "cards ="
|
||||||
msgstr "cartes ="
|
msgstr "cartes ="
|
||||||
|
|
||||||
#: Database.py:2641
|
#: Database.py:2655
|
||||||
msgid "get_stats took: %4.3f seconds"
|
msgid "get_stats took: %4.3f seconds"
|
||||||
msgstr "get_stats a duré: %4.3f seconds"
|
msgstr "get_stats a duré: %4.3f seconds"
|
||||||
|
|
||||||
#: Database.py:2643
|
#: Database.py:2657
|
||||||
msgid "press enter to continue"
|
msgid "press enter to continue"
|
||||||
msgstr "appuyez sur entrée pour continuer"
|
msgstr "appuyez sur entrée pour continuer"
|
||||||
|
|
||||||
|
@ -596,6 +592,10 @@ msgstr "appuyez sur entrée pour continuer"
|
||||||
msgid "Unable to recognise handinfo from: '%s'"
|
msgid "Unable to recognise handinfo from: '%s'"
|
||||||
msgstr "Impossible de reconnaître handinfo de: '¨%s'"
|
msgstr "Impossible de reconnaître handinfo de: '¨%s'"
|
||||||
|
|
||||||
|
#: EverleafToFpdb.py:145 iPokerToFpdb.py:156 iPokerToFpdb.py:158
|
||||||
|
msgid "Didn't match re_HandInfo"
|
||||||
|
msgstr "Ne correspond pas à re_HandInfo"
|
||||||
|
|
||||||
#: EverleafToFpdb.py:265
|
#: EverleafToFpdb.py:265
|
||||||
msgid "Everleaf readStudPlayerCards is only a stub."
|
msgid "Everleaf readStudPlayerCards is only a stub."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3051,10 +3051,6 @@ msgstr "Impossible de lire le GameType pour cette main"
|
||||||
msgid "Failed to detect currency. HID: %s: '%s'"
|
msgid "Failed to detect currency. HID: %s: '%s'"
|
||||||
msgstr "Impossible de trouver la devise"
|
msgstr "Impossible de trouver la devise"
|
||||||
|
|
||||||
#: PartyPokerToFpdb.py:536
|
|
||||||
msgid "Unimplemented readAction: '%s' '%s'"
|
|
||||||
msgstr "readAction non implémenté: '%s' '%s'"
|
|
||||||
|
|
||||||
#: PokerStarsToFpdb.py:265
|
#: PokerStarsToFpdb.py:265
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Failed to detect currency: '%s'"
|
msgid "Failed to detect currency: '%s'"
|
||||||
|
@ -3529,6 +3525,11 @@ msgstr ""
|
||||||
"Ce module à été développé et testé avec la version 2.8.18 de gtk. Vous "
|
"Ce module à été développé et testé avec la version 2.8.18 de gtk. Vous "
|
||||||
"utilisez la version %d.%d.%d. Votre programme de fidélité peut varier."
|
"utilisez la version %d.%d.%d. Votre programme de fidélité peut varier."
|
||||||
|
|
||||||
|
#: Win2dayToFpdb.py:341 WinamaxToFpdb.py:406
|
||||||
|
#, fuzzy
|
||||||
|
msgid "unimplemented readAction: '%s' '%s'"
|
||||||
|
msgstr "readAction non implémenté: '%s' '%s'"
|
||||||
|
|
||||||
#: WinTables.py:81
|
#: WinTables.py:81
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Window %s not found. Skipping."
|
msgid "Window %s not found. Skipping."
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: 0.20.905 plus git\n"
|
"Project-Id-Version: 0.20.905 plus git\n"
|
||||||
"POT-Creation-Date: 2011-03-10 06:16+CET\n"
|
"POT-Creation-Date: 2011-03-11 07:06+CET\n"
|
||||||
"PO-Revision-Date: 2011-02-27 18:23+0100\n"
|
"PO-Revision-Date: 2011-02-27 18:23+0100\n"
|
||||||
"Last-Translator: Ferenc Erki <erkiferenc@gmail.com>\n"
|
"Last-Translator: Ferenc Erki <erkiferenc@gmail.com>\n"
|
||||||
"Language-Team: Hungarian <erkiferenc@gmail.com>\n"
|
"Language-Team: Hungarian <erkiferenc@gmail.com>\n"
|
||||||
|
@ -106,15 +106,12 @@ msgid "Could not find file %s"
|
||||||
msgstr "%s fájl nem található"
|
msgstr "%s fájl nem található"
|
||||||
|
|
||||||
#: Anonymise.py:55
|
#: Anonymise.py:55
|
||||||
msgid "Output being written to"
|
#, fuzzy
|
||||||
|
msgid "Output being written to %s"
|
||||||
msgstr "Az eredmény ide került kiírásra"
|
msgstr "Az eredmény ide került kiírásra"
|
||||||
|
|
||||||
#: BetfairToFpdb.py:108 CarbonToFpdb.py:163 EverestToFpdb.py:145
|
#: BetfairToFpdb.py:108 BetfairToFpdb.py:109 CarbonToFpdb.py:163
|
||||||
#: EverleafToFpdb.py:145 iPokerToFpdb.py:156 iPokerToFpdb.py:158
|
#: CarbonToFpdb.py:165 EverestToFpdb.py:145 EverestToFpdb.py:147
|
||||||
msgid "Didn't match re_HandInfo"
|
|
||||||
msgstr "re_HandInfo nem illeszkedik"
|
|
||||||
|
|
||||||
#: BetfairToFpdb.py:109 CarbonToFpdb.py:165 EverestToFpdb.py:147
|
|
||||||
#: PokerStarsToFpdb.py:223
|
#: PokerStarsToFpdb.py:223
|
||||||
msgid "No match in readHandInfo."
|
msgid "No match in readHandInfo."
|
||||||
msgstr "readHandInfo nem illeszkedik."
|
msgstr "readHandInfo nem illeszkedik."
|
||||||
|
@ -136,10 +133,9 @@ msgstr "Nyitó hívás nem található"
|
||||||
msgid "DEBUG: "
|
msgid "DEBUG: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: BetfairToFpdb.py:199 OnGameToFpdb.py:337 PokerStarsToFpdb.py:439
|
#: BetfairToFpdb.py:199 OnGameToFpdb.py:337 PartyPokerToFpdb.py:536
|
||||||
#: Win2dayToFpdb.py:341 WinamaxToFpdb.py:406
|
#: PokerStarsToFpdb.py:439
|
||||||
#, fuzzy
|
msgid "Unimplemented readAction: '%s' '%s'"
|
||||||
msgid "unimplemented readAction: '%s' '%s'"
|
|
||||||
msgstr "Nem ismert readAction: '%s' '%s'"
|
msgstr "Nem ismert readAction: '%s' '%s'"
|
||||||
|
|
||||||
#: Card.py:431
|
#: Card.py:431
|
||||||
|
@ -557,39 +553,39 @@ msgstr ""
|
||||||
msgid "***Error sending finish: "
|
msgid "***Error sending finish: "
|
||||||
msgstr "***Hiba a befejezés küldésekor: "
|
msgstr "***Hiba a befejezés küldésekor: "
|
||||||
|
|
||||||
#: Database.py:2401
|
#: Database.py:2405
|
||||||
msgid "invalid source in Database.createOrUpdateTourney"
|
msgid "invalid source in Database.createOrUpdateTourney"
|
||||||
msgstr "érvénytelen forrás a Database.createOrUpdateTourney-ban"
|
msgstr "érvénytelen forrás a Database.createOrUpdateTourney-ban"
|
||||||
|
|
||||||
#: Database.py:2414
|
#: Database.py:2418
|
||||||
msgid "invalid source in Database.createOrUpdateTourneysPlayers"
|
msgid "invalid source in Database.createOrUpdateTourneysPlayers"
|
||||||
msgstr "érvénytelen forrás a Database.createOrUpdateTourneysPlayers-ben"
|
msgstr "érvénytelen forrás a Database.createOrUpdateTourneysPlayers-ben"
|
||||||
|
|
||||||
#: Database.py:2540
|
#: Database.py:2554
|
||||||
msgid "HandToWrite.init error: "
|
msgid "HandToWrite.init error: "
|
||||||
msgstr "HandToWrite.init hiba: "
|
msgstr "HandToWrite.init hiba: "
|
||||||
|
|
||||||
#: Database.py:2590
|
#: Database.py:2604
|
||||||
msgid "HandToWrite.set_all error: "
|
msgid "HandToWrite.set_all error: "
|
||||||
msgstr "HandToWrite.set_all hiba: "
|
msgstr "HandToWrite.set_all hiba: "
|
||||||
|
|
||||||
#: Database.py:2621
|
#: Database.py:2635
|
||||||
msgid "nutOmatic is id_player = %d"
|
msgid "nutOmatic is id_player = %d"
|
||||||
msgstr "nutOmatic id_player értéke = %d"
|
msgstr "nutOmatic id_player értéke = %d"
|
||||||
|
|
||||||
#: Database.py:2629
|
#: Database.py:2643
|
||||||
msgid "query plan: "
|
msgid "query plan: "
|
||||||
msgstr "lekérdezési terv: "
|
msgstr "lekérdezési terv: "
|
||||||
|
|
||||||
#: Database.py:2638
|
#: Database.py:2652
|
||||||
msgid "cards ="
|
msgid "cards ="
|
||||||
msgstr "kezdőkéz ="
|
msgstr "kezdőkéz ="
|
||||||
|
|
||||||
#: Database.py:2641
|
#: Database.py:2655
|
||||||
msgid "get_stats took: %4.3f seconds"
|
msgid "get_stats took: %4.3f seconds"
|
||||||
msgstr "get_stats időigény: %4.3f mp"
|
msgstr "get_stats időigény: %4.3f mp"
|
||||||
|
|
||||||
#: Database.py:2643
|
#: Database.py:2657
|
||||||
msgid "press enter to continue"
|
msgid "press enter to continue"
|
||||||
msgstr "nyomj ENTER-t a folytatáshoz"
|
msgstr "nyomj ENTER-t a folytatáshoz"
|
||||||
|
|
||||||
|
@ -597,6 +593,10 @@ msgstr "nyomj ENTER-t a folytatáshoz"
|
||||||
msgid "Unable to recognise handinfo from: '%s'"
|
msgid "Unable to recognise handinfo from: '%s'"
|
||||||
msgstr "Nem sikerült felismerni a leosztásinformációkat innen: '%s'"
|
msgstr "Nem sikerült felismerni a leosztásinformációkat innen: '%s'"
|
||||||
|
|
||||||
|
#: EverleafToFpdb.py:145 iPokerToFpdb.py:156 iPokerToFpdb.py:158
|
||||||
|
msgid "Didn't match re_HandInfo"
|
||||||
|
msgstr "re_HandInfo nem illeszkedik"
|
||||||
|
|
||||||
#: EverleafToFpdb.py:265
|
#: EverleafToFpdb.py:265
|
||||||
msgid "Everleaf readStudPlayerCards is only a stub."
|
msgid "Everleaf readStudPlayerCards is only a stub."
|
||||||
msgstr "Az Everleaf terem readStudPlayerCards funkciója csak egy csonk."
|
msgstr "Az Everleaf terem readStudPlayerCards funkciója csak egy csonk."
|
||||||
|
@ -3022,10 +3022,6 @@ msgstr "GameType nem olvasható az aktuális leosztásból"
|
||||||
msgid "Failed to detect currency. HID: %s: '%s'"
|
msgid "Failed to detect currency. HID: %s: '%s'"
|
||||||
msgstr "nem sikerült a pénznem meghatározása"
|
msgstr "nem sikerült a pénznem meghatározása"
|
||||||
|
|
||||||
#: PartyPokerToFpdb.py:536
|
|
||||||
msgid "Unimplemented readAction: '%s' '%s'"
|
|
||||||
msgstr "Nem ismert readAction: '%s' '%s'"
|
|
||||||
|
|
||||||
#: PokerStarsToFpdb.py:265
|
#: PokerStarsToFpdb.py:265
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Failed to detect currency: '%s'"
|
msgid "Failed to detect currency: '%s'"
|
||||||
|
@ -3501,6 +3497,11 @@ msgstr ""
|
||||||
"Ez a modul a gtk 2.8.18 verziójával lett fejlesztve és tesztelve. Te most a "
|
"Ez a modul a gtk 2.8.18 verziójával lett fejlesztve és tesztelve. Te most a "
|
||||||
"%d.%d.%d verziót használod. Lehet, hogy máshogy fog működni."
|
"%d.%d.%d verziót használod. Lehet, hogy máshogy fog működni."
|
||||||
|
|
||||||
|
#: Win2dayToFpdb.py:341 WinamaxToFpdb.py:406
|
||||||
|
#, fuzzy
|
||||||
|
msgid "unimplemented readAction: '%s' '%s'"
|
||||||
|
msgstr "Nem ismert readAction: '%s' '%s'"
|
||||||
|
|
||||||
#: WinTables.py:81
|
#: WinTables.py:81
|
||||||
msgid "Window %s not found. Skipping."
|
msgid "Window %s not found. Skipping."
|
||||||
msgstr "A(z) %s nevű ablak nincs meg. Kihagyás."
|
msgstr "A(z) %s nevű ablak nincs meg. Kihagyás."
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Free Poker Database\n"
|
"Project-Id-Version: Free Poker Database\n"
|
||||||
"POT-Creation-Date: 2011-03-10 06:16+CET\n"
|
"POT-Creation-Date: 2011-03-11 07:06+CET\n"
|
||||||
"PO-Revision-Date: 2011-03-09 22:36+0000\n"
|
"PO-Revision-Date: 2011-03-09 22:36+0000\n"
|
||||||
"Last-Translator: greg20 <greg20@isonews2.com>\n"
|
"Last-Translator: greg20 <greg20@isonews2.com>\n"
|
||||||
"Language-Team: Polish (Poland) <>\n"
|
"Language-Team: Polish (Poland) <>\n"
|
||||||
|
@ -104,15 +104,11 @@ msgid "Could not find file %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Anonymise.py:55
|
#: Anonymise.py:55
|
||||||
msgid "Output being written to"
|
msgid "Output being written to %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: BetfairToFpdb.py:108 CarbonToFpdb.py:163 EverestToFpdb.py:145
|
#: BetfairToFpdb.py:108 BetfairToFpdb.py:109 CarbonToFpdb.py:163
|
||||||
#: EverleafToFpdb.py:145 iPokerToFpdb.py:156 iPokerToFpdb.py:158
|
#: CarbonToFpdb.py:165 EverestToFpdb.py:145 EverestToFpdb.py:147
|
||||||
msgid "Didn't match re_HandInfo"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: BetfairToFpdb.py:109 CarbonToFpdb.py:165 EverestToFpdb.py:147
|
|
||||||
#: PokerStarsToFpdb.py:223
|
#: PokerStarsToFpdb.py:223
|
||||||
msgid "No match in readHandInfo."
|
msgid "No match in readHandInfo."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -134,9 +130,9 @@ msgstr ""
|
||||||
msgid "DEBUG: "
|
msgid "DEBUG: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: BetfairToFpdb.py:199 OnGameToFpdb.py:337 PokerStarsToFpdb.py:439
|
#: BetfairToFpdb.py:199 OnGameToFpdb.py:337 PartyPokerToFpdb.py:536
|
||||||
#: Win2dayToFpdb.py:341 WinamaxToFpdb.py:406
|
#: PokerStarsToFpdb.py:439
|
||||||
msgid "unimplemented readAction: '%s' '%s'"
|
msgid "Unimplemented readAction: '%s' '%s'"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Card.py:431
|
#: Card.py:431
|
||||||
|
@ -521,39 +517,39 @@ msgstr ""
|
||||||
msgid "***Error sending finish: "
|
msgid "***Error sending finish: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2401
|
#: Database.py:2405
|
||||||
msgid "invalid source in Database.createOrUpdateTourney"
|
msgid "invalid source in Database.createOrUpdateTourney"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2414
|
#: Database.py:2418
|
||||||
msgid "invalid source in Database.createOrUpdateTourneysPlayers"
|
msgid "invalid source in Database.createOrUpdateTourneysPlayers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2540
|
#: Database.py:2554
|
||||||
msgid "HandToWrite.init error: "
|
msgid "HandToWrite.init error: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2590
|
#: Database.py:2604
|
||||||
msgid "HandToWrite.set_all error: "
|
msgid "HandToWrite.set_all error: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2621
|
#: Database.py:2635
|
||||||
msgid "nutOmatic is id_player = %d"
|
msgid "nutOmatic is id_player = %d"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2629
|
#: Database.py:2643
|
||||||
msgid "query plan: "
|
msgid "query plan: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2638
|
#: Database.py:2652
|
||||||
msgid "cards ="
|
msgid "cards ="
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2641
|
#: Database.py:2655
|
||||||
msgid "get_stats took: %4.3f seconds"
|
msgid "get_stats took: %4.3f seconds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2643
|
#: Database.py:2657
|
||||||
msgid "press enter to continue"
|
msgid "press enter to continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -561,6 +557,10 @@ msgstr ""
|
||||||
msgid "Unable to recognise handinfo from: '%s'"
|
msgid "Unable to recognise handinfo from: '%s'"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: EverleafToFpdb.py:145 iPokerToFpdb.py:156 iPokerToFpdb.py:158
|
||||||
|
msgid "Didn't match re_HandInfo"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: EverleafToFpdb.py:265
|
#: EverleafToFpdb.py:265
|
||||||
msgid "Everleaf readStudPlayerCards is only a stub."
|
msgid "Everleaf readStudPlayerCards is only a stub."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2852,10 +2852,6 @@ msgstr ""
|
||||||
msgid "Failed to detect currency. HID: %s: '%s'"
|
msgid "Failed to detect currency. HID: %s: '%s'"
|
||||||
msgstr "nie wykryto waluty"
|
msgstr "nie wykryto waluty"
|
||||||
|
|
||||||
#: PartyPokerToFpdb.py:536
|
|
||||||
msgid "Unimplemented readAction: '%s' '%s'"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: PokerStarsToFpdb.py:265
|
#: PokerStarsToFpdb.py:265
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Failed to detect currency: '%s'"
|
msgid "Failed to detect currency: '%s'"
|
||||||
|
@ -3331,6 +3327,10 @@ msgstr ""
|
||||||
"Ten moduł został napisany i przetestowany z GTK w wersji 2.8.18. Używasz "
|
"Ten moduł został napisany i przetestowany z GTK w wersji 2.8.18. Używasz "
|
||||||
"wersji %d.%d.%d. Twój milage może się różnić."
|
"wersji %d.%d.%d. Twój milage może się różnić."
|
||||||
|
|
||||||
|
#: Win2dayToFpdb.py:341 WinamaxToFpdb.py:406
|
||||||
|
msgid "unimplemented readAction: '%s' '%s'"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: WinTables.py:81
|
#: WinTables.py:81
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Window %s not found. Skipping."
|
msgid "Window %s not found. Skipping."
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Free Poker Database\n"
|
"Project-Id-Version: Free Poker Database\n"
|
||||||
"POT-Creation-Date: 2011-03-10 06:16+CET\n"
|
"POT-Creation-Date: 2011-03-11 07:06+CET\n"
|
||||||
"PO-Revision-Date: 2011-03-04 18:18+0000\n"
|
"PO-Revision-Date: 2011-03-04 18:18+0000\n"
|
||||||
"Last-Translator: Lexej <alexej@glyvin.com>\n"
|
"Last-Translator: Lexej <alexej@glyvin.com>\n"
|
||||||
"Language-Team: Russian (Russia) <>\n"
|
"Language-Team: Russian (Russia) <>\n"
|
||||||
|
@ -107,15 +107,12 @@ msgid "Could not find file %s"
|
||||||
msgstr "Не удалось найти файл %s"
|
msgstr "Не удалось найти файл %s"
|
||||||
|
|
||||||
#: Anonymise.py:55
|
#: Anonymise.py:55
|
||||||
msgid "Output being written to"
|
#, fuzzy
|
||||||
|
msgid "Output being written to %s"
|
||||||
msgstr "Вывод будет записан в файл "
|
msgstr "Вывод будет записан в файл "
|
||||||
|
|
||||||
#: BetfairToFpdb.py:108 CarbonToFpdb.py:163 EverestToFpdb.py:145
|
#: BetfairToFpdb.py:108 BetfairToFpdb.py:109 CarbonToFpdb.py:163
|
||||||
#: EverleafToFpdb.py:145 iPokerToFpdb.py:156 iPokerToFpdb.py:158
|
#: CarbonToFpdb.py:165 EverestToFpdb.py:145 EverestToFpdb.py:147
|
||||||
msgid "Didn't match re_HandInfo"
|
|
||||||
msgstr "re_HandInfo не соответствует"
|
|
||||||
|
|
||||||
#: BetfairToFpdb.py:109 CarbonToFpdb.py:165 EverestToFpdb.py:147
|
|
||||||
#: PokerStarsToFpdb.py:223
|
#: PokerStarsToFpdb.py:223
|
||||||
msgid "No match in readHandInfo."
|
msgid "No match in readHandInfo."
|
||||||
msgstr "Нет соответствия в readHandInfo."
|
msgstr "Нет соответствия в readHandInfo."
|
||||||
|
@ -137,11 +134,10 @@ msgstr "Bring-In не найден"
|
||||||
msgid "DEBUG: "
|
msgid "DEBUG: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: BetfairToFpdb.py:199 OnGameToFpdb.py:337 PokerStarsToFpdb.py:439
|
#: BetfairToFpdb.py:199 OnGameToFpdb.py:337 PartyPokerToFpdb.py:536
|
||||||
#: Win2dayToFpdb.py:341 WinamaxToFpdb.py:406
|
#: PokerStarsToFpdb.py:439
|
||||||
#, fuzzy
|
msgid "Unimplemented readAction: '%s' '%s'"
|
||||||
msgid "unimplemented readAction: '%s' '%s'"
|
msgstr ""
|
||||||
msgstr "DEBUG: не выполнена readAction: '%s' '%s'"
|
|
||||||
|
|
||||||
#: Card.py:431
|
#: Card.py:431
|
||||||
msgid "fpdb card encoding(same as pokersource)"
|
msgid "fpdb card encoding(same as pokersource)"
|
||||||
|
@ -530,39 +526,39 @@ msgstr ""
|
||||||
msgid "***Error sending finish: "
|
msgid "***Error sending finish: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2401
|
#: Database.py:2405
|
||||||
msgid "invalid source in Database.createOrUpdateTourney"
|
msgid "invalid source in Database.createOrUpdateTourney"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2414
|
#: Database.py:2418
|
||||||
msgid "invalid source in Database.createOrUpdateTourneysPlayers"
|
msgid "invalid source in Database.createOrUpdateTourneysPlayers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2540
|
#: Database.py:2554
|
||||||
msgid "HandToWrite.init error: "
|
msgid "HandToWrite.init error: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2590
|
#: Database.py:2604
|
||||||
msgid "HandToWrite.set_all error: "
|
msgid "HandToWrite.set_all error: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2621
|
#: Database.py:2635
|
||||||
msgid "nutOmatic is id_player = %d"
|
msgid "nutOmatic is id_player = %d"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2629
|
#: Database.py:2643
|
||||||
msgid "query plan: "
|
msgid "query plan: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2638
|
#: Database.py:2652
|
||||||
msgid "cards ="
|
msgid "cards ="
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2641
|
#: Database.py:2655
|
||||||
msgid "get_stats took: %4.3f seconds"
|
msgid "get_stats took: %4.3f seconds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: Database.py:2643
|
#: Database.py:2657
|
||||||
msgid "press enter to continue"
|
msgid "press enter to continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -570,6 +566,10 @@ msgstr ""
|
||||||
msgid "Unable to recognise handinfo from: '%s'"
|
msgid "Unable to recognise handinfo from: '%s'"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: EverleafToFpdb.py:145 iPokerToFpdb.py:156 iPokerToFpdb.py:158
|
||||||
|
msgid "Didn't match re_HandInfo"
|
||||||
|
msgstr "re_HandInfo не соответствует"
|
||||||
|
|
||||||
#: EverleafToFpdb.py:265
|
#: EverleafToFpdb.py:265
|
||||||
msgid "Everleaf readStudPlayerCards is only a stub."
|
msgid "Everleaf readStudPlayerCards is only a stub."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2855,10 +2855,6 @@ msgstr ""
|
||||||
msgid "Failed to detect currency. HID: %s: '%s'"
|
msgid "Failed to detect currency. HID: %s: '%s'"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: PartyPokerToFpdb.py:536
|
|
||||||
msgid "Unimplemented readAction: '%s' '%s'"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: PokerStarsToFpdb.py:265
|
#: PokerStarsToFpdb.py:265
|
||||||
msgid "Failed to detect currency: '%s'"
|
msgid "Failed to detect currency: '%s'"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3324,6 +3320,11 @@ msgid ""
|
||||||
"using version %d.%d.%d. Your milage may vary."
|
"using version %d.%d.%d. Your milage may vary."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: Win2dayToFpdb.py:341 WinamaxToFpdb.py:406
|
||||||
|
#, fuzzy
|
||||||
|
msgid "unimplemented readAction: '%s' '%s'"
|
||||||
|
msgstr "DEBUG: не выполнена readAction: '%s' '%s'"
|
||||||
|
|
||||||
#: WinTables.py:81
|
#: WinTables.py:81
|
||||||
msgid "Window %s not found. Skipping."
|
msgid "Window %s not found. Skipping."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue
Block a user