[Pkg-cups-devel] r22 - in cupsys/trunk/debian: . po

Kenshi Muto kmuto at costa.debian.org
Tue Oct 4 14:13:56 UTC 2005


Author: kmuto
Date: Tue Oct  4 14:13:54 2005
New Revision: 22

Modified:
   cupsys/trunk/debian/changelog
   cupsys/trunk/debian/cupsys.config
   cupsys/trunk/debian/cupsys.dirs
   cupsys/trunk/debian/cupsys.postinst
   cupsys/trunk/debian/cupsys.templates
   cupsys/trunk/debian/po/cs.po
   cupsys/trunk/debian/po/da.po
   cupsys/trunk/debian/po/de.po
   cupsys/trunk/debian/po/es.po
   cupsys/trunk/debian/po/fr.po
   cupsys/trunk/debian/po/ja.po
   cupsys/trunk/debian/po/nl.po
   cupsys/trunk/debian/po/pt_BR.po
   cupsys/trunk/debian/po/ru.po
   cupsys/trunk/debian/po/templates.pot
   cupsys/trunk/debian/po/tr.po
   cupsys/trunk/debian/po/vi.po
Log:
add routine to configure Port/Listen and Browsing by using debconf.

Modified: cupsys/trunk/debian/changelog
==============================================================================
--- cupsys/trunk/debian/changelog	(original)
+++ cupsys/trunk/debian/changelog	Tue Oct  4 14:13:54 2005
@@ -6,6 +6,15 @@
     users aren't affected these security problems.
     This patch is just for users who want to create own pdftops from
     source.
