From 75b5672f6f82f4946b4b3f20cfe69946b6cb8210 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Wed, 27 Aug 2008 19:00:50 -0400 Subject: [PATCH] Update @-expansion script for the I18N translation template Update the @-expansion script to support the @x -> extent expansion Signed-off-by: "Theodore Ts'o" --- po/at-expand.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/po/at-expand.pl b/po/at-expand.pl index 6bd441fc..931c6a0b 100644 --- a/po/at-expand.pl +++ b/po/at-expand.pl @@ -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; }