# HG changeset patch # User Nathan Walp # Date 1126156267 0 # Node ID a32f186c8dc0ebfd37350c6a0e87a6e924605fdb # Parent e26f4485cf5307027ea47dfe0ee7907ff452f339 [gaim-migrate @ 13706] translation stats update (http://gaim.sf.net/l10n/ now points to statistics from HEAD instead of oldstatus) yes, I'll make the XSL prettier later. It's "good enough" for the moment diff -r e26f4485cf53 -r a32f186c8dc0 po/l10n.xsl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/po/l10n.xsl Thu Sep 08 05:11:07 2005 +0000 @@ -0,0 +1,46 @@ + + + + + + <xsl:value-of select='@name'/> translation statistics + + + +

translation statistics

+ + + + + + + + + + + + +
LanguageTranslatedFuzzyUntranslated
.po % % % + + + + +
px;px;
+
+ generated on + + +
+
diff -r e26f4485cf53 -r a32f186c8dc0 po/stats.pl --- a/po/stats.pl Wed Sep 07 16:20:39 2005 +0000 +++ b/po/stats.pl Thu Sep 08 05:11:07 2005 +0000 @@ -1,6 +1,6 @@ #!/usr/bin/perl -# Copyright 2003-2004 Nathan Walp +# Copyright 2003-2005 Nathan Walp # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -17,6 +17,8 @@ # Foundation, Inc., 50 Temple Place, Suite 330, Boston, MA 02111-1307 USA # +use POSIX qw(strftime); + my $PACKAGE="gaim"; @@ -47,10 +49,11 @@ die "unable to get total: $!" unless (/(\d+) untranslated messages/); $total = $1; +$generated = strftime "%Y-%m-%d %H:%M:%S", gmtime; print "\n"; print "\n"; -print "\n"; +print "\n"; foreach $index (0 .. $#pos) { $trans = $fuzz = $untrans = 0;