display the infinity symbol in stats for ratio when there is upload but no download

This commit is contained in:
Mitchell Livingston
2007-12-13 04:31:38 +00:00
parent e1d10bba7e
commit 1b6a8a9504
5 changed files with 9 additions and 3 deletions

View File

@@ -97,6 +97,8 @@
{
if (ratio == TR_RATIO_NA)
return NSLocalizedString(@"N/A", "No Ratio");
else if (ratio == TR_RATIO_INF)
return [NSString stringWithUTF8String: "\xE2\x88\x9E"];
else if (ratio < 0)
return NSLocalizedString(@"error", "Ratio invalid");
else;