From 10afb07c424d3aba578cdc4b66c18213c86bf513 Mon Sep 17 00:00:00 2001 From: hniksic Date: Sun, 26 Jun 2005 18:15:46 -0700 Subject: [PATCH] [svn] Really remove translation of s. --- src/progress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/progress.c b/src/progress.c index 613162fe..a9f29635 100644 --- a/src/progress.c +++ b/src/progress.c @@ -900,7 +900,7 @@ create_image (struct bar_progress *bp, double dl_total_time, bool done) strcpy (p, eta_to_human_short ((int) (secs + 0.5))); else /* For very quick downloads show more exact timing information. */ - sprintf (p, _("%.*fs"), + sprintf (p, "%.*fs", secs < 0.001 ? 0 : /* 0s instead of 0.000s */ secs < 0.01 ? 3 : /* 0.00x */ secs < 0.1 ? 2 : /* 0.0x */ -- 2.39.2