From: Theodore Ts'o Date: Wed, 9 May 2001 06:03:58 +0000 (+0000) Subject: ChangeLog, super.c: X-Git-Tag: E2FSPROGS-1_20~53 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f0b8c87d2a196ecc9a19998d512f3d9a46b758ea;p=thirdparty%2Fe2fsprogs.git ChangeLog, super.c: super.c (release_orphan_inodes): Add gettext quoting around "Truncating" and "Clearing" for i18n. --- diff --git a/e2fsck/ChangeLog b/e2fsck/ChangeLog index ae3f10c66..da16dd50c 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 56fc22821..ce78715ab 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);