Dear maintainer of apmd,

3 days ago, I sent you a notice announcing my intent to upload
a NMU of your package to fix its pending l10n issues.

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

I finally looked closer and discovered that the only debconf templates
is an abusive note and, anyway, deal with upgrades from pre-sarge
versions.

So I finally built an NMU which just removes this note.

I will now upload this NMU to DELAYED/0-DAY (which means an immediate
upload).

The NMU patch is attached to this mail.

The NMU changelog is:


Source: apmd
Version: 3.2.2-8.1
Distribution: unstable
Urgency: low
Maintainer: Christian Perrier <[EMAIL PROTECTED]>
Date: Sun, 25 Feb 2007 11:09:17 +0100
Closes: 388819 405519 405861
Changes: 
 apmd (3.2.2-8.1) unstable; urgency=low
 .
   * Non-maintainer upload to fix pending l10n and debconf issues.
   * Remove the now compeltely useless debconf note which deals with upgrade
     from pre-sarge versions. Closes: #388819
   * This also makes translations pointless. Closes: #405519, #405861

-- 


diff -Nru apmd-3.2.2.old/debian/apmd.config apmd-3.2.2/debian/apmd.config
--- apmd-3.2.2.old/debian/apmd.config	2007-02-22 22:27:58.005982697 +0100
+++ apmd-3.2.2/debian/apmd.config	2007-02-25 11:08:56.913108509 +0100
@@ -21,56 +21,6 @@
 
 . /usr/share/debconf/confmodule
 
-# Remove old variables no longer in use.
-db_unregister apmd/etc-apmd-md5 || true
-db_unregister apmd/hdparm-drive || true
-db_unregister apmd/hdparm-spindown || true
-
-CONFFILE=/etc/apm/apmd_proxy.conf
-
-NFM="no"
-if [ "${1}" = "configure" ]; then
-    if dpkg --compare-versions "${2}" "lt-nl" "3.0.2-1.16"; then
-	NFM="yes"
-    elif [ -e "/etc/modutils/apmd" ]; then
-	NFM="yes"
-    fi
-fi
-
-if [ "${NFM}" = "yes" ]; then
-    db_input medium apmd/hdparm-removed || true
-    db_go || true
-fi
-
-# Rejection of APM events doesn't yet work; see apmd_proxy.
-#
-#db_input medium apmd/overwrite-config-file || true
-#db_go || true
-#
-#db_get apmd/overwrite-config-file || true
-#if [ "${RET}" = "true" ]; then
-#
-#    if [ -e "${CONFFILE}" ]; then
-#	# Read the values from the config file and save them in the
-#	# debconf database.  This preserves them upon reconfiguration or
-#	# reinstallation.
-#	. "${CONFFILE}" || true
-#	if [ -n "${SUSPEND_ON_AC+foo}" ]; then
-#	    db_set apmd/suspend-on-ac "${SUSPEND_ON_AC}" || true
-#	fi
-#    fi
-#
-#    db_beginblock || true
-#
-#    db_input medium apmd/suspend-on-ac || true
-#    db_go || true
-#
-#    db_endblock || true
-#
-#fi
-
-db_stop
-
 # Stop the daemon; it will be restarted in the postinst.
 if [ "${1}" = "reconfigure" -a -x "/etc/init.d/apmd" ]; then
     invoke-rc.d apmd stop
diff -Nru apmd-3.2.2.old/debian/apmd.init apmd-3.2.2/debian/apmd.init
--- apmd-3.2.2.old/debian/apmd.init	2007-02-22 22:27:58.005982697 +0100
+++ apmd-3.2.2/debian/apmd.init	2007-02-25 10:46:52.506610908 +0100
@@ -8,6 +8,15 @@
 # I think this script is now free of bashisms.
 # Please correct me if I'm wrong!
 
+### BEGIN INIT INFO
+# Provides:          apmd
+# Required-Start:    $local_fs $remote_fs $syslog
+# Required-Stop:     $local_fs $remote_fs $syslog
+# Default-Start:     2 3 4 5
+# Default-Stop:      0 1 6
+# Short-Description: Advanced Power Management (APM) daemon
+### END INIT INFO
+
 PATH=/bin:/usr/bin:/sbin:/usr/sbin
 APMD_BIN="/usr/sbin/apmd"
 
diff -Nru apmd-3.2.2.old/debian/apmd.postinst apmd-3.2.2/debian/apmd.postinst
--- apmd-3.2.2.old/debian/apmd.postinst	2007-02-22 22:27:58.013982707 +0100
+++ apmd-3.2.2/debian/apmd.postinst	2007-02-25 11:11:31.902336995 +0100
@@ -12,34 +12,6 @@
 (configure)
     . /usr/share/debconf/confmodule || exit 0
 
