Commit ba1a28cb authored by Dietmar Maurer's avatar Dietmar Maurer

skip fuzzy translations

We do not want wrong translations on the web interface.
parent 0c91b05c
...@@ -46,6 +46,8 @@ if ($header =~ m|\\nContent-Type:\s+text/plain;\s+charset=(\S+)\\n|im) { ...@@ -46,6 +46,8 @@ if ($header =~ m|\\nContent-Type:\s+text/plain;\s+charset=(\S+)\\n|im) {
foreach my $k (keys %$href) { foreach my $k (keys %$href) {
my $po = $href->{$k}; my $po = $href->{$k};
next if $po->fuzzy(); # skip fuzzy entries
my $qmsgid = decode($charset, $po->msgid); my $qmsgid = decode($charset, $po->msgid);
my $msgid = $po->dequote($qmsgid); my $msgid = $po->dequote($qmsgid);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment