diff options
author | Theodore Ts'o <tytso@mit.edu> | 2001-05-09 06:03:58 +0000 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2001-05-09 06:03:58 +0000 |
commit | f0b8c87d2a196ecc9a19998d512f3d9a46b758ea (patch) | |
tree | f5717bfeef0b53ab3275efdaa058ec266f47cced /e2fsck | |
parent | 4d8f08f4582a23a1ac5039871f4f15ff878bb64d (diff) | |
download | e2fsprogs-f0b8c87d2a196ecc9a19998d512f3d9a46b758ea.tar.gz |
ChangeLog, super.c:
super.c (release_orphan_inodes): Add gettext quoting around
"Truncating" and "Clearing" for i18n.
Diffstat (limited to 'e2fsck')
-rw-r--r-- | e2fsck/ChangeLog | 5 | ||||
-rw-r--r-- | e2fsck/super.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/e2fsck/ChangeLog b/e2fsck/ChangeLog index ae3f10c6..da16dd50 100644 --- a/e2fsck/ChangeLog +++ b/e2fsck/ChangeLog @@ -1,3 +1,8 @@ +2001-05-09 Theodore Tso <tytso@valinux.com> + + * super.c (release_orphan_inodes): Add gettext quoting around + "Truncating" and "Clearing" for i18n. + 2001-05-05 Theodore Tso <tytso@valinux.com> * util.c (fatal_error): Use the correct magic number when checking diff --git a/e2fsck/super.c b/e2fsck/super.c index 56fc2282..ce78715a 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); |