Your message dated Fri, 09 Apr 2010 23:03:58 +0000
with message-id <[email protected]>
and subject line Bug#574185: fixed in wget 1.12-2
has caused the Debian Bug report #574185,
regarding wget: diff for NMU version 1.12-1.2
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
574185: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=574185
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: wget
Version: 1.12-1.1
Severity: normal
Tags: patch

Dear Noèl,

I've prepared an NMU for wget (versioned as 1.12-1.2) and
uploaded it to DELAYED/10. Please feel free to tell me if I
should delay it longer.

wget (1.12-1.2) unstable; urgency=low

  * Non-maintainer upload.
  * Revised po/zh_CN.po based on
    http://translationproject.org/PO-files/zh_CN/wget-1.12-pre6.zh_CN.po
    to correct mistranslation of "  eta " etc. closes: Bug#570528
  * Revised po/de.po to removed extraneous doubled quote signs in German
    locale. closes: Bug#571704
  * debian/control updated Standards-Version to 3.8.4, no changes

 -- Anthony Fok <[email protected]>  Wed, 17 Mar 2010 06:19:26 +0800

Best regards,

Anthony Fok
diff -u wget-1.12/config.guess wget-1.12/config.guess
--- wget-1.12/config.guess
+++ wget-1.12/config.guess
@@ -1,10 +1,10 @@
 #! /bin/sh
 # Attempt to guess a canonical system name.
 #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
-#   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+#   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
 #   Free Software Foundation, Inc.
 
-timestamp='2009-06-10'
+timestamp='2009-12-30'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -27,16 +27,16 @@
 # the same distribution terms that you use for the rest of that program.
 
 
-# Originally written by Per Bothner <[email protected]>.
-# Please send patches to <[email protected]>.  Submit a context
-# diff and a properly formatted ChangeLog entry.
+# Originally written by Per Bothner.  Please send patches (context
+# diff format) to <[email protected]> and include a ChangeLog
+# entry.
 #
 # This script attempts to guess a canonical system name similar to
 # config.sub.  If it succeeds, it prints the system name on stdout, and
 # exits with 0.  Otherwise, it exits with 1.
 #
-# The plan is that this can be called by configure scripts if you
-# don't specify an explicit build system type.
+# You can get the latest version of this script from:
+# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
 
 me=`echo "$0" | sed -e 's,.*/,,'`
 
@@ -56,8 +56,9 @@
 GNU config.guess ($timestamp)
 
 Originally written by Per Bothner.
-Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
-2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
+2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free
+Software Foundation, Inc.
 
 This is free software; see the source for copying conditions.  There is NO
 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
@@ -333,6 +334,9 @@
     sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
 	echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
 	exit ;;
+    i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*)
+	echo i386-pc-auroraux${UNAME_RELEASE}
+	exit ;;
     i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)
 	eval $set_cc_for_build
 	SUN_ARCH="i386"
@@ -807,12 +811,12 @@
     i*:PW*:*)
 	echo ${UNAME_MACHINE}-pc-pw32
 	exit ;;
-    *:Interix*:[3456]*)
+    *:Interix*:*)
     	case ${UNAME_MACHINE} in
 	    x86)
 		echo i586-pc-interix${UNAME_RELEASE}
 		exit ;;
-	    EM64T | authenticamd | genuineintel)
+	    authenticamd | genuineintel | EM64T)
 		echo x86_64-unknown-interix${UNAME_RELEASE}
 		exit ;;
 	    IA64)
@@ -854,6 +858,20 @@
     i*86:Minix:*:*)
 	echo ${UNAME_MACHINE}-pc-minix
 	exit ;;
+    alpha:Linux:*:*)
+	case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
+	  EV5)   UNAME_MACHINE=alphaev5 ;;
+	  EV56)  UNAME_MACHINE=alphaev56 ;;
+	  PCA56) UNAME_MACHINE=alphapca56 ;;
+	  PCA57) UNAME_MACHINE=alphapca56 ;;
+	  EV6)   UNAME_MACHINE=alphaev6 ;;
+	  EV67)  UNAME_MACHINE=alphaev67 ;;
+	  EV68*) UNAME_MACHINE=alphaev68 ;;
+        esac
+	objdump --private-headers /bin/sh | grep -q ld.so.1
+	if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi
+	echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC}
+	exit ;;
     arm*:Linux:*:*)
 	eval $set_cc_for_build
 	if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \
@@ -876,6 +894,17 @@
     frv:Linux:*:*)
     	echo frv-unknown-linux-gnu
 	exit ;;
+    i*86:Linux:*:*)
+	LIBC=gnu
+	eval $set_cc_for_build
+	sed 's/^	//' << EOF >$dummy.c
+	#ifdef __dietlibc__
+	LIBC=dietlibc
+	#endif
+EOF
+	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'`
+	echo "${UNAME_MACHINE}-pc-linux-${LIBC}"
+	exit ;;
     ia64:Linux:*:*)
 	echo ${UNAME_MACHINE}-unknown-linux-gnu
 	exit ;;
@@ -901,39 +930,18 @@
 	#endif
 	#endif
 EOF
-	eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '
-	    /^CPU/{
-		s: ::g
-		p
-	    }'`"
+	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'`
 	test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
 	;;
     or32:Linux:*:*)
 	echo or32-unknown-linux-gnu
 	exit ;;
-    ppc:Linux:*:*)
-	echo powerpc-unknown-linux-gnu
-	exit ;;
-    ppc64:Linux:*:*)
-	echo powerpc64-unknown-linux-gnu
-	exit ;;
-    alpha:Linux:*:*)
-	case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
-	  EV5)   UNAME_MACHINE=alphaev5 ;;
-	  EV56)  UNAME_MACHINE=alphaev56 ;;
-	  PCA56) UNAME_MACHINE=alphapca56 ;;
-	  PCA57) UNAME_MACHINE=alphapca56 ;;
-	  EV6)   UNAME_MACHINE=alphaev6 ;;
-	  EV67)  UNAME_MACHINE=alphaev67 ;;
-	  EV68*) UNAME_MACHINE=alphaev68 ;;
-        esac
-	objdump --private-headers /bin/sh | grep -q ld.so.1
-	if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi
-	echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC}
-	exit ;;
     padre:Linux:*:*)
 	echo sparc-unknown-linux-gnu
 	exit ;;
+    parisc64:Linux:*:* | hppa64:Linux:*:*)
+	echo hppa64-unknown-linux-gnu
+	exit ;;
     parisc:Linux:*:* | hppa:Linux:*:*)
 	# Look for CPU level
 	case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in
@@ -942,8 +950,11 @@
 	  *)    echo hppa-unknown-linux-gnu ;;
 	esac
 	exit ;;
