Skip to content

Commit 031bba5

Browse files
more translations of DTPRINT
1 parent c3b84a5 commit 031bba5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/fwrite.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1114,11 +1114,11 @@ void fwriteMain(fwriteMainArgs args)
11141114
if (verbose) {
11151115
#ifndef NOZLIB
11161116
if (args.is_gzip) {
1117-
DTPRINT("zlib: uncompressed length=%zu (%zu MiB), compressed length=%zu (%zu MiB), ratio=%.1f%%, crc=%x\n",
1117+
DTPRINT(_("zlib: uncompressed length=%zu (%zu MiB), compressed length=%zu (%zu MiB), ratio=%.1f%%, crc=%x\n"),
11181118
len, len / MEGA, compress_len, compress_len / MEGA, len != 0 ? (100.0 * compress_len) / len : 0, crc);
11191119
}
11201120
#endif
1121-
DTPRINT("Written %"PRId64" rows in %.3f secs using %d thread%s. MaxBuffUsed=%d%%\n",
1121+
DTPRINT(_("Written %"PRId64" rows in %.3f secs using %d thread%s. MaxBuffUsed=%d%%\n"),
11221122
args.nrow, 1.0*(wallclock()-t0), nth, nth ==1 ? "" : "s", maxBuffUsedPC);
11231123
}
11241124

0 commit comments

Comments
 (0)