diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 17:00:42 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 17:00:42 +0000 |
commit | 05eb7df02d6a641678975899b1936500f5bc703b (patch) | |
tree | 47b5e6b3bfcbba50fbf427e3b134931865156407 /apt-inst/filelist.cc | |
parent | e841f4962276f94421669cba3ca613c7731ffa14 (diff) |
i18n stuff.
Author: doogie
Date: 2003-02-10 00:36:12 GMT
i18n stuff.
Diffstat (limited to 'apt-inst/filelist.cc')
-rw-r--r-- | apt-inst/filelist.cc | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/apt-inst/filelist.cc b/apt-inst/filelist.cc index 3312af8ae..446b9f561 100644 --- a/apt-inst/filelist.cc +++ b/apt-inst/filelist.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: filelist.cc,v 1.3 2001/05/27 23:45:39 jgg Exp $ +// $Id: filelist.cc,v 1.4 2003/02/10 00:36:12 doogie Exp $ /* ###################################################################### File Listing - Manages a Cache of File -> Package names. @@ -36,6 +36,7 @@ #pragma implementation "apt-pkg/filelist.h" #endif +#include <apti18n.h> #include <apt-pkg/filelist.h> #include <apt-pkg/mmap.h> #include <apt-pkg/error.h> @@ -380,7 +381,7 @@ void pkgFLCache::DropNode(map_ptrloc N) NodeIterator Nde(*this,NodeP + N); if (Nde->NextPkg != 0) - _error->Warning("DropNode called on still linked node"); + _error->Warning(_("DropNode called on still linked node")); // Locate it in the hash table Node *Last = 0; @@ -412,7 +413,7 @@ void pkgFLCache::DropNode(map_ptrloc N) break; } - _error->Error("Failed to locate the hash element!"); + _error->Error(_("Failed to locate the hash element!")); } /*}}}*/ // FLCache::BeginDiverLoad - Start reading new diversions /*{{{*/ @@ -459,12 +460,12 @@ bool pkgFLCache::AddDiversion(PkgIterator const &Owner, NodeIterator FromN = GetNode(From,From+strlen(From),0,true,true); NodeIterator ToN = GetNode(To,To+strlen(To),0,true,true); if (FromN.end() == true || ToN.end() == true) - return _error->Error("Failed to allocate diversion"); + return _error->Error(_("Failed to allocate diversion")); // Should never happen if ((FromN->Flags & Node::Diversion) != Node::Diversion || (ToN->Flags & Node::Diversion) != Node::Diversion) - return _error->Error("Internal Error in AddDiversion"); + return _error->Error(_("Internal Error in AddDiversion")); // Now, try to reclaim an existing diversion.. map_ptrloc Diver = 0; @@ -477,7 +478,7 @@ bool pkgFLCache::AddDiversion(PkgIterator const &Owner, { // It could be that the other diversion is no longer in use if ((DiverP[ToN->Pointer].Flags & Diversion::Touched) == Diversion::Touched) - return _error->Error("Trying to overwrite a diversion, %s -> %s and %s/%s", + return _error->Error(_("Trying to overwrite a diversion, %s -> %s and %s/%s"), From,To,ToN.File(),ToN.Dir().Name()); // We can erase it. @@ -506,7 +507,7 @@ bool pkgFLCache::AddDiversion(PkgIterator const &Owner, // Can only have one diversion of the same files Diversion *Div = DiverP + Diver; if ((Div->Flags & Diversion::Touched) == Diversion::Touched) - return _error->Error("Double add of diversion %s -> %s",From,To); + return _error->Error(_("Double add of diversion %s -> %s"),From,To); // Setup the From/To links if (Div->DivertFrom != FromN.Offset() && Div->DivertFrom != ToN.Offset()) @@ -549,7 +550,7 @@ bool pkgFLCache::AddConfFile(const char *Name,const char *NameEnd, continue; if ((Nde->Flags & Node::ConfFile) == Node::ConfFile) - return _error->Error("Duplicate conf file %s/%s",Nde.DirN(),Nde.File()); + return _error->Error(_("Duplicate conf file %s/%s"),Nde.DirN(),Nde.File()); // Allocate a new conf file structure map_ptrloc Conf = Map.Allocate(sizeof(ConfFile)); |