+  * Move Port/Listen and Browsing configurations from /etc/cups/
+    cupsd.conf to /etc/cups/cups.d/.
+
+    /etc/cups/cups.d/ports.conf: Port/Listen configuration.
+    /etc/cups/cups.d/browse.conf: Browsing configuration
+
+    Migration will be done automatically.
+    You can configure these values by using "dpkg-reconfigure cupsys".
+    (closes: #235906, #297695, #178838, #288838)
 
  -- Kenshi Muto <kmuto at debian.org>  Mon, 22 Aug 2005 18:50:26 +0900
 

Modified: cupsys/trunk/debian/cupsys.config
==============================================================================
--- cupsys/trunk/debian/cupsys.config	(original)
+++ cupsys/trunk/debian/cupsys.config	Tue Oct  4 14:13:54 2005
@@ -2,9 +2,51 @@
 
 set -e
 
+CONF=/etc/cups/cupsd.conf
+PORTS=/etc/cups/cups.d/ports.conf
+BROWSE=/etc/cups/cups.d/browse.conf
+
 # Debconf library
 . /usr/share/debconf/confmodule
 
+is_ports () {
+  # syntax: parse_ports string (0: success 1: error)
+  VAL=$(echo "$1" | perl -e '$ret = ""; while (<STDIN>) { chomp;
+    @values = split(/\s+/);
+    foreach(@values) {
+      if (/^\d+$/ && $_ >= 0 && $_ < 65536) {
+        # PORT
+        $ret .= "Port $_\\n";
+      } elsif (/^\d+\.\d+\.\d+\.\d+$/ || /^\d+\.\d+\.\d+\.\d:\d+$/) {
+        # IP
+        $ret .= "Listen $_\\n";
+      } elsif (/^[a-zA-Z0-9-_.]+$/ || /^[a-zA-Z0-9-_.]+:\d+$/) {
+        my($tmp) = $_;
+        if (/^[a-zA-Z0-9-_.]+:(\d+)$/) {
+          if ($1 < 0 || $1 > 65535) {
+            # ERROR
+            $ret = "";
+            last;
+          }
+        }
+        # HOSTNAME
+        $ret .= "Listen $_\\n";
+      } else {
+        # ERROR
+        $ret = "";
+        last;
+      }
+    }
+    print $ret;
+  }')
+
+  if [ -z "$VAL" ]; then
+    return 1
+  else
+    return 0
+  fi
+}
+
 db_get cupsys/raw-print
 OLD_RET=$RET
 
@@ -27,3 +69,49 @@
 
 db_input low cupsys/backend || true
 db_go
+
+RET=
+if [ -f "$CONF" ]; then
+  if [ "$(grep -h "Include[[:space:]]\+$PORTS" $CONF)" -a -f "$PORTS" ]; then
+    RET=$(grep -h -e "^\(Port\|Listen\)[[:space:]]\+" $CONF $PORTS | sort | uniq | sed -e "s/Port[[:space:]]\+//" -e "s/Listen[[:space:]]\+//" | tr "\n" " ")
+  else
+    RET=$(grep -h -e "^\(Port\|Listen\)[[:space:]]\+" $CONF | sort | uniq | sed -e "s/Port[[:space:]]\+//" -e "s/Listen[[:space:]]\+//" | tr "\n" " ")
+  fi
+  if [ "$RET" ]; then
+    db_set cupsys/ports $RET
+  fi
+  db_input high cupsys/ports || true
+  db_go
+  db_get cupsys/ports
+  while ! is_ports "$RET"; do
+    db_input critical cupsys/portserror || true
+    db_go
+    db_input high cupsys/ports || true
+    db_go
+    db_get cupsys/ports
+  done
+
+  if [ "$(grep -h "Include[[:space:]]\+$BROWSE" $CONF)" -a -f "$BROWSE" ]; then
+    RET=$(grep -h -e "^Browsing[[:space:]]\+" $CONF $BROWSE | head -1 | sed -e "s/Browsing[[:space:]]\+//" | tr "A-Z" "a-z")
+  else
+    RET=$(grep -h -e "^Browsing[[:space:]]\+" $CONF | head -1 | sed -e "s/Browsing[[:space:]]\+//" | tr "A-Z" "a-z")
+  fi
+  if [ "$RET" = "off" ]; then
+    db_set cupsys/browse false
+  fi
+  db_input medium cupsys/browse || true
+  db_go
+else
+  db_input medium cupsys/ports || true
+  db_go
+  db_get cupsys/ports
+  while ! is_ports "$RET"; do
+    db_input critical cupsys/portserror || true
+    db_go
+    db_input medium cupsys/ports || true
+    db_go
+    db_get cupsys/ports
+  done
+  db_input medium cupsys/browse || true
+  db_go
+fi

Modified: cupsys/trunk/debian/cupsys.dirs
==============================================================================
--- cupsys/trunk/debian/cupsys.dirs	(original)
+++ cupsys/trunk/debian/cupsys.dirs	Tue Oct  4 14:13:54 2005
@@ -1,4 +1,5 @@
 var/run/cups
 usr/share/doc/cupsys
 etc/default
+etc/cups/cups.d
 usr/lib/cups/backend-available

Modified: cupsys/trunk/debian/cupsys.postinst
==============================================================================
--- cupsys/trunk/debian/cupsys.postinst	(original)
+++ cupsys/trunk/debian/cupsys.postinst	Tue Oct  4 14:13:54 2005
@@ -169,6 +169,60 @@
             echo "Your /etc/cups/cupsd.conf appears to have been manually edited. cupsys.postinst won't touch it."
           fi
 	fi
+
+	# Create /etc/cups/cups.d/ports.conf and /etc/cups/cups.d/browse.conf
+	db_get cupsys/ports
+	VAL=$(echo "$RET" | perl -e '$ret = ""; while (<STDIN>) { chomp;
+	    @values = split(/\s+/);
+	    foreach(@values) {
+	      if (/^\d+$/ && $_ >= 0 && $_ < 65536) {
+	        # PORT
+	        $ret .= "Port $_\\n";
+	      } elsif (/^\d+\.\d+\.\d+\.\d+$/ || /^\d+\.\d+\.\d+\.\d:\d+$/) {
+	        # IP
+	        $ret .= "Listen $_\\n";
+	      } elsif (/^[a-zA-Z0-9-_.]+$/ || /^[a-zA-Z0-9-_.]+:\d+$/) {
+	        my($tmp) = $_;
+	        if (/^[a-zA-Z0-9-_.]+:(\d+)$/) {
+	          if ($1 < 0 || $1 > 65535) {
+	            # ERROR
+	            $ret = "";
+	            last;
+	          }
+	        }
+	        # HOSTNAME
+	        $ret .= "Listen $_\\n";
+	      } else {
+	        # ERROR
+	        $ret = "";
+	        last;
+	      }
+	    }
+	    print $ret;
+	  }')
+
+	if [ -z "$VAL" ]; then
+	  echo "Error: debconf has an invalid value. Run 'dpkg-reconfigure cupsys' again."
+	  return 1
+	else
+	  echo -e -n "$VAL" > /etc/cups/cups.d/ports.conf
+	fi
+
+	db_get cupsys/browse
+	if [ "$RET" = "true" ]; then
+	  echo "Browsing on" > /etc/cups/cups.d/browse.conf
+	else
+	  echo "Browsing off" > /etc/cups/cups.d/browse.conf
+	fi
+
+	grep -v "^\(Browsing\|Port\|Listen\)[[:space:]]" /etc/cups/cupsd.conf > /etc/cups/cupsd.conf.$$
+	if [ -z "$(grep -e "^Include[[:space:]]\+/etc/cups/cups.d/ports.conf" /etc/cups/cupsd.conf.$$)" ]; then
+	  echo "Include /etc/cups/cups.d/ports.conf" >> /etc/cups/cupsd.conf.$$
+	fi
+	if [ -z "$(grep -e "^Include[[:space:]]\+/etc/cups/cups.d/browse.conf" /etc/cups/cupsd.conf.$$)" ]; then
+	  echo "Include /etc/cups/cups.d/browse.conf" >> /etc/cups/cupsd.conf.$$
+	fi
+	mv /etc/cups/cupsd.conf.$$ /etc/cups/cupsd.conf
     ;;
 
     abort-upgrade|abort-remove|abort-deconfigure)

Modified: cupsys/trunk/debian/cupsys.templates
==============================================================================
--- cupsys/trunk/debian/cupsys.templates	(original)
+++ cupsys/trunk/debian/cupsys.templates	Tue Oct  4 14:13:54 2005
@@ -29,3 +29,39 @@
  .
  Please choose the backend program to be used by CUPS. The default choice
  should fit the most common environments.
+
+Template: cupsys/ports
+Type: string
+Default: localhost:631
+_Description: Specify the port or/and host name that wants to be listened.
+ Please specify the port or the host name CUPS daemon listens.
+ You can use following formats.
+ .
+ - Port number (631)
+ .
+ - Host name   (debian.example.com)
+ .
+ - Host:Port   (debian.example.com:631)
+ .
+ It is possible to combine by delimiting two or more values in space.
+ .
+ The default port 631 is reserved for the Internet Printing Protocol (IPP).
+ "localhost:631" is recommended to the standalone environment by security
+ reason.
+
+Template: cupsys/browse
+Type: boolean
+Default: yes
+_Description: Do you want to broadcast and/or listen for CUPS printer information on the network?
+ CUPS daemon can broadcast printer information for clients on the network,
+ and detect printers on the network automatically.
+ .
+ When this option is accepted, CUPS daemon will broadcast and detect by
+ using UDP periodically.
+
+Template: cupsys/portserror
+Type: note
+_Description: The wrong value is found in the input.
+ The error occurred while parsing the port number or the host name.
+ .
+ Please correct it.

