#, fuzzy msgid "" msgstr "" "Project-Id-Version: cups 1.4b2\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-01-10 21:21-0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.2.1\n" #: ./ref-ppdcfile.html:1 msgid "PPD Compiler Driver Information File Reference" msgstr "" #: ./ref-ppdcfile.html:2 msgid "" "The CUPS PPD compiler reads meta files that contain descriptions of one or " "more PPD files to be generated by ppdc(1) or the " "corresponding driver interface program drv(1). " "The source file format is plain ASCII text that can be edited using your " "favorite text editor." msgstr "" #: ./ref-ppdcfile.html:3 msgid "" "Directives may be placed anywhere on a line and are followed by zero or more " "values." msgstr "" #: ./ref-ppdcfile.html:4 msgid "" "Comments are supported using the C (/* ... */) and C++ (// ...) comment " "mechanisms." msgstr "" #: ./ref-ppdcfile.html:5 msgid "Directives that accept expressions look for sequences of the form:" msgstr "" #: ./ref-ppdcfile.html:6 msgid "NAME" msgstr "" #: ./ref-ppdcfile.html:7 msgid "Evaluates to 1 if NAME is defined, otherwise 0." msgstr "" #: ./ref-ppdcfile.html:8 msgid "number" msgstr "" #: ./ref-ppdcfile.html:9 msgid "" "Evaluates to the specified integer; the number can be preceded by \ta leading " "sign (+/-) followed by a decimal number (1234), octal number \t(01234), or " "hexidecimal number (0x1234) using the same rules as C and \tC++." msgstr "" #: ./ref-ppdcfile.html:10 msgid "(NAME NAME ... number number ...)" msgstr "" #: ./ref-ppdcfile.html:11 msgid "Evaluates to the bitwise OR of each named #define constant or \tnumber." msgstr "" #: ./ref-ppdcfile.html:12 msgid "(NAME == OTHERNAME)" msgstr "" #: ./ref-ppdcfile.html:13 msgid "(NAME == number)" msgstr "" #: ./ref-ppdcfile.html:14 msgid "" "Evaluates to 1 if NAME is equal to the other named constant or \tnumber, " "otherwise 0." msgstr "" #: ./ref-ppdcfile.html:15 msgid "(NAME != OTHERNAME)" msgstr "" #: ./ref-ppdcfile.html:16 msgid "(NAME != number)" msgstr "" #: ./ref-ppdcfile.html:17 msgid "" "Evaluates to 1 if NAME is not equal to the other named constant or \tnumber, " "otherwise 0." msgstr "" #: ./ref-ppdcfile.html:18 msgid "(NAME < OTHERNAME)" msgstr "" #: ./ref-ppdcfile.html:19 msgid "(NAME < number)" msgstr "" #: ./ref-ppdcfile.html:20 msgid "" "Evaluates to 1 if NAME is less than to the other named constant or \tnumber, " "otherwise 0." msgstr "" #: ./ref-ppdcfile.html:21 msgid "(NAME <= OTHERNAME)" msgstr "" #: ./ref-ppdcfile.html:22 msgid "(NAME <= number)" msgstr "" #: ./ref-ppdcfile.html:23 msgid "" "Evaluates to 1 if NAME is less than or equal to the other named \tconstant or " "number, otherwise 0." msgstr "" #: ./ref-ppdcfile.html:24 msgid "(NAME > OTHERNAME)" msgstr "" #: ./ref-ppdcfile.html:25 msgid "(NAME > number)" msgstr "" #: ./ref-ppdcfile.html:26 msgid "" "Evaluates to 1 if NAME is greater than to the other named constant \tor " "number, otherwise 0." msgstr "" #: ./ref-ppdcfile.html:27 msgid "(NAME >= OTHERNAME)" msgstr "" #: ./ref-ppdcfile.html:28 msgid "(NAME >= number)" msgstr "" #: ./ref-ppdcfile.html:29 msgid "" "Evaluates to 1 if NAME is greater than or equal to the other named \tconstant " "or number, otherwise 0." msgstr "" #: ./ref-ppdcfile.html:30 msgid "" "Printer driver information can be grouped and shared using curley braces ({ " "... }); PPD files are written when a close brace or end-of-file is seen and " "a PCFileName directive has been defined." msgstr "" #: ./ref-ppdcfile.html:31 msgid "#define" msgstr "" #: ./ref-ppdcfile.html:32 msgctxt "./ref-ppdcfile.html:32" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:33 msgctxt "./ref-ppdcfile.html:33" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:34 msgctxt "./ref-ppdcfile.html:34" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:35 msgid "" "The #define directive assigns a value to a name which can be " "later referenced using $name. The name is case-insensitive and " "can be any sequence of letters, numbers, and the underscore. The value can " "be any valid expression." msgstr "" #: ./ref-ppdcfile.html:36 msgctxt "./ref-ppdcfile.html:36" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:37 msgctxt "./ref-ppdcfile.html:37" msgid "#include" msgstr "" #: ./ref-ppdcfile.html:38 msgid "#elif" msgstr "" #: ./ref-ppdcfile.html:39 msgctxt "./ref-ppdcfile.html:39" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:40 msgctxt "./ref-ppdcfile.html:40" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:41 msgctxt "./ref-ppdcfile.html:41" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:42 msgid "" "The #elif directive allows portions of a driver information " "file to be used conditionally. #elif directives must appear " "after a corresponding #if directive." msgstr "" #: ./ref-ppdcfile.html:43 msgctxt "./ref-ppdcfile.html:43" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:44 msgid "" "#else, #endif, #if" msgstr "" #: ./ref-ppdcfile.html:45 msgid "#else" msgstr "" #: ./ref-ppdcfile.html:46 msgctxt "./ref-ppdcfile.html:46" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:47 msgctxt "./ref-ppdcfile.html:47" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:48 msgctxt "./ref-ppdcfile.html:48" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:49 msgid "" "The #else directive allows portions of a driver information " "file to be used conditionally when the corresponding #if and #elif " "expressions are non-zero." msgstr "" #: ./ref-ppdcfile.html:50 msgctxt "./ref-ppdcfile.html:50" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:51 msgid "" "#elif, #endif, #if" msgstr "" #: ./ref-ppdcfile.html:52 msgid "#endif" msgstr "" #: ./ref-ppdcfile.html:53 msgctxt "./ref-ppdcfile.html:53" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:54 msgctxt "./ref-ppdcfile.html:54" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:55 msgctxt "./ref-ppdcfile.html:55" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:56 msgid "" "The #endif directive ends a conditional block of a driver " "information file. It must appear after all of the #if, #elif, " "and #else directives for the current " "conditional block." msgstr "" #: ./ref-ppdcfile.html:57 msgctxt "./ref-ppdcfile.html:57" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:58 msgid "" "#elif, #else, #if" msgstr "" #: ./ref-ppdcfile.html:59 msgctxt "./ref-ppdcfile.html:59" msgid "#font" msgstr "" #: ./ref-ppdcfile.html:60 msgctxt "./ref-ppdcfile.html:60" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:61 msgctxt "./ref-ppdcfile.html:61" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:62 msgctxt "./ref-ppdcfile.html:62" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:63 msgid "" "The #font directive defines a \"base font\" for all printer " "drivers. The name is the PostScript font name." msgstr "" #: ./ref-ppdcfile.html:64 msgctxt "./ref-ppdcfile.html:64" msgid "" "The encoding is the default encoding of the font, usually " "Standard, Expert, or Special, as " "defined in the Adobe PPD file specification." msgstr "" #: ./ref-ppdcfile.html:65 msgctxt "./ref-ppdcfile.html:65" msgid "" "The version is the PostScript string definition that corresponds to the font " "version number." msgstr "" #: ./ref-ppdcfile.html:66 msgctxt "./ref-ppdcfile.html:66" msgid "" "The charset defines the available characters in the font, usually " "Standard or Special, as defined in the Adobe PPD " "file specification." msgstr "" #: ./ref-ppdcfile.html:67 msgctxt "./ref-ppdcfile.html:67" msgid "" "The status is the installation status of the font and must be either the " "word ROM or Disk." msgstr "" #: ./ref-ppdcfile.html:68 msgid "" "Base fonts differ from fonts defined using the Font directive in that they are not " "automatically associated with all drivers - you must use the special " "Font * directive to include them in a driver." msgstr "" #: ./ref-ppdcfile.html:69 msgid "" "Currently the #font directive is used mainly for defining the " "standard raster fonts in the include file." msgstr "" #: ./ref-ppdcfile.html:70 msgctxt "./ref-ppdcfile.html:70" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:71 msgid "#include, Font" msgstr "" #: ./ref-ppdcfile.html:72 msgid "#if" msgstr "" #: ./ref-ppdcfile.html:73 msgctxt "./ref-ppdcfile.html:73" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:74 msgctxt "./ref-ppdcfile.html:74" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:75 msgctxt "./ref-ppdcfile.html:75" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:76 msgid "" "The #if directive allows portions of a driver information file " "to be used conditionally. When followed by a name, the data that follows is " "used only when the name is defined, otherwise the data is ignored. " "#if directives can be nested up to 100 times." msgstr "" #: ./ref-ppdcfile.html:77 msgctxt "./ref-ppdcfile.html:77" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:78 msgid "" "#elif, #else, #endif" msgstr "" #: ./ref-ppdcfile.html:79 msgctxt "./ref-ppdcfile.html:79" msgid "#include" msgstr "" #: ./ref-ppdcfile.html:80 msgctxt "./ref-ppdcfile.html:80" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:81 msgctxt "./ref-ppdcfile.html:81" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:82 msgctxt "./ref-ppdcfile.html:82" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:83 msgid "" "The #include directive reads the named driver information file. " "If the filename is included inside angle brackets " "(), then the PPD compiler will look for the file " "in all of the include directories it knows about. Otherwise, the file is " "opened in the current directory relative to the current driver information " "file, and if that fails then it looks in the include directories for the " "file." msgstr "" #: ./ref-ppdcfile.html:84 msgid "" "The #include directive can be nested to as many files as are " "allowed by the host operating system, typically at least 100 files." msgstr "" #: ./ref-ppdcfile.html:85 msgctxt "./ref-ppdcfile.html:85" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:86 msgid "" "#define, #font, #media" msgstr "" #: ./ref-ppdcfile.html:87 msgid "#media" msgstr "" #: ./ref-ppdcfile.html:88 msgctxt "./ref-ppdcfile.html:88" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:89 msgctxt "./ref-ppdcfile.html:89" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:90 msgctxt "./ref-ppdcfile.html:90" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:91 msgid "" "The #media directive defines a named media size for inclusion " "in a driver. The name with optional user text defines the name for the media " "size and is used with the MediaSize " "directive to associate the media size with the driver. The name may only " "contain letters, numbers, and the underscore and may not exceed 40 " "characters in length. The user text, if supplied, may not exceed 80 " "characters in length." msgstr "" #: ./ref-ppdcfile.html:92 msgid "" "The width and length define the dimensions of the media. Each number is " "optionally followed by one of the following unit suffixes:" msgstr "" #: ./ref-ppdcfile.html:93 msgid "cm - centimeters" msgstr "" #: ./ref-ppdcfile.html:94 msgid "ft - feet" msgstr "" #: ./ref-ppdcfile.html:95 msgid "in - inches" msgstr "" #: ./ref-ppdcfile.html:96 msgid "m - meters" msgstr "" #: ./ref-ppdcfile.html:97 msgid "mm - millimeters" msgstr "" #: ./ref-ppdcfile.html:98 msgid "pt - points (72 points = 1 inch)" msgstr "" #: ./ref-ppdcfile.html:99 msgid "Points are assumed if no units are specified." msgstr "" #: ./ref-ppdcfile.html:100 msgctxt "./ref-ppdcfile.html:100" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:101 msgid "" "#include, CustomMedia, MediaSize" msgstr "" #: ./ref-ppdcfile.html:102 msgid "#po" msgstr "" #: ./ref-ppdcfile.html:103 msgctxt "./ref-ppdcfile.html:103" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:104 msgctxt "./ref-ppdcfile.html:104" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:105 msgctxt "./ref-ppdcfile.html:105" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:106 msgid "" "The #po directive defines a message catalog to use for the " "given POSIX language abbreviation. Multiple #po directives can " "be specified to list multiple catalogs. The filename can be an absolute path " "or relative to the driver information file. GNU gettext and Mac OS X " ".strings files are supported." msgstr "" #: ./ref-ppdcfile.html:107 msgctxt "./ref-ppdcfile.html:107" msgid "Attribute" msgstr "" #: ./ref-ppdcfile.html:108 msgctxt "./ref-ppdcfile.html:108" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:109 msgctxt "./ref-ppdcfile.html:109" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:110 msgctxt "./ref-ppdcfile.html:110" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:111 msgid "" "The Attribute directive creates a PPD attribute. The name is " "any combination of letters, numbers, and the underscore and can be up to 40 " "characters in length." msgstr "" #: ./ref-ppdcfile.html:112 msgctxt "./ref-ppdcfile.html:112" msgid "" "The selector can be the empty string (\"\"), a keyword consisting " "of up to 40 letters, numbers, and the underscore, or a string composed of a " "keyword and user text of up to 80 characters." msgstr "" #: ./ref-ppdcfile.html:113 msgctxt "./ref-ppdcfile.html:113" msgid "" "The value is any string or number; the string may contain multiple lines, " "however no one line may exceed 255 characters." msgstr "" #: ./ref-ppdcfile.html:114 msgctxt "./ref-ppdcfile.html:114" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:115 msgctxt "./ref-ppdcfile.html:115" msgid "LocAttribute" msgstr "" #: ./ref-ppdcfile.html:116 msgid "Choice" msgstr "" #: ./ref-ppdcfile.html:117 msgctxt "./ref-ppdcfile.html:117" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:118 msgctxt "./ref-ppdcfile.html:118" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:119 msgctxt "./ref-ppdcfile.html:119" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:120 msgid "" "The Choice directive adds a single choice to the current " "option. The name is any combination of letters, numbers, and the underscore " "and can be up to 40 characters in length." msgstr "" #: ./ref-ppdcfile.html:121 msgctxt "./ref-ppdcfile.html:121" msgid "" "If provided, the text can be any string up to 80 characters in length. If no " "text is provided, the name is used." msgstr "" #: ./ref-ppdcfile.html:122 msgid "" "The code is any string and may contain multiple lines, however no one line " "may exceed 255 characters." msgstr "" #: ./ref-ppdcfile.html:123 msgctxt "./ref-ppdcfile.html:123" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:124 msgid "" "ColorModel, Cutter, Darkness, Duplex, Finishing, Group, InputSlot, Installable, MediaType, Option, Resolution, UIConstraints" msgstr "" #: ./ref-ppdcfile.html:125 msgid "ColorDevice" msgstr "" #: ./ref-ppdcfile.html:126 msgctxt "./ref-ppdcfile.html:126" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:127 msgctxt "./ref-ppdcfile.html:127" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:128 msgctxt "./ref-ppdcfile.html:128" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:129 msgid "" "The ColorDevice directive tells the application if the printer " "supports color. It is typically used in conjunction with the ColorModel directive to provide color " "printing support." msgstr "" #: ./ref-ppdcfile.html:130 msgctxt "./ref-ppdcfile.html:130" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:131 msgid "ColorModel" msgstr "" #: ./ref-ppdcfile.html:132 msgid "DeprecatedColorModel" msgstr "" #: ./ref-ppdcfile.html:133 msgctxt "./ref-ppdcfile.html:133" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:134 msgctxt "./ref-ppdcfile.html:134" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:135 msgctxt "./ref-ppdcfile.html:135" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:136 msgid "" "The ColorModel directive is a convenience directive which " "creates a ColorModel option and choice for the current printer driver. The " "name is any combination of letters, numbers, and the underscore and can be " "up to 40 characters in length." msgstr "" #: ./ref-ppdcfile.html:137 msgctxt "./ref-ppdcfile.html:137" msgid "" "If provided, the text can be any string up to 80 characters in length. If no " "text is provided, the name is used." msgstr "" #: ./ref-ppdcfile.html:138 msgid "" "The colorspace argument is one of the standard colorspace keywords defined " "later in this appendix in the section titled, \"Colorspace Keywords\"." msgstr "" #: ./ref-ppdcfile.html:139 msgid "" "The colororder argument is one of the standard color order keywords defined " "later in this appendix in the section titled, \"Color Order Keywords\"." msgstr "" #: ./ref-ppdcfile.html:140 msgid "" "The compression argument is any number and is assigned to the " "cupsCompression attribute in the PostScript page device " "dictionary." msgstr "" #: ./ref-ppdcfile.html:141 msgctxt "./ref-ppdcfile.html:141" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:142 msgid "" "Choice, ColorDevice, Cutter, Darkness, Duplex, Finishing, Group, InputSlot, Installable, MediaType, Option, Resolution, UIConstraints" msgstr "" #: ./ref-ppdcfile.html:143 msgid "DeprecatedColorProfile" msgstr "" #: ./ref-ppdcfile.html:144 msgctxt "./ref-ppdcfile.html:144" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:145 msgctxt "./ref-ppdcfile.html:145" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:146 msgctxt "./ref-ppdcfile.html:146" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:147 msgid "" "The ColorProfile directive defines a CMY transform-based color " "profile. The resolution and mediatype arguments specify the " "Resolution and MediaType choices which use the " "profile; the hyphen (-) is used to specify that any resolution " "or mediatype can be used with the profile." msgstr "" #: ./ref-ppdcfile.html:148 msgctxt "./ref-ppdcfile.html:148" msgid "" "The gamma argument specifies the gamma correction to apply to the color " "values (P = pg) and is a real number greater than 0. Values " "larger than 1 cause a general lightening of the print while values smaller " "than 1 cause a general darkening of the print. A value of 1 disables gamma " "correction." msgstr "" #: ./ref-ppdcfile.html:149 msgid "" "The density argument specifies the linear density correction to apply to the " "color values (P = d * pg) and is a real number greater than 0 " "and less than or equal to 1. A value 1 of disables density correction while " "lower values produce proportionately lighter output." msgstr "" #: ./ref-ppdcfile.html:150 msgid "" "The matrix argument specifies a 3x3 linear transformation matrix in row-" "major order. The matrix is applied only to the CMY component of a RGB to " "CMYK transformation and is not used when printing in grayscale or CMYK mode " "unless the printer only supports printing with 3 colors." msgstr "" #: ./ref-ppdcfile.html:151 msgctxt "./ref-ppdcfile.html:151" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:152 msgid "SimpleColorProfile" msgstr "" #: ./ref-ppdcfile.html:153 msgid "Copyright" msgstr "" #: ./ref-ppdcfile.html:154 msgctxt "./ref-ppdcfile.html:154" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:155 msgctxt "./ref-ppdcfile.html:155" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:156 msgctxt "./ref-ppdcfile.html:156" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:157 msgid "" "The Copyright directive adds text comments to the top of a PPD " "file, typically for use in copyright notices. The text argument can contain " "multiple lines of text, but no line may exceed 255 characters." msgstr "" #: ./ref-ppdcfile.html:158 msgid "CustomMedia" msgstr "" #: ./ref-ppdcfile.html:159 msgctxt "./ref-ppdcfile.html:159" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:160 msgctxt "./ref-ppdcfile.html:160" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:161 msgctxt "./ref-ppdcfile.html:161" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:162 msgid "" "The CustomMedia directive adds a custom media size to the " "driver. The name is any combination of letters, numbers, and the underscore " "and can be up to 40 characters in length." msgstr "" #: ./ref-ppdcfile.html:163 msgctxt "./ref-ppdcfile.html:163" msgid "" "If provided, the text can be any string up to 80 characters in length. If no " "text is provided, the name is used." msgstr "" #: ./ref-ppdcfile.html:164 msgid "" "The width and length arguments specify the dimensions of the media as " "defined for the #media directive." msgstr "" #: ./ref-ppdcfile.html:165 msgid "" "The left, bottom, right, and top arguments specify the printable margins of " "the media." msgstr "" #: ./ref-ppdcfile.html:166 msgid "" "The size-code and region-code arguments specify the PostScript commands to " "run for the PageSize and PageRegion options, " "respectively. The commands can contain multiple lines, however no line may " "be more than 255 characters in length." msgstr "" #: ./ref-ppdcfile.html:167 msgctxt "./ref-ppdcfile.html:167" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:168 msgid "#media, MediaSize" msgstr "" #: ./ref-ppdcfile.html:169 msgid "Cutter" msgstr "" #: ./ref-ppdcfile.html:170 msgctxt "./ref-ppdcfile.html:170" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:171 msgctxt "./ref-ppdcfile.html:171" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:172 msgctxt "./ref-ppdcfile.html:172" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:173 msgid "" "The Cutter directive specifies whether the printer has a built-" "in media cutter. When a cutter is present, the printer's PPD file will " "contain a CutMedia option that allows the user to control " "whether the media is cut at the end of the job." msgstr "" #: ./ref-ppdcfile.html:174 msgctxt "./ref-ppdcfile.html:174" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:175 msgid "" "Choice, ColorModel, Darkness, Duplex, Finishing, Group, InputSlot, Installable, MediaType, Option, Resolution, UIConstraints" msgstr "" #: ./ref-ppdcfile.html:176 msgid "DeprecatedDarkness" msgstr "" #: ./ref-ppdcfile.html:177 msgctxt "./ref-ppdcfile.html:177" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:178 msgctxt "./ref-ppdcfile.html:178" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:179 msgctxt "./ref-ppdcfile.html:179" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:180 msgid "" "The Darkness directive defines a choice for the " "cupsDarkness option which sets the cupsCompression " "attribute in the PostScript page device dictionary. It is used with the " "CUPS rastertolabel sample driver to control the print head " "temperature and therefore the darkness of the print." msgstr "" #: ./ref-ppdcfile.html:181 msgid "" "The temperature argument specifies a temperature value for the Dymo driver " "from 0 (lowest) to 3 (highest), with 2 representing the normal setting." msgstr "" #: ./ref-ppdcfile.html:182 msgctxt "./ref-ppdcfile.html:182" msgid "" "The name is any combination of letters, numbers, and the underscore and can " "be up to 40 characters in length." msgstr "" #: ./ref-ppdcfile.html:183 msgctxt "./ref-ppdcfile.html:183" msgid "" "If provided, the text can be any string up to 80 characters in length. If no " "text is provided, the name is used." msgstr "" #: ./ref-ppdcfile.html:184 msgctxt "./ref-ppdcfile.html:184" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:185 msgid "" "Choice, ColorModel, Cutter, Duplex, Finishing, Group, InputSlot, Installable, MediaType, Option, Resolution, UIConstraints" msgstr "" #: ./ref-ppdcfile.html:186 msgctxt "./ref-ppdcfile.html:186" msgid "DriverType" msgstr "" #: ./ref-ppdcfile.html:187 msgctxt "./ref-ppdcfile.html:187" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:188 msgctxt "./ref-ppdcfile.html:188" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:189 msgctxt "./ref-ppdcfile.html:189" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:190 msgid "" "The DriverType directive tells the PPD compiler which DDK " "filters to include in the PPD file. The following types are supported:" msgstr "" #: ./ref-ppdcfile.html:191 msgid "" "custom - Use only those filters that are \tdefined in the driver " "information file" msgstr "" #: ./ref-ppdcfile.html:192 msgid "" "epson - Use the CUPS sample Epson driver filter \trastertoepson" msgstr "" #: ./ref-ppdcfile.html:193 msgid "" "escp - Use the ESC/P DDK driver filters \tcommandtoescpx " "and \trastertoescpx" msgstr "" #: ./ref-ppdcfile.html:194 msgid "hp - Use the CUPS sample HP driver filter \trastertohp" msgstr "" #: ./ref-ppdcfile.html:195 msgid "" "label - Use the CUPS sample label driver filter rastertolabel" msgstr "" #: ./ref-ppdcfile.html:196 msgid "" "pcl - Use the HP-PCL DDK driver filters \tcommandtopclx and " "\trastertopclx" msgstr "" #: ./ref-ppdcfile.html:197 msgid "" "ps - Use no filters; this driver is for a \tstandard PostScript " "device" msgstr "" #: ./ref-ppdcfile.html:198 msgctxt "./ref-ppdcfile.html:198" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:199 msgid "Filter, ModelNumber" msgstr "" #: ./ref-ppdcfile.html:200 msgid "Duplex" msgstr "" #: ./ref-ppdcfile.html:201 msgctxt "./ref-ppdcfile.html:201" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:202 msgctxt "./ref-ppdcfile.html:202" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:203 msgctxt "./ref-ppdcfile.html:203" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:204 msgid "" "The Duplex directive determines whether double-sided printing " "is supported in the current driver. The type argument specifies the type of " "duplexing that is supported:" msgstr "" #: ./ref-ppdcfile.html:205 msgid "none - double-sided printing is not \tsupported" msgstr "" #: ./ref-ppdcfile.html:206 msgid "normal - double-sided printing is \tsupported" msgstr "" #: ./ref-ppdcfile.html:207 msgid "" "flip - double-sided printing is supported, \tbut the back side " "image needs to be flipped vertically \t(used primarily with inkjet printers)" msgstr "" #: ./ref-ppdcfile.html:208 msgid "" "rotated - double-sided printing is supported, \tbut the back " "side image needs to be rotated 180 degrees for \tDuplexNoTumble" msgstr "" #: ./ref-ppdcfile.html:209 msgid "" "manualtumble - double-sided printing is supported, \tbut the " "back side image needs to be rotated 180 degrees for DuplexTumble" msgstr "" #: ./ref-ppdcfile.html:210 msgctxt "./ref-ppdcfile.html:210" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:211 msgid "" "Choice, ColorModel, Cutter, Darkness, Finishing, Group, InputSlot, Installable, MediaType, Option, Resolution, UIConstraints" msgstr "" #: ./ref-ppdcfile.html:212 msgid "FileName" msgstr "" #: ./ref-ppdcfile.html:213 msgctxt "./ref-ppdcfile.html:213" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:214 msgctxt "./ref-ppdcfile.html:214" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:215 msgctxt "./ref-ppdcfile.html:215" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:216 msgid "" "The FileName attribute specifies the \"long\" name of the PPD " "file for the current driver." msgstr "" #: ./ref-ppdcfile.html:217 msgctxt "./ref-ppdcfile.html:217" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:218 msgid "" "Manufacturer, ModelName, PCFileName, Version" msgstr "" #: ./ref-ppdcfile.html:219 msgid "Filter" msgstr "" #: ./ref-ppdcfile.html:220 msgctxt "./ref-ppdcfile.html:220" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:221 msgctxt "./ref-ppdcfile.html:221" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:222 msgctxt "./ref-ppdcfile.html:222" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:223 msgid "" "The Filter directive adds a filter for the current driver. The " "mime-type argument is a valid MIME media type name as defined in a CUPS " "mime.types file." msgstr "" #: ./ref-ppdcfile.html:224 msgid "" "The cost argument specifies the relative cost of the filter. In general, use " "a number representing the average percentage of CPU time that is used when " "printing the specified MIME media type." msgstr "" #: ./ref-ppdcfile.html:225 msgid "" "The program argument specifies the program to run; if the program is not an " "absolute filename, then CUPS will look for the program in the CUPS filter " "directory." msgstr "" #: ./ref-ppdcfile.html:226 msgctxt "./ref-ppdcfile.html:226" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:227 msgctxt "./ref-ppdcfile.html:227" msgid "DriverType" msgstr "" #: ./ref-ppdcfile.html:228 msgid "DeprecatedFinishing" msgstr "" #: ./ref-ppdcfile.html:229 msgctxt "./ref-ppdcfile.html:229" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:230 msgctxt "./ref-ppdcfile.html:230" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:231 msgctxt "./ref-ppdcfile.html:231" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:232 msgid "" "The Finishing directive adds a choice to the " "cupsFinishing option. The name is any combination of letters, " "numbers, and the underscore and can be up to 40 characters in length. The " "name is stored in the OutputType attribute in the PostScript " "page device dictionary." msgstr "" #: ./ref-ppdcfile.html:233 msgctxt "./ref-ppdcfile.html:233" msgid "" "If provided, the text can be any string up to 80 characters in length. If no " "text is provided, the name is used." msgstr "" #: ./ref-ppdcfile.html:234 msgctxt "./ref-ppdcfile.html:234" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:235 msgid "" "Choice, ColorModel, Cutter, Darkness, Duplex, Group, InputSlot, Installable, MediaType, Option, Resolution, UIConstraints" msgstr "" #: ./ref-ppdcfile.html:236 msgid "Font" msgstr "" #: ./ref-ppdcfile.html:237 msgctxt "./ref-ppdcfile.html:237" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:238 msgctxt "./ref-ppdcfile.html:238" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:239 msgctxt "./ref-ppdcfile.html:239" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:240 msgid "" "The Font directive defines a \"device font\" for the current " "printer driver. The name is the PostScript font name." msgstr "" #: ./ref-ppdcfile.html:241 msgctxt "./ref-ppdcfile.html:241" msgid "" "The encoding is the default encoding of the font, usually " "Standard, Expert, or Special, as " "defined in the Adobe PPD file specification." msgstr "" #: ./ref-ppdcfile.html:242 msgctxt "./ref-ppdcfile.html:242" msgid "" "The version is the PostScript string definition that corresponds to the font " "version number." msgstr "" #: ./ref-ppdcfile.html:243 msgctxt "./ref-ppdcfile.html:243" msgid "" "The charset defines the available characters in the font, usually " "Standard or Special, as defined in the Adobe PPD " "file specification." msgstr "" #: ./ref-ppdcfile.html:244 msgctxt "./ref-ppdcfile.html:244" msgid "" "The status is the installation status of the font and must be either the " "word ROM or Disk." msgstr "" #: ./ref-ppdcfile.html:245 msgid "" "Device fonts differ from fonts defined using the #font directive in that they are " "automatically associated with the current driver. Fonts defined using " "#font may be imported into the current driver using the " "Font * form of this directive." msgstr "" #: ./ref-ppdcfile.html:246 msgctxt "./ref-ppdcfile.html:246" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:247 msgctxt "./ref-ppdcfile.html:247" msgid "#font" msgstr "" #: ./ref-ppdcfile.html:248 msgid "Group" msgstr "" #: ./ref-ppdcfile.html:249 msgctxt "./ref-ppdcfile.html:249" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:250 msgctxt "./ref-ppdcfile.html:250" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:251 msgctxt "./ref-ppdcfile.html:251" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:252 msgid "" "The Group directive specifies the group for new " "Option directives. The name is any combination of letters, " "numbers, and the underscore and can be up to 40 characters in length. The " "names General and InstallableOptions are " "predefined for the standard Adobe UI keywords and for installable options, " "respectively." msgstr "" #: ./ref-ppdcfile.html:253 msgid "" "If provided, the text can be any string up to 40 characters in length. If no " "text is provided, the name is used." msgstr "" #: ./ref-ppdcfile.html:254 msgid "Note:" msgstr "" #: ./ref-ppdcfile.html:255 msgid "" "Because of certain API binary compatibility issues, \tCUPS limits the length " "of PPD group translation strings \t(text) to 40 characters, while the PPD " "specification \tallows for up to 80 characters." msgstr "" #: ./ref-ppdcfile.html:256 msgctxt "./ref-ppdcfile.html:256" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:257 msgid "" "Choice, ColorModel, Cutter, Darkness, Duplex, Finishing, InputSlot, Installable, MediaType, Option, Resolution, UIConstraints" msgstr "" #: ./ref-ppdcfile.html:258 msgid "HWMargins" msgstr "" #: ./ref-ppdcfile.html:259 msgctxt "./ref-ppdcfile.html:259" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:260 msgctxt "./ref-ppdcfile.html:260" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:261 msgctxt "./ref-ppdcfile.html:261" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:262 msgid "" "The HWMargins directive specifies the current margins for MediaSize that follow. The left, bottom, " "right, and top margin values specify the printable margins." msgstr "" #: ./ref-ppdcfile.html:263 msgctxt "./ref-ppdcfile.html:263" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:264 msgctxt "./ref-ppdcfile.html:264" msgid "MediaSize" msgstr "" #: ./ref-ppdcfile.html:265 msgid "InputSlot" msgstr "" #: ./ref-ppdcfile.html:266 msgctxt "./ref-ppdcfile.html:266" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:267 msgctxt "./ref-ppdcfile.html:267" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:268 msgctxt "./ref-ppdcfile.html:268" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:269 msgid "" "The InputSlot directive adds a new choice to the " "InputSlot option. The position argument is a number from 0 to " "232-1 specifying the value that is placed in the " "MediaPosition attribute in the PostScript page device " "dictionary." msgstr "" #: ./ref-ppdcfile.html:270 msgctxt "./ref-ppdcfile.html:270" msgid "" "The name is any combination of letters, numbers, and the underscore and can " "be up to 40 characters in length." msgstr "" #: ./ref-ppdcfile.html:271 msgctxt "./ref-ppdcfile.html:271" msgid "" "If provided, the text can be any string up to 80 characters in length. If no " "text is provided, the name is used." msgstr "" #: ./ref-ppdcfile.html:272 msgctxt "./ref-ppdcfile.html:272" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:273 msgid "" "Choice, ColorModel, Cutter, Darkness, Duplex, Finishing, Group, Installable, MediaType, Option, Resolution, UIConstraints" msgstr "" #: ./ref-ppdcfile.html:274 msgid "Installable" msgstr "" #: ./ref-ppdcfile.html:275 msgctxt "./ref-ppdcfile.html:275" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:276 msgctxt "./ref-ppdcfile.html:276" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:277 msgctxt "./ref-ppdcfile.html:277" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:278 msgid "" "The Installable directive adds a new boolean option to the " "InstallableOptions group with a default value of " "False. The name is any combination of letters, numbers, and the " "underscore and can be up to 40 characters in length." msgstr "" #: ./ref-ppdcfile.html:279 msgctxt "./ref-ppdcfile.html:279" msgid "" "If provided, the text can be any string up to 80 characters in length. If no " "text is provided, the name is used." msgstr "" #: ./ref-ppdcfile.html:280 msgctxt "./ref-ppdcfile.html:280" msgid "LocAttribute" msgstr "" #: ./ref-ppdcfile.html:281 msgctxt "./ref-ppdcfile.html:281" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:282 msgctxt "./ref-ppdcfile.html:282" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:283 msgctxt "./ref-ppdcfile.html:283" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:284 msgid "" "The LocAttribute directive creates a localized PPD attribute. " "The name is any combination of letters, numbers, and the underscore and can " "be up to 40 characters in length." msgstr "" #: ./ref-ppdcfile.html:285 msgctxt "./ref-ppdcfile.html:285" msgid "" "The selector can be the empty string (\"\"), a keyword consisting " "of up to 40 letters, numbers, and the underscore, or a string composed of a " "keyword and user text of up to 80 characters." msgstr "" #: ./ref-ppdcfile.html:286 msgctxt "./ref-ppdcfile.html:286" msgid "" "The value is any string or number; the string may contain multiple lines, " "however no one line may exceed 255 characters." msgstr "" #: ./ref-ppdcfile.html:287 msgctxt "./ref-ppdcfile.html:287" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:288 msgctxt "./ref-ppdcfile.html:288" msgid "Attribute" msgstr "" #: ./ref-ppdcfile.html:289 msgid "ManualCopies" msgstr "" #: ./ref-ppdcfile.html:290 msgctxt "./ref-ppdcfile.html:290" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:291 msgctxt "./ref-ppdcfile.html:291" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:292 msgctxt "./ref-ppdcfile.html:292" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:293 msgid "" "The ManualCopies directive specifies whether copies need to be " "produced by the RIP filters. The default is no." msgstr "" #: ./ref-ppdcfile.html:294 msgctxt "./ref-ppdcfile.html:294" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:295 msgid "" "Choice, ColorModel, Cutter, Darkness, Duplex, Finishing, Group, InputSlot, MediaType, Option, Resolution, UIConstraints" msgstr "" #: ./ref-ppdcfile.html:296 msgid "Manufacturer" msgstr "" #: ./ref-ppdcfile.html:297 msgctxt "./ref-ppdcfile.html:297" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:298 msgctxt "./ref-ppdcfile.html:298" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:299 msgctxt "./ref-ppdcfile.html:299" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:300 msgid "" "The Manufacturer directive specifies the manufacturer name for " "the current driver. The name argument must conform to the manufacturer name " "requirements in the Adobe PPD file specification." msgstr "" #: ./ref-ppdcfile.html:301 msgctxt "./ref-ppdcfile.html:301" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:302 msgid "" "FileName, ModelName, PCFileName, Version" msgstr "" #: ./ref-ppdcfile.html:303 msgid "MaxSize" msgstr "" #: ./ref-ppdcfile.html:304 msgctxt "./ref-ppdcfile.html:304" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:305 msgctxt "./ref-ppdcfile.html:305" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:306 msgctxt "./ref-ppdcfile.html:306" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:307 msgid "" "The MaxSize directive specifies the maximum width and length " "that is supported for custom page sizes." msgstr "" #: ./ref-ppdcfile.html:308 msgctxt "./ref-ppdcfile.html:308" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:309 msgid "" "MinSize, VariablePaperSize" msgstr "" #: ./ref-ppdcfile.html:310 msgctxt "./ref-ppdcfile.html:310" msgid "MediaSize" msgstr "" #: ./ref-ppdcfile.html:311 msgctxt "./ref-ppdcfile.html:311" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:312 msgctxt "./ref-ppdcfile.html:312" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:313 msgctxt "./ref-ppdcfile.html:313" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:314 msgid "" "The MediaSize directive adds the named size to the current " "printer driver using the current margins defined with the HWMargins directive. The name argument " "must match a media size defined using the #media directive." msgstr "" #: ./ref-ppdcfile.html:315 msgctxt "./ref-ppdcfile.html:315" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:316 msgid "#media, HWMargins" msgstr "" #: ./ref-ppdcfile.html:317 msgid "MediaType" msgstr "" #: ./ref-ppdcfile.html:318 msgctxt "./ref-ppdcfile.html:318" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:319 msgctxt "./ref-ppdcfile.html:319" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:320 msgctxt "./ref-ppdcfile.html:320" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:321 msgid "" "The MediaType directive adds a new choice to the " "MediaType option. The type argument is a number from 0 to " "232-1 specifying the value that is placed in the " "cupsMediaType attribute in the PostScript page device " "dictionary." msgstr "" #: ./ref-ppdcfile.html:322 msgid "" "The name is any combination of letters, numbers, and the underscore and can " "be up to 40 characters in length. The name is placed in the " "MediaType attribute in the PostScript page device dictionary." msgstr "" #: ./ref-ppdcfile.html:323 msgctxt "./ref-ppdcfile.html:323" msgid "" "If provided, the text can be any string up to 80 characters in length. If no " "text is provided, the name is used." msgstr "" #: ./ref-ppdcfile.html:324 msgctxt "./ref-ppdcfile.html:324" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:325 msgid "" "Choice, ColorModel, Cutter, Darkness, Duplex, Finishing, Group, InputSlot, Installable, Option, Resolution, UIConstraints" msgstr "" #: ./ref-ppdcfile.html:326 msgid "MinSize" msgstr "" #: ./ref-ppdcfile.html:327 msgctxt "./ref-ppdcfile.html:327" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:328 msgctxt "./ref-ppdcfile.html:328" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:329 msgctxt "./ref-ppdcfile.html:329" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:330 msgid "" "The MinSize directive specifies the minimum width and length " "that is supported for custom page sizes." msgstr "" #: ./ref-ppdcfile.html:331 msgctxt "./ref-ppdcfile.html:331" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:332 msgid "" "MaxSize, VariablePaperSize" msgstr "" #: ./ref-ppdcfile.html:333 msgid "ModelName" msgstr "" #: ./ref-ppdcfile.html:334 msgctxt "./ref-ppdcfile.html:334" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:335 msgctxt "./ref-ppdcfile.html:335" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:336 msgctxt "./ref-ppdcfile.html:336" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:337 msgid "" "The ModelName directive sets the printer name for the " "ModelName, NickName, and " "ShortNickName attributes for the printer driver. The name is " "any string of letters, numbers, spaces, and the characters \".\", \"/\", \"-\", " "and \"+\" and should not begin with the manufacturer name since the PPD " "compiler will add this automatically for you. The maximum length of the name " "string is 31 characters to conform to the Adobe limits on the length of " "ShortNickName." msgstr "" #: ./ref-ppdcfile.html:338 msgctxt "./ref-ppdcfile.html:338" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:339 msgid "" "FileName, Manufacturer, " "PCFileName, Version" msgstr "" #: ./ref-ppdcfile.html:340 msgid "ModelNumber" msgstr "" #: ./ref-ppdcfile.html:341 msgctxt "./ref-ppdcfile.html:341" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:342 msgctxt "./ref-ppdcfile.html:342" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:343 msgctxt "./ref-ppdcfile.html:343" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:344 msgid "" "The ModelNumber directive sets the cupsModelNumber " "attribute for the printer driver, which is often used by the printer driver " "filter to tailor its output for the current device. The number is any " "integer or bitwise OR of integers and constants that is appropriate for the " "printer driver filters." msgstr "" #: ./ref-ppdcfile.html:345 msgid "" "A complete list of printer driver model number constants is available later " "in this appendix in the section titled, \"Printer " "Driver ModelNumber Constants\"." msgstr "" #: ./ref-ppdcfile.html:346 msgctxt "./ref-ppdcfile.html:346" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:347 msgid "DriverType, Filter" msgstr "" #: ./ref-ppdcfile.html:348 msgid "Option" msgstr "" #: ./ref-ppdcfile.html:349 msgctxt "./ref-ppdcfile.html:349" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:350 msgctxt "./ref-ppdcfile.html:350" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:351 msgctxt "./ref-ppdcfile.html:351" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:352 msgid "" "The Option directive creates a new option in the current group, " "by default the General group. The name is any combination of " "letters, numbers, and the underscore and can be up to 40 characters in " "length." msgstr "" #: ./ref-ppdcfile.html:353 msgctxt "./ref-ppdcfile.html:353" msgid "" "If provided, the text can be any string up to 80 characters in length. If no " "text is provided, the name is used." msgstr "" #: ./ref-ppdcfile.html:354 msgid "The type argument is one of the following keywords:" msgstr "" #: ./ref-ppdcfile.html:355 msgid "Boolean - a true/false option" msgstr "" #: ./ref-ppdcfile.html:356 msgid "PickOne - allows the user to pick one \tchoice from a list" msgstr "" #: ./ref-ppdcfile.html:357 msgid "" "PickMany - allows the user to pick zero or \tmore choices from a " "list" msgstr "" #: ./ref-ppdcfile.html:358 msgid "The section argument is one of the following keywords:" msgstr "" #: ./ref-ppdcfile.html:359 msgid "" "AnySetup - The option can be placed in \teither the " "DocumentSetup or PageSetup sections of the \tPostScript document" msgstr "" #: ./ref-ppdcfile.html:360 msgid "" "DocumentSetup - The option must be placed \tin the DocumentSetup " "section of the PostScript document; \tthis does not allow the option to be " "overridden on \tindividual pages" msgstr "" #: ./ref-ppdcfile.html:361 msgid "" "ExitServer - The option must be placed in a \tseparate " "initialization job prior to the document (not \tused for raster printer " "drivers)" msgstr "" #: ./ref-ppdcfile.html:362 msgid "" "JCLSetup - The option contains job control \tlanguage commands " "and must be sent prior to the document \tusing the JCLBegin and " "\tJCLToPSInterpreter attributes (not used for \traster printer " "drivers)" msgstr "" #: ./ref-ppdcfile.html:363 msgid "" "PageSetup - The option must be placed at the \tbeginning of each " "page in the PostScript document" msgstr "" #: ./ref-ppdcfile.html:364 msgid "" "Prolog - The option must be placed in the \tprolog section of " "the PostScript document; this is \ttypically used to add special comments for " "high-end \ttypesetters, but can also be used to add CUPS PostScript \tjob " "ticket comments." msgstr "" #: ./ref-ppdcfile.html:365 msgid "" "The order argument is a real number greater than or equal to 0.0 and is used " "to sort the printer commands from many options before sending them to the " "printer or RIP filter." msgstr "" #: ./ref-ppdcfile.html:366 msgctxt "./ref-ppdcfile.html:366" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:367 msgid "" "Choice, ColorModel, Cutter, Darkness, Duplex, Finishing, Group, InputSlot, Installable, MediaType, Resolution, UIConstraints" msgstr "" #: ./ref-ppdcfile.html:368 msgid "PCFileName" msgstr "" #: ./ref-ppdcfile.html:369 msgctxt "./ref-ppdcfile.html:369" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:370 msgctxt "./ref-ppdcfile.html:370" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:371 msgctxt "./ref-ppdcfile.html:371" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:372 msgid "" "The PCFileName attribute specifies the name of the PPD file for " "the current driver. The filename argument must conform to the Adobe PPD " "file specification and can be no more than 8 filename characters plus the " "extension \".ppd\"." msgstr "" #: ./ref-ppdcfile.html:373 msgctxt "./ref-ppdcfile.html:373" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:374 msgid "" "FileName, Manufacturer, " "ModelName, Version" msgstr "" #: ./ref-ppdcfile.html:375 msgid "DeprecatedResolution" msgstr "" #: ./ref-ppdcfile.html:376 msgctxt "./ref-ppdcfile.html:376" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:377 msgctxt "./ref-ppdcfile.html:377" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:378 msgctxt "./ref-ppdcfile.html:378" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:379 msgid "" "The Resolution directive creates a new Resolution " "option choice which sets the HWResolution, " "cupsBitsPerColor, cupsRowCount, " "cupsRowFeed, cupsRowStep, and optionally the " "cupsColorSpace page device dictionary attributes. The " "colorspace argument specifies a colorspace to use for the specified " "resolution and can be the hyphen (-) character to make no " "change to the selected color model or any keyword listed in the section " "titled, \"Colorspace Keywords\", to force the " "named colorspace." msgstr "" #: ./ref-ppdcfile.html:380 msgid "" "The bits-per-color argument specifies the number of bits per color to " "generate when RIP'ing a job. The values 1, 2, 4, and 8 are currently " "supported by CUPS." msgstr "" #: ./ref-ppdcfile.html:381 msgid "" "The row-count, row-feed, and row-step argument specify the driver-dependent " "values for the cupsRowCount, cupsRowFeed, and " "cupsRowStep attributes, respectively. Most drivers leave these " "attributes set to 0, but any number from 0 to 232-1 is allowed." msgstr "" #: ./ref-ppdcfile.html:382 msgid "" "The name argument must conform to the resolution naming conventions in the " "Adobe PPD file specification, either HHHdpi for symmetric " "resolutions or HHHxVVVdpi for asymmetric resolutions. The " "HHH and VVV in the examples represent the " "horizontal and vertical resolutions which must be positive integer values." msgstr "" #: ./ref-ppdcfile.html:383 msgctxt "./ref-ppdcfile.html:383" msgid "" "If provided, the text can be any string up to 80 characters in length. If no " "text is provided, the name is used." msgstr "" #: ./ref-ppdcfile.html:384 msgctxt "./ref-ppdcfile.html:384" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:385 msgid "" "Choice, ColorModel, Cutter, Darkness, Duplex, Finishing, Group, InputSlot, Installable, MediaType, Option, UIConstraints" msgstr "" #: ./ref-ppdcfile.html:386 msgid "DeprecatedSimpleColorProfile" msgstr "" #: ./ref-ppdcfile.html:387 msgctxt "./ref-ppdcfile.html:387" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:388 msgctxt "./ref-ppdcfile.html:388" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:389 msgctxt "./ref-ppdcfile.html:389" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:390 msgid "" "The SimpleColorProfile directive creates a matrix-based ColorProfile using values chosen with " "the cupsprofile(1) utility. The resolution and mediatype " "arguments specify the Resolution and MediaType " "choices which use the profile; the hyphen (-) is used to " "specify that any resolution or mediatype can be used with the profile." msgstr "" #: ./ref-ppdcfile.html:391 msgid "" "The density argument specifies the linear density correction to apply to the " "color values (P = d * 0.01 * pg) and is an integer greater than " "0 and less than or equal to 100. A value 100 of disables density correction " "while lower values produce proportionately lighter output. The density value " "adjusts all color channels equally in all color modes." msgstr "" #: ./ref-ppdcfile.html:392 msgid "" "The yellow-density argument specifies the density of the yellow channel when " "printing in grayscale or RGB mode and is an integer greater than 0 and less " "then or equal to 100. A value of 100 disables yellow density correction " "while lower values produce proportionately lighter output." msgstr "" #: ./ref-ppdcfile.html:393 msgid "" "The red-density argument specifies the two-color density limit (e.g. C + M, " "C + Y, M + Y) when printing in grayscale or RGB mode and is an integer " "greater than 0 and less then or equal to 200. A value of 200 disables two-" "color density correction while lower values produce proportionately lighter " "output." msgstr "" #: ./ref-ppdcfile.html:394 msgctxt "./ref-ppdcfile.html:394" msgid "" "The gamma argument specifies the gamma correction to apply to the color " "values (P = pg) and is a real number greater than 0. Values " "larger than 1 cause a general lightening of the print while values smaller " "than 1 cause a general darkening of the print. A value of 1 disables gamma " "correction." msgstr "" #: ./ref-ppdcfile.html:395 msgid "" "The red-adjust, green-adjust, blue-adjust arguments specify the percentage " "of color to add or remove. Positive red-adjust values add magenta and " "negative values add yellow. Positive green-adjust values add cyan and " "negative values add yellow. Positive blue-adjust values add cyan and " "negative values add magenta. Values of 0 disable color adjustments." msgstr "" #: ./ref-ppdcfile.html:396 msgctxt "./ref-ppdcfile.html:396" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:397 msgid "ColorProfile" msgstr "" #: ./ref-ppdcfile.html:398 msgid "Throughput" msgstr "" #: ./ref-ppdcfile.html:399 msgctxt "./ref-ppdcfile.html:399" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:400 msgctxt "./ref-ppdcfile.html:400" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:401 msgctxt "./ref-ppdcfile.html:401" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:402 msgid "" "The Througput directive sets the Troughput " "attribute for the current printer driver. The pages-per-minute argument is a " "positive integer representing the peak number of pages per minute that the " "printer is capable of producing. Use a value of 1 for printers that produce " "less than 1 page per minute." msgstr "" #: ./ref-ppdcfile.html:403 msgid "UIConstraints" msgstr "" #: ./ref-ppdcfile.html:404 msgctxt "./ref-ppdcfile.html:404" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:405 msgctxt "./ref-ppdcfile.html:405" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:406 msgctxt "./ref-ppdcfile.html:406" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:407 msgid "" "The UIConstraints directive adds a constraint between two " "options. Constraints inform the application when a user has chosen " "incompatible options. Each option name is preceded by the asterisk " "(*). If no choice is given for an option, then all choices " "except False and None will conflict with " "the other option and choice(s). Since the PPD compiler automatically adds " "reciprocal constraints (option A conflicts with option B, so therefore " "option B conflicts with option A), you need only specify the constraint " "once." msgstr "" #: ./ref-ppdcfile.html:408 msgctxt "./ref-ppdcfile.html:408" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:409 msgid "" "Choice, ColorModel, Cutter, Darkness, Duplex, Finishing, Group, InputSlot, Installable, MediaType, Option, Resolution" msgstr "" #: ./ref-ppdcfile.html:410 msgid "VariablePaperSize" msgstr "" #: ./ref-ppdcfile.html:411 msgctxt "./ref-ppdcfile.html:411" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:412 msgctxt "./ref-ppdcfile.html:412" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:413 msgctxt "./ref-ppdcfile.html:413" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:414 msgid "" "The VariablePaperSize directive specifies whether the current " "printer supports variable (custom) page sizes. When yes is " "specified, the PPD compiler will include the standard PPD attributes " "required to support custom page sizes." msgstr "" #: ./ref-ppdcfile.html:415 msgctxt "./ref-ppdcfile.html:415" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:416 msgid "MaxSize, MinSize" msgstr "" #: ./ref-ppdcfile.html:417 msgid "Version" msgstr "" #: ./ref-ppdcfile.html:418 msgctxt "./ref-ppdcfile.html:418" msgid "Syntax" msgstr "" #: ./ref-ppdcfile.html:419 msgctxt "./ref-ppdcfile.html:419" msgid "Examples" msgstr "" #: ./ref-ppdcfile.html:420 msgctxt "./ref-ppdcfile.html:420" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:421 msgid "" "The Version directive sets the FileVersion " "attribute in the PPD file and is also used for the NickName " "attribute. The number argument is a positive real number." msgstr "" #: ./ref-ppdcfile.html:422 msgctxt "./ref-ppdcfile.html:422" msgid "See Also" msgstr "" #: ./ref-ppdcfile.html:423 msgid "" "Manufacturer, ModelName, PCFileName" msgstr "" #: ./ref-ppdcfile.html:424 msgid "Standard Include Files" msgstr "" #: ./ref-ppdcfile.html:425 msgid "" "Table B-1 shows the standard include files which are " "provided with the DDK." msgstr "" #: ./ref-ppdcfile.html:426 msgid "Table B-1, Standard Include Files" msgstr "" #: ./ref-ppdcfile.html:427 msgid "Include File" msgstr "" #: ./ref-ppdcfile.html:428 msgctxt "./ref-ppdcfile.html:428" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:429 msgid "cupsModelNumber " "attribute in the PPD file to tailor their output to the printer. The " "following sections describe the constants for each driver." msgstr "" #: ./ref-ppdcfile.html:447 msgid "The CUPS ESC/P Sample Driver (epson)" msgstr "" #: ./ref-ppdcfile.html:448 msgid "" "The epson driver supports Epson and Okidata dot-matrix, Epson " "Stylus Color, and Epson Stylus Photo printers. Table " "B-2 lists the constants for the ModelNumber directive. " "ModelNumber values should be inserted by referencing only one " "of these constants." msgstr "" #: ./ref-ppdcfile.html:449 msgid "Table B-2, epson driver constants" msgstr "" #: ./ref-ppdcfile.html:450 msgctxt "./ref-ppdcfile.html:450" msgid "Constant" msgstr "" #: ./ref-ppdcfile.html:451 msgctxt "./ref-ppdcfile.html:451" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:452 msgid "EPSON_9PIN" msgstr "" #: ./ref-ppdcfile.html:453 msgid "Epson and Okidata 9-pin \tdot-matrix printers" msgstr "" #: ./ref-ppdcfile.html:454 msgid "EPSON_24PIN" msgstr "" #: ./ref-ppdcfile.html:455 msgid "Epson and Okidata 24-pin \tdot-matrix printers" msgstr "" #: ./ref-ppdcfile.html:456 msgid "EPSON_COLOR" msgstr "" #: ./ref-ppdcfile.html:457 msgid "" "Older Epson Stylus Color \tprinters that use the ESC . graphics " "command" msgstr "" #: ./ref-ppdcfile.html:458 msgid "EPSON_PHOTO" msgstr "" #: ./ref-ppdcfile.html:459 msgid "" "Older Epson Stylus Photo \tprinters that use the ESC . graphics " "command" msgstr "" #: ./ref-ppdcfile.html:460 msgid "EPSON_ICOLOR" msgstr "" #: ./ref-ppdcfile.html:461 msgid "" "Newer Epson Stylus Color \tprinters that use the ESC i graphics " "command" msgstr "" #: ./ref-ppdcfile.html:462 msgid "EPSON_IPHOTO" msgstr "" #: ./ref-ppdcfile.html:463 msgid "" "Newer Epson Stylus Photo \tprinters that use the ESC i graphics " "command" msgstr "" #: ./ref-ppdcfile.html:464 msgid "The CUPS HP-PCL Sample Driver (hp)" msgstr "" #: ./ref-ppdcfile.html:465 msgid "" "The hp driver supports HP LaserJet and DeskJet printers. Table B-3 lists the constants for the ModelNumber directive. " "ModelNumber values should be inserted by referencing only one " "of these constants." msgstr "" #: ./ref-ppdcfile.html:466 msgid "Table B-3, hp driver constants" msgstr "" #: ./ref-ppdcfile.html:467 msgctxt "./ref-ppdcfile.html:467" msgid "Constant" msgstr "" #: ./ref-ppdcfile.html:468 msgctxt "./ref-ppdcfile.html:468" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:469 msgid "HP_LASERJET" msgstr "" #: ./ref-ppdcfile.html:470 msgid "HP LaserJet printers supporting \tPCL 3, 4, or 5" msgstr "" #: ./ref-ppdcfile.html:471 msgid "HP_DESKJET" msgstr "" #: ./ref-ppdcfile.html:472 msgid "" "HP DeskJet printers \tsupporting PCL 3 and using the simple color graphics \t" "command (ESC * r # U)" msgstr "" #: ./ref-ppdcfile.html:473 msgid "HP_DESKJET2" msgstr "" #: ./ref-ppdcfile.html:474 msgid "" "HP DeskJet printers \tsupporting PCL3GUI and using the configure raster " "graphics \tcommand (ESC * g # W)" msgstr "" #: ./ref-ppdcfile.html:475 msgid "The CUPS Label Sample Driver (label)" msgstr "" #: ./ref-ppdcfile.html:476 msgid "" "The label driver supports the Dymo Labelwriter, Zebra CPCL, " "Zebra EPL, and Zebra ZPL, and Intellitech PCL label printers. Table B-4 lists the constants for the ModelNumber directive. " "ModelNumber values should be inserted by referencing only one " "of these constants." msgstr "" #: ./ref-ppdcfile.html:477 msgid "Table B-4, label driver constants" msgstr "" #: ./ref-ppdcfile.html:478 msgctxt "./ref-ppdcfile.html:478" msgid "Constant" msgstr "" #: ./ref-ppdcfile.html:479 msgctxt "./ref-ppdcfile.html:479" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:480 msgid "DYMO_3x0" msgstr "" #: ./ref-ppdcfile.html:481 msgid "Format output for the \tDymo Labelwriter 300, 330, or 330 Turbo." msgstr "" #: ./ref-ppdcfile.html:482 msgid "INTELLITECH_PCL" msgstr "" #: ./ref-ppdcfile.html:483 msgid "Format output for the Intellitech PCL printers." msgstr "" #: ./ref-ppdcfile.html:484 msgid "ZEBRA_CPCL" msgstr "" #: ./ref-ppdcfile.html:485 msgid "Format output for the Zebra CPCL printers." msgstr "" #: ./ref-ppdcfile.html:486 msgid "ZEBRA_EPL_LINE" msgstr "" #: ./ref-ppdcfile.html:487 msgid "Format output for the Zebra EPL line mode (EPL 1) printers." msgstr "" #: ./ref-ppdcfile.html:488 msgid "ZEBRA_EPL_PAGE" msgstr "" #: ./ref-ppdcfile.html:489 msgid "Format output for the Zebra EPL page mode (EPL 2) printers." msgstr "" #: ./ref-ppdcfile.html:490 msgid "ZEBRA_ZPL" msgstr "" #: ./ref-ppdcfile.html:491 msgid "Format output for the Zebra ZPL printers." msgstr "" #: ./ref-ppdcfile.html:492 msgid "The DDK ESC/P Driver (escp)" msgstr "" #: ./ref-ppdcfile.html:493 msgid "" "The escp driver supports all Epson inkjet printers. Table B-6 lists the constants for the ModelNumber directive. " "ModelNumber values should be specified as the bitwise OR of one " "or more of these constants." msgstr "" #: ./ref-ppdcfile.html:494 msgid "Table B-6, escp driver constants" msgstr "" #: ./ref-ppdcfile.html:495 msgctxt "./ref-ppdcfile.html:495" msgid "Constant" msgstr "" #: ./ref-ppdcfile.html:496 msgctxt "./ref-ppdcfile.html:496" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:497 msgid "ESCP_MICROWEAVE" msgstr "" #: ./ref-ppdcfile.html:498 msgid "Use microweave command?" msgstr "" #: ./ref-ppdcfile.html:499 msgid "ESCP_STAGGER" msgstr "" #: ./ref-ppdcfile.html:500 msgid "Are color jets staggered?" msgstr "" #: ./ref-ppdcfile.html:501 msgid "ESCP_ESCK" msgstr "" #: ./ref-ppdcfile.html:502 msgid "Use print mode command?" msgstr "" #: ./ref-ppdcfile.html:503 msgid "ESCP_EXT_UNITS" msgstr "" #: ./ref-ppdcfile.html:504 msgid "Use extended unit commands?" msgstr "" #: ./ref-ppdcfile.html:505 msgid "ESCP_EXT_MARGINS" msgstr "" #: ./ref-ppdcfile.html:506 msgid "Use extended margin command?" msgstr "" #: ./ref-ppdcfile.html:507 msgid "ESCP_USB" msgstr "" #: ./ref-ppdcfile.html:508 msgid "Send USB packet mode escape" msgstr "" #: ./ref-ppdcfile.html:509 msgid "ESCP_PAGE_SIZE" msgstr "" #: ./ref-ppdcfile.html:510 msgid "Use page size command" msgstr "" #: ./ref-ppdcfile.html:511 msgid "ESCP_RASTER_ESCI" msgstr "" #: ./ref-ppdcfile.html:512 msgid "Use ESC i graphics command" msgstr "" #: ./ref-ppdcfile.html:513 msgid "ESCP_REMOTE" msgstr "" #: ./ref-ppdcfile.html:514 msgid "Use remote mode commands" msgstr "" #: ./ref-ppdcfile.html:515 msgid "ESCP_REMOTE_AC" msgstr "" #: ./ref-ppdcfile.html:516 msgid "Use auto-cutter command" msgstr "" #: ./ref-ppdcfile.html:517 msgid "ESCP_REMOTE_CO" msgstr "" #: ./ref-ppdcfile.html:518 msgid "Use cutter-operation command" msgstr "" #: ./ref-ppdcfile.html:519 msgid "ESCP_REMOTE_EX" msgstr "" #: ./ref-ppdcfile.html:520 msgid "Use media-position command" msgstr "" #: ./ref-ppdcfile.html:521 msgid "ESCP_REMOTE_MS" msgstr "" #: ./ref-ppdcfile.html:522 msgid "Use media-size command" msgstr "" #: ./ref-ppdcfile.html:523 msgid "ESCP_REMOTE_MT" msgstr "" #: ./ref-ppdcfile.html:524 msgid "Use media-type command" msgstr "" #: ./ref-ppdcfile.html:525 msgid "ESCP_REMOTE_PC" msgstr "" #: ./ref-ppdcfile.html:526 msgid "Use paper-check command" msgstr "" #: ./ref-ppdcfile.html:527 msgid "ESCP_REMOTE_PH" msgstr "" #: ./ref-ppdcfile.html:528 msgid "Use paper-thickness command" msgstr "" #: ./ref-ppdcfile.html:529 msgid "ESCP_REMOTE_PP" msgstr "" #: ./ref-ppdcfile.html:530 msgid "Use paper-path command" msgstr "" #: ./ref-ppdcfile.html:531 msgid "ESCP_REMOTE_SN0" msgstr "" #: ./ref-ppdcfile.html:532 msgid "Use feed-sequence-0 command" msgstr "" #: ./ref-ppdcfile.html:533 msgid "ESCP_REMOTE_SN1" msgstr "" #: ./ref-ppdcfile.html:534 msgid "Use platten-gap command" msgstr "" #: ./ref-ppdcfile.html:535 msgid "ESCP_REMOTE_SN2" msgstr "" #: ./ref-ppdcfile.html:536 msgid "Use feed-sequence-2 command" msgstr "" #: ./ref-ppdcfile.html:537 msgid "ESCP_REMOTE_SN6" msgstr "" #: ./ref-ppdcfile.html:538 msgid "Use eject-delay command" msgstr "" #: ./ref-ppdcfile.html:539 msgid "ESCP_REMOTE_FP" msgstr "" #: ./ref-ppdcfile.html:540 msgid "Use print-position command" msgstr "" #: ./ref-ppdcfile.html:541 msgid "The DDK HP-PCL Driver (pcl)" msgstr "" #: ./ref-ppdcfile.html:542 msgid "" "The pcl driver supports all HP LaserJet, DeskJet, and DesignJet " "printers. Table B-5 lists the constants for the ModelNumber directive. " "ModelNumber values should be specified as the bitwise OR of one " "or more of these constants." msgstr "" #: ./ref-ppdcfile.html:543 msgid "Table B-5, pcl driver constants" msgstr "" #: ./ref-ppdcfile.html:544 msgctxt "./ref-ppdcfile.html:544" msgid "Constant" msgstr "" #: ./ref-ppdcfile.html:545 msgctxt "./ref-ppdcfile.html:545" msgid "Description" msgstr "" #: ./ref-ppdcfile.html:546 msgid "PCL_PAPER_SIZE" msgstr "" #: ./ref-ppdcfile.html:547 msgid "Use paper size command (ESC & l # A)" msgstr "" #: ./ref-ppdcfile.html:548 msgid "PCL_INKJET" msgstr "" #: ./ref-ppdcfile.html:549 msgid "Use inkjet commands" msgstr "" #: ./ref-ppdcfile.html:550 msgid "PCL_RASTER_END_COLOR" msgstr "" #: ./ref-ppdcfile.html:551 msgid "Use new end-raster command (ESC * r C)" msgstr "" #: ./ref-ppdcfile.html:552 msgid "PCL_RASTER_CID" msgstr "" #: ./ref-ppdcfile.html:553 msgid "Use configure-image-data command (ESC * v # W)" msgstr "" #: ./ref-ppdcfile.html:554 msgid "PCL_RASTER_CRD" msgstr "" #: ./ref-ppdcfile.html:555 msgid "Use configure-raster-data command (ESC * g # W)" msgstr "" #: ./ref-ppdcfile.html:556 msgid "PCL_RASTER_SIMPLE" msgstr "" #: ./ref-ppdcfile.html:557 msgid "Use simple-raster-color command (ESC * r # U)" msgstr "" #: ./ref-ppdcfile.html:558 msgid "PCL_RASTER_RGB24" msgstr "" #: ./ref-ppdcfile.html:559 msgid "Use 24-bit RGB mode" msgstr "" #: ./ref-ppdcfile.html:560 msgid "PCL_PJL" msgstr "" #: ./ref-ppdcfile.html:561 msgid "Use PJL commands" msgstr "" #: ./ref-ppdcfile.html:562 msgid "PCL_PJL_PAPERWIDTH" msgstr "" #: ./ref-ppdcfile.html:563 msgid "Use PJL PAPERWIDTH/LENGTH commands" msgstr "" #: ./ref-ppdcfile.html:564 msgid "PCL_PJL_HPGL2" msgstr "" #: ./ref-ppdcfile.html:565 msgid "Use PJL ENTER HPGL2 command" msgstr "" #: ./ref-ppdcfile.html:566 msgid "PCL_PJL_PCL3GUI" msgstr "" #: ./ref-ppdcfile.html:567 msgid "Use PJL ENTER PCL3GUI command" msgstr "" #: ./ref-ppdcfile.html:568 msgid "PCL_PJL_RESOLUTION" msgstr "" #: ./ref-ppdcfile.html:569 msgid "Use PJL SET RESOLUTION command" msgstr "" #: ./ref-ppdcfile.html:570 msgid "Color Keywords" msgstr "" #: ./ref-ppdcfile.html:571 msgid "" "The PPD compiler defines two types of color keywords: colorspace and color " "order. The following sections list the supported keywords for each type." msgstr "" #: ./ref-ppdcfile.html:572 msgid "Colorspace Keywords" msgstr "" #: ./ref-ppdcfile.html:573 msgid "The following colorspace keywords are recognized:" msgstr "" #: ./ref-ppdcfile.html:574 msgid "cielab - CIE Lab **" msgstr "" #: ./ref-ppdcfile.html:575 msgid "ciexyz - CIE XYZ **" msgstr "" #: ./ref-ppdcfile.html:576 msgid "cmy - Cyan, magenta, yellow" msgstr "" #: ./ref-ppdcfile.html:577 msgid "cmyk - Cyan, magenta, yellow, black" msgstr "" #: ./ref-ppdcfile.html:578 msgid "gmck - Gold, magenta, yellow, black **" msgstr "" #: ./ref-ppdcfile.html:579 msgid "" "gmcs - Gold, magenta, yellow, silver **" msgstr "" #: ./ref-ppdcfile.html:580 msgid "gold - Gold foil **" msgstr "" #: ./ref-ppdcfile.html:581 msgid "icc1 - ICC-based, 1 color **" msgstr "" #: ./ref-ppdcfile.html:582 msgid "icc2 - ICC-based, 2 colors **" msgstr "" #: ./ref-ppdcfile.html:583 msgid "icc3 - ICC-based, 3 colors **" msgstr "" #: ./ref-ppdcfile.html:584 msgid "icc4 - ICC-based, 4 colors **" msgstr "" #: ./ref-ppdcfile.html:585 msgid "icc5 - ICC-based, 5 colors **" msgstr "" #: ./ref-ppdcfile.html:586 msgid "icc6 - ICC-based, 6 colors **" msgstr "" #: ./ref-ppdcfile.html:587 msgid "icc7 - ICC-based, 7 colors **" msgstr "" #: ./ref-ppdcfile.html:588 msgid "icc8 - ICC-based, 8 colors **" msgstr "" #: ./ref-ppdcfile.html:589 msgid "icc9 - ICC-based, 9 colors **" msgstr "" #: ./ref-ppdcfile.html:590 msgid "icca - ICC-based, 10 colors **" msgstr "" #: ./ref-ppdcfile.html:591 msgid "iccb - ICC-based, 11 colors **" msgstr "" #: ./ref-ppdcfile.html:592 msgid "iccc - ICC-based, 12 colors **" msgstr "" #: ./ref-ppdcfile.html:593 msgid "iccd - ICC-based, 13 colors **" msgstr "" #: ./ref-ppdcfile.html:594 msgid "icce - ICC-based, 14 colors **" msgstr "" #: ./ref-ppdcfile.html:595 msgid "iccf - ICC-based, 15 colors **" msgstr "" #: ./ref-ppdcfile.html:596 msgid "k - Black" msgstr "" #: ./ref-ppdcfile.html:597 msgid "kcmy - Black, cyan, magenta, yellow *" msgstr "" #: ./ref-ppdcfile.html:598 msgid "" "kcmycm - Black, cyan, magenta, yellow, light-cyan, light-magenta *" msgstr "" #: ./ref-ppdcfile.html:599 msgid "rgb - Red, green, blue" msgstr "" #: ./ref-ppdcfile.html:600 msgid "rgba - Red, green, blue, alpha" msgstr "" #: ./ref-ppdcfile.html:601 msgid "rgbw - Red, green, blue, luminance *" msgstr "" #: ./ref-ppdcfile.html:602 msgid "silver - Silver foil **" msgstr "" #: ./ref-ppdcfile.html:603 msgid "w - Luminance" msgstr "" #: ./ref-ppdcfile.html:604 msgid "white - White ink (as black) **" msgstr "" #: ./ref-ppdcfile.html:605 msgid "ymc - Yellow, magenta, cyan *" msgstr "" #: ./ref-ppdcfile.html:606 msgid "" "ymck - Yellow, magenta, cyan, black * \t
  \t
* = This colorspace is not supported on Mac OS X " "prior to 10.4. \t
** = This colorspace is " "not supported on Mac OS X." msgstr "" #: ./ref-ppdcfile.html:607 msgid "Color Order Keywords" msgstr "" #: ./ref-ppdcfile.html:608 msgid "The following color order keywords are recognized:" msgstr "" #: ./ref-ppdcfile.html:609 msgid "" "chunked or chunky - Color values \tare passed together on a " "line as RGB RGB RGB RGB" msgstr "" #: ./ref-ppdcfile.html:610 msgid "" "banded - Color values are passed separately \ton a line as RRRR GGGG " "BBBB *" msgstr "" #: ./ref-ppdcfile.html:611 msgid "" "planar - Color values are passed separately \ton a page as RRRR RRRR " "RRRR ... GGGG GGGG GGGG ... BBBB \tBBBB BBBB * \t
  \t
* = This color order \tis not supported by the " "current Apple RIP filters and \tshould not be used when developing printer " "drivers for \tMac OS X." msgstr ""