From 14a62cc0c49200abc675c0d611f3dd5b4c1236cf Mon Sep 17 00:00:00 2001 From: acli Date: Thu, 19 Feb 2004 21:28:14 +0000 Subject: [PATCH] Forgot to check for fuzzy-ness. --- misc/translator/tmpl_process3.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/misc/translator/tmpl_process3.pl b/misc/translator/tmpl_process3.pl index c12df6177d..4653c1ad93 100755 --- a/misc/translator/tmpl_process3.pl +++ b/misc/translator/tmpl_process3.pl @@ -33,6 +33,7 @@ sub find_translation ($) { my($s) = @_; my $key = TmplTokenizer::quote_po($s) if $s =~ /\S/; return defined $href->{$key} + && !$href->{$key}->fuzzy && length Locale::PO->dequote($href->{$key}->msgstr)? Locale::PO->dequote($href->{$key}->msgstr): $s; } -- 2.39.5