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.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/lang.pm b/perl-install/lang.pm
index 15c5436a7..c12856eac 100644
--- a/perl-install/lang.pm
+++ b/perl-install/lang.pm
@@ -273,14 +273,13 @@ sub load_po($) {
} else {
-e ($f = "$_/po.cz2") and last foreach @INC;
$f =~ s/\.cz2//;
- log::l("loading $lang.po from $f");
+ log::l("trying to load $lang.po from $f");
open F, "extract_archive $f '' $lang.po 2>/dev/null |";
}
} else {
open F, $f; #- not returning here help avoiding reading the same multiple times.
}
foreach (<F>) {
- log::l("load_po: $_");
/^msgstr/ and $state = 1;
/^msgid/ && !$fuzzy and $state = 2;