From fe558f6dbd047e1bfa58b50bdbae16ea8b01918c Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Sun, 14 Jan 2007 22:12:39 +0000 Subject: [PATCH] proper pluralization --- macosx/Torrent.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/macosx/Torrent.m b/macosx/Torrent.m index a3fa1756a..dd49bde83 100644 --- a/macosx/Torrent.m +++ b/macosx/Torrent.m @@ -317,7 +317,7 @@ static uint32_t kRed = BE(0xFF6450FF), //255, 100, 80 case TR_STATUS_DOWNLOAD: [fStatusString setString: @""]; - if ([self totalPeers] > 1) + if ([self totalPeers] != 1) [fStatusString appendFormat: NSLocalizedString(@"Downloading from %d of %d peers", "Torrent -> status string"), [self peersUploading], [self totalPeers]]; else @@ -359,7 +359,7 @@ static uint32_t kRed = BE(0xFF6450FF), //255, 100, 80 case TR_STATUS_SEED: [fStatusString setString: @""]; - if ([self totalPeers] > 1) + if ([self totalPeers] != 1) [fStatusString appendFormat: NSLocalizedString(@"Seeding to %d of %d peers", "Torrent -> status string"), [self peersDownloading], [self totalPeers]]; else