summaryrefslogtreecommitdiff
path: root/e2fsck/ehandler.c
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2000-02-07 03:11:03 +0000
committerTheodore Ts'o <tytso@mit.edu>2000-02-07 03:11:03 +0000
commit0c4a07264e55b42c6e30230e66b1dea7d4b94ea9 (patch)
tree96165d34c5ab119f004cc6258aed31ce9ffbe8e6 /e2fsck/ehandler.c
parent565aea1f404b342e14c92c3970c40efd0229bf3d (diff)
downloade2fsprogs-0c4a07264e55b42c6e30230e66b1dea7d4b94ea9.tar.gz
Many files:
badblocks.c, e2fsck.h, ehandler.c, emptydir.c, extend.c, flushb.c, iscan.c, message.c, pass1.c, pass1b.c, pass3.c pass4.c, pass5.c, problem.c, scantest.c, swapfs.c, unix.c, util.c: Add Internationalization support as suggested by Marco d'Itri <md@linux.it>.
Diffstat (limited to 'e2fsck/ehandler.c')
-rw-r--r--e2fsck/ehandler.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/e2fsck/ehandler.c b/e2fsck/ehandler.c
index 9f1a0bc6..bd1643e7 100644
--- a/e2fsck/ehandler.c
+++ b/e2fsck/ehandler.c
@@ -50,13 +50,13 @@ static errcode_t e2fsck_handle_read_error(io_channel channel,
return 0;
}
if (operation)
- printf("Error reading block %lu (%s) while %s. ", block,
+ printf(_("Error reading block %lu (%s) while %s. "), block,
error_message(error), operation);
else
- printf("Error reading block %lu (%s). ", block,
+ printf(_("Error reading block %lu (%s). "), block,
error_message(error));
preenhalt(ctx);
- if (ask(ctx, "Ignore error", 1))
+ if (ask(ctx, _("Ignore error"), 1))
return 0;
return error;
@@ -94,13 +94,13 @@ static errcode_t e2fsck_handle_write_error(io_channel channel,
}
if (operation)
- printf("Error writing block %lu (%s) while %s. ", block,
+ printf(_("Error writing block %lu (%s) while %s. "), block,
error_message(error), operation);
else
- printf("Error writing block %lu (%s). ", block,
+ printf(_("Error writing block %lu (%s). "), block,
error_message(error));
preenhalt(ctx);
- if (ask(ctx, "Ignore error", 1))
+ if (ask(ctx, _("Ignore error"), 1))
return 0;
return error;