From: Jim Meyering Date: Thu, 8 Apr 2004 21:26:28 +0000 (+0000) Subject: (dd_copy): Mark two diagnostics for translations. X-Git-Tag: v5.3.0~1838 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1af4fd3a542a684968d17381eb2cbd529f5ab227;p=thirdparty%2Fcoreutils.git (dd_copy): Mark two diagnostics for translations. --- diff --git a/src/dd.c b/src/dd.c index 8d4d0766cd..8b3b67f89f 100644 --- a/src/dd.c +++ b/src/dd.c @@ -1235,7 +1235,7 @@ dd_copy (void) { if (errno != ENOSYS && errno != EINVAL) { - error (0, errno, "fdatasync %s", quote (output_file)); + error (0, errno, _("fdatasync failed for %s"), quote (output_file)); exit_status = EXIT_FAILURE; } conversions_mask |= C_FSYNC; @@ -1245,7 +1245,7 @@ dd_copy (void) while (fsync (STDOUT_FILENO) != 0) if (errno != EINTR) { - error (0, errno, "fsync %s", quote (output_file)); + error (0, errno, _("fsync failed for %s"), quote (output_file)); return EXIT_FAILURE; }