]> git.saurik.com Git - apt.git/commitdiff
* merged lp:~evfool/apt/fix641673:
authorMichael Vogt <michael.vogt@ubuntu.com>
Thu, 10 Feb 2011 16:47:32 +0000 (17:47 +0100)
committerMichael Vogt <michael.vogt@ubuntu.com>
Thu, 10 Feb 2011 16:47:32 +0000 (17:47 +0100)
* merged lp:~evfool/apt/fix418552:
  - Grammar fix for bug LP: #418552, thanks to Robert Roth

apt-pkg/algorithms.cc
debian/changelog
test/integration/test-bug-595691-empty-and-broken-archive-files

index 0fbce3c2af55b8ef9d9b39cc0331208eaf014195..fc520d744ffbac42c7b7eb1e5bd43995647a9441 100644 (file)
@@ -1493,9 +1493,9 @@ bool ListUpdate(pkgAcquireStatus &Stat,
    }
    
    if (TransientNetworkFailure == true)
-      _error->Warning(_("Some index files failed to download, they have been ignored, or old ones used instead."));
+      _error->Warning(_("Some index files failed to download. They have been ignored, or old ones used instead."));
    else if (Failed == true)
-      return _error->Error(_("Some index files failed to download, they have been ignored, or old ones used instead."));
+      return _error->Error(_("Some index files failed to download. They have been ignored, or old ones used instead."));
 
 
    // Run the success scripts if all was fine
index 82d53c25a603af20b9c6a30bf501bbffa03e4144..986b6f87615a5f3f36cf7f5b4cb9e01107429b79 100644 (file)
@@ -1,9 +1,11 @@
-apt (0.8.12) unstable; urgency=low
+apt (0.8.12) UNRELEASED; urgency=low
 
   [ Michael Vogt ]
-  * merged lp:~evfool/apt/fix641673
+  * merged lp:~evfool/apt/fix641673:
     - String-fix in the source and the translations for the grammatical 
       mistake reported in bug LP: #641673, thanks to Robert Roth
+  * merged lp:~evfool/apt/fix418552:
+    - Grammar fix for bug LP: #418552, thanks to Robert Roth
 
  -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 10 Feb 2011 17:37:56 +0100
 
index 684559aa7a05e1d9585a0d415632261240e80afe..2179ba03bb94d2f6abb6911e00d712c1bbf138bf 100755 (executable)
@@ -97,7 +97,7 @@ Err file:  Packages
   Empty files can't be valid archives
 W: Failed to fetch ${COMPRESSOR}:$(readlink -f aptarchive/Packages.$COMPRESS)  Empty files can't be valid archives
 
-E: Some index files failed to download, they have been ignored, or old ones used instead." "empty file Packages.$COMPRESS over file"
+E: Some index files failed to download. They have been ignored, or old ones used instead." "empty file Packages.$COMPRESS over file"
 }
 
 testoverhttp() {
@@ -131,7 +131,7 @@ Err http://localhost  Packages
   Empty files can't be valid archives
 W: Failed to fetch ${COMPRESSOR}:$(readlink -f rootdir/var/lib/apt/lists/partial/localhost:8080_Packages)  Empty files can't be valid archives
 
-E: Some index files failed to download, they have been ignored, or old ones used instead." "empty file Packages.$COMPRESS over http"
+E: Some index files failed to download. They have been ignored, or old ones used instead." "empty file Packages.$COMPRESS over http"
 }
 
 for COMPRESSOR in 'gzip' 'bzip2' 'lzma'; do testoverfile $COMPRESSOR; done