// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: cdrom.cc,v 1.19 2002/11/22 07:26:10 doogie Exp $
+// $Id: cdrom.cc,v 1.21 2004/01/07 20:39:38 mdz Exp $
/* ######################################################################
CDROM URI method for APT
#include <unistd.h>
#include <iostream>
+#include <apti18n.h>
/*}}}*/
using namespace std;
if (FileExists(DFile) == true)
{
if (ReadConfigFile(Database,DFile) == false)
- return _error->Error("Unable to read the cdrom database %s",
+ return _error->Error(_("Unable to read the cdrom database %s"),
DFile.c_str());
}
DatabaseLoaded = true;
// All non IMS queries for package files fail.
if (Itm->IndexFile == true || GetID(Get.Host).empty() == true)
{
- Fail("Please use apt-cdrom to make this CD recognized by APT."
- " apt-get update cannot be used to add new CDs");
+ Fail(_("Please use apt-cdrom to make this CD recognized by APT."
+ " apt-get update cannot be used to add new CDs"));
return true;
}
// We already have a CD inserted, but it is the wrong one
if (CurrentID.empty() == false && Database.Find("CD::" + CurrentID) != Get.Host)
{
- Fail("Wrong CD",true);
+ Fail(_("Wrong CD"),true);
return true;
}
// I suppose this should prompt somehow?
if (UnmountCdrom(CDROM) == false)
- return _error->Error("Unable to unmount the CD-ROM in %s, it may still be in use.",
+ return _error->Error(_("Unable to unmount the CD-ROM in %s, it may still be in use."),
CDROM.c_str());
if (MediaFail(Get.Host,CDROM) == false)
{
CurrentID = "FAIL";
- Fail("Wrong CD",true);
+ Fail(_("Wrong CD"),true);
return true;
}
}
Res.Filename = CDROM + File;
struct stat Buf;
if (stat(Res.Filename.c_str(),&Buf) != 0)
- return _error->Error("File not found");
+ return _error->Error(_("File not found"));
if (NewID.empty() == false)
CurrentID = NewID;
int main()
{
+ setlocale(LC_ALL, "");
+
CDROMMethod Mth;
return Mth.Run();
}