aboutsummaryrefslogtreecommitdiffstats
path: root/stattrans.pl
diff options
context:
space:
mode:
authorDenis Barbier <barbier>2004-05-08 17:49:03 +0000
committerDenis Barbier <barbier>2004-05-08 17:49:03 +0000
commitff87651e3f91fa3f1cc51f06e4c9a8d127da68d6 (patch)
tree93b26ccfa2db55d1e9dda0b21b79d7f753afa599 /stattrans.pl
parent63248c5593caa5cb265ae577c91550ab9928b93f (diff)
Also display zh-tw stats in main index file.
CVS version numbers stattrans.pl: 1.60 -> 1.61
Diffstat (limited to 'stattrans.pl')
-rwxr-xr-xstattrans.pl14
1 files changed, 8 insertions, 6 deletions
diff --git a/stattrans.pl b/stattrans.pl
index 2ba7f2679e2..f71fefe9a83 100755
--- a/stattrans.pl
+++ b/stattrans.pl
@@ -453,9 +453,9 @@ print HTML $border_head;
print HTML "<table width=\"100%\" border=0 bgcolor=\"#cdc9c9\">\n";
print HTML "<tr><th>Language</th><th>Translations</th><th>Up to date</th><th>Outdated</th><th>Not translated</th></tr>\n";
foreach $lang (@search_in) {
- $l = $langs{$lang};
- $l = "zh-cn" if ($l eq "zh"); # kludge
-
+ my @processed_langs = ($langs{$lang});
+ @processed_langs = ("zh-cn", "zh-tw") if $langs{$lang} eq "zh";
+ foreach $l (@processed_langs) {
$color_a = get_color ($percent_a{$lang});
$color_t = get_color ($percent_t{$lang});
$color_o = get_color (100 - $percent_o{$lang});
@@ -468,6 +468,7 @@ foreach $lang (@search_in) {
printf HTML "<td bgcolor=\"%s\" align=right>%d (%d%%)</td>", $color_o, $outdated{$lang}, $percent_o{$lang};
printf HTML "<td bgcolor=\"%s\" align=right>%d (%d%%)</td>", $color_u, $untranslated{$lang}, $percent_u{$lang};
print HTML "</tr>\n",
+ }
}
print HTML "</table>\n";
print HTML $border_foot;
@@ -479,9 +480,9 @@ print HTML "<table width=\"100%\" border=0 bgcolor=\"#cdc9c9\">\n";
print HTML "<tr><th>Language</th><th>Up to date</th><th>Fuzzy</th><th>Not translated</th></tr>\n";
foreach $lang (@search_in) {
next if $lang eq 'english';
- $l = $langs{$lang};
- $l = "zh-cn" if ($l eq "zh"); # kludge
-
+ my @processed_langs = ($langs{$lang});
+ @processed_langs = ("zh-cn", "zh-tw") if $langs{$lang} eq "zh";
+ foreach $l (@processed_langs) {
print HTML "<tr>";
printf HTML "<td><a href=\"%s.html#gettext\">%s</a> (%s)</td>", $l, ucfirst $lang, $l;
$color_t = get_color ($percent_po_t{'total'}{$lang});
@@ -491,6 +492,7 @@ foreach $lang (@search_in) {
printf HTML "<td bgcolor=\"%s\" align=right>%d (%d%%)</td>", $color_f, $po_fuzzy{'total'}{$lang}, $percent_po_f{'total'}{$lang};
printf HTML "<td bgcolor=\"%s\" align=right>%d (%d%%)</td>", $color_u, $po_untranslated{'total'}{$lang}, $percent_po_u{'total'}{$lang};
print HTML "</tr>\n";
+ }
}
print HTML "</table>\n";

© 2014-2024 Faster IT GmbH | imprint | privacy policy