pingus-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pingus-CVS] CVS: Games/Pingus/src system.cxx,1.14,1.15


From: torangan
Subject: [Pingus-CVS] CVS: Games/Pingus/src system.cxx,1.14,1.15
Date: 13 Apr 2003 10:34:57 -0000

Update of /var/lib/cvs/Games/Pingus/src
In directory dark:/tmp/cvs-serv21408/src

Modified Files:
        system.cxx 
Log Message:
removed some errors messages from gettext


Index: system.cxx
===================================================================
RCS file: /var/lib/cvs/Games/Pingus/src/system.cxx,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- system.cxx  13 Apr 2003 09:38:00 -0000      1.14
+++ system.cxx  13 Apr 2003 10:34:55 -0000      1.15
@@ -63,7 +63,7 @@
 
   if (dp == 0)
     {
-      std::cout << _("System: Couldn't open: ") << pathname << std::endl;
+      std::cout << "System: Couldn't open: " << pathname << std::endl;
     }
   else
     {
@@ -95,7 +95,7 @@
 
   if (hFind == INVALID_HANDLE_VALUE)
     {
-      std::cout << _("System: Couldn't open: ") << pathname << std::endl;
+      std::cout << "System: Couldn't open: " << pathname << std::endl;
     }
   
   do
@@ -190,12 +190,12 @@
        }
       else
        {
-         std::cout << _("Successfully created: ") << directory << std::endl;
+         std::cout << "Successfully created: " << directory << std::endl;
        }
     }  
   else
     {
-      if (verbose) std::cout << _("Found: ") << directory << std::endl;
+      if (verbose) std::cout << "Found: " << directory << std::endl;
     }
 #else
   CreateDirectory(directory.c_str(), 0);
@@ -413,7 +413,7 @@
 
   if (!in)
     {
-      std::cout << _("System::checksum: Couldn't open file: ") << filename << 
std::endl;
+      std::cout << "System::checksum: Couldn't open file: " << filename << 
std::endl;
       return "";
     }
 
@@ -423,7 +423,7 @@
       
       if (bytes_read == -1)
        {
-         throw Error (_("System:checksum: file read error"));
+         throw Error ("System:checksum: file read error");
        }
 
       for (int i=0; i < bytes_read; ++i)





reply via email to

[Prev in Thread] Current Thread [Next in Thread]