summaryrefslogtreecommitdiff
path: root/ppdc/ppdc-file.cxx
diff options
context:
space:
mode:
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2008-10-10 21:00:18 +0000
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2008-10-10 21:00:18 +0000
commit61cf44e2b78833ba0e6ebdfb436009220c685b50 (patch)
tree0d04734bf97c8d463610bbc1a9bf5260d070d780 /ppdc/ppdc-file.cxx
parent076fd0e4fb3ff5d57b45831202e8091e35579993 (diff)
downloadcups-61cf44e2b78833ba0e6ebdfb436009220c685b50.tar.gz
Merge CUPS 1.4svn-r8052 (tentative 1.4b1)
git-svn-id: svn+ssh://src.apple.com/svn/cups/easysw/current@1009 a1ca3aef-8c08-0410-bb20-df032aa958be
Diffstat (limited to 'ppdc/ppdc-file.cxx')
-rw-r--r--ppdc/ppdc-file.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/ppdc/ppdc-file.cxx b/ppdc/ppdc-file.cxx
index 29f109ce2..7f05bb7eb 100644
--- a/ppdc/ppdc-file.cxx
+++ b/ppdc/ppdc-file.cxx
@@ -3,7 +3,7 @@
//
// File class for the CUPS PPD Compiler.
//
-// Copyright 2007 by Apple Inc.
+// Copyright 2007-2008 by Apple Inc.
// Copyright 2002-2005 by Easy Software Products.
//
// These coded instructions, statements, and computer programs are the
@@ -25,6 +25,7 @@
//
#include "ppdc.h"
+#include <cups/i18n.h>
//
@@ -46,7 +47,8 @@ ppdcFile::ppdcFile(const char *f, // I - File to open
line = 1;
if (!fp)
- fprintf(stderr, "ppdc: Unable to open %s: %s\n", f, strerror(errno));
+ _cupsLangPrintf(stderr, _("%s: Unable to open %s: %s\n"), "ppdc", f,
+ strerror(errno));
}