Modified: cupsys/trunk/debian/po/cs.po
==============================================================================
--- cupsys/trunk/debian/po/cs.po	(original)
+++ cupsys/trunk/debian/po/cs.po	Tue Oct  4 14:13:54 2005
@@ -14,8 +14,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: cupsys\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-04 23:07+0900\n"
+"Report-Msgid-Bugs-To: pkg-cups-devel at lists.alioth.debian.org\n"
+"POT-Creation-Date: 2005-10-04 23:10+0900\n"
 "PO-Revision-Date: 2004-07-22 18:01+0200\n"
 "Last-Translator: Miroslav Kure <kurem at debian.cz>\n"
 "Language-Team: Czech <provoz at debian.cz>\n"
@@ -129,3 +129,92 @@
 msgstr ""
 "Vyberte ovladaè, který má CUPS  pou¾ít. Implicitní volba se hodí do vìt¹iny "
 "bì¾ných prostøedí."
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "Specify the port or/and host name that wants to be listened."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid ""
+"Please specify the port or the host name CUPS daemon listens. You can use "
+"following formats."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Port number (631)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Host name   (debian.example.com)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Host:Port   (debian.example.com:631)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "It is possible to combine by delimiting two or more values in space."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid ""
+"The default port 631 is reserved for the Internet Printing Protocol (IPP). "
+"\"localhost:631\" is recommended to the standalone environment by security "
+"reason."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"Do you want to broadcast and/or listen for CUPS printer information on the "
+"network?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"CUPS daemon can broadcast printer information for clients on the network, "
+"and detect printers on the network automatically."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"When this option is accepted, CUPS daemon will broadcast and detect by using "
+"UDP periodically."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "The wrong value is found in the input."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "The error occurred while parsing the port number or the host name."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "Please correct it."
+msgstr ""

Modified: cupsys/trunk/debian/po/da.po
==============================================================================
--- cupsys/trunk/debian/po/da.po	(original)
+++ cupsys/trunk/debian/po/da.po	Tue Oct  4 14:13:54 2005
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: da\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-04 23:07+0900\n"
+"Report-Msgid-Bugs-To: pkg-cups-devel at lists.alioth.debian.org\n"
+"POT-Creation-Date: 2005-10-04 23:10+0900\n"
 "PO-Revision-Date: 2004-03-26 10:44+0100\n"
 "Last-Translator: Claus Hindsgaul <claus_h at image.dk>\n"
 "Language-Team: Danish <dansk at klid.dk>\n"
@@ -126,3 +126,92 @@
 msgstr ""
 "Vælg det bagvedliggende program, CUPS skal bruge. Det forvalgte burde være "
 "passende under de mest almindelige forhold."
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "Specify the port or/and host name that wants to be listened."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid ""
+"Please specify the port or the host name CUPS daemon listens. You can use "
+"following formats."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Port number (631)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Host name   (debian.example.com)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Host:Port   (debian.example.com:631)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "It is possible to combine by delimiting two or more values in space."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid ""
+"The default port 631 is reserved for the Internet Printing Protocol (IPP). "
+"\"localhost:631\" is recommended to the standalone environment by security "
+"reason."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"Do you want to broadcast and/or listen for CUPS printer information on the "
+"network?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"CUPS daemon can broadcast printer information for clients on the network, "
+"and detect printers on the network automatically."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"When this option is accepted, CUPS daemon will broadcast and detect by using "
+"UDP periodically."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "The wrong value is found in the input."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "The error occurred while parsing the port number or the host name."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "Please correct it."
+msgstr ""

Modified: cupsys/trunk/debian/po/de.po
==============================================================================
--- cupsys/trunk/debian/po/de.po	(original)
+++ cupsys/trunk/debian/po/de.po	Tue Oct  4 14:13:54 2005
@@ -13,8 +13,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: cupsys_1.1.20final+rc1-7_de\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-04 23:07+0900\n"
+"Report-Msgid-Bugs-To: pkg-cups-devel at lists.alioth.debian.org\n"
+"POT-Creation-Date: 2005-10-04 23:10+0900\n"
 "PO-Revision-Date: 2004-10-04 10:56+0200\n"
 "Last-Translator: Jens Nachtigall <nachtigall at web.de>\n"
 "Language-Team: German <debian-l10n-german at lists.debian.org>\n"
@@ -133,3 +133,92 @@
 "Bitte wählen Sie das Backend-Programm, das mit CUPS verwendet werden soll. "
 "Die Voreinstellung sollte normalerweise den meisten Umgebungen gerecht "
 "werden."
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "Specify the port or/and host name that wants to be listened."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid ""
+"Please specify the port or the host name CUPS daemon listens. You can use "
+"following formats."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Port number (631)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Host name   (debian.example.com)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Host:Port   (debian.example.com:631)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "It is possible to combine by delimiting two or more values in space."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid ""
+"The default port 631 is reserved for the Internet Printing Protocol (IPP). "
+"\"localhost:631\" is recommended to the standalone environment by security "
+"reason."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"Do you want to broadcast and/or listen for CUPS printer information on the "
+"network?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"CUPS daemon can broadcast printer information for clients on the network, "
+"and detect printers on the network automatically."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"When this option is accepted, CUPS daemon will broadcast and detect by using "
+"UDP periodically."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "The wrong value is found in the input."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "The error occurred while parsing the port number or the host name."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "Please correct it."
+msgstr ""

