1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-22 14:10:34 +00:00

#5165: undo whitespace damage

This commit is contained in:
Jordan Lee 2013-04-10 02:07:14 +00:00
parent 33002a216d
commit 4e079b5f88

View file

@ -172,10 +172,10 @@ Formatter :: timeToString (int seconds)
minutes = (seconds % 3600) / 60;
seconds %= 60;
d = tr ("%Ln day (s)", 0, days);
h = tr ("%Ln hour (s)", 0, hours);
m = tr ("%Ln minute (s)", 0, minutes);
s = tr ("%Ln second (s)", 0, seconds);
d = tr ("%Ln day(s)", 0, days);
h = tr ("%Ln hour(s)", 0, hours);
m = tr ("%Ln minute(s)", 0, minutes);
s = tr ("%Ln second(s)", 0, seconds);
if (days)
{