# HG changeset patch # User Nathan Walp # Date 1066003843 0 # Node ID 136daef154f64b24c3353d499def499e025f24c6 # Parent 59ffe137176d80d538338e64ac9ad7107c9f5f4e [gaim-migrate @ 7820] adding images of width 0 just didn't sit right with me committer: Tailor Script diff -r 59ffe137176d -r 136daef154f6 po/stats.pl --- a/po/stats.pl Sun Oct 12 21:00:26 2003 +0000 +++ b/po/stats.pl Mon Oct 13 00:10:43 2003 +0000 @@ -71,8 +71,17 @@ $name = $lang{$po}; $name = code2language($po) unless $name ne ""; $name = "???" unless $name ne ""; - printf "%s(%s.po)%d%0.2f%d%0.2f%d%0.2f%d%0.2f\n", - $name, $po, $trans, $transp, $fuzz, $fuzzp, $untrans, $untransp, $gone, $gonep, $transp*2, $fuzzp*2, $untransp*2, $gonep*2; + printf "%s(%s.po)%d%0.2f%d%0.2f%d%0.2f%d%0.2f", + $name, $po, $trans, $transp, $fuzz, $fuzzp, $untrans, $untransp, $gone, $gonep; + printf "", $transp*2 + unless $transp*2 < 0.5; + printf "", $fuzzp*2 + unless $fuzzp*2 < 0.5; + printf "", $untransp*2 + unless $untransp*2 < 0.5; + printf "", $gonep*2 + unless $gonep*2 < 0.5; + print "\n"; } print "\n"; print "Latest gaim.pot generated $now: gaim.pot
\n";