Modified: cupsys/trunk/debian/po/es.po
==============================================================================
--- cupsys/trunk/debian/po/es.po	(original)
+++ cupsys/trunk/debian/po/es.po	Tue Oct  4 14:13:54 2005
@@ -21,8 +21,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: cupsys 1.1.20final-15\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-04 23:07+0900\n"
+"Report-Msgid-Bugs-To: pkg-cups-devel at lists.alioth.debian.org\n"
+"POT-Creation-Date: 2005-10-04 23:10+0900\n"
 "PO-Revision-Date: 2004-02-28 16:35+0100\n"
 "Last-Translator: Carlos Valdivia Yagüe <valyag at dat.etsit.upm.es>\n"
 "Language-Team: Debian L10n Spanish Team <debian-l10n-spanish at lists.debian."
@@ -134,3 +134,92 @@
 "Please choose the backend program to be used by CUPS. The default choice "
 "should fit the most common environments."
 msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "Specify the port or/and host name that wants to be listened."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid ""
+"Please specify the port or the host name CUPS daemon listens. You can use "
+"following formats."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Port number (631)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Host name   (debian.example.com)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Host:Port   (debian.example.com:631)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "It is possible to combine by delimiting two or more values in space."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid ""
+"The default port 631 is reserved for the Internet Printing Protocol (IPP). "
+"\"localhost:631\" is recommended to the standalone environment by security "
+"reason."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"Do you want to broadcast and/or listen for CUPS printer information on the "
+"network?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"CUPS daemon can broadcast printer information for clients on the network, "
+"and detect printers on the network automatically."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"When this option is accepted, CUPS daemon will broadcast and detect by using "
+"UDP periodically."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "The wrong value is found in the input."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "The error occurred while parsing the port number or the host name."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "Please correct it."
+msgstr ""

Modified: cupsys/trunk/debian/po/fr.po
==============================================================================
--- cupsys/trunk/debian/po/fr.po	(original)
+++ cupsys/trunk/debian/po/fr.po	Tue Oct  4 14:13:54 2005
@@ -16,8 +16,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: cupsys\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-04 23:07+0900\n"
+"Report-Msgid-Bugs-To: pkg-cups-devel at lists.alioth.debian.org\n"
+"POT-Creation-Date: 2005-10-04 23:10+0900\n"
 "PO-Revision-Date: 2004-09-21 11:57+0200\n"
 "Last-Translator: Christian Perrier <bubulle at debian.org>\n"
 "Language-Team: French <debian-l10n-french at lists.debian.org>\n"
@@ -139,3 +139,92 @@
 "Please choose the backend program to be used by CUPS. The default choice "
 "should fit the most common environments."
 msgstr "Le choix par défaut est adapté à la majorité des environnements."
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "Specify the port or/and host name that wants to be listened."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid ""
+"Please specify the port or the host name CUPS daemon listens. You can use "
+"following formats."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Port number (631)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Host name   (debian.example.com)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Host:Port   (debian.example.com:631)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "It is possible to combine by delimiting two or more values in space."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid ""
+"The default port 631 is reserved for the Internet Printing Protocol (IPP). "
+"\"localhost:631\" is recommended to the standalone environment by security "
+"reason."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"Do you want to broadcast and/or listen for CUPS printer information on the "
+"network?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"CUPS daemon can broadcast printer information for clients on the network, "
+"and detect printers on the network automatically."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"When this option is accepted, CUPS daemon will broadcast and detect by using "
+"UDP periodically."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "The wrong value is found in the input."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "The error occurred while parsing the port number or the host name."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "Please correct it."
+msgstr ""

Modified: cupsys/trunk/debian/po/ja.po
==============================================================================
--- cupsys/trunk/debian/po/ja.po	(original)
+++ cupsys/trunk/debian/po/ja.po	Tue Oct  4 14:13:54 2005
@@ -13,10 +13,10 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: cupsys 1.1.19final\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-04 23:07+0900\n"
-"PO-Revision-Date: 2004-03-19 19:21+0900\n"
+"Project-Id-Version: cupsys 1.1.23\n"
+"Report-Msgid-Bugs-To: pkg-cups-devel at lists.alioth.debian.org\n"
+"POT-Creation-Date: 2005-10-04 23:10+0900\n"
+"PO-Revision-Date: 2005-10-04 23:12+0900\n"
 "Last-Translator: Kenshi Muto <kmuto at debian.org>\n"
 "Language-Team: Japanese <debian-japanese at lists.debian.org>\n"
 "MIME-Version: 1.0\n"
