From 301d5037cb559774d7654df72d7a28b3c82e9dfa Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Thu, 9 Aug 2007 06:51:40 +0000 Subject: [PATCH] change alltime to all-time for proper grammar --- plugins/AlltimeStats/__init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/AlltimeStats/__init__.py b/plugins/AlltimeStats/__init__.py index 960e83531..3a6a68eea 100644 --- a/plugins/AlltimeStats/__init__.py +++ b/plugins/AlltimeStats/__init__.py @@ -95,11 +95,11 @@ class AlltimeStats: 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' % ( _("Uptime"), common.ftime(0), - _("Alltime Downloaded"), common.fsize(self.downloaded), - _("Alltime Uploaded"), common.fsize(self.uploaded), - _("Alltime Ratio"), ratio, + _("All-time Downloaded"), common.fsize(self.downloaded), + _("All-time Uploaded"), common.fsize(self.uploaded), + _("All-time Ratio"), ratio, _("Torrents completed"), str(self.finished), - _("Alltime Uptime"), common.ftime(self.uptime)) + _("All-time Uptime"), common.ftime(self.uptime)) def get_tray_message(self): return self.tray_message