Your message dated Mon, 04 Feb 2008 16:47:11 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#402424: fixed in update-inetd 4.28
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: update-inetd
Version: 4.27-0.2
Severity: minor
Tags: patch

Hi,

For each debconf template, debconf sets a default title which is
  "Configuring $package"

As $package is null while using update-inetd, the title is only
  "Configuring"

In English, it could be OK, but even if the templates are not i18ned,
debconf uses the available translation for "Configuring $package".
In French (for example), it displays
  "Configuration de"
which is syntaxically incorrect. I assume plenty of languages are in the
same situation.

I suggest you to apply the attached patch which set a specific title:
  "Configuring service: $service"
This patch should be applied after fixing #402313.

Cheers,

-- 
Thomas Huriaux
diff -Nur update-inetd-4.27.old/debian/templates update-inetd-4.27/debian/templates
--- update-inetd-4.27.old/debian/templates	2006-12-10 12:20:58.000000000 +0100
+++ update-inetd-4.27/debian/templates	2006-12-10 12:38:18.000000000 +0100
@@ -1,3 +1,7 @@
+Template: update-inetd/title
+Type: title
+_Description: Configuring service: ${service}
+
 Template: update-inetd/ask-several-entries
 Type: boolean
 Default: true
diff -Nur update-inetd-4.27.old/DebianNet.pm update-inetd-4.27/DebianNet.pm
--- update-inetd-4.27.old/DebianNet.pm	2006-12-10 12:20:58.000000000 +0100
+++ update-inetd-4.27/DebianNet.pm	2006-12-10 12:39:06.000000000 +0100
@@ -50,6 +50,8 @@
                 if (grep(m/^$sservice\s+/,@inetd) > 1) {
 		    set("update-inetd/ask-several-entries", "true");
 		    fset("update-inetd/ask-several-entries", "seen", "false");
+		    settitle("update-inetd/title");
+		    subst("update-inetd/ask-several-entries", "service", "$sservice");
 		    subst("update-inetd/ask-several-entries", "sservice", "$sservice");
 		    subst("update-inetd/ask-several-entries", "inetdcf", "$inetdcf");
 		    input("high", "update-inetd/ask-several-entries");
@@ -61,6 +63,8 @@
                 } elsif (!grep(m:^#?.*$searchentry.*:, @inetd)) {
 		    set("update-inetd/ask-entry-present", "true");
 		    fset("update-inetd/ask-entry-present", "seen", "false");
+		    settitle("update-inetd/title");
+		    subst("update-inetd/ask-entry-present", "service", "$sservice");
 		    subst("update-inetd/ask-entry-present", "newentry", "$newentry");
 		    subst("update-inetd/ask-entry-present", "sservice", "$sservice");
 		    subst("update-inetd/ask-entry-present", "inetdcf", "$inetdcf");
@@ -126,6 +130,7 @@
     if ((&scan_entries("$service") > 1) and (not defined($multi))) {
 	set("update-inetd/ask-remove-entries", "false");
 	fset("update-inetd/ask-remove-entries", "seen", "false");
+	settitle("update-inetd/title");
         subst("update-inetd/ask-remove-entries", "service", "$service");
 	subst("update-inetd/ask-remove-entries", "inetdcf", "$inetdcf");
 	input("high", "update-inetd/ask-remove-entries");
@@ -165,6 +170,7 @@
     if ((&scan_entries("$service", $pattern) > 1) and (not defined($multi))) {
 	set("update-inetd/ask-disable-entries", "false");
 	fset("update-inetd/ask-disable-entries", "seen", "false");
+	settitle("update-inetd/title");
         subst("update-inetd/ask-disable-entries", "service", "$service");
 	subst("update-inetd/ask-disable-entries", "inetdcf", "$inetdcf");
 	input("high", "update-inetd/ask-disable-entries");

Attachment: signature.asc
Description: Digital signature


--- End Message ---
--- Begin Message ---
Source: update-inetd
Source-Version: 4.28

We believe that the bug you reported is fixed in the latest version of
update-inetd, which is due to be installed in the Debian FTP archive:

update-inetd_4.28.dsc
  to pool/main/u/update-inetd/update-inetd_4.28.dsc
update-inetd_4.28.tar.gz
  to pool/main/u/update-inetd/update-inetd_4.28.tar.gz
update-inetd_4.28_all.deb
  to pool/main/u/update-inetd/update-inetd_4.28_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Luk Claes <[EMAIL PROTECTED]> (supplier of updated update-inetd package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Mon, 04 Feb 2008 16:27:24 +0100
Source: update-inetd
Binary: update-inetd
Architecture: source all
Version: 4.28
Distribution: unstable
Urgency: low
Maintainer: Luk Claes <[EMAIL PROTECTED]>
Changed-By: Luk Claes <[EMAIL PROTECTED]>
Description: 
 update-inetd - inetd.conf updater
Closes: 296795 335332 402313 402424
Changes: 
 update-inetd (4.28) unstable; urgency=low
 .
   * Taking over the package.
   * Fix some DebianNet.pm issues (Closes: #296795).
   * Use boolean template and po-debconf (Closes: #402313).
   * Fix spelling error in manpage (Closes: #335332).
   * Add title to debconf questions (Closes: #402424).
Files: 
 ed45a749fb890f841c189a180bc06991 504 admin important update-inetd_4.28.dsc
 4f8764bd011ffa88bd5d5347cf31c36b 10011 admin important update-inetd_4.28.tar.gz
 cc59093094bcd2cede523a6a05d14cfa 11902 admin important 
update-inetd_4.28_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFHpz5U5UTeB5t8Mo0RAuRXAKDKBdqKxI/eJBGzqZf78RV8+RK8AwCguIRd
/D9ePcW/owZDhFJHzJt0ZPs=
=eWzF
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to