mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-02 22:48:40 +00:00
change alltime to all-time for proper grammar
This commit is contained in:
parent
0dfb43e2ba
commit
301d5037cb
1 changed files with 4 additions and 4 deletions
|
@ -95,11 +95,11 @@ class AlltimeStats:
|
||||||
ratio = "%.3f" % float(float(self.uploaded)/float(self.downloaded))
|
ratio = "%.3f" % float(float(self.uploaded)/float(self.downloaded))
|
||||||
self.tray_message = '%s: %s\n%s: %s\n%s: %s\n%s: %s\n%s: %s\n%s: %s' % (
|
self.tray_message = '%s: %s\n%s: %s\n%s: %s\n%s: %s\n%s: %s\n%s: %s' % (
|
||||||
_("Uptime"), common.ftime(0),
|
_("Uptime"), common.ftime(0),
|
||||||
_("Alltime Downloaded"), common.fsize(self.downloaded),
|
_("All-time Downloaded"), common.fsize(self.downloaded),
|
||||||
_("Alltime Uploaded"), common.fsize(self.uploaded),
|
_("All-time Uploaded"), common.fsize(self.uploaded),
|
||||||
_("Alltime Ratio"), ratio,
|
_("All-time Ratio"), ratio,
|
||||||
_("Torrents completed"), str(self.finished),
|
_("Torrents completed"), str(self.finished),
|
||||||
_("Alltime Uptime"), common.ftime(self.uptime))
|
_("All-time Uptime"), common.ftime(self.uptime))
|
||||||
|
|
||||||
def get_tray_message(self):
|
def get_tray_message(self):
|
||||||
return self.tray_message
|
return self.tray_message
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue