diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2011-02-10 17:38:16 +0100 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2011-02-10 17:38:16 +0100 |
commit | edc0ef102b5100acb6930ff27c4296eb101a35e7 (patch) | |
tree | 21d6ea9f3711aa2f60b49f9365035099cac98f53 /apt-pkg | |
parent | 4c6cf49317769725fee34a132c52ec1fe076b8b5 (diff) |
* 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
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/cacheset.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/cacheset.cc b/apt-pkg/cacheset.cc index bbfdfd4f2..a1de613e2 100644 --- a/apt-pkg/cacheset.cc +++ b/apt-pkg/cacheset.cc @@ -464,7 +464,7 @@ PackageSet CacheSetHelper::canNotFindPackage(pkgCacheFile &Cache, std::string co VersionSet CacheSetHelper::canNotFindAllVer(pkgCacheFile &Cache, pkgCache::PkgIterator const &Pkg) { if (ShowError == true) - _error->Insert(ErrorType, _("Can't select versions from package '%s' as it purely virtual"), Pkg.FullName(true).c_str()); + _error->Insert(ErrorType, _("Can't select versions from package '%s' as it is purely virtual"), Pkg.FullName(true).c_str()); return VersionSet(); } /*}}}*/ |