diff options
author | Pádraig Brady <P@draigBrady.com> | 2013-08-09 05:25:18 +0100 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2013-08-29 00:23:32 +0100 |
commit | 167422f32a2bc2ad286173d6eec936568d2f2f32 (patch) | |
tree | 1ac8df48b4954917f966a36d61b4ccc248a4e556 | |
parent | 4e9f5eb4e2f7614b74c1f930312acc455cc106e7 (diff) | |
download | coreutils-167422f32a2bc2ad286173d6eec936568d2f2f32.tar.xz |
df: fix "blocks" translation in header
* src/df.c (get_header): Get the translation of "blocks" here,
rather than just marking the string for translation.
Fixes http://bugs.gnu.org/15054
-rw-r--r-- | src/df.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -539,7 +539,7 @@ get_header (void) char *num = human_readable (output_block_size, buf, opts, 1, 1); /* Reset the header back to the default in OUTPUT_MODE. */ - header = N_("blocks"); + header = _("blocks"); /* TRANSLATORS: this is the "1K-blocks" header in "df" output. */ if (asprintf (&cell, _("%s-%s"), num, header) == -1) |