3 # claws.i18n.stats.pl - Generate statistics for Claws Mail po directory.
5 # Copyright (C) 2003-2008 by Ricardo Mones <ricardo@mones.org>,
6 # Paul Mangan <paul@claws-mail.org>
7 # This program is released under the GNU General Public License.
9 # constants -----------------------------------------------------------------
12 'bg.po' => 'Bulgarian',
16 'en_GB.po' => 'British English',
20 'hu.po' => 'Hungarian',
21 'id.po' => 'Indonesian',
23 'ja.po' => 'Japanese',
26 'pt_BR.po' => 'Brazilian Portuguese',
27 'pt_PT.po' => 'Portuguese',
29 'sk.po' => 'Slovakian',
31 'zh_CN.po' => 'Simpilified Chinese',
35 'bg.po' => 'Yasen Pramatarov <yasen@lindeas.com>',
36 'ca.po' => 'Miquel Oliete <ktalanet@yahoo.es>',
37 'cs.po' => 'David Vachulka <david@konstrukce-cad.com>',
38 'de.po' => 'Stephan Sachse <white@dev-zero.com>',
39 'en_GB.po' => 'Paul Mangan <paul@claws-mail.org>',
40 'es.po' => 'Ricardo Mones Lastra <ricardo@mones.org>',
41 'fi.po' => 'Flammie Pirinen <flammie@iki.fi>',
42 'fr.po' => 'Tristan Chabredier <wwp@claws-mail.org>',
43 'hu.po' => 'Páder Rezső <rezso@rezso.net>',
44 'id.po' => 'MSulchan Darmawan <bleketux@gmail.com>',
45 'it.po' => 'Andrea Spadaccini <a.spadaccini@catania.linux.it>',
46 'ja.po' => 'kazken3 <kazken3@gmail.com>',
47 'nl.po' => 'Marcel Pol <mpol@gmx.net>',
48 'pl.po' => 'Emilian Nowak <emil5@go2.pl>',
49 'pt_PT.po' => 'Tiago Faria <gouki@goukihq.org>',
50 'pt_BR.po' => 'Frederico Goncalves Guimaraes <fggdebian@yahoo.com.br>',
51 'ru.po' => 'Aleksei Miheev <aleksei@miheev.info>',
52 'sk.po' => 'Slavko <slavino@slavino.sk>',
53 'sv.po' => 'Lars Persson Fink <lars.p.fink@gmail.com>',
54 'zh_CN.po' => 'Ralgh Young <bamanzi@gmail.com>',
59 partially
=> 'lightblue',
65 partially
=> 'lightgrey', # ligth red '#FFA0A0',
66 completed
=> 'grey', # darker red '#FF7070',
69 %barcolorcheat = ( # remarks translations with revision dates in the future
71 partially
=> 'yellow',
75 $barwidth = 500; # pixels
76 $barheight = 12; # pixels
78 $transolddays = 90; # days to consider a translation is old, so probably unmaintained.
79 $transoldmonths = $transolddays / 30;
80 $transneedthresold = 0.75; # percent/100
82 $msgfmt = '/usr/bin/msgfmt';
84 $averagestr = 'Project average';
85 $contactaddress = 'translations@thewildbeast.co.uk';
87 # $pagehead = '../../claws.i18n.head.php';
88 # $pagetail = '../../claws.i18n.tail.php';
90 # code begins here ----------------------------------------------------------
91 sub get_current_date
{
94 $date =~ /(\S+)(\s+)(\S+)(\s+)(\S+)(\s+)(\S+)(\D+)(\d+)/;
95 $datetimenow = "$5-$3-$9 at $7"."$8";
100 return ($y * 365) + ($m * 31) + $d;
103 ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) = gmtime(time);
106 $cage = get_trans_age
($year,$mon,$mday); # get current "age"
108 # drawing a language status row
110 my ($lang, $person, $trans, $fuzzy, $untrans, $tage, $oddeven) = @_;
111 $total = $trans + $fuzzy + $untrans;
112 if ($tage == 0) { $tage = $cage; } # hack for average translation
113 print STDERR
$cage, " ", $tage, "\n";
114 if (($cage - $tage) < 0) {
115 $barcolor = \
%barcolorcheat;
117 $barcolor = (($cage - $tage) > $transolddays)? \
%barcoloraged : \
%barcolornorm ;
120 if (/(.+)\s+\<(.+)\>/) { $pname = $1; $pemail = $2; } else { $pname = $pemail = $contactaddress; }
122 if ($oddeven > 0) { print " bgcolor=#EFEFEF"; }
124 if ($lang eq $averagestr) {
125 print "<b>$lang</b>";
127 print "<a href=\"mailto:%22$pname%22%20<$pemail>\">$lang</a>";
130 print "<td>\n<table style='border: solid 1px black; width: $barwidth' border='0' cellspacing='0' cellpadding='0'><tr>\n";
131 $barlen = ($trans / $total) * $barwidth;
132 print "<td style='width:$barlen", "px; height:$barheight", "px;' bgcolor=\"$$barcolor{completed}\"></td>\n";
133 $barlen2 = ($fuzzy / $total) * $barwidth;
134 print "<td style='width:$barlen2", "px' bgcolor=\"$$barcolor{partially}\"></td>\n";
135 $barlen3 = $barwidth - $barlen2 - $barlen;
136 print "<td style='width:$barlen3", "px' bgcolor=\"$$barcolor{default}\"></td>\n";
137 print "</tr>\n</table>\n</td>\n\n<td style='text-align: right'>", int(($trans / $total) * 10000) / 100, "%</td
>\n";
138 if (($lang eq $langname{'en_GB.po'}) or ($lang eq $averagestr)) { $trans = $total; } # hack for en_GB and average results
139 $transtatus = (($trans / $total) < $transneedthresold)? '<font size="+1" color="red
"> * </font>': '';
140 print "<td
>$transtatus</td>\n</tr
>\n";
145 return (($i > 9)? "$i" : "0$i");
150 # get project version from changelog (project dependent code :-/ )
151 $_ = `head -1 ../ChangeLog`;
152 if (/\S+\s+\S+\s+(\S+)/) { $genversion = $1; } else { $genversion = 'Unknown'; }
154 $numlang = keys(%langname);
156 # print `cat $pagehead`;
160 # removed for being included
164 print qq ~<div
class=indent
>
165 <b
>Translation Status
(on
$datetimenow for $genversion)</b
>
167 <table cellspacing
=0 cellpadding
=2>~;
170 print qq ~<tr bgcolor
=#cccccc>
171 <th align
=left
>Language
</th
>
172 <th
>Translated
|Fuzzy
|Untranslated
</th
>
178 opendir(PODIR
, ".") || die("Error: can't open current directory\n");
179 push(@pofiles,(readdir(PODIR
)));
182 @sorted_pofiles = sort(@pofiles);
184 $alang = $atran = $afuzz = $auntr = $oddeven = 0;
185 foreach $pofile (@sorted_pofiles) {
187 if (/.+\.po$/ && defined($langname{$pofile}) ) {
188 print STDERR
"Processing $_\n"; # be a little informative
190 $transage = $tran = $fuzz = $untr = 0;
191 $_ = `$msgfmt -c --statistics -o /dev/null $pofile 2>&1`;
192 if (/([0-9]+)\s+translated/) {
195 if (/([0-9]+)\s+fuzzy/) {
198 if (/([0-9]+)\s+untranslated/) {
201 # print STDERR "Translated [$tran] Fuzzy [$fuzz] Untranslated [$untr]\n";
205 $_ = `grep 'PO-Revision-Date:' $pofile | cut -f2 -d:`;
206 if (/\s+(\d+)\-(\d+)\-(\d+)/) {
207 $transage = get_trans_age
($1,$2,$3);
209 print_lang
($langname{$pofile},$lasttranslator{$pofile},$tran,$fuzz,$untr,$transage, $oddeven);
210 if ($oddeven == 1) { $oddeven = 0 } else { $oddeven++; }
214 # average results for the project
215 print "<tr>\n<td colspan=3 height=8></td>\n<tr>";
216 print_lang
($averagestr,'',$atran,$afuzz,$auntr,0,0);
222 # print "<br>Number of languages supported: $alang <br>";
224 Languages marked with
<font size
="+1" color
="red"> *</font
>
225 really need your help to be completed
.
227 The ones with grey bars are
<i
>probably unmaintained
</i
> because
228 translation is more than
$transoldmonths months old
, anyway
, trying
229 to contact current translator first is usually a good idea before
230 submitting an updated one
.<p
><b
>NOTE
</b
>: if you are the translator
231 of one of them
and don
't want to see your language bar in grey you
232 should manually update the <tt>PO-Revision-Date</tt> field in the .po
233 file header (or, alternatively, use a tool which does it for you).
238 # print `cat $pagetail`;
242 # removed for being included