From: Lauri Nurmi Date: Sat, 26 Jul 2014 09:35:54 +0000 (+0300) Subject: hwclock: use pluralized translations. X-Git-Tag: v2.26-rc1~582 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5adf126ef2c370cd14299f6ed0a151c77b8acc3f;p=thirdparty%2Futil-linux.git hwclock: use pluralized translations. --- diff --git a/sys-utils/hwclock.c b/sys-utils/hwclock.c index bdac003e00..a934acea21 100644 --- a/sys-utils/hwclock.c +++ b/sys-utils/hwclock.c @@ -1098,10 +1098,15 @@ calculate_adjustment(const double factor, *retro_p = exact_adjustment - (double)*adjustment_p; if (debug) { - printf(_("Time since last adjustment is %d seconds\n"), + printf(P_("Time since last adjustment is %d second\n", + "Time since last adjustment is %d seconds\n", + (int)(systime - last_time)), (int)(systime - last_time)); - printf(_("Need to insert %d seconds and refer time back " - "%.6f seconds ago\n"), *adjustment_p, *retro_p); + printf(P_("Need to insert %d second and refer time back " + "%.6f seconds ago\n", + "Need to insert %d seconds and refer time back " + "%.6f seconds ago\n", *adjustment_p), + *adjustment_p, *retro_p); } }