]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commitdiff
Update @-expansion script for the I18N translation template
authorTheodore Ts'o <tytso@mit.edu>
Wed, 27 Aug 2008 23:00:50 +0000 (19:00 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Wed, 27 Aug 2008 23:00:50 +0000 (19:00 -0400)
Update the @-expansion script to support the @x -> extent expansion

Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
po/at-expand.pl

index 6bd441fcb8523dccfd87955bc8476ddb470bdee9..931c6a0b3ed95069dd1da671cc87e118f656f6b8 100644 (file)
@@ -96,6 +96,7 @@ sub do_expand {
     $msg =~ s/\@S/superblock/g;
     $msg =~ s/\@u/unattached/g;
     $msg =~ s/\@v/device/g;
+    $msg =~ s/\@x/extent/g;
     $msg =~ s/\@z/zero-length/g;
     $msg =~ s/\@\@/@/g;
 }