summaryrefslogtreecommitdiffstats
path: root/perl-install/lang.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/lang.pm')
-rw-r--r--perl-install/lang.pm6
1 files changed, 4 insertions, 2 deletions
diff --git a/perl-install/lang.pm b/perl-install/lang.pm
index 8d7465729..514d19594 100644
--- a/perl-install/lang.pm
+++ b/perl-install/lang.pm
@@ -174,7 +174,7 @@ sub write {
sub load_po($) {
my ($lang) = @_;
- my ($s, $from, $to, $state);
+ my ($s, $from, $to, $state, $fuzzy);
$s .= "package po::I18N;\n";
$s .= "\%$lang = (";
@@ -183,7 +183,7 @@ sub load_po($) {
local *F; open F, $f or return;
foreach (<F>) {
/^msgstr/ and $state = 1;
- /^msgid/ and $state = 2;
+ /^msgid/ && !$fuzzy and $state = 2;
if (/^(#|$)/ && $state != 3) {
$state = 3;
@@ -192,6 +192,8 @@ sub load_po($) {
}
$to .= (/"(.*)"/)[0] if $state == 1;
$from .= (/"(.*)"/)[0] if $state == 2;
+
+ $fuzzy = /^#, fuzzy/;
}
$s .= ");";
no strict "vars";