1*0Sstevel@tonic-gate/* 2*0Sstevel@tonic-gate * CDDL HEADER START 3*0Sstevel@tonic-gate * 4*0Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5*0Sstevel@tonic-gate * Common Development and Distribution License, Version 1.0 only 6*0Sstevel@tonic-gate * (the "License"). You may not use this file except in compliance 7*0Sstevel@tonic-gate * with the License. 8*0Sstevel@tonic-gate * 9*0Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10*0Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 11*0Sstevel@tonic-gate * See the License for the specific language governing permissions 12*0Sstevel@tonic-gate * and limitations under the License. 13*0Sstevel@tonic-gate * 14*0Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 15*0Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16*0Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 17*0Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 18*0Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 19*0Sstevel@tonic-gate * 20*0Sstevel@tonic-gate * CDDL HEADER END 21*0Sstevel@tonic-gate */ 22*0Sstevel@tonic-gate 23*0Sstevel@tonic-gate#pragma ident "%Z%%M% %I% %E% SMI" 24*0Sstevel@tonic-gate 25*0Sstevel@tonic-gate/* 26*0Sstevel@tonic-gate * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 27*0Sstevel@tonic-gate * Use is subject to license terms. 28*0Sstevel@tonic-gate */ 29*0Sstevel@tonic-gate 30*0Sstevel@tonic-gate/** 31*0Sstevel@tonic-gate ** 32*0Sstevel@tonic-gate ** This file contains definitions for the E_... symbols 33*0Sstevel@tonic-gate ** used with the LP_ERRMSG routines. The definitions are 34*0Sstevel@tonic-gate ** linked with the text in this file, but they have to be split: 35*0Sstevel@tonic-gate ** The E_... symbols go into a header file, and the text 36*0Sstevel@tonic-gate ** go into separate, compilable files. 37*0Sstevel@tonic-gate **/ 38*0Sstevel@tonic-gate 39*0Sstevel@tonic-gate/* 40*0Sstevel@tonic-gate * 41*0Sstevel@tonic-gate * Format of lines in this file: 42*0Sstevel@tonic-gate * 43*0Sstevel@tonic-gate * E_... 44*0Sstevel@tonic-gate * "text-for-error-message" 45*0Sstevel@tonic-gate * "text-for-TO-FIX-statement" 46*0Sstevel@tonic-gate * 47*0Sstevel@tonic-gate * Lines that DON'T begin with E_..., " (double quote), or # 48*0Sstevel@tonic-gate * (after leading spaces or tabs) are skipped. Thus these comment 49*0Sstevel@tonic-gate * lines are ignored, but the C preprocessor directives are kept. 50*0Sstevel@tonic-gate * 51*0Sstevel@tonic-gate * Note: The preprocessor directives DO NOT keep text from being 52*0Sstevel@tonic-gate * generated, nor do they keep the E_... symbols from being numbered 53*0Sstevel@tonic-gate * (which is consistent). The directives ARE useful for keeping them 54*0Sstevel@tonic-gate * from being needlessly defined in a program that includes "oam.h" 55*0Sstevel@tonic-gate */ 56*0Sstevel@tonic-gate 57*0Sstevel@tonic-gate#define I_AM_CANCEL 1 58*0Sstevel@tonic-gate#define I_AM_COMB 2 59*0Sstevel@tonic-gate#define I_AM_LP 3 60*0Sstevel@tonic-gate#define I_AM_LPADMIN 4 61*0Sstevel@tonic-gate#define I_AM_LPFILTER 5 62*0Sstevel@tonic-gate#define I_AM_LPFORMS 6 63*0Sstevel@tonic-gate#define I_AM_LPMOVE 7 64*0Sstevel@tonic-gate#define I_AM_LPNETWORK 8 65*0Sstevel@tonic-gate#define I_AM_LPPRIVATE 9 66*0Sstevel@tonic-gate#define I_AM_LPSCHED 10 67*0Sstevel@tonic-gate#define I_AM_LPSHUT 11 68*0Sstevel@tonic-gate#define I_AM_LPSTAT 12 69*0Sstevel@tonic-gate#define I_AM_LPUSERS 13 70*0Sstevel@tonic-gate#define I_AM_LPSYSTEM 14 71*0Sstevel@tonic-gate#define I_AM_OZ 99 72*0Sstevel@tonic-gate 73*0Sstevel@tonic-gate/** 74*0Sstevel@tonic-gate ** COMMON MESSAGES USED BY ALL PROGRAMS 75*0Sstevel@tonic-gate **/ 76*0Sstevel@tonic-gate 77*0Sstevel@tonic-gate/* DON'T TOUCH THE NEXT LINE */ 78*0Sstevel@tonic-gateE_LP__MSGS 79*0Sstevel@tonic-gate 80*0Sstevel@tonic-gateE_LP_OPTION 81*0Sstevel@tonic-gate "Unrecognized option \"%s\"." 82*0Sstevel@tonic-gate "" 83*0Sstevel@tonic-gateE_LP_MALLOC 84*0Sstevel@tonic-gate "Not enough memory." 85*0Sstevel@tonic-gate "Try again later or give a simpler\ncommand." 86*0Sstevel@tonic-gateE_LP_AGAIN 87*0Sstevel@tonic-gate "Another process is using the file\n\"%s\"." 88*0Sstevel@tonic-gate "Try again later." 89*0Sstevel@tonic-gateE_LP_ANYNONE 90*0Sstevel@tonic-gate "The names \"any\" and \"none\" are reserved." 91*0Sstevel@tonic-gate "You must use a different name." 92*0Sstevel@tonic-gateE_LP_ACCESS 93*0Sstevel@tonic-gate "Can't access the file\n\"%s\"." 94*0Sstevel@tonic-gate "Check its file permissions." 95*0Sstevel@tonic-gateE_LP_NOTNAME 96*0Sstevel@tonic-gate "\"%s\" doesn't have the correct syntax." 97*0Sstevel@tonic-gate "Give a name that has 1 to 14 letters,\ndigits, dashes, or underscores." 98*0Sstevel@tonic-gateE_LP_OPTARG 99*0Sstevel@tonic-gate "The option %s requires an argument." 100*0Sstevel@tonic-gate "" 101*0Sstevel@tonic-gateE_LP_UNKREQID 102*0Sstevel@tonic-gate "Request \"%s\" doesn't exist." 103*0Sstevel@tonic-gate "" 104*0Sstevel@tonic-gateE_LP_MSEND 105*0Sstevel@tonic-gate "Can't send message to the LP print service." 106*0Sstevel@tonic-gate "The LP print service apparently has been\nstopped. Get help from your system\nadministrator." 107*0Sstevel@tonic-gateE_LP_MRECV 108*0Sstevel@tonic-gate "Can't receive message from the LP print service." 109*0Sstevel@tonic-gate "The LP print service apparently has been\nstopped. Get help from your system\nadministrator." 110*0Sstevel@tonic-gateE_LP_BADSTATUS 111*0Sstevel@tonic-gate "Received unexpected status %d in a reply from the\nLP print service." 112*0Sstevel@tonic-gate "It's likely there is an error in this\nsoftware. Please get help from your\nsystem administrator." 113*0Sstevel@tonic-gateE_LP_PGONE 114*0Sstevel@tonic-gate "Printer \"%s\" has disappeared!" 115*0Sstevel@tonic-gate "The administrator should completely\nremove the printer." 116*0Sstevel@tonic-gateE_LP_PNBUSY 117*0Sstevel@tonic-gate "Printer \"%s\" was not busy." 118*0Sstevel@tonic-gate "" 119*0Sstevel@tonic-gateE_LP_MOPEN 120*0Sstevel@tonic-gate "Can't establish contact with the LP print service." 121*0Sstevel@tonic-gate "Either the LP print service has stopped,\nor all message channels are busy. If the\nproblem continues, get help from your\nsystem administrator." 122*0Sstevel@tonic-gateE_LP_MLATER 123*0Sstevel@tonic-gate "All message channels busy." 124*0Sstevel@tonic-gate "Try again later." 125*0Sstevel@tonic-gateE_LP_AMBIG 126*0Sstevel@tonic-gate "Ambiguous or invalid combination of\n%s and %s options." 127*0Sstevel@tonic-gate "Give only one of the two options." 128*0Sstevel@tonic-gateE_LP_2MANY 129*0Sstevel@tonic-gate "Multiple -%c options given." 130*0Sstevel@tonic-gate "The last one will be used;\nprocessing continues." 131*0Sstevel@tonic-gateE_LP_BADREPLY 132*0Sstevel@tonic-gate "Received unexpected message %d from the LP print service." 133*0Sstevel@tonic-gate "It's likely there is an error in this\nsoftware. Please get help from your\nsystem administrator." 134*0Sstevel@tonic-gateE_LP_DSTUNK 135*0Sstevel@tonic-gate "Destination \"%s\" is unknown to the\nLP print service." 136*0Sstevel@tonic-gate "" 137*0Sstevel@tonic-gateE_LP_NOTADM 138*0Sstevel@tonic-gate "You aren't allowed to do that." 139*0Sstevel@tonic-gate "You must be logged in as \"lp\" or \"root\"." 140*0Sstevel@tonic-gateE_LP_NODEST 141*0Sstevel@tonic-gate "No destinations specified." 142*0Sstevel@tonic-gate "" 143*0Sstevel@tonic-gateE_LP_BADFILE 144*0Sstevel@tonic-gate "Cannot access the file:\n%s." 145*0Sstevel@tonic-gate "Make sure file names are valid." 146*0Sstevel@tonic-gateE_LP_EMPTY 147*0Sstevel@tonic-gate "\"%s\" is empty." 148*0Sstevel@tonic-gate "" 149*0Sstevel@tonic-gateE_LP_NOFILES 150*0Sstevel@tonic-gate "No (or empty) input files." 151*0Sstevel@tonic-gate "" 152*0Sstevel@tonic-gateE_LP_OPTCOMB 153*0Sstevel@tonic-gate "Illegal combination of options." 154*0Sstevel@tonic-gate "Check the manual for proper usage." 155*0Sstevel@tonic-gateE_LP_NOSPACE 156*0Sstevel@tonic-gate "No space to allocate temp files." 157*0Sstevel@tonic-gate "Clean up disk, or try again later." 158*0Sstevel@tonic-gateE_LP_ISDIR 159*0Sstevel@tonic-gate "\"%s\" is a directory." 160*0Sstevel@tonic-gate "A regular file is needed here; check the\nname." 161*0Sstevel@tonic-gateE_LP_BADSCALE 162*0Sstevel@tonic-gate "Improper scaled decimal number." 163*0Sstevel@tonic-gate "Number must be greater than zero. You\ncan use only 'i' and 'c' for scaling\nnumbers ('i' inches, 'c' centimeters).\nFor setting cpi (horizontal pitch),\nsynonyms \"pica\", \"elite\", \"compressed\"\nare allowed." 164*0Sstevel@tonic-gateE_LP_EXTRA 165*0Sstevel@tonic-gate "Extra command line arguments starting with\n\"%s\"." 166*0Sstevel@tonic-gate "Processing continues, but check for a\nmissing option. Use the -? option to see\na list of valid options." 167*0Sstevel@tonic-gateE_LP_BADPRI 168*0Sstevel@tonic-gate "Bad priority value \"%s\"." 169*0Sstevel@tonic-gate "Use an integer value from 0 to 39." 170*0Sstevel@tonic-gateE_LP_2LATE 171*0Sstevel@tonic-gate "Request \"%s\" is done." 172*0Sstevel@tonic-gate "It is too late to do anything with it." 173*0Sstevel@tonic-gateE_LP_BUSY 174*0Sstevel@tonic-gate "Request \"%s\" is busy." 175*0Sstevel@tonic-gate "If the request is printing, disable the\nprinter and resubmit this command." 176*0Sstevel@tonic-gateE_LP_NULLARG 177*0Sstevel@tonic-gate "Null argument given for %s option." 178*0Sstevel@tonic-gate "You have to give a non-empty value for\nthis option." 179*0Sstevel@tonic-gateE_LP_BADOARG 180*0Sstevel@tonic-gate "Argument to option -%c is invalid: \"%s\"." 181*0Sstevel@tonic-gate "Re-enter with valid option arguments." 182*0Sstevel@tonic-gateE_LP_NEEDSCHED 183*0Sstevel@tonic-gate "The LP print service isn't running or can't be\nreached." 184*0Sstevel@tonic-gate "Your request can't be completely handled\nwithout the LP print service. If this\nproblem continues, get help from your\nsystem administrator." 185*0Sstevel@tonic-gateE_LP_BADDEST 186*0Sstevel@tonic-gate "Destination \"%s\" does not exist." 187*0Sstevel@tonic-gate "Use a printer or class that exists on\nthis system." 188*0Sstevel@tonic-gateE_LP_PUTCLASS 189*0Sstevel@tonic-gate "Error writing class \"%s\" to disk\n(%s)." 190*0Sstevel@tonic-gate "" 191*0Sstevel@tonic-gateE_LP_GETCLASS 192*0Sstevel@tonic-gate "Error reading class \"%s\" from disk\n(%s)." 193*0Sstevel@tonic-gate "" 194*0Sstevel@tonic-gateE_LP_DELCLASS 195*0Sstevel@tonic-gate "Error deleting class \"%s\" from disk\n(%s)." 196*0Sstevel@tonic-gate "" 197*0Sstevel@tonic-gateE_LP_GETPRINTER 198*0Sstevel@tonic-gate "Error reading printer information for \"%s\"\n(%s)." 199*0Sstevel@tonic-gate "" 200*0Sstevel@tonic-gateE_LP_PUTPRINTER 201*0Sstevel@tonic-gate "Error writing printer information for \"%s\"\n(%s)." 202*0Sstevel@tonic-gate "" 203*0Sstevel@tonic-gateE_LP_DELPRINTER 204*0Sstevel@tonic-gate "Error deleting printer information for \"%s\"\n(%s)." 205*0Sstevel@tonic-gate "" 206*0Sstevel@tonic-gateE_LP_GETFORM 207*0Sstevel@tonic-gate "Error reading form information for \"%s\"\n(%s)." 208*0Sstevel@tonic-gate "" 209*0Sstevel@tonic-gateE_LP_PUTFORM 210*0Sstevel@tonic-gate "Error writing form information for \"%s\"\n(%s)." 211*0Sstevel@tonic-gate "" 212*0Sstevel@tonic-gateE_LP_DELFORM 213*0Sstevel@tonic-gate "Error deleting form information for \"%s\"\n(%s)." 214*0Sstevel@tonic-gate "" 215*0Sstevel@tonic-gateE_LP_GETREQUEST 216*0Sstevel@tonic-gate "Error reading request file.\n(%s)." 217*0Sstevel@tonic-gate "" 218*0Sstevel@tonic-gateE_LP_PUTREQUEST 219*0Sstevel@tonic-gate "Error writing request file.\n(%s)." 220*0Sstevel@tonic-gate "" 221*0Sstevel@tonic-gateE_LP_NOCLASS 222*0Sstevel@tonic-gate "Class \"%s\" does not exist." 223*0Sstevel@tonic-gate "Use the \"lpstat -c all\" command to list\nall known classes." 224*0Sstevel@tonic-gateE_LP_NOPRINTER 225*0Sstevel@tonic-gate "Printer \"%s\" does not exist." 226*0Sstevel@tonic-gate "Use the \"lpstat -p all\" command to list\nall known printers." 227*0Sstevel@tonic-gateE_LP_NOFORM 228*0Sstevel@tonic-gate "Form \"%s\" does not exist." 229*0Sstevel@tonic-gate "Use the \"lpstat -f all\" command to list\nall known forms." 230*0Sstevel@tonic-gateE_LP_GETMSG 231*0Sstevel@tonic-gate "Failed to parse message from the LP print service.\n(%s)" 232*0Sstevel@tonic-gate "" 233*0Sstevel@tonic-gateE_LP_HAVEREQS 234*0Sstevel@tonic-gate "The LP print service isn't running." 235*0Sstevel@tonic-gate "Your request may affect print jobs, but\nthe LP print service isn't running to\nevaluate this. Start it by running the\n/usr/lib/lp/lpsched command." 236*0Sstevel@tonic-gateE_LP_DENYDEST 237*0Sstevel@tonic-gate "You are not allowed to use the destination\n\"%s\"." 238*0Sstevel@tonic-gate "Use the lpstat -p command to list all\nknown printers; you can use those marked\n\"available\"." 239*0Sstevel@tonic-gateE_LP_NOFILTER 240*0Sstevel@tonic-gate "There is no filter to convert the file content." 241*0Sstevel@tonic-gate "Use the lpstat -p -l command to find a\nprinter that can handle the file type\n directly, check your filters using lpfilter -f all -l, or consult with your system\nadministrator." 242*0Sstevel@tonic-gateE_LP_REQDENY 243*0Sstevel@tonic-gate "Requests for destination \"%s\" aren't\nbeing accepted." 244*0Sstevel@tonic-gate "Use the \"lpstat -a\" command to see why\nthis destination is not accepting\nrequests." 245*0Sstevel@tonic-gateE_LP_PTRCHK 246*0Sstevel@tonic-gate "The following options can't be handled:\n%s" 247*0Sstevel@tonic-gate "The printer(s) that otherwise qualify\nfor printing your request can't handle\none or more of these options. Try\nanother printer, or change the options." 248*0Sstevel@tonic-gateE_LP_MNOMEM 249*0Sstevel@tonic-gate "No room for this request!" 250*0Sstevel@tonic-gate "The spooling directory is full, or the\nLP print service can't allocate enough\nmemory for this request." 251*0Sstevel@tonic-gateE_LP_UALLOWDENY 252*0Sstevel@tonic-gate "Invalid argument to the -u option." 253*0Sstevel@tonic-gate "The argument must begin with either\n\"allow:\" or \"deny:\" and be followed with\na list of user names." 254*0Sstevel@tonic-gateE_LP_NOQUIET 255*0Sstevel@tonic-gate "No alerts are active for \"%s\"." 256*0Sstevel@tonic-gate "" 257*0Sstevel@tonic-gateE_LP_GARBNMB 258*0Sstevel@tonic-gate "Illegal value for the -%c option." 259*0Sstevel@tonic-gate "Give an integer value with this option." 260*0Sstevel@tonic-gateE_LP_NEGARG 261*0Sstevel@tonic-gate "Illegal value for the -%c option." 262*0Sstevel@tonic-gate "This must be a non-negative number, that\nis also small enough to be interpreted\ncorrectly (numbers too large might be\nconverted to negative values)." 263*0Sstevel@tonic-gateE_LP_GONEREMOTE 264*0Sstevel@tonic-gate "Request %s is on the remote system." 265*0Sstevel@tonic-gate "The LP print service currently does not\nallow you to change or move a request,\nonce it is on the remote system." 266*0Sstevel@tonic-gateE_LP_ZEROARG 267*0Sstevel@tonic-gate "Illegal value for the -%c option." 268*0Sstevel@tonic-gate "Give a positive value for the option." 269*0Sstevel@tonic-gateE_LP_MISSING 270*0Sstevel@tonic-gate "No list given after the \"%s:\"." 271*0Sstevel@tonic-gate "You seem to have left something out;\nhowever, processing of the rest of the\ncommand line options continues." 272*0Sstevel@tonic-gateE_LP_ACCESSINFO 273*0Sstevel@tonic-gate "Error writing access information to disk\n(%s)." 274*0Sstevel@tonic-gate "" 275*0Sstevel@tonic-gateE_LP_GARBAGE 276*0Sstevel@tonic-gate "Too many bad input lines." 277*0Sstevel@tonic-gate "Fix the input and try again." 278*0Sstevel@tonic-gateE_LP_USAGE 279*0Sstevel@tonic-gate "Unrecognized option \"%s\".\nEnter command with -? option for proper usage." 280*0Sstevel@tonic-gate "" 281*0Sstevel@tonic-gateE_LP_NOREQ 282*0Sstevel@tonic-gate "No request ids available." 283*0Sstevel@tonic-gate "Check for faulted or disabled printer(s) with \n\"lpstat -a\"." 284*0Sstevel@tonic-gateE_LP_LARGEFILE 285*0Sstevel@tonic-gate "Large File encountered, can't print:\n%s." 286*0Sstevel@tonic-gate "Make sure the file is not a Large File." 287*0Sstevel@tonic-gate/** 288*0Sstevel@tonic-gate ** MESSAGES FOR THE LPFILTER PROGRAM 289*0Sstevel@tonic-gate **/ 290*0Sstevel@tonic-gate 291*0Sstevel@tonic-gate/* DON'T TOUCH THE NEXT LINE */ 292*0Sstevel@tonic-gateE_FL__MSGS 293*0Sstevel@tonic-gate 294*0Sstevel@tonic-gate#if WHO_AM_I == I_AM_LPFILTER || WHO_AM_I == I_AM_OZ 295*0Sstevel@tonic-gate#define E_FL_IGNORE E_LP_EXTRA 296*0Sstevel@tonic-gate#define E_FL_GARBAGE E_LP_GARBAGE 297*0Sstevel@tonic-gate 298*0Sstevel@tonic-gateE_FL_ACCESS 299*0Sstevel@tonic-gate "Can't access filter table\n\"%s\"." 300*0Sstevel@tonic-gate "Check its file permissions." 301*0Sstevel@tonic-gateE_FL_ACCESSI 302*0Sstevel@tonic-gate "Can't access archived filter table\n\"%s\"." 303*0Sstevel@tonic-gate "Check its file permissions." 304*0Sstevel@tonic-gateE_FL_NOCMD 305*0Sstevel@tonic-gate "No command specified." 306*0Sstevel@tonic-gate "You must give a command or program name." 307*0Sstevel@tonic-gateE_FL_NOFACTY 308*0Sstevel@tonic-gate "No filters are archived." 309*0Sstevel@tonic-gate "See if any were installed originally." 310*0Sstevel@tonic-gateE_FL_FACTYNM 311*0Sstevel@tonic-gate "No filter by that name was archived." 312*0Sstevel@tonic-gate "Check the name again." 313*0Sstevel@tonic-gateE_FL_NOFILT 314*0Sstevel@tonic-gate "No filter name given." 315*0Sstevel@tonic-gate "You must specify a filter name;\nuse the -f option." 316*0Sstevel@tonic-gateE_FL_OPEN 317*0Sstevel@tonic-gate "Can't open the file for reading: \"%s\"" 318*0Sstevel@tonic-gate "Check that it exists and that you\ncan read it." 319*0Sstevel@tonic-gateE_FL_READ 320*0Sstevel@tonic-gate "Error reading input." 321*0Sstevel@tonic-gate "" 322*0Sstevel@tonic-gateE_FL_UNKFILT 323*0Sstevel@tonic-gate "No filter by the name \"%s\" exists." 324*0Sstevel@tonic-gate "Check the name again." 325*0Sstevel@tonic-gateE_FL_UNKNOWN 326*0Sstevel@tonic-gate "Error accessing filter table\n\"%s\"\n(%s)." 327*0Sstevel@tonic-gate "" 328*0Sstevel@tonic-gateE_FL_HEADING 329*0Sstevel@tonic-gate "Input line %d can not be used." 330*0Sstevel@tonic-gate "Fix the input if necessary;\nprocessing continues." 331*0Sstevel@tonic-gateE_FL_NOACT 332*0Sstevel@tonic-gate "Nothing to do." 333*0Sstevel@tonic-gate "You must give one of these options:\n-F, -, -x, -l." 334*0Sstevel@tonic-gateE_FL_NOTALL 335*0Sstevel@tonic-gate "Can't add a filter named \"all\"." 336*0Sstevel@tonic-gate "You must use another name." 337*0Sstevel@tonic-gateE_FL_STRANGE 338*0Sstevel@tonic-gate "Could not read all filters from table\n\"%s\"." 339*0Sstevel@tonic-gate "" 340*0Sstevel@tonic-gateE_FL_NOSPLOAD 341*0Sstevel@tonic-gate "The LP print service didn't load the filter table." 342*0Sstevel@tonic-gate "Try restarting the LP print service by\nrunning the /usr/lib/lp/lpsched command." 343*0Sstevel@tonic-gateE_FL_BADTEMPLATE 344*0Sstevel@tonic-gate "Missing option template." 345*0Sstevel@tonic-gate "There appears to be an incomplete option\ntemplate. This can be caused by a double\ncomma in the option list. Resubmit the\nentire input." 346*0Sstevel@tonic-gateE_FL_BADKEY 347*0Sstevel@tonic-gate "Unrecognized keyword in option template." 348*0Sstevel@tonic-gate "Resubmit the entire input. Check the\nlpfilter(1M) manual page for the list of\nvalid keywords." 349*0Sstevel@tonic-gateE_FL_BADPATT 350*0Sstevel@tonic-gate "Missing pattern in option template." 351*0Sstevel@tonic-gate "Resubmit the entire input; make sure all\noption templates include a keyword,\npattern, and replacement:\nkeyword pattern = replacement\n(e.g. MODES * = -m *)." 352*0Sstevel@tonic-gateE_FL_BADRESULT 353*0Sstevel@tonic-gate "Missing replacement in option template." 354*0Sstevel@tonic-gate "Resubmit the entire input; make sure all\noption templates include a keyword,\npattern, and replacement:\nkeyword pattern = replacement\n(e.g. MODES * = -m *)." 355*0Sstevel@tonic-gateE_FL_BADREGEX 356*0Sstevel@tonic-gate "Error in regular expression:\n %s" 357*0Sstevel@tonic-gate "Resubmit the entire input with the\ncorrect regular expression." 358*0Sstevel@tonic-gate#endif 359*0Sstevel@tonic-gate 360*0Sstevel@tonic-gate/** 361*0Sstevel@tonic-gate ** MESSAGES FOR THE CANCEL PROGRAM 362*0Sstevel@tonic-gate **/ 363*0Sstevel@tonic-gate 364*0Sstevel@tonic-gate/* DON'T TOUCH THE NEXT LINE */ 365*0Sstevel@tonic-gateE_CAN__MSGS 366*0Sstevel@tonic-gate 367*0Sstevel@tonic-gate#if WHO_AM_I == I_AM_CANCEL || WHO_AM_I == I_AM_OZ 368*0Sstevel@tonic-gate 369*0Sstevel@tonic-gateE_CAN_BADARG 370*0Sstevel@tonic-gate "\"%s\" is not a request id or a printer." 371*0Sstevel@tonic-gate "Cancel requests by id or by\nname of printer where printing." 372*0Sstevel@tonic-gateE_CAN_CANT 373*0Sstevel@tonic-gate "Can't cancel request \"%s\"." 374*0Sstevel@tonic-gate "You are not allowed to cancel\nanother's request." 375*0Sstevel@tonic-gateE_CAN_NOUSERP 376*0Sstevel@tonic-gate "No jobs on printer %s for user(s) %s." 377*0Sstevel@tonic-gate "Use the lpstat -o or lpstat -u commands\nto see what requests have been queued." 378*0Sstevel@tonic-gateE_CAN_ANYUSERP 379*0Sstevel@tonic-gate "No user has a job on printer %s." 380*0Sstevel@tonic-gate "Use the lpstat -o or lpstat -u commands\nto see what requests have been queued." 381*0Sstevel@tonic-gateE_CAN_NOUSERANYP 382*0Sstevel@tonic-gate "No jobs on any printer for user(s) %s." 383*0Sstevel@tonic-gate "Use the lpstat -o command to see what\nrequests have been queued." 384*0Sstevel@tonic-gateE_CAN_ANYUSERANYP 385*0Sstevel@tonic-gate "No requests queued." 386*0Sstevel@tonic-gate "" 387*0Sstevel@tonic-gateE_CAN_NOACT 388*0Sstevel@tonic-gate "Nothing to do." 389*0Sstevel@tonic-gate "You need to give a request ID or printer\nname, or the -u option to specify a user." 390*0Sstevel@tonic-gate 391*0Sstevel@tonic-gate#endif 392*0Sstevel@tonic-gate 393*0Sstevel@tonic-gate/** 394*0Sstevel@tonic-gate ** MESSAGES FOR THE ACCEPT, REJECT, ENABLE, DISABLE PROGRAMS 395*0Sstevel@tonic-gate **/ 396*0Sstevel@tonic-gate 397*0Sstevel@tonic-gate/* DON'T TOUCH THE NEXT LINE */ 398*0Sstevel@tonic-gateE_CMB__MSGS 399*0Sstevel@tonic-gate 400*0Sstevel@tonic-gate#if WHO_AM_I == I_AM_COMB || WHO_AM_I == I_AM_OZ 401*0Sstevel@tonic-gate 402*0Sstevel@tonic-gateE_REJ_2TIME 403*0Sstevel@tonic-gate "Destination \"%s\" was already\nnot accepting requests." 404*0Sstevel@tonic-gate "" 405*0Sstevel@tonic-gate 406*0Sstevel@tonic-gateE_ACC_2TIME 407*0Sstevel@tonic-gate "Destination \"%s\" was already accepting\nrequests." 408*0Sstevel@tonic-gate "" 409*0Sstevel@tonic-gate 410*0Sstevel@tonic-gateE_DIS_2TIME 411*0Sstevel@tonic-gate "Destination \"%s\" was already disabled." 412*0Sstevel@tonic-gate "" 413*0Sstevel@tonic-gateE_DIS_CLASS 414*0Sstevel@tonic-gate "\"%s\" is a class." 415*0Sstevel@tonic-gate "You can only disable printers, not\nclasses. If you want to prevent people\nfrom submitting requests to this class,\nuse the /usr/sbin/reject command." 416*0Sstevel@tonic-gate 417*0Sstevel@tonic-gateE_ENA_2TIME 418*0Sstevel@tonic-gate "Destination \"%s\" was already enabled." 419*0Sstevel@tonic-gate "" 420*0Sstevel@tonic-gateE_ENA_CLASS 421*0Sstevel@tonic-gate "\"%s\" is a class." 422*0Sstevel@tonic-gate "You can only enable printers, not\nclasses. If you want to allow people to\nsubmit requests to this class, use the\n/usr/sbin/accept command." 423*0Sstevel@tonic-gate 424*0Sstevel@tonic-gate#endif 425*0Sstevel@tonic-gate 426*0Sstevel@tonic-gate/** 427*0Sstevel@tonic-gate ** MESSAGES FOR THE LPMOVE PROGRAM 428*0Sstevel@tonic-gate **/ 429*0Sstevel@tonic-gate 430*0Sstevel@tonic-gate/* DON'T TOUCH THE NEXT LINE */ 431*0Sstevel@tonic-gateE_MOV__MSGS 432*0Sstevel@tonic-gate 433*0Sstevel@tonic-gate#if WHO_AM_I == I_AM_LPMOVE || WHO_AM_I == I_AM_OZ 434*0Sstevel@tonic-gate 435*0Sstevel@tonic-gateE_MOV_BADDEST 436*0Sstevel@tonic-gate "Request \"%s\" cannot be moved." 437*0Sstevel@tonic-gate "" 438*0Sstevel@tonic-gateE_MOV_NOMEDIA 439*0Sstevel@tonic-gate "Request \"%s\" cannot be moved." 440*0Sstevel@tonic-gate "The form or character set needed by the\nrequest no longer exists. You should\ncancel this request." 441*0Sstevel@tonic-gateE_MOV_DENYMEDIA 442*0Sstevel@tonic-gate "Request \"%s\" cannot be moved." 443*0Sstevel@tonic-gate "The form needed by the request is no\nlonger available to the user. You should\ncancel this request." 444*0Sstevel@tonic-gateE_MOV_NOMOUNT 445*0Sstevel@tonic-gate "Request \"%s\" cannot be moved." 446*0Sstevel@tonic-gate "The form needed by the request can't be\nmounted on the destined printer. Try\nanother destination, or wait for the\nrequest to finish printing or cancel it." 447*0Sstevel@tonic-gateE_MOV_PTRCHK 448*0Sstevel@tonic-gate "Request \"%s\" cannot be moved\nbecause the following options can't be handled:\n%s" 449*0Sstevel@tonic-gate "Try moving the request to another\ndestination, or wait for the request to\nfinish printing or cancel it." 450*0Sstevel@tonic-gateE_MOV_DENYDEST 451*0Sstevel@tonic-gate "Request \"%s\" cannot be moved." 452*0Sstevel@tonic-gate "The person who submitted the request is\nnot allowed to use the printer(s). Try\nanother destination, or wait for the\nrequest to finish printing or cancel it." 453*0Sstevel@tonic-gateE_MOV_NOFILTER 454*0Sstevel@tonic-gate "Request \"%s\" cannot be moved." 455*0Sstevel@tonic-gate "There is no filter to convert the file\ncontent for the printer(s). Try another\ndestination, or wait for the request to\nfinish printing or cancel it." 456*0Sstevel@tonic-gate 457*0Sstevel@tonic-gate#endif 458*0Sstevel@tonic-gate 459*0Sstevel@tonic-gate/** 460*0Sstevel@tonic-gate ** MESSAGES FOR THE LPUSERS PROGRAM 461*0Sstevel@tonic-gate **/ 462*0Sstevel@tonic-gate 463*0Sstevel@tonic-gate/* DON'T TOUCH THE NEXT LINE */ 464*0Sstevel@tonic-gateE_LPU__MSGS 465*0Sstevel@tonic-gate 466*0Sstevel@tonic-gate#if WHO_AM_I == I_AM_LPUSERS || WHO_AM_I == I_AM_OZ 467*0Sstevel@tonic-gate 468*0Sstevel@tonic-gateE_LPU_BADFILE 469*0Sstevel@tonic-gate "Bad file: %s, errno=%d." 470*0Sstevel@tonic-gate "" 471*0Sstevel@tonic-gateE_LPU_BADFORM 472*0Sstevel@tonic-gate "Bad user profile:\n\"%s\"." 473*0Sstevel@tonic-gate "" 474*0Sstevel@tonic-gateE_LPU_DEFTWICE 475*0Sstevel@tonic-gate "Default listed twice." 476*0Sstevel@tonic-gate "" 477*0Sstevel@tonic-gateE_LPU_NOLOAD 478*0Sstevel@tonic-gate "The LP print service did not load new priority\ndefinitions." 479*0Sstevel@tonic-gate "Try restarting the LP print service." 480*0Sstevel@tonic-gateE_LPU_BADU 481*0Sstevel@tonic-gate "Bad user specified: %s" 482*0Sstevel@tonic-gate "" 483*0Sstevel@tonic-gateE_LPU_NOUSER 484*0Sstevel@tonic-gate "User \"%s\" did not have a limit set\n(or is illegal)" 485*0Sstevel@tonic-gate "" 486*0Sstevel@tonic-gate 487*0Sstevel@tonic-gate#endif 488*0Sstevel@tonic-gate 489*0Sstevel@tonic-gate/** 490*0Sstevel@tonic-gate ** MESSAGES FOR THE LP PROGRAM 491*0Sstevel@tonic-gate **/ 492*0Sstevel@tonic-gate 493*0Sstevel@tonic-gate/* DON'T TOUCH THE NEXT LINE */ 494*0Sstevel@tonic-gateE_LPP__MSGS 495*0Sstevel@tonic-gate 496*0Sstevel@tonic-gate#if WHO_AM_I == I_AM_LP || WHO_AM_I == I_AM_OZ 497*0Sstevel@tonic-gate#define E_LPP_BADDEST E_LP_BADDEST 498*0Sstevel@tonic-gate 499*0Sstevel@tonic-gateE_LPP_ILLARG 500*0Sstevel@tonic-gate "Illegal file arguments with change request." 501*0Sstevel@tonic-gate "To change which files should be printed,\ncancel this request and resubmit it." 502*0Sstevel@tonic-gateE_LPP_NOSTART 503*0Sstevel@tonic-gate "End change received, but no start." 504*0Sstevel@tonic-gate "Internal error, report to administrator." 505*0Sstevel@tonic-gateE_LPP_FPUTREQ 506*0Sstevel@tonic-gate "Could not write request." 507*0Sstevel@tonic-gate "" 508*0Sstevel@tonic-gateE_LPP_FGETREQ 509*0Sstevel@tonic-gate "Could not read request \"%s\"." 510*0Sstevel@tonic-gate "Check argument to -i option." 511*0Sstevel@tonic-gateE_LPP_NODEST 512*0Sstevel@tonic-gate "No default destination." 513*0Sstevel@tonic-gate "You must identify which printer should\nhandle your request by naming it or a\nclass of printers (-d name) or by naming\na type of printer (-T type)." 514*0Sstevel@tonic-gateE_LPP_NOMEDIA 515*0Sstevel@tonic-gate "Form or character set not available." 516*0Sstevel@tonic-gate "Check the spelling of the form/character\nset name. Use the lpstat -f -S command\nto list all known forms and character\nsets." 517*0Sstevel@tonic-gateE_LPP_DENYMEDIA 518*0Sstevel@tonic-gate "You are not allowed to use the form\n\"%s\"." 519*0Sstevel@tonic-gate "Use the lpstat -f command to list all\nknown forms; you can use those marked\n\"available\"." 520*0Sstevel@tonic-gateE_LPP_NOMOUNT 521*0Sstevel@tonic-gate "The form or print wheel can't be used." 522*0Sstevel@tonic-gate "The printer(s) that otherwise qualify\nfor printing your request are not\nallowed to have the form or print wheel\nmounted. Use the lpstat -p -l command\nto list printers where it (they) can be\nmounted." 523*0Sstevel@tonic-gateE_LPP_COMBMW 524*0Sstevel@tonic-gate "Illegal combination of -w and -m options." 525*0Sstevel@tonic-gate "Notification will be by mail only;\nthe \"-w\" option is ignored." 526*0Sstevel@tonic-gateE_LPP_NOOPEN 527*0Sstevel@tonic-gate "The LP print service could not read your request\nfile." 528*0Sstevel@tonic-gate "See if the spooling file system is full.\nGet help from your system administrator." 529*0Sstevel@tonic-gateE_LPP_FORMCHARSET 530*0Sstevel@tonic-gate "The character set can't be used with the form." 531*0Sstevel@tonic-gate "Since the form is defined as needing a\nparticular character set, just resubmit\nthe command without the -S option." 532*0Sstevel@tonic-gateE_LPP_CURDIR 533*0Sstevel@tonic-gate "Can't determine the current directory." 534*0Sstevel@tonic-gate "The LP print service can not determine\nwhere all your files are located because\nit doesn't have the same current\ndirectory. Give the -c option to copy\nthe file(s)." 535*0Sstevel@tonic-gateE_LPP_ODDFILE 536*0Sstevel@tonic-gate "One or more files can't be used or found." 537*0Sstevel@tonic-gate "Either the files are illegal (fifos,\nblock devices, etc.), or can't be found\nby the LP print service. The latter\ntypically happens when your files are on\nlocal resources not accessible over RFS." 538*0Sstevel@tonic-gate 539*0Sstevel@tonic-gate#endif 540*0Sstevel@tonic-gate 541*0Sstevel@tonic-gate/** 542*0Sstevel@tonic-gate ** MESSAGES FOR THE LPSHUT PROGRAM 543*0Sstevel@tonic-gate **/ 544*0Sstevel@tonic-gate 545*0Sstevel@tonic-gate/* DON'T TOUCH THE NEXT LINE */ 546*0Sstevel@tonic-gateE_SHT__MSGS 547*0Sstevel@tonic-gate 548*0Sstevel@tonic-gate#if WHO_AM_I == I_AM_LPSHUT || WHO_AM_I == I_AM_OZ 549*0Sstevel@tonic-gate 550*0Sstevel@tonic-gateE_SHT_CANT 551*0Sstevel@tonic-gate "You can't shut down the LP print service." 552*0Sstevel@tonic-gate "You must be logged in as \"lp\" or \"root\"." 553*0Sstevel@tonic-gate 554*0Sstevel@tonic-gate#endif 555*0Sstevel@tonic-gate 556*0Sstevel@tonic-gate/** 557*0Sstevel@tonic-gate ** MESSAGES FOR THE LPADMIN PROGRAM 558*0Sstevel@tonic-gate **/ 559*0Sstevel@tonic-gate 560*0Sstevel@tonic-gate/* DON'T TOUCH THE NEXT LINE */ 561*0Sstevel@tonic-gateE_ADM__MSGS 562*0Sstevel@tonic-gate 563*0Sstevel@tonic-gate#if WHO_AM_I == I_AM_LPADMIN || WHO_AM_I == I_AM_OZ 564*0Sstevel@tonic-gate#define E_ADM_ZEROARG E_LP_ZEROARG 565*0Sstevel@tonic-gate#define E_ADM_MISSING E_LP_MISSING 566*0Sstevel@tonic-gate#define E_ADM_ACCESSINFO E_LP_ACCESSINFO 567*0Sstevel@tonic-gate 568*0Sstevel@tonic-gateE_ADM_NOTLOCAL 569*0Sstevel@tonic-gate "You have specified a remote printer\nand supplied one or more of the following\noptions: A,a,e,F,H,h,i,l,m,M,o,U,v,Q,W." 570*0Sstevel@tonic-gate "" 571*0Sstevel@tonic-gateE_ADM_ANYALLSYS 572*0Sstevel@tonic-gate "The names \"any\" and \"all\" are reserved." 573*0Sstevel@tonic-gate "You must use a system name that has\nbeen defined with the lpsystem command." 574*0Sstevel@tonic-gateE_ADM_DALONE 575*0Sstevel@tonic-gate "Other options given with -d option." 576*0Sstevel@tonic-gate "Give only the -d option to define\na default destination." 577*0Sstevel@tonic-gateE_ADM_XALONE 578*0Sstevel@tonic-gate "Other options given with -x option." 579*0Sstevel@tonic-gate "Give only the -x option to delete a\nprinter." 580*0Sstevel@tonic-gateE_ADM_SALONE 581*0Sstevel@tonic-gate "Confusing options given." 582*0Sstevel@tonic-gate "You are either missing the -p option or\nhave given extraneous options while\ntrying to define alerting for a\nprint wheel." 583*0Sstevel@tonic-gateE_ADM_JALONE 584*0Sstevel@tonic-gate "Wrong combination of options." 585*0Sstevel@tonic-gate "The -j option should not be given when\nadding a new printer." 586*0Sstevel@tonic-gateE_ADM_MNTNONE 587*0Sstevel@tonic-gate "Nothing to mount." 588*0Sstevel@tonic-gate "Give the -f or -S option to identify\nform or print wheel to mount." 589*0Sstevel@tonic-gateE_ADM_PNOQ 590*0Sstevel@tonic-gate "Illegal use of the -Q option." 591*0Sstevel@tonic-gate "Don't give the -Q option when setting\na printer fault alert." 592*0Sstevel@tonic-gateE_ADM_NODEST 593*0Sstevel@tonic-gate "Destination \"%s\" doesn't exist." 594*0Sstevel@tonic-gate "Check the name again. Use the lpstat -p\nor lpstat -c command to see if the\nprinter or class exists." 595*0Sstevel@tonic-gateE_ADM_NOACT 596*0Sstevel@tonic-gate "Nothing to do." 597*0Sstevel@tonic-gate "You must give one of these options:\n-p, -d, -x, -S." 598*0Sstevel@tonic-gateE_ADM_CNOU 599*0Sstevel@tonic-gate "No -u option given." 600*0Sstevel@tonic-gate "Give the -C option only with the\n-u option." 601*0Sstevel@tonic-gateE_ADM_JNOF 602*0Sstevel@tonic-gate "No -F option given." 603*0Sstevel@tonic-gate "Give the -j option only with the\n-F option." 604*0Sstevel@tonic-gateE_ADM_2MANY 605*0Sstevel@tonic-gate "Multiple -o %s options given." 606*0Sstevel@tonic-gate "The last one will be used;\nprocessing continues." 607*0Sstevel@tonic-gateE_ADM_QUOTES 608*0Sstevel@tonic-gate "Missing right %c quote in stty= argument." 609*0Sstevel@tonic-gate "" 610*0Sstevel@tonic-gateE_ADM_BADTYPE 611*0Sstevel@tonic-gate "Printer type \"%s\" is not in the\nTerminfo database." 612*0Sstevel@tonic-gate "Check the name again; if it is correct\nyou have to make an entry for it in the\nTerminfo database." 613*0Sstevel@tonic-gateE_ADM_MIXEDTYPES 614*0Sstevel@tonic-gate "Inconsistent printer types." 615*0Sstevel@tonic-gate "The printer types do not agree on\nwhether the printer takes print wheels\nor not. Check the printer types or the\nTerminfo database." 616*0Sstevel@tonic-gateE_ADM_MUNKNOWN 617*0Sstevel@tonic-gate "\"unknown\" not allowed with multiple printer types." 618*0Sstevel@tonic-gate "Your list of printer types includes the\ntype \"unknown\"; either remove that type\nfrom the list or give just the type\n\"unknown\"." 619*0Sstevel@tonic-gateE_ADM_BADCAP 620*0Sstevel@tonic-gate "\"%s\" setting impossible." 621*0Sstevel@tonic-gate "" 622*0Sstevel@tonic-gateE_ADM_BADCAPS 623*0Sstevel@tonic-gate "The printer can't handle all the above setting(s)." 624*0Sstevel@tonic-gate "Check the manual for the printer to make\nsure each value is correct; check that\nthe Terminfo entry/entries are correct." 625*0Sstevel@tonic-gateE_ADM_NBADCAPS 626*0Sstevel@tonic-gate "Settings won't work on these printer types:\n %s" 627*0Sstevel@tonic-gate "The incompatible settings won't be\napplied when these types are used to\nprint a request. Change the settings or\nlist of types, if you want." 628*0Sstevel@tonic-gateE_ADM_PRCL 629*0Sstevel@tonic-gate "Can't create the printer \"%s\"." 630*0Sstevel@tonic-gate "This is an existing class name;\nchoose another name." 631*0Sstevel@tonic-gateE_ADM_NOUV 632*0Sstevel@tonic-gate "Missing -U or -v option." 633*0Sstevel@tonic-gate "Local printers must have\na port defined (-v option) or\nhave dial-out instructions (-U option)." 634*0Sstevel@tonic-gateE_ADM_BOTHUV 635*0Sstevel@tonic-gate "Both -U and -v given." 636*0Sstevel@tonic-gate "Give only one of these options, the\n-v option to name the direct connect\nport or the -U to identify the dial-out\nmethod." 637*0Sstevel@tonic-gateE_ADM_NOTMEM 638*0Sstevel@tonic-gate "The printer \"%s\" is not a member of\nthe class \"%s\"." 639*0Sstevel@tonic-gate "Use the lpstat -c command to find the\ncorrect class." 640*0Sstevel@tonic-gateE_ADM_TOPT 641*0Sstevel@tonic-gate "No printer type (-T option) given." 642*0Sstevel@tonic-gate "The printer type must be known:\n* to set default cpi, lpi, length, width\n* to define character sets, print wheels\n* to allow forms." 643*0Sstevel@tonic-gateE_ADM_INTCONF 644*0Sstevel@tonic-gate "The options -e, -i and -m are mutually exclusive." 645*0Sstevel@tonic-gate "Give just one of these options to define\nan interface program." 646*0Sstevel@tonic-gateE_ADM_NOPR 647*0Sstevel@tonic-gate "The printer \"%s\" does not exist." 648*0Sstevel@tonic-gate "You must give the name of an existing\nprinter in the -e option." 649*0Sstevel@tonic-gateE_ADM_SAMEPE 650*0Sstevel@tonic-gate "The -p and -e options have the same value." 651*0Sstevel@tonic-gate "You must name a different printer\nin the -e option." 652*0Sstevel@tonic-gateE_ADM_SAMECR 653*0Sstevel@tonic-gate "The -c and -r options have the same value." 654*0Sstevel@tonic-gate "Don't try to remove the printer from the\nsame class to which you are adding it." 655*0Sstevel@tonic-gateE_ADM_NOMODEL 656*0Sstevel@tonic-gate "The model \"%s\" does not exist." 657*0Sstevel@tonic-gate "Use the command\n ls /usr/lib/lp/model\nto find the list of known models." 658*0Sstevel@tonic-gateE_ADM_CONFLICT 659*0Sstevel@tonic-gate "The options \"-%c\" and \"-%c\" are contradictory." 660*0Sstevel@tonic-gate "Give the -l option if the printer is\nalso a login terminal, give the\n-h option if it is not." 661*0Sstevel@tonic-gateE_ADM_ISDIR 662*0Sstevel@tonic-gate "\"%s\" is a directory." 663*0Sstevel@tonic-gate "If this is not what you intended, enter\nthe command again with the correct name." 664*0Sstevel@tonic-gateE_ADM_ISBLK 665*0Sstevel@tonic-gate "\"%s\" is a block device." 666*0Sstevel@tonic-gate "If this is not what you intended, enter\nthe command again with the correct name." 667*0Sstevel@tonic-gateE_ADM_ISMISMATCH 668*0Sstevel@tonic-gate "\"%s\" is a symlink that points to a file with a different owner." 669*0Sstevel@tonic-gate "Retry this operation with a new device." 670*0Sstevel@tonic-gateE_ADM_ISNOTROOTOWNED 671*0Sstevel@tonic-gate "\"%s\" is a symlink owned by an unprivileged user.\nThis introduces a potential security hole in your configuration." 672*0Sstevel@tonic-gate "If this is not what you intended, enter\nthe command again with the correct name." 673*0Sstevel@tonic-gateE_ADM_DEVACCESS 674*0Sstevel@tonic-gate "\"%s\" is accessible by others." 675*0Sstevel@tonic-gate "If other users can access it you may get\nunwanted output. If this is not what you\nwant change the owner to \"lp\" and change\nthe mode to 0600.\nProcessing continues." 676*0Sstevel@tonic-gateE_ADM_NOENT 677*0Sstevel@tonic-gate "\"%s\" doesn't exist." 678*0Sstevel@tonic-gate "Create the file, special device, or FIFO\nfor the -v option before running this\ncommand." 679*0Sstevel@tonic-gateE_ADM_INCLASS 680*0Sstevel@tonic-gate "The printer \"%s\" is already a member\nof the class \"%s\"." 681*0Sstevel@tonic-gate "If you made a mistake, rerun the command\nwith the correct names;\nprocessing continues." 682*0Sstevel@tonic-gateE_ADM_GETCLASSES 683*0Sstevel@tonic-gate "Error reading all classes from disk\n(%s)." 684*0Sstevel@tonic-gate "" 685*0Sstevel@tonic-gateE_ADM_GETPRINTERS 686*0Sstevel@tonic-gate "Error reading all printers from disk\n(%s)." 687*0Sstevel@tonic-gate "" 688*0Sstevel@tonic-gateE_ADM_FALLOWDENY 689*0Sstevel@tonic-gate "Invalid argument to the -f option." 690*0Sstevel@tonic-gate "The argument must begin with either\n\"allow:\" or \"deny:\" and be followed with\na list of form names. On the other hand,\nperhaps you forgot the -M option?" 691*0Sstevel@tonic-gateE_ADM_ICKFORM 692*0Sstevel@tonic-gate "Form \"%s\" is not listed as available\nfor the printer \"%s\"." 693*0Sstevel@tonic-gate "Check the name; if wrong enter the\ncommand again.\nProcessing continues." 694*0Sstevel@tonic-gateE_ADM_PWHEELS 695*0Sstevel@tonic-gate "-S must not give a character set map." 696*0Sstevel@tonic-gate "The printer takes only print wheels.\nFix the type or change the value in the\n-S option." 697*0Sstevel@tonic-gateE_ADM_CHARSETS 698*0Sstevel@tonic-gate "-S must give a character set map." 699*0Sstevel@tonic-gate "The printer has only selectable\ncharacter sets. Fix the type or change\nthe value in the -S option." 700*0Sstevel@tonic-gateE_ADM_BADSET 701*0Sstevel@tonic-gate "Illegal character set \"%s\"." 702*0Sstevel@tonic-gate "" 703*0Sstevel@tonic-gateE_ADM_NBADSET 704*0Sstevel@tonic-gate "Character set \"%s\" won't work with\nthese printer types:\n %s" 705*0Sstevel@tonic-gate "" 706*0Sstevel@tonic-gateE_ADM_BADSETS 707*0Sstevel@tonic-gate "The printer's type(s) don't have the\nabove character sets defined." 708*0Sstevel@tonic-gate "Check the manual for the printer to make\nsure each name is correct; check that\nthe Terminfo entry/entries are correct." 709*0Sstevel@tonic-gateE_ADM_NOPWHEEL 710*0Sstevel@tonic-gate "The printer doesn't take print wheels." 711*0Sstevel@tonic-gate "Check that you named the right printer.\nCheck that the Terminfo database is\ncorrect; if wrong, fix it and add the\nprint wheel list for the printer." 712*0Sstevel@tonic-gateE_ADM_ICKPWHEEL 713*0Sstevel@tonic-gate "Print wheel \"%s\" is not listed as\navailable for the printer \"%s\"." 714*0Sstevel@tonic-gate "Check the name; if wrong enter the\ncommand again with the correct name.\nProcessing continues." 715*0Sstevel@tonic-gateE_ADM_MNTLATER 716*0Sstevel@tonic-gate "The printer is busy; can't mount/unmount now." 717*0Sstevel@tonic-gate "Wait until the current job(s) are\nfinished, or disable the printer." 718*0Sstevel@tonic-gateE_ADM_NOMEDIA 719*0Sstevel@tonic-gate "Can't mount/unmount the form or print wheel." 720*0Sstevel@tonic-gate "Check the name. The one you gave isn't\nrecognized." 721*0Sstevel@tonic-gateE_ADM_DELSTRANGE 722*0Sstevel@tonic-gate "Strange, the LP print service took the request to\ndelete printer or class \"%s\" but the disk copy\ncan't be deleted.\n(%s)" 723*0Sstevel@tonic-gate "" 724*0Sstevel@tonic-gateE_ADM_DESTBUSY 725*0Sstevel@tonic-gate "There are jobs currently queued for destination\n\"%s\"" 726*0Sstevel@tonic-gate "Use the /usr/sbin/lpmove command to\nassign them to another destination,\nor wait for them to finish printing." 727*0Sstevel@tonic-gateE_ADM_WRDEFAULT 728*0Sstevel@tonic-gate "Error writing default destination\n(%s)." 729*0Sstevel@tonic-gate "" 730*0Sstevel@tonic-gateE_ADM_PUTPWHEEL 731*0Sstevel@tonic-gate "Error writing print wheel information for \"%s\"\n(%s)." 732*0Sstevel@tonic-gate "" 733*0Sstevel@tonic-gateE_ADM_FBAD 734*0Sstevel@tonic-gate "Illegal value for the -F option" 735*0Sstevel@tonic-gate "You must give one of the values\n\"continue\", \"wait\", or \"beginning\"." 736*0Sstevel@tonic-gate#if defined(J_OPTION) 737*0Sstevel@tonic-gateE_ADM_FBADJ 738*0Sstevel@tonic-gate "Illegal value for the -F option" 739*0Sstevel@tonic-gate "You must give one of the values\n\"wait\" or \"beginning\".\n(\"continue\" is not allowed if you also\ngive the -j option.)" 740*0Sstevel@tonic-gate#endif 741*0Sstevel@tonic-gateE_ADM_BADO 742*0Sstevel@tonic-gate "\"%s\" is an illegal value for the\n-o option" 743*0Sstevel@tonic-gate "You must give one of the values\nbanner, nobanner,\ncpi=X, lpi=X, width=X, length=X,\nstty=... (if ... is a list, surround IT\nwith single quotes (') and put the whole\nthing in double quotes (\")),\nor filebreak or nofilebreak (with -a)." 744*0Sstevel@tonic-gateE_ADM_FORMCAP 745*0Sstevel@tonic-gate "The form \"%s\" requires capabilities\nnot provided by the printer." 746*0Sstevel@tonic-gate "" 747*0Sstevel@tonic-gateE_ADM_FORMCAPS 748*0Sstevel@tonic-gate "Can't allow one or more forms." 749*0Sstevel@tonic-gate "You have to adjust each form definition,\nif possible. Leave each form out of the\nallow list to continue defining the\nprinter." 750*0Sstevel@tonic-gateE_ADM_BADINTF 751*0Sstevel@tonic-gate "Can't access the file \"%s\"\nto copy the interface program." 752*0Sstevel@tonic-gate "Make sure the name is correct;\nmake sure the file exists." 753*0Sstevel@tonic-gateE_ADM_CLPR 754*0Sstevel@tonic-gate "Can't create class \"%s\"." 755*0Sstevel@tonic-gate "This is an existing printer name;\nchoose another name." 756*0Sstevel@tonic-gateE_ADM_BADQUIETORLIST 757*0Sstevel@tonic-gate "Illegal -A option for printer/print wheel\n\"%s\"." 758*0Sstevel@tonic-gate "You can't give the -A quiet or the\n-A list option for a printer or print\nwheel that doesn't exist yet." 759*0Sstevel@tonic-gateE_ADM_PLONELY 760*0Sstevel@tonic-gate "Nothing to do." 761*0Sstevel@tonic-gate "The -p option identifies a printer; give\nother options to do something with it." 762*0Sstevel@tonic-gateE_ADM_NOAWQ 763*0Sstevel@tonic-gate "Nothing to do." 764*0Sstevel@tonic-gate "The -S option identifies a print wheel;\ngive a -A, -W, and/or -Q option to set\nor change the alerting for it." 765*0Sstevel@tonic-gateE_ADM_MALIGN 766*0Sstevel@tonic-gate "Missing the -M or -f option" 767*0Sstevel@tonic-gate "The -a option asks for an alignment\npattern, but you need to tell what form\nto mount." 768*0Sstevel@tonic-gateE_ADM_NOALIGN 769*0Sstevel@tonic-gate "No alignment pattern has been registered with\nthe form \"%s\"." 770*0Sstevel@tonic-gate "The form will be mounted anyway. If you\nneed to check the alignment of the form,\nregister an alignment pattern using the\nlpforms command, unmount the form, then\nissue this command again." 771*0Sstevel@tonic-gateE_ADM_LISTWQ 772*0Sstevel@tonic-gate "Illegal combination of options." 773*0Sstevel@tonic-gate "Don't give the \"-A list\" option with the\n-W or -Q options." 774*0Sstevel@tonic-gateE_ADM_NOPSPACE 775*0Sstevel@tonic-gate "The LP print service can't take another printer." 776*0Sstevel@tonic-gate "The printer configuration has been saved\non disk nonetheless. Stop the LP print\nservice (/usr/sbin/lpshut) and restart it\n(/usr/lib/lp/lpsched) to have it recognize\nthe new printer." 777*0Sstevel@tonic-gateE_ADM_NOCSPACE 778*0Sstevel@tonic-gate "The LP print service can't take another class." 779*0Sstevel@tonic-gate "The class configuration has been saved\non disk nonetheless. Stop the LP print\nservice (/usr/sbin/lpshut) and restart it\n(/usr/lib/lp/lpsched) to have it\nrecognize the new class." 780*0Sstevel@tonic-gateE_ADM_NOPWSPACE 781*0Sstevel@tonic-gate "The LP print service can't take in another print\nwheel alert." 782*0Sstevel@tonic-gate "The alert configuration has been saved\non disk nonetheless. Stop the LP print\nservice (/usr/sbin/lpshut) and restart it\n(/usr/lib/lp/lpsched) to have it\nrecognize the new print wheel alert." 783*0Sstevel@tonic-gateE_ADM_BADMOUNT 784*0Sstevel@tonic-gate "Shouldn't mount the form." 785*0Sstevel@tonic-gate "You may want to adjust the form\ndefinition, if possible. Check that the\nTerminfo database gives correct\nattributes for the printer type.\nThe form is considered mounted anyway." 786*0Sstevel@tonic-gateE_ADM_NBADMOUNT 787*0Sstevel@tonic-gate "The form \"%s\" won't work with these\nprinter types:\n %s" 788*0Sstevel@tonic-gate "" 789*0Sstevel@tonic-gateE_ADM_CLNPR 790*0Sstevel@tonic-gate "Can't create both class and printer \"%s\"." 791*0Sstevel@tonic-gate "Make the two names different." 792*0Sstevel@tonic-gateE_ADM_GETSYS 793*0Sstevel@tonic-gate "Error reading system information for \"%s\"\n(%s)." 794*0Sstevel@tonic-gate "" 795*0Sstevel@tonic-gateE_ADM_NOSYS 796*0Sstevel@tonic-gate "System \"%s\" does not exist." 797*0Sstevel@tonic-gate "Use the \"lpsystem -l\" command to list\nall known systems." 798*0Sstevel@tonic-gateE_ADM_NAMEONLOCAL 799*0Sstevel@tonic-gate "You may not specify a remote printer\nname with a local system name." 800*0Sstevel@tonic-gate "Either specify a remote system name\nor omit the remote printer name." 801*0Sstevel@tonic-gateE_ADM_ANYALLNONE 802*0Sstevel@tonic-gate "The names \"any\", \"all\" and \"none\" are reserved." 803*0Sstevel@tonic-gate "Use a different name when adding a\nprinter. The name \"all\" can be used with\nthe -A, -x, -r, or -c options." 804*0Sstevel@tonic-gateE_ADM_NFIFO 805*0Sstevel@tonic-gate "Can't open FIFO to print alignment pattern.\n(%s)" 806*0Sstevel@tonic-gate "" 807*0Sstevel@tonic-gateE_ADM_NFILTER 808*0Sstevel@tonic-gate "No filter to convert the alignment pattern." 809*0Sstevel@tonic-gate "The printer can't print the alignment\npattern directly, and there's no filter\nthat will convert it. Check the form\ndefinition. Check the printer type." 810*0Sstevel@tonic-gateE_ADM_NPAGES 811*0Sstevel@tonic-gate "There may be extra lines in the alignment pattern." 812*0Sstevel@tonic-gate "If the printed alignment pattern is too\nlong, either add a filter that can print\na subset of pages or redefine the form\nwith a manually truncated pattern.\nProcessing continues." 813*0Sstevel@tonic-gateE_ADM_FILEBREAK 814*0Sstevel@tonic-gate "Ignoring the -o filebreak option." 815*0Sstevel@tonic-gate "This is only used with the -a option\nwhen mounting a form, to insert a page\nbreak between alignment patterns.\nPerhaps you left out the -a option?" 816*0Sstevel@tonic-gateE_ADM_UNALIGN 817*0Sstevel@tonic-gate "Ignoring the -a option." 818*0Sstevel@tonic-gate "This is only used when MOUNTING a form,\nto print a pattern to help you align it.\nUnmounting a form means you're replacing\nit with blank paper, which needs no\nalignment." 819*0Sstevel@tonic-gateE_ADM_ERRDEST 820*0Sstevel@tonic-gate "The LP print service could not read the disk file\ncontaining this configuration information." 821*0Sstevel@tonic-gate "This is probably due to a full spooling\nfile system. If it is, clean out files\nto free up space, then resubmit this\ncommand." 822*0Sstevel@tonic-gateE_ADM_MANDCHSET 823*0Sstevel@tonic-gate "The form requires the character set\n\"%s\"." 824*0Sstevel@tonic-gate "Check the form name and form definition.\nSince a particular character set is\nmandatory with this form but the printer\ncan't select that character set, you\ncan't mount the form on this printer." 825*0Sstevel@tonic-gateE_ADM_MANDPWHEEL1 826*0Sstevel@tonic-gate "The form requires the print wheel\n\"%s\"." 827*0Sstevel@tonic-gate "This print wheel has been listed as\nmandatory for the form, but it is not\ncurrently mounted. If you don't want the\ncurrent print wheel used, enter the\ncommand again, and identify the print\nwheel to be mounted." 828*0Sstevel@tonic-gateE_ADM_MANDPWHEEL2 829*0Sstevel@tonic-gate "The form requires the print wheel\n\"%s\"." 830*0Sstevel@tonic-gate "This print wheel has been listed as\nmandatory for the form. If you made a\nmistake, enter the command again and\nchange the print wheel to be mounted." 831*0Sstevel@tonic-gateE_ADM_ASINGLES 832*0Sstevel@tonic-gate "Only one print wheel at a time, please." 833*0Sstevel@tonic-gate "You can only give a single print wheel\nname, not a list of names, when defining\na print wheel alert. Only the first\nprint wheel will be defined. (Maybe you\nleft out the -p option?)" 834*0Sstevel@tonic-gateE_ADM_MSINGLES 835*0Sstevel@tonic-gate "Only one print wheel at a time, please." 836*0Sstevel@tonic-gate "You can only give a single print wheel\nname, not a list of names, when mounting\na print wheel. Only the first one will\nbe mounted." 837*0Sstevel@tonic-gateE_ADM_ONLYSIMPLE 838*0Sstevel@tonic-gate "Input types not allowed with multiple printer\ntypes." 839*0Sstevel@tonic-gate "The LP print service currently doesn't\nallow input types other than \"simple\"\nwhen more than one printer type is\ngiven. You have to change the printer\ntypes or input types." 840*0Sstevel@tonic-gateE_ADM_SIGNORE 841*0Sstevel@tonic-gate "Certain options ignored for remote printer\n %s." 842*0Sstevel@tonic-gate "When you try to change the configuration\nof all printers at once some options are\nignored for remote printers." 843*0Sstevel@tonic-gateE_ADM_BADPWHEEL 844*0Sstevel@tonic-gate "There are no alerts defined for the print wheel\n\"%s\"." 845*0Sstevel@tonic-gate "Check the name again." 846*0Sstevel@tonic-gateE_ADM_BADTRAY 847*0Sstevel@tonic-gate "The printer does not have the tray number you specified." 848*0Sstevel@tonic-gate "Try using the -t option with -M to set the total number of trays." 849*0Sstevel@tonic-gateE_ADM_MAXTRAY 850*0Sstevel@tonic-gate "The number of trays specified with the -t option must between 1 and 100." 851*0Sstevel@tonic-gate "" 852*0Sstevel@tonic-gateE_ADM_ALSO_SEP_FORM 853*0Sstevel@tonic-gate "`%s' cannot be used as a paper name because it\nis already defined as an old style form." 854*0Sstevel@tonic-gate "Either use another name, or remove the conflicting form using `lpforms'." 855*0Sstevel@tonic-gateE_ADM_NOPPD 856*0Sstevel@tonic-gate "The ppd \"%s\" does not exist." 857*0Sstevel@tonic-gate "Use the command\n ls /usr/lib/lp/model/ppd\nto find the list of known printer ppd definitions." 858*0Sstevel@tonic-gate 859*0Sstevel@tonic-gate#endif 860*0Sstevel@tonic-gate 861*0Sstevel@tonic-gate/** 862*0Sstevel@tonic-gate ** MESSAGES FOR THE LPFORMS PROGRAM 863*0Sstevel@tonic-gate **/ 864*0Sstevel@tonic-gate 865*0Sstevel@tonic-gate/* DON'T TOUCH THE NEXT LINE */ 866*0Sstevel@tonic-gateE_FOR__MSGS 867*0Sstevel@tonic-gate 868*0Sstevel@tonic-gate#if WHO_AM_I == I_AM_LPFORMS || WHO_AM_I == I_AM_OZ 869*0Sstevel@tonic-gate#define E_FOR_MOPENREQX E_LP_HAVEREQS 870*0Sstevel@tonic-gate#define E_FOR_UALLOWDENY E_LP_UALLOWDENY 871*0Sstevel@tonic-gate#define E_FOR_EXTRAARG E_LP_EXTRA 872*0Sstevel@tonic-gate 873*0Sstevel@tonic-gateE_FOR_FORMNAME 874*0Sstevel@tonic-gate "No form name given." 875*0Sstevel@tonic-gate "You must specify a form name using the\n-f option." 876*0Sstevel@tonic-gateE_FOR_NOACT 877*0Sstevel@tonic-gate "Nothing to do." 878*0Sstevel@tonic-gate "You must give one of these options:\n- -F (new form)\n- -F -l -x -u -A -W -Q (existing form)" 879*0Sstevel@tonic-gateE_FOR_EMPTYFILE 880*0Sstevel@tonic-gate "Empty form description file given." 881*0Sstevel@tonic-gate "All defaults will be used; resubmit the\ncommand if this is not what you want.\nProcessing continues." 882*0Sstevel@tonic-gateE_FOR_DELSTRANGE 883*0Sstevel@tonic-gate "Strange, the LP print service accepted\nthe delete form request but the disk\ncopy can't be deleted." 884*0Sstevel@tonic-gate "" 885*0Sstevel@tonic-gateE_FOR_CTMPFILE 886*0Sstevel@tonic-gate "Unable to create temporary file." 887*0Sstevel@tonic-gate "Set the TMPDIR environment variable to a\nsuitable temporary directory name." 888*0Sstevel@tonic-gateE_FOR_OPEN 889*0Sstevel@tonic-gate "Can't open \"%s\" for reading." 890*0Sstevel@tonic-gate "Check that it exists and that you\ncan read it." 891*0Sstevel@tonic-gateE_FOR_ANYNONE 892*0Sstevel@tonic-gate "Reserved words \"any\" and \"none\" are not\nappropriate in this context." 893*0Sstevel@tonic-gate "" 894*0Sstevel@tonic-gateE_FOR_NOFORMS 895*0Sstevel@tonic-gate "No forms currently defined." 896*0Sstevel@tonic-gate "" 897*0Sstevel@tonic-gateE_FOR_NOSHCMDERR 898*0Sstevel@tonic-gate "No alert given." 899*0Sstevel@tonic-gate "You must give a shell command to use as\nthe alert." 900*0Sstevel@tonic-gateE_FOR_NOSHCMDWARN 901*0Sstevel@tonic-gate "No alert defined for form \"%s\"." 902*0Sstevel@tonic-gate "Use the -A option to define a shell\ncommand to use as the alert.\nProcessing continues." 903*0Sstevel@tonic-gateE_FOR_BADHDR 904*0Sstevel@tonic-gate "Bad input header in form description file on\nline %d." 905*0Sstevel@tonic-gate "" 906*0Sstevel@tonic-gateE_FOR_BADSCALE 907*0Sstevel@tonic-gate "Improper scaled decimal number on line %d." 908*0Sstevel@tonic-gate "You can use only 'i' and 'c' for scaling numbers." 909*0Sstevel@tonic-gateE_FOR_BADINT 910*0Sstevel@tonic-gate "Invalid integer given on line %d." 911*0Sstevel@tonic-gate "You must give a positive non-zero\ninteger value." 912*0Sstevel@tonic-gateE_FOR_BADCHSETQUALIFIER 913*0Sstevel@tonic-gate "Bad qualifier given after character set on\nline %d." 914*0Sstevel@tonic-gate "The only legal qualifier immediately\nfollowing a character set name is\n\",mandatory\"." 915*0Sstevel@tonic-gateE_FOR_TRAILIN 916*0Sstevel@tonic-gate "Bad input follows legal input on line %d." 917*0Sstevel@tonic-gate "Check to the System Administrator's\nReference manual for the correct syntax." 918*0Sstevel@tonic-gateE_FOR_NOTNAME 919*0Sstevel@tonic-gate "Incorrect syntax for name on line %d." 920*0Sstevel@tonic-gate "Give a name that has 1 to 14 letters,\ndigits, or underscores." 921*0Sstevel@tonic-gateE_FOR_NOTCTYPE 922*0Sstevel@tonic-gate "Incorrect syntax for content type on line %d." 923*0Sstevel@tonic-gate "Give a content type that has 1 to 14\nletters, digits, or dashes." 924*0Sstevel@tonic-gateE_FOR_UNKNOWN 925*0Sstevel@tonic-gate "Error accessing form \"%s\"\n(%s)." 926*0Sstevel@tonic-gate "" 927*0Sstevel@tonic-gateE_FOR_FORMBUSY 928*0Sstevel@tonic-gate "There are jobs currently queued for form\n\"%s\"" 929*0Sstevel@tonic-gate "Either wait for the requests to finish\nprinting or cancel them. Use the\nlpstat -o -l command to find out which\nneed this form." 930*0Sstevel@tonic-gateE_FOR_NOSPACE 931*0Sstevel@tonic-gate "The LP print service can't take in another form." 932*0Sstevel@tonic-gate "The form definition has been saved on\ndisk nonetheless. Stop the LP print\nservice (/usr/sbin/lpshut) and restart it\n(/usr/lib/lp/lpsched) to have it\nrecognize the new form." 933*0Sstevel@tonic-gateE_FOR_ANYDEL 934*0Sstevel@tonic-gate "Nothing will happen." 935*0Sstevel@tonic-gate "The \"-f any\" option is used to set an\nalert for those forms without an alert,\nbut \"-A none\" defines no alert." 936*0Sstevel@tonic-gateE_FOR_ALSO_SEP_FORM 937*0Sstevel@tonic-gate "The form `%s' cannot be defined with\npaper `%s' because `%s' is already\ndefined as an old style form. " 938*0Sstevel@tonic-gate "Either use another name, or remove the\nconflicting form using `lpforms'." 939*0Sstevel@tonic-gate 940*0Sstevel@tonic-gate#endif 941*0Sstevel@tonic-gate 942*0Sstevel@tonic-gate/** 943*0Sstevel@tonic-gate ** MESSAGES FOR THE LPSTAT PROGRAM 944*0Sstevel@tonic-gate **/ 945*0Sstevel@tonic-gate 946*0Sstevel@tonic-gate/* DON'T TOUCH THE NEXT LINE */ 947*0Sstevel@tonic-gateE_STAT__MSGS 948*0Sstevel@tonic-gate 949*0Sstevel@tonic-gate#if WHO_AM_I == I_AM_LPSTAT || WHO_AM_I == I_AM_OZ 950*0Sstevel@tonic-gate 951*0Sstevel@tonic-gateE_STAT_BADSET 952*0Sstevel@tonic-gate "Non-existent character set \"%s\"." 953*0Sstevel@tonic-gate "Check the name again; use the\n\"lpstat -S all\" command to get a list of\nall known character sets." 954*0Sstevel@tonic-gateE_STAT_BADSTAT 955*0Sstevel@tonic-gate "\"%s\" isn't a request ID or destination" 956*0Sstevel@tonic-gate "Use the \"lpstat -p all -c all\" command\nto get a list of valid destinations.\nUse the \"lpstat -o all\" command to get a\nlist of all outstanding print requests." 957*0Sstevel@tonic-gateE_STAT_DONE 958*0Sstevel@tonic-gate "\"%s\" already printed." 959*0Sstevel@tonic-gate "You can't get any information about this\nrequest, since no record of it remains." 960*0Sstevel@tonic-gateE_STAT_USER 961*0Sstevel@tonic-gate "\"%s\" is not currently a user on this system." 962*0Sstevel@tonic-gate "Check the spelling of the name.\nUse the \"lpstat -u all\" command to get a\nlist of outstanding print requests." 963*0Sstevel@tonic-gate 964*0Sstevel@tonic-gate#endif 965*0Sstevel@tonic-gate 966*0Sstevel@tonic-gate/** 967*0Sstevel@tonic-gate ** MESSAGES FOR THE LPSYSTEM PROGRAM 968*0Sstevel@tonic-gate **/ 969*0Sstevel@tonic-gate 970*0Sstevel@tonic-gate/* DON'T TOUCH THE NEXT LINE */ 971*0Sstevel@tonic-gateE_SYS__MSGS 972*0Sstevel@tonic-gate 973*0Sstevel@tonic-gate#if WHO_AM_I == I_AM_LPSYSTEM || WHO_AM_I == I_AM_OZ 974*0Sstevel@tonic-gate 975*0Sstevel@tonic-gateE_SYS_NOTCPIP 976*0Sstevel@tonic-gate "TCP/IP is not installed on this system." 977*0Sstevel@tonic-gate "" 978*0Sstevel@tonic-gate#endif 979