SOURCES: wget-ac.patch, wget-noabort.patch, wget-pl.patch - update...

adamg adamg at pld-linux.org
Sat Mar 29 16:01:03 CET 2008


Author: adamg                        Date: Sat Mar 29 15:01:03 2008 GMT
Module: SOURCES                       Tag: HEAD
---- Log message:
- updated to 1.11.1

---- Files affected:
SOURCES:
   wget-ac.patch (1.13 -> 1.14) , wget-noabort.patch (1.1 -> 1.2) , wget-pl.patch (1.8 -> 1.9) 

---- Diffs:

================================================================
Index: SOURCES/wget-ac.patch
diff -u SOURCES/wget-ac.patch:1.13 SOURCES/wget-ac.patch:1.14
--- SOURCES/wget-ac.patch:1.13	Sun Aug 28 15:11:47 2005
+++ SOURCES/wget-ac.patch	Sat Mar 29 16:00:57 2008
@@ -18,11 +18,11 @@
 --- wget-1.9-b5.org/Makefile.in	2003-10-12 23:55:54.000000000 +0200
 +++ wget-1.9-b5/Makefile.in	2003-10-13 00:29:14.000000000 +0200
 @@ -82,7 +82,7 @@
- infodir='$(infodir)' mandir='$(mandir)' manext='$(manext)'
+ manext='$(manext)'
  
  # subdirectories in the distribution
--SUBDIRS = src doc po util windows
-+SUBDIRS = src doc intl po util windows
+-SUBDIRS = src doc po tests util windows
++SUBDIRS = src doc intl po tests util windows
  
  # default target
  all: libtool src/config.h Makefile $(SUBDIRS)
@@ -33,25 +33,20 @@
 -	cd po && $(MAKE) $(MAKEDEFS) $@
 +	cd po && $(MAKE) $(MAKEDEFS) install
  
- # Regenerate libtool if ltconfig and/or ltmain are updated
- libtool: $(LIBTOOL_DEPS)
+ # create tag files for Emacs
+ TAGS:
 --- wget-1.10/src/main.c.orig	2005-06-22 03:25:18.000000000 +0200
 +++ wget-1.10/src/main.c	2005-06-22 03:25:48.000000000 +0200
-@@ -43,11 +43,11 @@
- #ifdef HAVE_SIGNAL_H
- # include <signal.h>
- #endif
+@@ -43,7 +43,7 @@
+ #endif /* HAVE_UNISTD_H */
+ #include <string.h>
+ #include <signal.h>
 -#ifdef HAVE_NLS
 +#ifdef ENABLE_NLS
- #ifdef HAVE_LOCALE_H
  # include <locale.h>
- #endif /* HAVE_LOCALE_H */
--#endif /* HAVE_NLS */
-+#endif /* ENABLE_NLS */
+ #endif
  #include <assert.h>
