gettextify new tooltips

This commit is contained in:
steffen123 2010-10-10 17:42:06 +02:00
parent b0dd8cb36f
commit f642a1cf03

View File

@ -41,33 +41,33 @@ from TreeViewTooltips import TreeViewTooltips
#new order in config file: #new order in config file:
colalias,colheading,colshowsumm,colshowposn,colformat,coltype,colxalign = 0,1,2,3,4,5,6 colalias,colheading,colshowsumm,colshowposn,colformat,coltype,colxalign = 0,1,2,3,4,5,6
ranks = {'x':0, '2':2, '3':3, '4':4, '5':5, '6':6, '7':7, '8':8, '9':9, 'T':10, 'J':11, 'Q':12, 'K':13, 'A':14} ranks = {'x':0, '2':2, '3':3, '4':4, '5':5, '6':6, '7':7, '8':8, '9':9, 'T':10, 'J':11, 'Q':12, 'K':13, 'A':14}
onlinehelp = {'Game':'Type of Game', onlinehelp = {'Game':_('Type of Game'),
'Hand':'Hole cards', 'Hand':_('Hole cards'),
'Posn':'Position', 'Posn':_('Position'),
'Name':'Name of the player', 'Name':_('Name of the player'),
'Hds':'Number of hands played', 'Hds':_('Number of hands played'),
'Seats':'Number of Seats', 'Seats':_('Number of Seats'),
'VPIP':'Voluntarily Putting In the pot\n(blinds excluded)', 'VPIP':_('Voluntarily Putting In the pot\n(blinds excluded)'),
'PFR':'% Pre Flop Raise', 'PFR':_('% Pre Flop Raise'),
'PF3':'% Pre Flop Re-Raise / 3Bet', 'PF3':_('% Pre Flop Re-Raise / 3Bet'),
'AggFac':'Aggression Factor\n', 'AggFac':_('Aggression Factor\n'),
'AggFreq':'Aggression Frequency\nBet or Raise vs Fold', 'AggFreq':_('Aggression Frequency\nBet or Raise vs Fold'),
'ContBet':'Continuation Bet on the flop', 'ContBet':_('Continuation Bet on the flop'),
'RFI':'% Raise First In\% Raise when first to bet', 'RFI':_('% Raise First In\% Raise when first to bet'),
'Steals':'% First to raise pre-flop\nand steal blinds', 'Steals':_('% First to raise pre-flop\nand steal blinds'),
'Saw_F':'% Saw Flop vs hands dealt', 'Saw_F':_('% Saw Flop vs hands dealt'),
'SawSD':'Saw Show Down / River', 'SawSD':_('Saw Show Down / River'),
'WtSDwsF':'Went To Show Down When Saw Flop', 'WtSDwsF':_('Went To Show Down When Saw Flop'),
'W$SD':'Amount Won when Show Down seen', 'W$SD':_('Amount Won when Show Down seen'),
'FlAFq':'Flop Aggression\n% Bet or Raise after seeing Flop', 'FlAFq':_('Flop Aggression\n% Bet or Raise after seeing Flop'),
'TuAFq':'Turn Aggression\n% Bet or Raise after seeing Turn', 'TuAFq':_('Turn Aggression\n% Bet or Raise after seeing Turn'),
'RvAFq':'River Aggression\n% Bet or Raise after seeing River', 'RvAFq':_('River Aggression\n% Bet or Raise after seeing River'),
'PoFAFq':'Coming Soon\nTotal % agression', 'PoFAFq':_('Coming Soon\nTotal % agression'),
'Net($)':'Amount won', 'Net($)':_('Amount won'),
'bb/100':'Number of Big Blinds won\nor lost per 100 hands', 'bb/100':_('Number of Big Blinds won\nor lost per 100 hands'),
'Rake($)':'Amount of rake paid', 'Rake($)':_('Amount of rake paid'),
'bbxr/100':'Number of Big Blinds won\nor lost per 100 hands\nwhen excluding rake', 'bbxr/100':_('Number of Big Blinds won\nor lost per 100 hands\nwhen excluding rake'),
'Variance':'Measure of uncertainty\nThe lower, the more stable the amounts won' 'Variance':_('Measure of uncertainty\nThe lower, the more stable the amounts won')
} }