@@ -131,3 +131,101 @@
 msgstr ""
 "CUPS ¤ÇÍøÍѤ·¤¿¤¤¥Ð¥Ã¥¯¥¨¥ó¥É¥×¥í¥°¥é¥à¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£¥Ç¥Õ¥©¥ë¥È¤ÎÁªÂò¤Ï"
 "¤¿¤¤¤Æ¤¤¤Î°ìÈÌŪ¤Ê´Ä¶­¤Ë¹ç¤Ã¤Æ¤¤¤Þ¤¹¡£"
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "Specify the port or/and host name that wants to be listened."
+msgstr "´Æ»ë¤·¤¿¤¤¥Ý¡¼¥È¤¢¤ë¤¤¤Ï¥Û¥¹¥È̾¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤¡£"
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid ""
+"Please specify the port or the host name CUPS daemon listens. You can use "
+"following formats."
+msgstr ""
+"CUPS ¥Ç¡¼¥â¥ó¤Ë´Æ»ë¤µ¤»¤¿¤¤¥Ý¡¼¥È¤Þ¤¿¤Ï¥Û¥¹¥È̾¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤¡£¼¡¤Î¤è¤¦¤Ê"
+"½ñ¼°¤òÍøÍѤǤ­¤Þ¤¹¡£"
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Port number (631)"
+msgstr "- ¥Ý¡¼¥ÈÈÖ¹æ (631)"
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Host name   (debian.example.com)"
+msgstr "- ¥Û¥¹¥È̾  (debian.example.com)"
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Host:Port   (debian.example.com:631)"
+msgstr "- ¥Û¥¹¥È:¥Ý¡¼¥È  (debian.example.com:631)"
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "It is possible to combine by delimiting two or more values in space."
+msgstr "¥¹¥Ú¡¼¥¹¤Ç¶èÀڤäÆÊ£¿ô¤ÎÃͤòÁȤ߹ç¤ï¤»¤ë¤³¤È¤â²Äǽ¤Ç¤¹¡£"
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid ""
+"The default port 631 is reserved for the Internet Printing Protocol (IPP). "
+"\"localhost:631\" is recommended to the standalone environment by security "
+"reason."
+msgstr ""
+"¥Ç¥Õ¥©¥ë¥È¥Ý¡¼¥È 631 ¤Ï Internet Printing Protocol (IPP) ¤ËͽÌ󤵤ì¤Æ¤¤¤Þ¤¹¡£"
+"\"localhost:631\" ¤Ï¥»¥­¥å¥ê¥Æ¥£¾å¤ÎÍýͳ¤«¤éñÆÈ¥Þ¥·¥ó¤Î´Ä¶­¤Ç¿ä¾©¤µ¤ì¤Þ¤¹¡£"
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"Do you want to broadcast and/or listen for CUPS printer information on the "
+"network?"
+msgstr ""
+"¥Í¥Ã¥È¥ï¡¼¥¯¾å¤Î CUPS ¥×¥ê¥ó¥¿¾ðÊó¤Î¥Ö¥í¡¼¥É¥­¥ã¥¹¥È¤ª¤è¤Ó´Æ»ë¤ò¹Ô¤¤¤Þ¤¹¤«?"
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"CUPS daemon can broadcast printer information for clients on the network, "
+"and detect printers on the network automatically."
+msgstr ""
+"CUPS ¥Ç¡¼¥â¥ó¤Ï¥Í¥Ã¥È¥ï¡¼¥¯¾å¤Î¥¯¥é¥¤¥¢¥ó¥È¤Ë¥×¥ê¥ó¥¿¾ðÊó¤ò¥Ö¥í¡¼¥É¥­¥ã¥¹¥È¤·"
+"¤¿¤ê¡¢¥Í¥Ã¥È¥ï¡¼¥¯¾å¤Î¥×¥ê¥ó¥¿¤ò¼«Æ°Åª¤Ë¸¡½Ð¤·¤¿¤ê¤Ç¤­¤Þ¤¹¡£"
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"When this option is accepted, CUPS daemon will broadcast and detect by using "
+"UDP periodically."
+msgstr ""
+"¤³¤ÎÁªÂò»è¤Ç¡Ö¤Ï¤¤¡×¤È¤¹¤ë¤È¡¢CUPS ¥Ç¡¼¥â¥ó¤Ï UDP ¤ò»È¤Ã¤ÆÄê´üŪ¤Ë¥Ö¥í¡¼¥É"
+"¥­¥ã¥¹¥È¤ª¤è¤Ó¸¡½Ð¤ò¹Ô¤¤¤Þ¤¹¡£"
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "The wrong value is found in the input."
+msgstr "ÆþÎϤ˸í¤Ã¤¿Ãͤ¬¸«¤Ä¤«¤ê¤Þ¤·¤¿¡£"
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "The error occurred while parsing the port number or the host name."
+msgstr "¥Ý¡¼¥ÈÈÖ¹æ¤Þ¤¿¤Ï¥Û¥¹¥È̾¤Î²ò¼áÃæ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿¡£"
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "Please correct it."
+msgstr "½¤Àµ¤·¤Æ¤¯¤À¤µ¤¤¡£"

Modified: cupsys/trunk/debian/po/nl.po
==============================================================================
--- cupsys/trunk/debian/po/nl.po	(original)
+++ cupsys/trunk/debian/po/nl.po	Tue Oct  4 14:13:54 2005
@@ -14,8 +14,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: cupsys 1.1.20candidate6\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-04 23:07+0900\n"
+"Report-Msgid-Bugs-To: pkg-cups-devel at lists.alioth.debian.org\n"
+"POT-Creation-Date: 2005-10-04 23:10+0900\n"
 "PO-Revision-Date: 2004-03-30 12:28+0100\n"
 "Last-Translator: Tim Dijkstra <tim at famdijkstra.org>\n"
 "Language-Team: Debian Dutch <debian-l10n-dutch at lists.debian.org>\n"
@@ -135,3 +135,92 @@
 msgstr ""
 "Kies een backend-programma dat door CUPS gebruikt moet worden. De standaard "
 "keuze zou voor de meest voorkomende omgevingen moeten voldoen."
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "Specify the port or/and host name that wants to be listened."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid ""
+"Please specify the port or the host name CUPS daemon listens. You can use "
+"following formats."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Port number (631)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Host name   (debian.example.com)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Host:Port   (debian.example.com:631)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "It is possible to combine by delimiting two or more values in space."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid ""
+"The default port 631 is reserved for the Internet Printing Protocol (IPP). "
+"\"localhost:631\" is recommended to the standalone environment by security "
+"reason."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"Do you want to broadcast and/or listen for CUPS printer information on the "
+"network?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"CUPS daemon can broadcast printer information for clients on the network, "
+"and detect printers on the network automatically."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"When this option is accepted, CUPS daemon will broadcast and detect by using "
+"UDP periodically."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "The wrong value is found in the input."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "The error occurred while parsing the port number or the host name."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "Please correct it."
+msgstr ""