-    parisc64:Linux:*:* | hppa64:Linux:*:*)
-	echo hppa64-unknown-linux-gnu
+    ppc64:Linux:*:*)
+	echo powerpc64-unknown-linux-gnu
+	exit ;;
+    ppc:Linux:*:*)
+	echo powerpc-unknown-linux-gnu
 	exit ;;
     s390:Linux:*:* | s390x:Linux:*:*)
 	echo ${UNAME_MACHINE}-ibm-linux
@@ -966,58 +977,6 @@
     xtensa*:Linux:*:*)
     	echo ${UNAME_MACHINE}-unknown-linux-gnu
 	exit ;;
-    i*86:Linux:*:*)
-	# The BFD linker knows what the default object file format is, so
-	# first see if it will tell us. cd to the root directory to prevent
-	# problems with other programs or directories called `ld' in the path.
-	# Set LC_ALL=C to ensure ld outputs messages in English.
-	ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \
-			 | sed -ne '/supported targets:/!d
-				    s/[ 	][ 	]*/ /g
-				    s/.*supported targets: *//
-				    s/ .*//
-				    p'`
-        case "$ld_supported_targets" in
-	  elf32-i386)
-		TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu"
-		;;
-	esac
-	# Determine whether the default compiler is a.out or elf
-	eval $set_cc_for_build
-	sed 's/^	//' << EOF >$dummy.c
-	#include <features.h>
-	#ifdef __ELF__
-	# ifdef __GLIBC__
-	#  if __GLIBC__ >= 2
-	LIBC=gnu
-	#  else
-	LIBC=gnulibc1
-	#  endif
-	# else
-	LIBC=gnulibc1
-	# endif
-	#else
-	#if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC)
-	LIBC=gnu
-	#else
-	LIBC=gnuaout
-	#endif
-	#endif
-	#ifdef __dietlibc__
-	LIBC=dietlibc
-	#endif
-EOF
-	eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '
-	    /^LIBC/{
-		s: ::g
-		p
-	    }'`"
-	test x"${LIBC}" != x && {
-		echo "${UNAME_MACHINE}-pc-linux-${LIBC}"
-		exit
-	}
-	test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; }
-	;;
     i*86:DYNIX/ptx:4*:*)
 	# ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.
 	# earlier versions are messed up and put the nodename in both
@@ -1247,6 +1206,16 @@
     *:Darwin:*:*)
 	UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown
 	case $UNAME_PROCESSOR in
+	    i386)
+		eval $set_cc_for_build
+		if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then
+		  if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \
+		      (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \
+		      grep IS_64BIT_ARCH >/dev/null
+		  then
+		      UNAME_PROCESSOR="x86_64"
+		  fi
+		fi ;;
 	    unknown) UNAME_PROCESSOR=powerpc ;;
 	esac
 	echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}
diff -u wget-1.12/config.sub wget-1.12/config.sub
--- wget-1.12/config.sub
+++ wget-1.12/config.sub
@@ -1,10 +1,10 @@
 #! /bin/sh
 # Configuration validation subroutine script.
 #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
-#   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+#   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
 #   Free Software Foundation, Inc.
 
-timestamp='2009-06-11'
+timestamp='2010-01-22'
 
 # This file is (in principle) common to ALL GNU software.
 # The presence of a machine in this file suggests that SOME GNU software
@@ -32,13 +32,16 @@
 
 
 # Please send patches to <[email protected]>.  Submit a context
-# diff and a properly formatted ChangeLog entry.
+# diff and a properly formatted GNU ChangeLog entry.
 #
 # Configuration subroutine to validate and canonicalize a configuration type.
 # Supply the specified configuration type as an argument.
 # If it is invalid, we print an error message on stderr and exit with code 1.
 # Otherwise, we print the canonical config type on stdout and succeed.
 
+# You can get the latest version of this script from:
+# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD
+
 # This file is supposed to be the same for all GNU packages
 # and recognize all the CPU types, system types and aliases
 # that are meaningful with *any* GNU software.
@@ -72,8 +75,9 @@
 version="\
 GNU config.sub ($timestamp)
 
-Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
-2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
+2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free
+Software Foundation, Inc.
 
 This is free software; see the source for copying conditions.  There is NO
 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
@@ -149,7 +153,7 @@
 	-convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
 	-c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
 	-harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
-	-apple | -axis | -knuth | -cray)
+	-apple | -axis | -knuth | -cray | -microblaze)
 		os=
 		basic_machine=$1
 		;;
@@ -284,6 +288,7 @@
 	| pdp10 | pdp11 | pj | pjl \
 	| powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \
 	| pyramid \
+	| rx \
 	| score \
 	| sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
 	| sh64 | sh64le \
@@ -291,13 +296,14 @@
 	| sparcv8 | sparcv9 | sparcv9b | sparcv9v \
 	| spu | strongarm \
 	| tahoe | thumb | tic4x | tic80 | tron \
+	| ubicom32 \
 	| v850 | v850e \
 	| we32k \
 	| x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \
 	| z8k | z80)
 		basic_machine=$basic_machine-unknown
 		;;
-	m6811 | m68hc11 | m6812 | m68hc12)
+	m6811 | m68hc11 | m6812 | m68hc12 | picochip)
 		# Motorola 68HC11/12.
 		basic_machine=$basic_machine-unknown
 		os=-none
@@ -340,7 +346,7 @@
 	| lm32-* \
 	| m32c-* | m32r-* | m32rle-* \
 	| m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
-	| m88110-* | m88k-* | maxq-* | mcore-* | metag-* \
+	| m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \
 	| mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \
 	| mips16-* \
 	| mips64-* | mips64el-* \
@@ -368,15 +374,17 @@
 	| pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
 	| powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \
 	| pyramid-* \
-	| romp-* | rs6000-* \
+	| romp-* | rs6000-* | rx-* \
 	| sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \
 	| shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
 	| sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \
 	| sparclite-* \
 	| sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \
 	| tahoe-* | thumb-* \
-	| tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* | tile-* \
+	| tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
+	| tile-* | tilegx-* \
 	| tron-* \
+	| ubicom32-* \
 	| v850-* | v850e-* | vax-* \
 	| we32k-* \
 	| x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \
@@ -726,6 +734,9 @@
 		basic_machine=ns32k-utek
 		os=-sysv
 		;;
+        microblaze)
+		basic_machine=microblaze-xilinx
+		;;
 	mingw32)
 		basic_machine=i386-pc
 		os=-mingw32
@@ -1076,6 +1087,11 @@
 		basic_machine=tic6x-unknown
 		os=-coff
 		;;
+        # This must be matched before tile*.
+        tilegx*)
+		basic_machine=tilegx-unknown
+		os=-linux-gnu
+		;;
 	tile*)
 		basic_machine=tile-unknown
 		os=-linux-gnu
@@ -1247,6 +1263,9 @@
         # First match some system type aliases
         # that might get confused with valid system types.
 	# -solaris* is a basic system type, with this one exception.
