Dear maintainer of ulogd,

On Sunday, March 25, 2012 I sent you a notice announcing my intent to upload an
NMU of your package to fix its pending l10n issues, after an initial
notice sent on Tuesday, March 20, 2012.

You either agreed for this NMU or did not respond to my notices.

In the meantime, Gregor fixed two FTBFS bugs and we agreed to merge
our NMU efforts.

I just built the package and uploaded it to DELAYED/2.

Thanks, Gregor as you did the most difficult work!

The NMU patch is attached to this mail.

The NMU changelog is:


Source: ulogd
Version: 1.24-3.1
Distribution: unstable
Urgency: low
Maintainer: Christian Perrier <bubu...@debian.org>
Date: Tue, 03 Apr 2012 06:50:25 +0200
Closes: 650338 656784 665976 666279
Changes: 
 ulogd (1.24-3.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Fix "FTBFS: cp: cannot stat
     `./debian/tmp/usr/lib/ulogd/ulogd_SQLITE3.so': No such file or
     directory":
     - add patch fix_multiarch.patch from Ubuntu / Clint Byrum,
       taken from #650338
     - remove changes to ./configure, use dh-autoreconf instead
     - build-depend on dh-autoreconf and new enough dpkg-dev
     (Closes: #666279)
     Thanks to Gregor Herrmann for this patch.
   * Fix "Fails to link with libmysqlclient with multi-arch and --as-
     needed": add patch mysql_Makefile.patch from Ubuntu / Clint Byrum.
     (Closes: #650338)
     Thanks to Gregor Herrmann for this patch.
   * Fix pending l10n issues. Debconf translations:
     - Danish (Joe Hansen).  Closes: #656784
     - Polish (Michał Kułach).  Closes: #665976

-- 


diff -Nru ulogd-1.24.old/debian/changelog ulogd-1.24/debian/changelog
--- ulogd-1.24.old/debian/changelog	2012-03-15 20:15:38.000000000 +0100
+++ ulogd-1.24/debian/changelog	2012-04-15 14:21:47.000000000 +0200
@@ -1,3 +1,25 @@
+ulogd (1.24-3.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix "FTBFS: cp: cannot stat
+    `./debian/tmp/usr/lib/ulogd/ulogd_SQLITE3.so': No such file or
+    directory":
+    - add patch fix_multiarch.patch from Ubuntu / Clint Byrum,
+      taken from #650338
+    - remove changes to ./configure, use dh-autoreconf instead
+    - build-depend on dh-autoreconf and new enough dpkg-dev
+    (Closes: #666279)
+    Thanks to Gregor Herrmann for this patch.
+  * Fix "Fails to link with libmysqlclient with multi-arch and --as-
+    needed": add patch mysql_Makefile.patch from Ubuntu / Clint Byrum.
+    (Closes: #650338)
+    Thanks to Gregor Herrmann for this patch.
+  * Fix pending l10n issues. Debconf translations:
+    - Danish (Joe Hansen).  Closes: #656784
+    - Polish (Michał Kułach).  Closes: #665976
+
+ -- Christian Perrier <bubu...@debian.org>  Tue, 03 Apr 2012 06:50:25 +0200
+
 ulogd (1.24-3) unstable; urgency=low
 
   * Acknowledge NMUs.
diff -Nru ulogd-1.24.old/debian/control ulogd-1.24/debian/control
--- ulogd-1.24.old/debian/control	2012-03-15 20:15:38.000000000 +0100
+++ ulogd-1.24/debian/control	2012-04-15 14:20:18.000000000 +0200
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Achilleas Kotsis <achi...@kotsis.net>
 Uploaders: Pierre Chifflier <pol...@debian.org>
-Build-Depends: debhelper (>= 5), libmysqlclient-dev, libpq-dev, libpcap-dev, libsqlite3-dev, cdbs, autotools-dev
+Build-Depends: debhelper (>= 5), libmysqlclient-dev, libpq-dev, libpcap-dev, libsqlite3-dev, cdbs, autotools-dev, dh-autoreconf, dpkg-dev (>= 1.16.0)
 Standards-Version: 3.8.3
 Homepage: http://www.netfilter.org/projects/ulogd/
 
diff -Nru ulogd-1.24.old/debian/patches/fix_multiarch.patch ulogd-1.24/debian/patches/fix_multiarch.patch
--- ulogd-1.24.old/debian/patches/fix_multiarch.patch	1970-01-01 01:00:00.000000000 +0100
+++ ulogd-1.24/debian/patches/fix_multiarch.patch	2012-04-15 14:20:18.000000000 +0200
@@ -0,0 +1,46 @@
+--- configure.in.orig	2011-11-28 15:11:45.615575212 -0800
++++ configure.in	2011-11-28 15:11:54.051081913 -0800
+@@ -81,17 +81,12 @@
+ 	dnl Having a look in the libary itself should be more reliable than
+ 	dnl parsing the output of mysql --version.
+ 
+-	AC_MSG_CHECKING(for mysql_real_escape_string support)
+-
+-	MYSQL_FUNCTION_TEST=`strings ${MYSQLLIBS}/libmysqlclient.so | grep mysql_real_escape_string`
+-
+-	if test "x$MYSQL_FUNCTION_TEST" = x
+-	then
++    AC_CHECK_LIB(mysqlclient, mysql_real_escape_string,
++                [AC_MSG_RESULT(found new MySQL)],
++                [
+                 EXTRA_MYSQL_DEF="-DOLD_MYSQL=1 "
+                 AC_MSG_RESULT(found old MySQL)
+-	else
+-		AC_MSG_RESULT(found new MySQL)
+-	fi
++                ])
+ 
+ fi      
+ ])      
+@@ -181,7 +176,7 @@
+ fi
+ mysqldir=""
+ AC_MSG_CHECKING(for sqlite3 files)
+-for d in $dir /usr /usr/local /usr/local/sqlite3
++for d in $dir /usr /usr/local /usr/local/sqlite3 /usr/lib/`dpkg-architecture -qDEB_HOST_MULTIARCH`
+ do
+         if test -f $d/lib/sqlite3/libsqlite3.so
+         then
+@@ -206,6 +201,12 @@
+ 		AC_MSG_RESULT(found sqlite in $d)
+ 		sqlite3dir=$d
+ 		sqlite3dir_suffix=
++		break
++	elif test -f $d/libsqlite3.so
++	then
++		AC_MSG_RESULT(found sqlite in $d)
++		sqlite3dir=$d
++		sqlite3dir_suffix=
+ 		break
+         fi
+ done
diff -Nru ulogd-1.24.old/debian/patches/mysql_Makefile.in.patch ulogd-1.24/debian/patches/mysql_Makefile.in.patch
--- ulogd-1.24.old/debian/patches/mysql_Makefile.in.patch	2012-03-15 20:15:38.000000000 +0100
+++ ulogd-1.24/debian/patches/mysql_Makefile.in.patch	2012-04-15 14:20:18.000000000 +0200
@@ -6,7 +6,7 @@
  $(SHARED_LIBS): %.so: %_sh.o
 -	$(LD) -shared $(MYSQL_LDFLAGS) -o $@ $< -lc
 +	#$(LD) -shared $(MYSQL_LDFLAGS) -o $@ $< -lc
-+	$(CC) -nostartfiles -shared $(MYSQL_LDFLAGS) -o $@ $<
++	$(CC) -nostartfiles -shared -o $@ $< $(MYSQL_LDFLAGS)
  
  %_sh.o: %.c
  	$(CC) $(MYSQL_CFLAGS) $(SH_CFLAGS) -o $@ -c $<
diff -Nru ulogd-1.24.old/debian/po/ca.po ulogd-1.24/debian/po/ca.po
--- ulogd-1.24.old/debian/po/ca.po	2012-03-15 20:15:38.000000000 +0100
+++ ulogd-1.24/debian/po/ca.po	2012-03-25 15:52:34.000000000 +0200
@@ -8,11 +8,12 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 1.23-6\n"
-"Report-Msgid-Bugs-To: achi...@debian.gr\n"
-"POT-Creation-Date: 2007-01-31 04:33+0100\n"
+"Report-Msgid-Bugs-To: ul...@packages.debian.org\n"
+"POT-Creation-Date: 2012-03-25 15:52+0200\n"
 "PO-Revision-Date: 2007-02-24 22:52+0100\n"
 "Last-Translator: Jordà Polo <jo...@ettin.org>\n"
 "Language-Team: Català <debian-l10n-cata...@lists.debian.org>\n"
+"Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
diff -Nru ulogd-1.24.old/debian/po/cs.po ulogd-1.24/debian/po/cs.po
--- ulogd-1.24.old/debian/po/cs.po	2012-03-15 20:15:38.000000000 +0100
+++ ulogd-1.24/debian/po/cs.po	2012-03-25 15:52:34.000000000 +0200
@@ -14,24 +14,25 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: ulogd\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-04-21 04:29+0300\n"
+"Report-Msgid-Bugs-To: ul...@packages.debian.org\n"
+"POT-Creation-Date: 2012-03-25 15:52+0200\n"
 "PO-Revision-Date: 2005-06-19 14:17+0200\n"
 "Last-Translator: Miroslav Kure <ku...@debian.cz>\n"
 "Language-Team: Czech <debian-l10n-cz...@lists.debian.org>\n"
+"Language: cs\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid "Configuration syntax has changed"
 msgstr "Syntaxe konfiguračního souboru se změnila"
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid ""
 "/etc/ulogd.conf configuration file syntax has changed. You probably need to "
 "upgrade your configuration to the new syntax. ulogd will disregard an old "
@@ -43,6 +44,6 @@
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid "See /usr/share/doc/ulogd/examples/ulogd.conf for details."
 msgstr "Podrobnosti naleznete v /usr/share/doc/ulogd/examples/ulogd.conf."
diff -Nru ulogd-1.24.old/debian/po/da.po ulogd-1.24/debian/po/da.po
--- ulogd-1.24.old/debian/po/da.po	1970-01-01 01:00:00.000000000 +0100
+++ ulogd-1.24/debian/po/da.po	2012-03-25 15:52:34.000000000 +0200
@@ -0,0 +1,42 @@
+# Danish translation ulogd.
+# Copyright (C) 2012 ulogd & Joe Hansen.
+# This file is distributed under the same license as the ulogd package.
+# Joe Hansen <joedalt...@yahoo.dk>, 2012.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: ulogd\n"
+"Report-Msgid-Bugs-To: ul...@packages.debian.org\n"
+"POT-Creation-Date: 2012-03-25 15:52+0200\n"
+"PO-Revision-Date: 2012-01-20 17:30+01:00\n"
+"Last-Translator: Joe Hansen <joedalt...@yahoo.dk>\n"
+"Language-Team: Danish <debian-l10n-dan...@lists.debian.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: note
+#. Description
+#: ../ulogd.templates:1001
+msgid "Configuration syntax has changed"
+msgstr "Konfigurationssyntaksen har ændret sig"
+
+#. Type: note
+#. Description
+#: ../ulogd.templates:1001
+msgid ""
+"/etc/ulogd.conf configuration file syntax has changed. You probably need to "
+"upgrade your configuration to the new syntax. ulogd will disregard an old "
+"style configuration, or fail to start completely!"
+msgstr ""
+"Konfigurationsfilsyntaksen /etc/ulogd.conf har ændret sig. Du skal sikkert "
+"opgradere din konfiguration til den nye syntaks. ulogd vil ikke tage højde "
+"for en gammel stilkonfiguration, eller måske fejle i at starte i det hele "
+"taget!"
+
+#. Type: note
+#. Description
+#: ../ulogd.templates:1001
+msgid "See /usr/share/doc/ulogd/examples/ulogd.conf for details."
+msgstr "Se /usr/share/doc/ulogd/examples/ulogd.conf for detaljer."
diff -Nru ulogd-1.24.old/debian/po/de.po ulogd-1.24/debian/po/de.po
--- ulogd-1.24.old/debian/po/de.po	2012-03-15 20:15:38.000000000 +0100
+++ ulogd-1.24/debian/po/de.po	2012-03-25 15:52:34.000000000 +0200
@@ -5,11 +5,12 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: ulogd 1.23-5\n"
-"Report-Msgid-Bugs-To: ul...@bugs.debian.org\n"
-"POT-Creation-Date: 2006-10-19 01:36+0200\n"
+"Report-Msgid-Bugs-To: ul...@packages.debian.org\n"
+"POT-Creation-Date: 2012-03-25 15:52+0200\n"
 "PO-Revision-Date: 2006-12-09 21:24+0100\n"
 "Last-Translator: Alwin Meschede <amesch...@gmx.de>\n"
 "Language-Team: german <debian-l10n-ger...@lists.debian.org>\n"
+"Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -39,6 +40,5 @@
 #. Description
 #: ../ulogd.templates:1001
 msgid "See /usr/share/doc/ulogd/examples/ulogd.conf for details."
-msgstr "Schauen Sie sich die Hinweise in "
-"/usr/share/doc/ulogd/examples/ulogd.conf an."
-
+msgstr ""
+"Schauen Sie sich die Hinweise in /usr/share/doc/ulogd/examples/ulogd.conf an."
diff -Nru ulogd-1.24.old/debian/po/el.po ulogd-1.24/debian/po/el.po
--- ulogd-1.24.old/debian/po/el.po	2012-03-15 20:15:38.000000000 +0100
+++ ulogd-1.24/debian/po/el.po	2012-03-25 15:52:34.000000000 +0200
@@ -14,24 +14,25 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: ulogd 1.23-7\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-04-21 04:29+0300\n"
+"Report-Msgid-Bugs-To: ul...@packages.debian.org\n"
+"POT-Creation-Date: 2012-03-25 15:52+0200\n"
 "PO-Revision-Date: 2007-03-13 07:30+0200\n"
 "Last-Translator: Faidon Liambotis <parav...@debian.org>\n"
 "Language-Team: Greek <debian-l10n-gr...@lists.debian.org>\n"
+"Language: el\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid "Configuration syntax has changed"
 msgstr "Η σύνταξη του αρχείου ρυθμίσεων άλλαξε"
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid ""
 "/etc/ulogd.conf configuration file syntax has changed. You probably need to "
 "upgrade your configuration to the new syntax. ulogd will disregard an old "
@@ -43,6 +44,8 @@
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid "See /usr/share/doc/ulogd/examples/ulogd.conf for details."
-msgstr "Για περισσότερες πληροφορίες ανατρέξτε στο /usr/share/doc/ulogd/examples/ulogd.conf"
+msgstr ""
+"Για περισσότερες πληροφορίες ανατρέξτε στο /usr/share/doc/ulogd/examples/"
+"ulogd.conf"
diff -Nru ulogd-1.24.old/debian/po/es.po ulogd-1.24/debian/po/es.po
--- ulogd-1.24.old/debian/po/es.po	2012-03-15 20:15:38.000000000 +0100
+++ ulogd-1.24/debian/po/es.po	2012-03-25 15:52:34.000000000 +0200
@@ -32,14 +32,16 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: ulogd\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-01-13 20:25+0100\n"
+"Report-Msgid-Bugs-To: ul...@packages.debian.org\n"
+"POT-Creation-Date: 2012-03-25 15:52+0200\n"
 "PO-Revision-Date: 2007-01-23 02:48+0100\n"
 "Last-Translator: Javier Ruano Ruano <javier.ru...@estudiante.uam.es>\n"
 "Language-Team: Debian L10n Spanish <debian-l10n-span...@lists.debian.org>\n"
+"Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+
 #. Type: note
 #. Description
 #: ../ulogd.templates:1001
@@ -54,9 +56,10 @@
 "upgrade your configuration to the new syntax. ulogd will disregard an old "
 "style configuration, or fail to start completely!"
 msgstr ""
-"Ha cambiado la sintaxis del fichero de configuración «/etc/ulogd.conf». Probablemente"
-" necesitará adaptar su configuración a la nueva sintaxis. Ulogd desdeñará "
-"el antiguo formato de configuración o al iniciarse fallará completamente."
+"Ha cambiado la sintaxis del fichero de configuración «/etc/ulogd.conf». "
+"Probablemente necesitará adaptar su configuración a la nueva sintaxis. Ulogd "
+"desdeñará el antiguo formato de configuración o al iniciarse fallará "
+"completamente."
 
 #. Type: note
 #. Description
diff -Nru ulogd-1.24.old/debian/po/eu.po ulogd-1.24/debian/po/eu.po
--- ulogd-1.24.old/debian/po/eu.po	2012-03-15 20:15:38.000000000 +0100
+++ ulogd-1.24/debian/po/eu.po	2012-03-25 15:52:34.000000000 +0200
@@ -14,11 +14,12 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: ulogd-templates\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-04-21 04:29+0300\n"
+"Report-Msgid-Bugs-To: ul...@packages.debian.org\n"
+"POT-Creation-Date: 2012-03-25 15:52+0200\n"
 "PO-Revision-Date: 2007-02-25 23:55+0100\n"
 "Last-Translator: Piarres Beobide <p...@beobide.net>\n"
 "Language-Team: librezale <librez...@librezale.org>\n"
+"Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -27,26 +28,25 @@
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid "Configuration syntax has changed"
 msgstr "Konfigurazio sintaxia aldatu egin da"
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid ""
 "/etc/ulogd.conf configuration file syntax has changed. You probably need to "
 "upgrade your configuration to the new syntax. ulogd will disregard an old "
 "style configuration, or fail to start completely!"
 msgstr ""
 "/etc/ulogd.conf konfigurazio fitxategia aldatu egin da. Ziurrenik zure "
-"konfigurazioa sintaxi berrira eguneratu beharko duzu. ulogd-ek ziurrenik "
-"ez dio jaramonik egingo estilo zaharreko konfigurazio bati edo huts egingo du "
+"konfigurazioa sintaxi berrira eguneratu beharko duzu. ulogd-ek ziurrenik ez "
+"dio jaramonik egingo estilo zaharreko konfigurazio bati edo huts egingo du "
 "abiaraztean!"
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid "See /usr/share/doc/ulogd/examples/ulogd.conf for details."
 msgstr "/usr/share/doc/ulogd/examples/ulogd.conf begiratu xehetasunetarako."
-
diff -Nru ulogd-1.24.old/debian/po/fr.po ulogd-1.24/debian/po/fr.po
--- ulogd-1.24.old/debian/po/fr.po	2012-03-15 20:15:38.000000000 +0100
+++ ulogd-1.24/debian/po/fr.po	2012-03-25 15:52:34.000000000 +0200
@@ -8,45 +8,44 @@
 # or http://www.debian.org/intl/l10n/po-debconf/README-trans
 # Developers do not need to manually edit POT or PO files.
 # , fuzzy
-# 
-# 
+#
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: ulogd 1.29\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-04-21 04:29+0300\n"
+"Report-Msgid-Bugs-To: ul...@packages.debian.org\n"
+"POT-Creation-Date: 2012-03-25 15:52+0200\n"
 "PO-Revision-Date: 2005-05-10 08:45+0200\n"
 "Last-Translator: Jean-Luc Coulon (f5ibh) <jean-luc.cou...@wanadoo.fr>\n"
 "Language-Team: French <debian-l10n-fre...@lists.debian.org>\n"
+"Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=iso-8859-15\n"
-"Content-Transfer-Encoding: 8bit"
+"Content-Transfer-Encoding: 8bit\n"
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid "Configuration syntax has changed"
 msgstr "Changement de la syntaxe du fichier de configuration"
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid ""
 "/etc/ulogd.conf configuration file syntax has changed. You probably need to "
 "upgrade your configuration to the new syntax. ulogd will disregard an old "
 "style configuration, or fail to start completely!"
 msgstr ""
-"La syntaxe du fichier de configuration /etc/ulogd.conf a chang. Il "
-"vous faudra sans doute mettre  jour ce fichier en utilisant la nouvelle "
-"syntaxe. Si vous conservez un fichier utilisant l'ancienne syntaxe, il sera "
-"ignor ou empchera le dmarrage d'ulogd."
+"La syntaxe du fichier de configuration /etc/ulogd.conf a chang. Il vous "
+"faudra sans doute mettre  jour ce fichier en utilisant la nouvelle syntaxe. "
+"Si vous conservez un fichier utilisant l'ancienne syntaxe, il sera ignor ou "
+"empchera le dmarrage d'ulogd."
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid "See /usr/share/doc/ulogd/examples/ulogd.conf for details."
 msgstr ""
 "Veuillez consulter /usr/share/doc/ulogd/examples/ulogd.conf pour davantage "
 "d'informations."
-
-
diff -Nru ulogd-1.24.old/debian/po/gl.po ulogd-1.24/debian/po/gl.po
--- ulogd-1.24.old/debian/po/gl.po	2012-03-15 20:15:38.000000000 +0100
+++ ulogd-1.24/debian/po/gl.po	2012-03-25 15:52:34.000000000 +0200
@@ -1,39 +1,40 @@
 # Galician translation of ulogd's debconf templates
 # This file is distributed under the same license as the ulogd package.
 # Jacobo Tarrio <jtar...@debian.org>, 2007.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: ulogd\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-01-31 04:33+0100\n"
-"PO-Revision-Date: 2007-02-24 20:22+0100\n"
-"Last-Translator: Jacobo Tarrio <jtar...@debian.org>\n"
-"Language-Team: Galician <proxe...@trasno.net>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Type: note
-#. Description
-#: ../ulogd.templates:1001
-msgid "Configuration syntax has changed"
-msgstr "A sintaxe do ficheiro de configuración cambiou"
-
-#. Type: note
-#. Description
-#: ../ulogd.templates:1001
-msgid ""
-"/etc/ulogd.conf configuration file syntax has changed. You probably need to "
-"upgrade your configuration to the new syntax. ulogd will disregard an old "
-"style configuration, or fail to start completely!"
-msgstr ""
-"A sintaxe do ficheiro de configuración /etc/ulogd.conf cambiou. Seguramente "
-"teña que actualizar a súa configuración á nova sintaxe. ulogd ha ignorar a "
-"configuración antiga, ou incluso pode non poderse iniciar en absoluto."
-
-#. Type: note
-#. Description
-#: ../ulogd.templates:1001
-msgid "See /usr/share/doc/ulogd/examples/ulogd.conf for details."
-msgstr "Consulte /usr/share/doc/ulogd/examples/ulogd.conf para máis detalles."
+# 
+msgid ""
+msgstr ""
+"Project-Id-Version: ulogd\n"
+"Report-Msgid-Bugs-To: ul...@packages.debian.org\n"
+"POT-Creation-Date: 2012-03-25 15:52+0200\n"
+"PO-Revision-Date: 2007-02-24 20:22+0100\n"
+"Last-Translator: Jacobo Tarrio <jtar...@debian.org>\n"
+"Language-Team: Galician <proxe...@trasno.net>\n"
+"Language: gl\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: note
+#. Description
+#: ../ulogd.templates:1001
+msgid "Configuration syntax has changed"
+msgstr "A sintaxe do ficheiro de configuración cambiou"
+
+#. Type: note
+#. Description
+#: ../ulogd.templates:1001
+msgid ""
+"/etc/ulogd.conf configuration file syntax has changed. You probably need to "
+"upgrade your configuration to the new syntax. ulogd will disregard an old "
+"style configuration, or fail to start completely!"
+msgstr ""
+"A sintaxe do ficheiro de configuración /etc/ulogd.conf cambiou. Seguramente "
+"teña que actualizar a súa configuración á nova sintaxe. ulogd ha ignorar a "
+"configuración antiga, ou incluso pode non poderse iniciar en absoluto."
+
+#. Type: note
+#. Description
+#: ../ulogd.templates:1001
+msgid "See /usr/share/doc/ulogd/examples/ulogd.conf for details."
+msgstr "Consulte /usr/share/doc/ulogd/examples/ulogd.conf para máis detalles."
diff -Nru ulogd-1.24.old/debian/po/it.po ulogd-1.24/debian/po/it.po
--- ulogd-1.24.old/debian/po/it.po	2012-03-15 20:15:38.000000000 +0100
+++ ulogd-1.24/debian/po/it.po	2012-03-25 15:52:34.000000000 +0200
@@ -1,37 +1,40 @@
 # translation of ulogd_1.23-2_templates.po to italian
 # Copyright Luca Bruno <luca...@uno.it>, 2005.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: ulogd_1.23-2_templates\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-04-21 04:29+0300\n"
-"PO-Revision-Date: 2005-06-26 20:48+0200\n"
-"Last-Translator: Luca Bruno <luca...@uno.it>\n"
-"Language-Team:  <t...@lists.linux.it>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-
-#. Type: note
-#. Description
-#: ../ulogd.templates:3
-msgid "Configuration syntax has changed"
-msgstr "La sintassi per la configurazione e cambiata"
-
-#. Type: note
-#. Description
-#: ../ulogd.templates:3
-msgid ""
-"/etc/ulogd.conf configuration file syntax has changed. You probably need to "
-"upgrade your configuration to the new syntax. ulogd will disregard an old "
-"style configuration, or fail to start completely!"
-msgstr "La sintassi del file di configurazione /etc/ulogd.conf e cambiata. Probabilmente e necessario aggiornare la propria configurazione alla nuova sintassi. ulogd ignorera una configurazione vecchio stile, o non partira del tutto!"
-
-#. Type: note
-#. Description
-#: ../ulogd.templates:3
-msgid "See /usr/share/doc/ulogd/examples/ulogd.conf for details."
-msgstr "Consultare /usr/share/doc/ulogd/examples/ulogd.conf per i dettagli."
-
+# 
+msgid ""
+msgstr ""
+"Project-Id-Version: ulogd_1.23-2_templates\n"
+"Report-Msgid-Bugs-To: ul...@packages.debian.org\n"
+"POT-Creation-Date: 2012-03-25 15:52+0200\n"
+"PO-Revision-Date: 2005-06-26 20:48+0200\n"
+"Last-Translator: Luca Bruno <luca...@uno.it>\n"
+"Language-Team:  <t...@lists.linux.it>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: note
+#. Description
+#: ../ulogd.templates:1001
+msgid "Configuration syntax has changed"
+msgstr "La sintassi per la configurazione e cambiata"
+
+#. Type: note
+#. Description
+#: ../ulogd.templates:1001
+msgid ""
+"/etc/ulogd.conf configuration file syntax has changed. You probably need to "
+"upgrade your configuration to the new syntax. ulogd will disregard an old "
+"style configuration, or fail to start completely!"
+msgstr ""
+"La sintassi del file di configurazione /etc/ulogd.conf e cambiata. "
+"Probabilmente e necessario aggiornare la propria configurazione alla nuova "
+"sintassi. ulogd ignorera una configurazione vecchio stile, o non partira del "
+"tutto!"
+
+#. Type: note
+#. Description
+#: ../ulogd.templates:1001
+msgid "See /usr/share/doc/ulogd/examples/ulogd.conf for details."
+msgstr "Consultare /usr/share/doc/ulogd/examples/ulogd.conf per i dettagli."
diff -Nru ulogd-1.24.old/debian/po/ja.po ulogd-1.24/debian/po/ja.po
--- ulogd-1.24.old/debian/po/ja.po	2012-03-15 20:15:38.000000000 +0100
+++ ulogd-1.24/debian/po/ja.po	2012-03-25 15:52:34.000000000 +0200
@@ -6,11 +6,12 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: ulogd 1.23-7\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-02-26 04:33+0100\n"
+"Report-Msgid-Bugs-To: ul...@packages.debian.org\n"
+"POT-Creation-Date: 2012-03-25 15:52+0200\n"
 "PO-Revision-Date: 2007-03-04 13:00+0900\n"
 "Last-Translator:  TANAKA, Atushi <atan...@hotcake.halfmoon.jp>\n"
 "Language-Team: Japanese <debian-japan...@lists.debian.org>\n"
+"Language: ja\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -29,9 +30,9 @@
 "upgrade your configuration to the new syntax. ulogd will disregard an old "
 "style configuration, or fail to start completely!"
 msgstr ""
-"設定ファイル /etc/ulogd.conf の構文が変わりました。恐らくあなたの設定を"
-"新しい構文へアップグレードする必要があるでしょう。 ulogd は古い構文の"
-"設定を無視するか、起動に失敗するでしょう!"
+"設定ファイル /etc/ulogd.conf の構文が変わりました。恐らくあなたの設定を新しい"
+"構文へアップグレードする必要があるでしょう。 ulogd は古い構文の設定を無視する"
+"か、起動に失敗するでしょう!"
 
 #. Type: note
 #. Description
diff -Nru ulogd-1.24.old/debian/po/nl.po ulogd-1.24/debian/po/nl.po
--- ulogd-1.24.old/debian/po/nl.po	2012-03-15 20:15:38.000000000 +0100
+++ ulogd-1.24/debian/po/nl.po	2012-03-25 15:52:34.000000000 +0200
@@ -6,11 +6,12 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: ulogd\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-02-26 04:33+0100\n"
+"Report-Msgid-Bugs-To: ul...@packages.debian.org\n"
+"POT-Creation-Date: 2012-03-25 15:52+0200\n"
 "PO-Revision-Date: 2007-03-07 20:56+0100\n"
 "Last-Translator: Bart Cornelis <cob...@skolelinux.no>\n"
 "Language-Team: debian-l10n-dutch <debian-l10n-du...@lists.debian.org>\n"
+"Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -24,12 +25,17 @@
 #. Type: note
 #. Description
 #: ../ulogd.templates:1001
-msgid "/etc/ulogd.conf configuration file syntax has changed. You probably need to upgrade your configuration to the new syntax. ulogd will disregard an old style configuration, or fail to start completely!"
-msgstr "De syntaxis van het configuratiebestand /etc/ulogd.conf is veranderd. Waarschijnlijk moet u uw configuratie bijwerken. ulogd negeert configuratie in de oude stijl, en start dan helemaal niet op!"
+msgid ""
+"/etc/ulogd.conf configuration file syntax has changed. You probably need to "
+"upgrade your configuration to the new syntax. ulogd will disregard an old "
+"style configuration, or fail to start completely!"
+msgstr ""
+"De syntaxis van het configuratiebestand /etc/ulogd.conf is veranderd. "
+"Waarschijnlijk moet u uw configuratie bijwerken. ulogd negeert configuratie "
+"in de oude stijl, en start dan helemaal niet op!"
 
 #. Type: note
 #. Description
 #: ../ulogd.templates:1001
 msgid "See /usr/share/doc/ulogd/examples/ulogd.conf for details."
 msgstr "Meer informatie vindt u in /usr/share/doc/ulogd/examples/ulogd.conf ."
-
diff -Nru ulogd-1.24.old/debian/po/pl.po ulogd-1.24/debian/po/pl.po
--- ulogd-1.24.old/debian/po/pl.po	1970-01-01 01:00:00.000000000 +0100
+++ ulogd-1.24/debian/po/pl.po	2012-03-27 17:58:16.000000000 +0200
@@ -0,0 +1,47 @@
+# Translation of ulogd debconf templates to Polish.
+# Copyright (C) 2012
+# This file is distributed under the same license as the ulogd package.
+#
+# Michał Kułach <michal.kul...@gmail.com>, 2012.
+msgid ""
+msgstr ""
+"Project-Id-Version: ulogd\n"
+"Report-Msgid-Bugs-To: ul...@packages.debian.org\n"
+"POT-Creation-Date: 2012-03-25 15:52+0200\n"
+"PO-Revision-Date: 2012-03-27 16:11+0200\n"
+"Last-Translator: Michał Kułach <michal.kul...@gmail.com>\n"
+"Language-Team: Polish <debian-l10n-pol...@lists.debian.org>\n"
+"Language: pl\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Lokalize 1.2\n"
+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
+"|| n%100>=20) ? 1 : 2);\n"
+
+#. Type: note
+#. Description
+#: ../ulogd.templates:1001
+msgid "Configuration syntax has changed"
+msgstr "Składnia konfiguracji uległa zmianie"
+
+#. Type: note
+#. Description
+#: ../ulogd.templates:1001
+msgid ""
+"/etc/ulogd.conf configuration file syntax has changed. You probably need to "
+"upgrade your configuration to the new syntax. ulogd will disregard an old "
+"style configuration, or fail to start completely!"
+msgstr ""
+"Składnia pliku konfiguracyjnego /etc/ulogd.conf uległa zmianie. "
+"Prawdopodobnie konieczne będzie dostosowanie bieżącego pliku "
+"konfiguracyjnego. Program ulogd zignoruje konfigurację używającą starej "
+"składni lub może nawet w ogóle się nie uruchomić!"
+
+#. Type: note
+#. Description
+#: ../ulogd.templates:1001
+msgid "See /usr/share/doc/ulogd/examples/ulogd.conf for details."
+msgstr ""
+"Proszę przejrzeć plik /usr/share/doc/ulogd/examples/ulogd.conf, aby "
+"dowiedzieć się więcej."
diff -Nru ulogd-1.24.old/debian/po/pt.po ulogd-1.24/debian/po/pt.po
--- ulogd-1.24.old/debian/po/pt.po	2012-03-15 20:15:38.000000000 +0100
+++ ulogd-1.24/debian/po/pt.po	2012-03-25 15:52:34.000000000 +0200
@@ -6,11 +6,12 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: ulogd 1.23-6\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-01-31 04:33+0100\n"
+"Report-Msgid-Bugs-To: ul...@packages.debian.org\n"
+"POT-Creation-Date: 2012-03-25 15:52+0200\n"
 "PO-Revision-Date: 2007-02-24 22:48+0000\n"
 "Last-Translator: Miguel Figueiredo <el...@debianpt.org>\n"
 "Language-Team: Portuguese <tra...@debianpt.org>\n"
+"Language: pt\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -30,8 +31,8 @@
 "style configuration, or fail to start completely!"
 msgstr ""
 "A sintaxe do ficheiro de configuração /etc/ulogd.conf mudou. Você "
-"provavelmente tem de actualizar a sua configuração para a nova sintaxe. "
-"O ulogd irá ignorar a configuração no estilo antigo, ou mesmo falhar a "
+"provavelmente tem de actualizar a sua configuração para a nova sintaxe. O "
+"ulogd irá ignorar a configuração no estilo antigo, ou mesmo falhar a "
 "iniciação."
 
 #. Type: note
diff -Nru ulogd-1.24.old/debian/po/ro.po ulogd-1.24/debian/po/ro.po
--- ulogd-1.24.old/debian/po/ro.po	2012-03-15 20:15:38.000000000 +0100
+++ ulogd-1.24/debian/po/ro.po	2012-03-25 15:52:34.000000000 +0200
@@ -16,35 +16,41 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: ro\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-04-21 04:29+0300\n"
+"Report-Msgid-Bugs-To: ul...@packages.debian.org\n"
+"POT-Creation-Date: 2012-03-25 15:52+0200\n"
 "PO-Revision-Date: 2007-03-01 01:54+0200\n"
 "Last-Translator: Eddy Petrișor <eddy.petri...@gmail.com>\n"
 "Language-Team: Romanian <debian-l10n-roman...@lists.debian.org>\n"
+"Language: ro\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms:  nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\n"
+"Plural-Forms:  nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
+"20)) ? 1 : 2;\n"
 "X-Generator: KBabel 1.11.4\n"
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid "Configuration syntax has changed"
 msgstr "S-a schimbat sintaxa pentru configurare"
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid ""
 "/etc/ulogd.conf configuration file syntax has changed. You probably need to "
 "upgrade your configuration to the new syntax. ulogd will disregard an old "
 "style configuration, or fail to start completely!"
-msgstr "Sintaxa fişierului de configurare /etc/ulogd.conf s-a schimbat. Probabil că trebuie să vă actualizaţi fişierul de configurare să folosească noua sintaxă. ulogd va ignora un fişier de configurare de tip vechi sau nu va reuşi deloc să pornească!"
+msgstr ""
+"Sintaxa fişierului de configurare /etc/ulogd.conf s-a schimbat. Probabil că "
+"trebuie să vă actualizaţi fişierul de configurare să folosească noua "
+"sintaxă. ulogd va ignora un fişier de configurare de tip vechi sau nu va "
+"reuşi deloc să pornească!"
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid "See /usr/share/doc/ulogd/examples/ulogd.conf for details."
-msgstr "A se vedea /usr/share/doc/ulogd/examples/ulogd.conf pentru mai multe detalii."
-
+msgstr ""
+"A se vedea /usr/share/doc/ulogd/examples/ulogd.conf pentru mai multe detalii."
diff -Nru ulogd-1.24.old/debian/po/ru.po ulogd-1.24/debian/po/ru.po
--- ulogd-1.24.old/debian/po/ru.po	2012-03-15 20:15:38.000000000 +0100
+++ ulogd-1.24/debian/po/ru.po	2012-03-25 15:52:34.000000000 +0200
@@ -14,40 +14,40 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 1.23-7\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-04-21 04:29+0300\n"
+"Report-Msgid-Bugs-To: ul...@packages.debian.org\n"
+"POT-Creation-Date: 2012-03-25 15:52+0200\n"
 "PO-Revision-Date: 2007-02-26 21:13+0300\n"
 "Last-Translator: Yuri Kozlov <kozlo...@gmail.com>\n"
 "Language-Team: Russian <debian-l10n-russ...@lists.debian.org>\n"
+"Language: ru\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: KBabel 1.11.4\n"
-"Plural-Forms:  nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms:  nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid "Configuration syntax has changed"
 msgstr "Изменился конфигурационный синтаксис"
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid ""
 "/etc/ulogd.conf configuration file syntax has changed. You probably need to "
 "upgrade your configuration to the new syntax. ulogd will disregard an old "
 "style configuration, or fail to start completely!"
 msgstr ""
-"Изменился синтаксис конфигурационного файла /etc/ulogd.conf. "
-"Вероятно, вам придётся изменить ваш конфигурационный "
-"файл в соответствии с новым синтаксисом. ulogd может "
-"обработать старую конфигурацию неправильно или вообще не "
-"запуститься!"
+"Изменился синтаксис конфигурационного файла /etc/ulogd.conf. Вероятно, вам "
+"придётся изменить ваш конфигурационный файл в соответствии с новым "
+"синтаксисом. ulogd может обработать старую конфигурацию неправильно или "
+"вообще не запуститься!"
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid "See /usr/share/doc/ulogd/examples/ulogd.conf for details."
 msgstr "Подробней смотрите в файле /usr/share/doc/ulogd/examples/ulogd.conf."
-
diff -Nru ulogd-1.24.old/debian/po/sv.po ulogd-1.24/debian/po/sv.po
--- ulogd-1.24.old/debian/po/sv.po	2012-03-15 20:15:38.000000000 +0100
+++ ulogd-1.24/debian/po/sv.po	2012-03-25 15:52:34.000000000 +0200
@@ -8,29 +8,30 @@
 # or http://www.debian.org/intl/l10n/po-debconf/README-trans
 # Developers do not need to manually edit POT or PO files.
 # , fuzzy
-# 
-# 
+#
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: ulogd 1.23-3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-04-21 04:29+0300\n"
+"Report-Msgid-Bugs-To: ul...@packages.debian.org\n"
+"POT-Creation-Date: 2012-03-25 15:52+0200\n"
 "PO-Revision-Date: 2005-10-04 06:51+0200\n"
 "Last-Translator: Daniel Nylander <p...@danielnylander.se>\n"
 "Language-Team: Swedish <s...@li.org>\n"
+"Language: sv\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=iso-8859-1\n"
-"Content-Transfer-Encoding: 8bit"
+"Content-Transfer-Encoding: 8bit\n"
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid "Configuration syntax has changed"
 msgstr "Syntaxen fr konfigurationen har ndrats"
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid ""
 "/etc/ulogd.conf configuration file syntax has changed. You probably need to "
 "upgrade your configuration to the new syntax. ulogd will disregard an old "
@@ -38,11 +39,11 @@
 msgstr ""
 "Syntaxen i konfigurationsfilen /etc/ulogd.conf har ndrats. Du behver "
 "antagligen uppgradera din konfiguration till den nya syntaxen. ulogd kommer "
-"inte att anvnda den gamla konfigurationen eller inte klara att starta upp alls."
+"inte att anvnda den gamla konfigurationen eller inte klara att starta upp "
+"alls."
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid "See /usr/share/doc/ulogd/examples/ulogd.conf for details."
 msgstr "Se /usr/share/doc/ulogd/examples/ulogd.conf fr mer detaljer."
-
diff -Nru ulogd-1.24.old/debian/po/ta.po ulogd-1.24/debian/po/ta.po
--- ulogd-1.24.old/debian/po/ta.po	2012-03-15 20:15:38.000000000 +0100
+++ ulogd-1.24/debian/po/ta.po	2012-03-25 15:52:34.000000000 +0200
@@ -14,11 +14,12 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: ulogd\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-04-21 04:29+0300\n"
+"Report-Msgid-Bugs-To: ul...@packages.debian.org\n"
+"POT-Creation-Date: 2012-03-25 15:52+0200\n"
 "PO-Revision-Date: 2007-02-25 21:36+0530\n"
 "Last-Translator: Dr.T.Vasudevan <agnih...@gmail.com>\n"
 "Language-Team: TAMIL <ubuntu-l10n-...@lists.ubuntu.com>\n"
+"Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -26,22 +27,24 @@
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid "Configuration syntax has changed"
 msgstr "வடிவமைப்பு யாப்பு மாறிவிட்டது"
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid ""
 "/etc/ulogd.conf configuration file syntax has changed. You probably need to "
 "upgrade your configuration to the new syntax. ulogd will disregard an old "
 "style configuration, or fail to start completely!"
-msgstr "வடிவமைப்பு கோப்பான /etc/ulogd.conf இன் யாப்பு மாறி விட்டது. நீங்கள் புதிய முறைக்கு மாற வேண்டும். யூலாக்டி பழைய பாணி வடிவமைப்பை உதாசீனப் படுத்தும். அல்லது முழுமையாக துவங்க மறுக்கும்."
+msgstr ""
+"வடிவமைப்பு கோப்பான /etc/ulogd.conf இன் யாப்பு மாறி விட்டது. நீங்கள் புதிய முறைக்கு "
+"மாற வேண்டும். யூலாக்டி பழைய பாணி வடிவமைப்பை உதாசீனப் படுத்தும். அல்லது முழுமையாக "
+"துவங்க மறுக்கும்."
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid "See /usr/share/doc/ulogd/examples/ulogd.conf for details."
 msgstr "விவரங்களுக்கு /usr/share/doc/ulogd/examples/ulogd.conf ஐ பார்க்கவும்."
-
diff -Nru ulogd-1.24.old/debian/po/templates.pot ulogd-1.24/debian/po/templates.pot
--- ulogd-1.24.old/debian/po/templates.pot	2012-03-15 20:15:38.000000000 +0100
+++ ulogd-1.24/debian/po/templates.pot	2012-03-25 15:52:34.000000000 +0200
@@ -1,38 +1,31 @@
-#
-#    Translators, if you are not familiar with the PO format, gettext
-#    documentation is worth reading, especially sections dedicated to
-#    this format, e.g. by running:
-#         info -n '(gettext)PO Files'
-#         info -n '(gettext)Header Entry'
-#
-#    Some information specific to po-debconf are available at
-#            /usr/share/doc/po-debconf/README-trans
-#         or http://www.debian.org/intl/l10n/po-debconf/README-trans
-#
-#    Developers do not need to manually edit POT or PO files.
+# 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.
 #
 #, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-04-21 04:29+0300\n"
+"Project-Id-Version: ulogd\n"
+"Report-Msgid-Bugs-To: ul...@packages.debian.org\n"
+"POT-Creation-Date: 2012-03-25 15:52+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <l...@li.org>\n"
+"Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: 8bit\n"
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid "Configuration syntax has changed"
 msgstr ""
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid ""
 "/etc/ulogd.conf configuration file syntax has changed. You probably need to "
 "upgrade your configuration to the new syntax. ulogd will disregard an old "
@@ -41,6 +34,6 @@
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid "See /usr/share/doc/ulogd/examples/ulogd.conf for details."
 msgstr ""
diff -Nru ulogd-1.24.old/debian/po/vi.po ulogd-1.24/debian/po/vi.po
--- ulogd-1.24.old/debian/po/vi.po	2012-03-15 20:15:38.000000000 +0100
+++ ulogd-1.24/debian/po/vi.po	2012-03-25 15:52:34.000000000 +0200
@@ -5,11 +5,12 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: ulogd 1.23-2\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-04-21 04:29+0300\n"
+"Report-Msgid-Bugs-To: ul...@packages.debian.org\n"
+"POT-Creation-Date: 2012-03-25 15:52+0200\n"
 "PO-Revision-Date: 2005-08-19 22:44+0930\n"
 "Last-Translator: Clytie Siddall <cly...@riverland.net.au>\n"
 "Language-Team: Vietnamese <gnomevi-l...@lists.sourceforge.net>\n"
+"Language: vi\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -18,21 +19,25 @@
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid "Configuration syntax has changed"
 msgstr "Cú pháp cấu hình đã thay đổi rồi."
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid ""
 "/etc/ulogd.conf configuration file syntax has changed. You probably need to "
 "upgrade your configuration to the new syntax. ulogd will disregard an old "
 "style configuration, or fail to start completely!"
-msgstr "Cú pháp của tập tin cấu hình « /etc/ulogd.conf » đã thay đổi rồi. Rất có thể là bạn cần phải nâng cấp cấu hình mình lên cú pháp mới. • Trình nền ulogd sẽ không dùng cấu hình cũ, hoặc sẽ không khởi chạy cả. •"
+msgstr ""
+"Cú pháp của tập tin cấu hình « /etc/ulogd.conf » đã thay đổi rồi. Rất có thể "
+"là bạn cần phải nâng cấp cấu hình mình lên cú pháp mới. • Trình nền ulogd sẽ "
+"không dùng cấu hình cũ, hoặc sẽ không khởi chạy cả. •"
 
 #. Type: note
 #. Description
-#: ../ulogd.templates:3
+#: ../ulogd.templates:1001
 msgid "See /usr/share/doc/ulogd/examples/ulogd.conf for details."
-msgstr "Hãy xem tập tin « /usr/share/doc/ulogd/examples/ulogd.conf » để tìm chi tiết."
+msgstr ""
+"Hãy xem tập tin « /usr/share/doc/ulogd/examples/ulogd.conf » để tìm chi tiết."
diff -Nru ulogd-1.24.old/debian/rules ulogd-1.24/debian/rules
--- ulogd-1.24.old/debian/rules	2012-03-15 20:15:38.000000000 +0100
+++ ulogd-1.24/debian/rules	2012-04-15 14:20:18.000000000 +0200
@@ -3,6 +3,7 @@
 include /usr/share/cdbs/1/class/autotools.mk
 include /usr/share/cdbs/1/rules/debhelper.mk
 include /usr/share/cdbs/1/rules/simple-patchsys.mk
+include /usr/share/cdbs/1/rules/autoreconf.mk
 
 DEB_CONFIGURE_SCRIPT_ENV =
 DEB_MAKE_INVOKE = make

Attachment: signature.asc
Description: Digital signature

Reply via email to