- 
- #include <errno.h>
-@@ -90,8 +90,8 @@
+@@ -90,13 +90,13 @@
  static void
  i18n_initialize (void)
  {
@@ -60,9 +55,7 @@
 +  /* ENABLE_NLS implies existence of functions invoked here.  */
 +#ifdef ENABLE_NLS
    /* Set the current locale.  */
-   /* Where possible, sets only LC_MESSAGES and LC_CTYPE.  Other
-      categories, such as numeric, time, or collation, break code that
-@@ -110,7 +110,7 @@
+   setlocale (LC_ALL, "");
    /* Set the text message domain.  */
    bindtextdomain ("wget", LOCALEDIR);
    textdomain ("wget");
@@ -73,7 +66,7 @@
  /* Definition of command-line options. */
 --- wget-1.10/src/wget.h.orig	2005-06-22 03:26:51.000000000 +0200
 +++ wget-1.10/src/wget.h	2005-06-22 03:27:04.000000000 +0200
-@@ -50,16 +50,16 @@
+@@ -50,20 +50,20 @@
  
  /* `gettext (FOO)' is long to write, so we use `_(FOO)'.  If NLS is
     unavailable, _(STRING) simply returns STRING.  */
@@ -88,37 +81,12 @@
 -#else  /* not HAVE_NLS */
 +#else  /* not ENABLE_NLS */
  # define _(string) (string)
+ # define ngettext(sing, plur, num)  ((num) == 1 ? (sing) : (plur))
+ # undef HAVE_WCHAR_H
+ # undef HAVE_WCWIDTH
+ # undef HAVE_MBTOWC
 -#endif /* not HAVE_NLS */
 +#endif /* not ENABLE_NLS */
- 
- /* A pseudo function call that serves as a marker for the automated
-    extraction of messages, but does not call gettext().  The run-time
---- wget-1.10.1/m4/wget.m4.orig	2005-06-27 00:06:49.000000000 +0200
-+++ wget-1.10.1/m4/wget.m4	2005-08-28 13:31:58.190246472 +0200
-@@ -156,7 +156,7 @@
- # program @code{ansi2knr}, which comes with Ghostscript.
- # @end defmac
- 
--AC_DEFUN(AM_PROG_CC_STDC,
-+AC_DEFUN([AM_PROG_CC_STDC],
- [AC_REQUIRE([AC_PROG_CC])
- AC_MSG_CHECKING([for ${CC-cc} option to accept ANSI C])
- AC_CACHE_VAL(am_cv_prog_cc_stdc,
-@@ -390,7 +390,7 @@
- dnl This is not strictly an Autoconf macro, because it is run from
- dnl within `config.status' rather than from within configure.  This
- dnl is why special rules must be applied for it.
--AC_DEFUN(WGET_PROCESS_PO,
-+AC_DEFUN([WGET_PROCESS_PO],
-   [
-    dnl I wonder what the following several lines do...
-    if test "x$srcdir" != "x."; then
-@@ -426,7 +426,7 @@
- 
- dnl AM_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR,
- dnl   TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]])
--AC_DEFUN(AM_PATH_PROG_WITH_TEST,
-+AC_DEFUN([AM_PATH_PROG_WITH_TEST],
- [# Extract the first word of "$2", so it can be a program name with args.
- set dummy $2; ac_word=[$]2
- AC_MSG_CHECKING([for $ac_word])
+
+ #if HAVE_WCWIDTH && HAVE_MBTOWC
+ # define USE_NLS_PROGRESS_BAR 1

================================================================
Index: SOURCES/wget-noabort.patch
diff -u SOURCES/wget-noabort.patch:1.1 SOURCES/wget-noabort.patch:1.2
--- SOURCES/wget-noabort.patch:1.1	Fri Nov 18 06:55:45 2005
+++ SOURCES/wget-noabort.patch	Sat Mar 29 16:00:58 2008
@@ -2,12 +2,12 @@
 confusion in ftp_loop_internal() and abort()
 --- wget-1.10.2/src/ftp.c.orig	2005-08-09 00:23:09.000000000 +0200
 +++ wget-1.10.2/src/ftp.c	2005-11-17 00:29:22.510795976 +0100
-@@ -918,7 +918,7 @@
+@@ -908,7 +908,7 @@
        if (dtsock < 0)
- 	{
- 	  logprintf (LOG_NOTQUIET, "accept: %s\n", strerror (errno));
--	  return err;
-+	  return CONERROR;
- 	}
+         {
+           logprintf (LOG_NOTQUIET, "accept: %s\n", strerror (errno));
+-          return err;
++          return CONERROR;
+         }
      }
  

================================================================
Index: SOURCES/wget-pl.patch
diff -u SOURCES/wget-pl.patch:1.8 SOURCES/wget-pl.patch:1.9
--- SOURCES/wget-pl.patch:1.8	Sun Aug 28 15:12:43 2005
+++ SOURCES/wget-pl.patch	Sat Mar 29 16:00:58 2008
@@ -1,2323 +1,1447 @@
 --- wget-1.10.1/po/pl.po.orig	2005-08-16 23:59:28.000000000 +0200
 +++ wget-1.10.1/po/pl.po	2005-08-28 15:02:42.270620456 +0200
-@@ -5,184 +5,220 @@
+@@ -5,14 +5,16 @@
  # Arkadiusz Mi¶kiewicz <misiek at pld.ORG.PL>, 1998-2000.
  # Wojciech Kotwica <wkotwica at post.pl> 2002-03-20 11:12+01:00
  # v. 1.9-b5 by Emil Nowak <emil5 at go2.pl> 2003-10-15 00:28+02:00
 +# Jakub Bogusz <qboosh at pld-linux.org>, 2005
++# Adam Go³êbiowski <adamg at pld-linux.org>, 2008
  #
  msgid ""
  msgstr ""
 -"Project-Id-Version: wget 1.9-b5\n"
--"POT-Creation-Date: 2003-10-11 16:21+0200\n"
++"Project-Id-Version: wget 1.11.1\n"
+ "Report-Msgid-Bugs-To: \n"
+ "POT-Creation-Date: 2008-03-24 13:24-0700\n"
 -"PO-Revision-Date: 2003-10-15 00:28+02:00\n"
 -"Last-Translator: Wojciech Kotwica <wkotwica at post.pl>\n"
-+"Project-Id-Version: wget 1.10.1\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2005-08-28 13:44+0200\n"
-+"PO-Revision-Date: 2005-08-28 13:10+0200\n"
-+"Last-Translator: Jakub Bogusz <qboosh at pld-linux.org>\n"
++"PO-Revision-Date: 2008-03-29 15:43+0100\n"
++"Last-Translator: Adam Go³êbiowski <adamg at pld-linux.org>\n"
  "Language-Team: Polish <translation-team-pl at lists.sourceforge.net>\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=iso-8859-2\n"
- "Content-Transfer-Encoding: 8bit\n"
- 
--#: src/connect.c:88
-+#: src/connect.c:199
+@@ -21,17 +23,17 @@
+ #: src/connect.c:200
  #, c-format
--msgid "Unable to convert `%s' to a bind address.  Reverting to ANY.\n"
--msgstr "Nieudana konwersja `%s' na powi±zany adres.  Powrót do ANY.\n"
-+msgid "%s: unable to resolve bind address `%s'; disabling bind.\n"
-+msgstr "%s: nie mo¿na rozwi±zaæ adresu bind `%s'; wy³±czanie bind.\n"
+ msgid "%s: unable to resolve bind address `%s'; disabling bind.\n"
+-msgstr ""
++msgstr "%s: nie mo¿na rozwi±zaæ adresu bind `%s': wy³±czenie.bind.\n"
  
--#: src/connect.c:165
-+#: src/connect.c:271
- #, c-format
--msgid "Connecting to %s[%s]:%hu... "
+ #: src/connect.c:272
+-#, fuzzy, c-format
++#, c-format
+ msgid "Connecting to %s|%s|:%d... "
 -msgstr "£±czenie siê z %s[%s]:%hu... "
-+msgid "Connecting to %s|%s|:%d... "
 +msgstr "£±czenie siê z %s|%s|:%d... "
  
--#: src/connect.c:168
-+#: src/connect.c:274
- #, c-format
--msgid "Connecting to %s:%hu... "
+ #: src/connect.c:275
+-#, fuzzy, c-format
++#, c-format
+ msgid "Connecting to %s:%d... "
 -msgstr "£±czenie siê z %s:%hu... "
-+msgid "Connecting to %s:%d... "
 +msgstr "£±czenie siê z %s:%d... "
  
--#: src/connect.c:222
-+#: src/connect.c:335
+ #: src/connect.c:335
  msgid "connected.\n"
- msgstr "po³±czono.\n"
+@@ -43,14 +45,14 @@
+ msgstr "nieudane: %s.\n"
  
--#: src/convert.c:171
-+#: src/connect.c:347 src/host.c:789 src/host.c:818
- #, c-format
--msgid "Converted %d files in %.2f seconds.\n"
--msgstr "Przekonwertowano %d plików w %.2f sekund.\n"
-+msgid "failed: %s.\n"
-+msgstr "nieudane: %s.\n"
-+
-+#: src/convert.c:176
+ #: src/connect.c:371 src/http.c:1645
+-#, fuzzy, c-format
 +#, c-format
-+msgid "Converted %d files in %.*f seconds.\n"
-+msgstr "Przekonwertowano %d plików w %.*f sekund.\n"
- 
--#: src/convert.c:197
-+#: src/convert.c:202
- #, c-format
- msgid "Converting %s... "
- msgstr "Konwertowanie %s... "
- 
--#: src/convert.c:210
-+#: src/convert.c:215
- msgid "nothing to do.\n"
- msgstr "nic do roboty.\n"
- 
--#: src/convert.c:218 src/convert.c:242
-+#: src/convert.c:223 src/convert.c:247
- #, c-format
- msgid "Cannot convert links in %s: %s\n"
- msgstr "Nie mo¿na przekonwertowaæ odno¶ników w %s: %s\n"
+ msgid "%s: unable to resolve host address `%s'\n"
+-msgstr "Nie uda³o siê usun±æ `%s': %s\n"
++msgstr "%s: nie uda³o siê rozwi±zaæ adresu hosta `%s'\n"
  
--#: src/convert.c:233
-+#: src/convert.c:238
- #, c-format
- msgid "Unable to delete `%s': %s\n"
- msgstr "Nie uda³o siê usun±æ `%s': %s\n"
+ #: src/convert.c:172
+-#, fuzzy, c-format
++#, c-format
+ msgid "Converted %d files in %s seconds.\n"
+-msgstr "Przekonwertowano %d plików w %.2f sekund.\n"
++msgstr "Przekonwertowano %d plików w %s sekund.\n"
  
--#: src/convert.c:439
-+#: src/convert.c:447
+ #: src/convert.c:199
  #, c-format
- msgid "Cannot back up %s as %s: %s\n"
+@@ -77,14 +79,14 @@
  msgstr "Nie mo¿na stworzyæ kopii zapasowej %s jako %s: %s\n"
  
--#: src/cookies.c:606
-+#: src/cookies.c:619
- #, c-format
- msgid "Error in Set-Cookie, field `%s'"
- msgstr "B³±d w Set-Cookie, w polu `%s'"
- 
--#: src/cookies.c:629
+ #: src/cookies.c:445
 -#, fuzzy, c-format
-+#: src/cookies.c:643
 +#, c-format
  msgid "Syntax error in Set-Cookie: %s at position %d.\n"
 -msgstr "B³±d sk³adni w Set-Cookie: przedwczesny koniec ci±gu znaków.\n"
 +msgstr "B³±d sk³adni w Set-Cookie: %s na pozycji %d.\n"
-+
-+#: src/cookies.c:881
-+#, c-format
-+msgid "Cookie coming from %s attempted to set domain to %s\n"
-+msgstr "Ciasteczko pochodz±ce z %s próbowa³o ustawiæ domenê na %s\n"
  
--#: src/cookies.c:1426
-+#: src/cookies.c:1328 src/cookies.c:1477
+ #: src/cookies.c:687
  #, c-format
- msgid "Cannot open cookies file `%s': %s\n"
- msgstr "Nie mo¿na otworzyæ pliku ciasteczek `%s': %s\n"
+ msgid "Cookie coming from %s attempted to set domain to %s\n"
+-msgstr ""
++msgstr "Ciasteczko pochodz±ce z %s próbowa³o ustawiæ domenê na %s\n"
  
--#: src/cookies.c:1438
-+#: src/cookies.c:1489
+ #: src/cookies.c:1134 src/cookies.c:1252
  #, c-format
- msgid "Error writing to `%s': %s\n"
- msgstr "B³±d podczas zapisu do `%s': %s\n"
- 
--#: src/cookies.c:1442
-+#: src/cookies.c:1492
+@@ -149,12 +151,12 @@
+ #: src/ftp.c:221 src/http.c:2197
  #, c-format
- msgid "Error closing `%s': %s\n"
- msgstr "B³±d podczas zamykania `%s': %s\n"
- 
--#: src/ftp-ls.c:812
-+#: src/ftp-ls.c:843
- msgid "Unsupported listing type, trying Unix listing parser.\n"
--msgstr "Nieobs³ugiwany typ listy plików, próbowanie analizatora list Uniksowych.\n"
-+msgstr ""
-+"Nieobs³ugiwany typ listy plików, próbowanie analizatora list Uniksowych.\n"
+ msgid ", %s (%s) remaining"
+-msgstr ""
++msgstr ", %s (%s) pozosta³o"
  
--#: src/ftp-ls.c:857 src/ftp-ls.c:859
-+#: src/ftp-ls.c:889 src/ftp-ls.c:891
+ #: src/ftp.c:225 src/http.c:2201
  #, c-format
- msgid "Index of /%s on %s:%d"
- msgstr "Indeks /%s na %s:%d"
- 
--#: src/ftp-ls.c:882
-+#: src/ftp-ls.c:914
-+#, c-format
- msgid "time unknown       "
- msgstr "czas nieznany      "
- 
--#: src/ftp-ls.c:886
-+#: src/ftp-ls.c:918
-+#, c-format
- msgid "File        "
- msgstr "Plik        "
- 
--#: src/ftp-ls.c:889
-+#: src/ftp-ls.c:921
-+#, c-format
- msgid "Directory   "
- msgstr "Katalog     "
- 
--#: src/ftp-ls.c:892
-+#: src/ftp-ls.c:924
-+#, c-format
- msgid "Link        "
- msgstr "Odno¶nik    "
- 
--#: src/ftp-ls.c:895
-+#: src/ftp-ls.c:927
-+#, c-format
- msgid "Not sure    "
- msgstr "Nie pewny   "
- 
--#: src/ftp-ls.c:913
-+#: src/ftp-ls.c:945
- #, c-format
- msgid " (%s bytes)"
- msgstr " (%s bajtów)"
- 
--#. Second: Login with proper USER/PASS sequence.
--#: src/ftp.c:202
-+#: src/ftp.c:226
-+#, c-format
-+msgid "Length: %s"
-+msgstr "D³ugo¶æ: %s"
-+
-+#: src/ftp.c:232 src/http.c:1862
-+#, c-format
-+msgid ", %s (%s) remaining"
-+msgstr ", pozosta³o %s (%s)"
-+
-+#: src/ftp.c:236 src/http.c:1866
-+#, c-format
-+msgid ", %s remaining"
-+msgstr ", pozosta³o %s"
-+
-+#: src/ftp.c:239
-+msgid " (unauthoritative)\n"
-+msgstr " (nie autorytatywne)\n"
-+
-+#: src/ftp.c:314
- #, c-format
- msgid "Logging in as %s ... "
- msgstr "Logowanie siê jako %s ... "
- 
--#: src/ftp.c:215 src/ftp.c:268 src/ftp.c:299 src/ftp.c:353 src/ftp.c:468
--#: src/ftp.c:519 src/ftp.c:551 src/ftp.c:611 src/ftp.c:675 src/ftp.c:748
--#: src/ftp.c:796
-+#: src/ftp.c:327 src/ftp.c:373 src/ftp.c:402 src/ftp.c:454 src/ftp.c:566
-+#: src/ftp.c:612 src/ftp.c:640 src/ftp.c:698 src/ftp.c:759 src/ftp.c:819
-+#: src/ftp.c:866
- msgid "Error in server response, closing control connection.\n"
- msgstr "B³±d w odpowiedzi serwera, zamykanie po³±czenia steruj±cego.\n"
- 
--#: src/ftp.c:223
-+#: src/ftp.c:334
- msgid "Error in server greeting.\n"
- msgstr "B³±d w powitaniu serwera.\n"
- 
--#: src/ftp.c:231 src/ftp.c:362 src/ftp.c:477 src/ftp.c:560 src/ftp.c:621
--#: src/ftp.c:685 src/ftp.c:758 src/ftp.c:806
-+#: src/ftp.c:341 src/ftp.c:462 src/ftp.c:574 src/ftp.c:648 src/ftp.c:708
-+#: src/ftp.c:769 src/ftp.c:829 src/ftp.c:876
- msgid "Write failed, closing control connection.\n"
- msgstr "Niepowodzenie podczas zapisu, zamykanie po³±czenia steruj±cego.\n"
- 
--#: src/ftp.c:238
-+#: src/ftp.c:347
- msgid "The server refuses login.\n"
- msgstr "Serwer nie pozwala na zalogowanie siê.\n"
- 
--#: src/ftp.c:245
-+#: src/ftp.c:353
- msgid "Login incorrect.\n"
- msgstr "Nieprawid³owy login lub has³o.\n"
- 
--#: src/ftp.c:252
-+#: src/ftp.c:359
- msgid "Logged in!\n"
- msgstr "Zalogowano siê!\n"
- 
--#: src/ftp.c:277
-+#: src/ftp.c:381
- msgid "Server error, can't determine system type.\n"
- msgstr "B³±d serwera, nie mo¿na ustaliæ typu systemu.\n"
- 
--#: src/ftp.c:287 src/ftp.c:596 src/ftp.c:659 src/ftp.c:716
-+#: src/ftp.c:390 src/ftp.c:685 src/ftp.c:742 src/ftp.c:785
- msgid "done.    "
- msgstr "zrobiono.    "
- 
--#: src/ftp.c:341 src/ftp.c:498 src/ftp.c:533 src/ftp.c:779 src/ftp.c:827
-+#: src/ftp.c:442 src/ftp.c:591 src/ftp.c:624 src/ftp.c:849 src/ftp.c:895
- msgid "done.\n"
- msgstr "zrobiono.\n"
- 
--#: src/ftp.c:370
-+#: src/ftp.c:469
- #, c-format
- msgid "Unknown type `%c', closing control connection.\n"
- msgstr "Nieznany typ `%c', zamykanie po³±czenienia steruj±cego.\n"
- 
--#: src/ftp.c:383
-+#: src/ftp.c:481
- msgid "done.  "
- msgstr "zrobiono.  "
- 
--#: src/ftp.c:389
-+#: src/ftp.c:487
- msgid "==> CWD not needed.\n"
- msgstr "==> CWD nie jest potrzebne.\n"
- 
--#: src/ftp.c:484
-+#: src/ftp.c:580
- #, c-format
- msgid ""
- "No such directory `%s'.\n"
-@@ -191,43 +227,33 @@
- "Nie ma katalogu `%s'.\n"
- "\n"
+ msgid ", %s remaining"
+-msgstr ""
++msgstr ", %s pozosta³o"
  
--#. do not CWD
--#: src/ftp.c:502
-+#: src/ftp.c:595
- msgid "==> CWD not required.\n"
- msgstr "==> CWD nie wymagane.\n"
- 
--#: src/ftp.c:567
-+#: src/ftp.c:654
- msgid "Cannot initiate PASV transfer.\n"
- msgstr "Nie mo¿na zainicjowaæ przesy³ania typu PASV.\n"
- 
--#: src/ftp.c:571
-+#: src/ftp.c:658
- msgid "Cannot parse PASV response.\n"
+ #: src/ftp.c:228
+ msgid " (unauthoritative)\n"
+@@ -241,9 +243,9 @@
  msgstr "Nie mo¿na przeanalizowaæ sk³adni odpowiedzi PASV.\n"
  
--#: src/ftp.c:588
-+#: src/ftp.c:676
- #, c-format
--msgid "couldn't connect to %s:%hu: %s\n"
+ #: src/ftp.c:666
+-#, fuzzy, c-format
++#, c-format
+ msgid "couldn't connect to %s port %d: %s\n"
 -msgstr "nie uda³o siê po³±czyæ z %s:%hu: %s\n"
-+msgid "couldn't connect to %s port %d: %s\n"
-+msgstr "nie uda³o siê po³±czyæ z %s na port %d: %s\n"
- 
--#: src/ftp.c:638
-+#: src/ftp.c:724
- #, c-format
- msgid "Bind error (%s).\n"
- msgstr "B³±d Bind (%s).\n"
- 
--#: src/ftp.c:645
-+#: src/ftp.c:730
- msgid "Invalid PORT.\n"
- msgstr "Nieprawid³owe PORT.\n"
- 
--#: src/ftp.c:698
--#, c-format
--msgid ""
--"\n"
--"REST failed; will not truncate `%s'.\n"
--msgstr ""
--"\n"
--"REST nieudane; zawarto¶æ `%s' nie zostanie obciêta.\n"
--
--#: src/ftp.c:705
-+#: src/ftp.c:776
- msgid ""
- "\n"
- "REST failed, starting from scratch.\n"
-@@ -235,7 +261,7 @@
- "\n"
- "REST nieudane, rozpoczynanie od pocz±tku.\n"
- 
--#: src/ftp.c:766
-+#: src/ftp.c:837
- #, c-format
- msgid ""
- "No such file `%s'.\n"
-@@ -244,7 +270,7 @@
- "Nie ma pliku `%s'.\n"
- "\n"
++msgstr "nie uda³o siê po³±czyæ z %s:%d: %s\n"
  
--#: src/ftp.c:814
-+#: src/ftp.c:884
+ #: src/ftp.c:714
  #, c-format
- msgid ""
- "No such file or directory `%s'.\n"
-@@ -253,86 +279,75 @@
- "Nie ma pliku ani katalogu `%s'.\n"
- "\n"
- 
--#: src/ftp.c:898 src/ftp.c:906
-+#: src/ftp.c:946 src/http.c:1923
+@@ -287,7 +289,7 @@
+ #: src/ftp.c:936 src/http.c:2259
  #, c-format
--msgid "Length: %s"
--msgstr "D³ugo¶æ: %s"
-+msgid "%s has sprung into existence.\n"
+ msgid "%s has sprung into existence.\n"
+-msgstr ""
 +msgstr "%s zacz±³ istnieæ.\n"
  
--#: src/ftp.c:900 src/ftp.c:908
--#, c-format
--msgid " [%s to go]"
--msgstr " [%s do koñca]"
--
--#: src/ftp.c:910
--msgid " (unauthoritative)\n"
--msgstr " (nie autorytatywne)\n"
--
--#: src/ftp.c:936
-+#: src/ftp.c:1008
- #, c-format
- msgid "%s: %s, closing control connection.\n"
- msgstr "%s: %s, zamykanie po³±czenienia steruj±cego.\n"
- 
--#: src/ftp.c:944
-+#: src/ftp.c:1016
- #, c-format
- msgid "%s (%s) - Data connection: %s; "
- msgstr "%s (%s) - Po³±czenie danych: %s; "
- 
--#: src/ftp.c:961
<<Diff was trimmed, longer than 597 lines>>

---- CVS-web:
    http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/wget-ac.patch?r1=1.13&r2=1.14&f=u
    http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/wget-noabort.patch?r1=1.1&r2=1.2&f=u
    http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/wget-pl.patch?r1=1.8&r2=1.9&f=u



More information about the pld-cvs-commit mailing list