-# Rejection of APM events doesn't yet work; see apmd_proxy.
-#    CONFFILE=/etc/apm/apmd_proxy.conf
-#    TEMPLATE=/usr/share/apmd/apmd_proxy.conf
-#    SEDFILE="${CONFFILE}.sed.$$"
-#    TMPFILE="${CONFFILE}.tmp.$$"
-#
-#    trap "rm -f ${SEDFILE} ${TMPFILE}" EXIT INT QUIT TERM
-#
-#    db_get apmd/overwrite-config-file || true
-#    if [ "${RET}" = "true" ]; then
-#
-#	# Convert the debconf bindings to a sed script that will
-#	# insert the bindings into the configuration file.
-#	rm -f "${SEDFILE}" || true
-#	xfer_binding ()
-#	{
-#	    db_get "${2}" || true
-#	    echo "s%^${1}=\(.*\)\$%${1}=${RET}%;" >> "${SEDFILE}"
-#	}
-#	xfer_binding SUSPEND_ON_AC apmd/suspend-on-ac
-#
-#	# Apply the sed script to the template file to create the
-#	# configuration file.
-#	cat "${TEMPLATE}" | sed -f "${SEDFILE}" > "${TMPFILE}"
-#	rm -f "${SEDFILE}" || true
-#	mv -f "${TMPFILE}" "${CONFFILE}"
-#
-#    fi
     db_stop
     if [ -z "$(ls /etc/apm/suspend.d/*hwclock 2> /dev/null)" ]; then
 	mkdir -p /etc/apm/suspend.d
diff -Nru apmd-3.2.2.old/debian/apmd.templates apmd-3.2.2/debian/apmd.templates
--- apmd-3.2.2.old/debian/apmd.templates	2007-02-22 22:27:58.153982873 +0100
+++ apmd-3.2.2/debian/apmd.templates	1970-01-01 01:00:00.000000000 +0100
@@ -1,14 +0,0 @@
-Template: apmd/hdparm-removed
-Type: note
-_Description: Configuration files have moved
- The script /etc/apm/event.d/20hdparm has been removed from this package. 
- It remains installed but inactive, and any custom settings, formerly kept
- in /etc/apm/apmd_proxy.conf, have been erased.
- .
- A script of the same name has been added to the hdparm package. When
- upgrading hdparm you will be able to configure the script again according
- to your preferences.
- .
- The configuration file /etc/modutils/apmd has been removed from this
- package.  The file /etc/modutils/apm has been added to the powermgmt-base
- package to serve the same purpose.
diff -Nru apmd-3.2.2.old/debian/changelog apmd-3.2.2/debian/changelog
--- apmd-3.2.2.old/debian/changelog	2007-02-22 22:27:57.965982650 +0100
+++ apmd-3.2.2/debian/changelog	2007-02-25 11:10:47.869987983 +0100
@@ -1,3 +1,12 @@
+apmd (3.2.2-8.1) unstable; urgency=low
+
+  * Non-maintainer upload to fix pending l10n and debconf issues.
+  * Remove the now compeltely useless debconf note which deals with upgrade
+    from pre-sarge versions. Closes: #388819
+  * This also makes translations pointless. Closes: #405519, #405861
+
+ -- Christian Perrier <[EMAIL PROTECTED]>  Sun, 25 Feb 2007 11:09:17 +0100
+
 apmd (3.2.2-8) unstable; urgency=low
 
   * Removed the debconf templates apmd/overwrite-config-file and