Modified: cupsys/trunk/debian/po/pt_BR.po
==============================================================================
--- cupsys/trunk/debian/po/pt_BR.po	(original)
+++ cupsys/trunk/debian/po/pt_BR.po	Tue Oct  4 14:13:54 2005
@@ -14,8 +14,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: cupsys\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-04 23:07+0900\n"
+"Report-Msgid-Bugs-To: pkg-cups-devel at lists.alioth.debian.org\n"
+"POT-Creation-Date: 2005-10-04 23:10+0900\n"
 "PO-Revision-Date: 2004-08-06 22:07-0300\n"
 "Last-Translator: André Luís Lopes <andrelop at debian.org>\n"
 "Language-Team: Debian-BR Project <debian-l10n-portuguese at lists.debian.org>\n"
@@ -134,3 +134,92 @@
 msgstr ""
 "Por favor, selecione o programa backend a ser usado pelo CUPS. A escolha "
 "padrão deve se encaixar na maiorias dos ambientes."
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "Specify the port or/and host name that wants to be listened."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid ""
+"Please specify the port or the host name CUPS daemon listens. You can use "
+"following formats."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Port number (631)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Host name   (debian.example.com)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Host:Port   (debian.example.com:631)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "It is possible to combine by delimiting two or more values in space."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid ""
+"The default port 631 is reserved for the Internet Printing Protocol (IPP). "
+"\"localhost:631\" is recommended to the standalone environment by security "
+"reason."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"Do you want to broadcast and/or listen for CUPS printer information on the "
+"network?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"CUPS daemon can broadcast printer information for clients on the network, "
+"and detect printers on the network automatically."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"When this option is accepted, CUPS daemon will broadcast and detect by using "
+"UDP periodically."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "The wrong value is found in the input."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "The error occurred while parsing the port number or the host name."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "Please correct it."
+msgstr ""

Modified: cupsys/trunk/debian/po/ru.po
==============================================================================
--- cupsys/trunk/debian/po/ru.po	(original)
+++ cupsys/trunk/debian/po/ru.po	Tue Oct  4 14:13:54 2005
@@ -14,8 +14,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-04 23:07+0900\n"
+"Report-Msgid-Bugs-To: pkg-cups-devel at lists.alioth.debian.org\n"
+"POT-Creation-Date: 2005-10-04 23:10+0900\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"
@@ -114,3 +114,92 @@
 "Please choose the backend program to be used by CUPS. The default choice "
 "should fit the most common environments."
 msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "Specify the port or/and host name that wants to be listened."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid ""
+"Please specify the port or the host name CUPS daemon listens. You can use "
+"following formats."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Port number (631)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Host name   (debian.example.com)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Host:Port   (debian.example.com:631)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "It is possible to combine by delimiting two or more values in space."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid ""
+"The default port 631 is reserved for the Internet Printing Protocol (IPP). "
+"\"localhost:631\" is recommended to the standalone environment by security "
+"reason."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"Do you want to broadcast and/or listen for CUPS printer information on the "
+"network?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"CUPS daemon can broadcast printer information for clients on the network, "
+"and detect printers on the network automatically."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"When this option is accepted, CUPS daemon will broadcast and detect by using "
+"UDP periodically."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "The wrong value is found in the input."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "The error occurred while parsing the port number or the host name."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "Please correct it."
+msgstr ""

Modified: cupsys/trunk/debian/po/templates.pot
==============================================================================
--- cupsys/trunk/debian/po/templates.pot	(original)
+++ cupsys/trunk/debian/po/templates.pot	Tue Oct  4 14:13:54 2005
@@ -1,22 +1,14 @@
-#
-#    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 at ADDRESS>, YEAR.
 #
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-04 23:07+0900\n"
+"Report-Msgid-Bugs-To: pkg-cups-devel at lists.alioth.debian.org\n"
+"POT-Creation-Date: 2005-10-04 23:10+0900\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"
@@ -110,3 +102,92 @@
 "Please choose the backend program to be used by CUPS. The default choice "
 "should fit the most common environments."
 msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "Specify the port or/and host name that wants to be listened."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid ""
+"Please specify the port or the host name CUPS daemon listens. You can use "
+"following formats."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Port number (631)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Host name   (debian.example.com)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Host:Port   (debian.example.com:631)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "It is possible to combine by delimiting two or more values in space."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid ""
+"The default port 631 is reserved for the Internet Printing Protocol (IPP). "
+"\"localhost:631\" is recommended to the standalone environment by security "
+"reason."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"Do you want to broadcast and/or listen for CUPS printer information on the "
+"network?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"CUPS daemon can broadcast printer information for clients on the network, "
+"and detect printers on the network automatically."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"When this option is accepted, CUPS daemon will broadcast and detect by using "
+"UDP periodically."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "The wrong value is found in the input."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "The error occurred while parsing the port number or the host name."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "Please correct it."
+msgstr ""

Modified: cupsys/trunk/debian/po/tr.po
==============================================================================
--- cupsys/trunk/debian/po/tr.po	(original)
+++ cupsys/trunk/debian/po/tr.po	Tue Oct  4 14:13:54 2005
@@ -5,8 +5,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: cupsys\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-04 23:07+0900\n"
+"Report-Msgid-Bugs-To: pkg-cups-devel at lists.alioth.debian.org\n"
+"POT-Creation-Date: 2005-10-04 23:10+0900\n"
 "PO-Revision-Date: 2004-04-25 10:34+0300\n"
 "Last-Translator: Gürkan Aslan <gurkan at iaslan.com>\n"
 "Language-Team: Turkish <debian-l10n-turkish at lists.debian.org>\n"
