2009-07-04 [paul] 3.7.2cvs1
[claws.git] / tools / claws.i18n.status.pl
bloba816defd6c569b163576da15d46a699fb3cb7696
1 #!/usr/bin/perl -w
3 # claws.i18n.stats.pl - Generate statistics for Claws Mail po directory.
4 #
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 -----------------------------------------------------------------
11 %langname = (
12 'bg.po' => 'Bulgarian',
13 'ca.po' => 'Catalan',
14 'cs.po' => 'Czech',
15 'de.po' => 'German',
16 'en_GB.po' => 'British English',
17 'es.po' => 'Spanish',
18 'fi.po' => 'Finnish',
19 'fr.po' => 'French',
20 'hu.po' => 'Hungarian',
21 'id.po' => 'Indonesian',
22 'it.po' => 'Italian',
23 'ja.po' => 'Japanese',
24 'nl.po' => 'Dutch',
25 'pl.po' => 'Polish',
26 'pt_BR.po' => 'Brazilian Portuguese',
27 'pt_PT.po' => 'Portuguese',
28 'ru.po' => 'Russian',
29 'sk.po' => 'Slovakian',
30 'sv.po' => 'Swedish',
31 'zh_CN.po' => 'Simpilified Chinese',
34 %lasttranslator = (
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&aacute;der Rezs&#337; <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>',
57 %barcolornorm = (
58 default => 'white',
59 partially => 'lightblue',
60 completed => 'blue',
63 %barcoloraged = (
64 default => 'white',
65 partially => 'lightgrey', # ligth red '#FFA0A0',
66 completed => 'grey', # darker red '#FF7070',
69 %barcolorcheat = ( # remarks translations with revision dates in the future
70 default => 'white',
71 partially => 'yellow',
72 completed => 'red',
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 {
92 $date = `date --utc`;
93 chop $date;
94 $date =~ /(\S+)(\s+)(\S+)(\s+)(\S+)(\s+)(\S+)(\D+)(\d+)/;
95 $datetimenow = "$5-$3-$9 at $7"."$8";
98 sub get_trans_age {
99 my ($y, $m, $d) = @_;
100 return ($y * 365) + ($m * 31) + $d;
103 ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) = gmtime(time);
104 $year += 1900;
105 $mon++;
106 $cage = get_trans_age($year,$mon,$mday); # get current "age"
108 # drawing a language status row
109 sub print_lang {
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;
116 } else {
117 $barcolor = (($cage - $tage) > $transolddays)? \%barcoloraged : \%barcolornorm ;
119 $_ = $person;
120 if (/(.+)\s+\<(.+)\>/) { $pname = $1; $pemail = $2; } else { $pname = $pemail = $contactaddress; }
121 print "<tr";
122 if ($oddeven > 0) { print " bgcolor=#EFEFEF"; }
123 print ">\n<td>\n";
124 if ($lang eq $averagestr) {
125 print "<b>$lang</b>";
126 } else {
127 print "<a href=\"mailto:%22$pname%22%20<$pemail>\">$lang</a>";
129 print "</td>\n";
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";
143 sub tens {
144 my ($i) = @_;
145 return (($i > 9)? "$i" : "0$i");
148 get_current_date();
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`;
158 # make it a here-doc
159 #print <<ENDOFHEAD;
160 # removed for being included
161 #ENDOFHEAD
163 # start
164 print qq ~<div class=indent>
165 <b>Translation Status (on $datetimenow for $genversion)</b>
166 <div class=indent>
167 <table cellspacing=0 cellpadding=2>~;
169 # table header
170 print qq ~<tr bgcolor=#cccccc>
171 <th align=left>Language</th>
172 <th>Translated|Fuzzy|Untranslated</th>
173 <th>Percent</th>
174 <th></th>
175 </tr>~;
177 # get files
178 opendir(PODIR, ".") || die("Error: can't open current directory\n");
179 push(@pofiles,(readdir(PODIR)));
180 closedir(PODIR);
182 @sorted_pofiles = sort(@pofiles);
183 # iterate them
184 $alang = $atran = $afuzz = $auntr = $oddeven = 0;
185 foreach $pofile (@sorted_pofiles) {
186 $_ = $pofile;
187 if (/.+\.po$/ && defined($langname{$pofile}) ) {
188 print STDERR "Processing $_\n"; # be a little informative
189 ++$alang;
190 $transage = $tran = $fuzz = $untr = 0;
191 $_ = `$msgfmt -c --statistics -o /dev/null $pofile 2>&1`;
192 if (/([0-9]+)\s+translated/) {
193 $tran = $1;
195 if (/([0-9]+)\s+fuzzy/) {
196 $fuzz = $1;
198 if (/([0-9]+)\s+untranslated/) {
199 $untr = $1;
201 # print STDERR "Translated [$tran] Fuzzy [$fuzz] Untranslated [$untr]\n";
202 $atran += $tran;
203 $afuzz += $fuzz;
204 $auntr += $untr;
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);
218 # table footer
219 print "</table>\n";
221 # end
222 # print "<br>Number of languages supported: $alang <br>";
223 print qq ~<p>
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).
234 <br>
235 </div>
236 </div>~;
238 # print `cat $pagetail`;
240 # make it a here-doc
241 #print <<ENDOFTAIL;
242 # removed for being included
243 #ENDOFTAIL
245 # done