diff -Nru apmd-3.2.2.old/debian/po/cs.po apmd-3.2.2/debian/po/cs.po
--- apmd-3.2.2.old/debian/po/cs.po	2007-02-22 22:27:57.513982112 +0100
+++ apmd-3.2.2/debian/po/cs.po	1970-01-01 01:00:00.000000000 +0100
@@ -1,64 +0,0 @@
-#
-#    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.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: apmd\n"
-"Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2006-07-21 20:08+1000\n"
-"PO-Revision-Date: 2005-01-07 14:49+0100\n"
-"Last-Translator: Jan Outrata <[EMAIL PROTECTED]>\n"
-"Language-Team: Czech <[EMAIL PROTECTED]>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ISO-8859-2\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid "Configuration files have moved"
-msgstr "Konfiguraèní soubory se pøesunuly"
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"The script /etc/apm/event.d/20hdparm has been removed from this package.  It "
-"remains installed but inactive, and any custom settings, formerly kept in /"
-"etc/apm/apmd_proxy.conf, have been erased."
-msgstr ""
-"Skript /etc/apm/event.d/20hdparm byl z tohoto balíèku odstranìn. Zùstává "
-"instalován, ale neaktivní, a v¹echna va¹e nastavení, døíve uchovávaná v /etc/"
-"apm/apmd_proxy.conf, byla vymazána."
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"A script of the same name has been added to the hdparm package. When "
-"upgrading hdparm you will be able to configure the script again according to "
-"your preferences."
-msgstr ""
-"Skript stejného jména byl pøidán do balíèku hdparm. Pøi aktualizaci balíèku "
-"hdparm budete moci nastavit skript znovu podle va¹ich pøedstav."
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"The configuration file /etc/modutils/apmd has been removed from this "
-"package.  The file /etc/modutils/apm has been added to the powermgmt-base "
-"package to serve the same purpose."
-msgstr ""
-"Konfiguraèní soubor /etc/modutils/apmd byl z tohoto balíèku odstranìn. Do "
-"balíèku powermgmt-base byl za stejným úèelem pøidán soubor /etc/modutils/apm."
diff -Nru apmd-3.2.2.old/debian/po/da.po apmd-3.2.2/debian/po/da.po
--- apmd-3.2.2.old/debian/po/da.po	2007-02-22 22:27:57.513982112 +0100
+++ apmd-3.2.2/debian/po/da.po	1970-01-01 01:00:00.000000000 +0100
@@ -1,58 +0,0 @@
-# translation of da.po to Danish
-# translation of apmd debconf to Danish
-# Claus Hindsgaul <[EMAIL PROTECTED]>, 2004.
-#
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: da\n"
-"Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2006-07-21 20:08+1000\n"
-"PO-Revision-Date: 2004-02-16 23:20+0100\n"
-"Last-Translator: Claus Hindsgaul <[EMAIL PROTECTED]>\n"
-"Language-Team: Danish <[EMAIL PROTECTED]>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.2\n"
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid "Configuration files have moved"
-msgstr "Opsætningsfilerne er flyttet"
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"The script /etc/apm/event.d/20hdparm has been removed from this package.  It "
-"remains installed but inactive, and any custom settings, formerly kept in /"
-"etc/apm/apmd_proxy.conf, have been erased."
-msgstr ""
-"Skriptet /etc/apm/event.d/20hdparm er blevet flyttet fra denne pakke. Det "
-"forbliver installeret, men inaktivt, og mange specialindstillinger, der "
-"tidligere lå i /etc/apm/apmd_proxy.conf er blevet slettet."
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"A script of the same name has been added to the hdparm package. When "
-"upgrading hdparm you will be able to configure the script again according to "
-"your preferences."
-msgstr ""
-"Et skript med samme navn er blevet tilføjet hdparm-pakken. Når du opgraderer "
-"hdparm, vil du kunne sætte skriptet op igen."
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"The configuration file /etc/modutils/apmd has been removed from this "
-"package.  The file /etc/modutils/apm has been added to the powermgmt-base "
-"package to serve the same purpose."
-msgstr ""
-"Opsætningsfilen /etc/modutils/apmd er blevet fjernet fra denne pakke.Filen /"
-"etc/modutils/apm, der tjener samme formål, er blevet tilføjet pakken "
-"powermgmt-base."
diff -Nru apmd-3.2.2.old/debian/po/de.po apmd-3.2.2/debian/po/de.po
--- apmd-3.2.2.old/debian/po/de.po	2007-02-22 22:27:57.961982645 +0100
+++ apmd-3.2.2/debian/po/de.po	1970-01-01 01:00:00.000000000 +0100
@@ -1,68 +0,0 @@
-#
-#    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.
-# Erik Schanze <[EMAIL PROTECTED]>, 2004.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: apmd_3.2.2-1_de\n"
-"Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2006-07-21 20:08+1000\n"
-"PO-Revision-Date: 2004-05-21 22:10+0200\n"
-"Last-Translator: Erik Schanze <[EMAIL PROTECTED]>\n"
-"Language-Team: German <debian-l10n-german@lists.debian.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.3.1\n"
-"Plural-Forms:  nplurals=2; plural=(n != 1);\n"
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid "Configuration files have moved"
-msgstr "Konfigurationsdateien wurden verschoben"
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"The script /etc/apm/event.d/20hdparm has been removed from this package.  It "
-"remains installed but inactive, and any custom settings, formerly kept in /"
-"etc/apm/apmd_proxy.conf, have been erased."
-msgstr ""
-"Das Skript /etc/apm/event.d/20hdparm wurde aus dem Paket entfernt. Es bleibt "
-"zwar installiert, ist aber nicht aktiv und alle benutzerspezifischen "
-"Einstellungen, die früher in /etc/apm/apmd_proxy.conf gespeichert waren, "
-"wurden gelöscht."
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"A script of the same name has been added to the hdparm package. When "
-"upgrading hdparm you will be able to configure the script again according to "
-"your preferences."
-msgstr ""
-"Ein Skript gleichen namens wurde dem Paket hdparm beigefügt. Nach der "
-"Aktualisierung von hdparm können Sie das Skript wieder nach Ihren "
-"Vorstellungen konfigurieren."
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"The configuration file /etc/modutils/apmd has been removed from this "
-"package.  The file /etc/modutils/apm has been added to the powermgmt-base "
-"package to serve the same purpose."
-msgstr ""
-"Die Konfigurationsdatei /etc/modutils/apmd wurde aus dem Paket entfernt. Die "
-"Datei /etc/modutils/apm wurde dem Paket powermgmt-base beigefügt, es erfüllt "
-"den gleichen Zweck."
diff -Nru apmd-3.2.2.old/debian/po/es.po apmd-3.2.2/debian/po/es.po
--- apmd-3.2.2.old/debian/po/es.po	2007-02-22 22:27:57.961982645 +0100
+++ apmd-3.2.2/debian/po/es.po	1970-01-01 01:00:00.000000000 +0100
@@ -1,66 +0,0 @@
-#
-#    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.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2006-07-21 20:08+1000\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <[EMAIL PROTECTED]>\n"
-"Language-Team: LANGUAGE <[EMAIL PROTECTED]>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ISO-8859-15\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid "Configuration files have moved"
-msgstr "Los ficheros de configuración han cambiado de lugar"
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"The script /etc/apm/event.d/20hdparm has been removed from this package.  It "
-"remains installed but inactive, and any custom settings, formerly kept in /"
-"etc/apm/apmd_proxy.conf, have been erased."
-msgstr ""
-"Este paquete ya no incluye el script /etc/apm/event.d/20hdparm. Permanece "
-"instalado pero inactivo, y las configuraciones personalizadas que hubiera "
-"hecho en /etc/apm/apmd_proxy.conf se han borrado."
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"A script of the same name has been added to the hdparm package. When "
-"upgrading hdparm you will be able to configure the script again according to "
-"your preferences."
-msgstr ""
-"Se ha añadido un script con el mismo nombre en el paquete hdparm. Al "
-"actualizar hdparm podrá configurar de nuevo el script de acuerdo con sus "
-"preferencias."
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"The configuration file /etc/modutils/apmd has been removed from this "
-"package.  The file /etc/modutils/apm has been added to the powermgmt-base "
-"package to serve the same purpose."
-msgstr ""
-"Tampoco se incluye ya el fichero de configuración /etc/modutils/apmd, que se "
-"encuentra ahora en el paquete powermgmt-base, creado a tal efecto."
diff -Nru apmd-3.2.2.old/debian/po/fr.po apmd-3.2.2/debian/po/fr.po
--- apmd-3.2.2.old/debian/po/fr.po	2007-02-22 22:27:57.961982645 +0100
+++ apmd-3.2.2/debian/po/fr.po	1970-01-01 01:00:00.000000000 +0100
@@ -1,66 +0,0 @@
-#
-#    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.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: apmd (3.2.0-3)\n"
-"Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2006-07-21 20:08+1000\n"
-"PO-Revision-Date: 2003-08-17 11:40+0200\n"
-"Last-Translator: Christian Perrier <[EMAIL PROTECTED]>\n"
-"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-15\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid "Configuration files have moved"
-msgstr "Les fichiers de configuration ont été déplacés"
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"The script /etc/apm/event.d/20hdparm has been removed from this package.  It "
-"remains installed but inactive, and any custom settings, formerly kept in /"
-"etc/apm/apmd_proxy.conf, have been erased."
-msgstr ""
-"Le script /etc/apm/event.d/20hdparm a été supprimé de ce paquet. Il est "
-"toujours installé mais n'est plus actif. Tous les réglages personnalisés, "
-"précédemment contenus dans /etc/apm/apmd_proxy.conf, ont été effacés."
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"A script of the same name has been added to the hdparm package. When "
-"upgrading hdparm you will be able to configure the script again according to "
-"your preferences."
-msgstr ""
-"Un script portant le même nom a été ajouté au paquet hdparm. Lors de la mise "
-"à jour de hdparm, vous pourrez à nouveau effectuer la configuration de ce "
-"script selon vos préférences."
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"The configuration file /etc/modutils/apmd has been removed from this "
-"package.  The file /etc/modutils/apm has been added to the powermgmt-base "
-"package to serve the same purpose."
-msgstr ""
-"Le fichier de configuration /etc/modutils/apmd a été supprimé de ce paquet. "
-"Le fichier /etc/modutils/apm a été ajouté au paquet powermgmt-base pour "
-"apporter les mêmes fonctionnalités."
diff -Nru apmd-3.2.2.old/debian/po/it.po apmd-3.2.2/debian/po/it.po
--- apmd-3.2.2.old/debian/po/it.po	2007-02-22 22:27:57.961982645 +0100
+++ apmd-3.2.2/debian/po/it.po	1970-01-01 01:00:00.000000000 +0100
@@ -1,59 +0,0 @@
-# apmd po-debconf translation to italian
-# Copyright (C) 2006 Free Software Foundation, Inc.
-# This file is distributed under the same license as the apmd package.
-# Luca Monducci <[EMAIL PROTECTED]>, 2006.
-# Stefano Melchior <[EMAIL PROTECTED]>, 2004, 2005\n"
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: apmd 3.2.2-5 italian debconf templates\n"
-"Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2006-07-21 20:08+1000\n"
-"PO-Revision-Date: 2006-03-31 20:53+0200\n"
-"Last-Translator: Luca Monducci <[EMAIL PROTECTED]>\n"
-"Language-Team: Italian Team <[EMAIL PROTECTED]>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid "Configuration files have moved"
-msgstr "I file di configurazione sono stati spostati"
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"The script /etc/apm/event.d/20hdparm has been removed from this package.  It "
-"remains installed but inactive, and any custom settings, formerly kept in /"
-"etc/apm/apmd_proxy.conf, have been erased."
-msgstr ""
-"Lo script /etc/apm/event.d/20hdparm è stato rimosso da questo pacchetto, "
-"rimane installato ma inattivo. Ogni personalizzazione della configurazione, "
-"in precedenza memorizzata in /etc/apm/apmd_proxy.conf, è stata cancellata."
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"A script of the same name has been added to the hdparm package. When "
-"upgrading hdparm you will be able to configure the script again according to "
-"your preferences."
-msgstr ""
-"Uno script omonimo è stato aggiunto al pacchetto hdparm. Quando si aggiorna "
-"hdparm si potrà configurare di nuovo lo script in accordo alle proprie "
-"preferenze."
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"The configuration file /etc/modutils/apmd has been removed from this "
-"package.  The file /etc/modutils/apm has been added to the powermgmt-base "
-"package to serve the same purpose."
-msgstr ""
-"Il file di configurazione /etc/modutils/apmd è stato rimosso da questo "
-"pacchetto. Il file  /etc/modutils/apm è stato aggiunto al pacchetto "
-"powermgmt-base allo stesso scopo."
diff -Nru apmd-3.2.2.old/debian/po/ja.po apmd-3.2.2/debian/po/ja.po
--- apmd-3.2.2.old/debian/po/ja.po	2007-02-22 22:27:57.961982645 +0100
+++ apmd-3.2.2/debian/po/ja.po	1970-01-01 01:00:00.000000000 +0100
@@ -1,65 +0,0 @@
-#
-#    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.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2006-07-21 20:08+1000\n"
-"PO-Revision-Date: 2003-09-09 22:20+0900\n"
-"Last-Translator: Kenshi Muto <[EMAIL PROTECTED]>\n"
-"Language-Team: Japanese <debian-japanese@lists.debian.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=EUC-JP\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid "Configuration files have moved"
-msgstr "ÀßÄê¥Õ¥¡¥¤¥ë¤¬°ÜÆ°¤µ¤ì¤Þ¤·¤¿"
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"The script /etc/apm/event.d/20hdparm has been removed from this package.  It "
-"remains installed but inactive, and any custom settings, formerly kept in /"
-"etc/apm/apmd_proxy.conf, have been erased."
-msgstr ""
-"¥¹¥¯¥ê¥×¥È /etc/apm/event.d/20hdparm ¤Ï¤³¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ç¤Ïºï½ü¤µ¤ì¤Æ¤¤¤Þ¤¹¡£¥¤"
-"¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤ë¤â¤Î¤Ï»Ä¤·¤Þ¤¹¤¬ÉÔ³èÀ­²½¤µ¤ì¤Æ¤ª¤ê¡¢°ÊÁ° /etc/apm/"
-"apmd_proxy.conf ¤ËÊÝ»ý¤µ¤ì¤Æ¤¤¤¿¥«¥¹¥¿¥Þ¥¤¥ºÀßÄê¤Ï½üµî¤µ¤ì¤Þ¤·¤¿¡£"
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"A script of the same name has been added to the hdparm package. When "
-"upgrading hdparm you will be able to configure the script again according to "
-"your preferences."
-msgstr ""
-"Ʊ̾¤Î¥¹¥¯¥ê¥×¥È¤¬ hdparm ¥Ñ¥Ã¥±¡¼¥¸¤ËÄɲ䵤ì¤Æ¤¤¤Þ¤¹¡£hdparm ¤Î¹¹¿·»þ¤Ë¡¢¤¢"
-"¤Ê¤¿¤Î¹¥¤ß¤Ë´ØÏ¢¤¹¤ë¥¹¥¯¥ê¥×¥ÈÀßÄê¤òºÆ¤Ó¹Ô¤¦¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£"
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"The configuration file /etc/modutils/apmd has been removed from this "
-"package.  The file /etc/modutils/apm has been added to the powermgmt-base "
-"package to serve the same purpose."
-msgstr ""
-"ÀßÄê¥Õ¥¡¥¤¥ë /etc/modutils/apmd ¤Ï¤³¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ç¤Ïºï½ü¤µ¤ì¤Æ¤¤¤Þ¤¹¡£Æ±ÍͤÎ"
-"ÌÜŪ¤ËÂбþ¤¹¤ë¤¿¤á¤Ë¡¢¥Õ¥¡¥¤¥ë /etc/modutils/apm ¤¬ powermgmt-base ¥Ñ¥Ã¥±¡¼¥¸"
-"¤ÇÄɲ䵤ì¤Æ¤¤¤Þ¤¹¡£"
diff -Nru apmd-3.2.2.old/debian/po/nl.po apmd-3.2.2/debian/po/nl.po
--- apmd-3.2.2.old/debian/po/nl.po	2007-02-22 22:27:57.961982645 +0100
+++ apmd-3.2.2/debian/po/nl.po	1970-01-01 01:00:00.000000000 +0100
@@ -1,68 +0,0 @@
-# translation of apmd_3.2.1-4_nl.po to Dutch
-#
-#    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.
-# Frans Pop <[EMAIL PROTECTED]>, 2004.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: apmd_3.2.1-4_nl\n"
-"Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2006-07-21 20:08+1000\n"
-"PO-Revision-Date: 2004-04-04 14:30+0200\n"
-"Last-Translator: Frans Pop <[EMAIL PROTECTED]>\n"
-"Language-Team: Dutch <debian-l10n-dutch@lists.debian.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.3\n"
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid "Configuration files have moved"
-msgstr "De configuratiebestanden zijn verplaatst"
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"The script /etc/apm/event.d/20hdparm has been removed from this package.  It "
-"remains installed but inactive, and any custom settings, formerly kept in /"
-"etc/apm/apmd_proxy.conf, have been erased."
-msgstr ""
-"Het script '/etc/apm/event.d/20hdparm' is uit dit pakket verwijderd. Het "
-"blijft geïnstalleerd, maar is niet meer actief; eventuele persoonlijke "
-"instellingen, voorheen vastgelegd in '/etc/apm/apmd_proxy.conf', zijn "
-"verwijderd."
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"A script of the same name has been added to the hdparm package. When "
-"upgrading hdparm you will be able to configure the script again according to "
-"your preferences."
-msgstr ""
-"Een script met dezelfde naam is toegevoegd aan het pakket hdparm. Tijdens "
-"het opwaarderen van hdparm zult u het script conform uw voorkeuren kunnen "
-"configureren."
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"The configuration file /etc/modutils/apmd has been removed from this "
-"package.  The file /etc/modutils/apm has been added to the powermgmt-base "
-"package to serve the same purpose."
-msgstr ""
-"Het configuratiebestand '/etc/modutils/apmd' is verwijderd uit dit pakket. "
-"Het bestand '/etc/modutils/apm' is aan het pakket powermgmt-base toegevoegd "
-"en heeft dezelfde functie."
diff -Nru apmd-3.2.2.old/debian/po/POTFILES.in apmd-3.2.2/debian/po/POTFILES.in
--- apmd-3.2.2.old/debian/po/POTFILES.in	2007-02-22 22:27:57.961982645 +0100
+++ apmd-3.2.2/debian/po/POTFILES.in	1970-01-01 01:00:00.000000000 +0100
@@ -1 +0,0 @@
-[type: gettext/rfc822deb] apmd.templates
diff -Nru apmd-3.2.2.old/debian/po/pt_BR.po apmd-3.2.2/debian/po/pt_BR.po
--- apmd-3.2.2.old/debian/po/pt_BR.po	2007-02-22 22:27:57.961982645 +0100
+++ apmd-3.2.2/debian/po/pt_BR.po	1970-01-01 01:00:00.000000000 +0100
@@ -1,67 +0,0 @@
-#
-#    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.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: apmd_3.2.0-8\n"
-"Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2006-07-21 20:08+1000\n"
-"PO-Revision-Date: 2004-01-12 18:05-0300\n"
-"Last-Translator: André Luís Lopes <[EMAIL PROTECTED]>\n"
-"Language-Team: Debian-BR Project <[EMAIL PROTECTED]>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ISO-8859-1\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid "Configuration files have moved"
-msgstr "Arquivos de configuração foram movidos"
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"The script /etc/apm/event.d/20hdparm has been removed from this package.  It "
-"remains installed but inactive, and any custom settings, formerly kept in /"
-"etc/apm/apmd_proxy.conf, have been erased."
-msgstr ""
-"O script /etc/apm/event.d/20hdparm foi removido deste pacote. Ele continua "
-"instalado mas está inativo e qualquer configuração personalizada, "
-"anteriormente mantida em /etc/apm/apmd_proxy.conf, foi apagada."
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"A script of the same name has been added to the hdparm package. When "
-"upgrading hdparm you will be able to configure the script again according to "
-"your preferences."
-msgstr ""
-"Um script com o mesmo nome foi adicionado ao pacote hdparm. Ao atualizar seu "
-"pacote hdparm você poderá configurar o script novamente de acordo com suas "
-"preferências."
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"The configuration file /etc/modutils/apmd has been removed from this "
-"package.  The file /etc/modutils/apm has been added to the powermgmt-base "
-"package to serve the same purpose."
-msgstr ""
-"O arquivo de configuração /etc/modutils/apmd foi removido deste pacote. O "
-"arquivo /etc/modutils/apm foi adicionado ao pacote powermgmt-base e serve "
-"para o mesmo propósito."
diff -Nru apmd-3.2.2.old/debian/po/pt.po apmd-3.2.2/debian/po/pt.po
--- apmd-3.2.2.old/debian/po/pt.po	2007-02-22 22:27:57.961982645 +0100
+++ apmd-3.2.2/debian/po/pt.po	1970-01-01 01:00:00.000000000 +0100
@@ -1,55 +0,0 @@
-# 2005-11-13 - Marco Ferra <[EMAIL PROTECTED]> (initial translation)
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: apmd 3.2.2-3\n"
-"Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2006-07-21 20:08+1000\n"
-"PO-Revision-Date: 2005-11-13 21:45+0100\n"
-"Last-Translator: Marco Ferra <[EMAIL PROTECTED]>\n"
-"Language-Team: Portuguese <[EMAIL PROTECTED]>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid "Configuration files have moved"
-msgstr "Os ficheiros que configuram o apmd foram movidos"
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"The script /etc/apm/event.d/20hdparm has been removed from this package.  It "
-"remains installed but inactive, and any custom settings, formerly kept in /"
-"etc/apm/apmd_proxy.conf, have been erased."
-msgstr ""
-"O script /etc/apm/event.d/20hdparm foi removido deste pacote.  Irá "
-"permanecer instalado mas inactivo e quaisquer parâmetros pessoais "
-"anteriormente guardados em etc/apm/apmd_proxy.conf foram removidos."
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"A script of the same name has been added to the hdparm package. When "
-"upgrading hdparm you will be able to configure the script again according to "
-"your preferences."
-msgstr ""
-"Um script com o mesmo nome foi adicionado ao pacote hdparm. Quando "
-"actualizar o hdparm terá a possibilidade de configurar o script de novo de "
-"acordo com as suas preferências."
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"The configuration file /etc/modutils/apmd has been removed from this "
-"package.  The file /etc/modutils/apm has been added to the powermgmt-base "
-"package to serve the same purpose."
-msgstr ""
-"O ficheiro /etc/modutils/apmd foi removido deste pacote.  O ficheiro /etc/"
-"modutils/apm foi adicionado ao pacote powermgmt-base para servir o mesmo "
-"propósito."
diff -Nru apmd-3.2.2.old/debian/po/sv.po apmd-3.2.2/debian/po/sv.po
--- apmd-3.2.2.old/debian/po/sv.po	2007-02-22 22:27:57.961982645 +0100
+++ apmd-3.2.2/debian/po/sv.po	1970-01-01 01:00:00.000000000 +0100
@@ -1,64 +0,0 @@
-# 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.
-# , fuzzy
-# 
-# 
-msgid ""
-msgstr ""
-"Project-Id-Version: apmd 3.2.2-3\n"
-"Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2006-07-21 20:08+1000\n"
-"PO-Revision-Date: 2005-10-11 10:52+0200\n"
-"Last-Translator: Daniel Nylander <[EMAIL PROTECTED]>\n"
-"Language-Team: Swedish <[EMAIL PROTECTED]>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-1\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid "Configuration files have moved"
-msgstr "Konfigurationsfilerna har flyttats"
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"The script /etc/apm/event.d/20hdparm has been removed from this package.  It "
-"remains installed but inactive, and any custom settings, formerly kept in /"
-"etc/apm/apmd_proxy.conf, have been erased."
-msgstr ""
-"Skriptet /etc/apm/event.d/20hdparm har tagits bort från detta paket.  Det "
-"kommer att fortsätta vara installerat men inaktivt och alla egna "
-"inställningar, tidigare sparade i /etc/apm/apmd_proxy.conf har raderats."
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"A script of the same name has been added to the hdparm package. When "
-"upgrading hdparm you will be able to configure the script again according to "
-"your preferences."
-msgstr ""
-"Ett skript med samma namn har lagts till i paketet hdparm. När du "
-"uppgraderar hdparm kan du konfigurera skriptet igen enligt dina önskemål."
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"The configuration file /etc/modutils/apmd has been removed from this "
-"package.  The file /etc/modutils/apm has been added to the powermgmt-base "
-"package to serve the same purpose."
-msgstr ""
-"Konfigurationsfilen /etc/modutils/apmd har tagits bort från detta paket.  "
-"Filen /etc/modutils/apm har lagts till i paketet powermgmt-base för att ge "
-"samma funktionalitet."
diff -Nru apmd-3.2.2.old/debian/po/templates.pot apmd-3.2.2/debian/po/templates.pot
--- apmd-3.2.2.old/debian/po/templates.pot	2007-02-22 22:27:57.513982112 +0100
+++ apmd-3.2.2/debian/po/templates.pot	1970-01-01 01:00:00.000000000 +0100
@@ -1,50 +0,0 @@
-# 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 PROTECTED]>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2006-07-21 20:08+1000\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <[EMAIL PROTECTED]>\n"
-"Language-Team: LANGUAGE <[EMAIL PROTECTED]>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid "Configuration files have moved"
-msgstr ""
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"The script /etc/apm/event.d/20hdparm has been removed from this package.  It "
-"remains installed but inactive, and any custom settings, formerly kept in /"
-"etc/apm/apmd_proxy.conf, have been erased."
-msgstr ""
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"A script of the same name has been added to the hdparm package. When "
-"upgrading hdparm you will be able to configure the script again according to "
-"your preferences."
-msgstr ""
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"The configuration file /etc/modutils/apmd has been removed from this "
-"package.  The file /etc/modutils/apm has been added to the powermgmt-base "
-"package to serve the same purpose."
-msgstr ""
diff -Nru apmd-3.2.2.old/debian/po/tr.po apmd-3.2.2/debian/po/tr.po
--- apmd-3.2.2.old/debian/po/tr.po	2007-02-22 22:27:57.961982645 +0100
+++ apmd-3.2.2/debian/po/tr.po	1970-01-01 01:00:00.000000000 +0100
@@ -1,57 +0,0 @@
-# Turkish translation of apmd.
-# This file is distributed under the same license as the apmd package.
-# Osman Yüksel <[EMAIL PROTECTED]>, 2004.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: apmd\n"
-"Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2006-07-21 20:08+1000\n"
-"PO-Revision-Date: 2004-06-06 05:39+0300\n"
-"Last-Translator: Osman Yüksel <[EMAIL PROTECTED]>\n"
-"Language-Team: Turkish <debian-l10n-turkish@lists.debian.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms:  nplurals=1; plural=0;\n"
-"X-Generator: KBabel 1.3.1\n"
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid "Configuration files have moved"
-msgstr "Yapılandırma dosyaları taşınmış"
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"The script /etc/apm/event.d/20hdparm has been removed from this package.  It "
-"remains installed but inactive, and any custom settings, formerly kept in /"
-"etc/apm/apmd_proxy.conf, have been erased."
-msgstr ""
-"/etc/apm/event.d/20hdparm betiÄŸi kurulu durumda, ancak etkinlestirilmemis "
-"olarak birakiliyor ve /etc/apm/apmd_proxy.conf içindeki özelleştirilmiş "
-"ayarlar silindi."
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"A script of the same name has been added to the hdparm package. When "
-"upgrading hdparm you will be able to configure the script again according to "
-"your preferences."
-msgstr ""
-"Aynı isimde bir betik hdparm paketine eklendi. hdparm paketini güncellerken "
-"isteklerinize göre bu betiği tekrar yapılandırabileceksiniz."
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"The configuration file /etc/modutils/apmd has been removed from this "
-"package.  The file /etc/modutils/apm has been added to the powermgmt-base "
-"package to serve the same purpose."
-msgstr ""
-"/etc/modutils/apmd yapılandırma dosyası bu paketten çıkarıldı. Aynı "
-"işlevleri gören /etc/modutils/apmd dosyası powermgmt-base paketine eklendi."
diff -Nru apmd-3.2.2.old/debian/po/vi.po apmd-3.2.2/debian/po/vi.po
--- apmd-3.2.2.old/debian/po/vi.po	2007-02-22 22:27:57.513982112 +0100
+++ apmd-3.2.2/debian/po/vi.po	1970-01-01 01:00:00.000000000 +0100
@@ -1,57 +0,0 @@
-# Vietnamese translation for apmd.
-# Copyright © 2005 Free Software Foundation, Inc.
-# Clytie Siddall <[EMAIL PROTECTED]>, 2005.
-# 
-msgid ""
-msgstr ""
-"Project-Id-Version: apmd 3.2.2-3\n"
-"Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2006-07-21 20:08+1000\n"
-"PO-Revision-Date: 2005-06-11 23:26+0930\n"
-"Last-Translator: Clytie Siddall <[EMAIL PROTECTED]>\n"
-"Language-Team: Vietnamese <[EMAIL PROTECTED]>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0\n"
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid "Configuration files have moved"
-msgstr "Mật số tập tin cấu hình đã di chuyển rồi."
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"The script /etc/apm/event.d/20hdparm has been removed from this package.  It "
-"remains installed but inactive, and any custom settings, formerly kept in /"
-"etc/apm/apmd_proxy.conf, have been erased."
-msgstr ""
-"Tập lệnh «/etc/apm/event.d/20hdparm» đã bị loại bỠra gói tin này. Nó còn "
-"được cài đặt, nhÆ°ng mà nó không hoạt Ä‘á»™ng, và thiết lập tá»± chá»n nào, được "
-"giữ trong «/etc/apm/apmd_proxy.conf», đã bị xóa bá»."
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"A script of the same name has been added to the hdparm package. When "
-"upgrading hdparm you will be able to configure the script again according to "
-"your preferences."
-msgstr ""
-"Một tập lệnh cùng tên đã được thêm vào gói tin «hdparm». Trong khi nâng cấp "
-"«hdparm» , bạn sẽ có thể cấu hình lại tập lệnh ấy, tùy theo sở thích bạn."
-
-#. Type: note
-#. Description
-#: ../apmd.templates:3
-msgid ""
-"The configuration file /etc/modutils/apmd has been removed from this "
-"package.  The file /etc/modutils/apm has been added to the powermgmt-base "
-"package to serve the same purpose."
-msgstr ""
-"Tập tin cấu hình «/etc/modutils/apmd» đã bị loại bỠra gói tin này. Tập tin "
-"«/etc/modutils/apm» đã được thêm vào gói tin «powermgmt-base» để đáp ứng "
-"cùng mục đích."

Attachment: signature.asc
Description: Digital signature

Reply via email to