]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commitdiff
ChangeLog, super.c:
authorTheodore Ts'o <tytso@mit.edu>
Wed, 9 May 2001 06:03:58 +0000 (06:03 +0000)
committerTheodore Ts'o <tytso@mit.edu>
Wed, 9 May 2001 06:03:58 +0000 (06:03 +0000)
  super.c (release_orphan_inodes): Add gettext quoting around
   "Truncating" and "Clearing" for i18n.

e2fsck/ChangeLog
e2fsck/super.c

index ae3f10c66d4dd7cb3a340e5b4ba4123f01fd07f3..da16dd50c9521d813c0f25eb6e05e16df4dbb949 100644 (file)
@@ -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
index 56fc2282187b163ceec24e5dcb9a47ef7599a967..ce78715ab896c9f1beb436536db51eb0fe616d47 100644 (file)
@@ -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);