[Po4a-commits] r2604 - in /trunk: lib/Locale/Po4a/ po/bin/
barbier at users.alioth.debian.org
barbier at users.alioth.debian.org
Sun Sep 30 23:12:25 UTC 2012
Author: barbier
Date: Sun Sep 30 23:12:24 2012
New Revision: 2604
URL: http://svn.debian.org/wsvn/po4a/?sc=1&rev=2604
Log:
AsciiDoc: Change eval so that the message about Unicode::GCString pops up in PO files
Regenerate po/bin/*.po files.
Modified:
trunk/lib/Locale/Po4a/Text.pm
trunk/po/bin/af.po
trunk/po/bin/bn.po
trunk/po/bin/ca.po
trunk/po/bin/cs.po
trunk/po/bin/da.po
trunk/po/bin/de.po
trunk/po/bin/eo.po
trunk/po/bin/es.po
trunk/po/bin/et.po
trunk/po/bin/eu.po
trunk/po/bin/fr.po
trunk/po/bin/he.po
trunk/po/bin/hr.po
trunk/po/bin/id.po
trunk/po/bin/it.po
trunk/po/bin/ja.po
trunk/po/bin/kn.po
trunk/po/bin/ko.po
trunk/po/bin/ku.po
trunk/po/bin/nb.po
trunk/po/bin/nl.po
trunk/po/bin/oc.po
trunk/po/bin/pl.po
trunk/po/bin/po4a.pot
trunk/po/bin/pt.po
trunk/po/bin/pt_BR.po
trunk/po/bin/ru.po
trunk/po/bin/sl.po
trunk/po/bin/sv.po
trunk/po/bin/uk.po
trunk/po/bin/uz.po
trunk/po/bin/vi.po
trunk/po/bin/zh_CN.po
trunk/po/bin/zh_HK.po
Modified: trunk/lib/Locale/Po4a/Text.pm
URL: http://svn.debian.org/wsvn/po4a/trunk/lib/Locale/Po4a/Text.pm?rev=2604&op=diff
==============================================================================
--- trunk/lib/Locale/Po4a/Text.pm (original)
+++ trunk/lib/Locale/Po4a/Text.pm Sun Sep 30 23:12:24 2012
@@ -376,20 +376,22 @@
my $asciidoc_RE_STYLES = "$asciidoc_RE_SECTION_TEMPLATES|$asciidoc_RE_STYLE_ADMONITION|$asciidoc_RE_STYLE_PARAGRAPH|$asciidoc_RE_STYLE_NUMBERING|$asciidoc_RE_STYLE_LIST|float";
BEGIN {
- if (eval { require Unicode::GCString }) {
- eval 'sub columns($$$) {
+ my $UnicodeGCString_available = 0;
+ $UnicodeGCString_available = 1 if (eval { require Unicode::GCString });
+ eval {
+ sub columns($$$) {
my $text = shift;
my $encoder = shift;
$text = $encoder->decode($text) if (defined($encoder) && $encoder->name ne "ascii");
- return Unicode::GCString->new($text)->columns();
- }';
- } else {
- eval 'sub columns($$$) {
- return length($_[0]) if !defined($_[1]) || $_[1]->name eq "ascii";
- die wrap_mod("po4a::text",
- dgettext("po4a", "Detection of two line titles failed at %s\nInstall the Unicode::GCString module!"), $_[2])
- }';
- }
+ if ($UnicodeGCString_available) {
+ return Unicode::GCString->new($text)->columns();
+ } else {
+ return length($text) if !(defined($encoder) && $encoder->name ne "ascii");
+ die wrap_mod("po4a::text",
+ dgettext("po4a", "Detection of two line titles failed at %s\nInstall the Unicode::GCString module!"), shift)
+ }
+ }
+ };
}
sub parse_asciidoc {
Modified: trunk/po/bin/af.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/af.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/af.po (original)
+++ trunk/po/bin/af.po Sun Sep 30 23:12:24 2012
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: po4a bin\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2005-02-25 20:19+0100\n"
"Last-Translator: Theuns Smuts\n"
"Language-Team: Afrikaans <ubuntu-l10n-af at lists.launchpad.net>\n"
@@ -613,6 +613,13 @@
#: ../../lib/Locale/Po4a/TeX.pm:1537
msgid "The first argument of \\begin is mandatory."
+msgstr ""
+
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
msgstr ""
#: ../../lib/Locale/Po4a/TransTractor.pm:471
Modified: trunk/po/bin/bn.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/bn.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/bn.po (original)
+++ trunk/po/bin/bn.po Sun Sep 30 23:12:24 2012
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: po4a\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2007-08-12 21:47+0200\n"
"Last-Translator: শà¦à¦° পরà¦à¦¾à¦¶ পাল <shuvro_paul at walla.com>\n"
"Language-Team: Bengali <ubuntu-l10n-bn at lists.launchpad.net>\n"
@@ -599,6 +599,13 @@
#: ../../lib/Locale/Po4a/TeX.pm:1537
msgid "The first argument of \\begin is mandatory."
+msgstr ""
+
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
msgstr ""
#: ../../lib/Locale/Po4a/TransTractor.pm:471
Modified: trunk/po/bin/ca.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/ca.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/ca.po (original)
+++ trunk/po/bin/ca.po Sun Sep 30 23:12:24 2012
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: po4a bin\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2007-08-12 19:43+0200\n"
"Last-Translator: Jordi Vilalta Prat <jvprat at gmail.com>\n"
"Language-Team: Catalan <debian-l10n-catalan at lists.debian.org>\n"
@@ -699,6 +699,13 @@
#: ../../lib/Locale/Po4a/TeX.pm:1537
msgid "The first argument of \\begin is mandatory."
msgstr "El primer paràmetre de \\begin és obligatori."
+
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
+msgstr ""
#: ../../lib/Locale/Po4a/TransTractor.pm:471
#, perl-format
Modified: trunk/po/bin/cs.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/cs.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/cs.po (original)
+++ trunk/po/bin/cs.po Sun Sep 30 23:12:24 2012
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: po4a 0.41-1\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2010-11-23 14:31+0100\n"
"Last-Translator: Michal Simunek <michal.simunek at gmail.com>\n"
"Language-Team: Czech <debian-l10n-czech at lists.debian.org>\n"
@@ -698,6 +698,13 @@
#: ../../lib/Locale/Po4a/TeX.pm:1537
msgid "The first argument of \\begin is mandatory."
msgstr "Prvnà argument u \\begin je povinný."
+
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
+msgstr ""
#: ../../lib/Locale/Po4a/TransTractor.pm:471
#, perl-format
Modified: trunk/po/bin/da.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/da.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/da.po (original)
+++ trunk/po/bin/da.po Sun Sep 30 23:12:24 2012
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: po4a 0.41\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2010-11-28 17:30+01:00\n"
"Last-Translator: Joe Hansen <joedalton2 at yahoo.dk>\n"
"Language-Team: Danish <debian-l10n-danish at lists.debian.org>\n"
@@ -638,6 +638,13 @@
#: ../../lib/Locale/Po4a/TeX.pm:1537
msgid "The first argument of \\begin is mandatory."
msgstr "Det første argument i \\begin er obligatorisk."
+
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
+msgstr ""
#: ../../lib/Locale/Po4a/TransTractor.pm:471
#, perl-format
Modified: trunk/po/bin/de.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/de.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/de.po (original)
+++ trunk/po/bin/de.po Sun Sep 30 23:12:24 2012
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: po4a 0.41-1\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2012-09-22 16:46+0200\n"
"Last-Translator: Thomas Müller <thomas.mueller at tmit.eu>\n"
"Language-Team: German <debian-l10n-german at lists.debian.org>\n"
@@ -720,6 +720,13 @@
msgid "The first argument of \\begin is mandatory."
msgstr "Das erste Argument von \\begin ist verbindlich."
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
+msgstr ""
+
#: ../../lib/Locale/Po4a/TransTractor.pm:471
#, perl-format
msgid "Can't close %s after writing: %s"
Modified: trunk/po/bin/eo.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/eo.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/eo.po (original)
+++ trunk/po/bin/eo.po Sun Sep 30 23:12:24 2012
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: po4a\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2010-11-22 13:54+0100\n"
"Last-Translator: Joop Eggen <joop_eggen at yahoo.de>\n"
"Language-Team: Esperanto <debian-l10n-esperanto at lists.debian.org>\n"
@@ -694,6 +694,13 @@
msgid "The first argument of \\begin is mandatory."
msgstr "La unua parametro de \\begin estas deviga."
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
+msgstr ""
+
#: ../../lib/Locale/Po4a/TransTractor.pm:471
#, perl-format
msgid "Can't close %s after writing: %s"
Modified: trunk/po/bin/es.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/es.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/es.po (original)
+++ trunk/po/bin/es.po Sun Sep 30 23:12:24 2012
@@ -25,7 +25,7 @@
msgstr ""
"Project-Id-Version: po4a bin 0.39\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2012-09-26 21:54+0200\n"
"Last-Translator: Omar Campagne <ocampagne at gmail.com>\n"
"Language-Team: Debian l10n Spanish <debian-l10n-spanish at lists.debian.org>\n"
@@ -355,9 +355,6 @@
#: ../../lib/Locale/Po4a/Po.pm:196
#, perl-format
-#| msgid ""
-#| "Invalid value for option 'porefs' ('%s' is not one of 'full', 'noline' or "
-#| "'none')"
msgid ""
"Invalid value for option 'porefs' ('%s' is not one of 'full', 'counter', "
"'noline' or 'none')"
@@ -729,6 +726,13 @@
#: ../../lib/Locale/Po4a/TeX.pm:1537
msgid "The first argument of \\begin is mandatory."
msgstr "El primer parámetro de \\begin es obligatorio."
+
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
+msgstr ""
#: ../../lib/Locale/Po4a/TransTractor.pm:471
#, perl-format
Modified: trunk/po/bin/et.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/et.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/et.po (original)
+++ trunk/po/bin/et.po Sun Sep 30 23:12:24 2012
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: po4a\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2010-11-22 20:08+0200\n"
"Last-Translator: Annika Ennok <aennok at gmail.com>\n"
"Language-Team: Estonian\n"
@@ -684,6 +684,13 @@
msgid "The first argument of \\begin is mandatory."
msgstr "Käsu \\begin esimene argument on kohustuslik."
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
+msgstr ""
+
#: ../../lib/Locale/Po4a/TransTractor.pm:471
#, perl-format
msgid "Can't close %s after writing: %s"
Modified: trunk/po/bin/eu.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/eu.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/eu.po (original)
+++ trunk/po/bin/eu.po Sun Sep 30 23:12:24 2012
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: po4a_0.41-1_eu\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2010-11-20 15:39+0100\n"
"Last-Translator: Iñaki Larrañaga Murgoitio <dooteo at euskalgnu.org>\n"
"Language-Team: Basque <debian-l10n-basque at lists.debian.org>\n"
@@ -707,6 +707,13 @@
msgid "The first argument of \\begin is mandatory."
msgstr "\\begin-en lehen argumentua beharrezkoa da."
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
+msgstr ""
+
#: ../../lib/Locale/Po4a/TransTractor.pm:471
#, perl-format
msgid "Can't close %s after writing: %s"
Modified: trunk/po/bin/fr.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/fr.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/fr.po (original)
+++ trunk/po/bin/fr.po Sun Sep 30 23:12:24 2012
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: po4a bin\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2010-11-19 18:27-0400\n"
"Last-Translator: David Prévot <david at tilapin.org>\n"
"Language-Team: French <debian-l10n-french at lists.debian.org>\n"
@@ -715,6 +715,13 @@
#: ../../lib/Locale/Po4a/TeX.pm:1537
msgid "The first argument of \\begin is mandatory."
msgstr "Le premier paramètre de \\begin est obligatoire."
+
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
+msgstr ""
#: ../../lib/Locale/Po4a/TransTractor.pm:471
#, perl-format
Modified: trunk/po/bin/he.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/he.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/he.po (original)
+++ trunk/po/bin/he.po Sun Sep 30 23:12:24 2012
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: po4a: translate documents using the gettext tools\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2005-04-16\n"
"Last-Translator: Itay Cohen\n"
"Language-Team: Hebrew <ubuntu-l10n-he at lists.launchpad.net>\n"
@@ -600,6 +600,13 @@
#: ../../lib/Locale/Po4a/TeX.pm:1537
msgid "The first argument of \\begin is mandatory."
+msgstr ""
+
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
msgstr ""
#: ../../lib/Locale/Po4a/TransTractor.pm:471
Modified: trunk/po/bin/hr.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/hr.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/hr.po (original)
+++ trunk/po/bin/hr.po Sun Sep 30 23:12:24 2012
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: po4a: translate documents using the gettext tools\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2007-08-12 20:08+0200\n"
"Last-Translator: Origjigji <mirtagj at gmail.com>\n"
"Language-Team: Croatian\n"
@@ -640,6 +640,13 @@
#: ../../lib/Locale/Po4a/TeX.pm:1537
msgid "The first argument of \\begin is mandatory."
+msgstr ""
+
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
msgstr ""
#: ../../lib/Locale/Po4a/TransTractor.pm:471
Modified: trunk/po/bin/id.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/id.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/id.po (original)
+++ trunk/po/bin/id.po Sun Sep 30 23:12:24 2012
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: po4a\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2007-08-12 21:46+0200\n"
"Last-Translator: Zaki Akhmad <zakiakhmad at gmail.com>\n"
"Language-Team: Indonesian <l10n at ubuntu-id.org>\n"
@@ -691,6 +691,13 @@
#: ../../lib/Locale/Po4a/TeX.pm:1537
msgid "The first argument of \\begin is mandatory."
msgstr "Argumen pertama dari \\begin adalah sebuah keharusan."
+
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
+msgstr ""
#: ../../lib/Locale/Po4a/TransTractor.pm:471
#, perl-format
Modified: trunk/po/bin/it.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/it.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/it.po (original)
+++ trunk/po/bin/it.po Sun Sep 30 23:12:24 2012
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: po4a 0.23\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2007-09-05 00:05+0200\n"
"Last-Translator: Danilo Piazzalunga <danilopiazza at gmail.com>\n"
"Language-Team: Italian <tp at lists.linux.it>\n"
@@ -707,6 +707,13 @@
#: ../../lib/Locale/Po4a/TeX.pm:1537
msgid "The first argument of \\begin is mandatory."
msgstr "Il primo argomento di \\begin è obbligatorio."
+
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
+msgstr ""
#: ../../lib/Locale/Po4a/TransTractor.pm:471
#, perl-format
Modified: trunk/po/bin/ja.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/ja.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/ja.po (original)
+++ trunk/po/bin/ja.po Sun Sep 30 23:12:24 2012
@@ -3,7 +3,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2010-11-20 10:30+0900\n"
"Last-Translator: KURASAWA Nozomu <nabetaro at caldron.jp>\n"
"Language-Team: Japanese <debian-japanese at lists.debian.org>\n"
@@ -692,6 +692,13 @@
msgid "The first argument of \\begin is mandatory."
msgstr "\\begin ã®ç¬¬ä¸å¼æ°ãå¿
é ã§ãã"
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
+msgstr ""
+
#: ../../lib/Locale/Po4a/TransTractor.pm:471
#, perl-format
msgid "Can't close %s after writing: %s"
Modified: trunk/po/bin/kn.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/kn.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/kn.po (original)
+++ trunk/po/bin/kn.po Sun Sep 30 23:12:24 2012
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: po4a\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2007-08-12 21:47+0200\n"
"Last-Translator: Shashidhar Honnungar <shashidhar.honnungar at gmail.com>\n"
"Language-Team: Kannada <debian-l10n-kannada at lists.debian.org>\n"
@@ -599,6 +599,13 @@
#: ../../lib/Locale/Po4a/TeX.pm:1537
msgid "The first argument of \\begin is mandatory."
+msgstr ""
+
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
msgstr ""
#: ../../lib/Locale/Po4a/TransTractor.pm:471
Modified: trunk/po/bin/ko.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/ko.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/ko.po (original)
+++ trunk/po/bin/ko.po Sun Sep 30 23:12:24 2012
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: po4a\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2007-08-12 21:47+0200\n"
"Last-Translator: Aero <chahkang at gmail.com>\n"
"Language-Team: Korean <debian-l10n-korean at lists.debian.org>\n"
@@ -624,6 +624,13 @@
#: ../../lib/Locale/Po4a/TeX.pm:1537
msgid "The first argument of \\begin is mandatory."
+msgstr ""
+
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
msgstr ""
#: ../../lib/Locale/Po4a/TransTractor.pm:471
Modified: trunk/po/bin/ku.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/ku.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/ku.po (original)
+++ trunk/po/bin/ku.po Sun Sep 30 23:12:24 2012
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: po4a\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2005-04-23\n"
"Last-Translator: abbas ali\n"
"Language-Team: Kurdish\n"
@@ -597,6 +597,13 @@
#: ../../lib/Locale/Po4a/TeX.pm:1537
msgid "The first argument of \\begin is mandatory."
+msgstr ""
+
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
msgstr ""
#: ../../lib/Locale/Po4a/TransTractor.pm:471
Modified: trunk/po/bin/nb.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/nb.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/nb.po (original)
+++ trunk/po/bin/nb.po Sun Sep 30 23:12:24 2012
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: po4a bin\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2005-12-23 18:37+0000\n"
"Last-Translator: Francis Rath <fr at ncis.no>\n"
"Language-Team: Bokmål, Norwegian\n"
@@ -638,6 +638,13 @@
#: ../../lib/Locale/Po4a/TeX.pm:1537
msgid "The first argument of \\begin is mandatory."
+msgstr ""
+
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
msgstr ""
#: ../../lib/Locale/Po4a/TransTractor.pm:471
Modified: trunk/po/bin/nl.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/nl.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/nl.po (original)
+++ trunk/po/bin/nl.po Sun Sep 30 23:12:24 2012
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: po4a: translate documents using the gettext tools\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2007-06-14 15:15+0000\n"
"Last-Translator: Pieter Maes <rest.in.pieces.pm at gmail.com>\n"
"Language-Team: Dutch <debian-l10n-dutch at lists.debian.org>\n"
@@ -619,6 +619,13 @@
#: ../../lib/Locale/Po4a/TeX.pm:1537
msgid "The first argument of \\begin is mandatory."
+msgstr ""
+
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
msgstr ""
#: ../../lib/Locale/Po4a/TransTractor.pm:471
Modified: trunk/po/bin/oc.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/oc.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/oc.po (original)
+++ trunk/po/bin/oc.po Sun Sep 30 23:12:24 2012
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: po4a\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2007-08-12 21:46+0200\n"
"Last-Translator: Yannig MARCHEGAY (Kokoyaya) <yannig at marchegay.org>\n"
"Language-Team: Occitan (post 1500)\n"
@@ -595,6 +595,13 @@
#: ../../lib/Locale/Po4a/TeX.pm:1537
msgid "The first argument of \\begin is mandatory."
+msgstr ""
+
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
msgstr ""
#: ../../lib/Locale/Po4a/TransTractor.pm:471
Modified: trunk/po/bin/pl.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/pl.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/pl.po (original)
+++ trunk/po/bin/pl.po Sun Sep 30 23:12:24 2012
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: po4a 0.40.1\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2010-08-17 21:22+0200\n"
"Last-Translator: Robert Luberda <robert at debian.org>\n"
"Language-Team: Polish <debian-l10n-polish at lists.debian.org>\n"
@@ -705,6 +705,13 @@
msgid "The first argument of \\begin is mandatory."
msgstr "Pierwszy argument komendy \\begin jest obowiÄ
zkowy."
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
+msgstr ""
+
#: ../../lib/Locale/Po4a/TransTractor.pm:471
#, perl-format
msgid "Can't close %s after writing: %s"
Modified: trunk/po/bin/po4a.pot
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/po4a.pot?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/po4a.pot (original)
+++ trunk/po/bin/po4a.pot Sun Sep 30 23:12:24 2012
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: po4a 0.43\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-25 00:15+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -595,6 +595,13 @@
#: ../../lib/Locale/Po4a/TeX.pm:1537
msgid "The first argument of \\begin is mandatory."
+msgstr ""
+
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
msgstr ""
#: ../../lib/Locale/Po4a/TransTractor.pm:471
Modified: trunk/po/bin/pt.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/pt.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/pt.po (original)
+++ trunk/po/bin/pt.po Sun Sep 30 23:12:24 2012
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: Po4a 0.40\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2010-08-24 15:45+0200\n"
"Last-Translator: António Moreira <antoniocostamoreira at gmail.com>\n"
"Language-Team: Portuguese-Traduz <l10n at debianpt.org>\n"
@@ -704,6 +704,13 @@
msgid "The first argument of \\begin is mandatory."
msgstr "O primeiro argumento de \\begin é obrigatório."
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
+msgstr ""
+
#: ../../lib/Locale/Po4a/TransTractor.pm:471
#, perl-format
msgid "Can't close %s after writing: %s"
Modified: trunk/po/bin/pt_BR.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/pt_BR.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/pt_BR.po (original)
+++ trunk/po/bin/pt_BR.po Sun Sep 30 23:12:24 2012
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: po4a\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2007-08-12 20:28+0200\n"
"Last-Translator: Goedson Teixeira Paixão <goedson at debian.org>\n"
"Language-Team: Brazilian Portuguese <debian-l10n-portuguese at lists.debian."
@@ -656,6 +656,13 @@
#: ../../lib/Locale/Po4a/TeX.pm:1537
msgid "The first argument of \\begin is mandatory."
+msgstr ""
+
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
msgstr ""
#: ../../lib/Locale/Po4a/TransTractor.pm:471
Modified: trunk/po/bin/ru.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/ru.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/ru.po (original)
+++ trunk/po/bin/ru.po Sun Sep 30 23:12:24 2012
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: po4a 0.41-1\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2010-11-24 18:57+0300\n"
"Last-Translator: Yuri Kozlov <yuray at komyakino.ru>\n"
"Language-Team: Russian <debian-l10n-russian at lists.debian.org>\n"
@@ -702,6 +702,13 @@
msgid "The first argument of \\begin is mandatory."
msgstr "ÐеÑвÑй аÑгÑÐ¼ÐµÐ½Ñ Ð´Ð»Ñ \\begin обÑзаÑелен."
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
+msgstr ""
+
#: ../../lib/Locale/Po4a/TransTractor.pm:471
#, perl-format
msgid "Can't close %s after writing: %s"
Modified: trunk/po/bin/sl.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/sl.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/sl.po (original)
+++ trunk/po/bin/sl.po Sun Sep 30 23:12:24 2012
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: po4a\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2010-11-21 12:04+0100\n"
"Last-Translator: Andrej ŽnidarÅ¡iÄ <andrej.znidarsic at gmail.com>\n"
"Language-Team: Slovenian <ubuntu-l10n-slv at lists.ubuntu.com>\n"
@@ -702,6 +702,13 @@
msgid "The first argument of \\begin is mandatory."
msgstr "Prvi argument \\begin je obvezen."
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
+msgstr ""
+
#: ../../lib/Locale/Po4a/TransTractor.pm:471
#, perl-format
msgid "Can't close %s after writing: %s"
Modified: trunk/po/bin/sv.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/sv.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/sv.po (original)
+++ trunk/po/bin/sv.po Sun Sep 30 23:12:24 2012
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: po4a\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2010-08-07 01:19+0100\n"
"Last-Translator: Martin Bagge / brother <brother at bsnet.se>\n"
"Language-Team: Swedish <debian-l10n-swedish at lists.debian.org>\n"
@@ -709,6 +709,13 @@
#: ../../lib/Locale/Po4a/TeX.pm:1537
msgid "The first argument of \\begin is mandatory."
msgstr "Första argumentet av \\begin är obligatoriskt."
+
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
+msgstr ""
#: ../../lib/Locale/Po4a/TransTractor.pm:471
#, perl-format
Modified: trunk/po/bin/uk.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/uk.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/uk.po (original)
+++ trunk/po/bin/uk.po Sun Sep 30 23:12:24 2012
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: po4a\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2010-11-20 12:30+0200\n"
"Last-Translator: Yuri Chornoivan <yurchor at ukr.net>\n"
"Language-Team: Ukrainian <translation at linux.org.ua>\n"
@@ -720,6 +720,13 @@
#: ../../lib/Locale/Po4a/TeX.pm:1537
msgid "The first argument of \\begin is mandatory."
msgstr "ÐеÑÑий паÑамеÑÑ \\begin Ñ Ð¾Ð±Ð¾Ð²âÑзковим."
+
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
+msgstr ""
#: ../../lib/Locale/Po4a/TransTractor.pm:471
#, perl-format
Modified: trunk/po/bin/uz.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/uz.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/uz.po (original)
+++ trunk/po/bin/uz.po Sun Sep 30 23:12:24 2012
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: po4a\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2007-08-12 21:45+0200\n"
"Last-Translator: akmal <akmalxster at gmail.com>\n"
"Language-Team: Uzbek <uzbadmin at gmail.com>\n"
@@ -597,6 +597,13 @@
#: ../../lib/Locale/Po4a/TeX.pm:1537
msgid "The first argument of \\begin is mandatory."
+msgstr ""
+
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
msgstr ""
#: ../../lib/Locale/Po4a/TransTractor.pm:471
Modified: trunk/po/bin/vi.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/vi.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/vi.po (original)
+++ trunk/po/bin/vi.po Sun Sep 30 23:12:24 2012
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: po4a 0.40.1-1\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2009-09-22 22:06+0930\n"
"Last-Translator: Clytie Siddall <clytie at riverland.net.au>\n"
"Language-Team: Vietnamese <vi-VN at googlegroups.com>\n"
@@ -710,6 +710,13 @@
msgid "The first argument of \\begin is mandatory."
msgstr "Bắt buá»c phải cung cấp Äá»i sá» Äầu tiên của « \\begin »."
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
+msgstr ""
+
#: ../../lib/Locale/Po4a/TransTractor.pm:471
#, perl-format
msgid "Can't close %s after writing: %s"
Modified: trunk/po/bin/zh_CN.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/zh_CN.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/zh_CN.po (original)
+++ trunk/po/bin/zh_CN.po Sun Sep 30 23:12:24 2012
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: po4a\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2007-08-12 21:48+0200\n"
"Last-Translator: rainofchaos <rainofchaos at gmail.com>\n"
"Language-Team: Simplified Chinese <debian-l10n-chinese at lists.debian.org>\n"
@@ -600,6 +600,13 @@
#: ../../lib/Locale/Po4a/TeX.pm:1537
msgid "The first argument of \\begin is mandatory."
+msgstr ""
+
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
msgstr ""
#: ../../lib/Locale/Po4a/TransTractor.pm:471
Modified: trunk/po/bin/zh_HK.po
URL: http://svn.debian.org/wsvn/po4a/trunk/po/bin/zh_HK.po?rev=2604&op=diff
==============================================================================
--- trunk/po/bin/zh_HK.po (original)
+++ trunk/po/bin/zh_HK.po Sun Sep 30 23:12:24 2012
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: po4a\n"
"Report-Msgid-Bugs-To: po4a at packages.debian.org\n"
-"POT-Creation-Date: 2012-09-23 22:13+0200\n"
+"POT-Creation-Date: 2012-10-01 01:30+0200\n"
"PO-Revision-Date: 2007-08-12 21:48+0200\n"
"Last-Translator: Cynthia Cheung <cc at kinki-kids.com>\n"
"Language-Team: Chinese (Hong Kong) <debian-l10n-chinese at lists.debian.org>\n"
@@ -598,6 +598,13 @@
#: ../../lib/Locale/Po4a/TeX.pm:1537
msgid "The first argument of \\begin is mandatory."
+msgstr ""
+
+#: ../../lib/Locale/Po4a/Text.pm:391
+#, perl-format
+msgid ""
+"Detection of two line titles failed at %s\n"
+"Install the Unicode::GCString module!"
msgstr ""
#: ../../lib/Locale/Po4a/TransTractor.pm:471
More information about the Po4a-commits
mailing list