summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xextract_translators.pl54
-rw-r--r--po/de.po2
-rw-r--r--po/el.po4
-rw-r--r--po/en_GB.po4
-rw-r--r--po/fa.po2
-rw-r--r--po/gl.po2
-rw-r--r--po/he.po2
-rw-r--r--po/it.po4
-rw-r--r--po/km.po2
-rw-r--r--po/pl.po3
-rw-r--r--po/sv.po2
-rw-r--r--po/uk.po2
-rw-r--r--po/vi.po4
-rw-r--r--po/zh_TW.po2
-rw-r--r--translators.txt86
15 files changed, 166 insertions, 9 deletions
diff --git a/extract_translators.pl b/extract_translators.pl
new file mode 100755
index 00000000..a3ad02a2
--- /dev/null
+++ b/extract_translators.pl
@@ -0,0 +1,54 @@
+#!/usr/bin/env perl
+
+use strict;
+use Locale::Language;
+use Locale::Country;
+
+my @files = split /\s+/, `ls po/*.po`;
+my @files = sort {$a cmp $b} @files;
+
+foreach my $f (@files) {
+ open F, "<$f";
+
+ my $code = $f;
+ $code =~ s/^po\/(.*)\.po/$1/g;
+
+ my $script;
+ if ($code =~ /(.*)@(.*)/) {
+ $code = $1;
+ $script = $2;
+ }
+
+ my $country;
+ if ($code =~ /(.*)_(.*)/) {
+ $code = $1;
+ $country = code2country ($2);
+ }
+
+ my $lang = code2language($code);
+ #print "$code\n";
+ print "$lang";
+ if ($country) {
+ print " ($country)";
+ }
+ if ($script) {
+ print " ($script)";
+ }
+ print "\n";
+ while (<F>) {
+ if (/^#/) {
+ if (/\@/ && !(/Yakovenko/) && !(/EMAIL/)) {
+ s/^#//;
+ s/, [0-9]+\.$//g;
+ chomp;
+ print "$_\n";
+ }
+ }
+ else {
+ last;
+ }
+ }
+ print "\n";
+
+ close F;
+}
diff --git a/po/de.po b/po/de.po
index 0436b9f3..9034ab19 100644
--- a/po/de.po
+++ b/po/de.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+# Lutz Thuns <lOtz1009@opensuse.org>.
#
msgid ""
msgstr ""
diff --git a/po/el.po b/po/el.po
index d9c5ff2e..3d3fb1ed 100644
--- a/po/el.po
+++ b/po/el.po
@@ -1,3 +1,7 @@
+# Deadbeef Audio Player
+# Copyright (C) 2009-2010 Alexey Yakovenko <waker@users.sourceforge.net>
+# This file is distributed under the same license as the Deadbeef package.
+# Giorgos Koutsikos <ragecryx@yahoo.gr>, 2010
#
msgid ""
msgstr ""
diff --git a/po/en_GB.po b/po/en_GB.po
index aa95d09a..14ac0bb6 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -1,3 +1,7 @@
+# Deadbeef Audio Player
+# Copyright (C) 2009-2010 Alexey Yakovenko <waker@users.sourceforge.net>
+# This file is distributed under the same license as the Deadbeef package.
+# Steve (Yorvyk) Cook <yorvik.ubunto@googlemail.com>, 2010.
#
msgid ""
msgstr ""
diff --git a/po/fa.po b/po/fa.po
index 2073c7fc..88caf9a5 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+# Ali <aysabzevar@gmail.com>, 2010.
#
msgid ""
msgstr ""
diff --git a/po/gl.po b/po/gl.po
index 6207cf98..52177b46 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+# Miguel Anxo Bouzada <mbouzada@gmail.com>, 2010.
#
msgid ""
msgstr ""
diff --git a/po/he.po b/po/he.po
index 054e2580..d7b43813 100644
--- a/po/he.po
+++ b/po/he.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+# Yaron <sh.yaron@gmail.com>, 2010.
#
msgid ""
msgstr ""
diff --git a/po/it.po b/po/it.po
index 7ed501a2..70871fe9 100644
--- a/po/it.po
+++ b/po/it.po
@@ -1,3 +1,7 @@
+# Deadbeef Audio Player
+# Copyright (C) 2009-2010 Alexey Yakovenko <waker@users.sourceforge.net>
+# This file is distributed under the same license as the Deadbeef package.
+# paolo stivanin <paolostivanin@gmail.com>
#
msgid ""
msgstr ""
diff --git a/po/km.po b/po/km.po
index 12375e8e..c7d95675 100644
--- a/po/km.po
+++ b/po/km.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+# SatyaN <satyathavy@gmail.com>, 2010.
#
msgid ""
msgstr ""
diff --git a/po/pl.po b/po/pl.po
index 7f48277a..3d10d7d0 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -1,7 +1,8 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-# Grzegorz Gibas <amigib@gmail.com>, Łukasz Jasiński <alvarus@alvarus.org>, 2010.
+# Grzegorz Gibas <amigib@gmail.com>, 2010.
+# Łukasz Jasiński <alvarus@alvarus.org>, 2010.
#
msgid ""
msgstr ""
diff --git a/po/sv.po b/po/sv.po
index f2bca6b7..ca26cde7 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+# Martin <brother@bsnet.se>, 2010.
#
msgid ""
msgstr ""
diff --git a/po/uk.po b/po/uk.po
index e56850f1..fc43122f 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -1,7 +1,7 @@
# Deadbeef Audio Player
# Copyright (C) 2009-2001 Alexey Yakovenko <waker@users.sourceforge.net>
# This file is distributed under the same license as the Deadbeef package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+# Yarema aka Knedlyk <yupadmin@gmail.com>, 2010.
#
msgid ""
msgstr ""
diff --git a/po/vi.po b/po/vi.po
index 34a2491f..d087082d 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -1,3 +1,7 @@
+# Deadbeef Audio Player
+# Copyright (C) 2009-2010 Alexey Yakovenko <waker@users.sourceforge.net>
+# This file is distributed under the same license as the Deadbeef package.
+# Tran Duy Hung <nguyentieuhau@gmail.com>, 2010.
#
msgid ""
msgstr ""
diff --git a/po/zh_TW.po b/po/zh_TW.po
index f33457c0..13140a40 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+# Hong Jen Yee <pcman.tw@gmail.com>, 2010.
#
msgid ""
msgstr ""
diff --git a/translators.txt b/translators.txt
new file mode 100644
index 00000000..78977bc1
--- /dev/null
+++ b/translators.txt
@@ -0,0 +1,86 @@
+Bengali
+ Ummey Salma Snigdha <snighda@ankur.org.bd>
+ Israt Jahan <israt@ankur.org.bd>
+
+Danish
+ Joe Hansen <joedalton2@yahoo.dk>
+
+German
+ Lutz Thuns <lOtz1009@opensuse.org>.
+
+Greek
+ Giorgos Koutsikos <ragecryx@yahoo.gr>, 2010
+
+English (United Kingdom)
+ Steve (Yorvyk) Cook <yorvik.ubunto@googlemail.com>
+
+Spanish
+ depaz <depazzz@gmail.com>
+
+Persian
+ Ali <aysabzevar@gmail.com>
+
+French
+ Cilyan Olowen <gaknar@gmail.com>
+
+Gallegan
+ Miguel Anxo Bouzada <mbouzada@gmail.com>
+
+Hebrew
+ Yaron <sh.yaron@gmail.com>
+
+Croatian
+ Ivica Kolić<ikoli@yahoo.com>
+
+Indonesian
+ Andika Triwidada <andika@gmail.com>
+
+Italian
+ paolo stivanin <paolostivanin@gmail.com>
+
+Japanese
+ Hironao Komatsu <hironao@users.sourceforge.net>
+
+Kazakh
+ Baurzhan Muftakhidinov <baurthefirst@gmail.com>
+
+Khmer
+ SatyaN <satyathavy@gmail.com>
+
+Dutch
+ depaz <depazzz@gmail.com>
+
+Polish
+ Grzegorz Gibas <amigib@gmail.com>
+ Łukasz Jasiński <alvarus@alvarus.org>
+
+Portuguese
+ Sérgio Marques <smarquespt@gmail.com>
+
+Portuguese (Brazil)
+ Henrique P. Machado <hpmachado@gnome.org>
+
+Russian
+ Dmitriy Simbiriatin <slpiv@mail.ru>
+
+Slovak
+ Ivan Masár <helix84@centrum.sk>
+
+Serbian
+ Jay A. Fleming <tito.nehru.naser@gmail.com>
+
+Serbian (latin)
+ Jay A. Fleming <tito.nehru.naser@gmail.com>
+
+Swedish
+ Martin <brother@bsnet.se>
+
+Ukrainian
+ Yarema aka Knedlyk <yupadmin@gmail.com>
+
+Vietnamese
+ Tran Duy Hung <nguyentieuhau@gmail.com>
+
+Chinese (Taiwan, Province of China)
+ Hong Jen Yee <pcman.tw@gmail.com>
+