diff --git a/macosx/StatsWindowController.m b/macosx/StatsWindowController.m index 1626cd254..bd4422a1a 100644 --- a/macosx/StatsWindowController.m +++ b/macosx/StatsWindowController.m @@ -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)