+        -auroraux)
+	        os=-auroraux
+		;;
 	-solaris1 | -solaris1.*)
 		os=`echo $os | sed -e 's|solaris1|sunos4|'`
 		;;
@@ -1268,8 +1287,8 @@
 	# -sysv* is not here because it comes later, after sysvr4.
 	-gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
 	      | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\
-	      | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \
-	      | -kopensolaris* \
+	      | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \
+	      | -sym* | -kopensolaris* \
 	      | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
 	      | -aos* | -aros* \
 	      | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
@@ -1290,7 +1309,7 @@
 	      | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
 	      | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
 	      | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
-	      | -skyos* | -haiku* | -rdos* | -toppers* | -drops*)
+	      | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*)
 	# Remember, each alternative MUST END IN *, to match a version number.
 		;;
 	-qnx*)
@@ -1423,6 +1442,8 @@
 	-dicos*)
 		os=-dicos
 		;;
+        -nacl*)
+	        ;;
 	-none)
 		;;
 	*)
diff -u wget-1.12/debian/rules wget-1.12/debian/rules
--- wget-1.12/debian/rules
+++ wget-1.12/debian/rules
@@ -48,7 +48,7 @@
 	# Add here commands to clean up after the build process.
 	[ ! -f Makefile ] || $(MAKE) distclean
 	#-$(MAKE) distclean
-	rm -f doc/wget.inf* po/de.gmo po/fr.gmo po/wget.pot
+	rm -f doc/wget.inf* po/de.gmo po/fr.gmo po/zh_CN.gmo po/wget.pot
 	-test -r /usr/share/misc/config.sub && \
 	  cp -f /usr/share/misc/config.sub config.sub
 	-test -r /usr/share/misc/config.guess && \
diff -u wget-1.12/debian/control wget-1.12/debian/control
--- wget-1.12/debian/control
+++ wget-1.12/debian/control
@@ -3,7 +3,7 @@
 Priority: important
 Maintainer: Noèl Köthe <[email protected]>
 Build-Depends: debhelper (>> 5.0.0), gettext, texinfo, libssl-dev (>= 0.9.8), dpatch, info2man
-Standards-Version: 3.8.3
+Standards-Version: 3.8.4
 Homepage: http://www.gnu.org/software/wget/
 
 Package: wget
diff -u wget-1.12/debian/changelog wget-1.12/debian/changelog
--- wget-1.12/debian/changelog
+++ wget-1.12/debian/changelog
@@ -1,3 +1,15 @@
+wget (1.12-1.2) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Revised po/zh_CN.po based on
+    http://translationproject.org/PO-files/zh_CN/wget-1.12-pre6.zh_CN.po
+    to correct mistranslation of "  eta " etc. closes: Bug#570528
+  * Revised po/de.po to removed extraneous doubled quote signs in German
+    locale. closes: Bug#571704
+  * debian/control updated Standards-Version to 3.8.4, no changes
+
+ -- Anthony Fok <[email protected]>  Wed, 17 Mar 2010 06:19:26 +0800
+
 wget (1.12-1.1) unstable; urgency=low
 
   * Non-maintainer upload.
diff -u wget-1.12/debian/patches/00list wget-1.12/debian/patches/00list
--- wget-1.12/debian/patches/00list
+++ wget-1.12/debian/patches/00list
@@ -5,0 +6,2 @@
+wget-de.po-remove-double-quote-signs
+wget-zh_CN.po-translation-correction
diff -u wget-1.12/debian/patches/wget-doc-remove-usr-local-in-sample.wgetrc wget-1.12/debian/patches/wget-doc-remove-usr-local-in-sample.wgetrc
--- wget-1.12/debian/patches/wget-doc-remove-usr-local-in-sample.wgetrc
+++ wget-1.12/debian/patches/wget-doc-remove-usr-local-in-sample.wgetrc
@@ -2,7 +2,7 @@
 ## wget-doc-wgetrc-path-in-sample.wgetrc by Noèl Köthe <noel debian.org>
 ##
 ## DP: corrects the wgetrc path from /usr/local/etc/ to /etc/wgetrc in the
