summaryrefslogtreecommitdiffstats
path: root/disk-utils/blockdev.c
diff options
context:
space:
mode:
authorBenno Schulenberg2007-08-12 11:48:34 +0200
committerKarel Zak2007-08-14 14:46:28 +0200
commit65b27d36694d3a2408c3fb1cdb952eec8dffadc0 (patch)
tree78a5482b641d539138fdae58dd7b9213fcd809e0 /disk-utils/blockdev.c
parentbuild-sys: add --disable-makeinstall-chown (diff)
downloadkernel-qcow2-util-linux-65b27d36694d3a2408c3fb1cdb952eec8dffadc0.tar.gz
kernel-qcow2-util-linux-65b27d36694d3a2408c3fb1cdb952eec8dffadc0.tar.xz
kernel-qcow2-util-linux-65b27d36694d3a2408c3fb1cdb952eec8dffadc0.zip
po: gettextizing some overlooked messages.
Gettextize three new strings, make two strings indentical to two others, and gettextize three strings that are already gettextized elsewhere. Signed-off-by: Benno Schulenberg <bensberg@justemail.net> Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'disk-utils/blockdev.c')
-rw-r--r--disk-utils/blockdev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/disk-utils/blockdev.c b/disk-utils/blockdev.c
index 0b30cd5c4..d02ebbce0 100644
--- a/disk-utils/blockdev.c
+++ b/disk-utils/blockdev.c
@@ -120,7 +120,7 @@ usage(void) {
fprintf(stderr, _("Available commands:\n"));
fprintf(stderr, "\t%-30s %s\n", "--getsz",
- "get size in 512-byte sectors");
+ _("get size in 512-byte sectors"));
for (i = 0; i < SIZE(bdcms); i++) {
if (bdcms[i].argname)
fprintf(stderr, "\t%s %-*s %s\n", bdcms[i].name,
@@ -326,7 +326,7 @@ do_commands(int fd, char **argv, int d) {
if (res == -1) {
perror(bdcms[j].iocname);
if (verbose)
- printf("%s failed.\n", _(bdcms[j].help));
+ printf(_("%s failed.\n"), _(bdcms[j].help));
exit(1);
}
switch(bdcms[j].argtype) {