mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Better verbiage for time and move statistics.
This commit is contained in:
parent
e6783debec
commit
425573060f
3 changed files with 6 additions and 6 deletions
|
@ -122,8 +122,8 @@ class SelectGameDialogWithPreview(MfxDialog):
|
|||
('played', _('Played:'), stats_frame, 0),
|
||||
('won', _('Won:'), stats_frame, 1),
|
||||
('lost', _('Lost:'), stats_frame, 2),
|
||||
('time', _('Playing time:'), stats_frame, 3),
|
||||
('moves', _('Moves:'), stats_frame, 4),
|
||||
('time', _('Avg. win time:'), stats_frame, 3),
|
||||
('moves', _('Avg. win moves:'), stats_frame, 4),
|
||||
('percent', _('% won:'), stats_frame, 5),
|
||||
):
|
||||
title_label = gtk.Label()
|
||||
|
|
|
@ -41,8 +41,8 @@ class PysolStatsFormatter:
|
|||
_("Played"),
|
||||
_("Won"),
|
||||
_("Lost"),
|
||||
_('Playing time'),
|
||||
_('Moves'),
|
||||
_('Avg. win time'),
|
||||
_('Avg. win moves'),
|
||||
_("% won"))
|
||||
|
||||
def getStatResults(self, player, sort_by='name'):
|
||||
|
|
|
@ -455,8 +455,8 @@ class SelectGameDialogWithPreview(SelectGameDialog):
|
|||
('played', _('Played:'), stats_frame, 0),
|
||||
('won', _('Won:'), stats_frame, 1),
|
||||
('lost', _('Lost:'), stats_frame, 2),
|
||||
('time', _('Playing time:'), stats_frame, 3),
|
||||
('moves', _('Moves:'), stats_frame, 4),
|
||||
('time', _('Avg. win time:'), stats_frame, 3),
|
||||
('moves', _('Avg. win moves:'), stats_frame, 4),
|
||||
('percent', _('% won:'), stats_frame, 5),
|
||||
):
|
||||
title_label = ttk.Label(f, text=t, justify='left', anchor='w')
|
||||
|
|
Loading…
Add table
Reference in a new issue