#5165: undo whitespace damage

This commit is contained in:
Jordan Lee 2013-04-10 02:07:14 +00:00
parent 33002a216d
commit 4e079b5f88
1 changed files with 4 additions and 4 deletions

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)
{