-##     sample wgetrc
+## DP: sample wgetrc
 
 if [ $# -lt 1 ]; then
     echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
diff -u wget-1.12/debian/patches/wget-doc-remove-usr-local-in-wget.texi wget-1.12/debian/patches/wget-doc-remove-usr-local-in-wget.texi
--- wget-1.12/debian/patches/wget-doc-remove-usr-local-in-wget.texi
+++ wget-1.12/debian/patches/wget-doc-remove-usr-local-in-wget.texi
@@ -2,7 +2,7 @@
 ## wget-doc-wgetrc-path-in-sample.wgetrc by Noèl Köthe <noel debian.org>
 ##
 ## DP: corrects the wgetrc path from /usr/local/etc/ to /etc/wgetrc in the
-##     sample wgetrc
+## DP: sample wgetrc
 
 if [ $# -lt 1 ]; then
     echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
only in patch2:
unchanged:
--- wget-1.12.orig/debian/patches/wget-zh_CN.po-translation-correction
+++ wget-1.12/debian/patches/wget-zh_CN.po-translation-correction
@@ -0,0 +1,137 @@
+#!/bin/sh -e
+## wget-zh_CN.po-translation-correction.dpatch by Anthony Fok <[email protected]>
+##
+## DP: Correct mistranslation of "  eta " etc.
+
+if [ $# -lt 1 ]; then
+    echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
+    exit 1
+fi
+
+[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
+patch_opts="${patch_opts:--f --no-backup-if-mismatch} ${2:+-d $2}"
+
+case "$1" in
+       -patch) patch $patch_opts -p1 < $0;;
+       -unpatch) patch $patch_opts -p1 -R < $0;;
+        *)
+                echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
+                exit 1;;
+esac
+
+exit 0
+
+...@dpatch@
+diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' wget-1.12~/po/zh_CN.po wget-1.12/po/zh_CN.po
+--- wget-1.12~/po/zh_CN.po	2009-09-23 00:40:40.000000000 +0800
++++ wget-1.12/po/zh_CN.po	2010-03-04 08:02:40.148827703 +0800
+@@ -4,17 +4,17 @@
+ # Rongjun Mu <[email protected]>, 2003.
+ # Liu Songhe <[email protected]>, 2003.
+ # Zong Yaotang <[email protected]>, 2003.
+-# Ji ZhengYu <[email protected]>, 2009.
++# Ji ZhengYu <[email protected]>, 2009, 2010.
++# Anthony Fok <[email protected]>, 2010.
+ #
+ msgid ""
+ msgstr ""
+-"Project-Id-Version: wget 1.12-pre6\n"
++"Project-Id-Version: wget 1.12\n"
+ "Report-Msgid-Bugs-To: [email protected]\n"
+ "POT-Creation-Date: 2009-09-22 09:40-0700\n"
+-"PO-Revision-Date: 2009-09-18 14:54中国标准时间\n"
+-"Last-Translator: Ji ZhengYu <[email protected]>\n"
+-"Language-Team: Chinese (simplified) <translation-team-zh...@lists."
+-"sourceforge.net>\n"
++"PO-Revision-Date: 2010-03-04 08:02+0800\n"
++"Last-Translator: Anthony Fok <[email protected]>\n"
++"Language-Team: Chinese (simplified) <[email protected]>\n"
+ "MIME-Version: 1.0\n"
+ "Content-Type: text/plain; charset=UTF-8\n"
+ "Content-Transfer-Encoding: 8bit\n"
+@@ -966,9 +966,8 @@
+ msgstr "不支持从 %s 转换为 %s\n"
+ 
+ #: src/iri.c:182
+-#, fuzzy
+ msgid "Incomplete or invalid multibyte sequence encountered\n"
+-msgstr "出现未完成或无效的多字节序列\n"
++msgstr "出现不完整或无效的多字节序列\n"
+ 
+ #: src/iri.c:207
+ #, c-format
+@@ -1400,7 +1399,6 @@
+ "                               允许 Content-Disposition 头部(尚在实验)。\n"
+ 
+ #: src/main.c:576
+-#, fuzzy
+ msgid ""
+ "       --auth-no-challenge     send Basic HTTP authentication information\n"
+ "                               without first waiting for the server's\n"
+@@ -1408,7 +1406,6 @@
+ msgstr ""
+ "       --auth-no-challenge     发送不含服务器询问的首次等待\n"
+ "                               的基本 HTTP 验证信息。\n"
+-"                               \n"
+ 
+ #: src/main.c:583
+ msgid "HTTPS (SSL/TLS) options:\n"
+@@ -1700,7 +1697,7 @@
+ #. (cirle-c) should be used in preference to "(C)".
+ #: src/main.c:845
+ msgid "Copyright (C) 2009 Free Software Foundation, Inc.\n"
+-msgstr "版权所有 (C) 2009 Free Software Foundation, Inc.\n"
++msgstr "版权所有 © 2009 Free Software Foundation, Inc.\n"
+ 
+ #: src/main.c:847
+ msgid ""
+@@ -1709,7 +1706,7 @@
+ "This is free software: you are free to change and redistribute it.\n"
+ "There is NO WARRANTY, to the extent permitted by law.\n"
+ msgstr ""
+-"GPLv3+ 版本: GNU GPL 第3版或更高版本\n"
++"授权 GPLv3+: GNU GPL 第三版或更高版本\n"
+ "<http://www.gnu.org/licenses/gpl.html>。\n"
+ "这是自由软件:您可以自由地更改并重新分发它。\n"
+ "在法律所允许的范围内,没有任何担保。\n"
+@@ -1722,7 +1719,7 @@
+ "Originally written by Hrvoje Niksic <[email protected]>.\n"
+ msgstr ""
+ "\n"
+-"最初由 Hrvoje Niksic <[email protected]> 编写。\n"
++"最初由 Hrvoje Nikšić <[email protected]> 编写。\n"
+ 
+ #: src/main.c:856
+ msgid "Currently maintained by Micah Cowan <[email protected]>.\n"
+@@ -1943,11 +1940,11 @@
+ #: src/progress.c:805
+ #, c-format
+ msgid "  eta %s"
+-msgstr " eta(英国中部时间) %s"
++msgstr " 估时 %s"
+ 
+ #: src/progress.c:1050
+ msgid "   in "
+-msgstr "   in "
++msgstr " 花时 "
+ 
+ #: src/ptimer.c:162
+ #, c-format
+@@ -2029,14 +2026,13 @@
+ msgstr "没有错误"
+ 
+ #: src/url.c:635
+-#, fuzzy, c-format
++#, c-format
+ msgid "Unsupported scheme %s"
+-msgstr "不支持的地址列表 %s"
++msgstr "不支持的协议类型 %s"
+ 
+ #: src/url.c:637
+-#, fuzzy
+ msgid "Scheme missing"
+-msgstr "缺少地址列表"
++msgstr "地址缺少协议类型"
+ 
+ #: src/url.c:639
+ msgid "Invalid host name"
only in patch2:
unchanged:
--- wget-1.12.orig/debian/patches/wget-de.po-remove-double-quote-signs
+++ wget-1.12/debian/patches/wget-de.po-remove-double-quote-signs
@@ -0,0 +1,603 @@
+#!/bin/sh -e
+## wget-de.po-remove-double-quote-signs.dpatch by Anthony Fok <[email protected]>
+##
+## DP: Removed extraneous doubled quote signs, and merged 2009-12-18 revisions
+## DP: from http://translationproject.org/PO-files/de/wget-1.12-pre6.de.po
+
+if [ $# -lt 1 ]; then
+    echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
+    exit 1
+fi
+
+[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
+patch_opts="${patch_opts:--f --no-backup-if-mismatch} ${2:+-d $2}"
+
+case "$1" in
+       -patch) patch $patch_opts -p1 < $0;;
+       -unpatch) patch $patch_opts -p1 -R < $0;;
+        *)
+                echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
+                exit 1;;
+esac
+
+exit 0
+
+...@dpatch@
+diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' wget-1.12~/po/de.po wget-1.12/po/de.po
+--- wget-1.12~/po/de.po	2009-09-23 00:40:36.000000000 +0800
++++ wget-1.12/po/de.po	2010-03-17 06:00:29.136757384 +0800
+@@ -10,7 +10,7 @@
+ "Project-Id-Version: wget 1.12-pre6\n"
+ "Report-Msgid-Bugs-To: [email protected]\n"
+ "POT-Creation-Date: 2009-09-22 09:40-0700\n"
+-"PO-Revision-Date: 2009-09-09 21:59+0200\n"
++"PO-Revision-Date: 2010-03-17 06:03+0800\n"
+ "Last-Translator: Jochen Hein <[email protected]>\n"
+ "Language-Team: German <[email protected]>\n"
+ "MIME-Version: 1.0\n"
+@@ -113,7 +113,7 @@
+ #, c-format
+ msgid "%s: unable to resolve bind address %s; disabling bind.\n"
+ msgstr ""
+-"%s: kann die bind-Adresse »%s« nicht auflösen; bind wird nicht verwendet.\n"
++"%s: kann die bind-Adresse %s nicht auflösen; bind wird nicht verwendet.\n"
+ 
+ #: src/connect.c:291
+ #, c-format
+@@ -138,7 +138,7 @@
+ #: src/connect.c:394 src/http.c:1674
+ #, c-format
+ msgid "%s: unable to resolve host address %s\n"
+-msgstr "%s: kann die Host-Adresse »%s« nicht auflösen\n"
++msgstr "%s: kann die Host-Adresse %s nicht auflösen\n"
+ 
+ #: src/convert.c:185
+ #, c-format
+@@ -148,7 +148,7 @@
+ #: src/convert.c:213
+ #, c-format
+ msgid "Converting %s... "
+-msgstr "Umwandlung von »%s«... "
++msgstr "Umwandlung von %s... "
+ 
+ #: src/convert.c:226
+ msgid "nothing to do.\n"
+@@ -157,43 +157,43 @@
+ #: src/convert.c:234 src/convert.c:258
+ #, c-format
+ msgid "Cannot convert links in %s: %s\n"
+-msgstr "Verweise nicht umwandelbar in »%s«: %s\n"
++msgstr "Verweise nicht umwandelbar in %s: %s\n"
+ 
+ #: src/convert.c:249
+ #, c-format
+ msgid "Unable to delete %s: %s\n"
+-msgstr "Es ist nicht möglich, »%s« zu löschen: %s\n"
++msgstr "Es ist nicht möglich, %s zu löschen: %s\n"
+ 
+ #: src/convert.c:464
+ #, c-format
+ msgid "Cannot back up %s as %s: %s\n"
+-msgstr "Anlegen eines Backups von »%s« als »%s« nicht möglich: %s\n"
++msgstr "Anlegen eines Backups von %s als %s nicht möglich: %s\n"
+ 
+ #: src/cookies.c:443
+ #, c-format
+ msgid "Syntax error in Set-Cookie: %s at position %d.\n"
+-msgstr "Syntaxfehler bei Set-Cookie, »%s« an der Stelle %d.\n"
++msgstr "Syntaxfehler bei Set-Cookie, %s an der Stelle %d.\n"
+ 
+ # XXX
+ #: src/cookies.c:686
+ #, c-format
+ msgid "Cookie coming from %s attempted to set domain to %s\n"
+-msgstr "Cookie von »%s« versuchte die Domain auf »%s« zu ändern\n"
++msgstr "Cookie von %s versuchte die Domain auf %s zu ändern\n"
+ 
+ #: src/cookies.c:1134 src/cookies.c:1252
+ #, c-format
+ msgid "Cannot open cookies file %s: %s\n"
+-msgstr "Cookie-Datei »%s« kann nicht geöffnet werden: %s\n"
++msgstr "Cookie-Datei %s kann nicht geöffnet werden: %s\n"
+ 
+ #: src/cookies.c:1289
+ #, c-format
+ msgid "Error writing to %s: %s\n"
+-msgstr "Fehler beim Schreiben nach »%s«: %s\n"
++msgstr "Fehler beim Schreiben nach %s: %s\n"
+ 
+ #: src/cookies.c:1292
+ #, c-format
+ msgid "Error closing %s: %s\n"
+-msgstr "Fehler beim Schließen von »%s«: %s\n"
++msgstr "Fehler beim Schließen von %s: %s\n"
+ 
+ #: src/ftp-ls.c:1065
+ msgid "Unsupported listing type, trying Unix listing parser.\n"
+@@ -329,7 +329,7 @@
+ "No such directory %s.\n"
+ "\n"
+ msgstr ""
+-"Das Verzeichnis »%s« gibt es nicht.\n"
++"Das Verzeichnis %s gibt es nicht.\n"
+ "\n"
+ 
+ #: src/ftp.c:734
+@@ -347,7 +347,7 @@
+ #: src/ftp.c:816
+ #, c-format
+ msgid "couldn't connect to %s port %d: %s\n"
+-msgstr "Konnte keine Verbindung zu »%s«, Port »%d« herstellen: %s\n"
++msgstr "Konnte keine Verbindung zu %s, Port »%d« herstellen: %s\n"
+ 
+ #: src/ftp.c:864
+ #, c-format
+@@ -370,13 +370,13 @@
+ #: src/ftp.c:957
+ #, c-format
+ msgid "File %s exists.\n"
+-msgstr "Die Datei »%s« existiert.\n"
++msgstr "Die Datei %s existiert.\n"
+ 
+ #: src/ftp.c:963
+ #, c-format
+ msgid "No such file %s.\n"
+ msgstr ""
+-"Die Datei »%s« gibt es nicht.\n"
++"Die Datei %s gibt es nicht.\n"
+ "\n"
+ 
+ #: src/ftp.c:1009
+@@ -385,7 +385,7 @@
+ "No such file %s.\n"
+ "\n"
+ msgstr ""
+-"Die Datei »%s« gibt es nicht.\n"
++"Die Datei %s gibt es nicht.\n"
+ "\n"
+ 
+ #: src/ftp.c:1056
+@@ -394,14 +394,14 @@
+ "No such file or directory %s.\n"
+ "\n"
+ msgstr ""
+-"Die Datei oder das Verzeichnis »%s« gibt es nicht.\n"
++"Die Datei oder das Verzeichnis %s gibt es nicht.\n"
+ "\n"
+ 
+ # XXX
+ #: src/ftp.c:1187 src/http.c:2344
+ #, c-format
+ msgid "%s has sprung into existence.\n"
+-msgstr "»%s« ist plötzlich entstanden.\n"
++msgstr "%s ist plötzlich entstanden.\n"
+ 
+ #: src/ftp.c:1239
+ #, c-format
+@@ -424,7 +424,7 @@
+ #: src/ftp.c:1381
+ #, c-format
+ msgid "File %s already there; not retrieving.\n"
+-msgstr "Die Datei »%s« ist schon vorhanden; kein erneuter Download.\n"
++msgstr "Die Datei %s ist schon vorhanden; kein erneuter Download.\n"
+ 
+ #: src/ftp.c:1447 src/http.c:2529
+ #, c-format
+@@ -447,23 +447,23 @@
+ "%s (%s) - %s saved [%s]\n"
+ "\n"
+ msgstr ""
+-"%s (%s) - »%s« gespeichert [%s]\n"
++"%s (%s) - %s gespeichert [%s]\n"
+ "\n"
+ 
+ #: src/ftp.c:1568 src/main.c:1301 src/recur.c:438 src/retr.c:990
+ #, c-format
+ msgid "Removing %s.\n"
+-msgstr "Entferne »%s«.\n"
++msgstr "Entferne %s.\n"
+ 
+ #: src/ftp.c:1610
+ #, c-format
+ msgid "Using %s as listing tmp file.\n"
+-msgstr "»%s« als temporäre Auflistungsdatei benutzen.\n"
++msgstr "%s als temporäre Auflistungsdatei benutzen.\n"
+ 
+ #: src/ftp.c:1627
+ #, c-format
+ msgid "Removed %s.\n"
+-msgstr "»%s« gelöscht.\n"
++msgstr "%s gelöscht.\n"
+ 
+ #: src/ftp.c:1664
+ #, c-format
+@@ -474,7 +474,7 @@
+ #, c-format
+ msgid "Remote file no newer than local file %s -- not retrieving.\n"
+ msgstr ""
+-"Datei auf dem Server nicht neuer als die lokale Datei »%s« -- kein Download.\n"
++"Datei auf dem Server nicht neuer als die lokale Datei %s -- kein Download.\n"
+ 
+ #: src/ftp.c:1741
+ #, c-format
+@@ -482,7 +482,7 @@
+ "Remote file is newer than local file %s -- retrieving.\n"
+ "\n"
+ msgstr ""
+-"Datei auf dem Server neuer als die lokale Datei »%s«, -- Download erfolgt.\n"
++"Datei auf dem Server neuer als die lokale Datei %s, -- Download erfolgt.\n"
+ 
+ #: src/ftp.c:1748
+ #, c-format
+@@ -513,13 +513,13 @@
+ #, c-format
+ msgid "Symlinks not supported, skipping symlink %s.\n"
+ msgstr ""
+-"Symbolischer Verweis wird nicht unterstützt; symbolischer Verweis »%s« "
++"Symbolischer Verweis wird nicht unterstützt; symbolischer Verweis %s "
+ "übersprungen.\n"
+ 
+ #: src/ftp.c:1814
+ #, c-format
+ msgid "Skipping directory %s.\n"
+-msgstr "Verzeichnis »%s« übersprungen.\n"
++msgstr "Verzeichnis %s übersprungen.\n"
+ 
+ #: src/ftp.c:1823
+ #, c-format
+@@ -542,33 +542,33 @@
+ #, c-format
+ msgid "Not descending to %s as it is excluded/not-included.\n"
+ msgstr ""
+-"Nicht zu »%s« hinabsteigen, da es ausgeschlossen bzw. nicht eingeschlossen "
++"Nicht zu %s hinabsteigen, da es ausgeschlossen bzw. nicht eingeschlossen "
+ "ist.\n"
+ 
+ #: src/ftp.c:1998 src/ftp.c:2012
+ #, c-format
+ msgid "Rejecting %s.\n"
+-msgstr "»%s« zurückgewiesen.\n"
++msgstr "%s zurückgewiesen.\n"
+ 
+ #: src/ftp.c:2035
+ #, c-format
+ msgid "Error matching %s against %s: %s\n"
+-msgstr "Fehler beim Vergleichen von »%s« mit »%s«: %s.\n"
++msgstr "Fehler beim Vergleichen von %s mit %s: %s.\n"
+ 
+ #: src/ftp.c:2091
+ #, c-format
+ msgid "No matches on pattern %s.\n"
+-msgstr "Keine Treffer bei dem Muster »%s«.\n"
++msgstr "Keine Treffer bei dem Muster %s.\n"
+ 
+ #: src/ftp.c:2162
+ #, c-format
+ msgid "Wrote HTML-ized index to %s [%s].\n"
+-msgstr "HTML-artigen Index nach »%s« [%s] geschrieben.\n"
++msgstr "HTML-artigen Index nach %s [%s] geschrieben.\n"
+ 
+ #: src/ftp.c:2167
+ #, c-format
+ msgid "Wrote HTML-ized index to %s.\n"
+-msgstr "HTML-artiger Index nach »%s« geschrieben.\n"
++msgstr "HTML-artiger Index nach %s geschrieben.\n"
+ 
+ #: src/gnutls.c:220 src/openssl.c:495
+ msgid "ERROR"
+@@ -592,7 +592,7 @@
+ #, c-format
+ msgid "%s: The certificate of %s hasn't got a known issuer.\n"
+ msgstr ""
+-"%s: Das Zertifikat von »%s« wurde von einem unbekannten Austeller "
++"%s: Das Zertifikat von %s wurde von einem unbekannten Austeller "
+ "herausgegeben.\n"
+ 
+ #: src/gnutls.c:246
+@@ -625,7 +625,7 @@
+ #: src/gnutls.c:294
+ #, c-format
+ msgid "The certificate's owner does not match hostname %s\n"
+-msgstr "Der Zertifikat-Eigentümer paßt nicht zum Hostname »%s«.\n"
++msgstr "Der Zertifikat-Eigentümer paßt nicht zum Hostname %s.\n"
+ 
+ #: src/host.c:358
+ msgid "Unknown host"
+@@ -642,7 +642,7 @@
+ #: src/host.c:737
+ #, c-format
+ msgid "Resolving %s... "
+-msgstr "Auflösen des Hostnamen »%s«.... "
++msgstr "Auflösen des Hostnamen %s... "
+ 
+ #: src/host.c:789
+ msgid "failed: No IPv4/IPv6 addresses for host.\n"
+@@ -655,12 +655,12 @@
+ #: src/html-url.c:286
+ #, c-format
+ msgid "%s: Cannot resolve incomplete link %s.\n"
+-msgstr "%s: Der unvollständige Link »%s« kann nicht aufgelöst werden.\n"
++msgstr "%s: Der unvollständige Link %s kann nicht aufgelöst werden.\n"
+ 
+ #: src/html-url.c:772
+ #, c-format
+ msgid "%s: Invalid URL %s: %s\n"
+-msgstr "%s: %s: Ungültige URL »%s«.\n"
++msgstr "%s: %s: Ungültige URL %s.\n"
+ 
+ #: src/http.c:377
+ #, c-format
+@@ -678,7 +678,7 @@
+ #: src/http.c:1576
+ #, c-format
+ msgid "POST data file %s missing: %s\n"
+-msgstr "POST Datendatei »%s« fehlt: %s\n"
++msgstr "POST Datendatei %s fehlt: %s\n"
+ 
+ #: src/http.c:1660
+ #, c-format
+@@ -699,7 +699,7 @@
+ #: src/http.c:1800
+ #, c-format
+ msgid "%s request sent, awaiting response... "
+-msgstr "%s Anforderung gesendet, warte auf Antwort... "
++msgstr "%s-Anforderung gesendet, warte auf Antwort... "
+ 
+ #: src/http.c:1811
+ msgid "No data received.\n"
+@@ -724,7 +724,7 @@
+ "File %s already there; not retrieving.\n"
+ "\n"
+ msgstr ""
+-"Die Datei »%s« ist schon vorhanden; kein erneuter Download.\n"
++"Die Datei %s ist schon vorhanden; kein erneuter Download.\n"
+ "\n"
+ 
+ #: src/http.c:2093
+@@ -771,7 +771,7 @@
+ #: src/http.c:2365
+ #, c-format
+ msgid "Saving to: %s\n"
+-msgstr "In »%s« speichern.\n"
++msgstr "In %s speichern.\n"
+ 
+ #: src/http.c:2447
+ msgid "Warning: wildcards not supported in HTTP.\n"
+@@ -785,7 +785,7 @@
+ #: src/http.c:2603
+ #, c-format
+ msgid "Cannot write to %s (%s).\n"
+-msgstr "Kann nicht nach »%s« schreiben (%s).\n"
++msgstr "Kann nicht nach %s schreiben (%s).\n"
+ 
+ #: src/http.c:2612
+ msgid "Unable to establish SSL connection.\n"
+@@ -820,7 +820,7 @@
+ "Server file no newer than local file %s -- not retrieving.\n"
+ "\n"
+ msgstr ""
+-"Datei auf dem Server nicht neuer als die lokale Datei »%s« -- kein Download.\n"
++"Datei auf dem Server nicht neuer als die lokale Datei %s -- kein Download.\n"
+ "\n"
+ 
+ #: src/http.c:2736
+@@ -881,7 +881,7 @@
+ "%s (%s) - %s saved [%s/%s]\n"
+ "\n"
+ msgstr ""
+-"%s (%s) - »%s« gespeichert [%s/%s]\n"
++"%s (%s) - %s gespeichert [%s/%s]\n"
+ "\n"
+ 
+ #: src/http.c:2899
+@@ -902,73 +902,73 @@
+ #: src/init.c:406
+ #, c-format
+ msgid "%s: WGETRC points to %s, which doesn't exist.\n"
+-msgstr "%s: WGETRC zeigt auf die Datei »%s«, die nicht existiert.\n"
++msgstr "%s: WGETRC zeigt auf die Datei %s, die nicht existiert.\n"
+ 
+ #: src/init.c:510 src/netrc.c:282
+ #, c-format
+ msgid "%s: Cannot read %s (%s).\n"
+-msgstr "%s: »%s« nicht lesbar (%s).\n"
++msgstr "%s: %s nicht lesbar (%s).\n"
+ 
+ #: src/init.c:527
+ #, c-format
+ msgid "%s: Error in %s at line %d.\n"
+-msgstr "%s: Fehler in »%s« bei Zeile %d.\n"
++msgstr "%s: Fehler in %s bei Zeile %d.\n"
+ 
+ #: src/init.c:533
+ #, c-format
+ msgid "%s: Syntax error in %s at line %d.\n"
+-msgstr "%s: Fehler in »%s« in Zeile %d.\n"
++msgstr "%s: Fehler in %s in Zeile %d.\n"
+ 
+ #: src/init.c:538
+ #, c-format
+ msgid "%s: Unknown command %s in %s at line %d.\n"
+-msgstr "%s: Unbekanntes Kommando »%s« in »%s« in Zeile %d.\n"
++msgstr "%s: Unbekanntes Kommando %s in %s in Zeile %d.\n"
+ 
+ #: src/init.c:587
+ #, c-format
+ msgid "%s: Warning: Both system and user wgetrc point to %s.\n"
+ msgstr ""
+-"%s: Warnung: »wgetrc« des Systems und des Benutzers zeigen beide auf »%s«.\n"
++"%s: Warnung: »wgetrc« des Systems und des Benutzers zeigen beide auf %s.\n"
+ 
+ #: src/init.c:777
+ #, c-format
+ msgid "%s: Invalid --execute command %s\n"
+-msgstr "%s: Ungültiges »--execute«-Kommando »%s«\n"
++msgstr "%s: Ungültiges »--execute«-Kommando %s\n"
+ 
+ #: src/init.c:822
+ #, c-format
+ msgid "%s: %s: Invalid boolean %s; use `on' or `off'.\n"
+-msgstr "%s: %s: Ungültiger Schalter »%s«, bitte »on« oder »off« angeben.\n"
++msgstr "%s: %s: Ungültiger Schalter %s, bitte »on« oder »off« angeben.\n"
+ 
+ #: src/init.c:839
+ #, c-format
+ msgid "%s: %s: Invalid number %s.\n"
+-msgstr "%s: %s: Ungültige Nummer »%s«\n"
++msgstr "%s: %s: Ungültige Nummer %s\n"
+ 
+ #: src/init.c:1044 src/init.c:1063
+ #, c-format
+ msgid "%s: %s: Invalid byte value %s\n"
+-msgstr "%s: %s: Ungültiger Byte-Wert »%s.«\n"
++msgstr "%s: %s: Ungültiger Byte-Wert %s.\n"
+ 
+ #: src/init.c:1088
+ #, c-format
+ msgid "%s: %s: Invalid time period %s\n"
+-msgstr "%s: %s: Ungültige Zeitperiode »%s«\n"
++msgstr "%s: %s: Ungültige Zeitperiode %s\n"
+ 
+ #: src/init.c:1142 src/init.c:1232 src/init.c:1340 src/init.c:1365
+ #, c-format
+ msgid "%s: %s: Invalid value %s.\n"
+-msgstr "%s: %s: Ungültiger Wert »%s«.\n"
++msgstr "%s: %s: Ungültiger Wert %s.\n"
+ 
+ #: src/init.c:1179
+ #, c-format
+ msgid "%s: %s: Invalid header %s.\n"
+-msgstr "%s: %s: Ungültige Kopfzeile »%s«\n"
++msgstr "%s: %s: Ungültige Kopfzeile %s\n"
+ 
+ #: src/init.c:1245
+ #, c-format
+ msgid "%s: %s: Invalid progress type %s.\n"
+-msgstr "%s: %s: Ungültiger Fortschrittstyp »%s.«\n"
++msgstr "%s: %s: Ungültiger Fortschrittstyp %s.\n"
+ 
+ #: src/init.c:1306
+ #, c-format
+@@ -976,13 +976,13 @@
+ "%s: %s: Invalid restriction %s,\n"
+ "    use [unix|windows],[lowercase|uppercase],[nocontrol],[ascii].\n"
+ msgstr ""
+-"%s: %s: Ungültige Einschränkung »%s«,\n"
++"%s: %s: Ungültige Einschränkung %s,\n"
+ "    verwenden Sie [unix|windows],[lowercase|uppercase],[nocontrol],[ascii].\n"
+ 
+ #: src/iri.c:103
+ #, c-format
+ msgid "Encoding %s isn't valid\n"
+-msgstr "Die Kodierung »%s« ist nicht korrekt\n"
++msgstr "Die Kodierung %s ist nicht korrekt\n"
+ 
+ #: src/iri.c:131
+ msgid "locale_to_utf8: locale is unset\n"
+@@ -991,7 +991,7 @@
+ #: src/iri.c:141
+ #, c-format
+ msgid "Conversion from %s to %s isn't supported\n"
+-msgstr "Konvertierung von »%s« nach »%s« ist nicht unterstützt\n"
++msgstr "Konvertierung von %s nach %s ist nicht unterstützt\n"
+ 
+ #: src/iri.c:182
+ msgid "Incomplete or invalid multibyte sequence encountered\n"
+@@ -1019,7 +1019,7 @@
+ "%s received, redirecting output to %s.\n"
+ msgstr ""
+ "\n"
+-"%s erhalten, Ausgabe wird nach »%s« umgeleitet.\n"
++"%s erhalten, Ausgabe wird nach %s umgeleitet.\n"
+ 
+ #: src/log.c:819
+ #, c-format
+@@ -1664,7 +1664,7 @@
+ msgid ""
+ "  -m,  --mirror             shortcut for -N -r -l inf --no-remove-listing.\n"
+ msgstr ""
+-"  -m,  --mirror                Kurzform, die »-r -N -l inf -nr --no-remove-"
++"  -m,  --mirror                Kurzform, die »-N -r -l inf --no-remove-"
+ "listing« entspricht.\n"
+ 
+ #: src/main.c:649
+@@ -1790,7 +1790,7 @@
+ #: src/main.c:728
+ #, c-format
+ msgid "Password for user %s: "
+-msgstr "Passwort für Benutzer »%s«: "
++msgstr "Passwort für Benutzer %s: "
+ 
+ #: src/main.c:730
+ #, c-format
+@@ -2006,7 +2006,7 @@
+ #: src/mswindows.c:293 src/utils.c:472
+ #, c-format
+ msgid "Output will be written to %s.\n"
+-msgstr "Ausgabe wird nach »%s« geschrieben.\n"
++msgstr "Ausgabe wird nach %s geschrieben.\n"
+ 
+ #: src/mswindows.c:461 src/mswindows.c:468
+ #, c-format
+@@ -2017,7 +2017,7 @@
+ #, c-format
+ msgid "%s: %s:%d: warning: %s token appears before any machine name\n"
+ msgstr ""
+-"%s: %s:%d: Warnung: »%s«-Wortteil erscheint vor jeglichem Maschinennamen\n"
++"%s: %s:%d: Warnung: %s-Wortteil erscheint vor jeglichem Maschinennamen\n"
+ 
+ #: src/netrc.c:421
+ #, c-format
+@@ -2051,7 +2051,7 @@
+ #: src/openssl.c:526
+ #, c-format
+ msgid "%s: cannot verify %s's certificate, issued by %s:\n"
+-msgstr "%s: Kann das Zertifikat von »%s« nicht prüfen, ausgestellt von »%s«:.\n"
++msgstr "%s: Kann das Zertifikat von »%s« nicht prüfen, ausgestellt von %s:.\n"
+ 
+ #: src/openssl.c:535
+ msgid "  Unable to locally verify the issuer's authority.\n"
+@@ -2075,8 +2075,8 @@
+ #, c-format
+ msgid "%s: certificate common name %s doesn't match requested host name %s.\n"
+ msgstr ""
+-"%s: Der Common Name »%s« des Zertifikates entspricht nicht dem angeforderten "
+-"Hostname »%s«.\n"
++"%s: Der Common Name %s des Zertifikates entspricht nicht dem angeforderten "
++"Hostname %s.\n"
+ 
+ #: src/openssl.c:610
+ #, c-format
+@@ -2089,7 +2089,7 @@
+ "Zeichen).\n"
+ "Das könnte ein Zeichen dafür sein, dass der Host nicht derjenige ist, der "
+ "er\n"
+-"zu sein vorgibt (also nicht der echte »%s«).\n"
++"zu sein vorgibt (also nicht der echte %s).\n"
+ 
+ #: src/openssl.c:627
+ #, c-format
+@@ -2111,7 +2111,7 @@
+ #, c-format
+ msgid "Invalid dot style specification %s; leaving unchanged.\n"
+ msgstr ""
+-"Ungültiger Stil für den »dot«-Fortschrittsindikator  »%s«; keine Änderung.\n"
++"Ungültiger Stil für den »dot«-Fortschrittsindikator %s; keine Änderung.\n"
+ 
+ #. TRANSLATORS: "ETA" is English-centric, but this must
+ #. be short, ideally 3 chars.  Abbreviate if necessary.
+@@ -2210,7 +2210,7 @@
+ #: src/url.c:635
+ #, c-format
+ msgid "Unsupported scheme %s"
+-msgstr "Nicht unterstütztes Schema »%s«"
++msgstr "Nicht unterstütztes Schema %s"
+ 
+ #: src/url.c:637
+ msgid "Scheme missing"
+@@ -2269,4 +2269,4 @@
+ #: src/utils.c:521
+ #, c-format
+ msgid "Failed to unlink symlink %s: %s\n"
+-msgstr "Entfernen des symbolischen Verweises »%s« fehlgeschlagen: %s\n"
++msgstr "Entfernen des symbolischen Verweises %s fehlgeschlagen: %s\n"

