From: Benno Schulenberg Date: Sat, 5 Oct 2013 21:12:23 +0000 (+0200) Subject: wdctl: gettextize and pluralize one forgotten message X-Git-Tag: v2.24-rc2~41 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5b831eb19959c798412eb165915289ac237ba7d3;p=thirdparty%2Futil-linux.git wdctl: gettextize and pluralize one forgotten message Signed-off-by: Benno Schulenberg --- diff --git a/sys-utils/wdctl.c b/sys-utils/wdctl.c index 2698853e9e..71309188e7 100644 --- a/sys-utils/wdctl.c +++ b/sys-utils/wdctl.c @@ -334,7 +334,8 @@ static int set_watchdog(struct wdinfo *wd, int timeout) if (close_fd(fd)) warn(_("write failed")); sigprocmask(SIG_SETMASK, &oldsigs, NULL); - printf("Set timeout to %d seconds\n", timeout); + printf(P_("Timeout has been set to %d second.\n", + "Timeout has been set to %d seconds.\n", timeout), timeout); return rc; }