From f0b8c87d2a196ecc9a19998d512f3d9a46b758ea Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Wed, 9 May 2001 06:03:58 +0000 Subject: [PATCH] ChangeLog, super.c: super.c (release_orphan_inodes): Add gettext quoting around "Truncating" and "Clearing" for i18n. --- e2fsck/ChangeLog | 5 +++++ e2fsck/super.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/e2fsck/ChangeLog b/e2fsck/ChangeLog index ae3f10c..da16dd5 100644 --- a/e2fsck/ChangeLog +++ b/e2fsck/ChangeLog @@ -1,3 +1,8 @@ +2001-05-09 Theodore Tso + + * super.c (release_orphan_inodes): Add gettext quoting around + "Truncating" and "Clearing" for i18n. + 2001-05-05 Theodore Tso * util.c (fatal_error): Use the correct magic number when checking diff --git a/e2fsck/super.c b/e2fsck/super.c index 56fc228..ce78715 100644 --- a/e2fsck/super.c +++ b/e2fsck/super.c @@ -252,7 +252,8 @@ static int release_orphan_inodes(e2fsck_t ctx) clear_problem_context(&pctx); pctx.ino = ino; pctx.inode = &inode; - pctx.str = inode.i_links_count ? "Truncating" : "Clearing"; + pctx.str = inode.i_links_count ? _("Truncating") : + _("Clearing"); fix_problem(ctx, PR_0_ORPHAN_CLEAR_INODE, &pctx); -- 1.8.3.1