mirror of
https://github.com/transmission/transmission.git
synced 2025-12-24 12:28:52 +00:00
display the infinity symbol in stats for ratio when there is upload but no download
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user