]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - pdftops/pdftops.cxx
Load cups into easysw/current.
[thirdparty/cups.git] / pdftops / pdftops.cxx
index cb3b55e4c9aebd27fae0203ec1345680f946e7a5..4e8d7279ff7b913a1b24e2b62d11049764f0cca6 100644 (file)
@@ -1,26 +1,17 @@
 //
-// "$Id: pdftops.cxx 6324 2007-03-11 02:09:46Z mike $"
+// "$Id: pdftops.cxx 6649 2007-07-11 21:46:42Z mike $"
 //
 //   PDF to PostScript filter front-end for the Common UNIX Printing
 //   System (CUPS).
 //
+//   Copyright 2007 by Apple Inc.
 //   Copyright 1997-2006 by Easy Software Products.
 //
 //   These coded instructions, statements, and computer programs are the
-//   property of Easy Software Products and are protected by Federal
-//   copyright law.  Distribution and use rights are outlined in the file
-//   "LICENSE.txt" which should have been included with this file.  If this
-//   file is missing or damaged please contact Easy Software Products
-//   at:
-//
-//       Attn: CUPS Licensing Information
-//       Easy Software Products
-//       44141 Airport View Drive, Suite 204
-//       Hollywood, Maryland 20636 USA
-//
-//       Voice: (301) 373-9600
-//       EMail: cups-info@cups.org
-//         WWW: http://www.cups.org
+//   property of Apple Inc. and are protected by Federal copyright
+//   law.  Distribution and use rights are outlined in the file "LICENSE.txt"
+//   which should have been included with this file.  If this file is
+//   file is missing or damaged, see the license at "http://www.cups.org/".
 //
 // Contents:
 //
@@ -35,6 +26,7 @@
 #include <stdlib.h>
 #include <stddef.h>
 #include <cups/string.h>
+#include <cups/i18n.h>
 #include "parseargs.h"
 #include "GString.h"
 #include "gmem.h"
@@ -92,14 +84,15 @@ main(int  argc,                             // I - Number of command-line args
 
   // Make sure we have the right number of arguments for CUPS!
   if (argc < 6 || argc > 7) {
-    fputs("Usage: pdftops job user title copies options [filename]\n", stderr);
+    fprintf(stderr, _("Usage: %s job user title copies options [filename]\n"),
+            argv[0]);
     return (1);
   }
 
   // Copy stdin if needed...
   if (argc == 6) {
     if ((fd = cupsTempFd(tempfile, sizeof(tempfile))) < 0) {
-      perror("ERROR: Unable to copy PDF file");
+      perror(_("ERROR: Unable to copy PDF file"));
       return (1);
     }
 
@@ -348,5 +341,5 @@ main(int  argc,                             // I - Number of command-line args
 
 
 //
-// End of "$Id: pdftops.cxx 6324 2007-03-11 02:09:46Z mike $".
+// End of "$Id: pdftops.cxx 6649 2007-07-11 21:46:42Z mike $".
 //