diff options
author | Jim Meyering <jim@meyering.net> | 2000-11-06 13:10:33 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-11-06 13:10:33 +0000 |
commit | c08ca675ac7ed619248686a1af6b72b913df8798 (patch) | |
tree | 72bca7dc259a1cffcdcc6bd113412a2b244c5a9d /src | |
parent | 25353ae5a7c5c6d9ccf018e38098d58146ce50e4 (diff) | |
download | coreutils-c08ca675ac7ed619248686a1af6b72b913df8798.tar.xz |
(print_header): Mark strings for translation.
Diffstat (limited to 'src')
-rw-r--r-- | src/df.c | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -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, |