1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-09 13:50:00 +00:00

hr, not hours

This commit is contained in:
Mitchell Livingston 2007-11-21 02:31:48 +00:00
parent 33e23b35ae
commit 761ca4b364

View file

@ -119,8 +119,7 @@ tr_handle * fLib;
}
if (seconds >= 3600) //60 * 60
{
[timeArray addObject: [NSString stringWithFormat: NSLocalizedString(@"%d hours", "stats window -> running time"),
seconds / 3600]];
[timeArray addObject: [NSString stringWithFormat: NSLocalizedString(@"%d hr", "stats window -> running time"), seconds / 3600]];
seconds %= 3600;
}
if (seconds >= 60)