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),
|
('played', _('Played:'), stats_frame, 0),
|
||||||
('won', _('Won:'), stats_frame, 1),
|
('won', _('Won:'), stats_frame, 1),
|
||||||
('lost', _('Lost:'), stats_frame, 2),
|
('lost', _('Lost:'), stats_frame, 2),
|
||||||
('time', _('Playing time:'), stats_frame, 3),
|
('time', _('Avg. win time:'), stats_frame, 3),
|
||||||
('moves', _('Moves:'), stats_frame, 4),
|
('moves', _('Avg. win moves:'), stats_frame, 4),
|
||||||
('percent', _('% won:'), stats_frame, 5),
|
('percent', _('% won:'), stats_frame, 5),
|
||||||
):
|
):
|
||||||
title_label = gtk.Label()
|
title_label = gtk.Label()
|
||||||
|
|
|
@ -41,8 +41,8 @@ class PysolStatsFormatter:
|
||||||
_("Played"),
|
_("Played"),
|
||||||
_("Won"),
|
_("Won"),
|
||||||
_("Lost"),
|
_("Lost"),
|
||||||
_('Playing time'),
|
_('Avg. win time'),
|
||||||
_('Moves'),
|
_('Avg. win moves'),
|
||||||
_("% won"))
|
_("% won"))
|
||||||
|
|
||||||
def getStatResults(self, player, sort_by='name'):
|
def getStatResults(self, player, sort_by='name'):
|
||||||
|
|
|
@ -455,8 +455,8 @@ class SelectGameDialogWithPreview(SelectGameDialog):
|
||||||
('played', _('Played:'), stats_frame, 0),
|
('played', _('Played:'), stats_frame, 0),
|
||||||
('won', _('Won:'), stats_frame, 1),
|
('won', _('Won:'), stats_frame, 1),
|
||||||
('lost', _('Lost:'), stats_frame, 2),
|
('lost', _('Lost:'), stats_frame, 2),
|
||||||
('time', _('Playing time:'), stats_frame, 3),
|
('time', _('Avg. win time:'), stats_frame, 3),
|
||||||
('moves', _('Moves:'), stats_frame, 4),
|
('moves', _('Avg. win moves:'), stats_frame, 4),
|
||||||
('percent', _('% won:'), stats_frame, 5),
|
('percent', _('% won:'), stats_frame, 5),
|
||||||
):
|
):
|
||||||
title_label = ttk.Label(f, text=t, justify='left', anchor='w')
|
title_label = ttk.Label(f, text=t, justify='left', anchor='w')
|
||||||
|
|
Loading…
Add table
Reference in a new issue