@@ -125,3 +125,92 @@
 msgstr ""
 "Lütfen CUPS tarafından kullanılacak arkayüz programını seçin. Öntanımlı "
 "seçim çoğu ortam için uygundur."
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "Specify the port or/and host name that wants to be listened."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid ""
+"Please specify the port or the host name CUPS daemon listens. You can use "
+"following formats."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Port number (631)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Host name   (debian.example.com)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Host:Port   (debian.example.com:631)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "It is possible to combine by delimiting two or more values in space."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid ""
+"The default port 631 is reserved for the Internet Printing Protocol (IPP). "
+"\"localhost:631\" is recommended to the standalone environment by security "
+"reason."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"Do you want to broadcast and/or listen for CUPS printer information on the "
+"network?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"CUPS daemon can broadcast printer information for clients on the network, "
+"and detect printers on the network automatically."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"When this option is accepted, CUPS daemon will broadcast and detect by using "
+"UDP periodically."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "The wrong value is found in the input."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "The error occurred while parsing the port number or the host name."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "Please correct it."
+msgstr ""

Modified: cupsys/trunk/debian/po/vi.po
==============================================================================
--- cupsys/trunk/debian/po/vi.po	(original)
+++ cupsys/trunk/debian/po/vi.po	Tue Oct  4 14:13:54 2005
@@ -5,8 +5,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: cupsys 1.1.23-10\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-04 23:07+0900\n"
+"Report-Msgid-Bugs-To: pkg-cups-devel at lists.alioth.debian.org\n"
+"POT-Creation-Date: 2005-10-04 23:10+0900\n"
 "PO-Revision-Date: 2005-05-22 12:57+0930\n"
 "Last-Translator: Clytie Siddall <clytie at riverland.net.au>\n"
 "Language-Team: Vietnamese <gnomevi-list at lists.sourceforge.net>\n"
@@ -15,89 +15,200 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0\n"
 
-#.Type: boolean
-#.Description
-#:../cupsys-bsd.templates:4
+#. Type: boolean
+#. Description
+#: ../cupsys-bsd.templates:4
 msgid "Do you want to set up the BSD lpd compatibility server?"
 msgstr "Bạn có muốn thiết lập trình dịch vụ tương thích với lpd BSD không?"
 
-#.Type: boolean
-#.Description
-#:../cupsys-bsd.templates:4
+#. Type: boolean
+#. Description
+#: ../cupsys-bsd.templates:4
 msgid ""
 "This package contains a server that can accept BSD-style print jobs and "
 "submit them to CUPS. It should only be set up if you have other computers "
 "that submit jobs over the network via \"BSD\" or \"LPR\" services, and these "
 "computers cannot be converted to use the IPP protocol that CUPS uses."
-msgstr "Gói tin này chứa một trình cung cấp dịch vụ có thể chấp nhận việc in kiểu BSD và đệ trình chúng vào trình CUPS. Chỉ nên thiết lập nó nếu bạn có máy tính khác đệ trình việc in qua mạng dùng dịch vụ «BSD» hay «LPR», và không thể chuyển đổi máy tính ấy để dùng giao thức IPP mà phần mềm CUPS dùng."
-
-#.Type: boolean
-#.Description
-#:../cupsys.templates:4
+msgstr ""
+"Gói tin này chứa một trình cung cấp dịch vụ có thể chấp nhận việc in kiểu "
+"BSD và đệ trình chúng vào trình CUPS. Chỉ nên thiết lập nó nếu bạn có máy "
+"tính khác đệ trình việc in qua mạng dùng dịch vụ «BSD» hay «LPR», và không "
+"thể chuyển đổi máy tính ấy để dùng giao thức IPP mà phần mềm CUPS dùng."
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:4
 msgid "Do you want CUPS to print unknown jobs as raw jobs?"
 msgstr "Bạn có muốn CUPS in mọi việc in lạ như là việc thô không?"
 
-#.Type: boolean
-#.Description
-#:../cupsys.templates:4
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:4
 msgid ""
 "All print jobs in IPP get a MIME type. Since not all sources of print jobs "
 "can attach an appropriate type, many jobs get submitted as the MIME type "
 "application/octet-stream. Because of this, when CUPS receives a job with "
 "that MIME type, it attempts to guess what the format is. By default, if it "
 "cannot guess the proper type, it rejects the job."
-msgstr "Trong IPP, mọi việc in được một kiểu MIME. Vì không phải tất cả nguồn việc in có thể đính kèm kiểu thích hợp, nhiều việc in được đệ trình với kiểu MIME application/octet-stream (ứng dụng/dòng dạng bộ tám điều). Vì vậy, khi CUPS nhận một việc có kiểu MIME ấy thì nó cố đoán dang thức của nó. Mặc định là nếu nó không đoán được kiểu đúng thì nó sẽ từ chối việc in."
-
-#.Type: boolean
-#.Description
-#:../cupsys.templates:4
+msgstr ""
+"Trong IPP, mọi việc in được một kiểu MIME. Vì không phải tất cả nguồn việc "
+"in có thể đính kèm kiểu thích hợp, nhiều việc in được đệ trình với kiểu MIME "
+"application/octet-stream (ứng dụng/dòng dạng bộ tám điều). Vì vậy, khi CUPS "
+"nhận một việc có kiểu MIME ấy thì nó cố đoán dang thức của nó. Mặc định là "
+"nếu nó không đoán được kiểu đúng thì nó sẽ từ chối việc in."
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:4
 msgid ""
 "It is possible to cause CUPS to treat all unrecognized jobs with this MIME "
 "type as \"raw\" jobs, which causes them to be sent directly to the printer "
 "without processing."
