]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - backend/scsi-irix.c
Load cups into easysw/current.
[thirdparty/cups.git] / backend / scsi-irix.c
index cec216e87e5ec036558b2e3d1cee2ce4e472891a..3b3e43b0d19fbf2663503a1a10d78f6ca6c9a188 100644 (file)
@@ -1,8 +1,9 @@
 /*
- * "$Id: scsi-irix.c 5241 2006-03-07 22:07:44Z mike $"
+ * "$Id: scsi-irix.c 6649 2007-07-11 21:46:42Z mike $"
  *
  *   IRIX SCSI printer support for the Common UNIX Printing System (CUPS).
  *
+ *   Copyright 2007 by Apple Inc.
  *   Copyright 2003-2005 by Easy Software Products, all rights reserved.
  *
  *   Redistribution and use in source and binary forms, with or
@@ -95,7 +96,7 @@ print_device(const char *resource,    /* I - SCSI device */
 
   if (strncmp(resource, "/dev/scsi/", 10) != 0)
   {
-    fprintf(stderr, "ERROR: Bad SCSI device file \"%s\"!\n", resource);
+    fprintf(stderr, _("ERROR: Bad SCSI device file \"%s\"!\n"), resource);
     return (CUPS_BACKEND_STOP);
   }
 
@@ -118,8 +119,8 @@ print_device(const char *resource,  /* I - SCSI device */
        * available printer in the class.
        */
 
-        fputs("INFO: Unable to open SCSI device, queuing on next printer in class...\n",
-             stderr);
+        fputs(_("INFO: Unable to contact printer, queuing on next "
+               "printer in class...\n"), stderr);
 
        /*
         * Sleep 5 seconds to keep the job from requeuing too rapidly...
@@ -132,14 +133,13 @@ print_device(const char *resource,        /* I - SCSI device */
 
       if (errno != EAGAIN && errno != EBUSY)
       {
-       fprintf(stderr, "ERROR: Unable to open SCSI device \"%s\" - %s\n",
-               resource, strerror(errno));
+       fprintf(stderr, _("ERROR: Unable to open device file \"%s\": %s\n"),
+               resource, strerror(errno));
        return (CUPS_BACKEND_FAILED);
       }
       else
       {
-        fprintf(stderr, "INFO: SCSI device \"%s\" busy; retrying...\n",
-               resource);
+        fputs(_("INFO: Printer busy; will retry in 30 seconds...\n"), stderr);
         sleep(30);
       }
     }
@@ -201,7 +201,8 @@ print_device(const char *resource,  /* I - SCSI device */
        if (ioctl(scsi_fd, DS_ENTER, &scsi_req) < 0 ||
             scsi_req.ds_status != 0)
         {
-         fprintf(stderr, "WARNING: SCSI command timed out (%d); retrying...\n",
+         fprintf(stderr,
+                 _("WARNING: SCSI command timed out (%d); retrying...\n"),
                  scsi_req.ds_status);
           sleep(try + 1);
        }
@@ -210,7 +211,7 @@ print_device(const char *resource,  /* I - SCSI device */
 
       if (try >= 10)
       {
-       fprintf(stderr, "ERROR: Unable to send print data (%d)\n",
+       fprintf(stderr, _("ERROR: Unable to send print data (%d)\n"),
                scsi_req.ds_status);
         close(scsi_fd);
        return (CUPS_BACKEND_FAILED);
@@ -231,5 +232,5 @@ print_device(const char *resource,  /* I - SCSI device */
 
 
 /*
- * End of "$Id: scsi-irix.c 5241 2006-03-07 22:07:44Z mike $".
+ * End of "$Id: scsi-irix.c 6649 2007-07-11 21:46:42Z mike $".
  */