2008-10-18 [paul] 3.6.1cvs9

* tools/claws.i18n.status.pl
		updated with latest translator info.
		only print for languages defined in %langname
This commit is contained in:
Paul Mangan 2008-10-18 09:10:32 +00:00
parent b68a292ea6
commit 7930aa0c54
4 changed files with 16 additions and 25 deletions

View file

@ -1,3 +1,9 @@
2008-10-18 [paul] 3.6.1cvs9
* tools/claws.i18n.status.pl
updated with latest translator info.
only print for languages defined in %langname
2008-10-17 [paul] 3.6.1cvs8
* src/plugins/pgpcore/sgpgme.c

View file

@ -3590,3 +3590,4 @@
( cvs diff -u -r 1.42.2.42 -r 1.42.2.43 po/fr.po; ) > 3.6.1cvs6.patchset
( cvs diff -u -r 1.29.2.11 -r 1.29.2.12 INSTALL; ) > 3.6.1cvs7.patchset
( cvs diff -u -r 1.1.2.53 -r 1.1.2.54 src/plugins/pgpcore/sgpgme.c; ) > 3.6.1cvs8.patchset
( cvs diff -u -r 1.1.2.15 -r 1.1.2.16 tools/claws.i18n.status.pl; ) > 3.6.1cvs9.patchset

View file

@ -11,7 +11,7 @@ MINOR_VERSION=6
MICRO_VERSION=1
INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=8
EXTRA_VERSION=9
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=

View file

@ -10,20 +10,13 @@
%langname = (
'bg.po' => 'Bulgarian',
'ca.po' => 'Catalan',
'cs.po' => 'Czech',
'de.po' => 'German',
'el.po' => 'Greek',
'en_GB.po' => 'British English',
'es.po' => 'Spanish',
'fi.po' => 'Finnish',
'fr.po' => 'French',
'he.po' => 'Hebrew',
'hr.po' => 'Croatian',
'hu.po' => 'Hungarian',
'it.po' => 'Italian',
'ja.po' => 'Japanese',
'ko.po' => 'Korean',
'nb.po' => 'Norwegian',
'nl.po' => 'Dutch',
'pl.po' => 'Polish',
'pt_BR.po' => 'Brazilian Portuguese',
@ -32,35 +25,26 @@
'sr.po' => 'Serbian',
'sv.po' => 'Swedish',
'zh_CN.po' => 'Simpilified Chinese',
'zh_TW.po' => 'Taiwanese',
);
%lasttranslator = (
'bg.po' => 'Yasen Pramatarov <yasen@lindeas.com>',
'ca.po' => 'Miquel Oliete <ktalanet@yahoo.es>',
'cs.po' => 'Tim <timbrain@post.cz>',
'de.po' => 'Stephan Sachse <white@dev-zero.com>',
'el.po' => 'Stavros Giannouris <stavrosg2002@freemail.gr>',
'en_GB.po' => 'Paul Mangan <paul@claws-mail.org>',
'es.po' => 'Ricardo Mones Lastra <ricardo@mones.org>',
'fi.po' => 'Flammie Pirinen <flammie@iki.fi>',
'fr.po' => 'Fabien Vantard <fzzzzz@gmail.com>',
'he.po' => 'S.D.O.C. LTD <sdocdb@gmail.com>',
'hr.po' => 'Dragan Leskovar <drleskov@inet.hr>',
'hu.po' => 'Pader Rezso <rezso@rezso.net>',
'fr.po' => 'Tristan Chabredier <wwp@claws-mail.org>',
'hu.po' => 'P&aacute;der Rezs&#337; <rezso@rezso.net>',
'it.po' => 'Andrea Spadaccini <a.spadaccini@catania.linux.it>',
'ja.po' => 'Rui Hirokawa <rui_hirokawa@ybb.ne.jp>',
'ko.po' => 'ChiDeok, Hwang <hwang@mizi.co.kr>',
'nb.po' => 'Geir Helland <pjallabais@users.sourceforge.net>',
'nl.po' => 'Tim Dijkstra <tim@famdijkstra.org>',
'pl.po' => 'Pawel Pekala <c0rn@o2.pl>',
'nl.po' => 'Marcel Pol <mpol@gmx.net>',
'pl.po' => 'Emilian Nowak <emil5@go2.pl>',
'pt_BR.po' => 'Frederico Goncalves Guimaraes <fggdebian@yahoo.com.br>',
'ru.po' => 'Pavlo Bohmat <bohm@ukr.net>',
'ru.po' => 'Aleksei Miheev <aleksei@miheev.info>',
'sk.po' => 'Andrej Kacian <andrej@kacian.sk>',
'sr.po' => 'urke <urke@users.sourceforge.net>',
'sv.po' => 'Anders Trob&auml;ck <sylpheed@troback.com>',
'sr.po' => 'Aleksandar Urosevic <urke@users.sf.net>',
'sv.po' => 'Lars Persson Fink <lars.p.fink@gmail.com>',
'zh_CN.po' => 'Ralgh Young <bamanzi@gmail.com>',
'zh_TW.po' => 'Wei-Lun Chao <chaoweilun@pcmail.com.tw>',
);
%barcolornorm = (
@ -193,7 +177,7 @@ closedir(PODIR);
$alang = $atran = $afuzz = $auntr = $oddeven = 0;
foreach $pofile (@sorted_pofiles) {
$_ = $pofile;
if (/.+\.po$/) {
if (/.+\.po$/ && defined($langname{$pofile}) ) {
print STDERR "Processing $_\n"; # be a little informative
++$alang;
$transage = $tran = $fuzz = $untr = 0;