summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-11-06 13:10:33 +0000
committerJim Meyering <jim@meyering.net>2000-11-06 13:10:33 +0000
commitc08ca675ac7ed619248686a1af6b72b913df8798 (patch)
tree72bca7dc259a1cffcdcc6bd113412a2b244c5a9d /src
parent25353ae5a7c5c6d9ccf018e38098d58146ce50e4 (diff)
downloadcoreutils-c08ca675ac7ed619248686a1af6b72b913df8798.tar.xz
(print_header): Mark strings for translation.
Diffstat (limited to 'src')
-rw-r--r--src/df.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/df.c b/src/df.c
index 78e05d9cf..3979dac53 100644
--- a/src/df.c
+++ b/src/df.c
@@ -149,19 +149,19 @@ static struct option const long_options[] =
static void
print_header (void)
{
- printf ("Filesystem ");
+ printf (_("Filesystem "));
if (print_type)
- printf (" Type");
+ printf (_(" Type"));
else
printf (" ");
if (inode_format)
- printf (" Inodes IUsed IFree IUse%%");
+ printf (_(" Inodes IUsed IFree IUse%%"));
else if (output_block_size < 0)
- printf (" Size Used Avail Use%%");
+ printf (_(" Size Used Avail Use%%"));
else if (posix_format)
- printf (" %4d-blocks Used Available Capacity", output_block_size);
+ printf (_(" %4d-blocks Used Available Capacity"), output_block_size);
else
{
char buf[LONGEST_HUMAN_READABLE + 1];
@@ -172,10 +172,10 @@ print_header (void)
if (3 <= plen && strncmp (p + plen - 3, ".0", 2) == 0)
strcpy (p + plen - 3, p + plen - 1);
- printf (" %4s-blocks Used Available Use%%", p);
+ printf (_(" %4s-blocks Used Available Use%%"), p);
}
- printf (" Mounted on\n");
+ printf (_(" Mounted on\n"));
}
/* If FSTYPE is a type of filesystem that should be listed,