--- End Message ---
--- Begin Message ---
Source: wget
Source-Version: 1.12-2

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

wget_1.12-2.debian.tar.gz
  to main/w/wget/wget_1.12-2.debian.tar.gz
wget_1.12-2.dsc
  to main/w/wget/wget_1.12-2.dsc
wget_1.12-2_amd64.deb
  to main/w/wget/wget_1.12-2_amd64.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.
Noèl Köthe <[email protected]> (supplier of updated wget 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.8
Date: Fri, 09 Apr 2010 22:50:22 +0200
Source: wget
Binary: wget
Architecture: source amd64
Version: 1.12-2
Distribution: unstable
Urgency: low
Maintainer: Noèl Köthe <[email protected]>
Changed-By: Noèl Köthe <[email protected]>
Description: 
 wget       - retrieves files from the web
Closes: 574185
Changes: 
 wget (1.12-2) unstable; urgency=low
 .
   * acknoledge NMUs. Thanks for your work/help Matt and Anthony
     closes: #574185
   * debian/source/format switched to dpkg-source 3.0 (quilt) format
Checksums-Sha1: 
 94a3ae45b15bd451df7e18bfb3d52d7d60cb0776 1047 wget_1.12-2.dsc
 46a6782a063e017fed3c31753228eb508f1a3d4c 44756 wget_1.12-2.debian.tar.gz
 37370576be46a404a857d0624834bcc13c252363 762886 wget_1.12-2_amd64.deb
Checksums-Sha256: 
 9c3ecae91c17c69b32fc15d31810126a69892011fa1d71dd0781036c6b3cd591 1047 
wget_1.12-2.dsc
 0545dd8427ad9e812c66be267af137133721c3f1e4a230849473b977c8a4b983 44756 
wget_1.12-2.debian.tar.gz
 6e3f0a9e8463f1417b9eabdced63cedaf9ac4e14317c5b191156a9a19db9f4e5 762886 
wget_1.12-2_amd64.deb
Files: 
 e7cbdebad989c22f16027ab2c7a8b9dd 1047 web important wget_1.12-2.dsc
 972c7a1e81946f15ad406ab9ecf37d31 44756 web important wget_1.12-2.debian.tar.gz
 5a7e8f997b4ad9b69ee36260b0a66527 762886 web important wget_1.12-2_amd64.deb

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

iEYEARECAAYFAku/sIYACgkQ9/DnDzB9Vu1VcgCgixEZ4lpk9ybbRKi5oyj2XJe3
U7MAnAl9+fEqCc73g+TZKKsFxgCBK82D
=Hx63
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to