diff options
Diffstat (limited to 'perl-install/lang.pm')
-rw-r--r-- | perl-install/lang.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/lang.pm b/perl-install/lang.pm index 17a559e56..79da314fe 100644 --- a/perl-install/lang.pm +++ b/perl-install/lang.pm @@ -370,6 +370,7 @@ sub load_po($) { foreach (<F>) { /^msgstr/ and $state = 1; /^msgid/ && !$fuzzy and $state = 2; + s/@/\\@/g; if (/^(#|$)/ && $state != 3) { $state = 3; |