-msgstr "Có thể làm cho CUPS phân loại mọi việc in chưa nhận ra và có kiểu MIME này như là việc in «thô». Như thế thì, CUPS sẽ gởi chúng thẳng vào máy in, không có xử lý chúng."
-
-#.Type: boolean
-#.Description
-#:../cupsys.templates:4
+msgstr ""
+"Có thể làm cho CUPS phân loại mọi việc in chưa nhận ra và có kiểu MIME này "
+"như là việc in «thô». Như thế thì, CUPS sẽ gởi chúng thẳng vào máy in, không "
+"có xử lý chúng."
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:4
 msgid ""
 "If you will be accepting print jobs from Windows computers, you probably "
 "want this option set, as Windows gives all IPP print jobs processed by a "
 "local driver the MIME type application/octet-stream. Samba also submits its "
 "print jobs this way."
-msgstr "Nếu bạn sẽ cần phải nhận việc in từ máy tính chạy hệ điều hành Windows thì rất có thể là bạn muốn lập tùy chọn này, vì phần mềm Windows gán mọi việc in IPP được xử lý bởi trình hỗ trợ thiết bị địa phương, kiểu MIME application/octet-stream. Phần mềm Samba cũng đệ trình các việc in của nó bằng cách ấy."
-
-#.Type: multiselect
-#.Choices
-#:../cupsys.templates:22
+msgstr ""
+"Nếu bạn sẽ cần phải nhận việc in từ máy tính chạy hệ điều hành Windows thì "
+"rất có thể là bạn muốn lập tùy chọn này, vì phần mềm Windows gán mọi việc in "
+"IPP được xử lý bởi trình hỗ trợ thiết bị địa phương, kiểu MIME application/"
+"octet-stream. Phần mềm Samba cũng đệ trình các việc in của nó bằng cách ấy."
+
+#. Type: multiselect
+#. Choices
+#: ../cupsys.templates:22
 msgid "ipp, lpd, parallel, scsi, serial, socket, usb"
 msgstr "ipp, lpd, song song, scsi, nối tiếp, ổ cắm, usb"
 
-#.Type: multiselect
-#.Description
-#:../cupsys.templates:24
+#. Type: multiselect
+#. Description
+#: ../cupsys.templates:24
 msgid "Select the backends you want."
 msgstr "Hãy chọn hậu phương nào bạn muốn."
 
-#.Type: multiselect
-#.Description
-#:../cupsys.templates:24
+#. Type: multiselect
+#. Description
+#: ../cupsys.templates:24
 msgid ""
 "CUPS uses backend programs for communication with printer device or port."
-msgstr "Phần mềm CUPS dùng trình hậu phương (backend) để truyền thông với thiết bị in hay cổng."
+msgstr ""
+"Phần mềm CUPS dùng trình hậu phương (backend) để truyền thông với thiết bị "
+"in hay cổng."
 
-#.Type: multiselect
-#.Description
-#:../cupsys.templates:24
+#. Type: multiselect
+#. Description
+#: ../cupsys.templates:24
 msgid ""
 "Unfortunately, some backend programs cause some trouble. (For example, some "
 "PPC kernel crashes with the parallel backend)"
-msgstr "Rất tiếc là một số chương trình hậu phương có gây ra lỗi. (Lấy thí dụ, hậu phương song song gây ra một số hạt nhân PPC bị hỏng.)"
+msgstr ""
+"Rất tiếc là một số chương trình hậu phương có gây ra lỗi. (Lấy thí dụ, hậu "
+"phương song song gây ra một số hạt nhân PPC bị hỏng.)"
 
-#.Type: multiselect
-#.Description
-#:../cupsys.templates:24
+#. Type: multiselect
+#. Description
+#: ../cupsys.templates:24
 msgid ""
 "Please choose the backend program to be used by CUPS. The default choice "
 "should fit the most common environments."
-msgstr "Hãy chọn chương trình hậu phương mà phần mềm CUPS sẽ dùng. Tùy chọn mặc định nên khớp với các môi trường thường dùng."
+msgstr ""
+"Hãy chọn chương trình hậu phương mà phần mềm CUPS sẽ dùng. Tùy chọn mặc định "
+"nên khớp với các môi trường thường dùng."
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "Specify the port or/and host name that wants to be listened."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid ""
+"Please specify the port or the host name CUPS daemon listens. You can use "
+"following formats."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Port number (631)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Host name   (debian.example.com)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "- Host:Port   (debian.example.com:631)"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid "It is possible to combine by delimiting two or more values in space."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cupsys.templates:36
+msgid ""
+"The default port 631 is reserved for the Internet Printing Protocol (IPP). "
+"\"localhost:631\" is recommended to the standalone environment by security "
+"reason."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"Do you want to broadcast and/or listen for CUPS printer information on the "
+"network?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"CUPS daemon can broadcast printer information for clients on the network, "
+"and detect printers on the network automatically."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cupsys.templates:55
+msgid ""
+"When this option is accepted, CUPS daemon will broadcast and detect by using "
+"UDP periodically."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "The wrong value is found in the input."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "The error occurred while parsing the port number or the host name."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../cupsys.templates:64
+msgid "Please correct it."
+msgstr ""



More information about the Pkg-cups-devel mailing list