diff --git a/.clang-format b/.clang-format deleted file mode 100755 index 3123b51..0000000 --- a/.clang-format +++ /dev/null @@ -1,14 +0,0 @@ ---- -BasedOnStyle: LLVM -AlignOperands: 'true' -IndentWidth: '4' -IndentWrappedFunctionNames: 'true' -KeepEmptyLinesAtTheStartOfBlocks: 'false' -TabWidth: '4' -UseTab: Always -ColumnLimit: '0' -PointerAlignment: Left -BreakConstructorInitializers: BeforeComma -AccessModifierOffset: -4 -SortIncludes: 'false' -SortUsingDeclarations: 'false' diff --git a/.gitignore b/.gitignore deleted file mode 100755 index aa61156..0000000 --- a/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -[bB]in/ -.vscode/ \ No newline at end of file diff --git a/Makefile b/Makefile deleted file mode 100755 index 0c16172..0000000 --- a/Makefile +++ /dev/null @@ -1,24 +0,0 @@ -# ---- ---- # - -CC = gcc -CF = -Wall -lkrb5 -lvirt -ljson-c -lcrypto -g -pedantic - -# ---- ---- # - -build: $(shell find . -name "*.c") $(shell find . -name "*.h") - @mkdir -p bin - $(CC) $(CF) -o ./bin/sandbox $(shell find . -name "*.c") - -run: build - ./bin/sandbox - -debug: build - gdb -q ./bin/sandbox - -clean: - rm -rf ./bin - -.PHONY: build run clean - -# ---- ---- # - diff --git a/configfiles/etc/X11/doublescreen.sh b/configfiles/etc/X11/doublescreen.sh new file mode 100644 index 0000000..621a42b --- /dev/null +++ b/configfiles/etc/X11/doublescreen.sh @@ -0,0 +1,28 @@ +nbscreen=$(xrandr| grep -e " connected"| wc -l) + +#Si il y a 2 écrans +if [ $nbscreen -eq 2 ]; then + +#On récupere le nom de l'ecran +screen1=$(xrandr| grep -m1 " connected"| cut -d' ' -f1) +screen2=$(xrandr| grep -m2 " connected"| sed -n '2p'| cut -d' ' -f1) + +#Ainsi que leur resolution maximale +reso1=$(xrandr| grep -m1 "[ *]+"| cut -d' ' -f4) +reso2=$(xrandr| grep -m2 "[ *]+"| sed -n '2p'| cut -d' ' -f4) + +if [ -n $screen1 ] || [ -n $screen2 ]; then +#Si les deux nom d'écrans ne sont pas vide, on met leur meilleur résolution +xrandr --output $screen1 --mode $reso1 +xrandr --output $screen2 --mode $reso2 + +#Et on met l'écran principal a gauche de l'ecran plat phillips +if [ $reso1 == "1366x768" ]; then +xrandr --output $screen2 --left-of $screen1 +else +xrandr --output $screen1 --left-of $screen2 +fi + +fi +fi + diff --git a/configfiles/etc/X11/xorg.conf b/configfiles/etc/X11/xorg.conf new file mode 100644 index 0000000..9cf614a --- /dev/null +++ b/configfiles/etc/X11/xorg.conf @@ -0,0 +1,18 @@ +# Pour clavier azerty +Section "InputClass" + Identifier "Keyboard Defaults" + MatchIsKeyboard "yes" + Option "XkbLayout" "fr" +EndSection + +# Pour la résolution du 22" +Section "Screen" + Identifier "Screen0" + Device "Device0" + Monitor "Monitor0" + DefaultDepth 24 + SubSection "Display" + Depth 24 + Modes "1680x1050" "1280x1024" "1152x864" "1024x768" "800x600" + EndSubSection +EndSection \ No newline at end of file diff --git a/configfiles/etc/X11/xorg.conf.d/10-keyboard-layout.conf b/configfiles/etc/X11/xorg.conf.d/10-keyboard-layout.conf new file mode 100644 index 0000000..0464493 --- /dev/null +++ b/configfiles/etc/X11/xorg.conf.d/10-keyboard-layout.conf @@ -0,0 +1,6 @@ +Section "InputClass" + Identifier "keyboard Layout" + MatchIsKeyboard "on" + Option "XkbLayout" "fr, de, se" + Option "XkbOptions" "grp:shifts_toggle" +EndSection diff --git a/configfiles/etc/X11/xorg.conf.d/20-radeon.conf b/configfiles/etc/X11/xorg.conf.d/20-radeon.conf new file mode 100644 index 0000000..75b6354 --- /dev/null +++ b/configfiles/etc/X11/xorg.conf.d/20-radeon.conf @@ -0,0 +1,3 @@ +Section \"DRI\" + Mode 0666 +EndSection \ No newline at end of file diff --git a/configfiles/etc/cups/classes.conf b/configfiles/etc/cups/classes.conf new file mode 100644 index 0000000..e69de29 diff --git a/configfiles/etc/cups/client.conf b/configfiles/etc/cups/client.conf new file mode 100644 index 0000000..f156a32 --- /dev/null +++ b/configfiles/etc/cups/client.conf @@ -0,0 +1,2 @@ +# see 'man client.conf' +ServerName /var/run/cups/cups.sock # alternative: ServerName hostname-or-ip-address[:port] of a remote server diff --git a/configfiles/etc/cups/cups-browsed.conf b/configfiles/etc/cups/cups-browsed.conf new file mode 100644 index 0000000..57d2deb --- /dev/null +++ b/configfiles/etc/cups/cups-browsed.conf @@ -0,0 +1,26 @@ +# Which protocols will we use to discover printers on the network? +# Can use DNSSD and/or CUPS, or 'none' for neither. +BrowseRemoteProtocols DNSSD,CUPS + +# Which protocols will we use to broadcast shared local printers to the network? +# Can use DNSSD and/or CUPS, or 'none' for neither. +# Only CUPS is actually supported, as DNSSD is done by CUPS itself (we ignore +# DNSSD in this directive). +# BrowseLocalProtocols none + +# Settings of this directive apply to both BrowseRemoteProtocols and +# BrowseLocalProtocols. +# Can use DNSSD and/or CUPS, or 'none' for neither. +# BrowseProtocols none + +# Only browse remote printers from selected servers +# BrowseAllow cups.example.com +# BrowseAllow 192.168.1.12 +# BrowseAllow 192.168.1.0/24 +# BrowseAllow 192.168.1.0/255.255.255.0 + +# Use BrowsePoll to poll a particular CUPS server +# BrowsePoll cups.example.com +# BrowsePoll cups.example.com:631 + +# Unknown directives are ignored, also unknown values. diff --git a/configfiles/etc/cups/cups-files.conf b/configfiles/etc/cups/cups-files.conf new file mode 100644 index 0000000..178592b --- /dev/null +++ b/configfiles/etc/cups/cups-files.conf @@ -0,0 +1,98 @@ +# +# "$Id: cups-files.conf.in 10765 2012-12-13 20:36:17Z mike $" +# +# Sample file/directory/user/group configuration file for the CUPS scheduler. +# See "man cups-files.conf" for a complete description of this file. +# + +# List of events that are considered fatal errors for the scheduler... +#FatalErrors config + +# Default user and group for filters/backends/helper programs; this cannot be +# any user or group that resolves to ID 0 for security reasons... +#User daemon +#Group lp + +# Administrator user group, used to match @SYSTEM in cupsd.conf policy rules... +SystemGroup sys root + + +# User that is substituted for unauthenticated (remote) root accesses... +#RemoteRoot remroot + +# Do we allow file: device URIs other than to /dev/null? +#FileDevice No + +# Permissions for configuration and log files... +#ConfigFilePerm 0640 +#LogFilePerm 0644 + +# Location of the file logging all access to the scheduler; may be the name +# "syslog". If not an absolute path, the value of ServerRoot is used as the +# root directory. Also see the "AccessLogLevel" directive in cupsd.conf. +AccessLog /var/log/cups/access_log + +# Location of cache files used by the scheduler... +#CacheDir /var/cache/cups + +# Location of data files used by the scheduler... +#DataDir /usr/share/cups + +# Location of the static web content served by the scheduler... +#DocumentRoot /usr/share/cups/doc + +# Location of the file logging all messages produced by the scheduler and any +# helper programs; may be the name "syslog". If not an absolute path, the value +# of ServerRoot is used as the root directory. Also see the "LogLevel" +# directive in cupsd.conf. +ErrorLog /var/log/cups/error_log + +# Location of fonts used by older print filters... +#FontPath /usr/share/cups/fonts + +# Location of LPD configuration +#LPDConfigFile xinetd:///etc/xinetd.d/cups-lpd + +# Location of the file logging all pages printed by the scheduler and any +# helper programs; may be the name "syslog". If not an absolute path, the value +# of ServerRoot is used as the root directory. Also see the "PageLogFormat" +# directive in cupsd.conf. +PageLog /var/log/cups/page_log + +# Location of the file listing all of the local printers... +#Printcap /etc/printcap + +# Format of the Printcap file... +#PrintcapFormat bsd +#PrintcapFormat plist +#PrintcapFormat solaris + +# Location of all spool files... +#RequestRoot /var/spool/cups + +# Location of helper programs... +#ServerBin /usr/lib/cups + +# SSL/TLS certificate for the scheduler... +#ServerCertificate + +# SSL/TLS private key for the scheduler... +#ServerKey + +# Location of other configuration files... +#ServerRoot /etc/cups + +# Location of Samba configuration file... +#SMBConfigFile + +# Location of scheduler state files... +#StateDir /var/run/cups + +# Location of scheduler/helper temporary files. This directory is emptied on +# scheduler startup and cannot be one of the standard (public) temporary +# directory locations for security reasons... +#TempDir /var/spool/cups/tmp + +# +# End of "$Id: cups-files.conf.in 10765 2012-12-13 20:36:17Z mike $". +# diff --git a/configfiles/etc/cups/cups-files.conf.default b/configfiles/etc/cups/cups-files.conf.default new file mode 100644 index 0000000..7736896 --- /dev/null +++ b/configfiles/etc/cups/cups-files.conf.default @@ -0,0 +1,93 @@ +# +# File/directory/user/group configuration file for the CUPS scheduler. +# See "man cups-files.conf" for a complete description of this file. +# + +# List of events that are considered fatal errors for the scheduler... +#FatalErrors config + +# Do we call fsync() after writing configuration or status files? +#SyncOnClose No + +# Default user and group for filters/backends/helper programs; this cannot be +# any user or group that resolves to ID 0 for security reasons... +#User daemon +#Group lp + +# Administrator user group, used to match @SYSTEM in cupsd.conf policy rules... +# This cannot contain the Group value for security reasons... +SystemGroup sys root + + +# User that is substituted for unauthenticated (remote) root accesses... +#RemoteRoot remroot + +# Do we allow file: device URIs other than to /dev/null? +#FileDevice No + +# Permissions for configuration and log files... +#ConfigFilePerm 0640 +#LogFilePerm 0644 + +# Location of the file logging all access to the scheduler; may be the name +# "syslog". If not an absolute path, the value of ServerRoot is used as the +# root directory. Also see the "AccessLogLevel" directive in cupsd.conf. +AccessLog /var/log/cups/access_log + +# Location of cache files used by the scheduler... +#CacheDir /var/cache/cups + +# Location of data files used by the scheduler... +#DataDir /usr/share/cups + +# Location of the static web content served by the scheduler... +#DocumentRoot /usr/share/cups/doc + +# Location of the file logging all messages produced by the scheduler and any +# helper programs; may be the name "syslog". If not an absolute path, the value +# of ServerRoot is used as the root directory. Also see the "LogLevel" +# directive in cupsd.conf. +ErrorLog /var/log/cups/error_log + +# Location of fonts used by older print filters... +#FontPath /usr/share/cups/fonts + +# Location of LPD configuration +#LPDConfigFile xinetd:///etc/xinetd.d/cups-lpd + +# Location of the file logging all pages printed by the scheduler and any +# helper programs; may be the name "syslog". If not an absolute path, the value +# of ServerRoot is used as the root directory. Also see the "PageLogFormat" +# directive in cupsd.conf. +PageLog /var/log/cups/page_log + +# Location of the file listing all of the local printers... +#Printcap /etc/printcap + +# Format of the Printcap file... +#PrintcapFormat bsd +#PrintcapFormat plist +#PrintcapFormat solaris + +# Location of all spool files... +#RequestRoot /var/spool/cups + +# Location of helper programs... +#ServerBin /usr/lib/cups + +# SSL/TLS keychain for the scheduler... +#ServerKeychain ssl + +# Location of other configuration files... +#ServerRoot /etc/cups + +# Location of Samba configuration file... +#SMBConfigFile + +# Location of scheduler state files... +#StateDir /run/cups + +# Location of scheduler/helper temporary files. This directory is emptied on +# scheduler startup and cannot be one of the standard (public) temporary +# directory locations for security reasons... +#TempDir /var/spool/cups/tmp diff --git a/configfiles/etc/cups/cups-pdf.conf b/configfiles/etc/cups/cups-pdf.conf new file mode 100644 index 0000000..79a3769 --- /dev/null +++ b/configfiles/etc/cups/cups-pdf.conf @@ -0,0 +1,287 @@ +# cups-pdf.conf -- CUPS Backend Configuration (version 2.6.1, 2011-10-04) +# 18.09.2005, Volker C. Behr +# Experimentelle Physik V, Universitaet Wuerzburg +# behr@physik.uni-wuerzburg.de +# http://www.cups-pdf.de +# +# +# This code may be freely distributed as long as this header +# is preserved. Changes to the code should be clearly indicated. +# +# This code is distributed under the GPL. +# (http://www.gnu.org/copyleft/gpl.html) +# +# For more detailed licensing information see cups-pdf.c in the +# corresponding version number. + +########################################################################### +# # +# This is the configuration file for CUPS-PDF. Values that are not set in # +# here will use the defaults. Changes take effect immediately without the # +# need for restarting any services. # +# # +# Take care not to add whitespaces at the end of a line! # +# # +########################################################################### + + +########################################################################### +# # +# Path Settings # +# # +########################################################################### + +### Key: Out +## CUPS-PDF output directory +## special qualifiers: +## ${HOME} will be expanded to the user's home directory +## ${USER} will be expanded to the user name +## in case it is an NFS export make sure it is exported without +## root_squash! +### Default: /var/spool/cups-pdf/${USER} + +#Out /var/spool/cups-pdf/${USER} + +### Key: AnonDirName +## ABSOLUTE path for anonymously created PDF files +## if anonymous access is disabled this setting has no effect +### Default: /var/spool/cups-pdf/ANONYMOUS + +#AnonDirName /var/spool/cups-pdf/ANONYMOUS + +### Key: Spool +## CUPS-PDF spool directory - make sure there is no user 'SPOOL' on your +## system or change the path +### Default: /var/spool/cups-pdf/SPOOL + +#Spool /var/spool/cups-pdf/SPOOL + + +########################################################################### +# # +# Filename Settings # +# # +########################################################################### + +### Key: Truncate +## truncate long filenames to a maximum of characters +## this does not consider the full path to the output but only the filename +## without the .pdf-extension or a job-id prefix (see 'Label') +## the minimal value is 8 +### Default: 64 + +#Truncate 64 + +### Key: Cut +## removing file name extensions before appending .pdf to output +## extensions will only be removed if _both_ the following criteria are met: +## - the extension (w/o the dot) is not longer than characters +## - the remaining filename has a minimal length of 1 character +## set Cut to -1 in order to disable cutting +## recommended values: pure UNIX environment : -1 +## mixed environments : 3 +### Default: 3 + +#Cut 3 + +### Key: Label +## label all jobs with a unique job-id in order to avoid overwriting old +## files in case new ones with identical names are created; always true for +## untitled documents +## 0: label untitled documents only +## 1: label all documents with a preceeding "job_#-" +## 2: label all documents with a tailing "-job_#" +### Default: 0 + +#Label 0 + +### Key: TitlePref +## where to look first for a title when creating the output filename +## (title in PS file or title on commandline): +## 0: prefer title from %Title statement in the PS file +## 1: prefer title passed via commandline +### Default: 0 + +#TitlePref 0 + + +########################################################################### +# # +# User Settings # +# # +########################################################################### + +### Key: AnonUser +## uid for anonymous PDF creation (this might be a security issue) +## this setting has no influence on AnonDirName (see there) +## set this to an empty value to disable anonymous +### Default: nobody + +#AnonUser nobody + +### Key: LowerCase +## This options allows to check user names given to CUPS-PDF additionally +## against their lower case variants. This is necessary since in some +## Windows environments only upper case user names are passed. Usually UNIX +## user names are all lower case and it is save to use this option +## but be aware that it can lead to mis-identifications in case +## you have user names that differ only in upper/lower case. +## check only against user name as passed to CUPS : 0 +## check additionally against lower case user name : 1 +### Default: 1 + +#LowerCase 1 + +### Key: UserPrefix +## some installations require a domain prefix added to the user name +## leave empty for no prefix +### Default: + +#UserPrefix + +### Key: DirPrefix +## if a prefix was defined above this switch toggels whether to include +## the prefix in the output directory's name (if not $HOME) or not +## 0: do not include, 1: include +### Default: 0 + +#DirPrefix 0 + +### Key: RemovePrefix +## some installation pass usernames with a prefix (usually a domain name) +## if you do not want this prefix to be used by the ${USER} variable for +## output directories put the part which is to be cut here +### Default: + +#RemovePrefix + + +########################################################################### +# # +# Security Settings # +# # +########################################################################### + +### Key: AnonUMask +## umask for anonymous output +## these are the _inverse_ permissions to be granted +### Default: 0000 + +#AnonUMask 0000 + +### Key: UserUMask +## umask for user output of known users +## changing this can introduce security leaks if confidential +## information is processed! +### Default: 0077 + +#UserUMask 0077 + +### Key: Grp +## group cups-pdf is supposed to run as - this will also be the gid for all +## created directories and log files +### Default: lp + +#Grp lp + + +########################################################################### +# # +# Log Settings # +# # +########################################################################### + +### Key: Log +## CUPS-PDF log directory +## set this to an empty value to disable all logging +### Default: /var/log/cups + +#Log /var/log/cups + +### Key: LogType +## log-mode +## 1: errors +## 2: status (i.e. activity) +## 4: debug - this will generate a lot of log-output! +## add up values to combine options, i.e. 7 is full logging +## if logging is disabled these setting have no effect +### Default: 3 + +#LogType 3 + + +########################################################################### +# # +# PDF Conversion Settings # +# # +########################################################################### + +### Key: GhostScript +## location of GhostScript binary (gs) +## MacOSX: for using pstopdf (recommended) set this to /usr/bin/pstopdf +## or its proper location on your system +### Default: /usr/bin/gs + +#GhostScript /usr/bin/gs + +### Key: GSTmp +## location of temporary files during GhostScript operation +## this must be user-writable like /var/tmp or /tmp ! +### Default: /var/tmp + +#GSTmp /var/tmp + +### Key: GSCall +## command line for calling GhostScript (!!! DO NOT USE NEWLINES !!!) +## MacOSX: for using pstopdf set this to %s %s -o %s %s +### Default: %s -q -dCompatibilityLevel=%s -dNOPAUSE -dBATCH -dSAFER -sDEVICE=pdfwrite -sOutputFile="%s" -dAutoRotatePages=/PageByPage -dAutoFilterColorImages=false -dColorImageFilter=/FlateEncode -dPDFSETTINGS=/prepress -c .setpdfwrite -f %s + +#GSCall %s -q -dCompatibilityLevel=%s -dNOPAUSE -dBATCH -dSAFER -sDEVICE=pdfwrite -sOutputFile="%s" -dAutoRotatePages=/PageByPage -dAutoFilterColorImages=false -dColorImageFilter=/FlateEncode -dPDFSETTINGS=/prepress -c .setpdfwrite -f %s + +### Key: PDFVer +## PDF version to be created - can be "1.5", "1.4", "1.3" or "1.2" +## MacOSX: for using pstopdf set this to an empty value +### Default: 1.4 + +#PDFVer 1.4 + +### Key: PostProcessing +## postprocessing script that will be called after the creation of the PDF +## as arguments the filename of the PDF, the username as determined by +## CUPS-PDF and the one as given to CUPS-PDF will be passed +## the script will be called with user privileges +## set this to an empty value to use no postprocessing +### Default: + +#PostProcessing + + +########################################################################### +# # +# Experimental Settings # +# These settings activate experimental options. If you decide to use # +# them I would appreciate any feedback - including an 'ok' if they # +# work as expected - so I can eventually put them into the non- # +# experimental sections. # +# # +########################################################################### + +### Key: DecodeHexStrings +## this option will try to decode hex strings in the title to allow +## internationalized titles +## (have a look at contrib/pstitleconv for a suitable filter for data +## from Windows clients) +## 0: disable, 1: enable +### Default: 0 + +#DecodeHexStrings 0 + +### Key: FixNewlines +## this option will try to fix various unusal line delimiters (e.g. +## form feeds) +## especially useful when using non-Linux-generated files +## 0: disable, 1: enable +### Default: 0 + +#FixNewlines 0 + diff --git a/configfiles/etc/cups/cupsd.conf b/configfiles/etc/cups/cupsd.conf new file mode 100644 index 0000000..ddb1fa5 --- /dev/null +++ b/configfiles/etc/cups/cupsd.conf @@ -0,0 +1,134 @@ +# +# "$Id: cupsd.conf.in 10710 2012-11-26 18:26:01Z mike $" +# +# Sample configuration file for the CUPS scheduler. See "man cupsd.conf" for a +# complete description of this file. +# + +# Log general information in error_log - change "warn" to "debug" +# for troubleshooting... +LogLevel warn + +# Only listen for connections from the local machine. +Listen localhost:631 +Listen /var/run/cups/cups.sock + +# Show shared printers on the local network. +Browsing On +BrowseLocalProtocols dnssd + +# Default authentication type, when authentication is required... +DefaultAuthType Basic + +# Web interface setting... +WebInterface Yes + +# Restrict access to the server... + + Order allow,deny + + +# Restrict access to the admin pages... + + Order allow,deny + + +# Restrict access to configuration files... + + AuthType Default + Require user @SYSTEM + Order allow,deny + + +# Set the default printer/job policies... + + # Job/subscription privacy... + JobPrivateAccess default + JobPrivateValues default + SubscriptionPrivateAccess default + SubscriptionPrivateValues default + + # Job-related operations must be done by the owner or an administrator... + + Order deny,allow + + + + Require user @OWNER @SYSTEM + Order deny,allow + + + # All administration operations require an administrator to authenticate... + + AuthType Default + Require user @SYSTEM + Order deny,allow + + + # All printer operations require a printer operator to authenticate... + + AuthType Default + Require user @SYSTEM + Order deny,allow + + + # Only the owner or an administrator can cancel or authenticate a job... + + Require user @OWNER @SYSTEM + Order deny,allow + + + + Order deny,allow + + + +# Set the authenticated printer/job policies... + + # Job/subscription privacy... + JobPrivateAccess default + JobPrivateValues default + SubscriptionPrivateAccess default + SubscriptionPrivateValues default + + # Job-related operations must be done by the owner or an administrator... + + AuthType Default + Order deny,allow + + + + AuthType Default + Require user @OWNER @SYSTEM + Order deny,allow + + + # All administration operations require an administrator to authenticate... + + AuthType Default + Require user @SYSTEM + Order deny,allow + + + # All printer operations require a printer operator to authenticate... + + AuthType Default + Require user @SYSTEM + Order deny,allow + + + # Only the owner or an administrator can cancel or authenticate a job... + + AuthType Default + Require user @OWNER @SYSTEM + Order deny,allow + + + + Order deny,allow + + + +# +# End of "$Id: cupsd.conf.in 10710 2012-11-26 18:26:01Z mike $". +# diff --git a/configfiles/etc/cups/cupsd.conf.default b/configfiles/etc/cups/cupsd.conf.default new file mode 100644 index 0000000..ddb1fa5 --- /dev/null +++ b/configfiles/etc/cups/cupsd.conf.default @@ -0,0 +1,134 @@ +# +# "$Id: cupsd.conf.in 10710 2012-11-26 18:26:01Z mike $" +# +# Sample configuration file for the CUPS scheduler. See "man cupsd.conf" for a +# complete description of this file. +# + +# Log general information in error_log - change "warn" to "debug" +# for troubleshooting... +LogLevel warn + +# Only listen for connections from the local machine. +Listen localhost:631 +Listen /var/run/cups/cups.sock + +# Show shared printers on the local network. +Browsing On +BrowseLocalProtocols dnssd + +# Default authentication type, when authentication is required... +DefaultAuthType Basic + +# Web interface setting... +WebInterface Yes + +# Restrict access to the server... + + Order allow,deny + + +# Restrict access to the admin pages... + + Order allow,deny + + +# Restrict access to configuration files... + + AuthType Default + Require user @SYSTEM + Order allow,deny + + +# Set the default printer/job policies... + + # Job/subscription privacy... + JobPrivateAccess default + JobPrivateValues default + SubscriptionPrivateAccess default + SubscriptionPrivateValues default + + # Job-related operations must be done by the owner or an administrator... + + Order deny,allow + + + + Require user @OWNER @SYSTEM + Order deny,allow + + + # All administration operations require an administrator to authenticate... + + AuthType Default + Require user @SYSTEM + Order deny,allow + + + # All printer operations require a printer operator to authenticate... + + AuthType Default + Require user @SYSTEM + Order deny,allow + + + # Only the owner or an administrator can cancel or authenticate a job... + + Require user @OWNER @SYSTEM + Order deny,allow + + + + Order deny,allow + + + +# Set the authenticated printer/job policies... + + # Job/subscription privacy... + JobPrivateAccess default + JobPrivateValues default + SubscriptionPrivateAccess default + SubscriptionPrivateValues default + + # Job-related operations must be done by the owner or an administrator... + + AuthType Default + Order deny,allow + + + + AuthType Default + Require user @OWNER @SYSTEM + Order deny,allow + + + # All administration operations require an administrator to authenticate... + + AuthType Default + Require user @SYSTEM + Order deny,allow + + + # All printer operations require a printer operator to authenticate... + + AuthType Default + Require user @SYSTEM + Order deny,allow + + + # Only the owner or an administrator can cancel or authenticate a job... + + AuthType Default + Require user @OWNER @SYSTEM + Order deny,allow + + + + Order deny,allow + + + +# +# End of "$Id: cupsd.conf.in 10710 2012-11-26 18:26:01Z mike $". +# diff --git a/configfiles/etc/cups/gstoraster.convs b/configfiles/etc/cups/gstoraster.convs new file mode 100644 index 0000000..c01bbfe --- /dev/null +++ b/configfiles/etc/cups/gstoraster.convs @@ -0,0 +1,30 @@ +# Copyright (c) 2008, Till Kamppeter +# Copyright (c) 2011, Richard Hughes +# +# Permission is hereby granted, free of charge, to any person obtaining +# a copy of this software and associated documentation files (the +# "Software"), to deal in the Software without restriction, including +# without limitation the rights to use, copy, modify, merge, publish, +# distribute, sublicense, and/or sell copies of the Software, and to +# permit persons to whom the Software is furnished to do so, subject to +# the following conditions: +# +# The above copyright notice and this permission notice shall be included +# in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# MIT Open Source License - http://www.opensource.org/ +# +# $Id: pdftoraster.convs 8803 2008-06-24 14:16:29Z till $ +# +# CUPS file conversion rules for gstoraster filter + +application/vnd.cups-pdf application/vnd.cups-raster 66 gstoraster +application/vnd.cups-postscript application/vnd.cups-raster 100 gstoraster diff --git a/configfiles/etc/cups/ppd/Salle221.ppd b/configfiles/etc/cups/ppd/Salle221.ppd new file mode 100644 index 0000000..5b3f775 --- /dev/null +++ b/configfiles/etc/cups/ppd/Salle221.ppd @@ -0,0 +1,2256 @@ +*PPD-Adobe: "4.3" +*% ================================= +*% Copyright 1992-2015 HP Company +*% Permission is hereby granted, free of charge, to any person obtaining +*% a copy of this software and associated documentation files (the +*% "Software"), to deal in the Software without restriction, including +*% without limitation the rights to use, copy, modify, merge, publish, +*% distribute, sublicense, and/or sell copies of the Software, and to +*% permit persons to whom the Software is furnished to do so, subject to +*% the following conditions: +*% +*% The above copyright notice and this permission notice shall be +*% included in all copies or substantial portions of the Software. +*% +*% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +*% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +*% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +*% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +*% LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +*% OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +*% WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +*% +*% [this is the MIT open source license -- please see www.opensource.org] +*% +*%%%% Created by the CUPS PPD Compiler CUPS v1.7.2. +*% Copyright (c) 2015 HP Development Company, L.P. +*FormatVersion: "4.3" +*FileVersion: "19.12" +*LanguageVersion: English +*LanguageEncoding: ISOLatin1 +*PCFileName: "HPP00052.PPD" +*Product: "(HP Color LaserJet Pro M252n)" +*Product: "(HP Color LaserJet Pro M252c1)" +*Product: "(HP Color LaserJet Pro M252c2)" +*Product: "(HP Color LaserJet Pro M252c3)" +*Product: "(HP Color LaserJet Pro M252c4)" +*Product: "(HP Color LaserJet Pro M252c5)" +*Product: "(HP Color LaserJet Pro M252dw)" +*Product: "(HP Color LaserJet Pro M252c6)" +*Product: "(HP Color LaserJet Pro M252c7)" +*Product: "(HP Color LaserJet Pro M252c8)" +*Product: "(HP Color LaserJet Pro M252c9)" +*Product: "(HP Color LaserJet Pro M252c10)" +*Manufacturer: "HP" +*ModelName: "HP Color LaserJet Pro M252" +*ShortNickName: "HP Color LaserJet Pro M252" +*1284DeviceID: "MFG:Hewlett-Packard;MDL:hp color laserjet pro m252;" +*NickName: "HP Color LaserJet Pro M252 Postscript (recommended)" +*PSVersion: "(3010.107) 3" +*LanguageLevel: "3" +*ColorDevice: True +*DefaultColorSpace: RGB +*FileSystem: False +*Throughput: "19" +*LandscapeOrientation: Plus90 +*TTRasterizer: Type42 +*% Driver-defined attributes... +*Protocols: TBCP +*cupsPJLCharset: "UTF-8" +*HPAccountingInfo: "4" +*HPBOD: "1" +*cupsUIResolver DuplexerVsDuplex: "*Duplex None" +*cupsUIConstraints DuplexerVsDuplex: "*HPOption_Duplexer False *Duplex" +*cupsCommands: "ReportLevels" +*cupsSNMPSupplies: False +*cupsIPPSupplies: False +*cupsMarkerName cyan/Cyan: "" +*cupsMarkerName magenta/Magenta: "" +*cupsMarkerName yellow/Yellow: "" +*cupsMarkerName black/Black: "" +*RequiresPageRegion All: True +*cupsUIResolver PageSizeVsDuplex: "*PageSize Letter *Duplex None" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize 4x6" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize 5x8" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize A6" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize B6" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize Env4x6" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize Postcard" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize DoublePostcardRotated" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize Env10" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize EnvMonarch" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize EnvISOB5" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize EnvC5" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize EnvDL" +*cupsMediaQualifier2: "Duplex" +*cupsMinSize .DuplexTumble.False: "419.00 595.00" +*cupsMinSize .DuplexNoTumble.False: "419.00 595.00" +*DefaultResolution: 600dpi +*cupsUIResolver MediaTypeVsDuplex: "*Duplex None *MediaType Unspecified" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType HPCoverMatte200" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType HPMattePhoto200" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType CardGlossy176220" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType ColorLaserTransparency" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType Labels" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType Envelope" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType HeavyEnvelope" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType OpaqueFilm" +*FreeVM: "62914560" +*cupsVersion: 1.5 +*cupsModelNumber: 0 +*cupsManualCopies: True +*cupsLanguages: "en da de es fi fr it ja ko no nl pt ru sv zh_CN zh_TW" +*cupsFilter: "application/vnd.cups-postscript 0 hpps" +*OpenUI *PageSize/Media Size: PickOne +*OrderDependency: 10 AnySetup *PageSize +*DefaultPageSize: A4 +*PageSize Letter/US Letter: "<>setpagedevice" +*PageSize Legal/US Legal: "<>setpagedevice" +*PageSize Executive/Executive: "<>setpagedevice" +*PageSize FanFoldGermanLegal/Oficio 8.5x13: "<> setpagedevice" +*PageSize 4x6/4x6: "<>setpagedevice" +*PageSize 5x8/5x8: "<>setpagedevice" +*PageSize A4/A4: "<>setpagedevice" +*PageSize A5/A5: "<>setpagedevice" +*PageSize A6/A6: "<>setpagedevice" +*PageSize B5/JIS B5: "<>setpagedevice" +*PageSize B6/JIS B6: "<>setpagedevice" +*PageSize Env4x6/10x15 cm: "<> setpagedevice" +*PageSize Oficio/Oficio 216x340 mm: "<>setpagedevice" +*PageSize 195x270mm/16K 195x270 mm: "<>setpagedevice" +*PageSize 184x260mm/16K 184x260 mm: "<>setpagedevice" +*PageSize 7.75x10.75/16K 197x273 mm: "<>setpagedevice" +*PageSize Postcard/Postcard: "<>setpagedevice" +*PageSize DoublePostcardRotated/Postcard Double Long Edge: "<>setpagedevice" +*PageSize Env10/Envelope #10: "<>setpagedevice" +*PageSize EnvMonarch/Envelope Monarch: "<>setpagedevice" +*PageSize EnvISOB5/Envelope B5: "<>setpagedevice" +*PageSize EnvC5/Envelope C5: "<>setpagedevice" +*PageSize EnvDL/Envelope DL: "<>setpagedevice" +*CloseUI: *PageSize +*OpenUI *PageRegion/Media Size: PickOne +*OrderDependency: 10 AnySetup *PageRegion +*DefaultPageRegion: A4 +*PageRegion Letter/US Letter: "<>setpagedevice" +*PageRegion Legal/US Legal: "<>setpagedevice" +*PageRegion Executive/Executive: "<>setpagedevice" +*PageRegion FanFoldGermanLegal/Oficio 8.5x13: "<> setpagedevice" +*PageRegion 4x6/4x6: "<>setpagedevice" +*PageRegion 5x8/5x8: "<>setpagedevice" +*PageRegion A4/A4: "<>setpagedevice" +*PageRegion A5/A5: "<>setpagedevice" +*PageRegion A6/A6: "<>setpagedevice" +*PageRegion B5/JIS B5: "<>setpagedevice" +*PageRegion B6/JIS B6: "<>setpagedevice" +*PageRegion Env4x6/10x15 cm: "<> setpagedevice" +*PageRegion Oficio/Oficio 216x340 mm: "<>setpagedevice" +*PageRegion 195x270mm/16K 195x270 mm: "<>setpagedevice" +*PageRegion 184x260mm/16K 184x260 mm: "<>setpagedevice" +*PageRegion 7.75x10.75/16K 197x273 mm: "<>setpagedevice" +*PageRegion Postcard/Postcard: "<>setpagedevice" +*PageRegion DoublePostcardRotated/Postcard Double Long Edge: "<>setpagedevice" +*PageRegion Env10/Envelope #10: "<>setpagedevice" +*PageRegion EnvMonarch/Envelope Monarch: "<>setpagedevice" +*PageRegion EnvISOB5/Envelope B5: "<>setpagedevice" +*PageRegion EnvC5/Envelope C5: "<>setpagedevice" +*PageRegion EnvDL/Envelope DL: "<>setpagedevice" +*CloseUI: *PageRegion +*DefaultImageableArea: Letter +*ImageableArea Letter/US Letter: "12 12 600 780" +*ImageableArea Legal/US Legal: "12 12 600 996" +*ImageableArea Executive/Executive: "12 12 510 744" +*ImageableArea FanFoldGermanLegal/Oficio 8.5x13: "12 12 600 924" +*ImageableArea 4x6/4x6: "12 12 276 420" +*ImageableArea 5x8/5x8: "12 12 348 564" +*ImageableArea A4/A4: "12 12 583 830" +*ImageableArea A5/A5: "12 12 408 583" +*ImageableArea A6/A6: "12 12 285 408" +*ImageableArea B5/JIS B5: "12 12 504 717" +*ImageableArea B6/JIS B6: "12 12 351 504" +*ImageableArea Env4x6/10x15 cm: "12 12 276 419" +*ImageableArea Oficio/Oficio 216x340 mm: "12 12 600 952" +*ImageableArea 195x270mm/16K 195x270 mm: "12 12 541 753" +*ImageableArea 184x260mm/16K 184x260 mm: "12 12 510 725" +*ImageableArea 7.75x10.75/16K 197x273 mm: "12 12 546 762" +*ImageableArea Postcard/Postcard: "12 12 271 408" +*ImageableArea DoublePostcardRotated/Postcard Double Long Edge: "12 12 408 555" +*ImageableArea Env10/Envelope #10: "12 12 285 672" +*ImageableArea EnvMonarch/Envelope Monarch: "12 12 267 528" +*ImageableArea EnvISOB5/Envelope B5: "12 12 487 697" +*ImageableArea EnvC5/Envelope C5: "12 12 447 637" +*ImageableArea EnvDL/Envelope DL: "12 12 300 612" +*DefaultPaperDimension: Letter +*PaperDimension Letter/US Letter: "612 792" +*PaperDimension Legal/US Legal: "612 1008" +*PaperDimension Executive/Executive: "522 756" +*PaperDimension FanFoldGermanLegal/Oficio 8.5x13: "612 936" +*PaperDimension 4x6/4x6: "288 432" +*PaperDimension 5x8/5x8: "360 576" +*PaperDimension A4/A4: "595 842" +*PaperDimension A5/A5: "420 595" +*PaperDimension A6/A6: "297 420" +*PaperDimension B5/JIS B5: "516 729" +*PaperDimension B6/JIS B6: "363 516" +*PaperDimension Env4x6/10x15 cm: "288 431" +*PaperDimension Oficio/Oficio 216x340 mm: "612 964" +*PaperDimension 195x270mm/16K 195x270 mm: "553 765" +*PaperDimension 184x260mm/16K 184x260 mm: "522 737" +*PaperDimension 7.75x10.75/16K 197x273 mm: "558 774" +*PaperDimension Postcard/Postcard: "283 420" +*PaperDimension DoublePostcardRotated/Postcard Double Long Edge: "420 567" +*PaperDimension Env10/Envelope #10: "297 684" +*PaperDimension EnvMonarch/Envelope Monarch: "279 540" +*PaperDimension EnvISOB5/Envelope B5: "499 709" +*PaperDimension EnvC5/Envelope C5: "459 649" +*PaperDimension EnvDL/Envelope DL: "312 624" +*MaxMediaWidth: "612" +*MaxMediaHeight: "1008" +*HWMargins: 12 12 12 12 +*CustomPageSize True: "pop pop pop <>setpagedevice" +*ParamCustomPageSize Width: 1 points 216 612 +*ParamCustomPageSize Height: 2 points 360 1008 +*ParamCustomPageSize WidthOffset: 3 points 0 0 +*ParamCustomPageSize HeightOffset: 4 points 0 0 +*ParamCustomPageSize Orientation: 5 int 0 0 +*OpenUI *Duplex/Two-Sided: PickOne +*OrderDependency: 50 AnySetup *Duplex +*DefaultDuplex: DuplexNoTumble +*Duplex None/Off: "<> setpagedevice" +*Duplex DuplexNoTumble/Long-Edge Binding: "<> setpagedevice" +*Duplex DuplexTumble/Short-Edge Binding: "<> setpagedevice" +*CloseUI: *Duplex +*OpenUI *InputSlot/Paper Feed: PickOne +*OrderDependency: 40 AnySetup *InputSlot +*DefaultInputSlot: Auto +*InputSlot Auto/Automatic: " + <> setpagedevice" +*End +*da.InputSlot Auto/Automatisk: "" +*de.InputSlot Auto/Automatisch: "" +*es.InputSlot Auto/Automático: "" +*fi.InputSlot Auto/Automaattinen: "" +*fr.InputSlot Auto/Automatique: "" +*it.InputSlot Auto/Automatico: "" +*ja.InputSlot Auto/自動: "" +*ko.InputSlot Auto/자동: "" +*nl.InputSlot Auto/Automatisch: "" +*no.InputSlot Auto/Automatisk: "" +*pt.InputSlot Auto/Automático: "" +*ru.InputSlot Auto/Автоматически: "" +*sv.InputSlot Auto/Automatiskt: "" +*zh_CN.InputSlot Auto/自动: "" +*zh_TW.InputSlot Auto/自動: "" + +*InputSlot Tray1/Tray 1: "<> setpagedevice" +*InputSlot Tray2/Tray 2: "<> setpagedevice" +*InputSlot ManualFeed/Manual Feed: "<> setpagedevice" +*CloseUI: *InputSlot +*OpenGroup: InstallableOptions/Installable Options +*OpenUI *HPOption_Duplexer/Duplex Unit: Boolean +*OrderDependency: 0 AnySetup *HPOption_Duplexer +*DefaultHPOption_Duplexer: False +*HPOption_Duplexer True/On: "" +*HPOption_Duplexer False/Off: "" +*CloseUI: *HPOption_Duplexer +*CloseGroup: InstallableOptions +*OpenGroup: HPColorOptionsPanel/Color +*OpenUI *HPPJLColorAsGray/Print Color as Gray: PickOne +*OrderDependency: 20 AnySetup *HPPJLColorAsGray +*DefaultHPPJLColorAsGray: no +*HPPJLColorAsGray yes/On: " " +*HPPJLColorAsGray no/Off: " " +*CloseUI: *HPPJLColorAsGray +*OpenUI *HPRGBEmulation/RGB Color: PickOne +*OrderDependency: 57 AnySetup *HPRGBEmulation +*DefaultHPRGBEmulation: DefaultSRGB +*HPRGBEmulation DefaultSRGB/Default (sRGB): " + globaldict /ColorSmartColorMatching known { + MatchScreen ColorSmartImageAdjustment + } if + " +*End +*HPRGBEmulation PhotoSRGB/Photo (sRGB): " + globaldict /ColorSmartColorMatching known { + PhotoQuality ColorSmartImageAdjustment + } if + " +*End +*HPRGBEmulation Adobe/Photo (Adobe RGB 1998): " + globaldict /ColorSmartColorMatching known { + AdobeRGB ColorSmartImageAdjustment + } if + " +*End +*HPRGBEmulation VividSRGB/Vivid (sRGB): " + globaldict /ColorSmartColorMatching known { + Vivid ColorSmartImageAdjustment + } if + " +*End +*HPRGBEmulation HPRGBEmulationNone/None: " + globaldict /ColorSmartColorMatching known { + NoAdj ColorSmartImageAdjustment + } if + " +*End +*CloseUI: *HPRGBEmulation +*OpenUI *HPEdgeControl/Edge Control: PickOne +*OrderDependency: 57 AnySetup *HPEdgeControl +*DefaultHPEdgeControl: Normal +*HPEdgeControl HPEdgeControlOff/Off: " + globaldict /HPTextAdaptiveHalftoning known { + false HPTextAdaptiveHalftoning + false HPGraphicsAdaptiveHalftoning + false HPImageAdaptiveHalftoning + } if + globaldict /HPColorTrapping known { + Off HPColorTrapping + } if + " +*End +*HPEdgeControl Light/Light: " + globaldict /HPTextAdaptiveHalftoning known { + true HPTextAdaptiveHalftoning + true HPGraphicsAdaptiveHalftoning + true HPImageAdaptiveHalftoning + } if + globaldict /HPColorTrapping known { + Light HPColorTrapping + } if + " +*End +*HPEdgeControl Normal/Normal: " + globaldict /HPTextAdaptiveHalftoning known { + true HPTextAdaptiveHalftoning + true HPGraphicsAdaptiveHalftoning + true HPImageAdaptiveHalftoning + } if + globaldict /HPColorTrapping known { + Normal HPColorTrapping + } if + " +*End +*HPEdgeControl Max/Maximum: " + globaldict /HPTextAdaptiveHalftoning known { + true HPTextAdaptiveHalftoning + true HPGraphicsAdaptiveHalftoning + true HPImageAdaptiveHalftoning + } if + globaldict /HPColorTrapping known { + Max HPColorTrapping + } if + " +*End +*CloseUI: *HPEdgeControl +*OpenUI *HPGeneralHalftone/Halftone: PickOne +*OrderDependency: 57 AnySetup *HPGeneralHalftone +*DefaultHPGeneralHalftone: Smooth +*HPGeneralHalftone Smooth/Smooth: " + globaldict /ColorSmartColorMatching known { + Smooth ColorSmartGraphicsHalftone + Smooth ColorSmartImageHalftone + Smooth ColorSmartTextHalftone + } if + " +*End +*HPGeneralHalftone Detail/Detail: " + globaldict /ColorSmartColorMatching known { + Detail ColorSmartGraphicsHalftone + Detail ColorSmartImageHalftone + Detail ColorSmartTextHalftone + } if + " +*End +*CloseUI: *HPGeneralHalftone +*OpenUI *HPTextNeutralGrays/Text Neutral Grays: PickOne +*OrderDependency: 57 AnySetup *HPTextNeutralGrays +*DefaultHPTextNeutralGrays: Black +*HPTextNeutralGrays Black/Black Only: " + globaldict /HPTextNeutralAxis known { + TonerBlack HPTextNeutralAxis + } if + " +*End +*HPTextNeutralGrays ProcessBlack/4-Color: " + globaldict /HPTextNeutralAxis known { + ProcBlack HPTextNeutralAxis + } if + " +*End +*CloseUI: *HPTextNeutralGrays +*OpenUI *HPGraphicsNeutralGrays/Graphics Neutral Grays: PickOne +*OrderDependency: 57 AnySetup *HPGraphicsNeutralGrays +*DefaultHPGraphicsNeutralGrays: Black +*HPGraphicsNeutralGrays Black/Black Only: " + globaldict /HPGraphicsNeutralAxis known { + TonerBlack HPGraphicsNeutralAxis + } if + " +*End +*HPGraphicsNeutralGrays ProcessBlack/4-Color: " + globaldict /HPGraphicsNeutralAxis known { + ProcBlack HPGraphicsNeutralAxis + } if + " +*End +*CloseUI: *HPGraphicsNeutralGrays +*OpenUI *HPPhotoNeutralGrays/Photo Neutral Grays: PickOne +*OrderDependency: 57 AnySetup *HPPhotoNeutralGrays +*DefaultHPPhotoNeutralGrays: ProcessBlack +*HPPhotoNeutralGrays Black/Black Only: " + globaldict /HPImageNeutralAxis known { + TonerBlack HPImageNeutralAxis + } if + " +*End +*HPPhotoNeutralGrays ProcessBlack/4-Color: " + globaldict /HPImageNeutralAxis known { + ProcBlack HPImageNeutralAxis + } if + " +*End +*CloseUI: *HPPhotoNeutralGrays +*CloseGroup: HPColorOptionsPanel +*OpenGroup: HPPaperQualityPanel/Paper/Quality +*OpenUI *HPPJLEconoMode/EconoMode: Boolean +*OrderDependency: 20 AnySetup *HPPJLEconoMode +*DefaultHPPJLEconoMode: False +*HPPJLEconoMode True/On: " " +*HPPJLEconoMode False/Off: " " +*CloseUI: *HPPJLEconoMode +*OpenUI *MediaType/Media Type: PickOne +*OrderDependency: 20 AnySetup *MediaType +*DefaultMediaType: Plain +*MediaType Unspecified/Unspecified: "<> setpagedevice" +*MediaType Plain/Plain: "<> setpagedevice" +*MediaType HPEcoSMARTLite/HP EcoSMART Lite: "<> setpagedevice" +*MediaType HPLaserJet90/HP LaserJet 90g: "<> setpagedevice" +*MediaType HPColorLaserMatte105/HP Color Laser Matte 105g: "<> setpagedevice" +*MediaType HPPremiumChoiceMatte120/HP Premium Choice Matte 120g: "<> setpagedevice" +*MediaType HPBrochureMatte150/HP Brochure Matte 150g: "<> setpagedevice" +*MediaType HPCoverMatte200/HP Cover Matte 200g: "<> setpagedevice" +*MediaType HPMattePhoto200/HP Matte Photo 200g: "<> setpagedevice" +*MediaType HPPremiumPresentationGlossy120/HP Premium Presentation Glossy 120g: "<> setpagedevice" +*MediaType HPBrochureGlossy150/HP Brochure Glossy 150g: "<> setpagedevice" +*MediaType HPTrifoldBrochureGlossy150/HP Tri-fold Brochure Glossy 150g: "<> setpagedevice" +*MediaType HPBrochureGlossy200/HP Brochure Glossy 200g: "<> setpagedevice" +*MediaType Light6074/Light 60-74g: "<> setpagedevice" +*MediaType Intermediate8595/Intermediate 85-95g: "<> setpagedevice" +*MediaType MidWeight96110/Mid-Weight 96-110g: "<> setpagedevice" +*MediaType Heavy111130/Heavy 111-130g: "<> setpagedevice" +*MediaType ExtraHeavy131175/Extra Heavy 131-175g: "<> setpagedevice" +*MediaType HeavyGlossy111130/Heavy Glossy 111-130g: "<> setpagedevice" +*MediaType ExtraHeavyGlossy131175/Extra Heavy Glossy 131-175g: "<> setpagedevice" +*MediaType CardGlossy176220/Card Glossy 176-220g: "<> setpagedevice" +*MediaType ColorLaserTransparency/Color Laser Transparency: "<> setpagedevice" +*MediaType Labels/Labels: "<> setpagedevice" +*MediaType Letterhead/Letterhead: "<> setpagedevice" +*MediaType Envelope/Envelope: "<> setpagedevice" +*MediaType HeavyEnvelope/Heavy Envelope: "<> setpagedevice" +*MediaType Preprinted/Preprinted: "<> setpagedevice" +*MediaType Prepunched/Prepunched: "<> setpagedevice" +*MediaType Colored/Colored: "<> setpagedevice" +*MediaType Bond/Bond: "<> setpagedevice" +*MediaType Recycled/Recycled: "<> setpagedevice" +*MediaType Rough/Rough: "<> setpagedevice" +*MediaType HeavyRough/Heavy Rough: "<> setpagedevice" +*MediaType OpaqueFilm/Opaque Film: "<> setpagedevice" +*CloseUI: *MediaType +*CloseGroup: HPPaperQualityPanel +*da.Translation Manufacturer/HP: "" +*da.Translation ModelName/HP Color LaserJet Pro M252: "" +*da.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*da.Translation NickName/HP Color LaserJet Pro M252: "" +*da.Translation PageSize/Mediestørrelse: "" +*da.PageSize Letter/US Letter: "" +*da.PageSize Legal/US Legal: "" +*da.PageSize Executive/Executive: "" +*da.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*da.PageSize 4x6/4x6: "" +*da.PageSize 5x8/5x8: "" +*da.PageSize A4/A4: "" +*da.PageSize A5/A5: "" +*da.PageSize A6/A6: "" +*da.PageSize B5/JIS B5: "" +*da.PageSize B6/JIS B6: "" +*da.PageSize Env4x6/10x15 cm: "" +*da.PageSize Oficio/Oficio 216x340 mm: "" +*da.PageSize 195x270mm/16K 195x270 mm: "" +*da.PageSize 184x260mm/16K 184x260 mm: "" +*da.PageSize 7.75x10.75/16K 197x273 mm: "" +*da.PageSize Postcard/Postcard: "" +*da.PageSize DoublePostcardRotated/Postkort, dobbelt - lang kant: "" +*da.PageSize Env10/Konv Comm10: "" +*da.PageSize EnvMonarch/Konv Monarch: "" +*da.PageSize EnvISOB5/Konv ISO B5: "" +*da.PageSize EnvC5/Konv C5: "" +*da.PageSize EnvDL/Konv DL: "" +*da.Translation Duplex/Dupleks: "" +*da.Duplex None/Fra: "" +*da.Duplex DuplexNoTumble/Indbinding på den lange led: "" +*da.Duplex DuplexTumble/Indbinding på den korte led: "" +*da.Translation InputSlot/Papirforsyning: "" +*da.InputSlot Tray1/Bakke 1: "" +*da.InputSlot Tray2/Bakke 2: "" +*da.InputSlot ManualFeed/Manuel indføring: "" +*da.Translation InstallableOptions/Installable Options: "" +*da.Translation HPOption_Duplexer/Dupleksudskrivningsudstyr: "" +*da.HPOption_Duplexer True/Til: "" +*da.HPOption_Duplexer False/Fra: "" +*da.Translation HPColorOptionsPanel/Farve: "" +*da.Translation HPPJLColorAsGray/Udskriv farve som grå: "" +*da.HPPJLColorAsGray yes/Til: "" +*da.HPPJLColorAsGray no/Fra: "" +*da.Translation HPRGBEmulation/RGB-farve: "" +*da.HPRGBEmulation DefaultSRGB/Standard (sRGB): "" +*da.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*da.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*da.HPRGBEmulation VividSRGB/Livlig (sRGB): "" +*da.HPRGBEmulation HPRGBEmulationNone/Ingen: "" +*da.Translation HPEdgeControl/Kantstyring: "" +*da.HPEdgeControl HPEdgeControlOff/Fra: "" +*da.HPEdgeControl Light/Lys: "" +*da.HPEdgeControl Normal/Normal: "" +*da.HPEdgeControl Max/Maksimum: "" +*da.Translation HPGeneralHalftone/Halvtone: "" +*da.HPGeneralHalftone Smooth/Jævn: "" +*da.HPGeneralHalftone Detail/Detaljer: "" +*da.Translation HPTextNeutralGrays/Tekst i neutral grå: "" +*da.HPTextNeutralGrays Black/Kun sort: "" +*da.HPTextNeutralGrays ProcessBlack/4-farve: "" +*da.Translation HPGraphicsNeutralGrays/Grafik i neutral grå: "" +*da.HPGraphicsNeutralGrays Black/Kun sort: "" +*da.HPGraphicsNeutralGrays ProcessBlack/4-farve: "" +*da.Translation HPPhotoNeutralGrays/Fotografier i neutral grå: "" +*da.HPPhotoNeutralGrays Black/Kun sort: "" +*da.HPPhotoNeutralGrays ProcessBlack/4-farve: "" +*da.Translation HPPaperQualityPanel/Paper/Quality: "" +*da.Translation HPPJLEconoMode/EconoMode: "" +*da.HPPJLEconoMode True/Til: "" +*da.HPPJLEconoMode False/Fra: "" +*da.Translation MediaType/Medietype: "" +*da.MediaType Unspecified/Uspecificeret: "" +*da.MediaType Plain/Almindeligt: "" +*da.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*da.MediaType HPLaserJet90/HP LaserJet 90g: "" +*da.MediaType HPColorLaserMatte105/HP Color Laser, mat 105g: "" +*da.MediaType HPPremiumChoiceMatte120/HP Premium Choice, mat 120g: "" +*da.MediaType HPBrochureMatte150/HP brochurepapir, mat 150g: "" +*da.MediaType HPCoverMatte200/HP Omslag, mat 200g: "" +*da.MediaType HPMattePhoto200/HP Foto, mat 200g: "" +*da.MediaType HPPremiumPresentationGlossy120/HP Premium-præsentationspapir, Blankt 120g: "" +*da.MediaType HPBrochureGlossy150/HP brochurepapir, Blankt 150g: "" +*da.MediaType HPTrifoldBrochureGlossy150/HP brochurepapir foldet tre gange, Blankt, 150g: "" +*da.MediaType HPBrochureGlossy200/HP brochurepapir, Blankt 200g: "" +*da.MediaType Light6074/Let 60-74g: "" +*da.MediaType Intermediate8595/Mellem 85-95g: "" +*da.MediaType MidWeight96110/Mellemkraftigt 96-110g: "" +*da.MediaType Heavy111130/Kraftigt 111-130g: "" +*da.MediaType ExtraHeavy131175/Ekstra kraftigt 131-175g: "" +*da.MediaType HeavyGlossy111130/Kraftigt blankt 111-130g: "" +*da.MediaType ExtraHeavyGlossy131175/Ekstra tykt og blankt 131-175g: "" +*da.MediaType CardGlossy176220/Kort, blankt 176-220g: "" +*da.MediaType ColorLaserTransparency/Color Laser-transparent: "" +*da.MediaType Labels/Etiketter: "" +*da.MediaType Letterhead/Brevpapir: "" +*da.MediaType Envelope/Konvolut: "" +*da.MediaType HeavyEnvelope/Kraftig konvolut: "" +*da.MediaType Preprinted/Fortrykt: "" +*da.MediaType Prepunched/Hullet: "" +*da.MediaType Colored/Farvet: "" +*da.MediaType Bond/Bankpost: "" +*da.MediaType Recycled/Genbrug: "" +*da.MediaType Rough/Groft: "" +*da.MediaType HeavyRough/Kraftigt, groft: "" +*da.MediaType OpaqueFilm/Uigennemskinnelig film: "" +*da.APPrinterPreset ChartsAndGraphs/Diagrammer og grafik: "" +*da.cupsICCProfile RGB../sRGB Matching Profile: "" +*da.cupsICCProfile CMYK../CMYK Matching Profile: "" +*da.cupsICCProfile Gray../Gray Matching Profile: "" +*da.cupsMarkerName cyan/Cyan: "" +*da.cupsMarkerName magenta/Magenta: "" +*da.cupsMarkerName yellow/Gul: "" +*da.cupsMarkerName black/Sort: "" +*de.Translation Manufacturer/HP: "" +*de.Translation ModelName/HP Color LaserJet Pro M252: "" +*de.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*de.Translation NickName/HP Color LaserJet Pro M252: "" +*de.Translation PageSize/Mediengröße: "" +*de.PageSize Letter/US Letter: "" +*de.PageSize Legal/US Legal: "" +*de.PageSize Executive/Executive: "" +*de.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*de.PageSize 4x6/4x6: "" +*de.PageSize 5x8/5x8: "" +*de.PageSize A4/A4: "" +*de.PageSize A5/A5: "" +*de.PageSize A6/A6: "" +*de.PageSize B5/JIS B5: "" +*de.PageSize B6/JIS B6: "" +*de.PageSize Env4x6/10x15 cm: "" +*de.PageSize Oficio/Oficio 216x340 mm: "" +*de.PageSize 195x270mm/16K 195x270 mm: "" +*de.PageSize 184x260mm/16K 184x260 mm: "" +*de.PageSize 7.75x10.75/16K 197x273 mm: "" +*de.PageSize Postcard/Postcard: "" +*de.PageSize DoublePostcardRotated/Postkarte - Doppelt - breite Seite: "" +*de.PageSize Env10/Umschlag Comm10: "" +*de.PageSize EnvMonarch/Umschlag Monarch: "" +*de.PageSize EnvISOB5/Umschlag ISO B5: "" +*de.PageSize EnvC5/Umschlag C5: "" +*de.PageSize EnvDL/Umschlag DL: "" +*de.Translation Duplex/Beidseitig: "" +*de.Duplex None/Aus: "" +*de.Duplex DuplexNoTumble/Bindung an langer Kante: "" +*de.Duplex DuplexTumble/Bindung an kurzer Kante: "" +*de.Translation InputSlot/Papiereinzug: "" +*de.InputSlot Tray1/Zufuhrfach 1: "" +*de.InputSlot Tray2/Zufuhrfach 2: "" +*de.InputSlot ManualFeed/Manuelle Zufuhr: "" +*de.Translation InstallableOptions/Installable Options: "" +*de.Translation HPOption_Duplexer/Duplexdruck-Zubehör: "" +*de.HPOption_Duplexer True/Ein: "" +*de.HPOption_Duplexer False/Aus: "" +*de.Translation HPColorOptionsPanel/Farbe: "" +*de.Translation HPPJLColorAsGray/In Graustufen drucken: "" +*de.HPPJLColorAsGray yes/Ein: "" +*de.HPPJLColorAsGray no/Aus: "" +*de.Translation HPRGBEmulation/RGB-Farbe: "" +*de.HPRGBEmulation DefaultSRGB/Standard (sRGB): "" +*de.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*de.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*de.HPRGBEmulation VividSRGB/Leuchtend (sRGB): "" +*de.HPRGBEmulation HPRGBEmulationNone/Keine: "" +*de.Translation HPEdgeControl/Randsteuerung: "" +*de.HPEdgeControl HPEdgeControlOff/Aus: "" +*de.HPEdgeControl Light/Hell: "" +*de.HPEdgeControl Normal/Normal: "" +*de.HPEdgeControl Max/Maximal: "" +*de.Translation HPGeneralHalftone/Halbton: "" +*de.HPGeneralHalftone Smooth/Geglättet: "" +*de.HPGeneralHalftone Detail/Detailliert: "" +*de.Translation HPTextNeutralGrays/Text - neutrales Grau: "" +*de.HPTextNeutralGrays Black/Nur Schwarz: "" +*de.HPTextNeutralGrays ProcessBlack/4-Farbig: "" +*de.Translation HPGraphicsNeutralGrays/Grafik - neutrales Grau: "" +*de.HPGraphicsNeutralGrays Black/Nur Schwarz: "" +*de.HPGraphicsNeutralGrays ProcessBlack/4-Farbig: "" +*de.Translation HPPhotoNeutralGrays/Foto - neutrales Grau: "" +*de.HPPhotoNeutralGrays Black/Nur Schwarz: "" +*de.HPPhotoNeutralGrays ProcessBlack/4-Farbig: "" +*de.Translation HPPaperQualityPanel/Paper/Quality: "" +*de.Translation HPPJLEconoMode/EconoMode: "" +*de.HPPJLEconoMode True/Ein: "" +*de.HPPJLEconoMode False/Aus: "" +*de.Translation MediaType/Druckmedientyp: "" +*de.MediaType Unspecified/Nicht bestimmt: "" +*de.MediaType Plain/Normalpapier: "" +*de.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*de.MediaType HPLaserJet90/HP LaserJet, 90g: "" +*de.MediaType HPColorLaserMatte105/HP Color Laser 105g, matt: "" +*de.MediaType HPPremiumChoiceMatte120/HP Premium Choice 120g, matt: "" +*de.MediaType HPBrochureMatte150/HP Broschürenpapier, matt 150g: "" +*de.MediaType HPCoverMatte200/HP Deckblattpapier 200g, matt: "" +*de.MediaType HPMattePhoto200/HP Fotopapier, matt 200g: "" +*de.MediaType HPPremiumPresentationGlossy120/HP Premium Präsentationspapier, hochglänzend 120g: "" +*de.MediaType HPBrochureGlossy150/HP Broschürenpapier, hochglänzend 150g: "" +*de.MediaType HPTrifoldBrochureGlossy150/HP Broschürenpapier, dreifach gefaltet, hochglänzend 150g: "" +*de.MediaType HPBrochureGlossy200/HP Broschürenpapier, hochglänzend 200g: "" +*de.MediaType Light6074/Leicht 60-74g: "" +*de.MediaType Intermediate8595/Mittelschwer 85-95g: "" +*de.MediaType MidWeight96110/Mittleres Gewicht 96-110g: "" +*de.MediaType Heavy111130/Schwer 111-130g: "" +*de.MediaType ExtraHeavy131175/Sehr schwer 131-175g: "" +*de.MediaType HeavyGlossy111130/Hochglanz, schwer 111-130g: "" +*de.MediaType ExtraHeavyGlossy131175/Hochglanz, extraschwer 131-175g: "" +*de.MediaType CardGlossy176220/Karte 176-220g, hochglänzend: "" +*de.MediaType ColorLaserTransparency/Color Laser-Transparentfolie: "" +*de.MediaType Labels/Etiketten: "" +*de.MediaType Letterhead/Briefkopfpapier: "" +*de.MediaType Envelope/Briefumschlag: "" +*de.MediaType HeavyEnvelope/Schwerer Briefumschlag: "" +*de.MediaType Preprinted/Vordruckpapier: "" +*de.MediaType Prepunched/Vorgelochtes Papier: "" +*de.MediaType Colored/Farbig: "" +*de.MediaType Bond/Briefpapier: "" +*de.MediaType Recycled/Recyclingpapier: "" +*de.MediaType Rough/Rauhpapier: "" +*de.MediaType HeavyRough/Schwer Rau: "" +*de.MediaType OpaqueFilm/Folie, opak: "" +*de.APPrinterPreset ChartsAndGraphs/Diagramme & Grafiken: "" +*de.cupsICCProfile RGB../sRGB Matching Profile: "" +*de.cupsICCProfile CMYK../CMYK Matching Profile: "" +*de.cupsICCProfile Gray../Gray Matching Profile: "" +*de.cupsMarkerName cyan/Zyan: "" +*de.cupsMarkerName magenta/Magenta: "" +*de.cupsMarkerName yellow/Gelb: "" +*de.cupsMarkerName black/Schwarz: "" +*es.Translation Manufacturer/HP: "" +*es.Translation ModelName/HP Color LaserJet Pro M252: "" +*es.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*es.Translation NickName/HP Color LaserJet Pro M252: "" +*es.Translation PageSize/Tamaño de papel: "" +*es.PageSize Letter/US Letter: "" +*es.PageSize Legal/US Legal: "" +*es.PageSize Executive/Ejecutivo: "" +*es.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*es.PageSize 4x6/4x6: "" +*es.PageSize 5x8/5x8: "" +*es.PageSize A4/A4: "" +*es.PageSize A5/A5: "" +*es.PageSize A6/A6: "" +*es.PageSize B5/JIS B5: "" +*es.PageSize B6/JIS B6: "" +*es.PageSize Env4x6/10x15 cm: "" +*es.PageSize Oficio/Oficio 216x340 mm: "" +*es.PageSize 195x270mm/16K 195x270 mm: "" +*es.PageSize 184x260mm/16K 184x260 mm: "" +*es.PageSize 7.75x10.75/16K 197x273 mm: "" +*es.PageSize Postcard/Postcard: "" +*es.PageSize DoublePostcardRotated/Postal doble borde largo: "" +*es.PageSize Env10/Sobre Comm10: "" +*es.PageSize EnvMonarch/Sobre Monarch: "" +*es.PageSize EnvISOB5/Sobre ISO B5: "" +*es.PageSize EnvC5/Sobre C5: "" +*es.PageSize EnvDL/Sobre DL: "" +*es.Translation Duplex/A doble cara: "" +*es.Duplex None/Desactivado: "" +*es.Duplex DuplexNoTumble/Encuadernación de borde largo: "" +*es.Duplex DuplexTumble/Encuadernación de borde corto: "" +*es.Translation InputSlot/Alimentador de papel: "" +*es.InputSlot Tray1/Bandeja 1: "" +*es.InputSlot Tray2/Bandeja 2: "" +*es.InputSlot ManualFeed/Alimentación manual: "" +*es.Translation InstallableOptions/Installable Options: "" +*es.Translation HPOption_Duplexer/Accesorio para impresión dúplex: "" +*es.HPOption_Duplexer True/Activado: "" +*es.HPOption_Duplexer False/Desactivado: "" +*es.Translation HPColorOptionsPanel/Color: "" +*es.Translation HPPJLColorAsGray/Imprimir colores en gris: "" +*es.HPPJLColorAsGray yes/Activado: "" +*es.HPPJLColorAsGray no/Desactivado: "" +*es.Translation HPRGBEmulation/Color RGB: "" +*es.HPRGBEmulation DefaultSRGB/Predeterminado (sRGB): "" +*es.HPRGBEmulation PhotoSRGB/Fotografía (sRGB): "" +*es.HPRGBEmulation Adobe/Fotografía (Adobe RGB 1998): "" +*es.HPRGBEmulation VividSRGB/Intenso (sRGB): "" +*es.HPRGBEmulation HPRGBEmulationNone/Ninguno: "" +*es.Translation HPEdgeControl/Control de bordes: "" +*es.HPEdgeControl HPEdgeControlOff/Desactivado: "" +*es.HPEdgeControl Light/Claro: "" +*es.HPEdgeControl Normal/Normal: "" +*es.HPEdgeControl Max/Máximo: "" +*es.Translation HPGeneralHalftone/Medios tonos: "" +*es.HPGeneralHalftone Smooth/Uniforme: "" +*es.HPGeneralHalftone Detail/Detalle: "" +*es.Translation HPTextNeutralGrays/Gris neutro de texto: "" +*es.HPTextNeutralGrays Black/Sólo negro: "" +*es.HPTextNeutralGrays ProcessBlack/4 colores: "" +*es.Translation HPGraphicsNeutralGrays/Gris neutro de gráfico: "" +*es.HPGraphicsNeutralGrays Black/Sólo negro: "" +*es.HPGraphicsNeutralGrays ProcessBlack/4 colores: "" +*es.Translation HPPhotoNeutralGrays/Gris neutro de fotografías: "" +*es.HPPhotoNeutralGrays Black/Sólo negro: "" +*es.HPPhotoNeutralGrays ProcessBlack/4 colores: "" +*es.Translation HPPaperQualityPanel/Paper/Quality: "" +*es.Translation HPPJLEconoMode/EconoMode: "" +*es.HPPJLEconoMode True/Activado: "" +*es.HPPJLEconoMode False/Desactivado: "" +*es.Translation MediaType/Tipo de sustrato: "" +*es.MediaType Unspecified/No especificado: "" +*es.MediaType Plain/Estándar: "" +*es.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*es.MediaType HPLaserJet90/HP LaserJet 90g: "" +*es.MediaType HPColorLaserMatte105/Impresión láser color mate HP 105g: "" +*es.MediaType HPPremiumChoiceMatte120/HP Premium Choice satinado 120g: "" +*es.MediaType HPBrochureMatte150/Prospecto HP mate 150g: "" +*es.MediaType HPCoverMatte200/Portada mate HP 200g: "" +*es.MediaType HPMattePhoto200/Fotográfico mate HP 200g: "" +*es.MediaType HPPremiumPresentationGlossy120/Presentaciones HP Premium satinadas 120g: "" +*es.MediaType HPBrochureGlossy150/Prospecto HP satinado 150g: "" +*es.MediaType HPTrifoldBrochureGlossy150/Prospecto estilo tríptico HP satinado 150g: "" +*es.MediaType HPBrochureGlossy200/Prospecto HP satinado 200g: "" +*es.MediaType Light6074/Ligero 60-74g: "" +*es.MediaType Intermediate8595/Intermedio 85-95g: "" +*es.MediaType MidWeight96110/Peso medio 96-110g: "" +*es.MediaType Heavy111130/Pesado 111-130g: "" +*es.MediaType ExtraHeavy131175/Pesado extra 131-175g: "" +*es.MediaType HeavyGlossy111130/Satinado pesado 111-130g: "" +*es.MediaType ExtraHeavyGlossy131175/Extra grueso brillante 131-175g: "" +*es.MediaType CardGlossy176220/Tarjeta satinado 176-220g: "" +*es.MediaType ColorLaserTransparency/Transparencia impresión láser: "" +*es.MediaType Labels/Etiquetas: "" +*es.MediaType Letterhead/Membrete: "" +*es.MediaType Envelope/Sobre: "" +*es.MediaType HeavyEnvelope/Sobre pesado: "" +*es.MediaType Preprinted/Preimpreso: "" +*es.MediaType Prepunched/Preperforado: "" +*es.MediaType Colored/Coloreado: "" +*es.MediaType Bond/Bond: "" +*es.MediaType Recycled/Reciclado: "" +*es.MediaType Rough/Rugoso: "" +*es.MediaType HeavyRough/Pesado rugoso: "" +*es.MediaType OpaqueFilm/Película opaca: "" +*es.APPrinterPreset ChartsAndGraphs/Cuadros y gráficos: "" +*es.cupsICCProfile RGB../sRGB Matching Profile: "" +*es.cupsICCProfile CMYK../CMYK Matching Profile: "" +*es.cupsICCProfile Gray../Gray Matching Profile: "" +*es.cupsMarkerName cyan/Cian: "" +*es.cupsMarkerName magenta/Magenta: "" +*es.cupsMarkerName yellow/Amarillo: "" +*es.cupsMarkerName black/Negro: "" +*fi.Translation Manufacturer/HP: "" +*fi.Translation ModelName/HP Color LaserJet Pro M252: "" +*fi.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*fi.Translation NickName/HP Color LaserJet Pro M252: "" +*fi.Translation PageSize/Median koko: "" +*fi.PageSize Letter/US Letter: "" +*fi.PageSize Legal/US Legal: "" +*fi.PageSize Executive/Executive: "" +*fi.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*fi.PageSize 4x6/4x6: "" +*fi.PageSize 5x8/5x8: "" +*fi.PageSize A4/A4: "" +*fi.PageSize A5/A5: "" +*fi.PageSize A6/A6: "" +*fi.PageSize B5/JIS B5: "" +*fi.PageSize B6/JIS B6: "" +*fi.PageSize Env4x6/10x15 cm: "" +*fi.PageSize Oficio/Oficio 216x340 mm: "" +*fi.PageSize 195x270mm/16K 195x270 mm: "" +*fi.PageSize 184x260mm/16K 184x260 mm: "" +*fi.PageSize 7.75x10.75/16K 197x273 mm: "" +*fi.PageSize Postcard/Postcard: "" +*fi.PageSize DoublePostcardRotated/Kaksoispostikortti (pitkä reuna): "" +*fi.PageSize Env10/Kirjekuori Comm10: "" +*fi.PageSize EnvMonarch/Kirjekuori Monarch: "" +*fi.PageSize EnvISOB5/Kirjekuori ISO B5: "" +*fi.PageSize EnvC5/Kirjekuori C5: "" +*fi.PageSize EnvDL/Kirjekuori DL: "" +*fi.Translation Duplex/Kaksipuolinen: "" +*fi.Duplex None/Ei käytössä: "" +*fi.Duplex DuplexNoTumble/Sidonta-pitkäreuna: "" +*fi.Duplex DuplexTumble/Sidonta-lyhytreuna: "" +*fi.Translation InputSlot/Paperinsyöttö: "" +*fi.InputSlot Tray1/Lokero 1: "" +*fi.InputSlot Tray2/Lokero 2: "" +*fi.InputSlot ManualFeed/Käsinsyöttö: "" +*fi.Translation InstallableOptions/Installable Options: "" +*fi.Translation HPOption_Duplexer/Kaksipuolisen tulostuksen lisälaite: "" +*fi.HPOption_Duplexer True/Käytössä: "" +*fi.HPOption_Duplexer False/Ei käytössä: "" +*fi.Translation HPColorOptionsPanel/Väri: "" +*fi.Translation HPPJLColorAsGray/Tulosta värit harmaina: "" +*fi.HPPJLColorAsGray yes/Käytössä: "" +*fi.HPPJLColorAsGray no/Ei käytössä: "" +*fi.Translation HPRGBEmulation/RGB-väri: "" +*fi.HPRGBEmulation DefaultSRGB/Oletus (sRGB): "" +*fi.HPRGBEmulation PhotoSRGB/Valokuva (sRGB): "" +*fi.HPRGBEmulation Adobe/Valokuva (Adobe RGB 1998): "" +*fi.HPRGBEmulation VividSRGB/Kirkas (sRGB): "" +*fi.HPRGBEmulation HPRGBEmulationNone/Ei mitään: "" +*fi.Translation HPEdgeControl/Reunojen hallinta: "" +*fi.HPEdgeControl HPEdgeControlOff/Ei käytössä: "" +*fi.HPEdgeControl Light/Vaalea: "" +*fi.HPEdgeControl Normal/Normaali: "" +*fi.HPEdgeControl Max/Maksimi: "" +*fi.Translation HPGeneralHalftone/Puolisävy: "" +*fi.HPGeneralHalftone Smooth/Tasainen: "" +*fi.HPGeneralHalftone Detail/Yksityiskohtainen: "" +*fi.Translation HPTextNeutralGrays/Teksti, neutraali harmaa: "" +*fi.HPTextNeutralGrays Black/Vain musta: "" +*fi.HPTextNeutralGrays ProcessBlack/Neliväri: "" +*fi.Translation HPGraphicsNeutralGrays/Kuva, neutraali harmaa: "" +*fi.HPGraphicsNeutralGrays Black/Vain musta: "" +*fi.HPGraphicsNeutralGrays ProcessBlack/Neliväri: "" +*fi.Translation HPPhotoNeutralGrays/Val., neutraali harmaa: "" +*fi.HPPhotoNeutralGrays Black/Vain musta: "" +*fi.HPPhotoNeutralGrays ProcessBlack/Neliväri: "" +*fi.Translation HPPaperQualityPanel/Paper/Quality: "" +*fi.Translation HPPJLEconoMode/EconoMode: "" +*fi.HPPJLEconoMode True/Käytössä: "" +*fi.HPPJLEconoMode False/Ei käytössä: "" +*fi.Translation MediaType/Tulostusmateriaali: "" +*fi.MediaType Unspecified/Määrittämätön: "" +*fi.MediaType Plain/Tavallinen: "" +*fi.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*fi.MediaType HPLaserJet90/HP LaserJet, 90g: "" +*fi.MediaType HPColorLaserMatte105/HP<3A>n matta värilaser 105g: "" +*fi.MediaType HPPremiumChoiceMatte120/HP Premium Choice, matta 120g: "" +*fi.MediaType HPBrochureMatte150/HP<3A>n matta esite 150g: "" +*fi.MediaType HPCoverMatte200/HP<3A>n matta kansi 200g: "" +*fi.MediaType HPMattePhoto200/HP<3A>n matta valokuva 200g: "" +*fi.MediaType HPPremiumPresentationGlossy120/HP Premium -esitys, kiiltävä 120g: "" +*fi.MediaType HPBrochureGlossy150/HP<3A>n kiiltävä esite 150g: "" +*fi.MediaType HPTrifoldBrochureGlossy150/HP<3A>n kolminkertainen esite 150g: "" +*fi.MediaType HPBrochureGlossy200/HP<3A>n kiiltävä esite 200g: "" +*fi.MediaType Light6074/Kevyt 60-74g: "" +*fi.MediaType Intermediate8595/Keskikoko 85-95g: "" +*fi.MediaType MidWeight96110/Keskipaksu 96-110g: "" +*fi.MediaType Heavy111130/Paksu 111-130g: "" +*fi.MediaType ExtraHeavy131175/Erittäin paksu 131-175g: "" +*fi.MediaType HeavyGlossy111130/Raskas kiiltävä 111-130g: "" +*fi.MediaType ExtraHeavyGlossy131175/Er. raskas kiiltävä 131-175g: "" +*fi.MediaType CardGlossy176220/Kiiltävä kortti 176-220g: "" +*fi.MediaType ColorLaserTransparency/Värilaserkalvo: "" +*fi.MediaType Labels/Tarrat: "" +*fi.MediaType Letterhead/Kirjelomake: "" +*fi.MediaType Envelope/Kirjekuori: "" +*fi.MediaType HeavyEnvelope/Paksu kirjekuori: "" +*fi.MediaType Preprinted/Esipainettu: "" +*fi.MediaType Prepunched/Rei’itetty: "" +*fi.MediaType Colored/Värillinen: "" +*fi.MediaType Bond/Kova asiakirjapaperi: "" +*fi.MediaType Recycled/Uusiopaperi: "" +*fi.MediaType Rough/Karkea: "" +*fi.MediaType HeavyRough/Paksu karkea: "" +*fi.MediaType OpaqueFilm/Läpikuultamaton kalvo: "" +*fi.APPrinterPreset ChartsAndGraphs/Kaaviot ja grafiikka: "" +*fi.cupsICCProfile RGB../sRGB Matching Profile: "" +*fi.cupsICCProfile CMYK../CMYK Matching Profile: "" +*fi.cupsICCProfile Gray../Gray Matching Profile: "" +*fi.cupsMarkerName cyan/Syaani: "" +*fi.cupsMarkerName magenta/Magenta: "" +*fi.cupsMarkerName yellow/Keltainen: "" +*fi.cupsMarkerName black/Musta: "" +*fr.Translation Manufacturer/HP: "" +*fr.Translation ModelName/HP Color LaserJet Pro M252: "" +*fr.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*fr.Translation NickName/HP Color LaserJet Pro M252: "" +*fr.Translation PageSize/Taille du papier: "" +*fr.PageSize Letter/US Letter: "" +*fr.PageSize Legal/US Legal: "" +*fr.PageSize Executive/Exécutif: "" +*fr.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*fr.PageSize 4x6/4x6: "" +*fr.PageSize 5x8/5x8: "" +*fr.PageSize A4/A4: "" +*fr.PageSize A5/A5: "" +*fr.PageSize A6/A6: "" +*fr.PageSize B5/JIS B5: "" +*fr.PageSize B6/JIS B6: "" +*fr.PageSize Env4x6/10x15 cm: "" +*fr.PageSize Oficio/Oficio 216x340 mm: "" +*fr.PageSize 195x270mm/16K 195x270 mm: "" +*fr.PageSize 184x260mm/16K 184x260 mm: "" +*fr.PageSize 7.75x10.75/16K 197x273 mm: "" +*fr.PageSize Postcard/Postcard: "" +*fr.PageSize DoublePostcardRotated/Carte postale double - Long bord: "" +*fr.PageSize Env10/Enveloppe Comm10: "" +*fr.PageSize EnvMonarch/Enveloppe Monarch: "" +*fr.PageSize EnvISOB5/Enveloppe ISO B5: "" +*fr.PageSize EnvC5/Enveloppe C5: "" +*fr.PageSize EnvDL/Enveloppe DL: "" +*fr.Translation Duplex/Recto verso: "" +*fr.Duplex None/Désactivé: "" +*fr.Duplex DuplexNoTumble/Reliure côté long: "" +*fr.Duplex DuplexTumble/Reliure côté court: "" +*fr.Translation InputSlot/Alimentation: "" +*fr.InputSlot Tray1/Bac 1: "" +*fr.InputSlot Tray2/Bac 2: "" +*fr.InputSlot ManualFeed/Alimentation manuelle: "" +*fr.Translation InstallableOptions/Installable Options: "" +*fr.Translation HPOption_Duplexer/Unité recto verso: "" +*fr.HPOption_Duplexer True/Activé: "" +*fr.HPOption_Duplexer False/Désactivé: "" +*fr.Translation HPColorOptionsPanel/Couleur: "" +*fr.Translation HPPJLColorAsGray/Imprimer couleur en gris: "" +*fr.HPPJLColorAsGray yes/Activé: "" +*fr.HPPJLColorAsGray no/Désactivé: "" +*fr.Translation HPRGBEmulation/Couleur RGB: "" +*fr.HPRGBEmulation DefaultSRGB/Par défaut (sRGB): "" +*fr.HPRGBEmulation PhotoSRGB/Photo (sRGB): "" +*fr.HPRGBEmulation Adobe/Photo (Adobe RGB 1998): "" +*fr.HPRGBEmulation VividSRGB/Vive (sRGB): "" +*fr.HPRGBEmulation HPRGBEmulationNone/Aucun: "" +*fr.Translation HPEdgeControl/Contrôle du bord: "" +*fr.HPEdgeControl HPEdgeControlOff/Désactivé: "" +*fr.HPEdgeControl Light/Clair: "" +*fr.HPEdgeControl Normal/Normal: "" +*fr.HPEdgeControl Max/Maximum: "" +*fr.Translation HPGeneralHalftone/Demi-teinte: "" +*fr.HPGeneralHalftone Smooth/Lisse: "" +*fr.HPGeneralHalftone Detail/Détaillées: "" +*fr.Translation HPTextNeutralGrays/Texte gris neutre: "" +*fr.HPTextNeutralGrays Black/Noir uniquement: "" +*fr.HPTextNeutralGrays ProcessBlack/4 couleurs: "" +*fr.Translation HPGraphicsNeutralGrays/Graphiques gris neutre: "" +*fr.HPGraphicsNeutralGrays Black/Noir uniquement: "" +*fr.HPGraphicsNeutralGrays ProcessBlack/4 couleurs: "" +*fr.Translation HPPhotoNeutralGrays/Photo gris neutre: "" +*fr.HPPhotoNeutralGrays Black/Noir uniquement: "" +*fr.HPPhotoNeutralGrays ProcessBlack/4 couleurs: "" +*fr.Translation HPPaperQualityPanel/Paper/Quality: "" +*fr.Translation HPPJLEconoMode/EconoMode: "" +*fr.HPPJLEconoMode True/Activé: "" +*fr.HPPJLEconoMode False/Désactivé: "" +*fr.Translation MediaType/Type de support: "" +*fr.MediaType Unspecified/Non spécifié: "" +*fr.MediaType Plain/Ordinaire: "" +*fr.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*fr.MediaType HPLaserJet90/HP LaserJet 90g: "" +*fr.MediaType HPColorLaserMatte105/Papier couleur laser mat 105g HP: "" +*fr.MediaType HPPremiumChoiceMatte120/Papier 120g mat HP Premium Choice: "" +*fr.MediaType HPBrochureMatte150/HP Brochure Mat 150g: "" +*fr.MediaType HPCoverMatte200/Couverture mate 200g HP: "" +*fr.MediaType HPMattePhoto200/Papier photo mat HP 200g: "" +*fr.MediaType HPPremiumPresentationGlossy120/Papier brillant pour présentation HP Premium 120g: "" +*fr.MediaType HPBrochureGlossy150/HP Brochure Brillant 150g: "" +*fr.MediaType HPTrifoldBrochureGlossy150/Papier pour brochure plié en trois HP, brillant, 150g: "" +*fr.MediaType HPBrochureGlossy200/HP Brochure Brillant 200g: "" +*fr.MediaType Light6074/Fin 60-74g: "" +*fr.MediaType Intermediate8595/Intermédiaire 85-95g: "" +*fr.MediaType MidWeight96110/Grammage moyen 96-110g: "" +*fr.MediaType Heavy111130/Epais 111-130g: "" +*fr.MediaType ExtraHeavy131175/Très épais 131-175g: "" +*fr.MediaType HeavyGlossy111130/Glacé et épais 111-130g: "" +*fr.MediaType ExtraHeavyGlossy131175/Papier glacé extra fort 131-175g: "" +*fr.MediaType CardGlossy176220/Carte brillante 176-220g: "" +*fr.MediaType ColorLaserTransparency/Transpar. laser couleur: "" +*fr.MediaType Labels/Étiquettes: "" +*fr.MediaType Letterhead/Papier à en-tête: "" +*fr.MediaType Envelope/Enveloppe: "" +*fr.MediaType HeavyEnvelope/Enveloppe à fort grammage: "" +*fr.MediaType Preprinted/Préimprimé: "" +*fr.MediaType Prepunched/Perforé: "" +*fr.MediaType Colored/Coloré: "" +*fr.MediaType Bond/Document: "" +*fr.MediaType Recycled/Recyclé: "" +*fr.MediaType Rough/Rugueux: "" +*fr.MediaType HeavyRough/Epais rugueux: "" +*fr.MediaType OpaqueFilm/Film opaque: "" +*fr.APPrinterPreset ChartsAndGraphs/Diagrammes et graphiques: "" +*fr.cupsICCProfile RGB../sRGB Matching Profile: "" +*fr.cupsICCProfile CMYK../CMYK Matching Profile: "" +*fr.cupsICCProfile Gray../Gray Matching Profile: "" +*fr.cupsMarkerName cyan/Cyan: "" +*fr.cupsMarkerName magenta/Magenta: "" +*fr.cupsMarkerName yellow/Jaune: "" +*fr.cupsMarkerName black/Noir: "" +*it.Translation Manufacturer/HP: "" +*it.Translation ModelName/HP Color LaserJet Pro M252: "" +*it.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*it.Translation NickName/HP Color LaserJet Pro M252: "" +*it.Translation PageSize/Dimensione media: "" +*it.PageSize Letter/US Letter: "" +*it.PageSize Legal/US Legal: "" +*it.PageSize Executive/Executive: "" +*it.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*it.PageSize 4x6/4x6: "" +*it.PageSize 5x8/5x8: "" +*it.PageSize A4/A4: "" +*it.PageSize A5/A5: "" +*it.PageSize A6/A6: "" +*it.PageSize B5/JIS B5: "" +*it.PageSize B6/JIS B6: "" +*it.PageSize Env4x6/10x15 cm: "" +*it.PageSize Oficio/Oficio 216x340 mm: "" +*it.PageSize 195x270mm/16K 195x270 mm: "" +*it.PageSize 184x260mm/16K 184x260 mm: "" +*it.PageSize 7.75x10.75/16K 197x273 mm: "" +*it.PageSize Postcard/Postcard: "" +*it.PageSize DoublePostcardRotated/Cartolina doppia Bordo lungo: "" +*it.PageSize Env10/Busta Comm10: "" +*it.PageSize EnvMonarch/Busta Monarch: "" +*it.PageSize EnvISOB5/Busta ISO B5: "" +*it.PageSize EnvC5/Busta C5: "" +*it.PageSize EnvDL/Busta DL: "" +*it.Translation Duplex/Fronte-retro: "" +*it.Duplex None/Disattivato: "" +*it.Duplex DuplexNoTumble/Rilegatura con taglio largo: "" +*it.Duplex DuplexTumble/Rilegatura con taglio stretto: "" +*it.Translation InputSlot/Alimentazione carta: "" +*it.InputSlot Tray1/Vassoio 1: "" +*it.InputSlot Tray2/Vassoio 2: "" +*it.InputSlot ManualFeed/Alimentazione manuale: "" +*it.Translation InstallableOptions/Installable Options: "" +*it.Translation HPOption_Duplexer/Accessorio per stampa duplex: "" +*it.HPOption_Duplexer True/Attivato: "" +*it.HPOption_Duplexer False/Disattivato: "" +*it.Translation HPColorOptionsPanel/Colore: "" +*it.Translation HPPJLColorAsGray/Stampa colore in grigio: "" +*it.HPPJLColorAsGray yes/Attivato: "" +*it.HPPJLColorAsGray no/Disattivato: "" +*it.Translation HPRGBEmulation/Colore RGB: "" +*it.HPRGBEmulation DefaultSRGB/Predefinito (sRGB): "" +*it.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*it.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*it.HPRGBEmulation VividSRGB/Brillante (sRGB): "" +*it.HPRGBEmulation HPRGBEmulationNone/Nessuna: "" +*it.Translation HPEdgeControl/Controllo margine: "" +*it.HPEdgeControl HPEdgeControlOff/Disattivato: "" +*it.HPEdgeControl Light/Chiaro: "" +*it.HPEdgeControl Normal/Normale: "" +*it.HPEdgeControl Max/Massimo: "" +*it.Translation HPGeneralHalftone/Mezzitoni: "" +*it.HPGeneralHalftone Smooth/Uniformi: "" +*it.HPGeneralHalftone Detail/Dettagli: "" +*it.Translation HPTextNeutralGrays/Grigi neutri testo: "" +*it.HPTextNeutralGrays Black/Solo nero: "" +*it.HPTextNeutralGrays ProcessBlack/Quadricromia: "" +*it.Translation HPGraphicsNeutralGrays/Grigi neutri grafici: "" +*it.HPGraphicsNeutralGrays Black/Solo nero: "" +*it.HPGraphicsNeutralGrays ProcessBlack/Quadricromia: "" +*it.Translation HPPhotoNeutralGrays/Grigi neutri fotografie: "" +*it.HPPhotoNeutralGrays Black/Solo nero: "" +*it.HPPhotoNeutralGrays ProcessBlack/Quadricromia: "" +*it.Translation HPPaperQualityPanel/Paper/Quality: "" +*it.Translation HPPJLEconoMode/EconoMode: "" +*it.HPPJLEconoMode True/Attivato: "" +*it.HPPJLEconoMode False/Disattivato: "" +*it.Translation MediaType/Tipo di supporto: "" +*it.MediaType Unspecified/Non specificato: "" +*it.MediaType Plain/Normale: "" +*it.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*it.MediaType HPLaserJet90/HP LaserJet 90g: "" +*it.MediaType HPColorLaserMatte105/Opaca a colori per stampanti laser HP 105g: "" +*it.MediaType HPPremiumChoiceMatte120/Opaca HP alta qualità 120g: "" +*it.MediaType HPBrochureMatte150/Brochure opaca 150g HP: "" +*it.MediaType HPCoverMatte200/Copertina opaca HP 200g: "" +*it.MediaType HPMattePhoto200/Fotografica opaca HP 200g: "" +*it.MediaType HPPremiumPresentationGlossy120/Presentazione lucida ad alta qualità 120g HP: "" +*it.MediaType HPBrochureGlossy150/Brochure lucida 150g HP: "" +*it.MediaType HPTrifoldBrochureGlossy150/Brochure lucida piegata in tre 150g HP: "" +*it.MediaType HPBrochureGlossy200/Brochure lucida 200g HP: "" +*it.MediaType Light6074/Leggera 60-74g: "" +*it.MediaType Intermediate8595/Intermedia 85-95g: "" +*it.MediaType MidWeight96110/Medio spessore 96-110g: "" +*it.MediaType Heavy111130/Pesante 111-130g: "" +*it.MediaType ExtraHeavy131175/Extra Pesante 131-175g: "" +*it.MediaType HeavyGlossy111130/Carta patinata pesante 111-130g: "" +*it.MediaType ExtraHeavyGlossy131175/Lucida pesante extra 131-175g: "" +*it.MediaType CardGlossy176220/Scheda lucida 176-220g: "" +*it.MediaType ColorLaserTransparency/Lucido per stampanti laser a colori: "" +*it.MediaType Labels/Etichette: "" +*it.MediaType Letterhead/Carta intestata: "" +*it.MediaType Envelope/Busta: "" +*it.MediaType HeavyEnvelope/Busta pesante: "" +*it.MediaType Preprinted/Prestampata: "" +*it.MediaType Prepunched/Perforata: "" +*it.MediaType Colored/Colorata: "" +*it.MediaType Bond/Carta fine: "" +*it.MediaType Recycled/Riciclata: "" +*it.MediaType Rough/Ruvida: "" +*it.MediaType HeavyRough/Ruvida pesante: "" +*it.MediaType OpaqueFilm/Pellicola opaca: "" +*it.APPrinterPreset ChartsAndGraphs/Diagrammi e grafici: "" +*it.cupsICCProfile RGB../sRGB Matching Profile: "" +*it.cupsICCProfile CMYK../CMYK Matching Profile: "" +*it.cupsICCProfile Gray../Gray Matching Profile: "" +*it.cupsMarkerName cyan/Ciano: "" +*it.cupsMarkerName magenta/Magenta: "" +*it.cupsMarkerName yellow/Giallo: "" +*it.cupsMarkerName black/Nero: "" +*ja.Translation Manufacturer/HP: "" +*ja.Translation ModelName/HP Color LaserJet Pro M252: "" +*ja.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*ja.Translation NickName/HP Color LaserJet Pro M252: "" +*ja.Translation PageSize/メディアサイズ: "" +*ja.PageSize Letter/US Letter: "" +*ja.PageSize Legal/US Legal: "" +*ja.PageSize Executive/エグゼクティブ: "" +*ja.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*ja.PageSize 4x6/4x6: "" +*ja.PageSize 5x8/5x8: "" +*ja.PageSize A4/A4: "" +*ja.PageSize A5/A5: "" +*ja.PageSize A6/A6: "" +*ja.PageSize B5/JIS B5: "" +*ja.PageSize B6/JIS B6: "" +*ja.PageSize Env4x6/10x15 cm: "" +*ja.PageSize Oficio/Oficio 216x340 mm: "" +*ja.PageSize 195x270mm/16K 195x270 mm: "" +*ja.PageSize 184x260mm/16K 184x260 mm: "" +*ja.PageSize 7.75x10.75/16K 197x273 mm: "" +*ja.PageSize Postcard/Postcard: "" +*ja.PageSize DoublePostcardRotated/往復はがき 横: "" +*ja.PageSize Env10/封筒 Comm10: "" +*ja.PageSize EnvMonarch/封筒 Monarch: "" +*ja.PageSize EnvISOB5/封筒 ISO B5: "" +*ja.PageSize EnvC5/封筒 C5: "" +*ja.PageSize EnvDL/封筒 DL: "" +*ja.Translation Duplex/両面: "" +*ja.Duplex None/オフ: "" +*ja.Duplex DuplexNoTumble/長辺とじ: "" +*ja.Duplex DuplexTumble/短辺とじ: "" +*ja.Translation InputSlot/給紙: "" +*ja.InputSlot Tray1/トレイ 1: "" +*ja.InputSlot Tray2/トレイ 2: "" +*ja.InputSlot ManualFeed/手差し: "" +*ja.Translation InstallableOptions/Installable Options: "" +*ja.Translation HPOption_Duplexer/両面印刷アクセサリ: "" +*ja.HPOption_Duplexer True/オン: "" +*ja.HPOption_Duplexer False/オフ: "" +*ja.Translation HPColorOptionsPanel/カラー: "" +*ja.Translation HPPJLColorAsGray/グレー印刷: "" +*ja.HPPJLColorAsGray yes/オン: "" +*ja.HPPJLColorAsGray no/オフ: "" +*ja.Translation HPRGBEmulation/RGB カラー: "" +*ja.HPRGBEmulation DefaultSRGB/デフォルト (sRGB): "" +*ja.HPRGBEmulation PhotoSRGB/フォト (sRGB): "" +*ja.HPRGBEmulation Adobe/フォト (Adobe RGB 1998): "" +*ja.HPRGBEmulation VividSRGB/鮮明 (sRGB): "" +*ja.HPRGBEmulation HPRGBEmulationNone/なし: "" +*ja.Translation HPEdgeControl/輪郭コントロール: "" +*ja.HPEdgeControl HPEdgeControlOff/オフ: "" +*ja.HPEdgeControl Light/薄い: "" +*ja.HPEdgeControl Normal/標準: "" +*ja.HPEdgeControl Max/最大: "" +*ja.Translation HPGeneralHalftone/ハーフトーン: "" +*ja.HPGeneralHalftone Smooth/テキスト: "" +*ja.HPGeneralHalftone Detail/詳細: "" +*ja.Translation HPTextNeutralGrays/テキスト グレー中間色: "" +*ja.HPTextNeutralGrays Black/黒のみ: "" +*ja.HPTextNeutralGrays ProcessBlack/4 色: "" +*ja.Translation HPGraphicsNeutralGrays/グラフィック グレー中間色: "" +*ja.HPGraphicsNeutralGrays Black/黒のみ: "" +*ja.HPGraphicsNeutralGrays ProcessBlack/4 色: "" +*ja.Translation HPPhotoNeutralGrays/写真グレー中間色: "" +*ja.HPPhotoNeutralGrays Black/黒のみ: "" +*ja.HPPhotoNeutralGrays ProcessBlack/4 色: "" +*ja.Translation HPPaperQualityPanel/Paper/Quality: "" +*ja.Translation HPPJLEconoMode/EconoMode: "" +*ja.HPPJLEconoMode True/オン: "" +*ja.HPPJLEconoMode False/オフ: "" +*ja.Translation MediaType/用紙の種類: "" +*ja.MediaType Unspecified/指定なし: "" +*ja.MediaType Plain/普通用紙: "" +*ja.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*ja.MediaType HPLaserJet90/HP レーザージェット用紙 90g: "" +*ja.MediaType HPColorLaserMatte105/HP カラーレーザー用紙 (つや消し) 105g: "" +*ja.MediaType HPPremiumChoiceMatte120/HP プレミアムチョイス (つや消し) 120g: "" +*ja.MediaType HPBrochureMatte150/HP ブローシャ用紙 (つや消し) 150g: "" +*ja.MediaType HPCoverMatte200/HP つや消し表紙用紙 200g: "" +*ja.MediaType HPMattePhoto200/HP つや消しフォト用紙 200g: "" +*ja.MediaType HPPremiumPresentationGlossy120/HP プレミアムプレゼンテーション用紙 (つや消し) 120g: "" +*ja.MediaType HPBrochureGlossy150/HP ブローシャ用紙 (光沢) 150g: "" +*ja.MediaType HPTrifoldBrochureGlossy150/HP 3 つ折りブローシャ用紙 (光沢) 150g: "" +*ja.MediaType HPBrochureGlossy200/HP ブローシャ用紙 (光沢) 200g: "" +*ja.MediaType Light6074/軽い用紙 60-74g: "" +*ja.MediaType Intermediate8595/中間 85-95g: "" +*ja.MediaType MidWeight96110/中厚手用紙 96-110g: "" +*ja.MediaType Heavy111130/重い用紙 111-130g: "" +*ja.MediaType ExtraHeavy131175/重い用紙 131-175g: "" +*ja.MediaType HeavyGlossy111130/厚手光沢紙 111-130g: "" +*ja.MediaType ExtraHeavyGlossy131175/超厚手光沢紙 131-175g: "" +*ja.MediaType CardGlossy176220/カード光沢紙 176-220g: "" +*ja.MediaType ColorLaserTransparency/カラーレーザー OHP フィルム: "" +*ja.MediaType Labels/ラベル: "" +*ja.MediaType Letterhead/レターヘッド付き: "" +*ja.MediaType Envelope/封筒: "" +*ja.MediaType HeavyEnvelope/厚手封筒: "" +*ja.MediaType Preprinted/印刷フォーム: "" +*ja.MediaType Prepunched/穴あき用紙: "" +*ja.MediaType Colored/カラー: "" +*ja.MediaType Bond/ボンド紙: "" +*ja.MediaType Recycled/再生紙: "" +*ja.MediaType Rough/ざら紙: "" +*ja.MediaType HeavyRough/厚手粗め用紙: "" +*ja.MediaType OpaqueFilm/不透明なフィルム: "" +*ja.APPrinterPreset ChartsAndGraphs/グラフと図: "" +*ja.cupsICCProfile RGB../sRGB Matching Profile: "" +*ja.cupsICCProfile CMYK../CMYK Matching Profile: "" +*ja.cupsICCProfile Gray../Gray Matching Profile: "" +*ja.cupsMarkerName cyan/シアン: "" +*ja.cupsMarkerName magenta/マゼンタ: "" +*ja.cupsMarkerName yellow/イエロー: "" +*ja.cupsMarkerName black/黒: "" +*ko.Translation Manufacturer/HP: "" +*ko.Translation ModelName/HP Color LaserJet Pro M252: "" +*ko.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*ko.Translation NickName/HP Color LaserJet Pro M252: "" +*ko.Translation PageSize/미디어 크기: "" +*ko.PageSize Letter/US Letter: "" +*ko.PageSize Legal/US Legal: "" +*ko.PageSize Executive/Executive: "" +*ko.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*ko.PageSize 4x6/4x6: "" +*ko.PageSize 5x8/5x8: "" +*ko.PageSize A4/A4: "" +*ko.PageSize A5/A5: "" +*ko.PageSize A6/A6: "" +*ko.PageSize B5/JIS B5: "" +*ko.PageSize B6/JIS B6: "" +*ko.PageSize Env4x6/10x15 cm: "" +*ko.PageSize Oficio/Oficio 216x340 mm: "" +*ko.PageSize 195x270mm/16K 195x270 mm: "" +*ko.PageSize 184x260mm/16K 184x260 mm: "" +*ko.PageSize 7.75x10.75/16K 197x273 mm: "" +*ko.PageSize Postcard/Postcard: "" +*ko.PageSize DoublePostcardRotated/엽서 Long Edge(양면): "" +*ko.PageSize Env10/Comm10 봉투: "" +*ko.PageSize EnvMonarch/Monarch 봉투: "" +*ko.PageSize EnvISOB5/ISO B5 봉투: "" +*ko.PageSize EnvC5/C5 봉투: "" +*ko.PageSize EnvDL/DL 봉투: "" +*ko.Translation Duplex/양면: "" +*ko.Duplex None/꺼짐: "" +*ko.Duplex DuplexNoTumble/긴-가장자리 제본선: "" +*ko.Duplex DuplexTumble/짧은-가장자리 제본선: "" +*ko.Translation InputSlot/용지 공급: "" +*ko.InputSlot Tray1/용지함 1: "" +*ko.InputSlot Tray2/용지함 2: "" +*ko.InputSlot ManualFeed/수동 급지: "" +*ko.Translation InstallableOptions/Installable Options: "" +*ko.Translation HPOption_Duplexer/양면 인쇄 부속품: "" +*ko.HPOption_Duplexer True/켜짐: "" +*ko.HPOption_Duplexer False/꺼짐: "" +*ko.Translation HPColorOptionsPanel/색상: "" +*ko.Translation HPPJLColorAsGray/컬러를 흑백음영으로 인쇄: "" +*ko.HPPJLColorAsGray yes/켜짐: "" +*ko.HPPJLColorAsGray no/꺼짐: "" +*ko.Translation HPRGBEmulation/RGB 색상: "" +*ko.HPRGBEmulation DefaultSRGB/기본값(sRGB): "" +*ko.HPRGBEmulation PhotoSRGB/사진(sRGB): "" +*ko.HPRGBEmulation Adobe/사진(Adobe RGB 1998): "" +*ko.HPRGBEmulation VividSRGB/선명하게 (sRGB): "" +*ko.HPRGBEmulation HPRGBEmulationNone/없음: "" +*ko.Translation HPEdgeControl/가장자리 제어: "" +*ko.HPEdgeControl HPEdgeControlOff/꺼짐: "" +*ko.HPEdgeControl Light/밝게: "" +*ko.HPEdgeControl Normal/보통: "" +*ko.HPEdgeControl Max/최대: "" +*ko.Translation HPGeneralHalftone/중간 색조: "" +*ko.HPGeneralHalftone Smooth/문장: "" +*ko.HPGeneralHalftone Detail/자세히: "" +*ko.Translation HPTextNeutralGrays/문장 순 회색: "" +*ko.HPTextNeutralGrays Black/흑색 전용: "" +*ko.HPTextNeutralGrays ProcessBlack/4색: "" +*ko.Translation HPGraphicsNeutralGrays/그래픽 순 회색: "" +*ko.HPGraphicsNeutralGrays Black/흑색 전용: "" +*ko.HPGraphicsNeutralGrays ProcessBlack/4색: "" +*ko.Translation HPPhotoNeutralGrays/사진 순말: "" +*ko.HPPhotoNeutralGrays Black/흑색 전용: "" +*ko.HPPhotoNeutralGrays ProcessBlack/4색: "" +*ko.Translation HPPaperQualityPanel/Paper/Quality: "" +*ko.Translation HPPJLEconoMode/EconoMode: "" +*ko.HPPJLEconoMode True/켜짐: "" +*ko.HPPJLEconoMode False/꺼짐: "" +*ko.Translation MediaType/용지 종류: "" +*ko.MediaType Unspecified/지정되지 않음: "" +*ko.MediaType Plain/일반용지: "" +*ko.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*ko.MediaType HPLaserJet90/HP LaserJet 90g: "" +*ko.MediaType HPColorLaserMatte105/HP Color Laser 무광 105g: "" +*ko.MediaType HPPremiumChoiceMatte120/HP 프리미엄 초이스 무광 120g: "" +*ko.MediaType HPBrochureMatte150/HP 무광택 브로셔 150g: "" +*ko.MediaType HPCoverMatte200/HP 표지 무광 200g: "" +*ko.MediaType HPMattePhoto200/HP 무광택 사진 200g: "" +*ko.MediaType HPPremiumPresentationGlossy120/HP 프리미엄 프리젠테이션 광택 120g: "" +*ko.MediaType HPBrochureGlossy150/HP 광택 브로셔 150g: "" +*ko.MediaType HPTrifoldBrochureGlossy150/HP 3중 접기 광택 브로셔 150g: "" +*ko.MediaType HPBrochureGlossy200/HP 광택 브로셔 200g: "" +*ko.MediaType Light6074/경량지 60-74g: "" +*ko.MediaType Intermediate8595/보통지 85-95g: "" +*ko.MediaType MidWeight96110/보통 중량지 96-110g: "" +*ko.MediaType Heavy111130/중량지 111-130g: "" +*ko.MediaType ExtraHeavy131175/초중량지 131-175g: "" +*ko.MediaType HeavyGlossy111130/광택 중량지 111-130g: "" +*ko.MediaType ExtraHeavyGlossy131175/고광택 용지 131-175g: "" +*ko.MediaType CardGlossy176220/인사장 유광 176-220g: "" +*ko.MediaType ColorLaserTransparency/Color Laser 투명 필름: "" +*ko.MediaType Labels/레이블: "" +*ko.MediaType Letterhead/레터헤드: "" +*ko.MediaType Envelope/봉투: "" +*ko.MediaType HeavyEnvelope/중량 봉투: "" +*ko.MediaType Preprinted/미리 인쇄: "" +*ko.MediaType Prepunched/천공 용지: "" +*ko.MediaType Colored/색상지: "" +*ko.MediaType Bond/본드지: "" +*ko.MediaType Recycled/재활용지: "" +*ko.MediaType Rough/거친 용지: "" +*ko.MediaType HeavyRough/중량 거친 용지: "" +*ko.MediaType OpaqueFilm/오파크 필름: "" +*ko.APPrinterPreset ChartsAndGraphs/차트 및 그래픽: "" +*ko.cupsICCProfile RGB../sRGB Matching Profile: "" +*ko.cupsICCProfile CMYK../CMYK Matching Profile: "" +*ko.cupsICCProfile Gray../Gray Matching Profile: "" +*ko.cupsMarkerName cyan/시안색: "" +*ko.cupsMarkerName magenta/마젠타색: "" +*ko.cupsMarkerName yellow/노랑색: "" +*ko.cupsMarkerName black/검정색: "" +*no.Translation Manufacturer/HP: "" +*no.Translation ModelName/HP Color LaserJet Pro M252: "" +*no.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*no.Translation NickName/HP Color LaserJet Pro M252: "" +*no.Translation PageSize/Papirstørrelse: "" +*no.PageSize Letter/US Letter: "" +*no.PageSize Legal/US Legal: "" +*no.PageSize Executive/Executive: "" +*no.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*no.PageSize 4x6/4x6: "" +*no.PageSize 5x8/5x8: "" +*no.PageSize A4/A4: "" +*no.PageSize A5/A5: "" +*no.PageSize A6/A6: "" +*no.PageSize B5/JIS B5: "" +*no.PageSize B6/JIS B6: "" +*no.PageSize Env4x6/10x15 cm: "" +*no.PageSize Oficio/Oficio 216x340 mm: "" +*no.PageSize 195x270mm/16K 195x270 mm: "" +*no.PageSize 184x260mm/16K 184x260 mm: "" +*no.PageSize 7.75x10.75/16K 197x273 mm: "" +*no.PageSize Postcard/Postcard: "" +*no.PageSize DoublePostcardRotated/Dobbelt postkort langside: "" +*no.PageSize Env10/Comm10-konvolutt: "" +*no.PageSize EnvMonarch/Monarch-konvolutt: "" +*no.PageSize EnvISOB5/B5-konvolutt: "" +*no.PageSize EnvC5/C5-konvolutt: "" +*no.PageSize EnvDL/DL-konvolutt: "" +*no.Translation Duplex/Tosidig: "" +*no.Duplex None/Av: "" +*no.Duplex DuplexNoTumble/Innbinding på langsiden: "" +*no.Duplex DuplexTumble/Innbinding på kortsiden: "" +*no.Translation InputSlot/Papirmating: "" +*no.InputSlot Tray1/Skuff 1: "" +*no.InputSlot Tray2/Skuff 2: "" +*no.InputSlot ManualFeed/Manuell mater: "" +*no.Translation InstallableOptions/Installable Options: "" +*no.Translation HPOption_Duplexer/Tosidig-enhet: "" +*no.HPOption_Duplexer True/På: "" +*no.HPOption_Duplexer False/Av: "" +*no.Translation HPColorOptionsPanel/Farge: "" +*no.Translation HPPJLColorAsGray/Skriv ut farger i grått: "" +*no.HPPJLColorAsGray yes/På: "" +*no.HPPJLColorAsGray no/Av: "" +*no.Translation HPRGBEmulation/RGB-farge: "" +*no.HPRGBEmulation DefaultSRGB/Standard (sRGB): "" +*no.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*no.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*no.HPRGBEmulation VividSRGB/Sterk (sRGB): "" +*no.HPRGBEmulation HPRGBEmulationNone/Ingen: "" +*no.Translation HPEdgeControl/Kantkontroll: "" +*no.HPEdgeControl HPEdgeControlOff/Av: "" +*no.HPEdgeControl Light/Lys: "" +*no.HPEdgeControl Normal/Normal: "" +*no.HPEdgeControl Max/Maksimum: "" +*no.Translation HPGeneralHalftone/Halvtone: "" +*no.HPGeneralHalftone Smooth/Jevn: "" +*no.HPGeneralHalftone Detail/Detaljert: "" +*no.Translation HPTextNeutralGrays/Tekst, nøytrale gråtoner: "" +*no.HPTextNeutralGrays Black/Bare svart: "" +*no.HPTextNeutralGrays ProcessBlack/4-fargers: "" +*no.Translation HPGraphicsNeutralGrays/Grafikk, nøytrale gråtoner: "" +*no.HPGraphicsNeutralGrays Black/Bare svart: "" +*no.HPGraphicsNeutralGrays ProcessBlack/4-fargers: "" +*no.Translation HPPhotoNeutralGrays/Foto, nøytrale gråtoner: "" +*no.HPPhotoNeutralGrays Black/Bare svart: "" +*no.HPPhotoNeutralGrays ProcessBlack/4-fargers: "" +*no.Translation HPPaperQualityPanel/Paper/Quality: "" +*no.Translation HPPJLEconoMode/EconoMode: "" +*no.HPPJLEconoMode True/På: "" +*no.HPPJLEconoMode False/Av: "" +*no.Translation MediaType/Utskriftsmateriale: "" +*no.MediaType Unspecified/Uspesifisert: "" +*no.MediaType Plain/Vanlig: "" +*no.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*no.MediaType HPLaserJet90/HP LaserJet 90g: "" +*no.MediaType HPColorLaserMatte105/HP Fargelaser matt, 105g: "" +*no.MediaType HPPremiumChoiceMatte120/HP Premium Choice matt, 120g: "" +*no.MediaType HPBrochureMatte150/HP-brosjyre, matt, 150g: "" +*no.MediaType HPCoverMatte200/HP Omslag matt, 200g: "" +*no.MediaType HPMattePhoto200/HP Matt foto 200g: "" +*no.MediaType HPPremiumPresentationGlossy120/HP Premium-presentasjon, glanset, 120g: "" +*no.MediaType HPBrochureGlossy150/HP-brosjyre, glanset, 150g: "" +*no.MediaType HPTrifoldBrochureGlossy150/HP-brosjyre, glanset, brettet i tre, 150g: "" +*no.MediaType HPBrochureGlossy200/HP-brosjyre, glanset, 200g: "" +*no.MediaType Light6074/Lys 60-74g: "" +*no.MediaType Intermediate8595/Middels 85-95g: "" +*no.MediaType MidWeight96110/Mellomtungt, 96-110g: "" +*no.MediaType Heavy111130/Tungt 111-130g: "" +*no.MediaType ExtraHeavy131175/Ekstra Tung 131-175g: "" +*no.MediaType HeavyGlossy111130/Tungt, glanset 111-130g: "" +*no.MediaType ExtraHeavyGlossy131175/Ekstra tykt og blankt 131-175g: "" +*no.MediaType CardGlossy176220/Kort glanset, 176-220g: "" +*no.MediaType ColorLaserTransparency/Transpar. for fargelaser: "" +*no.MediaType Labels/Etiketter: "" +*no.MediaType Letterhead/Brevhode: "" +*no.MediaType Envelope/Konvolutt: "" +*no.MediaType HeavyEnvelope/Tung konvolutt: "" +*no.MediaType Preprinted/Forhåndstrykt: "" +*no.MediaType Prepunched/Hullark: "" +*no.MediaType Colored/Farget: "" +*no.MediaType Bond/Brevpapir: "" +*no.MediaType Recycled/Resirkulert: "" +*no.MediaType Rough/Grovt: "" +*no.MediaType HeavyRough/Tungt grovt: "" +*no.MediaType OpaqueFilm/Opak film: "" +*no.APPrinterPreset ChartsAndGraphs/Diagrammer og grafikk: "" +*no.cupsICCProfile RGB../sRGB Matching Profile: "" +*no.cupsICCProfile CMYK../CMYK Matching Profile: "" +*no.cupsICCProfile Gray../Gray Matching Profile: "" +*no.cupsMarkerName cyan/Cyan: "" +*no.cupsMarkerName magenta/Magenta: "" +*no.cupsMarkerName yellow/Gul: "" +*no.cupsMarkerName black/Svart: "" +*nl.Translation Manufacturer/HP: "" +*nl.Translation ModelName/HP Color LaserJet Pro M252: "" +*nl.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*nl.Translation NickName/HP Color LaserJet Pro M252: "" +*nl.Translation PageSize/Materiaalgrootte: "" +*nl.PageSize Letter/US Letter: "" +*nl.PageSize Legal/US Legal: "" +*nl.PageSize Executive/Executive: "" +*nl.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*nl.PageSize 4x6/4x6: "" +*nl.PageSize 5x8/5x8: "" +*nl.PageSize A4/A4: "" +*nl.PageSize A5/A5: "" +*nl.PageSize A6/A6: "" +*nl.PageSize B5/JIS B5: "" +*nl.PageSize B6/JIS B6: "" +*nl.PageSize Env4x6/10x15 cm: "" +*nl.PageSize Oficio/Oficio 216x340 mm: "" +*nl.PageSize 195x270mm/16K 195x270 mm: "" +*nl.PageSize 184x260mm/16K 184x260 mm: "" +*nl.PageSize 7.75x10.75/16K 197x273 mm: "" +*nl.PageSize Postcard/Postcard: "" +*nl.PageSize DoublePostcardRotated/Briefkaart (dubbel) lange kant: "" +*nl.PageSize Env10/Comm10-envelop: "" +*nl.PageSize EnvMonarch/Monarch-envelop: "" +*nl.PageSize EnvISOB5/ISO B5-envelop: "" +*nl.PageSize EnvC5/C5-envelop: "" +*nl.PageSize EnvDL/DL-envelop: "" +*nl.Translation Duplex/Dubbelzijdig: "" +*nl.Duplex None/Uit: "" +*nl.Duplex DuplexNoTumble/Lange kant binden: "" +*nl.Duplex DuplexTumble/Korte kant binden: "" +*nl.Translation InputSlot/Papierinvoer: "" +*nl.InputSlot Tray1/Lade 1: "" +*nl.InputSlot Tray2/Lade 2: "" +*nl.InputSlot ManualFeed/Handinvoer: "" +*nl.Translation InstallableOptions/Installable Options: "" +*nl.Translation HPOption_Duplexer/Duplexeenheid: "" +*nl.HPOption_Duplexer True/Aan: "" +*nl.HPOption_Duplexer False/Uit: "" +*nl.Translation HPColorOptionsPanel/Kleur: "" +*nl.Translation HPPJLColorAsGray/Kleuren afdr. in grijs: "" +*nl.HPPJLColorAsGray yes/Aan: "" +*nl.HPPJLColorAsGray no/Uit: "" +*nl.Translation HPRGBEmulation/RGB-kleur: "" +*nl.HPRGBEmulation DefaultSRGB/Standaard (sRGB): "" +*nl.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*nl.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*nl.HPRGBEmulation VividSRGB/Levendig (sRGB): "" +*nl.HPRGBEmulation HPRGBEmulationNone/Geen: "" +*nl.Translation HPEdgeControl/Randverbetering: "" +*nl.HPEdgeControl HPEdgeControlOff/Uit: "" +*nl.HPEdgeControl Light/Licht: "" +*nl.HPEdgeControl Normal/Normaal: "" +*nl.HPEdgeControl Max/Maximaal: "" +*nl.Translation HPGeneralHalftone/Halftonen: "" +*nl.HPGeneralHalftone Smooth/Gelijkmatig: "" +*nl.HPGeneralHalftone Detail/Gedetailleerd: "" +*nl.Translation HPTextNeutralGrays/Tekst in neutraal grijs: "" +*nl.HPTextNeutralGrays Black/Alleen zwart: "" +*nl.HPTextNeutralGrays ProcessBlack/4-kleuren: "" +*nl.Translation HPGraphicsNeutralGrays/Afbeeld. in neutraal grijs: "" +*nl.HPGraphicsNeutralGrays Black/Alleen zwart: "" +*nl.HPGraphicsNeutralGrays ProcessBlack/4-kleuren: "" +*nl.Translation HPPhotoNeutralGrays/Foto's in neutraal grijs: "" +*nl.HPPhotoNeutralGrays Black/Alleen zwart: "" +*nl.HPPhotoNeutralGrays ProcessBlack/4-kleuren: "" +*nl.Translation HPPaperQualityPanel/Paper/Quality: "" +*nl.Translation HPPJLEconoMode/EconoMode: "" +*nl.HPPJLEconoMode True/Aan: "" +*nl.HPPJLEconoMode False/Uit: "" +*nl.Translation MediaType/Type afdrukmateriaal: "" +*nl.MediaType Unspecified/Onbekend: "" +*nl.MediaType Plain/Gewoon: "" +*nl.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*nl.MediaType HPLaserJet90/HP LaserJet 90g: "" +*nl.MediaType HPColorLaserMatte105/HP Color Laser, Mat 105g: "" +*nl.MediaType HPPremiumChoiceMatte120/HP Premium Choice, Mat 120g: "" +*nl.MediaType HPBrochureMatte150/HP mat brochurepapier 150g: "" +*nl.MediaType HPCoverMatte200/HP Omslagpapier, Mat 200g: "" +*nl.MediaType HPMattePhoto200/HP Fotopapier, Mat 200g: "" +*nl.MediaType HPPremiumPresentationGlossy120/HP Premium glanzend presentatiepapier 120g: "" +*nl.MediaType HPBrochureGlossy150/HP glanzend brochurepapier 150g: "" +*nl.MediaType HPTrifoldBrochureGlossy150/HP in drieën gevouwen glanzend brochurepapier 150g: "" +*nl.MediaType HPBrochureGlossy200/HP glanzend brochurepapier 200g: "" +*nl.MediaType Light6074/Licht 60-74g: "" +*nl.MediaType Intermediate8595/Intermediate 85-95g: "" +*nl.MediaType MidWeight96110/Middengewicht 96-110g: "" +*nl.MediaType Heavy111130/Zwaar 111-130g: "" +*nl.MediaType ExtraHeavy131175/Extra Zwaar 131-175g: "" +*nl.MediaType HeavyGlossy111130/Zwaarglanzend 111-130g: "" +*nl.MediaType ExtraHeavyGlossy131175/Extra zwaar glanzend 131-175g: "" +*nl.MediaType CardGlossy176220/Karton, Glanzend 176-220g: "" +*nl.MediaType ColorLaserTransparency/Transparant voor kleurenlaser: "" +*nl.MediaType Labels/Etiketten: "" +*nl.MediaType Letterhead/Briefpapier: "" +*nl.MediaType Envelope/Enveloppen: "" +*nl.MediaType HeavyEnvelope/Zware envelop: "" +*nl.MediaType Preprinted/Voorbedrukt: "" +*nl.MediaType Prepunched/Geperforeerd: "" +*nl.MediaType Colored/Gekleurd: "" +*nl.MediaType Bond/Bankpost: "" +*nl.MediaType Recycled/Gerecycled: "" +*nl.MediaType Rough/Ruw: "" +*nl.MediaType HeavyRough/Zwaar ruw: "" +*nl.MediaType OpaqueFilm/Ondoorzichtige film: "" +*nl.APPrinterPreset ChartsAndGraphs/Tabellen en grafieken: "" +*nl.cupsICCProfile RGB../sRGB Matching Profile: "" +*nl.cupsICCProfile CMYK../CMYK Matching Profile: "" +*nl.cupsICCProfile Gray../Gray Matching Profile: "" +*nl.cupsMarkerName cyan/Cyaan: "" +*nl.cupsMarkerName magenta/Magenta: "" +*nl.cupsMarkerName yellow/Geel: "" +*nl.cupsMarkerName black/Zwart: "" +*pt.Translation Manufacturer/HP: "" +*pt.Translation ModelName/HP Color LaserJet Pro M252: "" +*pt.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*pt.Translation NickName/HP Color LaserJet Pro M252: "" +*pt.Translation PageSize/Tamanho de Mídia: "" +*pt.PageSize Letter/US Letter: "" +*pt.PageSize Legal/US Legal: "" +*pt.PageSize Executive/Executivo: "" +*pt.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*pt.PageSize 4x6/4x6: "" +*pt.PageSize 5x8/5x8: "" +*pt.PageSize A4/A4: "" +*pt.PageSize A5/A5: "" +*pt.PageSize A6/A6: "" +*pt.PageSize B5/JIS B5: "" +*pt.PageSize B6/JIS B6: "" +*pt.PageSize Env4x6/10x15 cm: "" +*pt.PageSize Oficio/Oficio 216x340 mm: "" +*pt.PageSize 195x270mm/16K 195x270 mm: "" +*pt.PageSize 184x260mm/16K 184x260 mm: "" +*pt.PageSize 7.75x10.75/16K 197x273 mm: "" +*pt.PageSize Postcard/Postcard: "" +*pt.PageSize DoublePostcardRotated/Cartão-Postal Duplo Margem Longa: "" +*pt.PageSize Env10/Envelope Comm10: "" +*pt.PageSize EnvMonarch/Envelope Monarch: "" +*pt.PageSize EnvISOB5/Envelope B5: "" +*pt.PageSize EnvC5/Envelope C5: "" +*pt.PageSize EnvDL/Envelope DL: "" +*pt.Translation Duplex/Frente e verso: "" +*pt.Duplex None/Desativado: "" +*pt.Duplex DuplexNoTumble/Encadernação com Margem Longa: "" +*pt.Duplex DuplexTumble/Encadernação com Margem Curta: "" +*pt.Translation InputSlot/Alimentação de Papel: "" +*pt.InputSlot Tray1/Bandeja 1: "" +*pt.InputSlot Tray2/Bandeja 2: "" +*pt.InputSlot ManualFeed/Alimentação manual: "" +*pt.Translation InstallableOptions/Installable Options: "" +*pt.Translation HPOption_Duplexer/Unidade dúplex: "" +*pt.HPOption_Duplexer True/Ativado: "" +*pt.HPOption_Duplexer False/Desativado: "" +*pt.Translation HPColorOptionsPanel/Cor: "" +*pt.Translation HPPJLColorAsGray/Imprimir cor como cinza: "" +*pt.HPPJLColorAsGray yes/Ativado: "" +*pt.HPPJLColorAsGray no/Desativado: "" +*pt.Translation HPRGBEmulation/Cor RGB: "" +*pt.HPRGBEmulation DefaultSRGB/Padrão (sRGB): "" +*pt.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*pt.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*pt.HPRGBEmulation VividSRGB/Víva (sRGB): "" +*pt.HPRGBEmulation HPRGBEmulationNone/Nenhum: "" +*pt.Translation HPEdgeControl/Controle de margem: "" +*pt.HPEdgeControl HPEdgeControlOff/Desativado: "" +*pt.HPEdgeControl Light/Claro: "" +*pt.HPEdgeControl Normal/Normal: "" +*pt.HPEdgeControl Max/Máximo: "" +*pt.Translation HPGeneralHalftone/Meio-tom: "" +*pt.HPGeneralHalftone Smooth/Nivelado: "" +*pt.HPGeneralHalftone Detail/Detalhes: "" +*pt.Translation HPTextNeutralGrays/Texto em cinzas neutros: "" +*pt.HPTextNeutralGrays Black/Somente em preto: "" +*pt.HPTextNeutralGrays ProcessBlack/4 cores: "" +*pt.Translation HPGraphicsNeutralGrays/Gráfico em cinzas neutros: "" +*pt.HPGraphicsNeutralGrays Black/Somente em preto: "" +*pt.HPGraphicsNeutralGrays ProcessBlack/4 cores: "" +*pt.Translation HPPhotoNeutralGrays/Foto em cinzas neutros: "" +*pt.HPPhotoNeutralGrays Black/Somente em preto: "" +*pt.HPPhotoNeutralGrays ProcessBlack/4 cores: "" +*pt.Translation HPPaperQualityPanel/Paper/Quality: "" +*pt.Translation HPPJLEconoMode/EconoMode: "" +*pt.HPPJLEconoMode True/Ativado: "" +*pt.HPPJLEconoMode False/Desativado: "" +*pt.Translation MediaType/Tipo de mídia: "" +*pt.MediaType Unspecified/Não especificado: "" +*pt.MediaType Plain/Comum: "" +*pt.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*pt.MediaType HPLaserJet90/HP LaserJet 90g: "" +*pt.MediaType HPColorLaserMatte105/HP Color Laser 105g, fosco: "" +*pt.MediaType HPPremiumChoiceMatte120/HP Premium Choice fosco, 120g: "" +*pt.MediaType HPBrochureMatte150/Brochura HP fosco, 150g: "" +*pt.MediaType HPCoverMatte200/HP Cover 200g, fosco: "" +*pt.MediaType HPMattePhoto200/Fotogr. HP fosco, 200g: "" +*pt.MediaType HPPremiumPresentationGlossy120/Apresentação Premium brilhante HP 120g: "" +*pt.MediaType HPBrochureGlossy150/Brochura HP brilhante, 150g: "" +*pt.MediaType HPTrifoldBrochureGlossy150/Brochura HP brilhante com três dobras, 150g: "" +*pt.MediaType HPBrochureGlossy200/Brochura HP brilhante, 200g: "" +*pt.MediaType Light6074/Leve 60-74g: "" +*pt.MediaType Intermediate8595/Intermedio 85-95g: "" +*pt.MediaType MidWeight96110/Semipesado 96-110g: "" +*pt.MediaType Heavy111130/Pesado 111-130g: "" +*pt.MediaType ExtraHeavy131175/Extrapesado 131-175g: "" +*pt.MediaType HeavyGlossy111130/Espesso brilhante 111-130g: "" +*pt.MediaType ExtraHeavyGlossy131175/Brilhante com gramatura extra 131-175g: "" +*pt.MediaType CardGlossy176220/Cartão brilhante, 176-220g: "" +*pt.MediaType ColorLaserTransparency/Transpar. laser a cores: "" +*pt.MediaType Labels/Etiquetas: "" +*pt.MediaType Letterhead/Timbrado: "" +*pt.MediaType Envelope/Envelope: "" +*pt.MediaType HeavyEnvelope/Envelope pesado: "" +*pt.MediaType Preprinted/Pré-impresso: "" +*pt.MediaType Prepunched/Perfurado: "" +*pt.MediaType Colored/Colorido: "" +*pt.MediaType Bond/Superbond: "" +*pt.MediaType Recycled/Reciclado: "" +*pt.MediaType Rough/Áspero: "" +*pt.MediaType HeavyRough/Áspero pesado: "" +*pt.MediaType OpaqueFilm/Filme opaco: "" +*pt.APPrinterPreset ChartsAndGraphs/Tabelas e gráficos: "" +*pt.cupsICCProfile RGB../sRGB Matching Profile: "" +*pt.cupsICCProfile CMYK../CMYK Matching Profile: "" +*pt.cupsICCProfile Gray../Gray Matching Profile: "" +*pt.cupsMarkerName cyan/Ciano: "" +*pt.cupsMarkerName magenta/Magenta: "" +*pt.cupsMarkerName yellow/Amarelo: "" +*pt.cupsMarkerName black/Preto: "" +*ru.Translation Manufacturer/HP: "" +*ru.Translation ModelName/HP Color LaserJet Pro M252: "" +*ru.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*ru.Translation NickName/HP Color LaserJet Pro M252: "" +*ru.Translation PageSize/Размер бумаги: "" +*ru.PageSize Letter/US Letter: "" +*ru.PageSize Legal/US Legal: "" +*ru.PageSize Executive/Executive: "" +*ru.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*ru.PageSize 4x6/4 x 6: "" +*ru.PageSize 5x8/5 x 8: "" +*ru.PageSize A4/A4: "" +*ru.PageSize A5/A5: "" +*ru.PageSize A6/A6: "" +*ru.PageSize B5/JIS B5: "" +*ru.PageSize B6/JIS B6: "" +*ru.PageSize Env4x6/10 x 15 см: "" +*ru.PageSize Oficio/Oficio 216x340 mm: "" +*ru.PageSize 195x270mm/16K 195 x 270 мм: "" +*ru.PageSize 184x260mm/16K 184 x 260 мм: "" +*ru.PageSize 7.75x10.75/16K 197 x 273 мм: "" +*ru.PageSize Postcard/Postcard: "" +*ru.PageSize DoublePostcardRotated/Postcard Double Long Edge: "" +*ru.PageSize Env10/Конверт Comm10: "" +*ru.PageSize EnvMonarch/Конверт Monarch: "" +*ru.PageSize EnvISOB5/Конверт B5: "" +*ru.PageSize EnvC5/Конверт C5: "" +*ru.PageSize EnvDL/Конверт DL: "" +*ru.Translation Duplex/Двусторонняя: "" +*ru.Duplex None/Выкл.: "" +*ru.Duplex DuplexNoTumble/Прошивка вдоль длинного края: "" +*ru.Duplex DuplexTumble/Прошивка вдоль короткого края: "" +*ru.Translation InputSlot/Подача бумаги: "" +*ru.InputSlot Tray1/Лоток 1: "" +*ru.InputSlot Tray2/Лоток 2: "" +*ru.InputSlot ManualFeed/Ручная подача: "" +*ru.Translation InstallableOptions/Installable Options: "" +*ru.Translation HPOption_Duplexer/Модуль дуплекса: "" +*ru.HPOption_Duplexer True/Вкл.: "" +*ru.HPOption_Duplexer False/Выкл.: "" +*ru.Translation HPColorOptionsPanel/Цвет: "" +*ru.Translation HPPJLColorAsGray/Печать цвета серым: "" +*ru.HPPJLColorAsGray yes/Вкл.: "" +*ru.HPPJLColorAsGray no/Выкл.: "" +*ru.Translation HPRGBEmulation/Цвет RGB: "" +*ru.HPRGBEmulation DefaultSRGB/По умолчанию (sRGB): "" +*ru.HPRGBEmulation PhotoSRGB/Фото (sRGB): "" +*ru.HPRGBEmulation Adobe/Фото (Adobe RGB 1998): "" +*ru.HPRGBEmulation VividSRGB/Яркое (sRGB): "" +*ru.HPRGBEmulation HPRGBEmulationNone/Нет: "" +*ru.Translation HPEdgeControl/Контроль края: "" +*ru.HPEdgeControl HPEdgeControlOff/Выкл.: "" +*ru.HPEdgeControl Light/Светлый: "" +*ru.HPEdgeControl Normal/Обычное: "" +*ru.HPEdgeControl Max/Максимум: "" +*ru.Translation HPGeneralHalftone/Полутона: "" +*ru.HPGeneralHalftone Smooth/Гладкое: "" +*ru.HPGeneralHalftone Detail/Детальное: "" +*ru.Translation HPTextNeutralGrays/Нейтр. серый (текст): "" +*ru.HPTextNeutralGrays Black/Только черный: "" +*ru.HPTextNeutralGrays ProcessBlack/Четырехцветный: "" +*ru.Translation HPGraphicsNeutralGrays/Нейтр. серый (граф.): "" +*ru.HPGraphicsNeutralGrays Black/Только черный: "" +*ru.HPGraphicsNeutralGrays ProcessBlack/Четырехцветный: "" +*ru.Translation HPPhotoNeutralGrays/Нейтр. серый (фото): "" +*ru.HPPhotoNeutralGrays Black/Только черный: "" +*ru.HPPhotoNeutralGrays ProcessBlack/Четырехцветный: "" +*ru.Translation HPPaperQualityPanel/Paper/Quality: "" +*ru.Translation HPPJLEconoMode/EconoMode: "" +*ru.HPPJLEconoMode True/Вкл.: "" +*ru.HPPJLEconoMode False/Выкл.: "" +*ru.Translation MediaType/Тип носителя: "" +*ru.MediaType Unspecified/Не указано: "" +*ru.MediaType Plain/Обычная бумага: "" +*ru.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*ru.MediaType HPLaserJet90/HP LaserJet 90г: "" +*ru.MediaType HPColorLaserMatte105/HP для цветной лазерной печати, матовая 105г: "" +*ru.MediaType HPPremiumChoiceMatte120/HP повышенного качества, матовая 120г: "" +*ru.MediaType HPBrochureMatte150/Бумага HP для брошюр, матовая, 150г: "" +*ru.MediaType HPCoverMatte200/Бумага HP для обложек, матовая 200г: "" +*ru.MediaType HPMattePhoto200/Матовая фотобумага HP 200г: "" +*ru.MediaType HPPremiumPresentationGlossy120/Бум. HP повыш. кач. для презентаций, глянц. 120г: "" +*ru.MediaType HPBrochureGlossy150/Бумага HP для брошюр, глянцевая, 150г: "" +*ru.MediaType HPTrifoldBrochureGlossy150/Бум. HP для склад-х в 3 слоя брошюр, глянц. 150г: "" +*ru.MediaType HPBrochureGlossy200/Бумага HP для брошюр, глянцевая, 200г: "" +*ru.MediaType Light6074/Легкая 60-74г: "" +*ru.MediaType Intermediate8595/Прокладка 85-95г: "" +*ru.MediaType MidWeight96110/Среднеплотная 96-110г: "" +*ru.MediaType Heavy111130/Плотная 111-130г: "" +*ru.MediaType ExtraHeavy131175/Сверхплотная 131-175г: "" +*ru.MediaType HeavyGlossy111130/Плотная глянцевая 111-130г: "" +*ru.MediaType ExtraHeavyGlossy131175/Сверхплотная глянцевая 131-175г: "" +*ru.MediaType CardGlossy176220/Бумага для открыток, глянцевая 176-220г: "" +*ru.MediaType ColorLaserTransparency/Прозрачная пленка для цветн. лазер. печати: "" +*ru.MediaType Labels/Этикетки: "" +*ru.MediaType Letterhead/Фирменный бланк: "" +*ru.MediaType Envelope/Конверт: "" +*ru.MediaType HeavyEnvelope/Плотный конверт: "" +*ru.MediaType Preprinted/Печатный бланк: "" +*ru.MediaType Prepunched/Перфорированная бумага: "" +*ru.MediaType Colored/Цветная: "" +*ru.MediaType Bond/Высокосортная: "" +*ru.MediaType Recycled/Бумага из вторсырья: "" +*ru.MediaType Rough/Грубая бумага: "" +*ru.MediaType HeavyRough/Плотная грубая: "" +*ru.MediaType OpaqueFilm/Непрозрачный диапозитив: "" +*ru.APPrinterPreset ChartsAndGraphs/Диаграммы и графики: "" +*ru.cupsICCProfile RGB../sRGB Matching Profile: "" +*ru.cupsICCProfile CMYK../CMYK Matching Profile: "" +*ru.cupsICCProfile Gray../Gray Matching Profile: "" +*ru.cupsMarkerName cyan/Голубой: "" +*ru.cupsMarkerName magenta/Пурпурный: "" +*ru.cupsMarkerName yellow/Желтый: "" +*ru.cupsMarkerName black/Черный: "" +*sv.Translation Manufacturer/HP: "" +*sv.Translation ModelName/HP Color LaserJet Pro M252: "" +*sv.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*sv.Translation NickName/HP Color LaserJet Pro M252: "" +*sv.Translation PageSize/Mediestorlek: "" +*sv.PageSize Letter/US Letter: "" +*sv.PageSize Legal/US Legal: "" +*sv.PageSize Executive/Executive: "" +*sv.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*sv.PageSize 4x6/4x6: "" +*sv.PageSize 5x8/5x8: "" +*sv.PageSize A4/A4: "" +*sv.PageSize A5/A5: "" +*sv.PageSize A6/A6: "" +*sv.PageSize B5/JIS B5: "" +*sv.PageSize B6/JIS B6: "" +*sv.PageSize Env4x6/10x15 cm: "" +*sv.PageSize Oficio/Oficio 216x340 mm: "" +*sv.PageSize 195x270mm/16K 195x270 mm: "" +*sv.PageSize 184x260mm/16K 184x260 mm: "" +*sv.PageSize 7.75x10.75/16K 197x273 mm: "" +*sv.PageSize Postcard/Postcard: "" +*sv.PageSize DoublePostcardRotated/Vykort - dubbel med lång kant: "" +*sv.PageSize Env10/Comm10-kuvert: "" +*sv.PageSize EnvMonarch/Monarch-kuvert: "" +*sv.PageSize EnvISOB5/ISO B5-kuvert: "" +*sv.PageSize EnvC5/C5-kuvert: "" +*sv.PageSize EnvDL/DL-kuvert: "" +*sv.Translation Duplex/Dubbelsidig: "" +*sv.Duplex None/Av: "" +*sv.Duplex DuplexNoTumble/Häftning långsida: "" +*sv.Duplex DuplexTumble/Häftning kortsida: "" +*sv.Translation InputSlot/Pappersmatare: "" +*sv.InputSlot Tray1/Fack 1: "" +*sv.InputSlot Tray2/Fack 2: "" +*sv.InputSlot ManualFeed/Manuell matning: "" +*sv.Translation InstallableOptions/Installable Options: "" +*sv.Translation HPOption_Duplexer/Tillbehör för dubbelsidig utskrift: "" +*sv.HPOption_Duplexer True/På: "" +*sv.HPOption_Duplexer False/Av: "" +*sv.Translation HPColorOptionsPanel/Färg: "" +*sv.Translation HPPJLColorAsGray/Skriv ut färg i grått: "" +*sv.HPPJLColorAsGray yes/På: "" +*sv.HPPJLColorAsGray no/Av: "" +*sv.Translation HPRGBEmulation/RGB-färg: "" +*sv.HPRGBEmulation DefaultSRGB/Standard (sRGB): "" +*sv.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*sv.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*sv.HPRGBEmulation VividSRGB/Stark (sRGB): "" +*sv.HPRGBEmulation HPRGBEmulationNone/Inget: "" +*sv.Translation HPEdgeControl/Kantkontroll: "" +*sv.HPEdgeControl HPEdgeControlOff/Av: "" +*sv.HPEdgeControl Light/Ljus: "" +*sv.HPEdgeControl Normal/Normal: "" +*sv.HPEdgeControl Max/Högst: "" +*sv.Translation HPGeneralHalftone/Halvton: "" +*sv.HPGeneralHalftone Smooth/Jämnt: "" +*sv.HPGeneralHalftone Detail/Detalj: "" +*sv.Translation HPTextNeutralGrays/Text neutral grå: "" +*sv.HPTextNeutralGrays Black/Endast svart: "" +*sv.HPTextNeutralGrays ProcessBlack/4-färg: "" +*sv.Translation HPGraphicsNeutralGrays/Bilder neutral grå: "" +*sv.HPGraphicsNeutralGrays Black/Endast svart: "" +*sv.HPGraphicsNeutralGrays ProcessBlack/4-färg: "" +*sv.Translation HPPhotoNeutralGrays/Foto neutral grå: "" +*sv.HPPhotoNeutralGrays Black/Endast svart: "" +*sv.HPPhotoNeutralGrays ProcessBlack/4-färg: "" +*sv.Translation HPPaperQualityPanel/Paper/Quality: "" +*sv.Translation HPPJLEconoMode/EconoMode: "" +*sv.HPPJLEconoMode True/På: "" +*sv.HPPJLEconoMode False/Av: "" +*sv.Translation MediaType/Material: "" +*sv.MediaType Unspecified/Ospecificerad: "" +*sv.MediaType Plain/Vanligt: "" +*sv.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*sv.MediaType HPLaserJet90/HP LaserJet 90g: "" +*sv.MediaType HPColorLaserMatte105/HP Color Laser, matt 105g: "" +*sv.MediaType HPPremiumChoiceMatte120/HP Premium Choice, matt 120g: "" +*sv.MediaType HPBrochureMatte150/HP-broschyr, matt 150g: "" +*sv.MediaType HPCoverMatte200/HP omslag, matt 200g: "" +*sv.MediaType HPMattePhoto200/HP matt foto 200g: "" +*sv.MediaType HPPremiumPresentationGlossy120/HP Premium presentation, glättat, 120g: "" +*sv.MediaType HPBrochureGlossy150/HP-broschyr, glättat, 150g: "" +*sv.MediaType HPTrifoldBrochureGlossy150/HP trippelvikt broschyr, glättat, 150g: "" +*sv.MediaType HPBrochureGlossy200/HP-broschyr, glättat, 200g: "" +*sv.MediaType Light6074/Lätt 60-74g: "" +*sv.MediaType Intermediate8595/Medelvikt 85-95g: "" +*sv.MediaType MidWeight96110/Mellanvikt 96-110g: "" +*sv.MediaType Heavy111130/Tungt 111-130g: "" +*sv.MediaType ExtraHeavy131175/Extra Tungt 131-175g: "" +*sv.MediaType HeavyGlossy111130/Tungt glättat 111-130g: "" +*sv.MediaType ExtraHeavyGlossy131175/Extra tungt glättat 131-175g: "" +*sv.MediaType CardGlossy176220/Kort, glättat 176-220g: "" +*sv.MediaType ColorLaserTransparency/Färglaser OH-film: "" +*sv.MediaType Labels/Etiketter: "" +*sv.MediaType Letterhead/Brevpapper: "" +*sv.MediaType Envelope/Kuvert: "" +*sv.MediaType HeavyEnvelope/Tungt kuvert: "" +*sv.MediaType Preprinted/Förtryckt: "" +*sv.MediaType Prepunched/Hålat: "" +*sv.MediaType Colored/Färgat: "" +*sv.MediaType Bond/Finpapper: "" +*sv.MediaType Recycled/Returpapper: "" +*sv.MediaType Rough/Grovt: "" +*sv.MediaType HeavyRough/Tungt grovt: "" +*sv.MediaType OpaqueFilm/Ej genomskinlig film: "" +*sv.APPrinterPreset ChartsAndGraphs/Diagram och grafik: "" +*sv.cupsICCProfile RGB../sRGB Matching Profile: "" +*sv.cupsICCProfile CMYK../CMYK Matching Profile: "" +*sv.cupsICCProfile Gray../Gray Matching Profile: "" +*sv.cupsMarkerName cyan/Cyan: "" +*sv.cupsMarkerName magenta/Magenta: "" +*sv.cupsMarkerName yellow/Gul: "" +*sv.cupsMarkerName black/Svart: "" +*zh_CN.Translation Manufacturer/HP: "" +*zh_CN.Translation ModelName/HP Color LaserJet Pro M252: "" +*zh_CN.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*zh_CN.Translation NickName/HP Color LaserJet Pro M252: "" +*zh_CN.Translation PageSize/介质大小: "" +*zh_CN.PageSize Letter/US Letter: "" +*zh_CN.PageSize Legal/US Legal: "" +*zh_CN.PageSize Executive/Executive: "" +*zh_CN.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*zh_CN.PageSize 4x6/4x6: "" +*zh_CN.PageSize 5x8/5x8: "" +*zh_CN.PageSize A4/A4: "" +*zh_CN.PageSize A5/A5: "" +*zh_CN.PageSize A6/A6: "" +*zh_CN.PageSize B5/JIS B5: "" +*zh_CN.PageSize B6/JIS B6: "" +*zh_CN.PageSize Env4x6/10x15 厘米: "" +*zh_CN.PageSize Oficio/Oficio 216x340 mm: "" +*zh_CN.PageSize 195x270mm/16K 195x270 毫米: "" +*zh_CN.PageSize 184x260mm/16K 184x260 毫米: "" +*zh_CN.PageSize 7.75x10.75/16K 197x273 毫米: "" +*zh_CN.PageSize Postcard/Postcard: "" +*zh_CN.PageSize DoublePostcardRotated/明信片-双面长边: "" +*zh_CN.PageSize Env10/信封 Comm10: "" +*zh_CN.PageSize EnvMonarch/信封 Monarch: "" +*zh_CN.PageSize EnvISOB5/信封 ISO B5: "" +*zh_CN.PageSize EnvC5/信封 C5: "" +*zh_CN.PageSize EnvDL/信封 DL: "" +*zh_CN.Translation Duplex/双面打印: "" +*zh_CN.Duplex None/关: "" +*zh_CN.Duplex DuplexNoTumble/长边装订: "" +*zh_CN.Duplex DuplexTumble/短边装订: "" +*zh_CN.Translation InputSlot/送纸: "" +*zh_CN.InputSlot Tray1/纸盒 1: "" +*zh_CN.InputSlot Tray2/纸盒 2: "" +*zh_CN.InputSlot ManualFeed/手动进纸: "" +*zh_CN.Translation InstallableOptions/Installable Options: "" +*zh_CN.Translation HPOption_Duplexer/双面打印附件: "" +*zh_CN.HPOption_Duplexer True/开: "" +*zh_CN.HPOption_Duplexer False/关: "" +*zh_CN.Translation HPColorOptionsPanel/颜色: "" +*zh_CN.Translation HPPJLColorAsGray/打印颜色为灰色: "" +*zh_CN.HPPJLColorAsGray yes/开: "" +*zh_CN.HPPJLColorAsGray no/关: "" +*zh_CN.Translation HPRGBEmulation/RGB 颜色: "" +*zh_CN.HPRGBEmulation DefaultSRGB/默认 (sRGB): "" +*zh_CN.HPRGBEmulation PhotoSRGB/照片 (sRGB): "" +*zh_CN.HPRGBEmulation Adobe/照片 (Adobe RGB 1998): "" +*zh_CN.HPRGBEmulation VividSRGB/鲜明 (sRGB): "" +*zh_CN.HPRGBEmulation HPRGBEmulationNone/无: "" +*zh_CN.Translation HPEdgeControl/边缘控制: "" +*zh_CN.HPEdgeControl HPEdgeControlOff/关: "" +*zh_CN.HPEdgeControl Light/淡: "" +*zh_CN.HPEdgeControl Normal/正常: "" +*zh_CN.HPEdgeControl Max/最大: "" +*zh_CN.Translation HPGeneralHalftone/半色调: "" +*zh_CN.HPGeneralHalftone Smooth/文本: "" +*zh_CN.HPGeneralHalftone Detail/细节: "" +*zh_CN.Translation HPTextNeutralGrays/文本中性灰色: "" +*zh_CN.HPTextNeutralGrays Black/仅限黑色: "" +*zh_CN.HPTextNeutralGrays ProcessBlack/4 色: "" +*zh_CN.Translation HPGraphicsNeutralGrays/图形中性灰色: "" +*zh_CN.HPGraphicsNeutralGrays Black/仅限黑色: "" +*zh_CN.HPGraphicsNeutralGrays ProcessBlack/4 色: "" +*zh_CN.Translation HPPhotoNeutralGrays/照片中性灰色: "" +*zh_CN.HPPhotoNeutralGrays Black/仅限黑色: "" +*zh_CN.HPPhotoNeutralGrays ProcessBlack/4 色: "" +*zh_CN.Translation HPPaperQualityPanel/Paper/Quality: "" +*zh_CN.Translation HPPJLEconoMode/EconoMode: "" +*zh_CN.HPPJLEconoMode True/开: "" +*zh_CN.HPPJLEconoMode False/关: "" +*zh_CN.Translation MediaType/介质类型: "" +*zh_CN.MediaType Unspecified/未指定: "" +*zh_CN.MediaType Plain/普通纸: "" +*zh_CN.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*zh_CN.MediaType HPLaserJet90/HP LaserJet 90 克纸: "" +*zh_CN.MediaType HPColorLaserMatte105/HP 彩色激光无光泽纸 105g: "" +*zh_CN.MediaType HPPremiumChoiceMatte120/HP 优选无光泽纸 120g: "" +*zh_CN.MediaType HPBrochureMatte150/HP 小册子磨砂纸 150g: "" +*zh_CN.MediaType HPCoverMatte200/HP 无光泽封面纸 200g: "" +*zh_CN.MediaType HPMattePhoto200/HP 无光泽照片纸 200g: "" +*zh_CN.MediaType HPPremiumPresentationGlossy120/HP 高级演示用光泽纸 120g: "" +*zh_CN.MediaType HPBrochureGlossy150/HP 小册子光泽纸 150g: "" +*zh_CN.MediaType HPTrifoldBrochureGlossy150/HP 三折小册子光泽纸 150g: "" +*zh_CN.MediaType HPBrochureGlossy200/HP 小册子光泽纸 200g: "" +*zh_CN.MediaType Light6074/轻磅 60-74g: "" +*zh_CN.MediaType Intermediate8595/光面纸 85-95g: "" +*zh_CN.MediaType MidWeight96110/中等重量纸 96-110g: "" +*zh_CN.MediaType Heavy111130/重磅 111-130g: "" +*zh_CN.MediaType ExtraHeavy131175/超级重磅纸 131-175g: "" +*zh_CN.MediaType HeavyGlossy111130/重磅光泽纸 111-130g: "" +*zh_CN.MediaType ExtraHeavyGlossy131175/超重磅光泽纸 131-175g: "" +*zh_CN.MediaType CardGlossy176220/光泽卡片 176-220g: "" +*zh_CN.MediaType ColorLaserTransparency/彩色激光投影胶片: "" +*zh_CN.MediaType Labels/标签: "" +*zh_CN.MediaType Letterhead/信头纸: "" +*zh_CN.MediaType Envelope/信封: "" +*zh_CN.MediaType HeavyEnvelope/重磅信封: "" +*zh_CN.MediaType Preprinted/预先打印纸: "" +*zh_CN.MediaType Prepunched/预先打孔纸: "" +*zh_CN.MediaType Colored/彩纸: "" +*zh_CN.MediaType Bond/证券纸: "" +*zh_CN.MediaType Recycled/再生纸: "" +*zh_CN.MediaType Rough/粗糙: "" +*zh_CN.MediaType HeavyRough/重磅粗糙纸: "" +*zh_CN.MediaType OpaqueFilm/不透明胶片: "" +*zh_CN.APPrinterPreset ChartsAndGraphs/图表和图形: "" +*zh_CN.cupsICCProfile RGB../sRGB Matching Profile: "" +*zh_CN.cupsICCProfile CMYK../CMYK Matching Profile: "" +*zh_CN.cupsICCProfile Gray../Gray Matching Profile: "" +*zh_CN.cupsMarkerName cyan/青色: "" +*zh_CN.cupsMarkerName magenta/品红色: "" +*zh_CN.cupsMarkerName yellow/黄色: "" +*zh_CN.cupsMarkerName black/黑色: "" +*zh_TW.Translation Manufacturer/HP: "" +*zh_TW.Translation ModelName/HP Color LaserJet Pro M252: "" +*zh_TW.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*zh_TW.Translation NickName/HP Color LaserJet Pro M252: "" +*zh_TW.Translation PageSize/媒體大小: "" +*zh_TW.PageSize Letter/US Letter: "" +*zh_TW.PageSize Legal/US Legal: "" +*zh_TW.PageSize Executive/Executive: "" +*zh_TW.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*zh_TW.PageSize 4x6/4x6: "" +*zh_TW.PageSize 5x8/5x8: "" +*zh_TW.PageSize A4/A4: "" +*zh_TW.PageSize A5/A5: "" +*zh_TW.PageSize A6/A6: "" +*zh_TW.PageSize B5/JIS B5: "" +*zh_TW.PageSize B6/JIS B6: "" +*zh_TW.PageSize Env4x6/10x15 厘米: "" +*zh_TW.PageSize Oficio/Oficio 216x340 mm: "" +*zh_TW.PageSize 195x270mm/16K 195x270 公釐: "" +*zh_TW.PageSize 184x260mm/16K 184x260 公釐: "" +*zh_TW.PageSize 7.75x10.75/16K 197x273 公釐: "" +*zh_TW.PageSize Postcard/Postcard: "" +*zh_TW.PageSize DoublePostcardRotated/雙倍大小明信片長邊: "" +*zh_TW.PageSize Env10/Comm10 信封: "" +*zh_TW.PageSize EnvMonarch/Monarch 信封: "" +*zh_TW.PageSize EnvISOB5/ISO B5 信封: "" +*zh_TW.PageSize EnvC5/C5 信封: "" +*zh_TW.PageSize EnvDL/DL 信封: "" +*zh_TW.Translation Duplex/雙面: "" +*zh_TW.Duplex None/關閉: "" +*zh_TW.Duplex DuplexNoTumble/沿長邊裝訂: "" +*zh_TW.Duplex DuplexTumble/沿短邊裝訂: "" +*zh_TW.Translation InputSlot/送紙匣: "" +*zh_TW.InputSlot Tray1/1 號紙匣: "" +*zh_TW.InputSlot Tray2/2 號紙匣: "" +*zh_TW.InputSlot ManualFeed/手動進紙: "" +*zh_TW.Translation InstallableOptions/Installable Options: "" +*zh_TW.Translation HPOption_Duplexer/雙面列印裝置: "" +*zh_TW.HPOption_Duplexer True/開啟: "" +*zh_TW.HPOption_Duplexer False/關閉: "" +*zh_TW.Translation HPColorOptionsPanel/色彩: "" +*zh_TW.Translation HPPJLColorAsGray/用灰色列印彩色: "" +*zh_TW.HPPJLColorAsGray yes/開啟: "" +*zh_TW.HPPJLColorAsGray no/關閉: "" +*zh_TW.Translation HPRGBEmulation/RGB 色彩: "" +*zh_TW.HPRGBEmulation DefaultSRGB/預設 (sRGB): "" +*zh_TW.HPRGBEmulation PhotoSRGB/相紙 (sRGB): "" +*zh_TW.HPRGBEmulation Adobe/相紙 (Adobe RGB 1998): "" +*zh_TW.HPRGBEmulation VividSRGB/鮮明 (sRGB): "" +*zh_TW.HPRGBEmulation HPRGBEmulationNone/無: "" +*zh_TW.Translation HPEdgeControl/邊緣控制: "" +*zh_TW.HPEdgeControl HPEdgeControlOff/關閉: "" +*zh_TW.HPEdgeControl Light/淡: "" +*zh_TW.HPEdgeControl Normal/正常: "" +*zh_TW.HPEdgeControl Max/最大: "" +*zh_TW.Translation HPGeneralHalftone/半色調: "" +*zh_TW.HPGeneralHalftone Smooth/文字: "" +*zh_TW.HPGeneralHalftone Detail/細節: "" +*zh_TW.Translation HPTextNeutralGrays/文字中性灰色: "" +*zh_TW.HPTextNeutralGrays Black/純黑色: "" +*zh_TW.HPTextNeutralGrays ProcessBlack/4 色: "" +*zh_TW.Translation HPGraphicsNeutralGrays/圖形中性灰色: "" +*zh_TW.HPGraphicsNeutralGrays Black/純黑色: "" +*zh_TW.HPGraphicsNeutralGrays ProcessBlack/4 色: "" +*zh_TW.Translation HPPhotoNeutralGrays/照片中性灰色: "" +*zh_TW.HPPhotoNeutralGrays Black/純黑色: "" +*zh_TW.HPPhotoNeutralGrays ProcessBlack/4 色: "" +*zh_TW.Translation HPPaperQualityPanel/Paper/Quality: "" +*zh_TW.Translation HPPJLEconoMode/EconoMode: "" +*zh_TW.HPPJLEconoMode True/開啟: "" +*zh_TW.HPPJLEconoMode False/關閉: "" +*zh_TW.Translation MediaType/媒體類型: "" +*zh_TW.MediaType Unspecified/未指定: "" +*zh_TW.MediaType Plain/素面紙: "" +*zh_TW.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*zh_TW.MediaType HPLaserJet90/HP LaserJet 90 克紙: "" +*zh_TW.MediaType HPColorLaserMatte105/HP 彩色雷射霧面紙 105g: "" +*zh_TW.MediaType HPPremiumChoiceMatte120/HP 高級霧面紙 120g: "" +*zh_TW.MediaType HPBrochureMatte150/HP 霧面型錄紙 150g: "" +*zh_TW.MediaType HPCoverMatte200/HP 霧面封面紙 200g: "" +*zh_TW.MediaType HPMattePhoto200/HP 霧面相紙 200g: "" +*zh_TW.MediaType HPPremiumPresentationGlossy120/HP 高級光面簡報紙 120g: "" +*zh_TW.MediaType HPBrochureGlossy150/HP 光面型錄紙 150g: "" +*zh_TW.MediaType HPTrifoldBrochureGlossy150/HP 光面三摺型錄紙 150g: "" +*zh_TW.MediaType HPBrochureGlossy200/HP 光面型錄紙 200g: "" +*zh_TW.MediaType Light6074/輕磅紙 60-74g: "" +*zh_TW.MediaType Intermediate8595/嫖醱祧 85-95g: "" +*zh_TW.MediaType MidWeight96110/中磅紙 96-110g: "" +*zh_TW.MediaType Heavy111130/重磅紙 111-130g: "" +*zh_TW.MediaType ExtraHeavy131175/超重磅紙 131-175g: "" +*zh_TW.MediaType HeavyGlossy111130/重磅光面紙 111-130g: "" +*zh_TW.MediaType ExtraHeavyGlossy131175/超厚光滑紙 131-175g: "" +*zh_TW.MediaType CardGlossy176220/光面賀卡紙 176-220g: "" +*zh_TW.MediaType ColorLaserTransparency/彩色雷射投影片: "" +*zh_TW.MediaType Labels/標籤: "" +*zh_TW.MediaType Letterhead/信頭紙: "" +*zh_TW.MediaType Envelope/信封: "" +*zh_TW.MediaType HeavyEnvelope/重磅信封: "" +*zh_TW.MediaType Preprinted/預印的: "" +*zh_TW.MediaType Prepunched/打孔過的: "" +*zh_TW.MediaType Colored/彩紙: "" +*zh_TW.MediaType Bond/雪銅紙: "" +*zh_TW.MediaType Recycled/再生紙: "" +*zh_TW.MediaType Rough/粗糙紙: "" +*zh_TW.MediaType HeavyRough/重磅粗糙紙: "" +*zh_TW.MediaType OpaqueFilm/不透明膠片: "" +*zh_TW.APPrinterPreset ChartsAndGraphs/圖表和圖形: "" +*zh_TW.cupsICCProfile RGB../sRGB Matching Profile: "" +*zh_TW.cupsICCProfile CMYK../CMYK Matching Profile: "" +*zh_TW.cupsICCProfile Gray../Gray Matching Profile: "" +*zh_TW.cupsMarkerName cyan/青藍色: "" +*zh_TW.cupsMarkerName magenta/洋紅色: "" +*zh_TW.cupsMarkerName yellow/黃色: "" +*zh_TW.cupsMarkerName black/黑色: "" +*DefaultFont: Courier +*Font Albertus-ExtraBold: Standard "(001.001)" Standard ROM +*Font Albertus-Medium: Standard "(001.001)" Standard ROM +*Font AntiqueOlive: Standard "(001.001)" Standard ROM +*Font AntiqueOlive-Bold: Standard "(001.001)" Standard ROM +*Font AntiqueOlive-Italic: Standard "(001.001)" Standard ROM +*Font Arial: Standard "(001.001)" Standard ROM +*Font Arial-Bold: Standard "(001.001)" Standard ROM +*Font Arial-BoldItalic: Standard "(001.001)" Standard ROM +*Font Arial-Italic: Standard "(001.001)" Standard ROM +*Font AvantGarde-Book: Standard "(001.001)" Standard ROM +*Font AvantGarde-BookOblique: Standard "(001.001)" Standard ROM +*Font AvantGarde-Demi: Standard "(001.001)" Standard ROM +*Font AvantGarde-DemiOblique: Standard "(001.001)" Standard ROM +*Font Bookman-Demi: Standard "(001.001)" Standard ROM +*Font Bookman-DemiItalic: Standard "(001.001)" Standard ROM +*Font Bookman-Light: Standard "(001.001)" Standard ROM +*Font Bookman-LightItalic: Standard "(001.001)" Standard ROM +*Font BookmanCE-Demi: Win1250 "(001.001)" ExtendedRoman ROM +*Font BookmanCE-DemiItalic: Win1250 "(001.001)" ExtendedRoman ROM +*Font BookmanCE-Light: Win1250 "(001.001)" ExtendedRoman ROM +*Font BookmanCE-LightItalic: Win1250 "(001.001)" ExtendedRoman ROM +*Font CGOmega: Standard "(001.001)" Standard ROM +*Font CGOmega-Bold: Standard "(001.001)" Standard ROM +*Font CGOmega-BoldItalic: Standard "(001.001)" Standard ROM +*Font CGOmega-Italic: Standard "(001.001)" Standard ROM +*Font CGTimes: Standard "(001.001)" Standard ROM +*Font CGTimes-Bold: Standard "(001.001)" Standard ROM +*Font CGTimes-BoldItalic: Standard "(001.001)" Standard ROM +*Font CGTimes-Italic: Standard "(001.001)" Standard ROM +*Font Clarendon-Condensed-Bold: Standard "(001.001)" Standard ROM +*Font Coronet: Standard "(001.001)" Standard ROM +*Font Courier: Standard "(001.001)" Standard ROM +*Font Courier-Bold: Standard "(001.001)" Standard ROM +*Font Courier-BoldOblique: Standard "(001.001)" Standard ROM +*Font Courier-Oblique: Standard "(001.001)" Standard ROM +*Font CourierHP: Standard "(001.001)" Standard ROM +*Font CourierHP-Bold: Standard "(001.001)" Standard ROM +*Font CourierHP-BoldItalic: Standard "(001.001)" Standard ROM +*Font CourierHP-Italic: Standard "(001.001)" Standard ROM +*Font Garamond-Antiqua: Standard "(001.001)" Standard ROM +*Font Garamond-Halbfett: Standard "(001.001)" Standard ROM +*Font Garamond-Kursiv: Standard "(001.001)" Standard ROM +*Font Garamond-KursivHalbfett: Standard "(001.001)" Standard ROM +*Font Helvetica: Standard "(001.001)" Standard ROM +*Font Helvetica-Bold: Standard "(001.001)" Standard ROM +*Font Helvetica-BoldOblique: Standard "(001.001)" Standard ROM +*Font Helvetica-Narrow: Standard "(001.001)" Standard ROM +*Font Helvetica-Narrow-Bold: Standard "(001.001)" Standard ROM +*Font Helvetica-Narrow-BoldOblique: Standard "(001.001)" Standard ROM +*Font Helvetica-Narrow-Oblique: Standard "(001.001)" Standard ROM +*Font Helvetica-Oblique: Standard "(001.001)" Standard ROM +*Font LetterGothic: Standard "(001.001)" Standard ROM +*Font LetterGothic-Bold: Standard "(001.001)" Standard ROM +*Font LetterGothic-Italic: Standard "(001.001)" Standard ROM +*Font Marigold: Standard "(001.001)" Standard ROM +*Font NewCenturySchlbk-Bold: Standard "(001.001)" Standard ROM +*Font NewCenturySchlbk-BoldItalic: Standard "(001.001)" Standard ROM +*Font NewCenturySchlbk-Italic: Standard "(001.001)" Standard ROM +*Font NewCenturySchlbk-Roman: Standard "(001.001)" Standard ROM +*Font Palatino-Bold: Standard "(001.001)" Standard ROM +*Font Palatino-BoldItalic: Standard "(001.001)" Standard ROM +*Font Palatino-Italic: Standard "(001.001)" Standard ROM +*Font Palatino-Roman: Standard "(001.001)" Standard ROM +*Font Symbol: Special "(001.001)" Special ROM +*Font SymbolMT: Standard "(001.001)" Standard ROM +*Font Times-Bold: Standard "(001.001)" Standard ROM +*Font Times-BoldItalic: Standard "(001.001)" Standard ROM +*Font Times-Italic: Standard "(001.001)" Standard ROM +*Font Times-Roman: Standard "(001.001)" Standard ROM +*Font TimesNewRoman: Standard "(001.001)" Standard ROM +*Font TimesNewRoman-Bold: Standard "(001.001)" Standard ROM +*Font TimesNewRoman-BoldItalic: Standard "(001.001)" Standard ROM +*Font TimesNewRoman-Italic: Standard "(001.001)" Standard ROM +*Font Univers-Bold: Standard "(001.001)" Standard ROM +*Font Univers-BoldItalic: Standard "(001.001)" Standard ROM +*Font Univers-Condensed-Bold: Standard "(001.001)" Standard ROM +*Font Univers-Condensed-BoldItalic: Standard "(001.001)" Standard ROM +*Font Univers-Condensed-Medium: Standard "(001.001)" Standard ROM +*Font Univers-Condensed-MediumItalic: Standard "(001.001)" Standard ROM +*Font Univers-Medium: Standard "(001.001)" Standard ROM +*Font Univers-MediumItalic: Standard "(001.001)" Standard ROM +*Font Wingdings-Regular: Special "(001.001)" Special ROM +*Font Wingdings-Regular: Standard "(001.001)" Standard ROM +*Font ZapfChancery-MediumItalic: Standard "(001.001)" Standard ROM +*Font ZapfDingbats: Special "(001.001)" Special ROM +*% End of HPP00052.PPD, 211422 bytes. diff --git a/configfiles/etc/cups/ppd/Salle221.ppd.O b/configfiles/etc/cups/ppd/Salle221.ppd.O new file mode 100644 index 0000000..6dacded --- /dev/null +++ b/configfiles/etc/cups/ppd/Salle221.ppd.O @@ -0,0 +1,237 @@ +*PPD-Adobe: "4.3" +*%%%% PPD file for HP LaserJet p2015n Series with CUPS. +*%%%% Created by the CUPS PPD Compiler CUPS v1.6.2. +*% (c) 2008 Copyright Hewlett-Packard Development Company, LP +*FormatVersion: "4.3" +*FileVersion: "3.13.5" +*LanguageVersion: English +*LanguageEncoding: ISOLatin1 +*PCFileName: "hp-laserjet_p2015n_series.ppd" +*Product: "(HP LaserJet p2015n Printer)" +*Manufacturer: "HP" +*ModelName: "HP LaserJet p2015n Series" +*ShortNickName: "HP LaserJet p2015n Series" +*NickName: "HP LaserJet p2015n Series, hpcups 3.13.5" +*PSVersion: "(3010.000) 0" +*LanguageLevel: "3" +*ColorDevice: True +*DefaultColorSpace: RGB +*FileSystem: False +*Throughput: "1" +*LandscapeOrientation: Plus90 +*TTRasterizer: Type42 +*% Driver-defined attributes... +*RequiresPageRegion All: True +*cupsEvenDuplex: True +*hpPrinterLanguage: "ljmono" +*cupsModelName: "HP LaserJet" +*1284DeviceID: "MFG:HP;MDL:hp laserjet p2015n series;DES:hp laserjet p2015n series;" +*cupsVersion: 1.6 +*cupsModelNumber: 0 +*cupsManualCopies: True +*cupsFilter: "application/vnd.cups-raster 0 hpcups" +*cupsLanguages: "en" +*OpenUI *PageSize/Media Size: PickOne +*OrderDependency: 10 AnySetup *PageSize +*DefaultPageSize: A4 +*PageSize Card3x5/Index Card 3x5in: "<>setpagedevice" +*PageSize Hagaki/Hagaki 100x148mm: "<>setpagedevice" +*PageSize Photo4x6/Photo 4x6in: "<>setpagedevice" +*PageSize A6/A6 105x148mm: "<>setpagedevice" +*PageSize Photo5x7/Photo 5x7in: "<>setpagedevice" +*PageSize Card5x8/Index Card 5x8in: "<>setpagedevice" +*PageSize Oufuku/Oufuku-Hagaki 148x200mm: "<>setpagedevice" +*PageSize A5/A5 148x210mm: "<>setpagedevice" +*PageSize B5/B5 176x250mm: "<>setpagedevice" +*PageSize JB5/JB5 182x257mm: "<>setpagedevice" +*PageSize Executive/Executive 7.25x10.5in: "<>setpagedevice" +*PageSize 16k/16k 7.75x10.75in: "<>setpagedevice" +*PageSize Letter/Letter 8.5x11in: "<>setpagedevice" +*PageSize A4/A4 210x297mm: "<>setpagedevice" +*PageSize ExecutiveJIS/Executive (JIS) 8.5x12.986in: "<>setpagedevice" +*PageSize FLSA/American Foolscap 8.5x13in: "<>setpagedevice" +*PageSize Legal/Legal 8.5x14in: "<>setpagedevice" +*PageSize EnvA2/A2 Envelope 4.37x5.75in: "<>setpagedevice" +*PageSize EnvC6/C6 Envelope 114x162mm: "<>setpagedevice" +*PageSize EnvChou4/#4 Japanese Envelope 90x205mm: "<>setpagedevice" +*PageSize EnvMonarch/Monarch Envelope 3.875x7.5in: "<>setpagedevice" +*PageSize EnvDL/DL Envelope 110x220mm: "<>setpagedevice" +*PageSize Env10/#10 Envelope 4.12x9.5in: "<>setpagedevice" +*PageSize EnvChou3/#3 Japanese Envelope 120x235mm: "<>setpagedevice" +*PageSize EnvC5/C5 Envelope 162x229mm: "<>setpagedevice" +*PageSize EnvB5/B5 Envelope 176x250mm: "<>setpagedevice" +*CloseUI: *PageSize +*OpenUI *PageRegion/Media Size: PickOne +*OrderDependency: 10 AnySetup *PageRegion +*DefaultPageRegion: A4 +*PageRegion Card3x5/Index Card 3x5in: "<>setpagedevice" +*PageRegion Hagaki/Hagaki 100x148mm: "<>setpagedevice" +*PageRegion Photo4x6/Photo 4x6in: "<>setpagedevice" +*PageRegion A6/A6 105x148mm: "<>setpagedevice" +*PageRegion Photo5x7/Photo 5x7in: "<>setpagedevice" +*PageRegion Card5x8/Index Card 5x8in: "<>setpagedevice" +*PageRegion Oufuku/Oufuku-Hagaki 148x200mm: "<>setpagedevice" +*PageRegion A5/A5 148x210mm: "<>setpagedevice" +*PageRegion B5/B5 176x250mm: "<>setpagedevice" +*PageRegion JB5/JB5 182x257mm: "<>setpagedevice" +*PageRegion Executive/Executive 7.25x10.5in: "<>setpagedevice" +*PageRegion 16k/16k 7.75x10.75in: "<>setpagedevice" +*PageRegion Letter/Letter 8.5x11in: "<>setpagedevice" +*PageRegion A4/A4 210x297mm: "<>setpagedevice" +*PageRegion ExecutiveJIS/Executive (JIS) 8.5x12.986in: "<>setpagedevice" +*PageRegion FLSA/American Foolscap 8.5x13in: "<>setpagedevice" +*PageRegion Legal/Legal 8.5x14in: "<>setpagedevice" +*PageRegion EnvA2/A2 Envelope 4.37x5.75in: "<>setpagedevice" +*PageRegion EnvC6/C6 Envelope 114x162mm: "<>setpagedevice" +*PageRegion EnvChou4/#4 Japanese Envelope 90x205mm: "<>setpagedevice" +*PageRegion EnvMonarch/Monarch Envelope 3.875x7.5in: "<>setpagedevice" +*PageRegion EnvDL/DL Envelope 110x220mm: "<>setpagedevice" +*PageRegion Env10/#10 Envelope 4.12x9.5in: "<>setpagedevice" +*PageRegion EnvChou3/#3 Japanese Envelope 120x235mm: "<>setpagedevice" +*PageRegion EnvC5/C5 Envelope 162x229mm: "<>setpagedevice" +*PageRegion EnvB5/B5 Envelope 176x250mm: "<>setpagedevice" +*CloseUI: *PageRegion +*DefaultImageableArea: A4 +*ImageableArea Card3x5/Index Card 3x5in: "18 14 198 346" +*ImageableArea Hagaki/Hagaki 100x148mm: "18 14 266 406" +*ImageableArea Photo4x6/Photo 4x6in: "18 14 270 418" +*ImageableArea A6/A6 105x148mm: "18 14 279.359985351562 405.760009765625" +*ImageableArea Photo5x7/Photo 5x7in: "18 14 342 490" +*ImageableArea Card5x8/Index Card 5x8in: "18 14 342 562" +*ImageableArea Oufuku/Oufuku-Hagaki 148x200mm: "18 14 549 406" +*ImageableArea A5/A5 148x210mm: "18 14 401.760009765625 581.440002441406" +*ImageableArea B5/B5 176x250mm: "18 14 480.959991455078 694.47998046875" +*ImageableArea JB5/JB5 182x257mm: "18 14 498.239990234375 714.640014648438" +*ImageableArea Executive/Executive 7.25x10.5in: "18 14 504 742" +*ImageableArea 16k/16k 7.75x10.75in: "18 14 540 760" +*ImageableArea Letter/Letter 8.5x11in: "18 14 594 778" +*ImageableArea A4/A4 210x297mm: "18 14 577.440002441406 827.679992675781" +*ImageableArea ExecutiveJIS/Executive (JIS) 8.5x12.986in: "18 14 594 922" +*ImageableArea FLSA/American Foolscap 8.5x13in: "18 14 594 922" +*ImageableArea Legal/Legal 8.5x14in: "18 14 594 994" +*ImageableArea EnvA2/A2 Envelope 4.37x5.75in: "18 14 296.640014648438 400" +*ImageableArea EnvC6/C6 Envelope 114x162mm: "18 14 305.279998779297 445.359985351562" +*ImageableArea EnvChou4/#4 Japanese Envelope 90x205mm: "18 14 236.880004882812 567.039978027344" +*ImageableArea EnvMonarch/Monarch Envelope 3.875x7.5in: "18 14 261 526" +*ImageableArea EnvDL/DL Envelope 110x220mm: "18 14 293.760009765625 609.52001953125" +*ImageableArea Env10/#10 Envelope 4.12x9.5in: "18 14 279 670" +*ImageableArea EnvChou3/#3 Japanese Envelope 120x235mm: "18 14 321.839996337891 652" +*ImageableArea EnvC5/C5 Envelope 162x229mm: "18 14 441 635" +*ImageableArea EnvB5/B5 Envelope 176x250mm: "18 14 481 695" +*DefaultPaperDimension: A4 +*PaperDimension Card3x5/Index Card 3x5in: "216 360" +*PaperDimension Hagaki/Hagaki 100x148mm: "284 420" +*PaperDimension Photo4x6/Photo 4x6in: "288 432" +*PaperDimension A6/A6 105x148mm: "297.359985351562 419.760009765625" +*PaperDimension Photo5x7/Photo 5x7in: "360 504" +*PaperDimension Card5x8/Index Card 5x8in: "360 576" +*PaperDimension Oufuku/Oufuku-Hagaki 148x200mm: "567 420" +*PaperDimension A5/A5 148x210mm: "419.760009765625 595.440002441406" +*PaperDimension B5/B5 176x250mm: "498.959991455078 708.47998046875" +*PaperDimension JB5/JB5 182x257mm: "516.239990234375 728.640014648438" +*PaperDimension Executive/Executive 7.25x10.5in: "522 756" +*PaperDimension 16k/16k 7.75x10.75in: "558 774" +*PaperDimension Letter/Letter 8.5x11in: "612 792" +*PaperDimension A4/A4 210x297mm: "595.440002441406 841.679992675781" +*PaperDimension ExecutiveJIS/Executive (JIS) 8.5x12.986in: "612 936" +*PaperDimension FLSA/American Foolscap 8.5x13in: "612 936" +*PaperDimension Legal/Legal 8.5x14in: "612 1008" +*PaperDimension EnvA2/A2 Envelope 4.37x5.75in: "314.640014648438 414" +*PaperDimension EnvC6/C6 Envelope 114x162mm: "323.279998779297 459.359985351562" +*PaperDimension EnvChou4/#4 Japanese Envelope 90x205mm: "254.880004882812 581.039978027344" +*PaperDimension EnvMonarch/Monarch Envelope 3.875x7.5in: "279 540" +*PaperDimension EnvDL/DL Envelope 110x220mm: "311.760009765625 623.52001953125" +*PaperDimension Env10/#10 Envelope 4.12x9.5in: "297 684" +*PaperDimension EnvChou3/#3 Japanese Envelope 120x235mm: "339.839996337891 666" +*PaperDimension EnvC5/C5 Envelope 162x229mm: "459 649" +*PaperDimension EnvB5/B5 Envelope 176x250mm: "499 709" +*MaxMediaWidth: "612" +*MaxMediaHeight: "1008" +*HWMargins: 18 14 18 14 +*CustomPageSize True: "pop pop pop <>setpagedevice" +*ParamCustomPageSize Width: 1 points 72 612 +*ParamCustomPageSize Height: 2 points 288 1008 +*ParamCustomPageSize WidthOffset: 3 points 0 0 +*ParamCustomPageSize HeightOffset: 4 points 0 0 +*ParamCustomPageSize Orientation: 5 int 0 0 +*OpenUI *Duplex/Double-Sided Printing: PickOne +*OrderDependency: 10 AnySetup *Duplex +*DefaultDuplex: DuplexNoTumble +*Duplex DuplexNoTumble/Long Edge (Standard): "<>setpagedevice" +*Duplex DuplexTumble/Short Edge (Flip): "<>setpagedevice" +*Duplex None/Off: "<>setpagedevice" +*CloseUI: *Duplex +*OpenUI *InputSlot/Media Source: PickOne +*OrderDependency: 10 AnySetup *InputSlot +*DefaultInputSlot: Auto +*InputSlot Auto/Auto-Select: "<>setpagedevice" +*InputSlot PhotoTray/Photo Tray: "<>setpagedevice" +*InputSlot Upper/Upper Tray: "<>setpagedevice" +*InputSlot Lower/Lower Tray: "<>setpagedevice" +*InputSlot Envelope/Envelope Feeder: "<>setpagedevice" +*InputSlot LargeCapacity/Large Capacity Tray: "<>setpagedevice" +*InputSlot Manual/Manual Feeder: "<>setpagedevice" +*InputSlot MPTray/Multi Purpose Tray: "<>setpagedevice" +*CloseUI: *InputSlot +*OpenUI *ColorModel/Output Mode: PickOne +*OrderDependency: 10 AnySetup *ColorModel +*DefaultColorModel: Gray +*ColorModel Gray/Grayscale: "<>setpagedevice" +*CloseUI: *ColorModel +*OpenUI *MediaType/Media Type: PickOne +*OrderDependency: 10 AnySetup *MediaType +*DefaultMediaType: Plain +*MediaType Plain/Plain Paper: "<>setpagedevice" +*CloseUI: *MediaType +*OpenUI *OutputMode/Print Quality: PickOne +*OrderDependency: 10 AnySetup *OutputMode +*DefaultOutputMode: Normal +*OutputMode Normal/Normal: "<>setpagedevice" +*OutputMode Draft/Draft (Economy): "<>setpagedevice" +*OutputMode Best/Best: "<>setpagedevice" +*CloseUI: *OutputMode +*OpenGroup: InstallableOptions/Installable Options +*OpenUI *OptionDuplex/Duplexer Installed: Boolean +*OrderDependency: 10 AnySetup *OptionDuplex +*DefaultOptionDuplex: False +*OptionDuplex False/Not Installed: "" +*OptionDuplex True/Installed: "" +*CloseUI: *OptionDuplex +*CloseGroup: InstallableOptions +*DefaultFont: Courier +*Font AvantGarde-Book: Standard "(1.05)" Standard ROM +*Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM +*Font AvantGarde-Demi: Standard "(1.05)" Standard ROM +*Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM +*Font Bookman-Demi: Standard "(1.05)" Standard ROM +*Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM +*Font Bookman-Light: Standard "(1.05)" Standard ROM +*Font Bookman-LightItalic: Standard "(1.05)" Standard ROM +*Font Courier: Standard "(1.05)" Standard ROM +*Font Courier-Bold: Standard "(1.05)" Standard ROM +*Font Courier-BoldOblique: Standard "(1.05)" Standard ROM +*Font Courier-Oblique: Standard "(1.05)" Standard ROM +*Font Helvetica: Standard "(1.05)" Standard ROM +*Font Helvetica-Bold: Standard "(1.05)" Standard ROM +*Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM +*Font Helvetica-Narrow: Standard "(1.05)" Standard ROM +*Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM +*Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM +*Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM +*Font Helvetica-Oblique: Standard "(1.05)" Standard ROM +*Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM +*Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM +*Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM +*Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM +*Font Palatino-Bold: Standard "(1.05)" Standard ROM +*Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM +*Font Palatino-Italic: Standard "(1.05)" Standard ROM +*Font Palatino-Roman: Standard "(1.05)" Standard ROM +*Font Symbol: Special "(001.005)" Special ROM +*Font Times-Bold: Standard "(1.05)" Standard ROM +*Font Times-BoldItalic: Standard "(1.05)" Standard ROM +*Font Times-Italic: Standard "(1.05)" Standard ROM +*Font Times-Roman: Standard "(1.05)" Standard ROM +*Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM +*Font ZapfDingbats: Special "(001.005)" Special ROM +*% End of hp-laserjet_p2015n_series.ppd, 15195 bytes. diff --git a/configfiles/etc/cups/ppd/Salle222.ppd b/configfiles/etc/cups/ppd/Salle222.ppd new file mode 100644 index 0000000..0db5f36 --- /dev/null +++ b/configfiles/etc/cups/ppd/Salle222.ppd @@ -0,0 +1,2256 @@ +*PPD-Adobe: "4.3" +*% ================================= +*% Copyright 1992-2015 HP Company +*% Permission is hereby granted, free of charge, to any person obtaining +*% a copy of this software and associated documentation files (the +*% "Software"), to deal in the Software without restriction, including +*% without limitation the rights to use, copy, modify, merge, publish, +*% distribute, sublicense, and/or sell copies of the Software, and to +*% permit persons to whom the Software is furnished to do so, subject to +*% the following conditions: +*% +*% The above copyright notice and this permission notice shall be +*% included in all copies or substantial portions of the Software. +*% +*% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +*% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +*% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +*% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +*% LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +*% OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +*% WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +*% +*% [this is the MIT open source license -- please see www.opensource.org] +*% +*%%%% Created by the CUPS PPD Compiler CUPS v1.7.2. +*% Copyright (c) 2015 HP Development Company, L.P. +*FormatVersion: "4.3" +*FileVersion: "19.12" +*LanguageVersion: English +*LanguageEncoding: ISOLatin1 +*PCFileName: "HPP00052.PPD" +*Product: "(HP Color LaserJet Pro M252n)" +*Product: "(HP Color LaserJet Pro M252c1)" +*Product: "(HP Color LaserJet Pro M252c2)" +*Product: "(HP Color LaserJet Pro M252c3)" +*Product: "(HP Color LaserJet Pro M252c4)" +*Product: "(HP Color LaserJet Pro M252c5)" +*Product: "(HP Color LaserJet Pro M252dw)" +*Product: "(HP Color LaserJet Pro M252c6)" +*Product: "(HP Color LaserJet Pro M252c7)" +*Product: "(HP Color LaserJet Pro M252c8)" +*Product: "(HP Color LaserJet Pro M252c9)" +*Product: "(HP Color LaserJet Pro M252c10)" +*Manufacturer: "HP" +*ModelName: "HP Color LaserJet Pro M252" +*ShortNickName: "HP Color LaserJet Pro M252" +*1284DeviceID: "MFG:Hewlett-Packard;MDL:hp color laserjet pro m252;" +*NickName: "HP Color LaserJet Pro M252 Postscript (recommended)" +*PSVersion: "(3010.107) 3" +*LanguageLevel: "3" +*ColorDevice: True +*DefaultColorSpace: RGB +*FileSystem: False +*Throughput: "19" +*LandscapeOrientation: Plus90 +*TTRasterizer: Type42 +*% Driver-defined attributes... +*Protocols: TBCP +*cupsPJLCharset: "UTF-8" +*HPAccountingInfo: "4" +*HPBOD: "1" +*cupsUIResolver DuplexerVsDuplex: "*Duplex None" +*cupsUIConstraints DuplexerVsDuplex: "*HPOption_Duplexer False *Duplex" +*cupsCommands: "ReportLevels" +*cupsSNMPSupplies: False +*cupsIPPSupplies: False +*cupsMarkerName cyan/Cyan: "" +*cupsMarkerName magenta/Magenta: "" +*cupsMarkerName yellow/Yellow: "" +*cupsMarkerName black/Black: "" +*RequiresPageRegion All: True +*cupsUIResolver PageSizeVsDuplex: "*PageSize Letter *Duplex None" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize 4x6" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize 5x8" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize A6" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize B6" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize Env4x6" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize Postcard" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize DoublePostcardRotated" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize Env10" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize EnvMonarch" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize EnvISOB5" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize EnvC5" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize EnvDL" +*cupsMediaQualifier2: "Duplex" +*cupsMinSize .DuplexTumble.False: "419.00 595.00" +*cupsMinSize .DuplexNoTumble.False: "419.00 595.00" +*DefaultResolution: 600dpi +*cupsUIResolver MediaTypeVsDuplex: "*Duplex None *MediaType Unspecified" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType HPCoverMatte200" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType HPMattePhoto200" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType CardGlossy176220" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType ColorLaserTransparency" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType Labels" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType Envelope" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType HeavyEnvelope" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType OpaqueFilm" +*FreeVM: "62914560" +*cupsVersion: 1.5 +*cupsModelNumber: 0 +*cupsManualCopies: True +*cupsLanguages: "en da de es fi fr it ja ko no nl pt ru sv zh_CN zh_TW" +*cupsFilter: "application/vnd.cups-postscript 0 hpps" +*OpenUI *PageSize/Media Size: PickOne +*OrderDependency: 10 AnySetup *PageSize +*DefaultPageSize: A4 +*PageSize Letter/US Letter: "<>setpagedevice" +*PageSize Legal/US Legal: "<>setpagedevice" +*PageSize Executive/Executive: "<>setpagedevice" +*PageSize FanFoldGermanLegal/Oficio 8.5x13: "<> setpagedevice" +*PageSize 4x6/4x6: "<>setpagedevice" +*PageSize 5x8/5x8: "<>setpagedevice" +*PageSize A4/A4: "<>setpagedevice" +*PageSize A5/A5: "<>setpagedevice" +*PageSize A6/A6: "<>setpagedevice" +*PageSize B5/JIS B5: "<>setpagedevice" +*PageSize B6/JIS B6: "<>setpagedevice" +*PageSize Env4x6/10x15 cm: "<> setpagedevice" +*PageSize Oficio/Oficio 216x340 mm: "<>setpagedevice" +*PageSize 195x270mm/16K 195x270 mm: "<>setpagedevice" +*PageSize 184x260mm/16K 184x260 mm: "<>setpagedevice" +*PageSize 7.75x10.75/16K 197x273 mm: "<>setpagedevice" +*PageSize Postcard/Postcard: "<>setpagedevice" +*PageSize DoublePostcardRotated/Postcard Double Long Edge: "<>setpagedevice" +*PageSize Env10/Envelope #10: "<>setpagedevice" +*PageSize EnvMonarch/Envelope Monarch: "<>setpagedevice" +*PageSize EnvISOB5/Envelope B5: "<>setpagedevice" +*PageSize EnvC5/Envelope C5: "<>setpagedevice" +*PageSize EnvDL/Envelope DL: "<>setpagedevice" +*CloseUI: *PageSize +*OpenUI *PageRegion/Media Size: PickOne +*OrderDependency: 10 AnySetup *PageRegion +*DefaultPageRegion: A4 +*PageRegion Letter/US Letter: "<>setpagedevice" +*PageRegion Legal/US Legal: "<>setpagedevice" +*PageRegion Executive/Executive: "<>setpagedevice" +*PageRegion FanFoldGermanLegal/Oficio 8.5x13: "<> setpagedevice" +*PageRegion 4x6/4x6: "<>setpagedevice" +*PageRegion 5x8/5x8: "<>setpagedevice" +*PageRegion A4/A4: "<>setpagedevice" +*PageRegion A5/A5: "<>setpagedevice" +*PageRegion A6/A6: "<>setpagedevice" +*PageRegion B5/JIS B5: "<>setpagedevice" +*PageRegion B6/JIS B6: "<>setpagedevice" +*PageRegion Env4x6/10x15 cm: "<> setpagedevice" +*PageRegion Oficio/Oficio 216x340 mm: "<>setpagedevice" +*PageRegion 195x270mm/16K 195x270 mm: "<>setpagedevice" +*PageRegion 184x260mm/16K 184x260 mm: "<>setpagedevice" +*PageRegion 7.75x10.75/16K 197x273 mm: "<>setpagedevice" +*PageRegion Postcard/Postcard: "<>setpagedevice" +*PageRegion DoublePostcardRotated/Postcard Double Long Edge: "<>setpagedevice" +*PageRegion Env10/Envelope #10: "<>setpagedevice" +*PageRegion EnvMonarch/Envelope Monarch: "<>setpagedevice" +*PageRegion EnvISOB5/Envelope B5: "<>setpagedevice" +*PageRegion EnvC5/Envelope C5: "<>setpagedevice" +*PageRegion EnvDL/Envelope DL: "<>setpagedevice" +*CloseUI: *PageRegion +*DefaultImageableArea: Letter +*ImageableArea Letter/US Letter: "12 12 600 780" +*ImageableArea Legal/US Legal: "12 12 600 996" +*ImageableArea Executive/Executive: "12 12 510 744" +*ImageableArea FanFoldGermanLegal/Oficio 8.5x13: "12 12 600 924" +*ImageableArea 4x6/4x6: "12 12 276 420" +*ImageableArea 5x8/5x8: "12 12 348 564" +*ImageableArea A4/A4: "12 12 583 830" +*ImageableArea A5/A5: "12 12 408 583" +*ImageableArea A6/A6: "12 12 285 408" +*ImageableArea B5/JIS B5: "12 12 504 717" +*ImageableArea B6/JIS B6: "12 12 351 504" +*ImageableArea Env4x6/10x15 cm: "12 12 276 419" +*ImageableArea Oficio/Oficio 216x340 mm: "12 12 600 952" +*ImageableArea 195x270mm/16K 195x270 mm: "12 12 541 753" +*ImageableArea 184x260mm/16K 184x260 mm: "12 12 510 725" +*ImageableArea 7.75x10.75/16K 197x273 mm: "12 12 546 762" +*ImageableArea Postcard/Postcard: "12 12 271 408" +*ImageableArea DoublePostcardRotated/Postcard Double Long Edge: "12 12 408 555" +*ImageableArea Env10/Envelope #10: "12 12 285 672" +*ImageableArea EnvMonarch/Envelope Monarch: "12 12 267 528" +*ImageableArea EnvISOB5/Envelope B5: "12 12 487 697" +*ImageableArea EnvC5/Envelope C5: "12 12 447 637" +*ImageableArea EnvDL/Envelope DL: "12 12 300 612" +*DefaultPaperDimension: Letter +*PaperDimension Letter/US Letter: "612 792" +*PaperDimension Legal/US Legal: "612 1008" +*PaperDimension Executive/Executive: "522 756" +*PaperDimension FanFoldGermanLegal/Oficio 8.5x13: "612 936" +*PaperDimension 4x6/4x6: "288 432" +*PaperDimension 5x8/5x8: "360 576" +*PaperDimension A4/A4: "595 842" +*PaperDimension A5/A5: "420 595" +*PaperDimension A6/A6: "297 420" +*PaperDimension B5/JIS B5: "516 729" +*PaperDimension B6/JIS B6: "363 516" +*PaperDimension Env4x6/10x15 cm: "288 431" +*PaperDimension Oficio/Oficio 216x340 mm: "612 964" +*PaperDimension 195x270mm/16K 195x270 mm: "553 765" +*PaperDimension 184x260mm/16K 184x260 mm: "522 737" +*PaperDimension 7.75x10.75/16K 197x273 mm: "558 774" +*PaperDimension Postcard/Postcard: "283 420" +*PaperDimension DoublePostcardRotated/Postcard Double Long Edge: "420 567" +*PaperDimension Env10/Envelope #10: "297 684" +*PaperDimension EnvMonarch/Envelope Monarch: "279 540" +*PaperDimension EnvISOB5/Envelope B5: "499 709" +*PaperDimension EnvC5/Envelope C5: "459 649" +*PaperDimension EnvDL/Envelope DL: "312 624" +*MaxMediaWidth: "612" +*MaxMediaHeight: "1008" +*HWMargins: 12 12 12 12 +*CustomPageSize True: "pop pop pop <>setpagedevice" +*ParamCustomPageSize Width: 1 points 216 612 +*ParamCustomPageSize Height: 2 points 360 1008 +*ParamCustomPageSize WidthOffset: 3 points 0 0 +*ParamCustomPageSize HeightOffset: 4 points 0 0 +*ParamCustomPageSize Orientation: 5 int 0 0 +*OpenUI *Duplex/Two-Sided: PickOne +*OrderDependency: 50 AnySetup *Duplex +*DefaultDuplex: None +*Duplex None/Off: "<> setpagedevice" +*Duplex DuplexNoTumble/Long-Edge Binding: "<> setpagedevice" +*Duplex DuplexTumble/Short-Edge Binding: "<> setpagedevice" +*CloseUI: *Duplex +*OpenUI *InputSlot/Paper Feed: PickOne +*OrderDependency: 40 AnySetup *InputSlot +*DefaultInputSlot: Auto +*InputSlot Auto/Automatic: " + <> setpagedevice" +*End +*da.InputSlot Auto/Automatisk: "" +*de.InputSlot Auto/Automatisch: "" +*es.InputSlot Auto/Automático: "" +*fi.InputSlot Auto/Automaattinen: "" +*fr.InputSlot Auto/Automatique: "" +*it.InputSlot Auto/Automatico: "" +*ja.InputSlot Auto/自動: "" +*ko.InputSlot Auto/자동: "" +*nl.InputSlot Auto/Automatisch: "" +*no.InputSlot Auto/Automatisk: "" +*pt.InputSlot Auto/Automático: "" +*ru.InputSlot Auto/Автоматически: "" +*sv.InputSlot Auto/Automatiskt: "" +*zh_CN.InputSlot Auto/自动: "" +*zh_TW.InputSlot Auto/自動: "" + +*InputSlot Tray1/Tray 1: "<> setpagedevice" +*InputSlot Tray2/Tray 2: "<> setpagedevice" +*InputSlot ManualFeed/Manual Feed: "<> setpagedevice" +*CloseUI: *InputSlot +*OpenGroup: InstallableOptions/Installable Options +*OpenUI *HPOption_Duplexer/Duplex Unit: Boolean +*OrderDependency: 0 AnySetup *HPOption_Duplexer +*DefaultHPOption_Duplexer: False +*HPOption_Duplexer True/On: "" +*HPOption_Duplexer False/Off: "" +*CloseUI: *HPOption_Duplexer +*CloseGroup: InstallableOptions +*OpenGroup: HPColorOptionsPanel/Color +*OpenUI *HPPJLColorAsGray/Print Color as Gray: PickOne +*OrderDependency: 20 AnySetup *HPPJLColorAsGray +*DefaultHPPJLColorAsGray: no +*HPPJLColorAsGray yes/On: " " +*HPPJLColorAsGray no/Off: " " +*CloseUI: *HPPJLColorAsGray +*OpenUI *HPRGBEmulation/RGB Color: PickOne +*OrderDependency: 57 AnySetup *HPRGBEmulation +*DefaultHPRGBEmulation: DefaultSRGB +*HPRGBEmulation DefaultSRGB/Default (sRGB): " + globaldict /ColorSmartColorMatching known { + MatchScreen ColorSmartImageAdjustment + } if + " +*End +*HPRGBEmulation PhotoSRGB/Photo (sRGB): " + globaldict /ColorSmartColorMatching known { + PhotoQuality ColorSmartImageAdjustment + } if + " +*End +*HPRGBEmulation Adobe/Photo (Adobe RGB 1998): " + globaldict /ColorSmartColorMatching known { + AdobeRGB ColorSmartImageAdjustment + } if + " +*End +*HPRGBEmulation VividSRGB/Vivid (sRGB): " + globaldict /ColorSmartColorMatching known { + Vivid ColorSmartImageAdjustment + } if + " +*End +*HPRGBEmulation HPRGBEmulationNone/None: " + globaldict /ColorSmartColorMatching known { + NoAdj ColorSmartImageAdjustment + } if + " +*End +*CloseUI: *HPRGBEmulation +*OpenUI *HPEdgeControl/Edge Control: PickOne +*OrderDependency: 57 AnySetup *HPEdgeControl +*DefaultHPEdgeControl: Normal +*HPEdgeControl HPEdgeControlOff/Off: " + globaldict /HPTextAdaptiveHalftoning known { + false HPTextAdaptiveHalftoning + false HPGraphicsAdaptiveHalftoning + false HPImageAdaptiveHalftoning + } if + globaldict /HPColorTrapping known { + Off HPColorTrapping + } if + " +*End +*HPEdgeControl Light/Light: " + globaldict /HPTextAdaptiveHalftoning known { + true HPTextAdaptiveHalftoning + true HPGraphicsAdaptiveHalftoning + true HPImageAdaptiveHalftoning + } if + globaldict /HPColorTrapping known { + Light HPColorTrapping + } if + " +*End +*HPEdgeControl Normal/Normal: " + globaldict /HPTextAdaptiveHalftoning known { + true HPTextAdaptiveHalftoning + true HPGraphicsAdaptiveHalftoning + true HPImageAdaptiveHalftoning + } if + globaldict /HPColorTrapping known { + Normal HPColorTrapping + } if + " +*End +*HPEdgeControl Max/Maximum: " + globaldict /HPTextAdaptiveHalftoning known { + true HPTextAdaptiveHalftoning + true HPGraphicsAdaptiveHalftoning + true HPImageAdaptiveHalftoning + } if + globaldict /HPColorTrapping known { + Max HPColorTrapping + } if + " +*End +*CloseUI: *HPEdgeControl +*OpenUI *HPGeneralHalftone/Halftone: PickOne +*OrderDependency: 57 AnySetup *HPGeneralHalftone +*DefaultHPGeneralHalftone: Smooth +*HPGeneralHalftone Smooth/Smooth: " + globaldict /ColorSmartColorMatching known { + Smooth ColorSmartGraphicsHalftone + Smooth ColorSmartImageHalftone + Smooth ColorSmartTextHalftone + } if + " +*End +*HPGeneralHalftone Detail/Detail: " + globaldict /ColorSmartColorMatching known { + Detail ColorSmartGraphicsHalftone + Detail ColorSmartImageHalftone + Detail ColorSmartTextHalftone + } if + " +*End +*CloseUI: *HPGeneralHalftone +*OpenUI *HPTextNeutralGrays/Text Neutral Grays: PickOne +*OrderDependency: 57 AnySetup *HPTextNeutralGrays +*DefaultHPTextNeutralGrays: Black +*HPTextNeutralGrays Black/Black Only: " + globaldict /HPTextNeutralAxis known { + TonerBlack HPTextNeutralAxis + } if + " +*End +*HPTextNeutralGrays ProcessBlack/4-Color: " + globaldict /HPTextNeutralAxis known { + ProcBlack HPTextNeutralAxis + } if + " +*End +*CloseUI: *HPTextNeutralGrays +*OpenUI *HPGraphicsNeutralGrays/Graphics Neutral Grays: PickOne +*OrderDependency: 57 AnySetup *HPGraphicsNeutralGrays +*DefaultHPGraphicsNeutralGrays: Black +*HPGraphicsNeutralGrays Black/Black Only: " + globaldict /HPGraphicsNeutralAxis known { + TonerBlack HPGraphicsNeutralAxis + } if + " +*End +*HPGraphicsNeutralGrays ProcessBlack/4-Color: " + globaldict /HPGraphicsNeutralAxis known { + ProcBlack HPGraphicsNeutralAxis + } if + " +*End +*CloseUI: *HPGraphicsNeutralGrays +*OpenUI *HPPhotoNeutralGrays/Photo Neutral Grays: PickOne +*OrderDependency: 57 AnySetup *HPPhotoNeutralGrays +*DefaultHPPhotoNeutralGrays: ProcessBlack +*HPPhotoNeutralGrays Black/Black Only: " + globaldict /HPImageNeutralAxis known { + TonerBlack HPImageNeutralAxis + } if + " +*End +*HPPhotoNeutralGrays ProcessBlack/4-Color: " + globaldict /HPImageNeutralAxis known { + ProcBlack HPImageNeutralAxis + } if + " +*End +*CloseUI: *HPPhotoNeutralGrays +*CloseGroup: HPColorOptionsPanel +*OpenGroup: HPPaperQualityPanel/Paper/Quality +*OpenUI *HPPJLEconoMode/EconoMode: Boolean +*OrderDependency: 20 AnySetup *HPPJLEconoMode +*DefaultHPPJLEconoMode: False +*HPPJLEconoMode True/On: " " +*HPPJLEconoMode False/Off: " " +*CloseUI: *HPPJLEconoMode +*OpenUI *MediaType/Media Type: PickOne +*OrderDependency: 20 AnySetup *MediaType +*DefaultMediaType: Plain +*MediaType Unspecified/Unspecified: "<> setpagedevice" +*MediaType Plain/Plain: "<> setpagedevice" +*MediaType HPEcoSMARTLite/HP EcoSMART Lite: "<> setpagedevice" +*MediaType HPLaserJet90/HP LaserJet 90g: "<> setpagedevice" +*MediaType HPColorLaserMatte105/HP Color Laser Matte 105g: "<> setpagedevice" +*MediaType HPPremiumChoiceMatte120/HP Premium Choice Matte 120g: "<> setpagedevice" +*MediaType HPBrochureMatte150/HP Brochure Matte 150g: "<> setpagedevice" +*MediaType HPCoverMatte200/HP Cover Matte 200g: "<> setpagedevice" +*MediaType HPMattePhoto200/HP Matte Photo 200g: "<> setpagedevice" +*MediaType HPPremiumPresentationGlossy120/HP Premium Presentation Glossy 120g: "<> setpagedevice" +*MediaType HPBrochureGlossy150/HP Brochure Glossy 150g: "<> setpagedevice" +*MediaType HPTrifoldBrochureGlossy150/HP Tri-fold Brochure Glossy 150g: "<> setpagedevice" +*MediaType HPBrochureGlossy200/HP Brochure Glossy 200g: "<> setpagedevice" +*MediaType Light6074/Light 60-74g: "<> setpagedevice" +*MediaType Intermediate8595/Intermediate 85-95g: "<> setpagedevice" +*MediaType MidWeight96110/Mid-Weight 96-110g: "<> setpagedevice" +*MediaType Heavy111130/Heavy 111-130g: "<> setpagedevice" +*MediaType ExtraHeavy131175/Extra Heavy 131-175g: "<> setpagedevice" +*MediaType HeavyGlossy111130/Heavy Glossy 111-130g: "<> setpagedevice" +*MediaType ExtraHeavyGlossy131175/Extra Heavy Glossy 131-175g: "<> setpagedevice" +*MediaType CardGlossy176220/Card Glossy 176-220g: "<> setpagedevice" +*MediaType ColorLaserTransparency/Color Laser Transparency: "<> setpagedevice" +*MediaType Labels/Labels: "<> setpagedevice" +*MediaType Letterhead/Letterhead: "<> setpagedevice" +*MediaType Envelope/Envelope: "<> setpagedevice" +*MediaType HeavyEnvelope/Heavy Envelope: "<> setpagedevice" +*MediaType Preprinted/Preprinted: "<> setpagedevice" +*MediaType Prepunched/Prepunched: "<> setpagedevice" +*MediaType Colored/Colored: "<> setpagedevice" +*MediaType Bond/Bond: "<> setpagedevice" +*MediaType Recycled/Recycled: "<> setpagedevice" +*MediaType Rough/Rough: "<> setpagedevice" +*MediaType HeavyRough/Heavy Rough: "<> setpagedevice" +*MediaType OpaqueFilm/Opaque Film: "<> setpagedevice" +*CloseUI: *MediaType +*CloseGroup: HPPaperQualityPanel +*da.Translation Manufacturer/HP: "" +*da.Translation ModelName/HP Color LaserJet Pro M252: "" +*da.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*da.Translation NickName/HP Color LaserJet Pro M252: "" +*da.Translation PageSize/Mediestørrelse: "" +*da.PageSize Letter/US Letter: "" +*da.PageSize Legal/US Legal: "" +*da.PageSize Executive/Executive: "" +*da.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*da.PageSize 4x6/4x6: "" +*da.PageSize 5x8/5x8: "" +*da.PageSize A4/A4: "" +*da.PageSize A5/A5: "" +*da.PageSize A6/A6: "" +*da.PageSize B5/JIS B5: "" +*da.PageSize B6/JIS B6: "" +*da.PageSize Env4x6/10x15 cm: "" +*da.PageSize Oficio/Oficio 216x340 mm: "" +*da.PageSize 195x270mm/16K 195x270 mm: "" +*da.PageSize 184x260mm/16K 184x260 mm: "" +*da.PageSize 7.75x10.75/16K 197x273 mm: "" +*da.PageSize Postcard/Postcard: "" +*da.PageSize DoublePostcardRotated/Postkort, dobbelt - lang kant: "" +*da.PageSize Env10/Konv Comm10: "" +*da.PageSize EnvMonarch/Konv Monarch: "" +*da.PageSize EnvISOB5/Konv ISO B5: "" +*da.PageSize EnvC5/Konv C5: "" +*da.PageSize EnvDL/Konv DL: "" +*da.Translation Duplex/Dupleks: "" +*da.Duplex None/Fra: "" +*da.Duplex DuplexNoTumble/Indbinding på den lange led: "" +*da.Duplex DuplexTumble/Indbinding på den korte led: "" +*da.Translation InputSlot/Papirforsyning: "" +*da.InputSlot Tray1/Bakke 1: "" +*da.InputSlot Tray2/Bakke 2: "" +*da.InputSlot ManualFeed/Manuel indføring: "" +*da.Translation InstallableOptions/Installable Options: "" +*da.Translation HPOption_Duplexer/Dupleksudskrivningsudstyr: "" +*da.HPOption_Duplexer True/Til: "" +*da.HPOption_Duplexer False/Fra: "" +*da.Translation HPColorOptionsPanel/Farve: "" +*da.Translation HPPJLColorAsGray/Udskriv farve som grå: "" +*da.HPPJLColorAsGray yes/Til: "" +*da.HPPJLColorAsGray no/Fra: "" +*da.Translation HPRGBEmulation/RGB-farve: "" +*da.HPRGBEmulation DefaultSRGB/Standard (sRGB): "" +*da.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*da.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*da.HPRGBEmulation VividSRGB/Livlig (sRGB): "" +*da.HPRGBEmulation HPRGBEmulationNone/Ingen: "" +*da.Translation HPEdgeControl/Kantstyring: "" +*da.HPEdgeControl HPEdgeControlOff/Fra: "" +*da.HPEdgeControl Light/Lys: "" +*da.HPEdgeControl Normal/Normal: "" +*da.HPEdgeControl Max/Maksimum: "" +*da.Translation HPGeneralHalftone/Halvtone: "" +*da.HPGeneralHalftone Smooth/Jævn: "" +*da.HPGeneralHalftone Detail/Detaljer: "" +*da.Translation HPTextNeutralGrays/Tekst i neutral grå: "" +*da.HPTextNeutralGrays Black/Kun sort: "" +*da.HPTextNeutralGrays ProcessBlack/4-farve: "" +*da.Translation HPGraphicsNeutralGrays/Grafik i neutral grå: "" +*da.HPGraphicsNeutralGrays Black/Kun sort: "" +*da.HPGraphicsNeutralGrays ProcessBlack/4-farve: "" +*da.Translation HPPhotoNeutralGrays/Fotografier i neutral grå: "" +*da.HPPhotoNeutralGrays Black/Kun sort: "" +*da.HPPhotoNeutralGrays ProcessBlack/4-farve: "" +*da.Translation HPPaperQualityPanel/Paper/Quality: "" +*da.Translation HPPJLEconoMode/EconoMode: "" +*da.HPPJLEconoMode True/Til: "" +*da.HPPJLEconoMode False/Fra: "" +*da.Translation MediaType/Medietype: "" +*da.MediaType Unspecified/Uspecificeret: "" +*da.MediaType Plain/Almindeligt: "" +*da.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*da.MediaType HPLaserJet90/HP LaserJet 90g: "" +*da.MediaType HPColorLaserMatte105/HP Color Laser, mat 105g: "" +*da.MediaType HPPremiumChoiceMatte120/HP Premium Choice, mat 120g: "" +*da.MediaType HPBrochureMatte150/HP brochurepapir, mat 150g: "" +*da.MediaType HPCoverMatte200/HP Omslag, mat 200g: "" +*da.MediaType HPMattePhoto200/HP Foto, mat 200g: "" +*da.MediaType HPPremiumPresentationGlossy120/HP Premium-præsentationspapir, Blankt 120g: "" +*da.MediaType HPBrochureGlossy150/HP brochurepapir, Blankt 150g: "" +*da.MediaType HPTrifoldBrochureGlossy150/HP brochurepapir foldet tre gange, Blankt, 150g: "" +*da.MediaType HPBrochureGlossy200/HP brochurepapir, Blankt 200g: "" +*da.MediaType Light6074/Let 60-74g: "" +*da.MediaType Intermediate8595/Mellem 85-95g: "" +*da.MediaType MidWeight96110/Mellemkraftigt 96-110g: "" +*da.MediaType Heavy111130/Kraftigt 111-130g: "" +*da.MediaType ExtraHeavy131175/Ekstra kraftigt 131-175g: "" +*da.MediaType HeavyGlossy111130/Kraftigt blankt 111-130g: "" +*da.MediaType ExtraHeavyGlossy131175/Ekstra tykt og blankt 131-175g: "" +*da.MediaType CardGlossy176220/Kort, blankt 176-220g: "" +*da.MediaType ColorLaserTransparency/Color Laser-transparent: "" +*da.MediaType Labels/Etiketter: "" +*da.MediaType Letterhead/Brevpapir: "" +*da.MediaType Envelope/Konvolut: "" +*da.MediaType HeavyEnvelope/Kraftig konvolut: "" +*da.MediaType Preprinted/Fortrykt: "" +*da.MediaType Prepunched/Hullet: "" +*da.MediaType Colored/Farvet: "" +*da.MediaType Bond/Bankpost: "" +*da.MediaType Recycled/Genbrug: "" +*da.MediaType Rough/Groft: "" +*da.MediaType HeavyRough/Kraftigt, groft: "" +*da.MediaType OpaqueFilm/Uigennemskinnelig film: "" +*da.APPrinterPreset ChartsAndGraphs/Diagrammer og grafik: "" +*da.cupsICCProfile RGB../sRGB Matching Profile: "" +*da.cupsICCProfile CMYK../CMYK Matching Profile: "" +*da.cupsICCProfile Gray../Gray Matching Profile: "" +*da.cupsMarkerName cyan/Cyan: "" +*da.cupsMarkerName magenta/Magenta: "" +*da.cupsMarkerName yellow/Gul: "" +*da.cupsMarkerName black/Sort: "" +*de.Translation Manufacturer/HP: "" +*de.Translation ModelName/HP Color LaserJet Pro M252: "" +*de.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*de.Translation NickName/HP Color LaserJet Pro M252: "" +*de.Translation PageSize/Mediengröße: "" +*de.PageSize Letter/US Letter: "" +*de.PageSize Legal/US Legal: "" +*de.PageSize Executive/Executive: "" +*de.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*de.PageSize 4x6/4x6: "" +*de.PageSize 5x8/5x8: "" +*de.PageSize A4/A4: "" +*de.PageSize A5/A5: "" +*de.PageSize A6/A6: "" +*de.PageSize B5/JIS B5: "" +*de.PageSize B6/JIS B6: "" +*de.PageSize Env4x6/10x15 cm: "" +*de.PageSize Oficio/Oficio 216x340 mm: "" +*de.PageSize 195x270mm/16K 195x270 mm: "" +*de.PageSize 184x260mm/16K 184x260 mm: "" +*de.PageSize 7.75x10.75/16K 197x273 mm: "" +*de.PageSize Postcard/Postcard: "" +*de.PageSize DoublePostcardRotated/Postkarte - Doppelt - breite Seite: "" +*de.PageSize Env10/Umschlag Comm10: "" +*de.PageSize EnvMonarch/Umschlag Monarch: "" +*de.PageSize EnvISOB5/Umschlag ISO B5: "" +*de.PageSize EnvC5/Umschlag C5: "" +*de.PageSize EnvDL/Umschlag DL: "" +*de.Translation Duplex/Beidseitig: "" +*de.Duplex None/Aus: "" +*de.Duplex DuplexNoTumble/Bindung an langer Kante: "" +*de.Duplex DuplexTumble/Bindung an kurzer Kante: "" +*de.Translation InputSlot/Papiereinzug: "" +*de.InputSlot Tray1/Zufuhrfach 1: "" +*de.InputSlot Tray2/Zufuhrfach 2: "" +*de.InputSlot ManualFeed/Manuelle Zufuhr: "" +*de.Translation InstallableOptions/Installable Options: "" +*de.Translation HPOption_Duplexer/Duplexdruck-Zubehör: "" +*de.HPOption_Duplexer True/Ein: "" +*de.HPOption_Duplexer False/Aus: "" +*de.Translation HPColorOptionsPanel/Farbe: "" +*de.Translation HPPJLColorAsGray/In Graustufen drucken: "" +*de.HPPJLColorAsGray yes/Ein: "" +*de.HPPJLColorAsGray no/Aus: "" +*de.Translation HPRGBEmulation/RGB-Farbe: "" +*de.HPRGBEmulation DefaultSRGB/Standard (sRGB): "" +*de.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*de.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*de.HPRGBEmulation VividSRGB/Leuchtend (sRGB): "" +*de.HPRGBEmulation HPRGBEmulationNone/Keine: "" +*de.Translation HPEdgeControl/Randsteuerung: "" +*de.HPEdgeControl HPEdgeControlOff/Aus: "" +*de.HPEdgeControl Light/Hell: "" +*de.HPEdgeControl Normal/Normal: "" +*de.HPEdgeControl Max/Maximal: "" +*de.Translation HPGeneralHalftone/Halbton: "" +*de.HPGeneralHalftone Smooth/Geglättet: "" +*de.HPGeneralHalftone Detail/Detailliert: "" +*de.Translation HPTextNeutralGrays/Text - neutrales Grau: "" +*de.HPTextNeutralGrays Black/Nur Schwarz: "" +*de.HPTextNeutralGrays ProcessBlack/4-Farbig: "" +*de.Translation HPGraphicsNeutralGrays/Grafik - neutrales Grau: "" +*de.HPGraphicsNeutralGrays Black/Nur Schwarz: "" +*de.HPGraphicsNeutralGrays ProcessBlack/4-Farbig: "" +*de.Translation HPPhotoNeutralGrays/Foto - neutrales Grau: "" +*de.HPPhotoNeutralGrays Black/Nur Schwarz: "" +*de.HPPhotoNeutralGrays ProcessBlack/4-Farbig: "" +*de.Translation HPPaperQualityPanel/Paper/Quality: "" +*de.Translation HPPJLEconoMode/EconoMode: "" +*de.HPPJLEconoMode True/Ein: "" +*de.HPPJLEconoMode False/Aus: "" +*de.Translation MediaType/Druckmedientyp: "" +*de.MediaType Unspecified/Nicht bestimmt: "" +*de.MediaType Plain/Normalpapier: "" +*de.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*de.MediaType HPLaserJet90/HP LaserJet, 90g: "" +*de.MediaType HPColorLaserMatte105/HP Color Laser 105g, matt: "" +*de.MediaType HPPremiumChoiceMatte120/HP Premium Choice 120g, matt: "" +*de.MediaType HPBrochureMatte150/HP Broschürenpapier, matt 150g: "" +*de.MediaType HPCoverMatte200/HP Deckblattpapier 200g, matt: "" +*de.MediaType HPMattePhoto200/HP Fotopapier, matt 200g: "" +*de.MediaType HPPremiumPresentationGlossy120/HP Premium Präsentationspapier, hochglänzend 120g: "" +*de.MediaType HPBrochureGlossy150/HP Broschürenpapier, hochglänzend 150g: "" +*de.MediaType HPTrifoldBrochureGlossy150/HP Broschürenpapier, dreifach gefaltet, hochglänzend 150g: "" +*de.MediaType HPBrochureGlossy200/HP Broschürenpapier, hochglänzend 200g: "" +*de.MediaType Light6074/Leicht 60-74g: "" +*de.MediaType Intermediate8595/Mittelschwer 85-95g: "" +*de.MediaType MidWeight96110/Mittleres Gewicht 96-110g: "" +*de.MediaType Heavy111130/Schwer 111-130g: "" +*de.MediaType ExtraHeavy131175/Sehr schwer 131-175g: "" +*de.MediaType HeavyGlossy111130/Hochglanz, schwer 111-130g: "" +*de.MediaType ExtraHeavyGlossy131175/Hochglanz, extraschwer 131-175g: "" +*de.MediaType CardGlossy176220/Karte 176-220g, hochglänzend: "" +*de.MediaType ColorLaserTransparency/Color Laser-Transparentfolie: "" +*de.MediaType Labels/Etiketten: "" +*de.MediaType Letterhead/Briefkopfpapier: "" +*de.MediaType Envelope/Briefumschlag: "" +*de.MediaType HeavyEnvelope/Schwerer Briefumschlag: "" +*de.MediaType Preprinted/Vordruckpapier: "" +*de.MediaType Prepunched/Vorgelochtes Papier: "" +*de.MediaType Colored/Farbig: "" +*de.MediaType Bond/Briefpapier: "" +*de.MediaType Recycled/Recyclingpapier: "" +*de.MediaType Rough/Rauhpapier: "" +*de.MediaType HeavyRough/Schwer Rau: "" +*de.MediaType OpaqueFilm/Folie, opak: "" +*de.APPrinterPreset ChartsAndGraphs/Diagramme & Grafiken: "" +*de.cupsICCProfile RGB../sRGB Matching Profile: "" +*de.cupsICCProfile CMYK../CMYK Matching Profile: "" +*de.cupsICCProfile Gray../Gray Matching Profile: "" +*de.cupsMarkerName cyan/Zyan: "" +*de.cupsMarkerName magenta/Magenta: "" +*de.cupsMarkerName yellow/Gelb: "" +*de.cupsMarkerName black/Schwarz: "" +*es.Translation Manufacturer/HP: "" +*es.Translation ModelName/HP Color LaserJet Pro M252: "" +*es.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*es.Translation NickName/HP Color LaserJet Pro M252: "" +*es.Translation PageSize/Tamaño de papel: "" +*es.PageSize Letter/US Letter: "" +*es.PageSize Legal/US Legal: "" +*es.PageSize Executive/Ejecutivo: "" +*es.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*es.PageSize 4x6/4x6: "" +*es.PageSize 5x8/5x8: "" +*es.PageSize A4/A4: "" +*es.PageSize A5/A5: "" +*es.PageSize A6/A6: "" +*es.PageSize B5/JIS B5: "" +*es.PageSize B6/JIS B6: "" +*es.PageSize Env4x6/10x15 cm: "" +*es.PageSize Oficio/Oficio 216x340 mm: "" +*es.PageSize 195x270mm/16K 195x270 mm: "" +*es.PageSize 184x260mm/16K 184x260 mm: "" +*es.PageSize 7.75x10.75/16K 197x273 mm: "" +*es.PageSize Postcard/Postcard: "" +*es.PageSize DoublePostcardRotated/Postal doble borde largo: "" +*es.PageSize Env10/Sobre Comm10: "" +*es.PageSize EnvMonarch/Sobre Monarch: "" +*es.PageSize EnvISOB5/Sobre ISO B5: "" +*es.PageSize EnvC5/Sobre C5: "" +*es.PageSize EnvDL/Sobre DL: "" +*es.Translation Duplex/A doble cara: "" +*es.Duplex None/Desactivado: "" +*es.Duplex DuplexNoTumble/Encuadernación de borde largo: "" +*es.Duplex DuplexTumble/Encuadernación de borde corto: "" +*es.Translation InputSlot/Alimentador de papel: "" +*es.InputSlot Tray1/Bandeja 1: "" +*es.InputSlot Tray2/Bandeja 2: "" +*es.InputSlot ManualFeed/Alimentación manual: "" +*es.Translation InstallableOptions/Installable Options: "" +*es.Translation HPOption_Duplexer/Accesorio para impresión dúplex: "" +*es.HPOption_Duplexer True/Activado: "" +*es.HPOption_Duplexer False/Desactivado: "" +*es.Translation HPColorOptionsPanel/Color: "" +*es.Translation HPPJLColorAsGray/Imprimir colores en gris: "" +*es.HPPJLColorAsGray yes/Activado: "" +*es.HPPJLColorAsGray no/Desactivado: "" +*es.Translation HPRGBEmulation/Color RGB: "" +*es.HPRGBEmulation DefaultSRGB/Predeterminado (sRGB): "" +*es.HPRGBEmulation PhotoSRGB/Fotografía (sRGB): "" +*es.HPRGBEmulation Adobe/Fotografía (Adobe RGB 1998): "" +*es.HPRGBEmulation VividSRGB/Intenso (sRGB): "" +*es.HPRGBEmulation HPRGBEmulationNone/Ninguno: "" +*es.Translation HPEdgeControl/Control de bordes: "" +*es.HPEdgeControl HPEdgeControlOff/Desactivado: "" +*es.HPEdgeControl Light/Claro: "" +*es.HPEdgeControl Normal/Normal: "" +*es.HPEdgeControl Max/Máximo: "" +*es.Translation HPGeneralHalftone/Medios tonos: "" +*es.HPGeneralHalftone Smooth/Uniforme: "" +*es.HPGeneralHalftone Detail/Detalle: "" +*es.Translation HPTextNeutralGrays/Gris neutro de texto: "" +*es.HPTextNeutralGrays Black/Sólo negro: "" +*es.HPTextNeutralGrays ProcessBlack/4 colores: "" +*es.Translation HPGraphicsNeutralGrays/Gris neutro de gráfico: "" +*es.HPGraphicsNeutralGrays Black/Sólo negro: "" +*es.HPGraphicsNeutralGrays ProcessBlack/4 colores: "" +*es.Translation HPPhotoNeutralGrays/Gris neutro de fotografías: "" +*es.HPPhotoNeutralGrays Black/Sólo negro: "" +*es.HPPhotoNeutralGrays ProcessBlack/4 colores: "" +*es.Translation HPPaperQualityPanel/Paper/Quality: "" +*es.Translation HPPJLEconoMode/EconoMode: "" +*es.HPPJLEconoMode True/Activado: "" +*es.HPPJLEconoMode False/Desactivado: "" +*es.Translation MediaType/Tipo de sustrato: "" +*es.MediaType Unspecified/No especificado: "" +*es.MediaType Plain/Estándar: "" +*es.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*es.MediaType HPLaserJet90/HP LaserJet 90g: "" +*es.MediaType HPColorLaserMatte105/Impresión láser color mate HP 105g: "" +*es.MediaType HPPremiumChoiceMatte120/HP Premium Choice satinado 120g: "" +*es.MediaType HPBrochureMatte150/Prospecto HP mate 150g: "" +*es.MediaType HPCoverMatte200/Portada mate HP 200g: "" +*es.MediaType HPMattePhoto200/Fotográfico mate HP 200g: "" +*es.MediaType HPPremiumPresentationGlossy120/Presentaciones HP Premium satinadas 120g: "" +*es.MediaType HPBrochureGlossy150/Prospecto HP satinado 150g: "" +*es.MediaType HPTrifoldBrochureGlossy150/Prospecto estilo tríptico HP satinado 150g: "" +*es.MediaType HPBrochureGlossy200/Prospecto HP satinado 200g: "" +*es.MediaType Light6074/Ligero 60-74g: "" +*es.MediaType Intermediate8595/Intermedio 85-95g: "" +*es.MediaType MidWeight96110/Peso medio 96-110g: "" +*es.MediaType Heavy111130/Pesado 111-130g: "" +*es.MediaType ExtraHeavy131175/Pesado extra 131-175g: "" +*es.MediaType HeavyGlossy111130/Satinado pesado 111-130g: "" +*es.MediaType ExtraHeavyGlossy131175/Extra grueso brillante 131-175g: "" +*es.MediaType CardGlossy176220/Tarjeta satinado 176-220g: "" +*es.MediaType ColorLaserTransparency/Transparencia impresión láser: "" +*es.MediaType Labels/Etiquetas: "" +*es.MediaType Letterhead/Membrete: "" +*es.MediaType Envelope/Sobre: "" +*es.MediaType HeavyEnvelope/Sobre pesado: "" +*es.MediaType Preprinted/Preimpreso: "" +*es.MediaType Prepunched/Preperforado: "" +*es.MediaType Colored/Coloreado: "" +*es.MediaType Bond/Bond: "" +*es.MediaType Recycled/Reciclado: "" +*es.MediaType Rough/Rugoso: "" +*es.MediaType HeavyRough/Pesado rugoso: "" +*es.MediaType OpaqueFilm/Película opaca: "" +*es.APPrinterPreset ChartsAndGraphs/Cuadros y gráficos: "" +*es.cupsICCProfile RGB../sRGB Matching Profile: "" +*es.cupsICCProfile CMYK../CMYK Matching Profile: "" +*es.cupsICCProfile Gray../Gray Matching Profile: "" +*es.cupsMarkerName cyan/Cian: "" +*es.cupsMarkerName magenta/Magenta: "" +*es.cupsMarkerName yellow/Amarillo: "" +*es.cupsMarkerName black/Negro: "" +*fi.Translation Manufacturer/HP: "" +*fi.Translation ModelName/HP Color LaserJet Pro M252: "" +*fi.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*fi.Translation NickName/HP Color LaserJet Pro M252: "" +*fi.Translation PageSize/Median koko: "" +*fi.PageSize Letter/US Letter: "" +*fi.PageSize Legal/US Legal: "" +*fi.PageSize Executive/Executive: "" +*fi.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*fi.PageSize 4x6/4x6: "" +*fi.PageSize 5x8/5x8: "" +*fi.PageSize A4/A4: "" +*fi.PageSize A5/A5: "" +*fi.PageSize A6/A6: "" +*fi.PageSize B5/JIS B5: "" +*fi.PageSize B6/JIS B6: "" +*fi.PageSize Env4x6/10x15 cm: "" +*fi.PageSize Oficio/Oficio 216x340 mm: "" +*fi.PageSize 195x270mm/16K 195x270 mm: "" +*fi.PageSize 184x260mm/16K 184x260 mm: "" +*fi.PageSize 7.75x10.75/16K 197x273 mm: "" +*fi.PageSize Postcard/Postcard: "" +*fi.PageSize DoublePostcardRotated/Kaksoispostikortti (pitkä reuna): "" +*fi.PageSize Env10/Kirjekuori Comm10: "" +*fi.PageSize EnvMonarch/Kirjekuori Monarch: "" +*fi.PageSize EnvISOB5/Kirjekuori ISO B5: "" +*fi.PageSize EnvC5/Kirjekuori C5: "" +*fi.PageSize EnvDL/Kirjekuori DL: "" +*fi.Translation Duplex/Kaksipuolinen: "" +*fi.Duplex None/Ei käytössä: "" +*fi.Duplex DuplexNoTumble/Sidonta-pitkäreuna: "" +*fi.Duplex DuplexTumble/Sidonta-lyhytreuna: "" +*fi.Translation InputSlot/Paperinsyöttö: "" +*fi.InputSlot Tray1/Lokero 1: "" +*fi.InputSlot Tray2/Lokero 2: "" +*fi.InputSlot ManualFeed/Käsinsyöttö: "" +*fi.Translation InstallableOptions/Installable Options: "" +*fi.Translation HPOption_Duplexer/Kaksipuolisen tulostuksen lisälaite: "" +*fi.HPOption_Duplexer True/Käytössä: "" +*fi.HPOption_Duplexer False/Ei käytössä: "" +*fi.Translation HPColorOptionsPanel/Väri: "" +*fi.Translation HPPJLColorAsGray/Tulosta värit harmaina: "" +*fi.HPPJLColorAsGray yes/Käytössä: "" +*fi.HPPJLColorAsGray no/Ei käytössä: "" +*fi.Translation HPRGBEmulation/RGB-väri: "" +*fi.HPRGBEmulation DefaultSRGB/Oletus (sRGB): "" +*fi.HPRGBEmulation PhotoSRGB/Valokuva (sRGB): "" +*fi.HPRGBEmulation Adobe/Valokuva (Adobe RGB 1998): "" +*fi.HPRGBEmulation VividSRGB/Kirkas (sRGB): "" +*fi.HPRGBEmulation HPRGBEmulationNone/Ei mitään: "" +*fi.Translation HPEdgeControl/Reunojen hallinta: "" +*fi.HPEdgeControl HPEdgeControlOff/Ei käytössä: "" +*fi.HPEdgeControl Light/Vaalea: "" +*fi.HPEdgeControl Normal/Normaali: "" +*fi.HPEdgeControl Max/Maksimi: "" +*fi.Translation HPGeneralHalftone/Puolisävy: "" +*fi.HPGeneralHalftone Smooth/Tasainen: "" +*fi.HPGeneralHalftone Detail/Yksityiskohtainen: "" +*fi.Translation HPTextNeutralGrays/Teksti, neutraali harmaa: "" +*fi.HPTextNeutralGrays Black/Vain musta: "" +*fi.HPTextNeutralGrays ProcessBlack/Neliväri: "" +*fi.Translation HPGraphicsNeutralGrays/Kuva, neutraali harmaa: "" +*fi.HPGraphicsNeutralGrays Black/Vain musta: "" +*fi.HPGraphicsNeutralGrays ProcessBlack/Neliväri: "" +*fi.Translation HPPhotoNeutralGrays/Val., neutraali harmaa: "" +*fi.HPPhotoNeutralGrays Black/Vain musta: "" +*fi.HPPhotoNeutralGrays ProcessBlack/Neliväri: "" +*fi.Translation HPPaperQualityPanel/Paper/Quality: "" +*fi.Translation HPPJLEconoMode/EconoMode: "" +*fi.HPPJLEconoMode True/Käytössä: "" +*fi.HPPJLEconoMode False/Ei käytössä: "" +*fi.Translation MediaType/Tulostusmateriaali: "" +*fi.MediaType Unspecified/Määrittämätön: "" +*fi.MediaType Plain/Tavallinen: "" +*fi.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*fi.MediaType HPLaserJet90/HP LaserJet, 90g: "" +*fi.MediaType HPColorLaserMatte105/HP<3A>n matta värilaser 105g: "" +*fi.MediaType HPPremiumChoiceMatte120/HP Premium Choice, matta 120g: "" +*fi.MediaType HPBrochureMatte150/HP<3A>n matta esite 150g: "" +*fi.MediaType HPCoverMatte200/HP<3A>n matta kansi 200g: "" +*fi.MediaType HPMattePhoto200/HP<3A>n matta valokuva 200g: "" +*fi.MediaType HPPremiumPresentationGlossy120/HP Premium -esitys, kiiltävä 120g: "" +*fi.MediaType HPBrochureGlossy150/HP<3A>n kiiltävä esite 150g: "" +*fi.MediaType HPTrifoldBrochureGlossy150/HP<3A>n kolminkertainen esite 150g: "" +*fi.MediaType HPBrochureGlossy200/HP<3A>n kiiltävä esite 200g: "" +*fi.MediaType Light6074/Kevyt 60-74g: "" +*fi.MediaType Intermediate8595/Keskikoko 85-95g: "" +*fi.MediaType MidWeight96110/Keskipaksu 96-110g: "" +*fi.MediaType Heavy111130/Paksu 111-130g: "" +*fi.MediaType ExtraHeavy131175/Erittäin paksu 131-175g: "" +*fi.MediaType HeavyGlossy111130/Raskas kiiltävä 111-130g: "" +*fi.MediaType ExtraHeavyGlossy131175/Er. raskas kiiltävä 131-175g: "" +*fi.MediaType CardGlossy176220/Kiiltävä kortti 176-220g: "" +*fi.MediaType ColorLaserTransparency/Värilaserkalvo: "" +*fi.MediaType Labels/Tarrat: "" +*fi.MediaType Letterhead/Kirjelomake: "" +*fi.MediaType Envelope/Kirjekuori: "" +*fi.MediaType HeavyEnvelope/Paksu kirjekuori: "" +*fi.MediaType Preprinted/Esipainettu: "" +*fi.MediaType Prepunched/Rei’itetty: "" +*fi.MediaType Colored/Värillinen: "" +*fi.MediaType Bond/Kova asiakirjapaperi: "" +*fi.MediaType Recycled/Uusiopaperi: "" +*fi.MediaType Rough/Karkea: "" +*fi.MediaType HeavyRough/Paksu karkea: "" +*fi.MediaType OpaqueFilm/Läpikuultamaton kalvo: "" +*fi.APPrinterPreset ChartsAndGraphs/Kaaviot ja grafiikka: "" +*fi.cupsICCProfile RGB../sRGB Matching Profile: "" +*fi.cupsICCProfile CMYK../CMYK Matching Profile: "" +*fi.cupsICCProfile Gray../Gray Matching Profile: "" +*fi.cupsMarkerName cyan/Syaani: "" +*fi.cupsMarkerName magenta/Magenta: "" +*fi.cupsMarkerName yellow/Keltainen: "" +*fi.cupsMarkerName black/Musta: "" +*fr.Translation Manufacturer/HP: "" +*fr.Translation ModelName/HP Color LaserJet Pro M252: "" +*fr.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*fr.Translation NickName/HP Color LaserJet Pro M252: "" +*fr.Translation PageSize/Taille du papier: "" +*fr.PageSize Letter/US Letter: "" +*fr.PageSize Legal/US Legal: "" +*fr.PageSize Executive/Exécutif: "" +*fr.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*fr.PageSize 4x6/4x6: "" +*fr.PageSize 5x8/5x8: "" +*fr.PageSize A4/A4: "" +*fr.PageSize A5/A5: "" +*fr.PageSize A6/A6: "" +*fr.PageSize B5/JIS B5: "" +*fr.PageSize B6/JIS B6: "" +*fr.PageSize Env4x6/10x15 cm: "" +*fr.PageSize Oficio/Oficio 216x340 mm: "" +*fr.PageSize 195x270mm/16K 195x270 mm: "" +*fr.PageSize 184x260mm/16K 184x260 mm: "" +*fr.PageSize 7.75x10.75/16K 197x273 mm: "" +*fr.PageSize Postcard/Postcard: "" +*fr.PageSize DoublePostcardRotated/Carte postale double - Long bord: "" +*fr.PageSize Env10/Enveloppe Comm10: "" +*fr.PageSize EnvMonarch/Enveloppe Monarch: "" +*fr.PageSize EnvISOB5/Enveloppe ISO B5: "" +*fr.PageSize EnvC5/Enveloppe C5: "" +*fr.PageSize EnvDL/Enveloppe DL: "" +*fr.Translation Duplex/Recto verso: "" +*fr.Duplex None/Désactivé: "" +*fr.Duplex DuplexNoTumble/Reliure côté long: "" +*fr.Duplex DuplexTumble/Reliure côté court: "" +*fr.Translation InputSlot/Alimentation: "" +*fr.InputSlot Tray1/Bac 1: "" +*fr.InputSlot Tray2/Bac 2: "" +*fr.InputSlot ManualFeed/Alimentation manuelle: "" +*fr.Translation InstallableOptions/Installable Options: "" +*fr.Translation HPOption_Duplexer/Unité recto verso: "" +*fr.HPOption_Duplexer True/Activé: "" +*fr.HPOption_Duplexer False/Désactivé: "" +*fr.Translation HPColorOptionsPanel/Couleur: "" +*fr.Translation HPPJLColorAsGray/Imprimer couleur en gris: "" +*fr.HPPJLColorAsGray yes/Activé: "" +*fr.HPPJLColorAsGray no/Désactivé: "" +*fr.Translation HPRGBEmulation/Couleur RGB: "" +*fr.HPRGBEmulation DefaultSRGB/Par défaut (sRGB): "" +*fr.HPRGBEmulation PhotoSRGB/Photo (sRGB): "" +*fr.HPRGBEmulation Adobe/Photo (Adobe RGB 1998): "" +*fr.HPRGBEmulation VividSRGB/Vive (sRGB): "" +*fr.HPRGBEmulation HPRGBEmulationNone/Aucun: "" +*fr.Translation HPEdgeControl/Contrôle du bord: "" +*fr.HPEdgeControl HPEdgeControlOff/Désactivé: "" +*fr.HPEdgeControl Light/Clair: "" +*fr.HPEdgeControl Normal/Normal: "" +*fr.HPEdgeControl Max/Maximum: "" +*fr.Translation HPGeneralHalftone/Demi-teinte: "" +*fr.HPGeneralHalftone Smooth/Lisse: "" +*fr.HPGeneralHalftone Detail/Détaillées: "" +*fr.Translation HPTextNeutralGrays/Texte gris neutre: "" +*fr.HPTextNeutralGrays Black/Noir uniquement: "" +*fr.HPTextNeutralGrays ProcessBlack/4 couleurs: "" +*fr.Translation HPGraphicsNeutralGrays/Graphiques gris neutre: "" +*fr.HPGraphicsNeutralGrays Black/Noir uniquement: "" +*fr.HPGraphicsNeutralGrays ProcessBlack/4 couleurs: "" +*fr.Translation HPPhotoNeutralGrays/Photo gris neutre: "" +*fr.HPPhotoNeutralGrays Black/Noir uniquement: "" +*fr.HPPhotoNeutralGrays ProcessBlack/4 couleurs: "" +*fr.Translation HPPaperQualityPanel/Paper/Quality: "" +*fr.Translation HPPJLEconoMode/EconoMode: "" +*fr.HPPJLEconoMode True/Activé: "" +*fr.HPPJLEconoMode False/Désactivé: "" +*fr.Translation MediaType/Type de support: "" +*fr.MediaType Unspecified/Non spécifié: "" +*fr.MediaType Plain/Ordinaire: "" +*fr.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*fr.MediaType HPLaserJet90/HP LaserJet 90g: "" +*fr.MediaType HPColorLaserMatte105/Papier couleur laser mat 105g HP: "" +*fr.MediaType HPPremiumChoiceMatte120/Papier 120g mat HP Premium Choice: "" +*fr.MediaType HPBrochureMatte150/HP Brochure Mat 150g: "" +*fr.MediaType HPCoverMatte200/Couverture mate 200g HP: "" +*fr.MediaType HPMattePhoto200/Papier photo mat HP 200g: "" +*fr.MediaType HPPremiumPresentationGlossy120/Papier brillant pour présentation HP Premium 120g: "" +*fr.MediaType HPBrochureGlossy150/HP Brochure Brillant 150g: "" +*fr.MediaType HPTrifoldBrochureGlossy150/Papier pour brochure plié en trois HP, brillant, 150g: "" +*fr.MediaType HPBrochureGlossy200/HP Brochure Brillant 200g: "" +*fr.MediaType Light6074/Fin 60-74g: "" +*fr.MediaType Intermediate8595/Intermédiaire 85-95g: "" +*fr.MediaType MidWeight96110/Grammage moyen 96-110g: "" +*fr.MediaType Heavy111130/Epais 111-130g: "" +*fr.MediaType ExtraHeavy131175/Très épais 131-175g: "" +*fr.MediaType HeavyGlossy111130/Glacé et épais 111-130g: "" +*fr.MediaType ExtraHeavyGlossy131175/Papier glacé extra fort 131-175g: "" +*fr.MediaType CardGlossy176220/Carte brillante 176-220g: "" +*fr.MediaType ColorLaserTransparency/Transpar. laser couleur: "" +*fr.MediaType Labels/Étiquettes: "" +*fr.MediaType Letterhead/Papier à en-tête: "" +*fr.MediaType Envelope/Enveloppe: "" +*fr.MediaType HeavyEnvelope/Enveloppe à fort grammage: "" +*fr.MediaType Preprinted/Préimprimé: "" +*fr.MediaType Prepunched/Perforé: "" +*fr.MediaType Colored/Coloré: "" +*fr.MediaType Bond/Document: "" +*fr.MediaType Recycled/Recyclé: "" +*fr.MediaType Rough/Rugueux: "" +*fr.MediaType HeavyRough/Epais rugueux: "" +*fr.MediaType OpaqueFilm/Film opaque: "" +*fr.APPrinterPreset ChartsAndGraphs/Diagrammes et graphiques: "" +*fr.cupsICCProfile RGB../sRGB Matching Profile: "" +*fr.cupsICCProfile CMYK../CMYK Matching Profile: "" +*fr.cupsICCProfile Gray../Gray Matching Profile: "" +*fr.cupsMarkerName cyan/Cyan: "" +*fr.cupsMarkerName magenta/Magenta: "" +*fr.cupsMarkerName yellow/Jaune: "" +*fr.cupsMarkerName black/Noir: "" +*it.Translation Manufacturer/HP: "" +*it.Translation ModelName/HP Color LaserJet Pro M252: "" +*it.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*it.Translation NickName/HP Color LaserJet Pro M252: "" +*it.Translation PageSize/Dimensione media: "" +*it.PageSize Letter/US Letter: "" +*it.PageSize Legal/US Legal: "" +*it.PageSize Executive/Executive: "" +*it.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*it.PageSize 4x6/4x6: "" +*it.PageSize 5x8/5x8: "" +*it.PageSize A4/A4: "" +*it.PageSize A5/A5: "" +*it.PageSize A6/A6: "" +*it.PageSize B5/JIS B5: "" +*it.PageSize B6/JIS B6: "" +*it.PageSize Env4x6/10x15 cm: "" +*it.PageSize Oficio/Oficio 216x340 mm: "" +*it.PageSize 195x270mm/16K 195x270 mm: "" +*it.PageSize 184x260mm/16K 184x260 mm: "" +*it.PageSize 7.75x10.75/16K 197x273 mm: "" +*it.PageSize Postcard/Postcard: "" +*it.PageSize DoublePostcardRotated/Cartolina doppia Bordo lungo: "" +*it.PageSize Env10/Busta Comm10: "" +*it.PageSize EnvMonarch/Busta Monarch: "" +*it.PageSize EnvISOB5/Busta ISO B5: "" +*it.PageSize EnvC5/Busta C5: "" +*it.PageSize EnvDL/Busta DL: "" +*it.Translation Duplex/Fronte-retro: "" +*it.Duplex None/Disattivato: "" +*it.Duplex DuplexNoTumble/Rilegatura con taglio largo: "" +*it.Duplex DuplexTumble/Rilegatura con taglio stretto: "" +*it.Translation InputSlot/Alimentazione carta: "" +*it.InputSlot Tray1/Vassoio 1: "" +*it.InputSlot Tray2/Vassoio 2: "" +*it.InputSlot ManualFeed/Alimentazione manuale: "" +*it.Translation InstallableOptions/Installable Options: "" +*it.Translation HPOption_Duplexer/Accessorio per stampa duplex: "" +*it.HPOption_Duplexer True/Attivato: "" +*it.HPOption_Duplexer False/Disattivato: "" +*it.Translation HPColorOptionsPanel/Colore: "" +*it.Translation HPPJLColorAsGray/Stampa colore in grigio: "" +*it.HPPJLColorAsGray yes/Attivato: "" +*it.HPPJLColorAsGray no/Disattivato: "" +*it.Translation HPRGBEmulation/Colore RGB: "" +*it.HPRGBEmulation DefaultSRGB/Predefinito (sRGB): "" +*it.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*it.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*it.HPRGBEmulation VividSRGB/Brillante (sRGB): "" +*it.HPRGBEmulation HPRGBEmulationNone/Nessuna: "" +*it.Translation HPEdgeControl/Controllo margine: "" +*it.HPEdgeControl HPEdgeControlOff/Disattivato: "" +*it.HPEdgeControl Light/Chiaro: "" +*it.HPEdgeControl Normal/Normale: "" +*it.HPEdgeControl Max/Massimo: "" +*it.Translation HPGeneralHalftone/Mezzitoni: "" +*it.HPGeneralHalftone Smooth/Uniformi: "" +*it.HPGeneralHalftone Detail/Dettagli: "" +*it.Translation HPTextNeutralGrays/Grigi neutri testo: "" +*it.HPTextNeutralGrays Black/Solo nero: "" +*it.HPTextNeutralGrays ProcessBlack/Quadricromia: "" +*it.Translation HPGraphicsNeutralGrays/Grigi neutri grafici: "" +*it.HPGraphicsNeutralGrays Black/Solo nero: "" +*it.HPGraphicsNeutralGrays ProcessBlack/Quadricromia: "" +*it.Translation HPPhotoNeutralGrays/Grigi neutri fotografie: "" +*it.HPPhotoNeutralGrays Black/Solo nero: "" +*it.HPPhotoNeutralGrays ProcessBlack/Quadricromia: "" +*it.Translation HPPaperQualityPanel/Paper/Quality: "" +*it.Translation HPPJLEconoMode/EconoMode: "" +*it.HPPJLEconoMode True/Attivato: "" +*it.HPPJLEconoMode False/Disattivato: "" +*it.Translation MediaType/Tipo di supporto: "" +*it.MediaType Unspecified/Non specificato: "" +*it.MediaType Plain/Normale: "" +*it.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*it.MediaType HPLaserJet90/HP LaserJet 90g: "" +*it.MediaType HPColorLaserMatte105/Opaca a colori per stampanti laser HP 105g: "" +*it.MediaType HPPremiumChoiceMatte120/Opaca HP alta qualità 120g: "" +*it.MediaType HPBrochureMatte150/Brochure opaca 150g HP: "" +*it.MediaType HPCoverMatte200/Copertina opaca HP 200g: "" +*it.MediaType HPMattePhoto200/Fotografica opaca HP 200g: "" +*it.MediaType HPPremiumPresentationGlossy120/Presentazione lucida ad alta qualità 120g HP: "" +*it.MediaType HPBrochureGlossy150/Brochure lucida 150g HP: "" +*it.MediaType HPTrifoldBrochureGlossy150/Brochure lucida piegata in tre 150g HP: "" +*it.MediaType HPBrochureGlossy200/Brochure lucida 200g HP: "" +*it.MediaType Light6074/Leggera 60-74g: "" +*it.MediaType Intermediate8595/Intermedia 85-95g: "" +*it.MediaType MidWeight96110/Medio spessore 96-110g: "" +*it.MediaType Heavy111130/Pesante 111-130g: "" +*it.MediaType ExtraHeavy131175/Extra Pesante 131-175g: "" +*it.MediaType HeavyGlossy111130/Carta patinata pesante 111-130g: "" +*it.MediaType ExtraHeavyGlossy131175/Lucida pesante extra 131-175g: "" +*it.MediaType CardGlossy176220/Scheda lucida 176-220g: "" +*it.MediaType ColorLaserTransparency/Lucido per stampanti laser a colori: "" +*it.MediaType Labels/Etichette: "" +*it.MediaType Letterhead/Carta intestata: "" +*it.MediaType Envelope/Busta: "" +*it.MediaType HeavyEnvelope/Busta pesante: "" +*it.MediaType Preprinted/Prestampata: "" +*it.MediaType Prepunched/Perforata: "" +*it.MediaType Colored/Colorata: "" +*it.MediaType Bond/Carta fine: "" +*it.MediaType Recycled/Riciclata: "" +*it.MediaType Rough/Ruvida: "" +*it.MediaType HeavyRough/Ruvida pesante: "" +*it.MediaType OpaqueFilm/Pellicola opaca: "" +*it.APPrinterPreset ChartsAndGraphs/Diagrammi e grafici: "" +*it.cupsICCProfile RGB../sRGB Matching Profile: "" +*it.cupsICCProfile CMYK../CMYK Matching Profile: "" +*it.cupsICCProfile Gray../Gray Matching Profile: "" +*it.cupsMarkerName cyan/Ciano: "" +*it.cupsMarkerName magenta/Magenta: "" +*it.cupsMarkerName yellow/Giallo: "" +*it.cupsMarkerName black/Nero: "" +*ja.Translation Manufacturer/HP: "" +*ja.Translation ModelName/HP Color LaserJet Pro M252: "" +*ja.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*ja.Translation NickName/HP Color LaserJet Pro M252: "" +*ja.Translation PageSize/メディアサイズ: "" +*ja.PageSize Letter/US Letter: "" +*ja.PageSize Legal/US Legal: "" +*ja.PageSize Executive/エグゼクティブ: "" +*ja.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*ja.PageSize 4x6/4x6: "" +*ja.PageSize 5x8/5x8: "" +*ja.PageSize A4/A4: "" +*ja.PageSize A5/A5: "" +*ja.PageSize A6/A6: "" +*ja.PageSize B5/JIS B5: "" +*ja.PageSize B6/JIS B6: "" +*ja.PageSize Env4x6/10x15 cm: "" +*ja.PageSize Oficio/Oficio 216x340 mm: "" +*ja.PageSize 195x270mm/16K 195x270 mm: "" +*ja.PageSize 184x260mm/16K 184x260 mm: "" +*ja.PageSize 7.75x10.75/16K 197x273 mm: "" +*ja.PageSize Postcard/Postcard: "" +*ja.PageSize DoublePostcardRotated/往復はがき 横: "" +*ja.PageSize Env10/封筒 Comm10: "" +*ja.PageSize EnvMonarch/封筒 Monarch: "" +*ja.PageSize EnvISOB5/封筒 ISO B5: "" +*ja.PageSize EnvC5/封筒 C5: "" +*ja.PageSize EnvDL/封筒 DL: "" +*ja.Translation Duplex/両面: "" +*ja.Duplex None/オフ: "" +*ja.Duplex DuplexNoTumble/長辺とじ: "" +*ja.Duplex DuplexTumble/短辺とじ: "" +*ja.Translation InputSlot/給紙: "" +*ja.InputSlot Tray1/トレイ 1: "" +*ja.InputSlot Tray2/トレイ 2: "" +*ja.InputSlot ManualFeed/手差し: "" +*ja.Translation InstallableOptions/Installable Options: "" +*ja.Translation HPOption_Duplexer/両面印刷アクセサリ: "" +*ja.HPOption_Duplexer True/オン: "" +*ja.HPOption_Duplexer False/オフ: "" +*ja.Translation HPColorOptionsPanel/カラー: "" +*ja.Translation HPPJLColorAsGray/グレー印刷: "" +*ja.HPPJLColorAsGray yes/オン: "" +*ja.HPPJLColorAsGray no/オフ: "" +*ja.Translation HPRGBEmulation/RGB カラー: "" +*ja.HPRGBEmulation DefaultSRGB/デフォルト (sRGB): "" +*ja.HPRGBEmulation PhotoSRGB/フォト (sRGB): "" +*ja.HPRGBEmulation Adobe/フォト (Adobe RGB 1998): "" +*ja.HPRGBEmulation VividSRGB/鮮明 (sRGB): "" +*ja.HPRGBEmulation HPRGBEmulationNone/なし: "" +*ja.Translation HPEdgeControl/輪郭コントロール: "" +*ja.HPEdgeControl HPEdgeControlOff/オフ: "" +*ja.HPEdgeControl Light/薄い: "" +*ja.HPEdgeControl Normal/標準: "" +*ja.HPEdgeControl Max/最大: "" +*ja.Translation HPGeneralHalftone/ハーフトーン: "" +*ja.HPGeneralHalftone Smooth/テキスト: "" +*ja.HPGeneralHalftone Detail/詳細: "" +*ja.Translation HPTextNeutralGrays/テキスト グレー中間色: "" +*ja.HPTextNeutralGrays Black/黒のみ: "" +*ja.HPTextNeutralGrays ProcessBlack/4 色: "" +*ja.Translation HPGraphicsNeutralGrays/グラフィック グレー中間色: "" +*ja.HPGraphicsNeutralGrays Black/黒のみ: "" +*ja.HPGraphicsNeutralGrays ProcessBlack/4 色: "" +*ja.Translation HPPhotoNeutralGrays/写真グレー中間色: "" +*ja.HPPhotoNeutralGrays Black/黒のみ: "" +*ja.HPPhotoNeutralGrays ProcessBlack/4 色: "" +*ja.Translation HPPaperQualityPanel/Paper/Quality: "" +*ja.Translation HPPJLEconoMode/EconoMode: "" +*ja.HPPJLEconoMode True/オン: "" +*ja.HPPJLEconoMode False/オフ: "" +*ja.Translation MediaType/用紙の種類: "" +*ja.MediaType Unspecified/指定なし: "" +*ja.MediaType Plain/普通用紙: "" +*ja.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*ja.MediaType HPLaserJet90/HP レーザージェット用紙 90g: "" +*ja.MediaType HPColorLaserMatte105/HP カラーレーザー用紙 (つや消し) 105g: "" +*ja.MediaType HPPremiumChoiceMatte120/HP プレミアムチョイス (つや消し) 120g: "" +*ja.MediaType HPBrochureMatte150/HP ブローシャ用紙 (つや消し) 150g: "" +*ja.MediaType HPCoverMatte200/HP つや消し表紙用紙 200g: "" +*ja.MediaType HPMattePhoto200/HP つや消しフォト用紙 200g: "" +*ja.MediaType HPPremiumPresentationGlossy120/HP プレミアムプレゼンテーション用紙 (つや消し) 120g: "" +*ja.MediaType HPBrochureGlossy150/HP ブローシャ用紙 (光沢) 150g: "" +*ja.MediaType HPTrifoldBrochureGlossy150/HP 3 つ折りブローシャ用紙 (光沢) 150g: "" +*ja.MediaType HPBrochureGlossy200/HP ブローシャ用紙 (光沢) 200g: "" +*ja.MediaType Light6074/軽い用紙 60-74g: "" +*ja.MediaType Intermediate8595/中間 85-95g: "" +*ja.MediaType MidWeight96110/中厚手用紙 96-110g: "" +*ja.MediaType Heavy111130/重い用紙 111-130g: "" +*ja.MediaType ExtraHeavy131175/重い用紙 131-175g: "" +*ja.MediaType HeavyGlossy111130/厚手光沢紙 111-130g: "" +*ja.MediaType ExtraHeavyGlossy131175/超厚手光沢紙 131-175g: "" +*ja.MediaType CardGlossy176220/カード光沢紙 176-220g: "" +*ja.MediaType ColorLaserTransparency/カラーレーザー OHP フィルム: "" +*ja.MediaType Labels/ラベル: "" +*ja.MediaType Letterhead/レターヘッド付き: "" +*ja.MediaType Envelope/封筒: "" +*ja.MediaType HeavyEnvelope/厚手封筒: "" +*ja.MediaType Preprinted/印刷フォーム: "" +*ja.MediaType Prepunched/穴あき用紙: "" +*ja.MediaType Colored/カラー: "" +*ja.MediaType Bond/ボンド紙: "" +*ja.MediaType Recycled/再生紙: "" +*ja.MediaType Rough/ざら紙: "" +*ja.MediaType HeavyRough/厚手粗め用紙: "" +*ja.MediaType OpaqueFilm/不透明なフィルム: "" +*ja.APPrinterPreset ChartsAndGraphs/グラフと図: "" +*ja.cupsICCProfile RGB../sRGB Matching Profile: "" +*ja.cupsICCProfile CMYK../CMYK Matching Profile: "" +*ja.cupsICCProfile Gray../Gray Matching Profile: "" +*ja.cupsMarkerName cyan/シアン: "" +*ja.cupsMarkerName magenta/マゼンタ: "" +*ja.cupsMarkerName yellow/イエロー: "" +*ja.cupsMarkerName black/黒: "" +*ko.Translation Manufacturer/HP: "" +*ko.Translation ModelName/HP Color LaserJet Pro M252: "" +*ko.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*ko.Translation NickName/HP Color LaserJet Pro M252: "" +*ko.Translation PageSize/미디어 크기: "" +*ko.PageSize Letter/US Letter: "" +*ko.PageSize Legal/US Legal: "" +*ko.PageSize Executive/Executive: "" +*ko.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*ko.PageSize 4x6/4x6: "" +*ko.PageSize 5x8/5x8: "" +*ko.PageSize A4/A4: "" +*ko.PageSize A5/A5: "" +*ko.PageSize A6/A6: "" +*ko.PageSize B5/JIS B5: "" +*ko.PageSize B6/JIS B6: "" +*ko.PageSize Env4x6/10x15 cm: "" +*ko.PageSize Oficio/Oficio 216x340 mm: "" +*ko.PageSize 195x270mm/16K 195x270 mm: "" +*ko.PageSize 184x260mm/16K 184x260 mm: "" +*ko.PageSize 7.75x10.75/16K 197x273 mm: "" +*ko.PageSize Postcard/Postcard: "" +*ko.PageSize DoublePostcardRotated/엽서 Long Edge(양면): "" +*ko.PageSize Env10/Comm10 봉투: "" +*ko.PageSize EnvMonarch/Monarch 봉투: "" +*ko.PageSize EnvISOB5/ISO B5 봉투: "" +*ko.PageSize EnvC5/C5 봉투: "" +*ko.PageSize EnvDL/DL 봉투: "" +*ko.Translation Duplex/양면: "" +*ko.Duplex None/꺼짐: "" +*ko.Duplex DuplexNoTumble/긴-가장자리 제본선: "" +*ko.Duplex DuplexTumble/짧은-가장자리 제본선: "" +*ko.Translation InputSlot/용지 공급: "" +*ko.InputSlot Tray1/용지함 1: "" +*ko.InputSlot Tray2/용지함 2: "" +*ko.InputSlot ManualFeed/수동 급지: "" +*ko.Translation InstallableOptions/Installable Options: "" +*ko.Translation HPOption_Duplexer/양면 인쇄 부속품: "" +*ko.HPOption_Duplexer True/켜짐: "" +*ko.HPOption_Duplexer False/꺼짐: "" +*ko.Translation HPColorOptionsPanel/색상: "" +*ko.Translation HPPJLColorAsGray/컬러를 흑백음영으로 인쇄: "" +*ko.HPPJLColorAsGray yes/켜짐: "" +*ko.HPPJLColorAsGray no/꺼짐: "" +*ko.Translation HPRGBEmulation/RGB 색상: "" +*ko.HPRGBEmulation DefaultSRGB/기본값(sRGB): "" +*ko.HPRGBEmulation PhotoSRGB/사진(sRGB): "" +*ko.HPRGBEmulation Adobe/사진(Adobe RGB 1998): "" +*ko.HPRGBEmulation VividSRGB/선명하게 (sRGB): "" +*ko.HPRGBEmulation HPRGBEmulationNone/없음: "" +*ko.Translation HPEdgeControl/가장자리 제어: "" +*ko.HPEdgeControl HPEdgeControlOff/꺼짐: "" +*ko.HPEdgeControl Light/밝게: "" +*ko.HPEdgeControl Normal/보통: "" +*ko.HPEdgeControl Max/최대: "" +*ko.Translation HPGeneralHalftone/중간 색조: "" +*ko.HPGeneralHalftone Smooth/문장: "" +*ko.HPGeneralHalftone Detail/자세히: "" +*ko.Translation HPTextNeutralGrays/문장 순 회색: "" +*ko.HPTextNeutralGrays Black/흑색 전용: "" +*ko.HPTextNeutralGrays ProcessBlack/4색: "" +*ko.Translation HPGraphicsNeutralGrays/그래픽 순 회색: "" +*ko.HPGraphicsNeutralGrays Black/흑색 전용: "" +*ko.HPGraphicsNeutralGrays ProcessBlack/4색: "" +*ko.Translation HPPhotoNeutralGrays/사진 순말: "" +*ko.HPPhotoNeutralGrays Black/흑색 전용: "" +*ko.HPPhotoNeutralGrays ProcessBlack/4색: "" +*ko.Translation HPPaperQualityPanel/Paper/Quality: "" +*ko.Translation HPPJLEconoMode/EconoMode: "" +*ko.HPPJLEconoMode True/켜짐: "" +*ko.HPPJLEconoMode False/꺼짐: "" +*ko.Translation MediaType/용지 종류: "" +*ko.MediaType Unspecified/지정되지 않음: "" +*ko.MediaType Plain/일반용지: "" +*ko.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*ko.MediaType HPLaserJet90/HP LaserJet 90g: "" +*ko.MediaType HPColorLaserMatte105/HP Color Laser 무광 105g: "" +*ko.MediaType HPPremiumChoiceMatte120/HP 프리미엄 초이스 무광 120g: "" +*ko.MediaType HPBrochureMatte150/HP 무광택 브로셔 150g: "" +*ko.MediaType HPCoverMatte200/HP 표지 무광 200g: "" +*ko.MediaType HPMattePhoto200/HP 무광택 사진 200g: "" +*ko.MediaType HPPremiumPresentationGlossy120/HP 프리미엄 프리젠테이션 광택 120g: "" +*ko.MediaType HPBrochureGlossy150/HP 광택 브로셔 150g: "" +*ko.MediaType HPTrifoldBrochureGlossy150/HP 3중 접기 광택 브로셔 150g: "" +*ko.MediaType HPBrochureGlossy200/HP 광택 브로셔 200g: "" +*ko.MediaType Light6074/경량지 60-74g: "" +*ko.MediaType Intermediate8595/보통지 85-95g: "" +*ko.MediaType MidWeight96110/보통 중량지 96-110g: "" +*ko.MediaType Heavy111130/중량지 111-130g: "" +*ko.MediaType ExtraHeavy131175/초중량지 131-175g: "" +*ko.MediaType HeavyGlossy111130/광택 중량지 111-130g: "" +*ko.MediaType ExtraHeavyGlossy131175/고광택 용지 131-175g: "" +*ko.MediaType CardGlossy176220/인사장 유광 176-220g: "" +*ko.MediaType ColorLaserTransparency/Color Laser 투명 필름: "" +*ko.MediaType Labels/레이블: "" +*ko.MediaType Letterhead/레터헤드: "" +*ko.MediaType Envelope/봉투: "" +*ko.MediaType HeavyEnvelope/중량 봉투: "" +*ko.MediaType Preprinted/미리 인쇄: "" +*ko.MediaType Prepunched/천공 용지: "" +*ko.MediaType Colored/색상지: "" +*ko.MediaType Bond/본드지: "" +*ko.MediaType Recycled/재활용지: "" +*ko.MediaType Rough/거친 용지: "" +*ko.MediaType HeavyRough/중량 거친 용지: "" +*ko.MediaType OpaqueFilm/오파크 필름: "" +*ko.APPrinterPreset ChartsAndGraphs/차트 및 그래픽: "" +*ko.cupsICCProfile RGB../sRGB Matching Profile: "" +*ko.cupsICCProfile CMYK../CMYK Matching Profile: "" +*ko.cupsICCProfile Gray../Gray Matching Profile: "" +*ko.cupsMarkerName cyan/시안색: "" +*ko.cupsMarkerName magenta/마젠타색: "" +*ko.cupsMarkerName yellow/노랑색: "" +*ko.cupsMarkerName black/검정색: "" +*no.Translation Manufacturer/HP: "" +*no.Translation ModelName/HP Color LaserJet Pro M252: "" +*no.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*no.Translation NickName/HP Color LaserJet Pro M252: "" +*no.Translation PageSize/Papirstørrelse: "" +*no.PageSize Letter/US Letter: "" +*no.PageSize Legal/US Legal: "" +*no.PageSize Executive/Executive: "" +*no.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*no.PageSize 4x6/4x6: "" +*no.PageSize 5x8/5x8: "" +*no.PageSize A4/A4: "" +*no.PageSize A5/A5: "" +*no.PageSize A6/A6: "" +*no.PageSize B5/JIS B5: "" +*no.PageSize B6/JIS B6: "" +*no.PageSize Env4x6/10x15 cm: "" +*no.PageSize Oficio/Oficio 216x340 mm: "" +*no.PageSize 195x270mm/16K 195x270 mm: "" +*no.PageSize 184x260mm/16K 184x260 mm: "" +*no.PageSize 7.75x10.75/16K 197x273 mm: "" +*no.PageSize Postcard/Postcard: "" +*no.PageSize DoublePostcardRotated/Dobbelt postkort langside: "" +*no.PageSize Env10/Comm10-konvolutt: "" +*no.PageSize EnvMonarch/Monarch-konvolutt: "" +*no.PageSize EnvISOB5/B5-konvolutt: "" +*no.PageSize EnvC5/C5-konvolutt: "" +*no.PageSize EnvDL/DL-konvolutt: "" +*no.Translation Duplex/Tosidig: "" +*no.Duplex None/Av: "" +*no.Duplex DuplexNoTumble/Innbinding på langsiden: "" +*no.Duplex DuplexTumble/Innbinding på kortsiden: "" +*no.Translation InputSlot/Papirmating: "" +*no.InputSlot Tray1/Skuff 1: "" +*no.InputSlot Tray2/Skuff 2: "" +*no.InputSlot ManualFeed/Manuell mater: "" +*no.Translation InstallableOptions/Installable Options: "" +*no.Translation HPOption_Duplexer/Tosidig-enhet: "" +*no.HPOption_Duplexer True/På: "" +*no.HPOption_Duplexer False/Av: "" +*no.Translation HPColorOptionsPanel/Farge: "" +*no.Translation HPPJLColorAsGray/Skriv ut farger i grått: "" +*no.HPPJLColorAsGray yes/På: "" +*no.HPPJLColorAsGray no/Av: "" +*no.Translation HPRGBEmulation/RGB-farge: "" +*no.HPRGBEmulation DefaultSRGB/Standard (sRGB): "" +*no.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*no.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*no.HPRGBEmulation VividSRGB/Sterk (sRGB): "" +*no.HPRGBEmulation HPRGBEmulationNone/Ingen: "" +*no.Translation HPEdgeControl/Kantkontroll: "" +*no.HPEdgeControl HPEdgeControlOff/Av: "" +*no.HPEdgeControl Light/Lys: "" +*no.HPEdgeControl Normal/Normal: "" +*no.HPEdgeControl Max/Maksimum: "" +*no.Translation HPGeneralHalftone/Halvtone: "" +*no.HPGeneralHalftone Smooth/Jevn: "" +*no.HPGeneralHalftone Detail/Detaljert: "" +*no.Translation HPTextNeutralGrays/Tekst, nøytrale gråtoner: "" +*no.HPTextNeutralGrays Black/Bare svart: "" +*no.HPTextNeutralGrays ProcessBlack/4-fargers: "" +*no.Translation HPGraphicsNeutralGrays/Grafikk, nøytrale gråtoner: "" +*no.HPGraphicsNeutralGrays Black/Bare svart: "" +*no.HPGraphicsNeutralGrays ProcessBlack/4-fargers: "" +*no.Translation HPPhotoNeutralGrays/Foto, nøytrale gråtoner: "" +*no.HPPhotoNeutralGrays Black/Bare svart: "" +*no.HPPhotoNeutralGrays ProcessBlack/4-fargers: "" +*no.Translation HPPaperQualityPanel/Paper/Quality: "" +*no.Translation HPPJLEconoMode/EconoMode: "" +*no.HPPJLEconoMode True/På: "" +*no.HPPJLEconoMode False/Av: "" +*no.Translation MediaType/Utskriftsmateriale: "" +*no.MediaType Unspecified/Uspesifisert: "" +*no.MediaType Plain/Vanlig: "" +*no.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*no.MediaType HPLaserJet90/HP LaserJet 90g: "" +*no.MediaType HPColorLaserMatte105/HP Fargelaser matt, 105g: "" +*no.MediaType HPPremiumChoiceMatte120/HP Premium Choice matt, 120g: "" +*no.MediaType HPBrochureMatte150/HP-brosjyre, matt, 150g: "" +*no.MediaType HPCoverMatte200/HP Omslag matt, 200g: "" +*no.MediaType HPMattePhoto200/HP Matt foto 200g: "" +*no.MediaType HPPremiumPresentationGlossy120/HP Premium-presentasjon, glanset, 120g: "" +*no.MediaType HPBrochureGlossy150/HP-brosjyre, glanset, 150g: "" +*no.MediaType HPTrifoldBrochureGlossy150/HP-brosjyre, glanset, brettet i tre, 150g: "" +*no.MediaType HPBrochureGlossy200/HP-brosjyre, glanset, 200g: "" +*no.MediaType Light6074/Lys 60-74g: "" +*no.MediaType Intermediate8595/Middels 85-95g: "" +*no.MediaType MidWeight96110/Mellomtungt, 96-110g: "" +*no.MediaType Heavy111130/Tungt 111-130g: "" +*no.MediaType ExtraHeavy131175/Ekstra Tung 131-175g: "" +*no.MediaType HeavyGlossy111130/Tungt, glanset 111-130g: "" +*no.MediaType ExtraHeavyGlossy131175/Ekstra tykt og blankt 131-175g: "" +*no.MediaType CardGlossy176220/Kort glanset, 176-220g: "" +*no.MediaType ColorLaserTransparency/Transpar. for fargelaser: "" +*no.MediaType Labels/Etiketter: "" +*no.MediaType Letterhead/Brevhode: "" +*no.MediaType Envelope/Konvolutt: "" +*no.MediaType HeavyEnvelope/Tung konvolutt: "" +*no.MediaType Preprinted/Forhåndstrykt: "" +*no.MediaType Prepunched/Hullark: "" +*no.MediaType Colored/Farget: "" +*no.MediaType Bond/Brevpapir: "" +*no.MediaType Recycled/Resirkulert: "" +*no.MediaType Rough/Grovt: "" +*no.MediaType HeavyRough/Tungt grovt: "" +*no.MediaType OpaqueFilm/Opak film: "" +*no.APPrinterPreset ChartsAndGraphs/Diagrammer og grafikk: "" +*no.cupsICCProfile RGB../sRGB Matching Profile: "" +*no.cupsICCProfile CMYK../CMYK Matching Profile: "" +*no.cupsICCProfile Gray../Gray Matching Profile: "" +*no.cupsMarkerName cyan/Cyan: "" +*no.cupsMarkerName magenta/Magenta: "" +*no.cupsMarkerName yellow/Gul: "" +*no.cupsMarkerName black/Svart: "" +*nl.Translation Manufacturer/HP: "" +*nl.Translation ModelName/HP Color LaserJet Pro M252: "" +*nl.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*nl.Translation NickName/HP Color LaserJet Pro M252: "" +*nl.Translation PageSize/Materiaalgrootte: "" +*nl.PageSize Letter/US Letter: "" +*nl.PageSize Legal/US Legal: "" +*nl.PageSize Executive/Executive: "" +*nl.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*nl.PageSize 4x6/4x6: "" +*nl.PageSize 5x8/5x8: "" +*nl.PageSize A4/A4: "" +*nl.PageSize A5/A5: "" +*nl.PageSize A6/A6: "" +*nl.PageSize B5/JIS B5: "" +*nl.PageSize B6/JIS B6: "" +*nl.PageSize Env4x6/10x15 cm: "" +*nl.PageSize Oficio/Oficio 216x340 mm: "" +*nl.PageSize 195x270mm/16K 195x270 mm: "" +*nl.PageSize 184x260mm/16K 184x260 mm: "" +*nl.PageSize 7.75x10.75/16K 197x273 mm: "" +*nl.PageSize Postcard/Postcard: "" +*nl.PageSize DoublePostcardRotated/Briefkaart (dubbel) lange kant: "" +*nl.PageSize Env10/Comm10-envelop: "" +*nl.PageSize EnvMonarch/Monarch-envelop: "" +*nl.PageSize EnvISOB5/ISO B5-envelop: "" +*nl.PageSize EnvC5/C5-envelop: "" +*nl.PageSize EnvDL/DL-envelop: "" +*nl.Translation Duplex/Dubbelzijdig: "" +*nl.Duplex None/Uit: "" +*nl.Duplex DuplexNoTumble/Lange kant binden: "" +*nl.Duplex DuplexTumble/Korte kant binden: "" +*nl.Translation InputSlot/Papierinvoer: "" +*nl.InputSlot Tray1/Lade 1: "" +*nl.InputSlot Tray2/Lade 2: "" +*nl.InputSlot ManualFeed/Handinvoer: "" +*nl.Translation InstallableOptions/Installable Options: "" +*nl.Translation HPOption_Duplexer/Duplexeenheid: "" +*nl.HPOption_Duplexer True/Aan: "" +*nl.HPOption_Duplexer False/Uit: "" +*nl.Translation HPColorOptionsPanel/Kleur: "" +*nl.Translation HPPJLColorAsGray/Kleuren afdr. in grijs: "" +*nl.HPPJLColorAsGray yes/Aan: "" +*nl.HPPJLColorAsGray no/Uit: "" +*nl.Translation HPRGBEmulation/RGB-kleur: "" +*nl.HPRGBEmulation DefaultSRGB/Standaard (sRGB): "" +*nl.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*nl.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*nl.HPRGBEmulation VividSRGB/Levendig (sRGB): "" +*nl.HPRGBEmulation HPRGBEmulationNone/Geen: "" +*nl.Translation HPEdgeControl/Randverbetering: "" +*nl.HPEdgeControl HPEdgeControlOff/Uit: "" +*nl.HPEdgeControl Light/Licht: "" +*nl.HPEdgeControl Normal/Normaal: "" +*nl.HPEdgeControl Max/Maximaal: "" +*nl.Translation HPGeneralHalftone/Halftonen: "" +*nl.HPGeneralHalftone Smooth/Gelijkmatig: "" +*nl.HPGeneralHalftone Detail/Gedetailleerd: "" +*nl.Translation HPTextNeutralGrays/Tekst in neutraal grijs: "" +*nl.HPTextNeutralGrays Black/Alleen zwart: "" +*nl.HPTextNeutralGrays ProcessBlack/4-kleuren: "" +*nl.Translation HPGraphicsNeutralGrays/Afbeeld. in neutraal grijs: "" +*nl.HPGraphicsNeutralGrays Black/Alleen zwart: "" +*nl.HPGraphicsNeutralGrays ProcessBlack/4-kleuren: "" +*nl.Translation HPPhotoNeutralGrays/Foto's in neutraal grijs: "" +*nl.HPPhotoNeutralGrays Black/Alleen zwart: "" +*nl.HPPhotoNeutralGrays ProcessBlack/4-kleuren: "" +*nl.Translation HPPaperQualityPanel/Paper/Quality: "" +*nl.Translation HPPJLEconoMode/EconoMode: "" +*nl.HPPJLEconoMode True/Aan: "" +*nl.HPPJLEconoMode False/Uit: "" +*nl.Translation MediaType/Type afdrukmateriaal: "" +*nl.MediaType Unspecified/Onbekend: "" +*nl.MediaType Plain/Gewoon: "" +*nl.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*nl.MediaType HPLaserJet90/HP LaserJet 90g: "" +*nl.MediaType HPColorLaserMatte105/HP Color Laser, Mat 105g: "" +*nl.MediaType HPPremiumChoiceMatte120/HP Premium Choice, Mat 120g: "" +*nl.MediaType HPBrochureMatte150/HP mat brochurepapier 150g: "" +*nl.MediaType HPCoverMatte200/HP Omslagpapier, Mat 200g: "" +*nl.MediaType HPMattePhoto200/HP Fotopapier, Mat 200g: "" +*nl.MediaType HPPremiumPresentationGlossy120/HP Premium glanzend presentatiepapier 120g: "" +*nl.MediaType HPBrochureGlossy150/HP glanzend brochurepapier 150g: "" +*nl.MediaType HPTrifoldBrochureGlossy150/HP in drieën gevouwen glanzend brochurepapier 150g: "" +*nl.MediaType HPBrochureGlossy200/HP glanzend brochurepapier 200g: "" +*nl.MediaType Light6074/Licht 60-74g: "" +*nl.MediaType Intermediate8595/Intermediate 85-95g: "" +*nl.MediaType MidWeight96110/Middengewicht 96-110g: "" +*nl.MediaType Heavy111130/Zwaar 111-130g: "" +*nl.MediaType ExtraHeavy131175/Extra Zwaar 131-175g: "" +*nl.MediaType HeavyGlossy111130/Zwaarglanzend 111-130g: "" +*nl.MediaType ExtraHeavyGlossy131175/Extra zwaar glanzend 131-175g: "" +*nl.MediaType CardGlossy176220/Karton, Glanzend 176-220g: "" +*nl.MediaType ColorLaserTransparency/Transparant voor kleurenlaser: "" +*nl.MediaType Labels/Etiketten: "" +*nl.MediaType Letterhead/Briefpapier: "" +*nl.MediaType Envelope/Enveloppen: "" +*nl.MediaType HeavyEnvelope/Zware envelop: "" +*nl.MediaType Preprinted/Voorbedrukt: "" +*nl.MediaType Prepunched/Geperforeerd: "" +*nl.MediaType Colored/Gekleurd: "" +*nl.MediaType Bond/Bankpost: "" +*nl.MediaType Recycled/Gerecycled: "" +*nl.MediaType Rough/Ruw: "" +*nl.MediaType HeavyRough/Zwaar ruw: "" +*nl.MediaType OpaqueFilm/Ondoorzichtige film: "" +*nl.APPrinterPreset ChartsAndGraphs/Tabellen en grafieken: "" +*nl.cupsICCProfile RGB../sRGB Matching Profile: "" +*nl.cupsICCProfile CMYK../CMYK Matching Profile: "" +*nl.cupsICCProfile Gray../Gray Matching Profile: "" +*nl.cupsMarkerName cyan/Cyaan: "" +*nl.cupsMarkerName magenta/Magenta: "" +*nl.cupsMarkerName yellow/Geel: "" +*nl.cupsMarkerName black/Zwart: "" +*pt.Translation Manufacturer/HP: "" +*pt.Translation ModelName/HP Color LaserJet Pro M252: "" +*pt.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*pt.Translation NickName/HP Color LaserJet Pro M252: "" +*pt.Translation PageSize/Tamanho de Mídia: "" +*pt.PageSize Letter/US Letter: "" +*pt.PageSize Legal/US Legal: "" +*pt.PageSize Executive/Executivo: "" +*pt.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*pt.PageSize 4x6/4x6: "" +*pt.PageSize 5x8/5x8: "" +*pt.PageSize A4/A4: "" +*pt.PageSize A5/A5: "" +*pt.PageSize A6/A6: "" +*pt.PageSize B5/JIS B5: "" +*pt.PageSize B6/JIS B6: "" +*pt.PageSize Env4x6/10x15 cm: "" +*pt.PageSize Oficio/Oficio 216x340 mm: "" +*pt.PageSize 195x270mm/16K 195x270 mm: "" +*pt.PageSize 184x260mm/16K 184x260 mm: "" +*pt.PageSize 7.75x10.75/16K 197x273 mm: "" +*pt.PageSize Postcard/Postcard: "" +*pt.PageSize DoublePostcardRotated/Cartão-Postal Duplo Margem Longa: "" +*pt.PageSize Env10/Envelope Comm10: "" +*pt.PageSize EnvMonarch/Envelope Monarch: "" +*pt.PageSize EnvISOB5/Envelope B5: "" +*pt.PageSize EnvC5/Envelope C5: "" +*pt.PageSize EnvDL/Envelope DL: "" +*pt.Translation Duplex/Frente e verso: "" +*pt.Duplex None/Desativado: "" +*pt.Duplex DuplexNoTumble/Encadernação com Margem Longa: "" +*pt.Duplex DuplexTumble/Encadernação com Margem Curta: "" +*pt.Translation InputSlot/Alimentação de Papel: "" +*pt.InputSlot Tray1/Bandeja 1: "" +*pt.InputSlot Tray2/Bandeja 2: "" +*pt.InputSlot ManualFeed/Alimentação manual: "" +*pt.Translation InstallableOptions/Installable Options: "" +*pt.Translation HPOption_Duplexer/Unidade dúplex: "" +*pt.HPOption_Duplexer True/Ativado: "" +*pt.HPOption_Duplexer False/Desativado: "" +*pt.Translation HPColorOptionsPanel/Cor: "" +*pt.Translation HPPJLColorAsGray/Imprimir cor como cinza: "" +*pt.HPPJLColorAsGray yes/Ativado: "" +*pt.HPPJLColorAsGray no/Desativado: "" +*pt.Translation HPRGBEmulation/Cor RGB: "" +*pt.HPRGBEmulation DefaultSRGB/Padrão (sRGB): "" +*pt.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*pt.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*pt.HPRGBEmulation VividSRGB/Víva (sRGB): "" +*pt.HPRGBEmulation HPRGBEmulationNone/Nenhum: "" +*pt.Translation HPEdgeControl/Controle de margem: "" +*pt.HPEdgeControl HPEdgeControlOff/Desativado: "" +*pt.HPEdgeControl Light/Claro: "" +*pt.HPEdgeControl Normal/Normal: "" +*pt.HPEdgeControl Max/Máximo: "" +*pt.Translation HPGeneralHalftone/Meio-tom: "" +*pt.HPGeneralHalftone Smooth/Nivelado: "" +*pt.HPGeneralHalftone Detail/Detalhes: "" +*pt.Translation HPTextNeutralGrays/Texto em cinzas neutros: "" +*pt.HPTextNeutralGrays Black/Somente em preto: "" +*pt.HPTextNeutralGrays ProcessBlack/4 cores: "" +*pt.Translation HPGraphicsNeutralGrays/Gráfico em cinzas neutros: "" +*pt.HPGraphicsNeutralGrays Black/Somente em preto: "" +*pt.HPGraphicsNeutralGrays ProcessBlack/4 cores: "" +*pt.Translation HPPhotoNeutralGrays/Foto em cinzas neutros: "" +*pt.HPPhotoNeutralGrays Black/Somente em preto: "" +*pt.HPPhotoNeutralGrays ProcessBlack/4 cores: "" +*pt.Translation HPPaperQualityPanel/Paper/Quality: "" +*pt.Translation HPPJLEconoMode/EconoMode: "" +*pt.HPPJLEconoMode True/Ativado: "" +*pt.HPPJLEconoMode False/Desativado: "" +*pt.Translation MediaType/Tipo de mídia: "" +*pt.MediaType Unspecified/Não especificado: "" +*pt.MediaType Plain/Comum: "" +*pt.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*pt.MediaType HPLaserJet90/HP LaserJet 90g: "" +*pt.MediaType HPColorLaserMatte105/HP Color Laser 105g, fosco: "" +*pt.MediaType HPPremiumChoiceMatte120/HP Premium Choice fosco, 120g: "" +*pt.MediaType HPBrochureMatte150/Brochura HP fosco, 150g: "" +*pt.MediaType HPCoverMatte200/HP Cover 200g, fosco: "" +*pt.MediaType HPMattePhoto200/Fotogr. HP fosco, 200g: "" +*pt.MediaType HPPremiumPresentationGlossy120/Apresentação Premium brilhante HP 120g: "" +*pt.MediaType HPBrochureGlossy150/Brochura HP brilhante, 150g: "" +*pt.MediaType HPTrifoldBrochureGlossy150/Brochura HP brilhante com três dobras, 150g: "" +*pt.MediaType HPBrochureGlossy200/Brochura HP brilhante, 200g: "" +*pt.MediaType Light6074/Leve 60-74g: "" +*pt.MediaType Intermediate8595/Intermedio 85-95g: "" +*pt.MediaType MidWeight96110/Semipesado 96-110g: "" +*pt.MediaType Heavy111130/Pesado 111-130g: "" +*pt.MediaType ExtraHeavy131175/Extrapesado 131-175g: "" +*pt.MediaType HeavyGlossy111130/Espesso brilhante 111-130g: "" +*pt.MediaType ExtraHeavyGlossy131175/Brilhante com gramatura extra 131-175g: "" +*pt.MediaType CardGlossy176220/Cartão brilhante, 176-220g: "" +*pt.MediaType ColorLaserTransparency/Transpar. laser a cores: "" +*pt.MediaType Labels/Etiquetas: "" +*pt.MediaType Letterhead/Timbrado: "" +*pt.MediaType Envelope/Envelope: "" +*pt.MediaType HeavyEnvelope/Envelope pesado: "" +*pt.MediaType Preprinted/Pré-impresso: "" +*pt.MediaType Prepunched/Perfurado: "" +*pt.MediaType Colored/Colorido: "" +*pt.MediaType Bond/Superbond: "" +*pt.MediaType Recycled/Reciclado: "" +*pt.MediaType Rough/Áspero: "" +*pt.MediaType HeavyRough/Áspero pesado: "" +*pt.MediaType OpaqueFilm/Filme opaco: "" +*pt.APPrinterPreset ChartsAndGraphs/Tabelas e gráficos: "" +*pt.cupsICCProfile RGB../sRGB Matching Profile: "" +*pt.cupsICCProfile CMYK../CMYK Matching Profile: "" +*pt.cupsICCProfile Gray../Gray Matching Profile: "" +*pt.cupsMarkerName cyan/Ciano: "" +*pt.cupsMarkerName magenta/Magenta: "" +*pt.cupsMarkerName yellow/Amarelo: "" +*pt.cupsMarkerName black/Preto: "" +*ru.Translation Manufacturer/HP: "" +*ru.Translation ModelName/HP Color LaserJet Pro M252: "" +*ru.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*ru.Translation NickName/HP Color LaserJet Pro M252: "" +*ru.Translation PageSize/Размер бумаги: "" +*ru.PageSize Letter/US Letter: "" +*ru.PageSize Legal/US Legal: "" +*ru.PageSize Executive/Executive: "" +*ru.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*ru.PageSize 4x6/4 x 6: "" +*ru.PageSize 5x8/5 x 8: "" +*ru.PageSize A4/A4: "" +*ru.PageSize A5/A5: "" +*ru.PageSize A6/A6: "" +*ru.PageSize B5/JIS B5: "" +*ru.PageSize B6/JIS B6: "" +*ru.PageSize Env4x6/10 x 15 см: "" +*ru.PageSize Oficio/Oficio 216x340 mm: "" +*ru.PageSize 195x270mm/16K 195 x 270 мм: "" +*ru.PageSize 184x260mm/16K 184 x 260 мм: "" +*ru.PageSize 7.75x10.75/16K 197 x 273 мм: "" +*ru.PageSize Postcard/Postcard: "" +*ru.PageSize DoublePostcardRotated/Postcard Double Long Edge: "" +*ru.PageSize Env10/Конверт Comm10: "" +*ru.PageSize EnvMonarch/Конверт Monarch: "" +*ru.PageSize EnvISOB5/Конверт B5: "" +*ru.PageSize EnvC5/Конверт C5: "" +*ru.PageSize EnvDL/Конверт DL: "" +*ru.Translation Duplex/Двусторонняя: "" +*ru.Duplex None/Выкл.: "" +*ru.Duplex DuplexNoTumble/Прошивка вдоль длинного края: "" +*ru.Duplex DuplexTumble/Прошивка вдоль короткого края: "" +*ru.Translation InputSlot/Подача бумаги: "" +*ru.InputSlot Tray1/Лоток 1: "" +*ru.InputSlot Tray2/Лоток 2: "" +*ru.InputSlot ManualFeed/Ручная подача: "" +*ru.Translation InstallableOptions/Installable Options: "" +*ru.Translation HPOption_Duplexer/Модуль дуплекса: "" +*ru.HPOption_Duplexer True/Вкл.: "" +*ru.HPOption_Duplexer False/Выкл.: "" +*ru.Translation HPColorOptionsPanel/Цвет: "" +*ru.Translation HPPJLColorAsGray/Печать цвета серым: "" +*ru.HPPJLColorAsGray yes/Вкл.: "" +*ru.HPPJLColorAsGray no/Выкл.: "" +*ru.Translation HPRGBEmulation/Цвет RGB: "" +*ru.HPRGBEmulation DefaultSRGB/По умолчанию (sRGB): "" +*ru.HPRGBEmulation PhotoSRGB/Фото (sRGB): "" +*ru.HPRGBEmulation Adobe/Фото (Adobe RGB 1998): "" +*ru.HPRGBEmulation VividSRGB/Яркое (sRGB): "" +*ru.HPRGBEmulation HPRGBEmulationNone/Нет: "" +*ru.Translation HPEdgeControl/Контроль края: "" +*ru.HPEdgeControl HPEdgeControlOff/Выкл.: "" +*ru.HPEdgeControl Light/Светлый: "" +*ru.HPEdgeControl Normal/Обычное: "" +*ru.HPEdgeControl Max/Максимум: "" +*ru.Translation HPGeneralHalftone/Полутона: "" +*ru.HPGeneralHalftone Smooth/Гладкое: "" +*ru.HPGeneralHalftone Detail/Детальное: "" +*ru.Translation HPTextNeutralGrays/Нейтр. серый (текст): "" +*ru.HPTextNeutralGrays Black/Только черный: "" +*ru.HPTextNeutralGrays ProcessBlack/Четырехцветный: "" +*ru.Translation HPGraphicsNeutralGrays/Нейтр. серый (граф.): "" +*ru.HPGraphicsNeutralGrays Black/Только черный: "" +*ru.HPGraphicsNeutralGrays ProcessBlack/Четырехцветный: "" +*ru.Translation HPPhotoNeutralGrays/Нейтр. серый (фото): "" +*ru.HPPhotoNeutralGrays Black/Только черный: "" +*ru.HPPhotoNeutralGrays ProcessBlack/Четырехцветный: "" +*ru.Translation HPPaperQualityPanel/Paper/Quality: "" +*ru.Translation HPPJLEconoMode/EconoMode: "" +*ru.HPPJLEconoMode True/Вкл.: "" +*ru.HPPJLEconoMode False/Выкл.: "" +*ru.Translation MediaType/Тип носителя: "" +*ru.MediaType Unspecified/Не указано: "" +*ru.MediaType Plain/Обычная бумага: "" +*ru.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*ru.MediaType HPLaserJet90/HP LaserJet 90г: "" +*ru.MediaType HPColorLaserMatte105/HP для цветной лазерной печати, матовая 105г: "" +*ru.MediaType HPPremiumChoiceMatte120/HP повышенного качества, матовая 120г: "" +*ru.MediaType HPBrochureMatte150/Бумага HP для брошюр, матовая, 150г: "" +*ru.MediaType HPCoverMatte200/Бумага HP для обложек, матовая 200г: "" +*ru.MediaType HPMattePhoto200/Матовая фотобумага HP 200г: "" +*ru.MediaType HPPremiumPresentationGlossy120/Бум. HP повыш. кач. для презентаций, глянц. 120г: "" +*ru.MediaType HPBrochureGlossy150/Бумага HP для брошюр, глянцевая, 150г: "" +*ru.MediaType HPTrifoldBrochureGlossy150/Бум. HP для склад-х в 3 слоя брошюр, глянц. 150г: "" +*ru.MediaType HPBrochureGlossy200/Бумага HP для брошюр, глянцевая, 200г: "" +*ru.MediaType Light6074/Легкая 60-74г: "" +*ru.MediaType Intermediate8595/Прокладка 85-95г: "" +*ru.MediaType MidWeight96110/Среднеплотная 96-110г: "" +*ru.MediaType Heavy111130/Плотная 111-130г: "" +*ru.MediaType ExtraHeavy131175/Сверхплотная 131-175г: "" +*ru.MediaType HeavyGlossy111130/Плотная глянцевая 111-130г: "" +*ru.MediaType ExtraHeavyGlossy131175/Сверхплотная глянцевая 131-175г: "" +*ru.MediaType CardGlossy176220/Бумага для открыток, глянцевая 176-220г: "" +*ru.MediaType ColorLaserTransparency/Прозрачная пленка для цветн. лазер. печати: "" +*ru.MediaType Labels/Этикетки: "" +*ru.MediaType Letterhead/Фирменный бланк: "" +*ru.MediaType Envelope/Конверт: "" +*ru.MediaType HeavyEnvelope/Плотный конверт: "" +*ru.MediaType Preprinted/Печатный бланк: "" +*ru.MediaType Prepunched/Перфорированная бумага: "" +*ru.MediaType Colored/Цветная: "" +*ru.MediaType Bond/Высокосортная: "" +*ru.MediaType Recycled/Бумага из вторсырья: "" +*ru.MediaType Rough/Грубая бумага: "" +*ru.MediaType HeavyRough/Плотная грубая: "" +*ru.MediaType OpaqueFilm/Непрозрачный диапозитив: "" +*ru.APPrinterPreset ChartsAndGraphs/Диаграммы и графики: "" +*ru.cupsICCProfile RGB../sRGB Matching Profile: "" +*ru.cupsICCProfile CMYK../CMYK Matching Profile: "" +*ru.cupsICCProfile Gray../Gray Matching Profile: "" +*ru.cupsMarkerName cyan/Голубой: "" +*ru.cupsMarkerName magenta/Пурпурный: "" +*ru.cupsMarkerName yellow/Желтый: "" +*ru.cupsMarkerName black/Черный: "" +*sv.Translation Manufacturer/HP: "" +*sv.Translation ModelName/HP Color LaserJet Pro M252: "" +*sv.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*sv.Translation NickName/HP Color LaserJet Pro M252: "" +*sv.Translation PageSize/Mediestorlek: "" +*sv.PageSize Letter/US Letter: "" +*sv.PageSize Legal/US Legal: "" +*sv.PageSize Executive/Executive: "" +*sv.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*sv.PageSize 4x6/4x6: "" +*sv.PageSize 5x8/5x8: "" +*sv.PageSize A4/A4: "" +*sv.PageSize A5/A5: "" +*sv.PageSize A6/A6: "" +*sv.PageSize B5/JIS B5: "" +*sv.PageSize B6/JIS B6: "" +*sv.PageSize Env4x6/10x15 cm: "" +*sv.PageSize Oficio/Oficio 216x340 mm: "" +*sv.PageSize 195x270mm/16K 195x270 mm: "" +*sv.PageSize 184x260mm/16K 184x260 mm: "" +*sv.PageSize 7.75x10.75/16K 197x273 mm: "" +*sv.PageSize Postcard/Postcard: "" +*sv.PageSize DoublePostcardRotated/Vykort - dubbel med lång kant: "" +*sv.PageSize Env10/Comm10-kuvert: "" +*sv.PageSize EnvMonarch/Monarch-kuvert: "" +*sv.PageSize EnvISOB5/ISO B5-kuvert: "" +*sv.PageSize EnvC5/C5-kuvert: "" +*sv.PageSize EnvDL/DL-kuvert: "" +*sv.Translation Duplex/Dubbelsidig: "" +*sv.Duplex None/Av: "" +*sv.Duplex DuplexNoTumble/Häftning långsida: "" +*sv.Duplex DuplexTumble/Häftning kortsida: "" +*sv.Translation InputSlot/Pappersmatare: "" +*sv.InputSlot Tray1/Fack 1: "" +*sv.InputSlot Tray2/Fack 2: "" +*sv.InputSlot ManualFeed/Manuell matning: "" +*sv.Translation InstallableOptions/Installable Options: "" +*sv.Translation HPOption_Duplexer/Tillbehör för dubbelsidig utskrift: "" +*sv.HPOption_Duplexer True/På: "" +*sv.HPOption_Duplexer False/Av: "" +*sv.Translation HPColorOptionsPanel/Färg: "" +*sv.Translation HPPJLColorAsGray/Skriv ut färg i grått: "" +*sv.HPPJLColorAsGray yes/På: "" +*sv.HPPJLColorAsGray no/Av: "" +*sv.Translation HPRGBEmulation/RGB-färg: "" +*sv.HPRGBEmulation DefaultSRGB/Standard (sRGB): "" +*sv.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*sv.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*sv.HPRGBEmulation VividSRGB/Stark (sRGB): "" +*sv.HPRGBEmulation HPRGBEmulationNone/Inget: "" +*sv.Translation HPEdgeControl/Kantkontroll: "" +*sv.HPEdgeControl HPEdgeControlOff/Av: "" +*sv.HPEdgeControl Light/Ljus: "" +*sv.HPEdgeControl Normal/Normal: "" +*sv.HPEdgeControl Max/Högst: "" +*sv.Translation HPGeneralHalftone/Halvton: "" +*sv.HPGeneralHalftone Smooth/Jämnt: "" +*sv.HPGeneralHalftone Detail/Detalj: "" +*sv.Translation HPTextNeutralGrays/Text neutral grå: "" +*sv.HPTextNeutralGrays Black/Endast svart: "" +*sv.HPTextNeutralGrays ProcessBlack/4-färg: "" +*sv.Translation HPGraphicsNeutralGrays/Bilder neutral grå: "" +*sv.HPGraphicsNeutralGrays Black/Endast svart: "" +*sv.HPGraphicsNeutralGrays ProcessBlack/4-färg: "" +*sv.Translation HPPhotoNeutralGrays/Foto neutral grå: "" +*sv.HPPhotoNeutralGrays Black/Endast svart: "" +*sv.HPPhotoNeutralGrays ProcessBlack/4-färg: "" +*sv.Translation HPPaperQualityPanel/Paper/Quality: "" +*sv.Translation HPPJLEconoMode/EconoMode: "" +*sv.HPPJLEconoMode True/På: "" +*sv.HPPJLEconoMode False/Av: "" +*sv.Translation MediaType/Material: "" +*sv.MediaType Unspecified/Ospecificerad: "" +*sv.MediaType Plain/Vanligt: "" +*sv.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*sv.MediaType HPLaserJet90/HP LaserJet 90g: "" +*sv.MediaType HPColorLaserMatte105/HP Color Laser, matt 105g: "" +*sv.MediaType HPPremiumChoiceMatte120/HP Premium Choice, matt 120g: "" +*sv.MediaType HPBrochureMatte150/HP-broschyr, matt 150g: "" +*sv.MediaType HPCoverMatte200/HP omslag, matt 200g: "" +*sv.MediaType HPMattePhoto200/HP matt foto 200g: "" +*sv.MediaType HPPremiumPresentationGlossy120/HP Premium presentation, glättat, 120g: "" +*sv.MediaType HPBrochureGlossy150/HP-broschyr, glättat, 150g: "" +*sv.MediaType HPTrifoldBrochureGlossy150/HP trippelvikt broschyr, glättat, 150g: "" +*sv.MediaType HPBrochureGlossy200/HP-broschyr, glättat, 200g: "" +*sv.MediaType Light6074/Lätt 60-74g: "" +*sv.MediaType Intermediate8595/Medelvikt 85-95g: "" +*sv.MediaType MidWeight96110/Mellanvikt 96-110g: "" +*sv.MediaType Heavy111130/Tungt 111-130g: "" +*sv.MediaType ExtraHeavy131175/Extra Tungt 131-175g: "" +*sv.MediaType HeavyGlossy111130/Tungt glättat 111-130g: "" +*sv.MediaType ExtraHeavyGlossy131175/Extra tungt glättat 131-175g: "" +*sv.MediaType CardGlossy176220/Kort, glättat 176-220g: "" +*sv.MediaType ColorLaserTransparency/Färglaser OH-film: "" +*sv.MediaType Labels/Etiketter: "" +*sv.MediaType Letterhead/Brevpapper: "" +*sv.MediaType Envelope/Kuvert: "" +*sv.MediaType HeavyEnvelope/Tungt kuvert: "" +*sv.MediaType Preprinted/Förtryckt: "" +*sv.MediaType Prepunched/Hålat: "" +*sv.MediaType Colored/Färgat: "" +*sv.MediaType Bond/Finpapper: "" +*sv.MediaType Recycled/Returpapper: "" +*sv.MediaType Rough/Grovt: "" +*sv.MediaType HeavyRough/Tungt grovt: "" +*sv.MediaType OpaqueFilm/Ej genomskinlig film: "" +*sv.APPrinterPreset ChartsAndGraphs/Diagram och grafik: "" +*sv.cupsICCProfile RGB../sRGB Matching Profile: "" +*sv.cupsICCProfile CMYK../CMYK Matching Profile: "" +*sv.cupsICCProfile Gray../Gray Matching Profile: "" +*sv.cupsMarkerName cyan/Cyan: "" +*sv.cupsMarkerName magenta/Magenta: "" +*sv.cupsMarkerName yellow/Gul: "" +*sv.cupsMarkerName black/Svart: "" +*zh_CN.Translation Manufacturer/HP: "" +*zh_CN.Translation ModelName/HP Color LaserJet Pro M252: "" +*zh_CN.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*zh_CN.Translation NickName/HP Color LaserJet Pro M252: "" +*zh_CN.Translation PageSize/介质大小: "" +*zh_CN.PageSize Letter/US Letter: "" +*zh_CN.PageSize Legal/US Legal: "" +*zh_CN.PageSize Executive/Executive: "" +*zh_CN.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*zh_CN.PageSize 4x6/4x6: "" +*zh_CN.PageSize 5x8/5x8: "" +*zh_CN.PageSize A4/A4: "" +*zh_CN.PageSize A5/A5: "" +*zh_CN.PageSize A6/A6: "" +*zh_CN.PageSize B5/JIS B5: "" +*zh_CN.PageSize B6/JIS B6: "" +*zh_CN.PageSize Env4x6/10x15 厘米: "" +*zh_CN.PageSize Oficio/Oficio 216x340 mm: "" +*zh_CN.PageSize 195x270mm/16K 195x270 毫米: "" +*zh_CN.PageSize 184x260mm/16K 184x260 毫米: "" +*zh_CN.PageSize 7.75x10.75/16K 197x273 毫米: "" +*zh_CN.PageSize Postcard/Postcard: "" +*zh_CN.PageSize DoublePostcardRotated/明信片-双面长边: "" +*zh_CN.PageSize Env10/信封 Comm10: "" +*zh_CN.PageSize EnvMonarch/信封 Monarch: "" +*zh_CN.PageSize EnvISOB5/信封 ISO B5: "" +*zh_CN.PageSize EnvC5/信封 C5: "" +*zh_CN.PageSize EnvDL/信封 DL: "" +*zh_CN.Translation Duplex/双面打印: "" +*zh_CN.Duplex None/关: "" +*zh_CN.Duplex DuplexNoTumble/长边装订: "" +*zh_CN.Duplex DuplexTumble/短边装订: "" +*zh_CN.Translation InputSlot/送纸: "" +*zh_CN.InputSlot Tray1/纸盒 1: "" +*zh_CN.InputSlot Tray2/纸盒 2: "" +*zh_CN.InputSlot ManualFeed/手动进纸: "" +*zh_CN.Translation InstallableOptions/Installable Options: "" +*zh_CN.Translation HPOption_Duplexer/双面打印附件: "" +*zh_CN.HPOption_Duplexer True/开: "" +*zh_CN.HPOption_Duplexer False/关: "" +*zh_CN.Translation HPColorOptionsPanel/颜色: "" +*zh_CN.Translation HPPJLColorAsGray/打印颜色为灰色: "" +*zh_CN.HPPJLColorAsGray yes/开: "" +*zh_CN.HPPJLColorAsGray no/关: "" +*zh_CN.Translation HPRGBEmulation/RGB 颜色: "" +*zh_CN.HPRGBEmulation DefaultSRGB/默认 (sRGB): "" +*zh_CN.HPRGBEmulation PhotoSRGB/照片 (sRGB): "" +*zh_CN.HPRGBEmulation Adobe/照片 (Adobe RGB 1998): "" +*zh_CN.HPRGBEmulation VividSRGB/鲜明 (sRGB): "" +*zh_CN.HPRGBEmulation HPRGBEmulationNone/无: "" +*zh_CN.Translation HPEdgeControl/边缘控制: "" +*zh_CN.HPEdgeControl HPEdgeControlOff/关: "" +*zh_CN.HPEdgeControl Light/淡: "" +*zh_CN.HPEdgeControl Normal/正常: "" +*zh_CN.HPEdgeControl Max/最大: "" +*zh_CN.Translation HPGeneralHalftone/半色调: "" +*zh_CN.HPGeneralHalftone Smooth/文本: "" +*zh_CN.HPGeneralHalftone Detail/细节: "" +*zh_CN.Translation HPTextNeutralGrays/文本中性灰色: "" +*zh_CN.HPTextNeutralGrays Black/仅限黑色: "" +*zh_CN.HPTextNeutralGrays ProcessBlack/4 色: "" +*zh_CN.Translation HPGraphicsNeutralGrays/图形中性灰色: "" +*zh_CN.HPGraphicsNeutralGrays Black/仅限黑色: "" +*zh_CN.HPGraphicsNeutralGrays ProcessBlack/4 色: "" +*zh_CN.Translation HPPhotoNeutralGrays/照片中性灰色: "" +*zh_CN.HPPhotoNeutralGrays Black/仅限黑色: "" +*zh_CN.HPPhotoNeutralGrays ProcessBlack/4 色: "" +*zh_CN.Translation HPPaperQualityPanel/Paper/Quality: "" +*zh_CN.Translation HPPJLEconoMode/EconoMode: "" +*zh_CN.HPPJLEconoMode True/开: "" +*zh_CN.HPPJLEconoMode False/关: "" +*zh_CN.Translation MediaType/介质类型: "" +*zh_CN.MediaType Unspecified/未指定: "" +*zh_CN.MediaType Plain/普通纸: "" +*zh_CN.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*zh_CN.MediaType HPLaserJet90/HP LaserJet 90 克纸: "" +*zh_CN.MediaType HPColorLaserMatte105/HP 彩色激光无光泽纸 105g: "" +*zh_CN.MediaType HPPremiumChoiceMatte120/HP 优选无光泽纸 120g: "" +*zh_CN.MediaType HPBrochureMatte150/HP 小册子磨砂纸 150g: "" +*zh_CN.MediaType HPCoverMatte200/HP 无光泽封面纸 200g: "" +*zh_CN.MediaType HPMattePhoto200/HP 无光泽照片纸 200g: "" +*zh_CN.MediaType HPPremiumPresentationGlossy120/HP 高级演示用光泽纸 120g: "" +*zh_CN.MediaType HPBrochureGlossy150/HP 小册子光泽纸 150g: "" +*zh_CN.MediaType HPTrifoldBrochureGlossy150/HP 三折小册子光泽纸 150g: "" +*zh_CN.MediaType HPBrochureGlossy200/HP 小册子光泽纸 200g: "" +*zh_CN.MediaType Light6074/轻磅 60-74g: "" +*zh_CN.MediaType Intermediate8595/光面纸 85-95g: "" +*zh_CN.MediaType MidWeight96110/中等重量纸 96-110g: "" +*zh_CN.MediaType Heavy111130/重磅 111-130g: "" +*zh_CN.MediaType ExtraHeavy131175/超级重磅纸 131-175g: "" +*zh_CN.MediaType HeavyGlossy111130/重磅光泽纸 111-130g: "" +*zh_CN.MediaType ExtraHeavyGlossy131175/超重磅光泽纸 131-175g: "" +*zh_CN.MediaType CardGlossy176220/光泽卡片 176-220g: "" +*zh_CN.MediaType ColorLaserTransparency/彩色激光投影胶片: "" +*zh_CN.MediaType Labels/标签: "" +*zh_CN.MediaType Letterhead/信头纸: "" +*zh_CN.MediaType Envelope/信封: "" +*zh_CN.MediaType HeavyEnvelope/重磅信封: "" +*zh_CN.MediaType Preprinted/预先打印纸: "" +*zh_CN.MediaType Prepunched/预先打孔纸: "" +*zh_CN.MediaType Colored/彩纸: "" +*zh_CN.MediaType Bond/证券纸: "" +*zh_CN.MediaType Recycled/再生纸: "" +*zh_CN.MediaType Rough/粗糙: "" +*zh_CN.MediaType HeavyRough/重磅粗糙纸: "" +*zh_CN.MediaType OpaqueFilm/不透明胶片: "" +*zh_CN.APPrinterPreset ChartsAndGraphs/图表和图形: "" +*zh_CN.cupsICCProfile RGB../sRGB Matching Profile: "" +*zh_CN.cupsICCProfile CMYK../CMYK Matching Profile: "" +*zh_CN.cupsICCProfile Gray../Gray Matching Profile: "" +*zh_CN.cupsMarkerName cyan/青色: "" +*zh_CN.cupsMarkerName magenta/品红色: "" +*zh_CN.cupsMarkerName yellow/黄色: "" +*zh_CN.cupsMarkerName black/黑色: "" +*zh_TW.Translation Manufacturer/HP: "" +*zh_TW.Translation ModelName/HP Color LaserJet Pro M252: "" +*zh_TW.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*zh_TW.Translation NickName/HP Color LaserJet Pro M252: "" +*zh_TW.Translation PageSize/媒體大小: "" +*zh_TW.PageSize Letter/US Letter: "" +*zh_TW.PageSize Legal/US Legal: "" +*zh_TW.PageSize Executive/Executive: "" +*zh_TW.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*zh_TW.PageSize 4x6/4x6: "" +*zh_TW.PageSize 5x8/5x8: "" +*zh_TW.PageSize A4/A4: "" +*zh_TW.PageSize A5/A5: "" +*zh_TW.PageSize A6/A6: "" +*zh_TW.PageSize B5/JIS B5: "" +*zh_TW.PageSize B6/JIS B6: "" +*zh_TW.PageSize Env4x6/10x15 厘米: "" +*zh_TW.PageSize Oficio/Oficio 216x340 mm: "" +*zh_TW.PageSize 195x270mm/16K 195x270 公釐: "" +*zh_TW.PageSize 184x260mm/16K 184x260 公釐: "" +*zh_TW.PageSize 7.75x10.75/16K 197x273 公釐: "" +*zh_TW.PageSize Postcard/Postcard: "" +*zh_TW.PageSize DoublePostcardRotated/雙倍大小明信片長邊: "" +*zh_TW.PageSize Env10/Comm10 信封: "" +*zh_TW.PageSize EnvMonarch/Monarch 信封: "" +*zh_TW.PageSize EnvISOB5/ISO B5 信封: "" +*zh_TW.PageSize EnvC5/C5 信封: "" +*zh_TW.PageSize EnvDL/DL 信封: "" +*zh_TW.Translation Duplex/雙面: "" +*zh_TW.Duplex None/關閉: "" +*zh_TW.Duplex DuplexNoTumble/沿長邊裝訂: "" +*zh_TW.Duplex DuplexTumble/沿短邊裝訂: "" +*zh_TW.Translation InputSlot/送紙匣: "" +*zh_TW.InputSlot Tray1/1 號紙匣: "" +*zh_TW.InputSlot Tray2/2 號紙匣: "" +*zh_TW.InputSlot ManualFeed/手動進紙: "" +*zh_TW.Translation InstallableOptions/Installable Options: "" +*zh_TW.Translation HPOption_Duplexer/雙面列印裝置: "" +*zh_TW.HPOption_Duplexer True/開啟: "" +*zh_TW.HPOption_Duplexer False/關閉: "" +*zh_TW.Translation HPColorOptionsPanel/色彩: "" +*zh_TW.Translation HPPJLColorAsGray/用灰色列印彩色: "" +*zh_TW.HPPJLColorAsGray yes/開啟: "" +*zh_TW.HPPJLColorAsGray no/關閉: "" +*zh_TW.Translation HPRGBEmulation/RGB 色彩: "" +*zh_TW.HPRGBEmulation DefaultSRGB/預設 (sRGB): "" +*zh_TW.HPRGBEmulation PhotoSRGB/相紙 (sRGB): "" +*zh_TW.HPRGBEmulation Adobe/相紙 (Adobe RGB 1998): "" +*zh_TW.HPRGBEmulation VividSRGB/鮮明 (sRGB): "" +*zh_TW.HPRGBEmulation HPRGBEmulationNone/無: "" +*zh_TW.Translation HPEdgeControl/邊緣控制: "" +*zh_TW.HPEdgeControl HPEdgeControlOff/關閉: "" +*zh_TW.HPEdgeControl Light/淡: "" +*zh_TW.HPEdgeControl Normal/正常: "" +*zh_TW.HPEdgeControl Max/最大: "" +*zh_TW.Translation HPGeneralHalftone/半色調: "" +*zh_TW.HPGeneralHalftone Smooth/文字: "" +*zh_TW.HPGeneralHalftone Detail/細節: "" +*zh_TW.Translation HPTextNeutralGrays/文字中性灰色: "" +*zh_TW.HPTextNeutralGrays Black/純黑色: "" +*zh_TW.HPTextNeutralGrays ProcessBlack/4 色: "" +*zh_TW.Translation HPGraphicsNeutralGrays/圖形中性灰色: "" +*zh_TW.HPGraphicsNeutralGrays Black/純黑色: "" +*zh_TW.HPGraphicsNeutralGrays ProcessBlack/4 色: "" +*zh_TW.Translation HPPhotoNeutralGrays/照片中性灰色: "" +*zh_TW.HPPhotoNeutralGrays Black/純黑色: "" +*zh_TW.HPPhotoNeutralGrays ProcessBlack/4 色: "" +*zh_TW.Translation HPPaperQualityPanel/Paper/Quality: "" +*zh_TW.Translation HPPJLEconoMode/EconoMode: "" +*zh_TW.HPPJLEconoMode True/開啟: "" +*zh_TW.HPPJLEconoMode False/關閉: "" +*zh_TW.Translation MediaType/媒體類型: "" +*zh_TW.MediaType Unspecified/未指定: "" +*zh_TW.MediaType Plain/素面紙: "" +*zh_TW.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*zh_TW.MediaType HPLaserJet90/HP LaserJet 90 克紙: "" +*zh_TW.MediaType HPColorLaserMatte105/HP 彩色雷射霧面紙 105g: "" +*zh_TW.MediaType HPPremiumChoiceMatte120/HP 高級霧面紙 120g: "" +*zh_TW.MediaType HPBrochureMatte150/HP 霧面型錄紙 150g: "" +*zh_TW.MediaType HPCoverMatte200/HP 霧面封面紙 200g: "" +*zh_TW.MediaType HPMattePhoto200/HP 霧面相紙 200g: "" +*zh_TW.MediaType HPPremiumPresentationGlossy120/HP 高級光面簡報紙 120g: "" +*zh_TW.MediaType HPBrochureGlossy150/HP 光面型錄紙 150g: "" +*zh_TW.MediaType HPTrifoldBrochureGlossy150/HP 光面三摺型錄紙 150g: "" +*zh_TW.MediaType HPBrochureGlossy200/HP 光面型錄紙 200g: "" +*zh_TW.MediaType Light6074/輕磅紙 60-74g: "" +*zh_TW.MediaType Intermediate8595/嫖醱祧 85-95g: "" +*zh_TW.MediaType MidWeight96110/中磅紙 96-110g: "" +*zh_TW.MediaType Heavy111130/重磅紙 111-130g: "" +*zh_TW.MediaType ExtraHeavy131175/超重磅紙 131-175g: "" +*zh_TW.MediaType HeavyGlossy111130/重磅光面紙 111-130g: "" +*zh_TW.MediaType ExtraHeavyGlossy131175/超厚光滑紙 131-175g: "" +*zh_TW.MediaType CardGlossy176220/光面賀卡紙 176-220g: "" +*zh_TW.MediaType ColorLaserTransparency/彩色雷射投影片: "" +*zh_TW.MediaType Labels/標籤: "" +*zh_TW.MediaType Letterhead/信頭紙: "" +*zh_TW.MediaType Envelope/信封: "" +*zh_TW.MediaType HeavyEnvelope/重磅信封: "" +*zh_TW.MediaType Preprinted/預印的: "" +*zh_TW.MediaType Prepunched/打孔過的: "" +*zh_TW.MediaType Colored/彩紙: "" +*zh_TW.MediaType Bond/雪銅紙: "" +*zh_TW.MediaType Recycled/再生紙: "" +*zh_TW.MediaType Rough/粗糙紙: "" +*zh_TW.MediaType HeavyRough/重磅粗糙紙: "" +*zh_TW.MediaType OpaqueFilm/不透明膠片: "" +*zh_TW.APPrinterPreset ChartsAndGraphs/圖表和圖形: "" +*zh_TW.cupsICCProfile RGB../sRGB Matching Profile: "" +*zh_TW.cupsICCProfile CMYK../CMYK Matching Profile: "" +*zh_TW.cupsICCProfile Gray../Gray Matching Profile: "" +*zh_TW.cupsMarkerName cyan/青藍色: "" +*zh_TW.cupsMarkerName magenta/洋紅色: "" +*zh_TW.cupsMarkerName yellow/黃色: "" +*zh_TW.cupsMarkerName black/黑色: "" +*DefaultFont: Courier +*Font Albertus-ExtraBold: Standard "(001.001)" Standard ROM +*Font Albertus-Medium: Standard "(001.001)" Standard ROM +*Font AntiqueOlive: Standard "(001.001)" Standard ROM +*Font AntiqueOlive-Bold: Standard "(001.001)" Standard ROM +*Font AntiqueOlive-Italic: Standard "(001.001)" Standard ROM +*Font Arial: Standard "(001.001)" Standard ROM +*Font Arial-Bold: Standard "(001.001)" Standard ROM +*Font Arial-BoldItalic: Standard "(001.001)" Standard ROM +*Font Arial-Italic: Standard "(001.001)" Standard ROM +*Font AvantGarde-Book: Standard "(001.001)" Standard ROM +*Font AvantGarde-BookOblique: Standard "(001.001)" Standard ROM +*Font AvantGarde-Demi: Standard "(001.001)" Standard ROM +*Font AvantGarde-DemiOblique: Standard "(001.001)" Standard ROM +*Font Bookman-Demi: Standard "(001.001)" Standard ROM +*Font Bookman-DemiItalic: Standard "(001.001)" Standard ROM +*Font Bookman-Light: Standard "(001.001)" Standard ROM +*Font Bookman-LightItalic: Standard "(001.001)" Standard ROM +*Font BookmanCE-Demi: Win1250 "(001.001)" ExtendedRoman ROM +*Font BookmanCE-DemiItalic: Win1250 "(001.001)" ExtendedRoman ROM +*Font BookmanCE-Light: Win1250 "(001.001)" ExtendedRoman ROM +*Font BookmanCE-LightItalic: Win1250 "(001.001)" ExtendedRoman ROM +*Font CGOmega: Standard "(001.001)" Standard ROM +*Font CGOmega-Bold: Standard "(001.001)" Standard ROM +*Font CGOmega-BoldItalic: Standard "(001.001)" Standard ROM +*Font CGOmega-Italic: Standard "(001.001)" Standard ROM +*Font CGTimes: Standard "(001.001)" Standard ROM +*Font CGTimes-Bold: Standard "(001.001)" Standard ROM +*Font CGTimes-BoldItalic: Standard "(001.001)" Standard ROM +*Font CGTimes-Italic: Standard "(001.001)" Standard ROM +*Font Clarendon-Condensed-Bold: Standard "(001.001)" Standard ROM +*Font Coronet: Standard "(001.001)" Standard ROM +*Font Courier: Standard "(001.001)" Standard ROM +*Font Courier-Bold: Standard "(001.001)" Standard ROM +*Font Courier-BoldOblique: Standard "(001.001)" Standard ROM +*Font Courier-Oblique: Standard "(001.001)" Standard ROM +*Font CourierHP: Standard "(001.001)" Standard ROM +*Font CourierHP-Bold: Standard "(001.001)" Standard ROM +*Font CourierHP-BoldItalic: Standard "(001.001)" Standard ROM +*Font CourierHP-Italic: Standard "(001.001)" Standard ROM +*Font Garamond-Antiqua: Standard "(001.001)" Standard ROM +*Font Garamond-Halbfett: Standard "(001.001)" Standard ROM +*Font Garamond-Kursiv: Standard "(001.001)" Standard ROM +*Font Garamond-KursivHalbfett: Standard "(001.001)" Standard ROM +*Font Helvetica: Standard "(001.001)" Standard ROM +*Font Helvetica-Bold: Standard "(001.001)" Standard ROM +*Font Helvetica-BoldOblique: Standard "(001.001)" Standard ROM +*Font Helvetica-Narrow: Standard "(001.001)" Standard ROM +*Font Helvetica-Narrow-Bold: Standard "(001.001)" Standard ROM +*Font Helvetica-Narrow-BoldOblique: Standard "(001.001)" Standard ROM +*Font Helvetica-Narrow-Oblique: Standard "(001.001)" Standard ROM +*Font Helvetica-Oblique: Standard "(001.001)" Standard ROM +*Font LetterGothic: Standard "(001.001)" Standard ROM +*Font LetterGothic-Bold: Standard "(001.001)" Standard ROM +*Font LetterGothic-Italic: Standard "(001.001)" Standard ROM +*Font Marigold: Standard "(001.001)" Standard ROM +*Font NewCenturySchlbk-Bold: Standard "(001.001)" Standard ROM +*Font NewCenturySchlbk-BoldItalic: Standard "(001.001)" Standard ROM +*Font NewCenturySchlbk-Italic: Standard "(001.001)" Standard ROM +*Font NewCenturySchlbk-Roman: Standard "(001.001)" Standard ROM +*Font Palatino-Bold: Standard "(001.001)" Standard ROM +*Font Palatino-BoldItalic: Standard "(001.001)" Standard ROM +*Font Palatino-Italic: Standard "(001.001)" Standard ROM +*Font Palatino-Roman: Standard "(001.001)" Standard ROM +*Font Symbol: Special "(001.001)" Special ROM +*Font SymbolMT: Standard "(001.001)" Standard ROM +*Font Times-Bold: Standard "(001.001)" Standard ROM +*Font Times-BoldItalic: Standard "(001.001)" Standard ROM +*Font Times-Italic: Standard "(001.001)" Standard ROM +*Font Times-Roman: Standard "(001.001)" Standard ROM +*Font TimesNewRoman: Standard "(001.001)" Standard ROM +*Font TimesNewRoman-Bold: Standard "(001.001)" Standard ROM +*Font TimesNewRoman-BoldItalic: Standard "(001.001)" Standard ROM +*Font TimesNewRoman-Italic: Standard "(001.001)" Standard ROM +*Font Univers-Bold: Standard "(001.001)" Standard ROM +*Font Univers-BoldItalic: Standard "(001.001)" Standard ROM +*Font Univers-Condensed-Bold: Standard "(001.001)" Standard ROM +*Font Univers-Condensed-BoldItalic: Standard "(001.001)" Standard ROM +*Font Univers-Condensed-Medium: Standard "(001.001)" Standard ROM +*Font Univers-Condensed-MediumItalic: Standard "(001.001)" Standard ROM +*Font Univers-Medium: Standard "(001.001)" Standard ROM +*Font Univers-MediumItalic: Standard "(001.001)" Standard ROM +*Font Wingdings-Regular: Special "(001.001)" Special ROM +*Font Wingdings-Regular: Standard "(001.001)" Standard ROM +*Font ZapfChancery-MediumItalic: Standard "(001.001)" Standard ROM +*Font ZapfDingbats: Special "(001.001)" Special ROM +*% End of HPP00052.PPD, 211422 bytes. diff --git a/configfiles/etc/cups/ppd/Salle222.ppd.O b/configfiles/etc/cups/ppd/Salle222.ppd.O new file mode 100644 index 0000000..dd8b28c --- /dev/null +++ b/configfiles/etc/cups/ppd/Salle222.ppd.O @@ -0,0 +1,237 @@ +*PPD-Adobe: "4.3" +*%%%% PPD file for HP LaserJet p2015n Series with CUPS. +*%%%% Created by the CUPS PPD Compiler CUPS v1.6.2. +*% (c) 2008 Copyright Hewlett-Packard Development Company, LP +*FormatVersion: "4.3" +*FileVersion: "3.13.5" +*LanguageVersion: English +*LanguageEncoding: ISOLatin1 +*PCFileName: "hp-laserjet_p2015n_series.ppd" +*Product: "(HP LaserJet p2015n Printer)" +*Manufacturer: "HP" +*ModelName: "HP LaserJet p2015n Series" +*ShortNickName: "HP LaserJet p2015n Series" +*NickName: "HP LaserJet p2015n Series, hpcups 3.13.5" +*PSVersion: "(3010.000) 0" +*LanguageLevel: "3" +*ColorDevice: True +*DefaultColorSpace: RGB +*FileSystem: False +*Throughput: "1" +*LandscapeOrientation: Plus90 +*TTRasterizer: Type42 +*% Driver-defined attributes... +*RequiresPageRegion All: True +*cupsEvenDuplex: True +*hpPrinterLanguage: "ljmono" +*cupsModelName: "HP LaserJet" +*1284DeviceID: "MFG:HP;MDL:hp laserjet p2015n series;DES:hp laserjet p2015n series;" +*cupsVersion: 1.6 +*cupsModelNumber: 0 +*cupsManualCopies: True +*cupsFilter: "application/vnd.cups-raster 0 hpcups" +*cupsLanguages: "en" +*OpenUI *PageSize/Media Size: PickOne +*OrderDependency: 10 AnySetup *PageSize +*DefaultPageSize: A4 +*PageSize Card3x5/Index Card 3x5in: "<>setpagedevice" +*PageSize Hagaki/Hagaki 100x148mm: "<>setpagedevice" +*PageSize Photo4x6/Photo 4x6in: "<>setpagedevice" +*PageSize A6/A6 105x148mm: "<>setpagedevice" +*PageSize Photo5x7/Photo 5x7in: "<>setpagedevice" +*PageSize Card5x8/Index Card 5x8in: "<>setpagedevice" +*PageSize Oufuku/Oufuku-Hagaki 148x200mm: "<>setpagedevice" +*PageSize A5/A5 148x210mm: "<>setpagedevice" +*PageSize B5/B5 176x250mm: "<>setpagedevice" +*PageSize JB5/JB5 182x257mm: "<>setpagedevice" +*PageSize Executive/Executive 7.25x10.5in: "<>setpagedevice" +*PageSize 16k/16k 7.75x10.75in: "<>setpagedevice" +*PageSize Letter/Letter 8.5x11in: "<>setpagedevice" +*PageSize A4/A4 210x297mm: "<>setpagedevice" +*PageSize ExecutiveJIS/Executive (JIS) 8.5x12.986in: "<>setpagedevice" +*PageSize FLSA/American Foolscap 8.5x13in: "<>setpagedevice" +*PageSize Legal/Legal 8.5x14in: "<>setpagedevice" +*PageSize EnvA2/A2 Envelope 4.37x5.75in: "<>setpagedevice" +*PageSize EnvC6/C6 Envelope 114x162mm: "<>setpagedevice" +*PageSize EnvChou4/#4 Japanese Envelope 90x205mm: "<>setpagedevice" +*PageSize EnvMonarch/Monarch Envelope 3.875x7.5in: "<>setpagedevice" +*PageSize EnvDL/DL Envelope 110x220mm: "<>setpagedevice" +*PageSize Env10/#10 Envelope 4.12x9.5in: "<>setpagedevice" +*PageSize EnvChou3/#3 Japanese Envelope 120x235mm: "<>setpagedevice" +*PageSize EnvC5/C5 Envelope 162x229mm: "<>setpagedevice" +*PageSize EnvB5/B5 Envelope 176x250mm: "<>setpagedevice" +*CloseUI: *PageSize +*OpenUI *PageRegion/Media Size: PickOne +*OrderDependency: 10 AnySetup *PageRegion +*DefaultPageRegion: A4 +*PageRegion Card3x5/Index Card 3x5in: "<>setpagedevice" +*PageRegion Hagaki/Hagaki 100x148mm: "<>setpagedevice" +*PageRegion Photo4x6/Photo 4x6in: "<>setpagedevice" +*PageRegion A6/A6 105x148mm: "<>setpagedevice" +*PageRegion Photo5x7/Photo 5x7in: "<>setpagedevice" +*PageRegion Card5x8/Index Card 5x8in: "<>setpagedevice" +*PageRegion Oufuku/Oufuku-Hagaki 148x200mm: "<>setpagedevice" +*PageRegion A5/A5 148x210mm: "<>setpagedevice" +*PageRegion B5/B5 176x250mm: "<>setpagedevice" +*PageRegion JB5/JB5 182x257mm: "<>setpagedevice" +*PageRegion Executive/Executive 7.25x10.5in: "<>setpagedevice" +*PageRegion 16k/16k 7.75x10.75in: "<>setpagedevice" +*PageRegion Letter/Letter 8.5x11in: "<>setpagedevice" +*PageRegion A4/A4 210x297mm: "<>setpagedevice" +*PageRegion ExecutiveJIS/Executive (JIS) 8.5x12.986in: "<>setpagedevice" +*PageRegion FLSA/American Foolscap 8.5x13in: "<>setpagedevice" +*PageRegion Legal/Legal 8.5x14in: "<>setpagedevice" +*PageRegion EnvA2/A2 Envelope 4.37x5.75in: "<>setpagedevice" +*PageRegion EnvC6/C6 Envelope 114x162mm: "<>setpagedevice" +*PageRegion EnvChou4/#4 Japanese Envelope 90x205mm: "<>setpagedevice" +*PageRegion EnvMonarch/Monarch Envelope 3.875x7.5in: "<>setpagedevice" +*PageRegion EnvDL/DL Envelope 110x220mm: "<>setpagedevice" +*PageRegion Env10/#10 Envelope 4.12x9.5in: "<>setpagedevice" +*PageRegion EnvChou3/#3 Japanese Envelope 120x235mm: "<>setpagedevice" +*PageRegion EnvC5/C5 Envelope 162x229mm: "<>setpagedevice" +*PageRegion EnvB5/B5 Envelope 176x250mm: "<>setpagedevice" +*CloseUI: *PageRegion +*DefaultImageableArea: A4 +*ImageableArea Card3x5/Index Card 3x5in: "18 14 198 346" +*ImageableArea Hagaki/Hagaki 100x148mm: "18 14 266 406" +*ImageableArea Photo4x6/Photo 4x6in: "18 14 270 418" +*ImageableArea A6/A6 105x148mm: "18 14 279.359985351562 405.760009765625" +*ImageableArea Photo5x7/Photo 5x7in: "18 14 342 490" +*ImageableArea Card5x8/Index Card 5x8in: "18 14 342 562" +*ImageableArea Oufuku/Oufuku-Hagaki 148x200mm: "18 14 549 406" +*ImageableArea A5/A5 148x210mm: "18 14 401.760009765625 581.440002441406" +*ImageableArea B5/B5 176x250mm: "18 14 480.959991455078 694.47998046875" +*ImageableArea JB5/JB5 182x257mm: "18 14 498.239990234375 714.640014648438" +*ImageableArea Executive/Executive 7.25x10.5in: "18 14 504 742" +*ImageableArea 16k/16k 7.75x10.75in: "18 14 540 760" +*ImageableArea Letter/Letter 8.5x11in: "18 14 594 778" +*ImageableArea A4/A4 210x297mm: "18 14 577.440002441406 827.679992675781" +*ImageableArea ExecutiveJIS/Executive (JIS) 8.5x12.986in: "18 14 594 922" +*ImageableArea FLSA/American Foolscap 8.5x13in: "18 14 594 922" +*ImageableArea Legal/Legal 8.5x14in: "18 14 594 994" +*ImageableArea EnvA2/A2 Envelope 4.37x5.75in: "18 14 296.640014648438 400" +*ImageableArea EnvC6/C6 Envelope 114x162mm: "18 14 305.279998779297 445.359985351562" +*ImageableArea EnvChou4/#4 Japanese Envelope 90x205mm: "18 14 236.880004882812 567.039978027344" +*ImageableArea EnvMonarch/Monarch Envelope 3.875x7.5in: "18 14 261 526" +*ImageableArea EnvDL/DL Envelope 110x220mm: "18 14 293.760009765625 609.52001953125" +*ImageableArea Env10/#10 Envelope 4.12x9.5in: "18 14 279 670" +*ImageableArea EnvChou3/#3 Japanese Envelope 120x235mm: "18 14 321.839996337891 652" +*ImageableArea EnvC5/C5 Envelope 162x229mm: "18 14 441 635" +*ImageableArea EnvB5/B5 Envelope 176x250mm: "18 14 481 695" +*DefaultPaperDimension: A4 +*PaperDimension Card3x5/Index Card 3x5in: "216 360" +*PaperDimension Hagaki/Hagaki 100x148mm: "284 420" +*PaperDimension Photo4x6/Photo 4x6in: "288 432" +*PaperDimension A6/A6 105x148mm: "297.359985351562 419.760009765625" +*PaperDimension Photo5x7/Photo 5x7in: "360 504" +*PaperDimension Card5x8/Index Card 5x8in: "360 576" +*PaperDimension Oufuku/Oufuku-Hagaki 148x200mm: "567 420" +*PaperDimension A5/A5 148x210mm: "419.760009765625 595.440002441406" +*PaperDimension B5/B5 176x250mm: "498.959991455078 708.47998046875" +*PaperDimension JB5/JB5 182x257mm: "516.239990234375 728.640014648438" +*PaperDimension Executive/Executive 7.25x10.5in: "522 756" +*PaperDimension 16k/16k 7.75x10.75in: "558 774" +*PaperDimension Letter/Letter 8.5x11in: "612 792" +*PaperDimension A4/A4 210x297mm: "595.440002441406 841.679992675781" +*PaperDimension ExecutiveJIS/Executive (JIS) 8.5x12.986in: "612 936" +*PaperDimension FLSA/American Foolscap 8.5x13in: "612 936" +*PaperDimension Legal/Legal 8.5x14in: "612 1008" +*PaperDimension EnvA2/A2 Envelope 4.37x5.75in: "314.640014648438 414" +*PaperDimension EnvC6/C6 Envelope 114x162mm: "323.279998779297 459.359985351562" +*PaperDimension EnvChou4/#4 Japanese Envelope 90x205mm: "254.880004882812 581.039978027344" +*PaperDimension EnvMonarch/Monarch Envelope 3.875x7.5in: "279 540" +*PaperDimension EnvDL/DL Envelope 110x220mm: "311.760009765625 623.52001953125" +*PaperDimension Env10/#10 Envelope 4.12x9.5in: "297 684" +*PaperDimension EnvChou3/#3 Japanese Envelope 120x235mm: "339.839996337891 666" +*PaperDimension EnvC5/C5 Envelope 162x229mm: "459 649" +*PaperDimension EnvB5/B5 Envelope 176x250mm: "499 709" +*MaxMediaWidth: "612" +*MaxMediaHeight: "1008" +*HWMargins: 18 14 18 14 +*CustomPageSize True: "pop pop pop <>setpagedevice" +*ParamCustomPageSize Width: 1 points 72 612 +*ParamCustomPageSize Height: 2 points 288 1008 +*ParamCustomPageSize WidthOffset: 3 points 0 0 +*ParamCustomPageSize HeightOffset: 4 points 0 0 +*ParamCustomPageSize Orientation: 5 int 0 0 +*OpenUI *Duplex/Double-Sided Printing: PickOne +*OrderDependency: 10 AnySetup *Duplex +*DefaultDuplex: None +*Duplex DuplexNoTumble/Long Edge (Standard): "<>setpagedevice" +*Duplex DuplexTumble/Short Edge (Flip): "<>setpagedevice" +*Duplex None/Off: "<>setpagedevice" +*CloseUI: *Duplex +*OpenUI *InputSlot/Media Source: PickOne +*OrderDependency: 10 AnySetup *InputSlot +*DefaultInputSlot: Auto +*InputSlot Auto/Auto-Select: "<>setpagedevice" +*InputSlot PhotoTray/Photo Tray: "<>setpagedevice" +*InputSlot Upper/Upper Tray: "<>setpagedevice" +*InputSlot Lower/Lower Tray: "<>setpagedevice" +*InputSlot Envelope/Envelope Feeder: "<>setpagedevice" +*InputSlot LargeCapacity/Large Capacity Tray: "<>setpagedevice" +*InputSlot Manual/Manual Feeder: "<>setpagedevice" +*InputSlot MPTray/Multi Purpose Tray: "<>setpagedevice" +*CloseUI: *InputSlot +*OpenUI *ColorModel/Output Mode: PickOne +*OrderDependency: 10 AnySetup *ColorModel +*DefaultColorModel: Gray +*ColorModel Gray/Grayscale: "<>setpagedevice" +*CloseUI: *ColorModel +*OpenUI *MediaType/Media Type: PickOne +*OrderDependency: 10 AnySetup *MediaType +*DefaultMediaType: Plain +*MediaType Plain/Plain Paper: "<>setpagedevice" +*CloseUI: *MediaType +*OpenUI *OutputMode/Print Quality: PickOne +*OrderDependency: 10 AnySetup *OutputMode +*DefaultOutputMode: Normal +*OutputMode Normal/Normal: "<>setpagedevice" +*OutputMode Draft/Draft (Economy): "<>setpagedevice" +*OutputMode Best/Best: "<>setpagedevice" +*CloseUI: *OutputMode +*OpenGroup: InstallableOptions/Installable Options +*OpenUI *OptionDuplex/Duplexer Installed: Boolean +*OrderDependency: 10 AnySetup *OptionDuplex +*DefaultOptionDuplex: False +*OptionDuplex False/Not Installed: "" +*OptionDuplex True/Installed: "" +*CloseUI: *OptionDuplex +*CloseGroup: InstallableOptions +*DefaultFont: Courier +*Font AvantGarde-Book: Standard "(1.05)" Standard ROM +*Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM +*Font AvantGarde-Demi: Standard "(1.05)" Standard ROM +*Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM +*Font Bookman-Demi: Standard "(1.05)" Standard ROM +*Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM +*Font Bookman-Light: Standard "(1.05)" Standard ROM +*Font Bookman-LightItalic: Standard "(1.05)" Standard ROM +*Font Courier: Standard "(1.05)" Standard ROM +*Font Courier-Bold: Standard "(1.05)" Standard ROM +*Font Courier-BoldOblique: Standard "(1.05)" Standard ROM +*Font Courier-Oblique: Standard "(1.05)" Standard ROM +*Font Helvetica: Standard "(1.05)" Standard ROM +*Font Helvetica-Bold: Standard "(1.05)" Standard ROM +*Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM +*Font Helvetica-Narrow: Standard "(1.05)" Standard ROM +*Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM +*Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM +*Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM +*Font Helvetica-Oblique: Standard "(1.05)" Standard ROM +*Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM +*Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM +*Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM +*Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM +*Font Palatino-Bold: Standard "(1.05)" Standard ROM +*Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM +*Font Palatino-Italic: Standard "(1.05)" Standard ROM +*Font Palatino-Roman: Standard "(1.05)" Standard ROM +*Font Symbol: Special "(001.005)" Special ROM +*Font Times-Bold: Standard "(1.05)" Standard ROM +*Font Times-BoldItalic: Standard "(1.05)" Standard ROM +*Font Times-Italic: Standard "(1.05)" Standard ROM +*Font Times-Roman: Standard "(1.05)" Standard ROM +*Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM +*Font ZapfDingbats: Special "(001.005)" Special ROM +*% End of hp-laserjet_p2015n_series.ppd, 15195 bytes. diff --git a/configfiles/etc/cups/ppd/Salle224.ppd b/configfiles/etc/cups/ppd/Salle224.ppd new file mode 100644 index 0000000..99bf513 --- /dev/null +++ b/configfiles/etc/cups/ppd/Salle224.ppd @@ -0,0 +1,2256 @@ +*PPD-Adobe: "4.3" +*% ================================= +*% Copyright 1992-2015 HP Company +*% Permission is hereby granted, free of charge, to any person obtaining +*% a copy of this software and associated documentation files (the +*% "Software"), to deal in the Software without restriction, including +*% without limitation the rights to use, copy, modify, merge, publish, +*% distribute, sublicense, and/or sell copies of the Software, and to +*% permit persons to whom the Software is furnished to do so, subject to +*% the following conditions: +*% +*% The above copyright notice and this permission notice shall be +*% included in all copies or substantial portions of the Software. +*% +*% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +*% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +*% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +*% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +*% LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +*% OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +*% WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +*% +*% [this is the MIT open source license -- please see www.opensource.org] +*% +*%%%% Created by the CUPS PPD Compiler CUPS v1.7.2. +*% Copyright (c) 2015 HP Development Company, L.P. +*FormatVersion: "4.3" +*FileVersion: "19.12" +*LanguageVersion: English +*LanguageEncoding: ISOLatin1 +*PCFileName: "HPP00052.PPD" +*Product: "(HP Color LaserJet Pro M252n)" +*Product: "(HP Color LaserJet Pro M252c1)" +*Product: "(HP Color LaserJet Pro M252c2)" +*Product: "(HP Color LaserJet Pro M252c3)" +*Product: "(HP Color LaserJet Pro M252c4)" +*Product: "(HP Color LaserJet Pro M252c5)" +*Product: "(HP Color LaserJet Pro M252dw)" +*Product: "(HP Color LaserJet Pro M252c6)" +*Product: "(HP Color LaserJet Pro M252c7)" +*Product: "(HP Color LaserJet Pro M252c8)" +*Product: "(HP Color LaserJet Pro M252c9)" +*Product: "(HP Color LaserJet Pro M252c10)" +*Manufacturer: "HP" +*ModelName: "HP Color LaserJet Pro M252" +*ShortNickName: "HP Color LaserJet Pro M252" +*1284DeviceID: "MFG:Hewlett-Packard;MDL:hp color laserjet pro m252;" +*NickName: "HP Color LaserJet Pro M252 Postscript (recommended)" +*PSVersion: "(3010.107) 3" +*LanguageLevel: "3" +*ColorDevice: True +*DefaultColorSpace: RGB +*FileSystem: False +*Throughput: "19" +*LandscapeOrientation: Plus90 +*TTRasterizer: Type42 +*% Driver-defined attributes... +*Protocols: TBCP +*cupsPJLCharset: "UTF-8" +*HPAccountingInfo: "4" +*HPBOD: "1" +*cupsUIResolver DuplexerVsDuplex: "*Duplex None" +*cupsUIConstraints DuplexerVsDuplex: "*HPOption_Duplexer False *Duplex" +*cupsCommands: "ReportLevels" +*cupsSNMPSupplies: False +*cupsIPPSupplies: False +*cupsMarkerName cyan/Cyan: "" +*cupsMarkerName magenta/Magenta: "" +*cupsMarkerName yellow/Yellow: "" +*cupsMarkerName black/Black: "" +*RequiresPageRegion All: True +*cupsUIResolver PageSizeVsDuplex: "*PageSize Letter *Duplex None" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize 4x6" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize 5x8" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize A6" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize B6" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize Env4x6" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize Postcard" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize DoublePostcardRotated" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize Env10" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize EnvMonarch" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize EnvISOB5" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize EnvC5" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize EnvDL" +*cupsMediaQualifier2: "Duplex" +*cupsMinSize .DuplexTumble.False: "419.00 595.00" +*cupsMinSize .DuplexNoTumble.False: "419.00 595.00" +*DefaultResolution: 600dpi +*cupsUIResolver MediaTypeVsDuplex: "*Duplex None *MediaType Unspecified" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType HPCoverMatte200" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType HPMattePhoto200" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType CardGlossy176220" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType ColorLaserTransparency" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType Labels" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType Envelope" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType HeavyEnvelope" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType OpaqueFilm" +*FreeVM: "62914560" +*cupsVersion: 1.5 +*cupsModelNumber: 0 +*cupsManualCopies: True +*cupsLanguages: "en da de es fi fr it ja ko no nl pt ru sv zh_CN zh_TW" +*cupsFilter: "application/vnd.cups-postscript 0 hpps" +*OpenUI *PageSize/Media Size: PickOne +*OrderDependency: 10 AnySetup *PageSize +*DefaultPageSize: A4 +*PageSize Letter/US Letter: "<>setpagedevice" +*PageSize Legal/US Legal: "<>setpagedevice" +*PageSize Executive/Executive: "<>setpagedevice" +*PageSize FanFoldGermanLegal/Oficio 8.5x13: "<> setpagedevice" +*PageSize 4x6/4x6: "<>setpagedevice" +*PageSize 5x8/5x8: "<>setpagedevice" +*PageSize A4/A4: "<>setpagedevice" +*PageSize A5/A5: "<>setpagedevice" +*PageSize A6/A6: "<>setpagedevice" +*PageSize B5/JIS B5: "<>setpagedevice" +*PageSize B6/JIS B6: "<>setpagedevice" +*PageSize Env4x6/10x15 cm: "<> setpagedevice" +*PageSize Oficio/Oficio 216x340 mm: "<>setpagedevice" +*PageSize 195x270mm/16K 195x270 mm: "<>setpagedevice" +*PageSize 184x260mm/16K 184x260 mm: "<>setpagedevice" +*PageSize 7.75x10.75/16K 197x273 mm: "<>setpagedevice" +*PageSize Postcard/Postcard: "<>setpagedevice" +*PageSize DoublePostcardRotated/Postcard Double Long Edge: "<>setpagedevice" +*PageSize Env10/Envelope #10: "<>setpagedevice" +*PageSize EnvMonarch/Envelope Monarch: "<>setpagedevice" +*PageSize EnvISOB5/Envelope B5: "<>setpagedevice" +*PageSize EnvC5/Envelope C5: "<>setpagedevice" +*PageSize EnvDL/Envelope DL: "<>setpagedevice" +*CloseUI: *PageSize +*OpenUI *PageRegion/Media Size: PickOne +*OrderDependency: 10 AnySetup *PageRegion +*DefaultPageRegion: A4 +*PageRegion Letter/US Letter: "<>setpagedevice" +*PageRegion Legal/US Legal: "<>setpagedevice" +*PageRegion Executive/Executive: "<>setpagedevice" +*PageRegion FanFoldGermanLegal/Oficio 8.5x13: "<> setpagedevice" +*PageRegion 4x6/4x6: "<>setpagedevice" +*PageRegion 5x8/5x8: "<>setpagedevice" +*PageRegion A4/A4: "<>setpagedevice" +*PageRegion A5/A5: "<>setpagedevice" +*PageRegion A6/A6: "<>setpagedevice" +*PageRegion B5/JIS B5: "<>setpagedevice" +*PageRegion B6/JIS B6: "<>setpagedevice" +*PageRegion Env4x6/10x15 cm: "<> setpagedevice" +*PageRegion Oficio/Oficio 216x340 mm: "<>setpagedevice" +*PageRegion 195x270mm/16K 195x270 mm: "<>setpagedevice" +*PageRegion 184x260mm/16K 184x260 mm: "<>setpagedevice" +*PageRegion 7.75x10.75/16K 197x273 mm: "<>setpagedevice" +*PageRegion Postcard/Postcard: "<>setpagedevice" +*PageRegion DoublePostcardRotated/Postcard Double Long Edge: "<>setpagedevice" +*PageRegion Env10/Envelope #10: "<>setpagedevice" +*PageRegion EnvMonarch/Envelope Monarch: "<>setpagedevice" +*PageRegion EnvISOB5/Envelope B5: "<>setpagedevice" +*PageRegion EnvC5/Envelope C5: "<>setpagedevice" +*PageRegion EnvDL/Envelope DL: "<>setpagedevice" +*CloseUI: *PageRegion +*DefaultImageableArea: Letter +*ImageableArea Letter/US Letter: "12 12 600 780" +*ImageableArea Legal/US Legal: "12 12 600 996" +*ImageableArea Executive/Executive: "12 12 510 744" +*ImageableArea FanFoldGermanLegal/Oficio 8.5x13: "12 12 600 924" +*ImageableArea 4x6/4x6: "12 12 276 420" +*ImageableArea 5x8/5x8: "12 12 348 564" +*ImageableArea A4/A4: "12 12 583 830" +*ImageableArea A5/A5: "12 12 408 583" +*ImageableArea A6/A6: "12 12 285 408" +*ImageableArea B5/JIS B5: "12 12 504 717" +*ImageableArea B6/JIS B6: "12 12 351 504" +*ImageableArea Env4x6/10x15 cm: "12 12 276 419" +*ImageableArea Oficio/Oficio 216x340 mm: "12 12 600 952" +*ImageableArea 195x270mm/16K 195x270 mm: "12 12 541 753" +*ImageableArea 184x260mm/16K 184x260 mm: "12 12 510 725" +*ImageableArea 7.75x10.75/16K 197x273 mm: "12 12 546 762" +*ImageableArea Postcard/Postcard: "12 12 271 408" +*ImageableArea DoublePostcardRotated/Postcard Double Long Edge: "12 12 408 555" +*ImageableArea Env10/Envelope #10: "12 12 285 672" +*ImageableArea EnvMonarch/Envelope Monarch: "12 12 267 528" +*ImageableArea EnvISOB5/Envelope B5: "12 12 487 697" +*ImageableArea EnvC5/Envelope C5: "12 12 447 637" +*ImageableArea EnvDL/Envelope DL: "12 12 300 612" +*DefaultPaperDimension: Letter +*PaperDimension Letter/US Letter: "612 792" +*PaperDimension Legal/US Legal: "612 1008" +*PaperDimension Executive/Executive: "522 756" +*PaperDimension FanFoldGermanLegal/Oficio 8.5x13: "612 936" +*PaperDimension 4x6/4x6: "288 432" +*PaperDimension 5x8/5x8: "360 576" +*PaperDimension A4/A4: "595 842" +*PaperDimension A5/A5: "420 595" +*PaperDimension A6/A6: "297 420" +*PaperDimension B5/JIS B5: "516 729" +*PaperDimension B6/JIS B6: "363 516" +*PaperDimension Env4x6/10x15 cm: "288 431" +*PaperDimension Oficio/Oficio 216x340 mm: "612 964" +*PaperDimension 195x270mm/16K 195x270 mm: "553 765" +*PaperDimension 184x260mm/16K 184x260 mm: "522 737" +*PaperDimension 7.75x10.75/16K 197x273 mm: "558 774" +*PaperDimension Postcard/Postcard: "283 420" +*PaperDimension DoublePostcardRotated/Postcard Double Long Edge: "420 567" +*PaperDimension Env10/Envelope #10: "297 684" +*PaperDimension EnvMonarch/Envelope Monarch: "279 540" +*PaperDimension EnvISOB5/Envelope B5: "499 709" +*PaperDimension EnvC5/Envelope C5: "459 649" +*PaperDimension EnvDL/Envelope DL: "312 624" +*MaxMediaWidth: "612" +*MaxMediaHeight: "1008" +*HWMargins: 12 12 12 12 +*CustomPageSize True: "pop pop pop <>setpagedevice" +*ParamCustomPageSize Width: 1 points 216 612 +*ParamCustomPageSize Height: 2 points 360 1008 +*ParamCustomPageSize WidthOffset: 3 points 0 0 +*ParamCustomPageSize HeightOffset: 4 points 0 0 +*ParamCustomPageSize Orientation: 5 int 0 0 +*OpenUI *Duplex/Two-Sided: PickOne +*OrderDependency: 50 AnySetup *Duplex +*DefaultDuplex: None +*Duplex None/Off: "<> setpagedevice" +*Duplex DuplexNoTumble/Long-Edge Binding: "<> setpagedevice" +*Duplex DuplexTumble/Short-Edge Binding: "<> setpagedevice" +*CloseUI: *Duplex +*OpenUI *InputSlot/Paper Feed: PickOne +*OrderDependency: 40 AnySetup *InputSlot +*DefaultInputSlot: Auto +*InputSlot Auto/Automatic: " + <> setpagedevice" +*End +*da.InputSlot Auto/Automatisk: "" +*de.InputSlot Auto/Automatisch: "" +*es.InputSlot Auto/Automático: "" +*fi.InputSlot Auto/Automaattinen: "" +*fr.InputSlot Auto/Automatique: "" +*it.InputSlot Auto/Automatico: "" +*ja.InputSlot Auto/自動: "" +*ko.InputSlot Auto/자동: "" +*nl.InputSlot Auto/Automatisch: "" +*no.InputSlot Auto/Automatisk: "" +*pt.InputSlot Auto/Automático: "" +*ru.InputSlot Auto/Автоматически: "" +*sv.InputSlot Auto/Automatiskt: "" +*zh_CN.InputSlot Auto/自动: "" +*zh_TW.InputSlot Auto/自動: "" + +*InputSlot Tray1/Tray 1: "<> setpagedevice" +*InputSlot Tray2/Tray 2: "<> setpagedevice" +*InputSlot ManualFeed/Manual Feed: "<> setpagedevice" +*CloseUI: *InputSlot +*OpenGroup: InstallableOptions/Installable Options +*OpenUI *HPOption_Duplexer/Duplex Unit: Boolean +*OrderDependency: 0 AnySetup *HPOption_Duplexer +*DefaultHPOption_Duplexer: True +*HPOption_Duplexer True/On: "" +*HPOption_Duplexer False/Off: "" +*CloseUI: *HPOption_Duplexer +*CloseGroup: InstallableOptions +*OpenGroup: HPColorOptionsPanel/Color +*OpenUI *HPPJLColorAsGray/Print Color as Gray: PickOne +*OrderDependency: 20 AnySetup *HPPJLColorAsGray +*DefaultHPPJLColorAsGray: no +*HPPJLColorAsGray yes/On: " " +*HPPJLColorAsGray no/Off: " " +*CloseUI: *HPPJLColorAsGray +*OpenUI *HPRGBEmulation/RGB Color: PickOne +*OrderDependency: 57 AnySetup *HPRGBEmulation +*DefaultHPRGBEmulation: DefaultSRGB +*HPRGBEmulation DefaultSRGB/Default (sRGB): " + globaldict /ColorSmartColorMatching known { + MatchScreen ColorSmartImageAdjustment + } if + " +*End +*HPRGBEmulation PhotoSRGB/Photo (sRGB): " + globaldict /ColorSmartColorMatching known { + PhotoQuality ColorSmartImageAdjustment + } if + " +*End +*HPRGBEmulation Adobe/Photo (Adobe RGB 1998): " + globaldict /ColorSmartColorMatching known { + AdobeRGB ColorSmartImageAdjustment + } if + " +*End +*HPRGBEmulation VividSRGB/Vivid (sRGB): " + globaldict /ColorSmartColorMatching known { + Vivid ColorSmartImageAdjustment + } if + " +*End +*HPRGBEmulation HPRGBEmulationNone/None: " + globaldict /ColorSmartColorMatching known { + NoAdj ColorSmartImageAdjustment + } if + " +*End +*CloseUI: *HPRGBEmulation +*OpenUI *HPEdgeControl/Edge Control: PickOne +*OrderDependency: 57 AnySetup *HPEdgeControl +*DefaultHPEdgeControl: Normal +*HPEdgeControl HPEdgeControlOff/Off: " + globaldict /HPTextAdaptiveHalftoning known { + false HPTextAdaptiveHalftoning + false HPGraphicsAdaptiveHalftoning + false HPImageAdaptiveHalftoning + } if + globaldict /HPColorTrapping known { + Off HPColorTrapping + } if + " +*End +*HPEdgeControl Light/Light: " + globaldict /HPTextAdaptiveHalftoning known { + true HPTextAdaptiveHalftoning + true HPGraphicsAdaptiveHalftoning + true HPImageAdaptiveHalftoning + } if + globaldict /HPColorTrapping known { + Light HPColorTrapping + } if + " +*End +*HPEdgeControl Normal/Normal: " + globaldict /HPTextAdaptiveHalftoning known { + true HPTextAdaptiveHalftoning + true HPGraphicsAdaptiveHalftoning + true HPImageAdaptiveHalftoning + } if + globaldict /HPColorTrapping known { + Normal HPColorTrapping + } if + " +*End +*HPEdgeControl Max/Maximum: " + globaldict /HPTextAdaptiveHalftoning known { + true HPTextAdaptiveHalftoning + true HPGraphicsAdaptiveHalftoning + true HPImageAdaptiveHalftoning + } if + globaldict /HPColorTrapping known { + Max HPColorTrapping + } if + " +*End +*CloseUI: *HPEdgeControl +*OpenUI *HPGeneralHalftone/Halftone: PickOne +*OrderDependency: 57 AnySetup *HPGeneralHalftone +*DefaultHPGeneralHalftone: Smooth +*HPGeneralHalftone Smooth/Smooth: " + globaldict /ColorSmartColorMatching known { + Smooth ColorSmartGraphicsHalftone + Smooth ColorSmartImageHalftone + Smooth ColorSmartTextHalftone + } if + " +*End +*HPGeneralHalftone Detail/Detail: " + globaldict /ColorSmartColorMatching known { + Detail ColorSmartGraphicsHalftone + Detail ColorSmartImageHalftone + Detail ColorSmartTextHalftone + } if + " +*End +*CloseUI: *HPGeneralHalftone +*OpenUI *HPTextNeutralGrays/Text Neutral Grays: PickOne +*OrderDependency: 57 AnySetup *HPTextNeutralGrays +*DefaultHPTextNeutralGrays: Black +*HPTextNeutralGrays Black/Black Only: " + globaldict /HPTextNeutralAxis known { + TonerBlack HPTextNeutralAxis + } if + " +*End +*HPTextNeutralGrays ProcessBlack/4-Color: " + globaldict /HPTextNeutralAxis known { + ProcBlack HPTextNeutralAxis + } if + " +*End +*CloseUI: *HPTextNeutralGrays +*OpenUI *HPGraphicsNeutralGrays/Graphics Neutral Grays: PickOne +*OrderDependency: 57 AnySetup *HPGraphicsNeutralGrays +*DefaultHPGraphicsNeutralGrays: Black +*HPGraphicsNeutralGrays Black/Black Only: " + globaldict /HPGraphicsNeutralAxis known { + TonerBlack HPGraphicsNeutralAxis + } if + " +*End +*HPGraphicsNeutralGrays ProcessBlack/4-Color: " + globaldict /HPGraphicsNeutralAxis known { + ProcBlack HPGraphicsNeutralAxis + } if + " +*End +*CloseUI: *HPGraphicsNeutralGrays +*OpenUI *HPPhotoNeutralGrays/Photo Neutral Grays: PickOne +*OrderDependency: 57 AnySetup *HPPhotoNeutralGrays +*DefaultHPPhotoNeutralGrays: ProcessBlack +*HPPhotoNeutralGrays Black/Black Only: " + globaldict /HPImageNeutralAxis known { + TonerBlack HPImageNeutralAxis + } if + " +*End +*HPPhotoNeutralGrays ProcessBlack/4-Color: " + globaldict /HPImageNeutralAxis known { + ProcBlack HPImageNeutralAxis + } if + " +*End +*CloseUI: *HPPhotoNeutralGrays +*CloseGroup: HPColorOptionsPanel +*OpenGroup: HPPaperQualityPanel/Paper/Quality +*OpenUI *HPPJLEconoMode/EconoMode: Boolean +*OrderDependency: 20 AnySetup *HPPJLEconoMode +*DefaultHPPJLEconoMode: False +*HPPJLEconoMode True/On: " " +*HPPJLEconoMode False/Off: " " +*CloseUI: *HPPJLEconoMode +*OpenUI *MediaType/Media Type: PickOne +*OrderDependency: 20 AnySetup *MediaType +*DefaultMediaType: Unspecified +*MediaType Unspecified/Unspecified: "<> setpagedevice" +*MediaType Plain/Plain: "<> setpagedevice" +*MediaType HPEcoSMARTLite/HP EcoSMART Lite: "<> setpagedevice" +*MediaType HPLaserJet90/HP LaserJet 90g: "<> setpagedevice" +*MediaType HPColorLaserMatte105/HP Color Laser Matte 105g: "<> setpagedevice" +*MediaType HPPremiumChoiceMatte120/HP Premium Choice Matte 120g: "<> setpagedevice" +*MediaType HPBrochureMatte150/HP Brochure Matte 150g: "<> setpagedevice" +*MediaType HPCoverMatte200/HP Cover Matte 200g: "<> setpagedevice" +*MediaType HPMattePhoto200/HP Matte Photo 200g: "<> setpagedevice" +*MediaType HPPremiumPresentationGlossy120/HP Premium Presentation Glossy 120g: "<> setpagedevice" +*MediaType HPBrochureGlossy150/HP Brochure Glossy 150g: "<> setpagedevice" +*MediaType HPTrifoldBrochureGlossy150/HP Tri-fold Brochure Glossy 150g: "<> setpagedevice" +*MediaType HPBrochureGlossy200/HP Brochure Glossy 200g: "<> setpagedevice" +*MediaType Light6074/Light 60-74g: "<> setpagedevice" +*MediaType Intermediate8595/Intermediate 85-95g: "<> setpagedevice" +*MediaType MidWeight96110/Mid-Weight 96-110g: "<> setpagedevice" +*MediaType Heavy111130/Heavy 111-130g: "<> setpagedevice" +*MediaType ExtraHeavy131175/Extra Heavy 131-175g: "<> setpagedevice" +*MediaType HeavyGlossy111130/Heavy Glossy 111-130g: "<> setpagedevice" +*MediaType ExtraHeavyGlossy131175/Extra Heavy Glossy 131-175g: "<> setpagedevice" +*MediaType CardGlossy176220/Card Glossy 176-220g: "<> setpagedevice" +*MediaType ColorLaserTransparency/Color Laser Transparency: "<> setpagedevice" +*MediaType Labels/Labels: "<> setpagedevice" +*MediaType Letterhead/Letterhead: "<> setpagedevice" +*MediaType Envelope/Envelope: "<> setpagedevice" +*MediaType HeavyEnvelope/Heavy Envelope: "<> setpagedevice" +*MediaType Preprinted/Preprinted: "<> setpagedevice" +*MediaType Prepunched/Prepunched: "<> setpagedevice" +*MediaType Colored/Colored: "<> setpagedevice" +*MediaType Bond/Bond: "<> setpagedevice" +*MediaType Recycled/Recycled: "<> setpagedevice" +*MediaType Rough/Rough: "<> setpagedevice" +*MediaType HeavyRough/Heavy Rough: "<> setpagedevice" +*MediaType OpaqueFilm/Opaque Film: "<> setpagedevice" +*CloseUI: *MediaType +*CloseGroup: HPPaperQualityPanel +*da.Translation Manufacturer/HP: "" +*da.Translation ModelName/HP Color LaserJet Pro M252: "" +*da.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*da.Translation NickName/HP Color LaserJet Pro M252: "" +*da.Translation PageSize/Mediestørrelse: "" +*da.PageSize Letter/US Letter: "" +*da.PageSize Legal/US Legal: "" +*da.PageSize Executive/Executive: "" +*da.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*da.PageSize 4x6/4x6: "" +*da.PageSize 5x8/5x8: "" +*da.PageSize A4/A4: "" +*da.PageSize A5/A5: "" +*da.PageSize A6/A6: "" +*da.PageSize B5/JIS B5: "" +*da.PageSize B6/JIS B6: "" +*da.PageSize Env4x6/10x15 cm: "" +*da.PageSize Oficio/Oficio 216x340 mm: "" +*da.PageSize 195x270mm/16K 195x270 mm: "" +*da.PageSize 184x260mm/16K 184x260 mm: "" +*da.PageSize 7.75x10.75/16K 197x273 mm: "" +*da.PageSize Postcard/Postcard: "" +*da.PageSize DoublePostcardRotated/Postkort, dobbelt - lang kant: "" +*da.PageSize Env10/Konv Comm10: "" +*da.PageSize EnvMonarch/Konv Monarch: "" +*da.PageSize EnvISOB5/Konv ISO B5: "" +*da.PageSize EnvC5/Konv C5: "" +*da.PageSize EnvDL/Konv DL: "" +*da.Translation Duplex/Dupleks: "" +*da.Duplex None/Fra: "" +*da.Duplex DuplexNoTumble/Indbinding på den lange led: "" +*da.Duplex DuplexTumble/Indbinding på den korte led: "" +*da.Translation InputSlot/Papirforsyning: "" +*da.InputSlot Tray1/Bakke 1: "" +*da.InputSlot Tray2/Bakke 2: "" +*da.InputSlot ManualFeed/Manuel indføring: "" +*da.Translation InstallableOptions/Installable Options: "" +*da.Translation HPOption_Duplexer/Dupleksudskrivningsudstyr: "" +*da.HPOption_Duplexer True/Til: "" +*da.HPOption_Duplexer False/Fra: "" +*da.Translation HPColorOptionsPanel/Farve: "" +*da.Translation HPPJLColorAsGray/Udskriv farve som grå: "" +*da.HPPJLColorAsGray yes/Til: "" +*da.HPPJLColorAsGray no/Fra: "" +*da.Translation HPRGBEmulation/RGB-farve: "" +*da.HPRGBEmulation DefaultSRGB/Standard (sRGB): "" +*da.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*da.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*da.HPRGBEmulation VividSRGB/Livlig (sRGB): "" +*da.HPRGBEmulation HPRGBEmulationNone/Ingen: "" +*da.Translation HPEdgeControl/Kantstyring: "" +*da.HPEdgeControl HPEdgeControlOff/Fra: "" +*da.HPEdgeControl Light/Lys: "" +*da.HPEdgeControl Normal/Normal: "" +*da.HPEdgeControl Max/Maksimum: "" +*da.Translation HPGeneralHalftone/Halvtone: "" +*da.HPGeneralHalftone Smooth/Jævn: "" +*da.HPGeneralHalftone Detail/Detaljer: "" +*da.Translation HPTextNeutralGrays/Tekst i neutral grå: "" +*da.HPTextNeutralGrays Black/Kun sort: "" +*da.HPTextNeutralGrays ProcessBlack/4-farve: "" +*da.Translation HPGraphicsNeutralGrays/Grafik i neutral grå: "" +*da.HPGraphicsNeutralGrays Black/Kun sort: "" +*da.HPGraphicsNeutralGrays ProcessBlack/4-farve: "" +*da.Translation HPPhotoNeutralGrays/Fotografier i neutral grå: "" +*da.HPPhotoNeutralGrays Black/Kun sort: "" +*da.HPPhotoNeutralGrays ProcessBlack/4-farve: "" +*da.Translation HPPaperQualityPanel/Paper/Quality: "" +*da.Translation HPPJLEconoMode/EconoMode: "" +*da.HPPJLEconoMode True/Til: "" +*da.HPPJLEconoMode False/Fra: "" +*da.Translation MediaType/Medietype: "" +*da.MediaType Unspecified/Uspecificeret: "" +*da.MediaType Plain/Almindeligt: "" +*da.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*da.MediaType HPLaserJet90/HP LaserJet 90g: "" +*da.MediaType HPColorLaserMatte105/HP Color Laser, mat 105g: "" +*da.MediaType HPPremiumChoiceMatte120/HP Premium Choice, mat 120g: "" +*da.MediaType HPBrochureMatte150/HP brochurepapir, mat 150g: "" +*da.MediaType HPCoverMatte200/HP Omslag, mat 200g: "" +*da.MediaType HPMattePhoto200/HP Foto, mat 200g: "" +*da.MediaType HPPremiumPresentationGlossy120/HP Premium-præsentationspapir, Blankt 120g: "" +*da.MediaType HPBrochureGlossy150/HP brochurepapir, Blankt 150g: "" +*da.MediaType HPTrifoldBrochureGlossy150/HP brochurepapir foldet tre gange, Blankt, 150g: "" +*da.MediaType HPBrochureGlossy200/HP brochurepapir, Blankt 200g: "" +*da.MediaType Light6074/Let 60-74g: "" +*da.MediaType Intermediate8595/Mellem 85-95g: "" +*da.MediaType MidWeight96110/Mellemkraftigt 96-110g: "" +*da.MediaType Heavy111130/Kraftigt 111-130g: "" +*da.MediaType ExtraHeavy131175/Ekstra kraftigt 131-175g: "" +*da.MediaType HeavyGlossy111130/Kraftigt blankt 111-130g: "" +*da.MediaType ExtraHeavyGlossy131175/Ekstra tykt og blankt 131-175g: "" +*da.MediaType CardGlossy176220/Kort, blankt 176-220g: "" +*da.MediaType ColorLaserTransparency/Color Laser-transparent: "" +*da.MediaType Labels/Etiketter: "" +*da.MediaType Letterhead/Brevpapir: "" +*da.MediaType Envelope/Konvolut: "" +*da.MediaType HeavyEnvelope/Kraftig konvolut: "" +*da.MediaType Preprinted/Fortrykt: "" +*da.MediaType Prepunched/Hullet: "" +*da.MediaType Colored/Farvet: "" +*da.MediaType Bond/Bankpost: "" +*da.MediaType Recycled/Genbrug: "" +*da.MediaType Rough/Groft: "" +*da.MediaType HeavyRough/Kraftigt, groft: "" +*da.MediaType OpaqueFilm/Uigennemskinnelig film: "" +*da.APPrinterPreset ChartsAndGraphs/Diagrammer og grafik: "" +*da.cupsICCProfile RGB../sRGB Matching Profile: "" +*da.cupsICCProfile CMYK../CMYK Matching Profile: "" +*da.cupsICCProfile Gray../Gray Matching Profile: "" +*da.cupsMarkerName cyan/Cyan: "" +*da.cupsMarkerName magenta/Magenta: "" +*da.cupsMarkerName yellow/Gul: "" +*da.cupsMarkerName black/Sort: "" +*de.Translation Manufacturer/HP: "" +*de.Translation ModelName/HP Color LaserJet Pro M252: "" +*de.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*de.Translation NickName/HP Color LaserJet Pro M252: "" +*de.Translation PageSize/Mediengröße: "" +*de.PageSize Letter/US Letter: "" +*de.PageSize Legal/US Legal: "" +*de.PageSize Executive/Executive: "" +*de.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*de.PageSize 4x6/4x6: "" +*de.PageSize 5x8/5x8: "" +*de.PageSize A4/A4: "" +*de.PageSize A5/A5: "" +*de.PageSize A6/A6: "" +*de.PageSize B5/JIS B5: "" +*de.PageSize B6/JIS B6: "" +*de.PageSize Env4x6/10x15 cm: "" +*de.PageSize Oficio/Oficio 216x340 mm: "" +*de.PageSize 195x270mm/16K 195x270 mm: "" +*de.PageSize 184x260mm/16K 184x260 mm: "" +*de.PageSize 7.75x10.75/16K 197x273 mm: "" +*de.PageSize Postcard/Postcard: "" +*de.PageSize DoublePostcardRotated/Postkarte - Doppelt - breite Seite: "" +*de.PageSize Env10/Umschlag Comm10: "" +*de.PageSize EnvMonarch/Umschlag Monarch: "" +*de.PageSize EnvISOB5/Umschlag ISO B5: "" +*de.PageSize EnvC5/Umschlag C5: "" +*de.PageSize EnvDL/Umschlag DL: "" +*de.Translation Duplex/Beidseitig: "" +*de.Duplex None/Aus: "" +*de.Duplex DuplexNoTumble/Bindung an langer Kante: "" +*de.Duplex DuplexTumble/Bindung an kurzer Kante: "" +*de.Translation InputSlot/Papiereinzug: "" +*de.InputSlot Tray1/Zufuhrfach 1: "" +*de.InputSlot Tray2/Zufuhrfach 2: "" +*de.InputSlot ManualFeed/Manuelle Zufuhr: "" +*de.Translation InstallableOptions/Installable Options: "" +*de.Translation HPOption_Duplexer/Duplexdruck-Zubehör: "" +*de.HPOption_Duplexer True/Ein: "" +*de.HPOption_Duplexer False/Aus: "" +*de.Translation HPColorOptionsPanel/Farbe: "" +*de.Translation HPPJLColorAsGray/In Graustufen drucken: "" +*de.HPPJLColorAsGray yes/Ein: "" +*de.HPPJLColorAsGray no/Aus: "" +*de.Translation HPRGBEmulation/RGB-Farbe: "" +*de.HPRGBEmulation DefaultSRGB/Standard (sRGB): "" +*de.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*de.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*de.HPRGBEmulation VividSRGB/Leuchtend (sRGB): "" +*de.HPRGBEmulation HPRGBEmulationNone/Keine: "" +*de.Translation HPEdgeControl/Randsteuerung: "" +*de.HPEdgeControl HPEdgeControlOff/Aus: "" +*de.HPEdgeControl Light/Hell: "" +*de.HPEdgeControl Normal/Normal: "" +*de.HPEdgeControl Max/Maximal: "" +*de.Translation HPGeneralHalftone/Halbton: "" +*de.HPGeneralHalftone Smooth/Geglättet: "" +*de.HPGeneralHalftone Detail/Detailliert: "" +*de.Translation HPTextNeutralGrays/Text - neutrales Grau: "" +*de.HPTextNeutralGrays Black/Nur Schwarz: "" +*de.HPTextNeutralGrays ProcessBlack/4-Farbig: "" +*de.Translation HPGraphicsNeutralGrays/Grafik - neutrales Grau: "" +*de.HPGraphicsNeutralGrays Black/Nur Schwarz: "" +*de.HPGraphicsNeutralGrays ProcessBlack/4-Farbig: "" +*de.Translation HPPhotoNeutralGrays/Foto - neutrales Grau: "" +*de.HPPhotoNeutralGrays Black/Nur Schwarz: "" +*de.HPPhotoNeutralGrays ProcessBlack/4-Farbig: "" +*de.Translation HPPaperQualityPanel/Paper/Quality: "" +*de.Translation HPPJLEconoMode/EconoMode: "" +*de.HPPJLEconoMode True/Ein: "" +*de.HPPJLEconoMode False/Aus: "" +*de.Translation MediaType/Druckmedientyp: "" +*de.MediaType Unspecified/Nicht bestimmt: "" +*de.MediaType Plain/Normalpapier: "" +*de.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*de.MediaType HPLaserJet90/HP LaserJet, 90g: "" +*de.MediaType HPColorLaserMatte105/HP Color Laser 105g, matt: "" +*de.MediaType HPPremiumChoiceMatte120/HP Premium Choice 120g, matt: "" +*de.MediaType HPBrochureMatte150/HP Broschürenpapier, matt 150g: "" +*de.MediaType HPCoverMatte200/HP Deckblattpapier 200g, matt: "" +*de.MediaType HPMattePhoto200/HP Fotopapier, matt 200g: "" +*de.MediaType HPPremiumPresentationGlossy120/HP Premium Präsentationspapier, hochglänzend 120g: "" +*de.MediaType HPBrochureGlossy150/HP Broschürenpapier, hochglänzend 150g: "" +*de.MediaType HPTrifoldBrochureGlossy150/HP Broschürenpapier, dreifach gefaltet, hochglänzend 150g: "" +*de.MediaType HPBrochureGlossy200/HP Broschürenpapier, hochglänzend 200g: "" +*de.MediaType Light6074/Leicht 60-74g: "" +*de.MediaType Intermediate8595/Mittelschwer 85-95g: "" +*de.MediaType MidWeight96110/Mittleres Gewicht 96-110g: "" +*de.MediaType Heavy111130/Schwer 111-130g: "" +*de.MediaType ExtraHeavy131175/Sehr schwer 131-175g: "" +*de.MediaType HeavyGlossy111130/Hochglanz, schwer 111-130g: "" +*de.MediaType ExtraHeavyGlossy131175/Hochglanz, extraschwer 131-175g: "" +*de.MediaType CardGlossy176220/Karte 176-220g, hochglänzend: "" +*de.MediaType ColorLaserTransparency/Color Laser-Transparentfolie: "" +*de.MediaType Labels/Etiketten: "" +*de.MediaType Letterhead/Briefkopfpapier: "" +*de.MediaType Envelope/Briefumschlag: "" +*de.MediaType HeavyEnvelope/Schwerer Briefumschlag: "" +*de.MediaType Preprinted/Vordruckpapier: "" +*de.MediaType Prepunched/Vorgelochtes Papier: "" +*de.MediaType Colored/Farbig: "" +*de.MediaType Bond/Briefpapier: "" +*de.MediaType Recycled/Recyclingpapier: "" +*de.MediaType Rough/Rauhpapier: "" +*de.MediaType HeavyRough/Schwer Rau: "" +*de.MediaType OpaqueFilm/Folie, opak: "" +*de.APPrinterPreset ChartsAndGraphs/Diagramme & Grafiken: "" +*de.cupsICCProfile RGB../sRGB Matching Profile: "" +*de.cupsICCProfile CMYK../CMYK Matching Profile: "" +*de.cupsICCProfile Gray../Gray Matching Profile: "" +*de.cupsMarkerName cyan/Zyan: "" +*de.cupsMarkerName magenta/Magenta: "" +*de.cupsMarkerName yellow/Gelb: "" +*de.cupsMarkerName black/Schwarz: "" +*es.Translation Manufacturer/HP: "" +*es.Translation ModelName/HP Color LaserJet Pro M252: "" +*es.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*es.Translation NickName/HP Color LaserJet Pro M252: "" +*es.Translation PageSize/Tamaño de papel: "" +*es.PageSize Letter/US Letter: "" +*es.PageSize Legal/US Legal: "" +*es.PageSize Executive/Ejecutivo: "" +*es.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*es.PageSize 4x6/4x6: "" +*es.PageSize 5x8/5x8: "" +*es.PageSize A4/A4: "" +*es.PageSize A5/A5: "" +*es.PageSize A6/A6: "" +*es.PageSize B5/JIS B5: "" +*es.PageSize B6/JIS B6: "" +*es.PageSize Env4x6/10x15 cm: "" +*es.PageSize Oficio/Oficio 216x340 mm: "" +*es.PageSize 195x270mm/16K 195x270 mm: "" +*es.PageSize 184x260mm/16K 184x260 mm: "" +*es.PageSize 7.75x10.75/16K 197x273 mm: "" +*es.PageSize Postcard/Postcard: "" +*es.PageSize DoublePostcardRotated/Postal doble borde largo: "" +*es.PageSize Env10/Sobre Comm10: "" +*es.PageSize EnvMonarch/Sobre Monarch: "" +*es.PageSize EnvISOB5/Sobre ISO B5: "" +*es.PageSize EnvC5/Sobre C5: "" +*es.PageSize EnvDL/Sobre DL: "" +*es.Translation Duplex/A doble cara: "" +*es.Duplex None/Desactivado: "" +*es.Duplex DuplexNoTumble/Encuadernación de borde largo: "" +*es.Duplex DuplexTumble/Encuadernación de borde corto: "" +*es.Translation InputSlot/Alimentador de papel: "" +*es.InputSlot Tray1/Bandeja 1: "" +*es.InputSlot Tray2/Bandeja 2: "" +*es.InputSlot ManualFeed/Alimentación manual: "" +*es.Translation InstallableOptions/Installable Options: "" +*es.Translation HPOption_Duplexer/Accesorio para impresión dúplex: "" +*es.HPOption_Duplexer True/Activado: "" +*es.HPOption_Duplexer False/Desactivado: "" +*es.Translation HPColorOptionsPanel/Color: "" +*es.Translation HPPJLColorAsGray/Imprimir colores en gris: "" +*es.HPPJLColorAsGray yes/Activado: "" +*es.HPPJLColorAsGray no/Desactivado: "" +*es.Translation HPRGBEmulation/Color RGB: "" +*es.HPRGBEmulation DefaultSRGB/Predeterminado (sRGB): "" +*es.HPRGBEmulation PhotoSRGB/Fotografía (sRGB): "" +*es.HPRGBEmulation Adobe/Fotografía (Adobe RGB 1998): "" +*es.HPRGBEmulation VividSRGB/Intenso (sRGB): "" +*es.HPRGBEmulation HPRGBEmulationNone/Ninguno: "" +*es.Translation HPEdgeControl/Control de bordes: "" +*es.HPEdgeControl HPEdgeControlOff/Desactivado: "" +*es.HPEdgeControl Light/Claro: "" +*es.HPEdgeControl Normal/Normal: "" +*es.HPEdgeControl Max/Máximo: "" +*es.Translation HPGeneralHalftone/Medios tonos: "" +*es.HPGeneralHalftone Smooth/Uniforme: "" +*es.HPGeneralHalftone Detail/Detalle: "" +*es.Translation HPTextNeutralGrays/Gris neutro de texto: "" +*es.HPTextNeutralGrays Black/Sólo negro: "" +*es.HPTextNeutralGrays ProcessBlack/4 colores: "" +*es.Translation HPGraphicsNeutralGrays/Gris neutro de gráfico: "" +*es.HPGraphicsNeutralGrays Black/Sólo negro: "" +*es.HPGraphicsNeutralGrays ProcessBlack/4 colores: "" +*es.Translation HPPhotoNeutralGrays/Gris neutro de fotografías: "" +*es.HPPhotoNeutralGrays Black/Sólo negro: "" +*es.HPPhotoNeutralGrays ProcessBlack/4 colores: "" +*es.Translation HPPaperQualityPanel/Paper/Quality: "" +*es.Translation HPPJLEconoMode/EconoMode: "" +*es.HPPJLEconoMode True/Activado: "" +*es.HPPJLEconoMode False/Desactivado: "" +*es.Translation MediaType/Tipo de sustrato: "" +*es.MediaType Unspecified/No especificado: "" +*es.MediaType Plain/Estándar: "" +*es.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*es.MediaType HPLaserJet90/HP LaserJet 90g: "" +*es.MediaType HPColorLaserMatte105/Impresión láser color mate HP 105g: "" +*es.MediaType HPPremiumChoiceMatte120/HP Premium Choice satinado 120g: "" +*es.MediaType HPBrochureMatte150/Prospecto HP mate 150g: "" +*es.MediaType HPCoverMatte200/Portada mate HP 200g: "" +*es.MediaType HPMattePhoto200/Fotográfico mate HP 200g: "" +*es.MediaType HPPremiumPresentationGlossy120/Presentaciones HP Premium satinadas 120g: "" +*es.MediaType HPBrochureGlossy150/Prospecto HP satinado 150g: "" +*es.MediaType HPTrifoldBrochureGlossy150/Prospecto estilo tríptico HP satinado 150g: "" +*es.MediaType HPBrochureGlossy200/Prospecto HP satinado 200g: "" +*es.MediaType Light6074/Ligero 60-74g: "" +*es.MediaType Intermediate8595/Intermedio 85-95g: "" +*es.MediaType MidWeight96110/Peso medio 96-110g: "" +*es.MediaType Heavy111130/Pesado 111-130g: "" +*es.MediaType ExtraHeavy131175/Pesado extra 131-175g: "" +*es.MediaType HeavyGlossy111130/Satinado pesado 111-130g: "" +*es.MediaType ExtraHeavyGlossy131175/Extra grueso brillante 131-175g: "" +*es.MediaType CardGlossy176220/Tarjeta satinado 176-220g: "" +*es.MediaType ColorLaserTransparency/Transparencia impresión láser: "" +*es.MediaType Labels/Etiquetas: "" +*es.MediaType Letterhead/Membrete: "" +*es.MediaType Envelope/Sobre: "" +*es.MediaType HeavyEnvelope/Sobre pesado: "" +*es.MediaType Preprinted/Preimpreso: "" +*es.MediaType Prepunched/Preperforado: "" +*es.MediaType Colored/Coloreado: "" +*es.MediaType Bond/Bond: "" +*es.MediaType Recycled/Reciclado: "" +*es.MediaType Rough/Rugoso: "" +*es.MediaType HeavyRough/Pesado rugoso: "" +*es.MediaType OpaqueFilm/Película opaca: "" +*es.APPrinterPreset ChartsAndGraphs/Cuadros y gráficos: "" +*es.cupsICCProfile RGB../sRGB Matching Profile: "" +*es.cupsICCProfile CMYK../CMYK Matching Profile: "" +*es.cupsICCProfile Gray../Gray Matching Profile: "" +*es.cupsMarkerName cyan/Cian: "" +*es.cupsMarkerName magenta/Magenta: "" +*es.cupsMarkerName yellow/Amarillo: "" +*es.cupsMarkerName black/Negro: "" +*fi.Translation Manufacturer/HP: "" +*fi.Translation ModelName/HP Color LaserJet Pro M252: "" +*fi.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*fi.Translation NickName/HP Color LaserJet Pro M252: "" +*fi.Translation PageSize/Median koko: "" +*fi.PageSize Letter/US Letter: "" +*fi.PageSize Legal/US Legal: "" +*fi.PageSize Executive/Executive: "" +*fi.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*fi.PageSize 4x6/4x6: "" +*fi.PageSize 5x8/5x8: "" +*fi.PageSize A4/A4: "" +*fi.PageSize A5/A5: "" +*fi.PageSize A6/A6: "" +*fi.PageSize B5/JIS B5: "" +*fi.PageSize B6/JIS B6: "" +*fi.PageSize Env4x6/10x15 cm: "" +*fi.PageSize Oficio/Oficio 216x340 mm: "" +*fi.PageSize 195x270mm/16K 195x270 mm: "" +*fi.PageSize 184x260mm/16K 184x260 mm: "" +*fi.PageSize 7.75x10.75/16K 197x273 mm: "" +*fi.PageSize Postcard/Postcard: "" +*fi.PageSize DoublePostcardRotated/Kaksoispostikortti (pitkä reuna): "" +*fi.PageSize Env10/Kirjekuori Comm10: "" +*fi.PageSize EnvMonarch/Kirjekuori Monarch: "" +*fi.PageSize EnvISOB5/Kirjekuori ISO B5: "" +*fi.PageSize EnvC5/Kirjekuori C5: "" +*fi.PageSize EnvDL/Kirjekuori DL: "" +*fi.Translation Duplex/Kaksipuolinen: "" +*fi.Duplex None/Ei käytössä: "" +*fi.Duplex DuplexNoTumble/Sidonta-pitkäreuna: "" +*fi.Duplex DuplexTumble/Sidonta-lyhytreuna: "" +*fi.Translation InputSlot/Paperinsyöttö: "" +*fi.InputSlot Tray1/Lokero 1: "" +*fi.InputSlot Tray2/Lokero 2: "" +*fi.InputSlot ManualFeed/Käsinsyöttö: "" +*fi.Translation InstallableOptions/Installable Options: "" +*fi.Translation HPOption_Duplexer/Kaksipuolisen tulostuksen lisälaite: "" +*fi.HPOption_Duplexer True/Käytössä: "" +*fi.HPOption_Duplexer False/Ei käytössä: "" +*fi.Translation HPColorOptionsPanel/Väri: "" +*fi.Translation HPPJLColorAsGray/Tulosta värit harmaina: "" +*fi.HPPJLColorAsGray yes/Käytössä: "" +*fi.HPPJLColorAsGray no/Ei käytössä: "" +*fi.Translation HPRGBEmulation/RGB-väri: "" +*fi.HPRGBEmulation DefaultSRGB/Oletus (sRGB): "" +*fi.HPRGBEmulation PhotoSRGB/Valokuva (sRGB): "" +*fi.HPRGBEmulation Adobe/Valokuva (Adobe RGB 1998): "" +*fi.HPRGBEmulation VividSRGB/Kirkas (sRGB): "" +*fi.HPRGBEmulation HPRGBEmulationNone/Ei mitään: "" +*fi.Translation HPEdgeControl/Reunojen hallinta: "" +*fi.HPEdgeControl HPEdgeControlOff/Ei käytössä: "" +*fi.HPEdgeControl Light/Vaalea: "" +*fi.HPEdgeControl Normal/Normaali: "" +*fi.HPEdgeControl Max/Maksimi: "" +*fi.Translation HPGeneralHalftone/Puolisävy: "" +*fi.HPGeneralHalftone Smooth/Tasainen: "" +*fi.HPGeneralHalftone Detail/Yksityiskohtainen: "" +*fi.Translation HPTextNeutralGrays/Teksti, neutraali harmaa: "" +*fi.HPTextNeutralGrays Black/Vain musta: "" +*fi.HPTextNeutralGrays ProcessBlack/Neliväri: "" +*fi.Translation HPGraphicsNeutralGrays/Kuva, neutraali harmaa: "" +*fi.HPGraphicsNeutralGrays Black/Vain musta: "" +*fi.HPGraphicsNeutralGrays ProcessBlack/Neliväri: "" +*fi.Translation HPPhotoNeutralGrays/Val., neutraali harmaa: "" +*fi.HPPhotoNeutralGrays Black/Vain musta: "" +*fi.HPPhotoNeutralGrays ProcessBlack/Neliväri: "" +*fi.Translation HPPaperQualityPanel/Paper/Quality: "" +*fi.Translation HPPJLEconoMode/EconoMode: "" +*fi.HPPJLEconoMode True/Käytössä: "" +*fi.HPPJLEconoMode False/Ei käytössä: "" +*fi.Translation MediaType/Tulostusmateriaali: "" +*fi.MediaType Unspecified/Määrittämätön: "" +*fi.MediaType Plain/Tavallinen: "" +*fi.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*fi.MediaType HPLaserJet90/HP LaserJet, 90g: "" +*fi.MediaType HPColorLaserMatte105/HP<3A>n matta värilaser 105g: "" +*fi.MediaType HPPremiumChoiceMatte120/HP Premium Choice, matta 120g: "" +*fi.MediaType HPBrochureMatte150/HP<3A>n matta esite 150g: "" +*fi.MediaType HPCoverMatte200/HP<3A>n matta kansi 200g: "" +*fi.MediaType HPMattePhoto200/HP<3A>n matta valokuva 200g: "" +*fi.MediaType HPPremiumPresentationGlossy120/HP Premium -esitys, kiiltävä 120g: "" +*fi.MediaType HPBrochureGlossy150/HP<3A>n kiiltävä esite 150g: "" +*fi.MediaType HPTrifoldBrochureGlossy150/HP<3A>n kolminkertainen esite 150g: "" +*fi.MediaType HPBrochureGlossy200/HP<3A>n kiiltävä esite 200g: "" +*fi.MediaType Light6074/Kevyt 60-74g: "" +*fi.MediaType Intermediate8595/Keskikoko 85-95g: "" +*fi.MediaType MidWeight96110/Keskipaksu 96-110g: "" +*fi.MediaType Heavy111130/Paksu 111-130g: "" +*fi.MediaType ExtraHeavy131175/Erittäin paksu 131-175g: "" +*fi.MediaType HeavyGlossy111130/Raskas kiiltävä 111-130g: "" +*fi.MediaType ExtraHeavyGlossy131175/Er. raskas kiiltävä 131-175g: "" +*fi.MediaType CardGlossy176220/Kiiltävä kortti 176-220g: "" +*fi.MediaType ColorLaserTransparency/Värilaserkalvo: "" +*fi.MediaType Labels/Tarrat: "" +*fi.MediaType Letterhead/Kirjelomake: "" +*fi.MediaType Envelope/Kirjekuori: "" +*fi.MediaType HeavyEnvelope/Paksu kirjekuori: "" +*fi.MediaType Preprinted/Esipainettu: "" +*fi.MediaType Prepunched/Rei’itetty: "" +*fi.MediaType Colored/Värillinen: "" +*fi.MediaType Bond/Kova asiakirjapaperi: "" +*fi.MediaType Recycled/Uusiopaperi: "" +*fi.MediaType Rough/Karkea: "" +*fi.MediaType HeavyRough/Paksu karkea: "" +*fi.MediaType OpaqueFilm/Läpikuultamaton kalvo: "" +*fi.APPrinterPreset ChartsAndGraphs/Kaaviot ja grafiikka: "" +*fi.cupsICCProfile RGB../sRGB Matching Profile: "" +*fi.cupsICCProfile CMYK../CMYK Matching Profile: "" +*fi.cupsICCProfile Gray../Gray Matching Profile: "" +*fi.cupsMarkerName cyan/Syaani: "" +*fi.cupsMarkerName magenta/Magenta: "" +*fi.cupsMarkerName yellow/Keltainen: "" +*fi.cupsMarkerName black/Musta: "" +*fr.Translation Manufacturer/HP: "" +*fr.Translation ModelName/HP Color LaserJet Pro M252: "" +*fr.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*fr.Translation NickName/HP Color LaserJet Pro M252: "" +*fr.Translation PageSize/Taille du papier: "" +*fr.PageSize Letter/US Letter: "" +*fr.PageSize Legal/US Legal: "" +*fr.PageSize Executive/Exécutif: "" +*fr.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*fr.PageSize 4x6/4x6: "" +*fr.PageSize 5x8/5x8: "" +*fr.PageSize A4/A4: "" +*fr.PageSize A5/A5: "" +*fr.PageSize A6/A6: "" +*fr.PageSize B5/JIS B5: "" +*fr.PageSize B6/JIS B6: "" +*fr.PageSize Env4x6/10x15 cm: "" +*fr.PageSize Oficio/Oficio 216x340 mm: "" +*fr.PageSize 195x270mm/16K 195x270 mm: "" +*fr.PageSize 184x260mm/16K 184x260 mm: "" +*fr.PageSize 7.75x10.75/16K 197x273 mm: "" +*fr.PageSize Postcard/Postcard: "" +*fr.PageSize DoublePostcardRotated/Carte postale double - Long bord: "" +*fr.PageSize Env10/Enveloppe Comm10: "" +*fr.PageSize EnvMonarch/Enveloppe Monarch: "" +*fr.PageSize EnvISOB5/Enveloppe ISO B5: "" +*fr.PageSize EnvC5/Enveloppe C5: "" +*fr.PageSize EnvDL/Enveloppe DL: "" +*fr.Translation Duplex/Recto verso: "" +*fr.Duplex None/Désactivé: "" +*fr.Duplex DuplexNoTumble/Reliure côté long: "" +*fr.Duplex DuplexTumble/Reliure côté court: "" +*fr.Translation InputSlot/Alimentation: "" +*fr.InputSlot Tray1/Bac 1: "" +*fr.InputSlot Tray2/Bac 2: "" +*fr.InputSlot ManualFeed/Alimentation manuelle: "" +*fr.Translation InstallableOptions/Installable Options: "" +*fr.Translation HPOption_Duplexer/Unité recto verso: "" +*fr.HPOption_Duplexer True/Activé: "" +*fr.HPOption_Duplexer False/Désactivé: "" +*fr.Translation HPColorOptionsPanel/Couleur: "" +*fr.Translation HPPJLColorAsGray/Imprimer couleur en gris: "" +*fr.HPPJLColorAsGray yes/Activé: "" +*fr.HPPJLColorAsGray no/Désactivé: "" +*fr.Translation HPRGBEmulation/Couleur RGB: "" +*fr.HPRGBEmulation DefaultSRGB/Par défaut (sRGB): "" +*fr.HPRGBEmulation PhotoSRGB/Photo (sRGB): "" +*fr.HPRGBEmulation Adobe/Photo (Adobe RGB 1998): "" +*fr.HPRGBEmulation VividSRGB/Vive (sRGB): "" +*fr.HPRGBEmulation HPRGBEmulationNone/Aucun: "" +*fr.Translation HPEdgeControl/Contrôle du bord: "" +*fr.HPEdgeControl HPEdgeControlOff/Désactivé: "" +*fr.HPEdgeControl Light/Clair: "" +*fr.HPEdgeControl Normal/Normal: "" +*fr.HPEdgeControl Max/Maximum: "" +*fr.Translation HPGeneralHalftone/Demi-teinte: "" +*fr.HPGeneralHalftone Smooth/Lisse: "" +*fr.HPGeneralHalftone Detail/Détaillées: "" +*fr.Translation HPTextNeutralGrays/Texte gris neutre: "" +*fr.HPTextNeutralGrays Black/Noir uniquement: "" +*fr.HPTextNeutralGrays ProcessBlack/4 couleurs: "" +*fr.Translation HPGraphicsNeutralGrays/Graphiques gris neutre: "" +*fr.HPGraphicsNeutralGrays Black/Noir uniquement: "" +*fr.HPGraphicsNeutralGrays ProcessBlack/4 couleurs: "" +*fr.Translation HPPhotoNeutralGrays/Photo gris neutre: "" +*fr.HPPhotoNeutralGrays Black/Noir uniquement: "" +*fr.HPPhotoNeutralGrays ProcessBlack/4 couleurs: "" +*fr.Translation HPPaperQualityPanel/Paper/Quality: "" +*fr.Translation HPPJLEconoMode/EconoMode: "" +*fr.HPPJLEconoMode True/Activé: "" +*fr.HPPJLEconoMode False/Désactivé: "" +*fr.Translation MediaType/Type de support: "" +*fr.MediaType Unspecified/Non spécifié: "" +*fr.MediaType Plain/Ordinaire: "" +*fr.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*fr.MediaType HPLaserJet90/HP LaserJet 90g: "" +*fr.MediaType HPColorLaserMatte105/Papier couleur laser mat 105g HP: "" +*fr.MediaType HPPremiumChoiceMatte120/Papier 120g mat HP Premium Choice: "" +*fr.MediaType HPBrochureMatte150/HP Brochure Mat 150g: "" +*fr.MediaType HPCoverMatte200/Couverture mate 200g HP: "" +*fr.MediaType HPMattePhoto200/Papier photo mat HP 200g: "" +*fr.MediaType HPPremiumPresentationGlossy120/Papier brillant pour présentation HP Premium 120g: "" +*fr.MediaType HPBrochureGlossy150/HP Brochure Brillant 150g: "" +*fr.MediaType HPTrifoldBrochureGlossy150/Papier pour brochure plié en trois HP, brillant, 150g: "" +*fr.MediaType HPBrochureGlossy200/HP Brochure Brillant 200g: "" +*fr.MediaType Light6074/Fin 60-74g: "" +*fr.MediaType Intermediate8595/Intermédiaire 85-95g: "" +*fr.MediaType MidWeight96110/Grammage moyen 96-110g: "" +*fr.MediaType Heavy111130/Epais 111-130g: "" +*fr.MediaType ExtraHeavy131175/Très épais 131-175g: "" +*fr.MediaType HeavyGlossy111130/Glacé et épais 111-130g: "" +*fr.MediaType ExtraHeavyGlossy131175/Papier glacé extra fort 131-175g: "" +*fr.MediaType CardGlossy176220/Carte brillante 176-220g: "" +*fr.MediaType ColorLaserTransparency/Transpar. laser couleur: "" +*fr.MediaType Labels/Étiquettes: "" +*fr.MediaType Letterhead/Papier à en-tête: "" +*fr.MediaType Envelope/Enveloppe: "" +*fr.MediaType HeavyEnvelope/Enveloppe à fort grammage: "" +*fr.MediaType Preprinted/Préimprimé: "" +*fr.MediaType Prepunched/Perforé: "" +*fr.MediaType Colored/Coloré: "" +*fr.MediaType Bond/Document: "" +*fr.MediaType Recycled/Recyclé: "" +*fr.MediaType Rough/Rugueux: "" +*fr.MediaType HeavyRough/Epais rugueux: "" +*fr.MediaType OpaqueFilm/Film opaque: "" +*fr.APPrinterPreset ChartsAndGraphs/Diagrammes et graphiques: "" +*fr.cupsICCProfile RGB../sRGB Matching Profile: "" +*fr.cupsICCProfile CMYK../CMYK Matching Profile: "" +*fr.cupsICCProfile Gray../Gray Matching Profile: "" +*fr.cupsMarkerName cyan/Cyan: "" +*fr.cupsMarkerName magenta/Magenta: "" +*fr.cupsMarkerName yellow/Jaune: "" +*fr.cupsMarkerName black/Noir: "" +*it.Translation Manufacturer/HP: "" +*it.Translation ModelName/HP Color LaserJet Pro M252: "" +*it.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*it.Translation NickName/HP Color LaserJet Pro M252: "" +*it.Translation PageSize/Dimensione media: "" +*it.PageSize Letter/US Letter: "" +*it.PageSize Legal/US Legal: "" +*it.PageSize Executive/Executive: "" +*it.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*it.PageSize 4x6/4x6: "" +*it.PageSize 5x8/5x8: "" +*it.PageSize A4/A4: "" +*it.PageSize A5/A5: "" +*it.PageSize A6/A6: "" +*it.PageSize B5/JIS B5: "" +*it.PageSize B6/JIS B6: "" +*it.PageSize Env4x6/10x15 cm: "" +*it.PageSize Oficio/Oficio 216x340 mm: "" +*it.PageSize 195x270mm/16K 195x270 mm: "" +*it.PageSize 184x260mm/16K 184x260 mm: "" +*it.PageSize 7.75x10.75/16K 197x273 mm: "" +*it.PageSize Postcard/Postcard: "" +*it.PageSize DoublePostcardRotated/Cartolina doppia Bordo lungo: "" +*it.PageSize Env10/Busta Comm10: "" +*it.PageSize EnvMonarch/Busta Monarch: "" +*it.PageSize EnvISOB5/Busta ISO B5: "" +*it.PageSize EnvC5/Busta C5: "" +*it.PageSize EnvDL/Busta DL: "" +*it.Translation Duplex/Fronte-retro: "" +*it.Duplex None/Disattivato: "" +*it.Duplex DuplexNoTumble/Rilegatura con taglio largo: "" +*it.Duplex DuplexTumble/Rilegatura con taglio stretto: "" +*it.Translation InputSlot/Alimentazione carta: "" +*it.InputSlot Tray1/Vassoio 1: "" +*it.InputSlot Tray2/Vassoio 2: "" +*it.InputSlot ManualFeed/Alimentazione manuale: "" +*it.Translation InstallableOptions/Installable Options: "" +*it.Translation HPOption_Duplexer/Accessorio per stampa duplex: "" +*it.HPOption_Duplexer True/Attivato: "" +*it.HPOption_Duplexer False/Disattivato: "" +*it.Translation HPColorOptionsPanel/Colore: "" +*it.Translation HPPJLColorAsGray/Stampa colore in grigio: "" +*it.HPPJLColorAsGray yes/Attivato: "" +*it.HPPJLColorAsGray no/Disattivato: "" +*it.Translation HPRGBEmulation/Colore RGB: "" +*it.HPRGBEmulation DefaultSRGB/Predefinito (sRGB): "" +*it.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*it.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*it.HPRGBEmulation VividSRGB/Brillante (sRGB): "" +*it.HPRGBEmulation HPRGBEmulationNone/Nessuna: "" +*it.Translation HPEdgeControl/Controllo margine: "" +*it.HPEdgeControl HPEdgeControlOff/Disattivato: "" +*it.HPEdgeControl Light/Chiaro: "" +*it.HPEdgeControl Normal/Normale: "" +*it.HPEdgeControl Max/Massimo: "" +*it.Translation HPGeneralHalftone/Mezzitoni: "" +*it.HPGeneralHalftone Smooth/Uniformi: "" +*it.HPGeneralHalftone Detail/Dettagli: "" +*it.Translation HPTextNeutralGrays/Grigi neutri testo: "" +*it.HPTextNeutralGrays Black/Solo nero: "" +*it.HPTextNeutralGrays ProcessBlack/Quadricromia: "" +*it.Translation HPGraphicsNeutralGrays/Grigi neutri grafici: "" +*it.HPGraphicsNeutralGrays Black/Solo nero: "" +*it.HPGraphicsNeutralGrays ProcessBlack/Quadricromia: "" +*it.Translation HPPhotoNeutralGrays/Grigi neutri fotografie: "" +*it.HPPhotoNeutralGrays Black/Solo nero: "" +*it.HPPhotoNeutralGrays ProcessBlack/Quadricromia: "" +*it.Translation HPPaperQualityPanel/Paper/Quality: "" +*it.Translation HPPJLEconoMode/EconoMode: "" +*it.HPPJLEconoMode True/Attivato: "" +*it.HPPJLEconoMode False/Disattivato: "" +*it.Translation MediaType/Tipo di supporto: "" +*it.MediaType Unspecified/Non specificato: "" +*it.MediaType Plain/Normale: "" +*it.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*it.MediaType HPLaserJet90/HP LaserJet 90g: "" +*it.MediaType HPColorLaserMatte105/Opaca a colori per stampanti laser HP 105g: "" +*it.MediaType HPPremiumChoiceMatte120/Opaca HP alta qualità 120g: "" +*it.MediaType HPBrochureMatte150/Brochure opaca 150g HP: "" +*it.MediaType HPCoverMatte200/Copertina opaca HP 200g: "" +*it.MediaType HPMattePhoto200/Fotografica opaca HP 200g: "" +*it.MediaType HPPremiumPresentationGlossy120/Presentazione lucida ad alta qualità 120g HP: "" +*it.MediaType HPBrochureGlossy150/Brochure lucida 150g HP: "" +*it.MediaType HPTrifoldBrochureGlossy150/Brochure lucida piegata in tre 150g HP: "" +*it.MediaType HPBrochureGlossy200/Brochure lucida 200g HP: "" +*it.MediaType Light6074/Leggera 60-74g: "" +*it.MediaType Intermediate8595/Intermedia 85-95g: "" +*it.MediaType MidWeight96110/Medio spessore 96-110g: "" +*it.MediaType Heavy111130/Pesante 111-130g: "" +*it.MediaType ExtraHeavy131175/Extra Pesante 131-175g: "" +*it.MediaType HeavyGlossy111130/Carta patinata pesante 111-130g: "" +*it.MediaType ExtraHeavyGlossy131175/Lucida pesante extra 131-175g: "" +*it.MediaType CardGlossy176220/Scheda lucida 176-220g: "" +*it.MediaType ColorLaserTransparency/Lucido per stampanti laser a colori: "" +*it.MediaType Labels/Etichette: "" +*it.MediaType Letterhead/Carta intestata: "" +*it.MediaType Envelope/Busta: "" +*it.MediaType HeavyEnvelope/Busta pesante: "" +*it.MediaType Preprinted/Prestampata: "" +*it.MediaType Prepunched/Perforata: "" +*it.MediaType Colored/Colorata: "" +*it.MediaType Bond/Carta fine: "" +*it.MediaType Recycled/Riciclata: "" +*it.MediaType Rough/Ruvida: "" +*it.MediaType HeavyRough/Ruvida pesante: "" +*it.MediaType OpaqueFilm/Pellicola opaca: "" +*it.APPrinterPreset ChartsAndGraphs/Diagrammi e grafici: "" +*it.cupsICCProfile RGB../sRGB Matching Profile: "" +*it.cupsICCProfile CMYK../CMYK Matching Profile: "" +*it.cupsICCProfile Gray../Gray Matching Profile: "" +*it.cupsMarkerName cyan/Ciano: "" +*it.cupsMarkerName magenta/Magenta: "" +*it.cupsMarkerName yellow/Giallo: "" +*it.cupsMarkerName black/Nero: "" +*ja.Translation Manufacturer/HP: "" +*ja.Translation ModelName/HP Color LaserJet Pro M252: "" +*ja.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*ja.Translation NickName/HP Color LaserJet Pro M252: "" +*ja.Translation PageSize/メディアサイズ: "" +*ja.PageSize Letter/US Letter: "" +*ja.PageSize Legal/US Legal: "" +*ja.PageSize Executive/エグゼクティブ: "" +*ja.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*ja.PageSize 4x6/4x6: "" +*ja.PageSize 5x8/5x8: "" +*ja.PageSize A4/A4: "" +*ja.PageSize A5/A5: "" +*ja.PageSize A6/A6: "" +*ja.PageSize B5/JIS B5: "" +*ja.PageSize B6/JIS B6: "" +*ja.PageSize Env4x6/10x15 cm: "" +*ja.PageSize Oficio/Oficio 216x340 mm: "" +*ja.PageSize 195x270mm/16K 195x270 mm: "" +*ja.PageSize 184x260mm/16K 184x260 mm: "" +*ja.PageSize 7.75x10.75/16K 197x273 mm: "" +*ja.PageSize Postcard/Postcard: "" +*ja.PageSize DoublePostcardRotated/往復はがき 横: "" +*ja.PageSize Env10/封筒 Comm10: "" +*ja.PageSize EnvMonarch/封筒 Monarch: "" +*ja.PageSize EnvISOB5/封筒 ISO B5: "" +*ja.PageSize EnvC5/封筒 C5: "" +*ja.PageSize EnvDL/封筒 DL: "" +*ja.Translation Duplex/両面: "" +*ja.Duplex None/オフ: "" +*ja.Duplex DuplexNoTumble/長辺とじ: "" +*ja.Duplex DuplexTumble/短辺とじ: "" +*ja.Translation InputSlot/給紙: "" +*ja.InputSlot Tray1/トレイ 1: "" +*ja.InputSlot Tray2/トレイ 2: "" +*ja.InputSlot ManualFeed/手差し: "" +*ja.Translation InstallableOptions/Installable Options: "" +*ja.Translation HPOption_Duplexer/両面印刷アクセサリ: "" +*ja.HPOption_Duplexer True/オン: "" +*ja.HPOption_Duplexer False/オフ: "" +*ja.Translation HPColorOptionsPanel/カラー: "" +*ja.Translation HPPJLColorAsGray/グレー印刷: "" +*ja.HPPJLColorAsGray yes/オン: "" +*ja.HPPJLColorAsGray no/オフ: "" +*ja.Translation HPRGBEmulation/RGB カラー: "" +*ja.HPRGBEmulation DefaultSRGB/デフォルト (sRGB): "" +*ja.HPRGBEmulation PhotoSRGB/フォト (sRGB): "" +*ja.HPRGBEmulation Adobe/フォト (Adobe RGB 1998): "" +*ja.HPRGBEmulation VividSRGB/鮮明 (sRGB): "" +*ja.HPRGBEmulation HPRGBEmulationNone/なし: "" +*ja.Translation HPEdgeControl/輪郭コントロール: "" +*ja.HPEdgeControl HPEdgeControlOff/オフ: "" +*ja.HPEdgeControl Light/薄い: "" +*ja.HPEdgeControl Normal/標準: "" +*ja.HPEdgeControl Max/最大: "" +*ja.Translation HPGeneralHalftone/ハーフトーン: "" +*ja.HPGeneralHalftone Smooth/テキスト: "" +*ja.HPGeneralHalftone Detail/詳細: "" +*ja.Translation HPTextNeutralGrays/テキスト グレー中間色: "" +*ja.HPTextNeutralGrays Black/黒のみ: "" +*ja.HPTextNeutralGrays ProcessBlack/4 色: "" +*ja.Translation HPGraphicsNeutralGrays/グラフィック グレー中間色: "" +*ja.HPGraphicsNeutralGrays Black/黒のみ: "" +*ja.HPGraphicsNeutralGrays ProcessBlack/4 色: "" +*ja.Translation HPPhotoNeutralGrays/写真グレー中間色: "" +*ja.HPPhotoNeutralGrays Black/黒のみ: "" +*ja.HPPhotoNeutralGrays ProcessBlack/4 色: "" +*ja.Translation HPPaperQualityPanel/Paper/Quality: "" +*ja.Translation HPPJLEconoMode/EconoMode: "" +*ja.HPPJLEconoMode True/オン: "" +*ja.HPPJLEconoMode False/オフ: "" +*ja.Translation MediaType/用紙の種類: "" +*ja.MediaType Unspecified/指定なし: "" +*ja.MediaType Plain/普通用紙: "" +*ja.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*ja.MediaType HPLaserJet90/HP レーザージェット用紙 90g: "" +*ja.MediaType HPColorLaserMatte105/HP カラーレーザー用紙 (つや消し) 105g: "" +*ja.MediaType HPPremiumChoiceMatte120/HP プレミアムチョイス (つや消し) 120g: "" +*ja.MediaType HPBrochureMatte150/HP ブローシャ用紙 (つや消し) 150g: "" +*ja.MediaType HPCoverMatte200/HP つや消し表紙用紙 200g: "" +*ja.MediaType HPMattePhoto200/HP つや消しフォト用紙 200g: "" +*ja.MediaType HPPremiumPresentationGlossy120/HP プレミアムプレゼンテーション用紙 (つや消し) 120g: "" +*ja.MediaType HPBrochureGlossy150/HP ブローシャ用紙 (光沢) 150g: "" +*ja.MediaType HPTrifoldBrochureGlossy150/HP 3 つ折りブローシャ用紙 (光沢) 150g: "" +*ja.MediaType HPBrochureGlossy200/HP ブローシャ用紙 (光沢) 200g: "" +*ja.MediaType Light6074/軽い用紙 60-74g: "" +*ja.MediaType Intermediate8595/中間 85-95g: "" +*ja.MediaType MidWeight96110/中厚手用紙 96-110g: "" +*ja.MediaType Heavy111130/重い用紙 111-130g: "" +*ja.MediaType ExtraHeavy131175/重い用紙 131-175g: "" +*ja.MediaType HeavyGlossy111130/厚手光沢紙 111-130g: "" +*ja.MediaType ExtraHeavyGlossy131175/超厚手光沢紙 131-175g: "" +*ja.MediaType CardGlossy176220/カード光沢紙 176-220g: "" +*ja.MediaType ColorLaserTransparency/カラーレーザー OHP フィルム: "" +*ja.MediaType Labels/ラベル: "" +*ja.MediaType Letterhead/レターヘッド付き: "" +*ja.MediaType Envelope/封筒: "" +*ja.MediaType HeavyEnvelope/厚手封筒: "" +*ja.MediaType Preprinted/印刷フォーム: "" +*ja.MediaType Prepunched/穴あき用紙: "" +*ja.MediaType Colored/カラー: "" +*ja.MediaType Bond/ボンド紙: "" +*ja.MediaType Recycled/再生紙: "" +*ja.MediaType Rough/ざら紙: "" +*ja.MediaType HeavyRough/厚手粗め用紙: "" +*ja.MediaType OpaqueFilm/不透明なフィルム: "" +*ja.APPrinterPreset ChartsAndGraphs/グラフと図: "" +*ja.cupsICCProfile RGB../sRGB Matching Profile: "" +*ja.cupsICCProfile CMYK../CMYK Matching Profile: "" +*ja.cupsICCProfile Gray../Gray Matching Profile: "" +*ja.cupsMarkerName cyan/シアン: "" +*ja.cupsMarkerName magenta/マゼンタ: "" +*ja.cupsMarkerName yellow/イエロー: "" +*ja.cupsMarkerName black/黒: "" +*ko.Translation Manufacturer/HP: "" +*ko.Translation ModelName/HP Color LaserJet Pro M252: "" +*ko.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*ko.Translation NickName/HP Color LaserJet Pro M252: "" +*ko.Translation PageSize/미디어 크기: "" +*ko.PageSize Letter/US Letter: "" +*ko.PageSize Legal/US Legal: "" +*ko.PageSize Executive/Executive: "" +*ko.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*ko.PageSize 4x6/4x6: "" +*ko.PageSize 5x8/5x8: "" +*ko.PageSize A4/A4: "" +*ko.PageSize A5/A5: "" +*ko.PageSize A6/A6: "" +*ko.PageSize B5/JIS B5: "" +*ko.PageSize B6/JIS B6: "" +*ko.PageSize Env4x6/10x15 cm: "" +*ko.PageSize Oficio/Oficio 216x340 mm: "" +*ko.PageSize 195x270mm/16K 195x270 mm: "" +*ko.PageSize 184x260mm/16K 184x260 mm: "" +*ko.PageSize 7.75x10.75/16K 197x273 mm: "" +*ko.PageSize Postcard/Postcard: "" +*ko.PageSize DoublePostcardRotated/엽서 Long Edge(양면): "" +*ko.PageSize Env10/Comm10 봉투: "" +*ko.PageSize EnvMonarch/Monarch 봉투: "" +*ko.PageSize EnvISOB5/ISO B5 봉투: "" +*ko.PageSize EnvC5/C5 봉투: "" +*ko.PageSize EnvDL/DL 봉투: "" +*ko.Translation Duplex/양면: "" +*ko.Duplex None/꺼짐: "" +*ko.Duplex DuplexNoTumble/긴-가장자리 제본선: "" +*ko.Duplex DuplexTumble/짧은-가장자리 제본선: "" +*ko.Translation InputSlot/용지 공급: "" +*ko.InputSlot Tray1/용지함 1: "" +*ko.InputSlot Tray2/용지함 2: "" +*ko.InputSlot ManualFeed/수동 급지: "" +*ko.Translation InstallableOptions/Installable Options: "" +*ko.Translation HPOption_Duplexer/양면 인쇄 부속품: "" +*ko.HPOption_Duplexer True/켜짐: "" +*ko.HPOption_Duplexer False/꺼짐: "" +*ko.Translation HPColorOptionsPanel/색상: "" +*ko.Translation HPPJLColorAsGray/컬러를 흑백음영으로 인쇄: "" +*ko.HPPJLColorAsGray yes/켜짐: "" +*ko.HPPJLColorAsGray no/꺼짐: "" +*ko.Translation HPRGBEmulation/RGB 색상: "" +*ko.HPRGBEmulation DefaultSRGB/기본값(sRGB): "" +*ko.HPRGBEmulation PhotoSRGB/사진(sRGB): "" +*ko.HPRGBEmulation Adobe/사진(Adobe RGB 1998): "" +*ko.HPRGBEmulation VividSRGB/선명하게 (sRGB): "" +*ko.HPRGBEmulation HPRGBEmulationNone/없음: "" +*ko.Translation HPEdgeControl/가장자리 제어: "" +*ko.HPEdgeControl HPEdgeControlOff/꺼짐: "" +*ko.HPEdgeControl Light/밝게: "" +*ko.HPEdgeControl Normal/보통: "" +*ko.HPEdgeControl Max/최대: "" +*ko.Translation HPGeneralHalftone/중간 색조: "" +*ko.HPGeneralHalftone Smooth/문장: "" +*ko.HPGeneralHalftone Detail/자세히: "" +*ko.Translation HPTextNeutralGrays/문장 순 회색: "" +*ko.HPTextNeutralGrays Black/흑색 전용: "" +*ko.HPTextNeutralGrays ProcessBlack/4색: "" +*ko.Translation HPGraphicsNeutralGrays/그래픽 순 회색: "" +*ko.HPGraphicsNeutralGrays Black/흑색 전용: "" +*ko.HPGraphicsNeutralGrays ProcessBlack/4색: "" +*ko.Translation HPPhotoNeutralGrays/사진 순말: "" +*ko.HPPhotoNeutralGrays Black/흑색 전용: "" +*ko.HPPhotoNeutralGrays ProcessBlack/4색: "" +*ko.Translation HPPaperQualityPanel/Paper/Quality: "" +*ko.Translation HPPJLEconoMode/EconoMode: "" +*ko.HPPJLEconoMode True/켜짐: "" +*ko.HPPJLEconoMode False/꺼짐: "" +*ko.Translation MediaType/용지 종류: "" +*ko.MediaType Unspecified/지정되지 않음: "" +*ko.MediaType Plain/일반용지: "" +*ko.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*ko.MediaType HPLaserJet90/HP LaserJet 90g: "" +*ko.MediaType HPColorLaserMatte105/HP Color Laser 무광 105g: "" +*ko.MediaType HPPremiumChoiceMatte120/HP 프리미엄 초이스 무광 120g: "" +*ko.MediaType HPBrochureMatte150/HP 무광택 브로셔 150g: "" +*ko.MediaType HPCoverMatte200/HP 표지 무광 200g: "" +*ko.MediaType HPMattePhoto200/HP 무광택 사진 200g: "" +*ko.MediaType HPPremiumPresentationGlossy120/HP 프리미엄 프리젠테이션 광택 120g: "" +*ko.MediaType HPBrochureGlossy150/HP 광택 브로셔 150g: "" +*ko.MediaType HPTrifoldBrochureGlossy150/HP 3중 접기 광택 브로셔 150g: "" +*ko.MediaType HPBrochureGlossy200/HP 광택 브로셔 200g: "" +*ko.MediaType Light6074/경량지 60-74g: "" +*ko.MediaType Intermediate8595/보통지 85-95g: "" +*ko.MediaType MidWeight96110/보통 중량지 96-110g: "" +*ko.MediaType Heavy111130/중량지 111-130g: "" +*ko.MediaType ExtraHeavy131175/초중량지 131-175g: "" +*ko.MediaType HeavyGlossy111130/광택 중량지 111-130g: "" +*ko.MediaType ExtraHeavyGlossy131175/고광택 용지 131-175g: "" +*ko.MediaType CardGlossy176220/인사장 유광 176-220g: "" +*ko.MediaType ColorLaserTransparency/Color Laser 투명 필름: "" +*ko.MediaType Labels/레이블: "" +*ko.MediaType Letterhead/레터헤드: "" +*ko.MediaType Envelope/봉투: "" +*ko.MediaType HeavyEnvelope/중량 봉투: "" +*ko.MediaType Preprinted/미리 인쇄: "" +*ko.MediaType Prepunched/천공 용지: "" +*ko.MediaType Colored/색상지: "" +*ko.MediaType Bond/본드지: "" +*ko.MediaType Recycled/재활용지: "" +*ko.MediaType Rough/거친 용지: "" +*ko.MediaType HeavyRough/중량 거친 용지: "" +*ko.MediaType OpaqueFilm/오파크 필름: "" +*ko.APPrinterPreset ChartsAndGraphs/차트 및 그래픽: "" +*ko.cupsICCProfile RGB../sRGB Matching Profile: "" +*ko.cupsICCProfile CMYK../CMYK Matching Profile: "" +*ko.cupsICCProfile Gray../Gray Matching Profile: "" +*ko.cupsMarkerName cyan/시안색: "" +*ko.cupsMarkerName magenta/마젠타색: "" +*ko.cupsMarkerName yellow/노랑색: "" +*ko.cupsMarkerName black/검정색: "" +*no.Translation Manufacturer/HP: "" +*no.Translation ModelName/HP Color LaserJet Pro M252: "" +*no.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*no.Translation NickName/HP Color LaserJet Pro M252: "" +*no.Translation PageSize/Papirstørrelse: "" +*no.PageSize Letter/US Letter: "" +*no.PageSize Legal/US Legal: "" +*no.PageSize Executive/Executive: "" +*no.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*no.PageSize 4x6/4x6: "" +*no.PageSize 5x8/5x8: "" +*no.PageSize A4/A4: "" +*no.PageSize A5/A5: "" +*no.PageSize A6/A6: "" +*no.PageSize B5/JIS B5: "" +*no.PageSize B6/JIS B6: "" +*no.PageSize Env4x6/10x15 cm: "" +*no.PageSize Oficio/Oficio 216x340 mm: "" +*no.PageSize 195x270mm/16K 195x270 mm: "" +*no.PageSize 184x260mm/16K 184x260 mm: "" +*no.PageSize 7.75x10.75/16K 197x273 mm: "" +*no.PageSize Postcard/Postcard: "" +*no.PageSize DoublePostcardRotated/Dobbelt postkort langside: "" +*no.PageSize Env10/Comm10-konvolutt: "" +*no.PageSize EnvMonarch/Monarch-konvolutt: "" +*no.PageSize EnvISOB5/B5-konvolutt: "" +*no.PageSize EnvC5/C5-konvolutt: "" +*no.PageSize EnvDL/DL-konvolutt: "" +*no.Translation Duplex/Tosidig: "" +*no.Duplex None/Av: "" +*no.Duplex DuplexNoTumble/Innbinding på langsiden: "" +*no.Duplex DuplexTumble/Innbinding på kortsiden: "" +*no.Translation InputSlot/Papirmating: "" +*no.InputSlot Tray1/Skuff 1: "" +*no.InputSlot Tray2/Skuff 2: "" +*no.InputSlot ManualFeed/Manuell mater: "" +*no.Translation InstallableOptions/Installable Options: "" +*no.Translation HPOption_Duplexer/Tosidig-enhet: "" +*no.HPOption_Duplexer True/På: "" +*no.HPOption_Duplexer False/Av: "" +*no.Translation HPColorOptionsPanel/Farge: "" +*no.Translation HPPJLColorAsGray/Skriv ut farger i grått: "" +*no.HPPJLColorAsGray yes/På: "" +*no.HPPJLColorAsGray no/Av: "" +*no.Translation HPRGBEmulation/RGB-farge: "" +*no.HPRGBEmulation DefaultSRGB/Standard (sRGB): "" +*no.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*no.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*no.HPRGBEmulation VividSRGB/Sterk (sRGB): "" +*no.HPRGBEmulation HPRGBEmulationNone/Ingen: "" +*no.Translation HPEdgeControl/Kantkontroll: "" +*no.HPEdgeControl HPEdgeControlOff/Av: "" +*no.HPEdgeControl Light/Lys: "" +*no.HPEdgeControl Normal/Normal: "" +*no.HPEdgeControl Max/Maksimum: "" +*no.Translation HPGeneralHalftone/Halvtone: "" +*no.HPGeneralHalftone Smooth/Jevn: "" +*no.HPGeneralHalftone Detail/Detaljert: "" +*no.Translation HPTextNeutralGrays/Tekst, nøytrale gråtoner: "" +*no.HPTextNeutralGrays Black/Bare svart: "" +*no.HPTextNeutralGrays ProcessBlack/4-fargers: "" +*no.Translation HPGraphicsNeutralGrays/Grafikk, nøytrale gråtoner: "" +*no.HPGraphicsNeutralGrays Black/Bare svart: "" +*no.HPGraphicsNeutralGrays ProcessBlack/4-fargers: "" +*no.Translation HPPhotoNeutralGrays/Foto, nøytrale gråtoner: "" +*no.HPPhotoNeutralGrays Black/Bare svart: "" +*no.HPPhotoNeutralGrays ProcessBlack/4-fargers: "" +*no.Translation HPPaperQualityPanel/Paper/Quality: "" +*no.Translation HPPJLEconoMode/EconoMode: "" +*no.HPPJLEconoMode True/På: "" +*no.HPPJLEconoMode False/Av: "" +*no.Translation MediaType/Utskriftsmateriale: "" +*no.MediaType Unspecified/Uspesifisert: "" +*no.MediaType Plain/Vanlig: "" +*no.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*no.MediaType HPLaserJet90/HP LaserJet 90g: "" +*no.MediaType HPColorLaserMatte105/HP Fargelaser matt, 105g: "" +*no.MediaType HPPremiumChoiceMatte120/HP Premium Choice matt, 120g: "" +*no.MediaType HPBrochureMatte150/HP-brosjyre, matt, 150g: "" +*no.MediaType HPCoverMatte200/HP Omslag matt, 200g: "" +*no.MediaType HPMattePhoto200/HP Matt foto 200g: "" +*no.MediaType HPPremiumPresentationGlossy120/HP Premium-presentasjon, glanset, 120g: "" +*no.MediaType HPBrochureGlossy150/HP-brosjyre, glanset, 150g: "" +*no.MediaType HPTrifoldBrochureGlossy150/HP-brosjyre, glanset, brettet i tre, 150g: "" +*no.MediaType HPBrochureGlossy200/HP-brosjyre, glanset, 200g: "" +*no.MediaType Light6074/Lys 60-74g: "" +*no.MediaType Intermediate8595/Middels 85-95g: "" +*no.MediaType MidWeight96110/Mellomtungt, 96-110g: "" +*no.MediaType Heavy111130/Tungt 111-130g: "" +*no.MediaType ExtraHeavy131175/Ekstra Tung 131-175g: "" +*no.MediaType HeavyGlossy111130/Tungt, glanset 111-130g: "" +*no.MediaType ExtraHeavyGlossy131175/Ekstra tykt og blankt 131-175g: "" +*no.MediaType CardGlossy176220/Kort glanset, 176-220g: "" +*no.MediaType ColorLaserTransparency/Transpar. for fargelaser: "" +*no.MediaType Labels/Etiketter: "" +*no.MediaType Letterhead/Brevhode: "" +*no.MediaType Envelope/Konvolutt: "" +*no.MediaType HeavyEnvelope/Tung konvolutt: "" +*no.MediaType Preprinted/Forhåndstrykt: "" +*no.MediaType Prepunched/Hullark: "" +*no.MediaType Colored/Farget: "" +*no.MediaType Bond/Brevpapir: "" +*no.MediaType Recycled/Resirkulert: "" +*no.MediaType Rough/Grovt: "" +*no.MediaType HeavyRough/Tungt grovt: "" +*no.MediaType OpaqueFilm/Opak film: "" +*no.APPrinterPreset ChartsAndGraphs/Diagrammer og grafikk: "" +*no.cupsICCProfile RGB../sRGB Matching Profile: "" +*no.cupsICCProfile CMYK../CMYK Matching Profile: "" +*no.cupsICCProfile Gray../Gray Matching Profile: "" +*no.cupsMarkerName cyan/Cyan: "" +*no.cupsMarkerName magenta/Magenta: "" +*no.cupsMarkerName yellow/Gul: "" +*no.cupsMarkerName black/Svart: "" +*nl.Translation Manufacturer/HP: "" +*nl.Translation ModelName/HP Color LaserJet Pro M252: "" +*nl.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*nl.Translation NickName/HP Color LaserJet Pro M252: "" +*nl.Translation PageSize/Materiaalgrootte: "" +*nl.PageSize Letter/US Letter: "" +*nl.PageSize Legal/US Legal: "" +*nl.PageSize Executive/Executive: "" +*nl.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*nl.PageSize 4x6/4x6: "" +*nl.PageSize 5x8/5x8: "" +*nl.PageSize A4/A4: "" +*nl.PageSize A5/A5: "" +*nl.PageSize A6/A6: "" +*nl.PageSize B5/JIS B5: "" +*nl.PageSize B6/JIS B6: "" +*nl.PageSize Env4x6/10x15 cm: "" +*nl.PageSize Oficio/Oficio 216x340 mm: "" +*nl.PageSize 195x270mm/16K 195x270 mm: "" +*nl.PageSize 184x260mm/16K 184x260 mm: "" +*nl.PageSize 7.75x10.75/16K 197x273 mm: "" +*nl.PageSize Postcard/Postcard: "" +*nl.PageSize DoublePostcardRotated/Briefkaart (dubbel) lange kant: "" +*nl.PageSize Env10/Comm10-envelop: "" +*nl.PageSize EnvMonarch/Monarch-envelop: "" +*nl.PageSize EnvISOB5/ISO B5-envelop: "" +*nl.PageSize EnvC5/C5-envelop: "" +*nl.PageSize EnvDL/DL-envelop: "" +*nl.Translation Duplex/Dubbelzijdig: "" +*nl.Duplex None/Uit: "" +*nl.Duplex DuplexNoTumble/Lange kant binden: "" +*nl.Duplex DuplexTumble/Korte kant binden: "" +*nl.Translation InputSlot/Papierinvoer: "" +*nl.InputSlot Tray1/Lade 1: "" +*nl.InputSlot Tray2/Lade 2: "" +*nl.InputSlot ManualFeed/Handinvoer: "" +*nl.Translation InstallableOptions/Installable Options: "" +*nl.Translation HPOption_Duplexer/Duplexeenheid: "" +*nl.HPOption_Duplexer True/Aan: "" +*nl.HPOption_Duplexer False/Uit: "" +*nl.Translation HPColorOptionsPanel/Kleur: "" +*nl.Translation HPPJLColorAsGray/Kleuren afdr. in grijs: "" +*nl.HPPJLColorAsGray yes/Aan: "" +*nl.HPPJLColorAsGray no/Uit: "" +*nl.Translation HPRGBEmulation/RGB-kleur: "" +*nl.HPRGBEmulation DefaultSRGB/Standaard (sRGB): "" +*nl.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*nl.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*nl.HPRGBEmulation VividSRGB/Levendig (sRGB): "" +*nl.HPRGBEmulation HPRGBEmulationNone/Geen: "" +*nl.Translation HPEdgeControl/Randverbetering: "" +*nl.HPEdgeControl HPEdgeControlOff/Uit: "" +*nl.HPEdgeControl Light/Licht: "" +*nl.HPEdgeControl Normal/Normaal: "" +*nl.HPEdgeControl Max/Maximaal: "" +*nl.Translation HPGeneralHalftone/Halftonen: "" +*nl.HPGeneralHalftone Smooth/Gelijkmatig: "" +*nl.HPGeneralHalftone Detail/Gedetailleerd: "" +*nl.Translation HPTextNeutralGrays/Tekst in neutraal grijs: "" +*nl.HPTextNeutralGrays Black/Alleen zwart: "" +*nl.HPTextNeutralGrays ProcessBlack/4-kleuren: "" +*nl.Translation HPGraphicsNeutralGrays/Afbeeld. in neutraal grijs: "" +*nl.HPGraphicsNeutralGrays Black/Alleen zwart: "" +*nl.HPGraphicsNeutralGrays ProcessBlack/4-kleuren: "" +*nl.Translation HPPhotoNeutralGrays/Foto's in neutraal grijs: "" +*nl.HPPhotoNeutralGrays Black/Alleen zwart: "" +*nl.HPPhotoNeutralGrays ProcessBlack/4-kleuren: "" +*nl.Translation HPPaperQualityPanel/Paper/Quality: "" +*nl.Translation HPPJLEconoMode/EconoMode: "" +*nl.HPPJLEconoMode True/Aan: "" +*nl.HPPJLEconoMode False/Uit: "" +*nl.Translation MediaType/Type afdrukmateriaal: "" +*nl.MediaType Unspecified/Onbekend: "" +*nl.MediaType Plain/Gewoon: "" +*nl.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*nl.MediaType HPLaserJet90/HP LaserJet 90g: "" +*nl.MediaType HPColorLaserMatte105/HP Color Laser, Mat 105g: "" +*nl.MediaType HPPremiumChoiceMatte120/HP Premium Choice, Mat 120g: "" +*nl.MediaType HPBrochureMatte150/HP mat brochurepapier 150g: "" +*nl.MediaType HPCoverMatte200/HP Omslagpapier, Mat 200g: "" +*nl.MediaType HPMattePhoto200/HP Fotopapier, Mat 200g: "" +*nl.MediaType HPPremiumPresentationGlossy120/HP Premium glanzend presentatiepapier 120g: "" +*nl.MediaType HPBrochureGlossy150/HP glanzend brochurepapier 150g: "" +*nl.MediaType HPTrifoldBrochureGlossy150/HP in drieën gevouwen glanzend brochurepapier 150g: "" +*nl.MediaType HPBrochureGlossy200/HP glanzend brochurepapier 200g: "" +*nl.MediaType Light6074/Licht 60-74g: "" +*nl.MediaType Intermediate8595/Intermediate 85-95g: "" +*nl.MediaType MidWeight96110/Middengewicht 96-110g: "" +*nl.MediaType Heavy111130/Zwaar 111-130g: "" +*nl.MediaType ExtraHeavy131175/Extra Zwaar 131-175g: "" +*nl.MediaType HeavyGlossy111130/Zwaarglanzend 111-130g: "" +*nl.MediaType ExtraHeavyGlossy131175/Extra zwaar glanzend 131-175g: "" +*nl.MediaType CardGlossy176220/Karton, Glanzend 176-220g: "" +*nl.MediaType ColorLaserTransparency/Transparant voor kleurenlaser: "" +*nl.MediaType Labels/Etiketten: "" +*nl.MediaType Letterhead/Briefpapier: "" +*nl.MediaType Envelope/Enveloppen: "" +*nl.MediaType HeavyEnvelope/Zware envelop: "" +*nl.MediaType Preprinted/Voorbedrukt: "" +*nl.MediaType Prepunched/Geperforeerd: "" +*nl.MediaType Colored/Gekleurd: "" +*nl.MediaType Bond/Bankpost: "" +*nl.MediaType Recycled/Gerecycled: "" +*nl.MediaType Rough/Ruw: "" +*nl.MediaType HeavyRough/Zwaar ruw: "" +*nl.MediaType OpaqueFilm/Ondoorzichtige film: "" +*nl.APPrinterPreset ChartsAndGraphs/Tabellen en grafieken: "" +*nl.cupsICCProfile RGB../sRGB Matching Profile: "" +*nl.cupsICCProfile CMYK../CMYK Matching Profile: "" +*nl.cupsICCProfile Gray../Gray Matching Profile: "" +*nl.cupsMarkerName cyan/Cyaan: "" +*nl.cupsMarkerName magenta/Magenta: "" +*nl.cupsMarkerName yellow/Geel: "" +*nl.cupsMarkerName black/Zwart: "" +*pt.Translation Manufacturer/HP: "" +*pt.Translation ModelName/HP Color LaserJet Pro M252: "" +*pt.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*pt.Translation NickName/HP Color LaserJet Pro M252: "" +*pt.Translation PageSize/Tamanho de Mídia: "" +*pt.PageSize Letter/US Letter: "" +*pt.PageSize Legal/US Legal: "" +*pt.PageSize Executive/Executivo: "" +*pt.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*pt.PageSize 4x6/4x6: "" +*pt.PageSize 5x8/5x8: "" +*pt.PageSize A4/A4: "" +*pt.PageSize A5/A5: "" +*pt.PageSize A6/A6: "" +*pt.PageSize B5/JIS B5: "" +*pt.PageSize B6/JIS B6: "" +*pt.PageSize Env4x6/10x15 cm: "" +*pt.PageSize Oficio/Oficio 216x340 mm: "" +*pt.PageSize 195x270mm/16K 195x270 mm: "" +*pt.PageSize 184x260mm/16K 184x260 mm: "" +*pt.PageSize 7.75x10.75/16K 197x273 mm: "" +*pt.PageSize Postcard/Postcard: "" +*pt.PageSize DoublePostcardRotated/Cartão-Postal Duplo Margem Longa: "" +*pt.PageSize Env10/Envelope Comm10: "" +*pt.PageSize EnvMonarch/Envelope Monarch: "" +*pt.PageSize EnvISOB5/Envelope B5: "" +*pt.PageSize EnvC5/Envelope C5: "" +*pt.PageSize EnvDL/Envelope DL: "" +*pt.Translation Duplex/Frente e verso: "" +*pt.Duplex None/Desativado: "" +*pt.Duplex DuplexNoTumble/Encadernação com Margem Longa: "" +*pt.Duplex DuplexTumble/Encadernação com Margem Curta: "" +*pt.Translation InputSlot/Alimentação de Papel: "" +*pt.InputSlot Tray1/Bandeja 1: "" +*pt.InputSlot Tray2/Bandeja 2: "" +*pt.InputSlot ManualFeed/Alimentação manual: "" +*pt.Translation InstallableOptions/Installable Options: "" +*pt.Translation HPOption_Duplexer/Unidade dúplex: "" +*pt.HPOption_Duplexer True/Ativado: "" +*pt.HPOption_Duplexer False/Desativado: "" +*pt.Translation HPColorOptionsPanel/Cor: "" +*pt.Translation HPPJLColorAsGray/Imprimir cor como cinza: "" +*pt.HPPJLColorAsGray yes/Ativado: "" +*pt.HPPJLColorAsGray no/Desativado: "" +*pt.Translation HPRGBEmulation/Cor RGB: "" +*pt.HPRGBEmulation DefaultSRGB/Padrão (sRGB): "" +*pt.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*pt.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*pt.HPRGBEmulation VividSRGB/Víva (sRGB): "" +*pt.HPRGBEmulation HPRGBEmulationNone/Nenhum: "" +*pt.Translation HPEdgeControl/Controle de margem: "" +*pt.HPEdgeControl HPEdgeControlOff/Desativado: "" +*pt.HPEdgeControl Light/Claro: "" +*pt.HPEdgeControl Normal/Normal: "" +*pt.HPEdgeControl Max/Máximo: "" +*pt.Translation HPGeneralHalftone/Meio-tom: "" +*pt.HPGeneralHalftone Smooth/Nivelado: "" +*pt.HPGeneralHalftone Detail/Detalhes: "" +*pt.Translation HPTextNeutralGrays/Texto em cinzas neutros: "" +*pt.HPTextNeutralGrays Black/Somente em preto: "" +*pt.HPTextNeutralGrays ProcessBlack/4 cores: "" +*pt.Translation HPGraphicsNeutralGrays/Gráfico em cinzas neutros: "" +*pt.HPGraphicsNeutralGrays Black/Somente em preto: "" +*pt.HPGraphicsNeutralGrays ProcessBlack/4 cores: "" +*pt.Translation HPPhotoNeutralGrays/Foto em cinzas neutros: "" +*pt.HPPhotoNeutralGrays Black/Somente em preto: "" +*pt.HPPhotoNeutralGrays ProcessBlack/4 cores: "" +*pt.Translation HPPaperQualityPanel/Paper/Quality: "" +*pt.Translation HPPJLEconoMode/EconoMode: "" +*pt.HPPJLEconoMode True/Ativado: "" +*pt.HPPJLEconoMode False/Desativado: "" +*pt.Translation MediaType/Tipo de mídia: "" +*pt.MediaType Unspecified/Não especificado: "" +*pt.MediaType Plain/Comum: "" +*pt.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*pt.MediaType HPLaserJet90/HP LaserJet 90g: "" +*pt.MediaType HPColorLaserMatte105/HP Color Laser 105g, fosco: "" +*pt.MediaType HPPremiumChoiceMatte120/HP Premium Choice fosco, 120g: "" +*pt.MediaType HPBrochureMatte150/Brochura HP fosco, 150g: "" +*pt.MediaType HPCoverMatte200/HP Cover 200g, fosco: "" +*pt.MediaType HPMattePhoto200/Fotogr. HP fosco, 200g: "" +*pt.MediaType HPPremiumPresentationGlossy120/Apresentação Premium brilhante HP 120g: "" +*pt.MediaType HPBrochureGlossy150/Brochura HP brilhante, 150g: "" +*pt.MediaType HPTrifoldBrochureGlossy150/Brochura HP brilhante com três dobras, 150g: "" +*pt.MediaType HPBrochureGlossy200/Brochura HP brilhante, 200g: "" +*pt.MediaType Light6074/Leve 60-74g: "" +*pt.MediaType Intermediate8595/Intermedio 85-95g: "" +*pt.MediaType MidWeight96110/Semipesado 96-110g: "" +*pt.MediaType Heavy111130/Pesado 111-130g: "" +*pt.MediaType ExtraHeavy131175/Extrapesado 131-175g: "" +*pt.MediaType HeavyGlossy111130/Espesso brilhante 111-130g: "" +*pt.MediaType ExtraHeavyGlossy131175/Brilhante com gramatura extra 131-175g: "" +*pt.MediaType CardGlossy176220/Cartão brilhante, 176-220g: "" +*pt.MediaType ColorLaserTransparency/Transpar. laser a cores: "" +*pt.MediaType Labels/Etiquetas: "" +*pt.MediaType Letterhead/Timbrado: "" +*pt.MediaType Envelope/Envelope: "" +*pt.MediaType HeavyEnvelope/Envelope pesado: "" +*pt.MediaType Preprinted/Pré-impresso: "" +*pt.MediaType Prepunched/Perfurado: "" +*pt.MediaType Colored/Colorido: "" +*pt.MediaType Bond/Superbond: "" +*pt.MediaType Recycled/Reciclado: "" +*pt.MediaType Rough/Áspero: "" +*pt.MediaType HeavyRough/Áspero pesado: "" +*pt.MediaType OpaqueFilm/Filme opaco: "" +*pt.APPrinterPreset ChartsAndGraphs/Tabelas e gráficos: "" +*pt.cupsICCProfile RGB../sRGB Matching Profile: "" +*pt.cupsICCProfile CMYK../CMYK Matching Profile: "" +*pt.cupsICCProfile Gray../Gray Matching Profile: "" +*pt.cupsMarkerName cyan/Ciano: "" +*pt.cupsMarkerName magenta/Magenta: "" +*pt.cupsMarkerName yellow/Amarelo: "" +*pt.cupsMarkerName black/Preto: "" +*ru.Translation Manufacturer/HP: "" +*ru.Translation ModelName/HP Color LaserJet Pro M252: "" +*ru.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*ru.Translation NickName/HP Color LaserJet Pro M252: "" +*ru.Translation PageSize/Размер бумаги: "" +*ru.PageSize Letter/US Letter: "" +*ru.PageSize Legal/US Legal: "" +*ru.PageSize Executive/Executive: "" +*ru.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*ru.PageSize 4x6/4 x 6: "" +*ru.PageSize 5x8/5 x 8: "" +*ru.PageSize A4/A4: "" +*ru.PageSize A5/A5: "" +*ru.PageSize A6/A6: "" +*ru.PageSize B5/JIS B5: "" +*ru.PageSize B6/JIS B6: "" +*ru.PageSize Env4x6/10 x 15 см: "" +*ru.PageSize Oficio/Oficio 216x340 mm: "" +*ru.PageSize 195x270mm/16K 195 x 270 мм: "" +*ru.PageSize 184x260mm/16K 184 x 260 мм: "" +*ru.PageSize 7.75x10.75/16K 197 x 273 мм: "" +*ru.PageSize Postcard/Postcard: "" +*ru.PageSize DoublePostcardRotated/Postcard Double Long Edge: "" +*ru.PageSize Env10/Конверт Comm10: "" +*ru.PageSize EnvMonarch/Конверт Monarch: "" +*ru.PageSize EnvISOB5/Конверт B5: "" +*ru.PageSize EnvC5/Конверт C5: "" +*ru.PageSize EnvDL/Конверт DL: "" +*ru.Translation Duplex/Двусторонняя: "" +*ru.Duplex None/Выкл.: "" +*ru.Duplex DuplexNoTumble/Прошивка вдоль длинного края: "" +*ru.Duplex DuplexTumble/Прошивка вдоль короткого края: "" +*ru.Translation InputSlot/Подача бумаги: "" +*ru.InputSlot Tray1/Лоток 1: "" +*ru.InputSlot Tray2/Лоток 2: "" +*ru.InputSlot ManualFeed/Ручная подача: "" +*ru.Translation InstallableOptions/Installable Options: "" +*ru.Translation HPOption_Duplexer/Модуль дуплекса: "" +*ru.HPOption_Duplexer True/Вкл.: "" +*ru.HPOption_Duplexer False/Выкл.: "" +*ru.Translation HPColorOptionsPanel/Цвет: "" +*ru.Translation HPPJLColorAsGray/Печать цвета серым: "" +*ru.HPPJLColorAsGray yes/Вкл.: "" +*ru.HPPJLColorAsGray no/Выкл.: "" +*ru.Translation HPRGBEmulation/Цвет RGB: "" +*ru.HPRGBEmulation DefaultSRGB/По умолчанию (sRGB): "" +*ru.HPRGBEmulation PhotoSRGB/Фото (sRGB): "" +*ru.HPRGBEmulation Adobe/Фото (Adobe RGB 1998): "" +*ru.HPRGBEmulation VividSRGB/Яркое (sRGB): "" +*ru.HPRGBEmulation HPRGBEmulationNone/Нет: "" +*ru.Translation HPEdgeControl/Контроль края: "" +*ru.HPEdgeControl HPEdgeControlOff/Выкл.: "" +*ru.HPEdgeControl Light/Светлый: "" +*ru.HPEdgeControl Normal/Обычное: "" +*ru.HPEdgeControl Max/Максимум: "" +*ru.Translation HPGeneralHalftone/Полутона: "" +*ru.HPGeneralHalftone Smooth/Гладкое: "" +*ru.HPGeneralHalftone Detail/Детальное: "" +*ru.Translation HPTextNeutralGrays/Нейтр. серый (текст): "" +*ru.HPTextNeutralGrays Black/Только черный: "" +*ru.HPTextNeutralGrays ProcessBlack/Четырехцветный: "" +*ru.Translation HPGraphicsNeutralGrays/Нейтр. серый (граф.): "" +*ru.HPGraphicsNeutralGrays Black/Только черный: "" +*ru.HPGraphicsNeutralGrays ProcessBlack/Четырехцветный: "" +*ru.Translation HPPhotoNeutralGrays/Нейтр. серый (фото): "" +*ru.HPPhotoNeutralGrays Black/Только черный: "" +*ru.HPPhotoNeutralGrays ProcessBlack/Четырехцветный: "" +*ru.Translation HPPaperQualityPanel/Paper/Quality: "" +*ru.Translation HPPJLEconoMode/EconoMode: "" +*ru.HPPJLEconoMode True/Вкл.: "" +*ru.HPPJLEconoMode False/Выкл.: "" +*ru.Translation MediaType/Тип носителя: "" +*ru.MediaType Unspecified/Не указано: "" +*ru.MediaType Plain/Обычная бумага: "" +*ru.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*ru.MediaType HPLaserJet90/HP LaserJet 90г: "" +*ru.MediaType HPColorLaserMatte105/HP для цветной лазерной печати, матовая 105г: "" +*ru.MediaType HPPremiumChoiceMatte120/HP повышенного качества, матовая 120г: "" +*ru.MediaType HPBrochureMatte150/Бумага HP для брошюр, матовая, 150г: "" +*ru.MediaType HPCoverMatte200/Бумага HP для обложек, матовая 200г: "" +*ru.MediaType HPMattePhoto200/Матовая фотобумага HP 200г: "" +*ru.MediaType HPPremiumPresentationGlossy120/Бум. HP повыш. кач. для презентаций, глянц. 120г: "" +*ru.MediaType HPBrochureGlossy150/Бумага HP для брошюр, глянцевая, 150г: "" +*ru.MediaType HPTrifoldBrochureGlossy150/Бум. HP для склад-х в 3 слоя брошюр, глянц. 150г: "" +*ru.MediaType HPBrochureGlossy200/Бумага HP для брошюр, глянцевая, 200г: "" +*ru.MediaType Light6074/Легкая 60-74г: "" +*ru.MediaType Intermediate8595/Прокладка 85-95г: "" +*ru.MediaType MidWeight96110/Среднеплотная 96-110г: "" +*ru.MediaType Heavy111130/Плотная 111-130г: "" +*ru.MediaType ExtraHeavy131175/Сверхплотная 131-175г: "" +*ru.MediaType HeavyGlossy111130/Плотная глянцевая 111-130г: "" +*ru.MediaType ExtraHeavyGlossy131175/Сверхплотная глянцевая 131-175г: "" +*ru.MediaType CardGlossy176220/Бумага для открыток, глянцевая 176-220г: "" +*ru.MediaType ColorLaserTransparency/Прозрачная пленка для цветн. лазер. печати: "" +*ru.MediaType Labels/Этикетки: "" +*ru.MediaType Letterhead/Фирменный бланк: "" +*ru.MediaType Envelope/Конверт: "" +*ru.MediaType HeavyEnvelope/Плотный конверт: "" +*ru.MediaType Preprinted/Печатный бланк: "" +*ru.MediaType Prepunched/Перфорированная бумага: "" +*ru.MediaType Colored/Цветная: "" +*ru.MediaType Bond/Высокосортная: "" +*ru.MediaType Recycled/Бумага из вторсырья: "" +*ru.MediaType Rough/Грубая бумага: "" +*ru.MediaType HeavyRough/Плотная грубая: "" +*ru.MediaType OpaqueFilm/Непрозрачный диапозитив: "" +*ru.APPrinterPreset ChartsAndGraphs/Диаграммы и графики: "" +*ru.cupsICCProfile RGB../sRGB Matching Profile: "" +*ru.cupsICCProfile CMYK../CMYK Matching Profile: "" +*ru.cupsICCProfile Gray../Gray Matching Profile: "" +*ru.cupsMarkerName cyan/Голубой: "" +*ru.cupsMarkerName magenta/Пурпурный: "" +*ru.cupsMarkerName yellow/Желтый: "" +*ru.cupsMarkerName black/Черный: "" +*sv.Translation Manufacturer/HP: "" +*sv.Translation ModelName/HP Color LaserJet Pro M252: "" +*sv.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*sv.Translation NickName/HP Color LaserJet Pro M252: "" +*sv.Translation PageSize/Mediestorlek: "" +*sv.PageSize Letter/US Letter: "" +*sv.PageSize Legal/US Legal: "" +*sv.PageSize Executive/Executive: "" +*sv.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*sv.PageSize 4x6/4x6: "" +*sv.PageSize 5x8/5x8: "" +*sv.PageSize A4/A4: "" +*sv.PageSize A5/A5: "" +*sv.PageSize A6/A6: "" +*sv.PageSize B5/JIS B5: "" +*sv.PageSize B6/JIS B6: "" +*sv.PageSize Env4x6/10x15 cm: "" +*sv.PageSize Oficio/Oficio 216x340 mm: "" +*sv.PageSize 195x270mm/16K 195x270 mm: "" +*sv.PageSize 184x260mm/16K 184x260 mm: "" +*sv.PageSize 7.75x10.75/16K 197x273 mm: "" +*sv.PageSize Postcard/Postcard: "" +*sv.PageSize DoublePostcardRotated/Vykort - dubbel med lång kant: "" +*sv.PageSize Env10/Comm10-kuvert: "" +*sv.PageSize EnvMonarch/Monarch-kuvert: "" +*sv.PageSize EnvISOB5/ISO B5-kuvert: "" +*sv.PageSize EnvC5/C5-kuvert: "" +*sv.PageSize EnvDL/DL-kuvert: "" +*sv.Translation Duplex/Dubbelsidig: "" +*sv.Duplex None/Av: "" +*sv.Duplex DuplexNoTumble/Häftning långsida: "" +*sv.Duplex DuplexTumble/Häftning kortsida: "" +*sv.Translation InputSlot/Pappersmatare: "" +*sv.InputSlot Tray1/Fack 1: "" +*sv.InputSlot Tray2/Fack 2: "" +*sv.InputSlot ManualFeed/Manuell matning: "" +*sv.Translation InstallableOptions/Installable Options: "" +*sv.Translation HPOption_Duplexer/Tillbehör för dubbelsidig utskrift: "" +*sv.HPOption_Duplexer True/På: "" +*sv.HPOption_Duplexer False/Av: "" +*sv.Translation HPColorOptionsPanel/Färg: "" +*sv.Translation HPPJLColorAsGray/Skriv ut färg i grått: "" +*sv.HPPJLColorAsGray yes/På: "" +*sv.HPPJLColorAsGray no/Av: "" +*sv.Translation HPRGBEmulation/RGB-färg: "" +*sv.HPRGBEmulation DefaultSRGB/Standard (sRGB): "" +*sv.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*sv.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*sv.HPRGBEmulation VividSRGB/Stark (sRGB): "" +*sv.HPRGBEmulation HPRGBEmulationNone/Inget: "" +*sv.Translation HPEdgeControl/Kantkontroll: "" +*sv.HPEdgeControl HPEdgeControlOff/Av: "" +*sv.HPEdgeControl Light/Ljus: "" +*sv.HPEdgeControl Normal/Normal: "" +*sv.HPEdgeControl Max/Högst: "" +*sv.Translation HPGeneralHalftone/Halvton: "" +*sv.HPGeneralHalftone Smooth/Jämnt: "" +*sv.HPGeneralHalftone Detail/Detalj: "" +*sv.Translation HPTextNeutralGrays/Text neutral grå: "" +*sv.HPTextNeutralGrays Black/Endast svart: "" +*sv.HPTextNeutralGrays ProcessBlack/4-färg: "" +*sv.Translation HPGraphicsNeutralGrays/Bilder neutral grå: "" +*sv.HPGraphicsNeutralGrays Black/Endast svart: "" +*sv.HPGraphicsNeutralGrays ProcessBlack/4-färg: "" +*sv.Translation HPPhotoNeutralGrays/Foto neutral grå: "" +*sv.HPPhotoNeutralGrays Black/Endast svart: "" +*sv.HPPhotoNeutralGrays ProcessBlack/4-färg: "" +*sv.Translation HPPaperQualityPanel/Paper/Quality: "" +*sv.Translation HPPJLEconoMode/EconoMode: "" +*sv.HPPJLEconoMode True/På: "" +*sv.HPPJLEconoMode False/Av: "" +*sv.Translation MediaType/Material: "" +*sv.MediaType Unspecified/Ospecificerad: "" +*sv.MediaType Plain/Vanligt: "" +*sv.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*sv.MediaType HPLaserJet90/HP LaserJet 90g: "" +*sv.MediaType HPColorLaserMatte105/HP Color Laser, matt 105g: "" +*sv.MediaType HPPremiumChoiceMatte120/HP Premium Choice, matt 120g: "" +*sv.MediaType HPBrochureMatte150/HP-broschyr, matt 150g: "" +*sv.MediaType HPCoverMatte200/HP omslag, matt 200g: "" +*sv.MediaType HPMattePhoto200/HP matt foto 200g: "" +*sv.MediaType HPPremiumPresentationGlossy120/HP Premium presentation, glättat, 120g: "" +*sv.MediaType HPBrochureGlossy150/HP-broschyr, glättat, 150g: "" +*sv.MediaType HPTrifoldBrochureGlossy150/HP trippelvikt broschyr, glättat, 150g: "" +*sv.MediaType HPBrochureGlossy200/HP-broschyr, glättat, 200g: "" +*sv.MediaType Light6074/Lätt 60-74g: "" +*sv.MediaType Intermediate8595/Medelvikt 85-95g: "" +*sv.MediaType MidWeight96110/Mellanvikt 96-110g: "" +*sv.MediaType Heavy111130/Tungt 111-130g: "" +*sv.MediaType ExtraHeavy131175/Extra Tungt 131-175g: "" +*sv.MediaType HeavyGlossy111130/Tungt glättat 111-130g: "" +*sv.MediaType ExtraHeavyGlossy131175/Extra tungt glättat 131-175g: "" +*sv.MediaType CardGlossy176220/Kort, glättat 176-220g: "" +*sv.MediaType ColorLaserTransparency/Färglaser OH-film: "" +*sv.MediaType Labels/Etiketter: "" +*sv.MediaType Letterhead/Brevpapper: "" +*sv.MediaType Envelope/Kuvert: "" +*sv.MediaType HeavyEnvelope/Tungt kuvert: "" +*sv.MediaType Preprinted/Förtryckt: "" +*sv.MediaType Prepunched/Hålat: "" +*sv.MediaType Colored/Färgat: "" +*sv.MediaType Bond/Finpapper: "" +*sv.MediaType Recycled/Returpapper: "" +*sv.MediaType Rough/Grovt: "" +*sv.MediaType HeavyRough/Tungt grovt: "" +*sv.MediaType OpaqueFilm/Ej genomskinlig film: "" +*sv.APPrinterPreset ChartsAndGraphs/Diagram och grafik: "" +*sv.cupsICCProfile RGB../sRGB Matching Profile: "" +*sv.cupsICCProfile CMYK../CMYK Matching Profile: "" +*sv.cupsICCProfile Gray../Gray Matching Profile: "" +*sv.cupsMarkerName cyan/Cyan: "" +*sv.cupsMarkerName magenta/Magenta: "" +*sv.cupsMarkerName yellow/Gul: "" +*sv.cupsMarkerName black/Svart: "" +*zh_CN.Translation Manufacturer/HP: "" +*zh_CN.Translation ModelName/HP Color LaserJet Pro M252: "" +*zh_CN.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*zh_CN.Translation NickName/HP Color LaserJet Pro M252: "" +*zh_CN.Translation PageSize/介质大小: "" +*zh_CN.PageSize Letter/US Letter: "" +*zh_CN.PageSize Legal/US Legal: "" +*zh_CN.PageSize Executive/Executive: "" +*zh_CN.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*zh_CN.PageSize 4x6/4x6: "" +*zh_CN.PageSize 5x8/5x8: "" +*zh_CN.PageSize A4/A4: "" +*zh_CN.PageSize A5/A5: "" +*zh_CN.PageSize A6/A6: "" +*zh_CN.PageSize B5/JIS B5: "" +*zh_CN.PageSize B6/JIS B6: "" +*zh_CN.PageSize Env4x6/10x15 厘米: "" +*zh_CN.PageSize Oficio/Oficio 216x340 mm: "" +*zh_CN.PageSize 195x270mm/16K 195x270 毫米: "" +*zh_CN.PageSize 184x260mm/16K 184x260 毫米: "" +*zh_CN.PageSize 7.75x10.75/16K 197x273 毫米: "" +*zh_CN.PageSize Postcard/Postcard: "" +*zh_CN.PageSize DoublePostcardRotated/明信片-双面长边: "" +*zh_CN.PageSize Env10/信封 Comm10: "" +*zh_CN.PageSize EnvMonarch/信封 Monarch: "" +*zh_CN.PageSize EnvISOB5/信封 ISO B5: "" +*zh_CN.PageSize EnvC5/信封 C5: "" +*zh_CN.PageSize EnvDL/信封 DL: "" +*zh_CN.Translation Duplex/双面打印: "" +*zh_CN.Duplex None/关: "" +*zh_CN.Duplex DuplexNoTumble/长边装订: "" +*zh_CN.Duplex DuplexTumble/短边装订: "" +*zh_CN.Translation InputSlot/送纸: "" +*zh_CN.InputSlot Tray1/纸盒 1: "" +*zh_CN.InputSlot Tray2/纸盒 2: "" +*zh_CN.InputSlot ManualFeed/手动进纸: "" +*zh_CN.Translation InstallableOptions/Installable Options: "" +*zh_CN.Translation HPOption_Duplexer/双面打印附件: "" +*zh_CN.HPOption_Duplexer True/开: "" +*zh_CN.HPOption_Duplexer False/关: "" +*zh_CN.Translation HPColorOptionsPanel/颜色: "" +*zh_CN.Translation HPPJLColorAsGray/打印颜色为灰色: "" +*zh_CN.HPPJLColorAsGray yes/开: "" +*zh_CN.HPPJLColorAsGray no/关: "" +*zh_CN.Translation HPRGBEmulation/RGB 颜色: "" +*zh_CN.HPRGBEmulation DefaultSRGB/默认 (sRGB): "" +*zh_CN.HPRGBEmulation PhotoSRGB/照片 (sRGB): "" +*zh_CN.HPRGBEmulation Adobe/照片 (Adobe RGB 1998): "" +*zh_CN.HPRGBEmulation VividSRGB/鲜明 (sRGB): "" +*zh_CN.HPRGBEmulation HPRGBEmulationNone/无: "" +*zh_CN.Translation HPEdgeControl/边缘控制: "" +*zh_CN.HPEdgeControl HPEdgeControlOff/关: "" +*zh_CN.HPEdgeControl Light/淡: "" +*zh_CN.HPEdgeControl Normal/正常: "" +*zh_CN.HPEdgeControl Max/最大: "" +*zh_CN.Translation HPGeneralHalftone/半色调: "" +*zh_CN.HPGeneralHalftone Smooth/文本: "" +*zh_CN.HPGeneralHalftone Detail/细节: "" +*zh_CN.Translation HPTextNeutralGrays/文本中性灰色: "" +*zh_CN.HPTextNeutralGrays Black/仅限黑色: "" +*zh_CN.HPTextNeutralGrays ProcessBlack/4 色: "" +*zh_CN.Translation HPGraphicsNeutralGrays/图形中性灰色: "" +*zh_CN.HPGraphicsNeutralGrays Black/仅限黑色: "" +*zh_CN.HPGraphicsNeutralGrays ProcessBlack/4 色: "" +*zh_CN.Translation HPPhotoNeutralGrays/照片中性灰色: "" +*zh_CN.HPPhotoNeutralGrays Black/仅限黑色: "" +*zh_CN.HPPhotoNeutralGrays ProcessBlack/4 色: "" +*zh_CN.Translation HPPaperQualityPanel/Paper/Quality: "" +*zh_CN.Translation HPPJLEconoMode/EconoMode: "" +*zh_CN.HPPJLEconoMode True/开: "" +*zh_CN.HPPJLEconoMode False/关: "" +*zh_CN.Translation MediaType/介质类型: "" +*zh_CN.MediaType Unspecified/未指定: "" +*zh_CN.MediaType Plain/普通纸: "" +*zh_CN.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*zh_CN.MediaType HPLaserJet90/HP LaserJet 90 克纸: "" +*zh_CN.MediaType HPColorLaserMatte105/HP 彩色激光无光泽纸 105g: "" +*zh_CN.MediaType HPPremiumChoiceMatte120/HP 优选无光泽纸 120g: "" +*zh_CN.MediaType HPBrochureMatte150/HP 小册子磨砂纸 150g: "" +*zh_CN.MediaType HPCoverMatte200/HP 无光泽封面纸 200g: "" +*zh_CN.MediaType HPMattePhoto200/HP 无光泽照片纸 200g: "" +*zh_CN.MediaType HPPremiumPresentationGlossy120/HP 高级演示用光泽纸 120g: "" +*zh_CN.MediaType HPBrochureGlossy150/HP 小册子光泽纸 150g: "" +*zh_CN.MediaType HPTrifoldBrochureGlossy150/HP 三折小册子光泽纸 150g: "" +*zh_CN.MediaType HPBrochureGlossy200/HP 小册子光泽纸 200g: "" +*zh_CN.MediaType Light6074/轻磅 60-74g: "" +*zh_CN.MediaType Intermediate8595/光面纸 85-95g: "" +*zh_CN.MediaType MidWeight96110/中等重量纸 96-110g: "" +*zh_CN.MediaType Heavy111130/重磅 111-130g: "" +*zh_CN.MediaType ExtraHeavy131175/超级重磅纸 131-175g: "" +*zh_CN.MediaType HeavyGlossy111130/重磅光泽纸 111-130g: "" +*zh_CN.MediaType ExtraHeavyGlossy131175/超重磅光泽纸 131-175g: "" +*zh_CN.MediaType CardGlossy176220/光泽卡片 176-220g: "" +*zh_CN.MediaType ColorLaserTransparency/彩色激光投影胶片: "" +*zh_CN.MediaType Labels/标签: "" +*zh_CN.MediaType Letterhead/信头纸: "" +*zh_CN.MediaType Envelope/信封: "" +*zh_CN.MediaType HeavyEnvelope/重磅信封: "" +*zh_CN.MediaType Preprinted/预先打印纸: "" +*zh_CN.MediaType Prepunched/预先打孔纸: "" +*zh_CN.MediaType Colored/彩纸: "" +*zh_CN.MediaType Bond/证券纸: "" +*zh_CN.MediaType Recycled/再生纸: "" +*zh_CN.MediaType Rough/粗糙: "" +*zh_CN.MediaType HeavyRough/重磅粗糙纸: "" +*zh_CN.MediaType OpaqueFilm/不透明胶片: "" +*zh_CN.APPrinterPreset ChartsAndGraphs/图表和图形: "" +*zh_CN.cupsICCProfile RGB../sRGB Matching Profile: "" +*zh_CN.cupsICCProfile CMYK../CMYK Matching Profile: "" +*zh_CN.cupsICCProfile Gray../Gray Matching Profile: "" +*zh_CN.cupsMarkerName cyan/青色: "" +*zh_CN.cupsMarkerName magenta/品红色: "" +*zh_CN.cupsMarkerName yellow/黄色: "" +*zh_CN.cupsMarkerName black/黑色: "" +*zh_TW.Translation Manufacturer/HP: "" +*zh_TW.Translation ModelName/HP Color LaserJet Pro M252: "" +*zh_TW.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*zh_TW.Translation NickName/HP Color LaserJet Pro M252: "" +*zh_TW.Translation PageSize/媒體大小: "" +*zh_TW.PageSize Letter/US Letter: "" +*zh_TW.PageSize Legal/US Legal: "" +*zh_TW.PageSize Executive/Executive: "" +*zh_TW.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*zh_TW.PageSize 4x6/4x6: "" +*zh_TW.PageSize 5x8/5x8: "" +*zh_TW.PageSize A4/A4: "" +*zh_TW.PageSize A5/A5: "" +*zh_TW.PageSize A6/A6: "" +*zh_TW.PageSize B5/JIS B5: "" +*zh_TW.PageSize B6/JIS B6: "" +*zh_TW.PageSize Env4x6/10x15 厘米: "" +*zh_TW.PageSize Oficio/Oficio 216x340 mm: "" +*zh_TW.PageSize 195x270mm/16K 195x270 公釐: "" +*zh_TW.PageSize 184x260mm/16K 184x260 公釐: "" +*zh_TW.PageSize 7.75x10.75/16K 197x273 公釐: "" +*zh_TW.PageSize Postcard/Postcard: "" +*zh_TW.PageSize DoublePostcardRotated/雙倍大小明信片長邊: "" +*zh_TW.PageSize Env10/Comm10 信封: "" +*zh_TW.PageSize EnvMonarch/Monarch 信封: "" +*zh_TW.PageSize EnvISOB5/ISO B5 信封: "" +*zh_TW.PageSize EnvC5/C5 信封: "" +*zh_TW.PageSize EnvDL/DL 信封: "" +*zh_TW.Translation Duplex/雙面: "" +*zh_TW.Duplex None/關閉: "" +*zh_TW.Duplex DuplexNoTumble/沿長邊裝訂: "" +*zh_TW.Duplex DuplexTumble/沿短邊裝訂: "" +*zh_TW.Translation InputSlot/送紙匣: "" +*zh_TW.InputSlot Tray1/1 號紙匣: "" +*zh_TW.InputSlot Tray2/2 號紙匣: "" +*zh_TW.InputSlot ManualFeed/手動進紙: "" +*zh_TW.Translation InstallableOptions/Installable Options: "" +*zh_TW.Translation HPOption_Duplexer/雙面列印裝置: "" +*zh_TW.HPOption_Duplexer True/開啟: "" +*zh_TW.HPOption_Duplexer False/關閉: "" +*zh_TW.Translation HPColorOptionsPanel/色彩: "" +*zh_TW.Translation HPPJLColorAsGray/用灰色列印彩色: "" +*zh_TW.HPPJLColorAsGray yes/開啟: "" +*zh_TW.HPPJLColorAsGray no/關閉: "" +*zh_TW.Translation HPRGBEmulation/RGB 色彩: "" +*zh_TW.HPRGBEmulation DefaultSRGB/預設 (sRGB): "" +*zh_TW.HPRGBEmulation PhotoSRGB/相紙 (sRGB): "" +*zh_TW.HPRGBEmulation Adobe/相紙 (Adobe RGB 1998): "" +*zh_TW.HPRGBEmulation VividSRGB/鮮明 (sRGB): "" +*zh_TW.HPRGBEmulation HPRGBEmulationNone/無: "" +*zh_TW.Translation HPEdgeControl/邊緣控制: "" +*zh_TW.HPEdgeControl HPEdgeControlOff/關閉: "" +*zh_TW.HPEdgeControl Light/淡: "" +*zh_TW.HPEdgeControl Normal/正常: "" +*zh_TW.HPEdgeControl Max/最大: "" +*zh_TW.Translation HPGeneralHalftone/半色調: "" +*zh_TW.HPGeneralHalftone Smooth/文字: "" +*zh_TW.HPGeneralHalftone Detail/細節: "" +*zh_TW.Translation HPTextNeutralGrays/文字中性灰色: "" +*zh_TW.HPTextNeutralGrays Black/純黑色: "" +*zh_TW.HPTextNeutralGrays ProcessBlack/4 色: "" +*zh_TW.Translation HPGraphicsNeutralGrays/圖形中性灰色: "" +*zh_TW.HPGraphicsNeutralGrays Black/純黑色: "" +*zh_TW.HPGraphicsNeutralGrays ProcessBlack/4 色: "" +*zh_TW.Translation HPPhotoNeutralGrays/照片中性灰色: "" +*zh_TW.HPPhotoNeutralGrays Black/純黑色: "" +*zh_TW.HPPhotoNeutralGrays ProcessBlack/4 色: "" +*zh_TW.Translation HPPaperQualityPanel/Paper/Quality: "" +*zh_TW.Translation HPPJLEconoMode/EconoMode: "" +*zh_TW.HPPJLEconoMode True/開啟: "" +*zh_TW.HPPJLEconoMode False/關閉: "" +*zh_TW.Translation MediaType/媒體類型: "" +*zh_TW.MediaType Unspecified/未指定: "" +*zh_TW.MediaType Plain/素面紙: "" +*zh_TW.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*zh_TW.MediaType HPLaserJet90/HP LaserJet 90 克紙: "" +*zh_TW.MediaType HPColorLaserMatte105/HP 彩色雷射霧面紙 105g: "" +*zh_TW.MediaType HPPremiumChoiceMatte120/HP 高級霧面紙 120g: "" +*zh_TW.MediaType HPBrochureMatte150/HP 霧面型錄紙 150g: "" +*zh_TW.MediaType HPCoverMatte200/HP 霧面封面紙 200g: "" +*zh_TW.MediaType HPMattePhoto200/HP 霧面相紙 200g: "" +*zh_TW.MediaType HPPremiumPresentationGlossy120/HP 高級光面簡報紙 120g: "" +*zh_TW.MediaType HPBrochureGlossy150/HP 光面型錄紙 150g: "" +*zh_TW.MediaType HPTrifoldBrochureGlossy150/HP 光面三摺型錄紙 150g: "" +*zh_TW.MediaType HPBrochureGlossy200/HP 光面型錄紙 200g: "" +*zh_TW.MediaType Light6074/輕磅紙 60-74g: "" +*zh_TW.MediaType Intermediate8595/嫖醱祧 85-95g: "" +*zh_TW.MediaType MidWeight96110/中磅紙 96-110g: "" +*zh_TW.MediaType Heavy111130/重磅紙 111-130g: "" +*zh_TW.MediaType ExtraHeavy131175/超重磅紙 131-175g: "" +*zh_TW.MediaType HeavyGlossy111130/重磅光面紙 111-130g: "" +*zh_TW.MediaType ExtraHeavyGlossy131175/超厚光滑紙 131-175g: "" +*zh_TW.MediaType CardGlossy176220/光面賀卡紙 176-220g: "" +*zh_TW.MediaType ColorLaserTransparency/彩色雷射投影片: "" +*zh_TW.MediaType Labels/標籤: "" +*zh_TW.MediaType Letterhead/信頭紙: "" +*zh_TW.MediaType Envelope/信封: "" +*zh_TW.MediaType HeavyEnvelope/重磅信封: "" +*zh_TW.MediaType Preprinted/預印的: "" +*zh_TW.MediaType Prepunched/打孔過的: "" +*zh_TW.MediaType Colored/彩紙: "" +*zh_TW.MediaType Bond/雪銅紙: "" +*zh_TW.MediaType Recycled/再生紙: "" +*zh_TW.MediaType Rough/粗糙紙: "" +*zh_TW.MediaType HeavyRough/重磅粗糙紙: "" +*zh_TW.MediaType OpaqueFilm/不透明膠片: "" +*zh_TW.APPrinterPreset ChartsAndGraphs/圖表和圖形: "" +*zh_TW.cupsICCProfile RGB../sRGB Matching Profile: "" +*zh_TW.cupsICCProfile CMYK../CMYK Matching Profile: "" +*zh_TW.cupsICCProfile Gray../Gray Matching Profile: "" +*zh_TW.cupsMarkerName cyan/青藍色: "" +*zh_TW.cupsMarkerName magenta/洋紅色: "" +*zh_TW.cupsMarkerName yellow/黃色: "" +*zh_TW.cupsMarkerName black/黑色: "" +*DefaultFont: Courier +*Font Albertus-ExtraBold: Standard "(001.001)" Standard ROM +*Font Albertus-Medium: Standard "(001.001)" Standard ROM +*Font AntiqueOlive: Standard "(001.001)" Standard ROM +*Font AntiqueOlive-Bold: Standard "(001.001)" Standard ROM +*Font AntiqueOlive-Italic: Standard "(001.001)" Standard ROM +*Font Arial: Standard "(001.001)" Standard ROM +*Font Arial-Bold: Standard "(001.001)" Standard ROM +*Font Arial-BoldItalic: Standard "(001.001)" Standard ROM +*Font Arial-Italic: Standard "(001.001)" Standard ROM +*Font AvantGarde-Book: Standard "(001.001)" Standard ROM +*Font AvantGarde-BookOblique: Standard "(001.001)" Standard ROM +*Font AvantGarde-Demi: Standard "(001.001)" Standard ROM +*Font AvantGarde-DemiOblique: Standard "(001.001)" Standard ROM +*Font Bookman-Demi: Standard "(001.001)" Standard ROM +*Font Bookman-DemiItalic: Standard "(001.001)" Standard ROM +*Font Bookman-Light: Standard "(001.001)" Standard ROM +*Font Bookman-LightItalic: Standard "(001.001)" Standard ROM +*Font BookmanCE-Demi: Win1250 "(001.001)" ExtendedRoman ROM +*Font BookmanCE-DemiItalic: Win1250 "(001.001)" ExtendedRoman ROM +*Font BookmanCE-Light: Win1250 "(001.001)" ExtendedRoman ROM +*Font BookmanCE-LightItalic: Win1250 "(001.001)" ExtendedRoman ROM +*Font CGOmega: Standard "(001.001)" Standard ROM +*Font CGOmega-Bold: Standard "(001.001)" Standard ROM +*Font CGOmega-BoldItalic: Standard "(001.001)" Standard ROM +*Font CGOmega-Italic: Standard "(001.001)" Standard ROM +*Font CGTimes: Standard "(001.001)" Standard ROM +*Font CGTimes-Bold: Standard "(001.001)" Standard ROM +*Font CGTimes-BoldItalic: Standard "(001.001)" Standard ROM +*Font CGTimes-Italic: Standard "(001.001)" Standard ROM +*Font Clarendon-Condensed-Bold: Standard "(001.001)" Standard ROM +*Font Coronet: Standard "(001.001)" Standard ROM +*Font Courier: Standard "(001.001)" Standard ROM +*Font Courier-Bold: Standard "(001.001)" Standard ROM +*Font Courier-BoldOblique: Standard "(001.001)" Standard ROM +*Font Courier-Oblique: Standard "(001.001)" Standard ROM +*Font CourierHP: Standard "(001.001)" Standard ROM +*Font CourierHP-Bold: Standard "(001.001)" Standard ROM +*Font CourierHP-BoldItalic: Standard "(001.001)" Standard ROM +*Font CourierHP-Italic: Standard "(001.001)" Standard ROM +*Font Garamond-Antiqua: Standard "(001.001)" Standard ROM +*Font Garamond-Halbfett: Standard "(001.001)" Standard ROM +*Font Garamond-Kursiv: Standard "(001.001)" Standard ROM +*Font Garamond-KursivHalbfett: Standard "(001.001)" Standard ROM +*Font Helvetica: Standard "(001.001)" Standard ROM +*Font Helvetica-Bold: Standard "(001.001)" Standard ROM +*Font Helvetica-BoldOblique: Standard "(001.001)" Standard ROM +*Font Helvetica-Narrow: Standard "(001.001)" Standard ROM +*Font Helvetica-Narrow-Bold: Standard "(001.001)" Standard ROM +*Font Helvetica-Narrow-BoldOblique: Standard "(001.001)" Standard ROM +*Font Helvetica-Narrow-Oblique: Standard "(001.001)" Standard ROM +*Font Helvetica-Oblique: Standard "(001.001)" Standard ROM +*Font LetterGothic: Standard "(001.001)" Standard ROM +*Font LetterGothic-Bold: Standard "(001.001)" Standard ROM +*Font LetterGothic-Italic: Standard "(001.001)" Standard ROM +*Font Marigold: Standard "(001.001)" Standard ROM +*Font NewCenturySchlbk-Bold: Standard "(001.001)" Standard ROM +*Font NewCenturySchlbk-BoldItalic: Standard "(001.001)" Standard ROM +*Font NewCenturySchlbk-Italic: Standard "(001.001)" Standard ROM +*Font NewCenturySchlbk-Roman: Standard "(001.001)" Standard ROM +*Font Palatino-Bold: Standard "(001.001)" Standard ROM +*Font Palatino-BoldItalic: Standard "(001.001)" Standard ROM +*Font Palatino-Italic: Standard "(001.001)" Standard ROM +*Font Palatino-Roman: Standard "(001.001)" Standard ROM +*Font Symbol: Special "(001.001)" Special ROM +*Font SymbolMT: Standard "(001.001)" Standard ROM +*Font Times-Bold: Standard "(001.001)" Standard ROM +*Font Times-BoldItalic: Standard "(001.001)" Standard ROM +*Font Times-Italic: Standard "(001.001)" Standard ROM +*Font Times-Roman: Standard "(001.001)" Standard ROM +*Font TimesNewRoman: Standard "(001.001)" Standard ROM +*Font TimesNewRoman-Bold: Standard "(001.001)" Standard ROM +*Font TimesNewRoman-BoldItalic: Standard "(001.001)" Standard ROM +*Font TimesNewRoman-Italic: Standard "(001.001)" Standard ROM +*Font Univers-Bold: Standard "(001.001)" Standard ROM +*Font Univers-BoldItalic: Standard "(001.001)" Standard ROM +*Font Univers-Condensed-Bold: Standard "(001.001)" Standard ROM +*Font Univers-Condensed-BoldItalic: Standard "(001.001)" Standard ROM +*Font Univers-Condensed-Medium: Standard "(001.001)" Standard ROM +*Font Univers-Condensed-MediumItalic: Standard "(001.001)" Standard ROM +*Font Univers-Medium: Standard "(001.001)" Standard ROM +*Font Univers-MediumItalic: Standard "(001.001)" Standard ROM +*Font Wingdings-Regular: Special "(001.001)" Special ROM +*Font Wingdings-Regular: Standard "(001.001)" Standard ROM +*Font ZapfChancery-MediumItalic: Standard "(001.001)" Standard ROM +*Font ZapfDingbats: Special "(001.001)" Special ROM +*% End of HPP00052.PPD, 211422 bytes. diff --git a/configfiles/etc/cups/ppd/Salle224.ppd.O b/configfiles/etc/cups/ppd/Salle224.ppd.O new file mode 100644 index 0000000..766fdbc --- /dev/null +++ b/configfiles/etc/cups/ppd/Salle224.ppd.O @@ -0,0 +1,4137 @@ +*PPD-Adobe: "4.3" +*% ================================= +*% Copyright 1992-2009 Hewlett-Packard Company +*% Permission is hereby granted, free of charge, to any person obtaining +*% a copy of this software and associated documentation files (the +*% "Software"), to deal in the Software without restriction, including +*% without limitation the rights to use, copy, modify, merge, publish, +*% distribute, sublicense, and/or sell copies of the Software, and to +*% permit persons to whom the Software is furnished to do so, subject to +*% the following conditions: +*% +*% The above copyright notice and this permission notice shall be +*% included in all copies or substantial portions of the Software. +*% +*% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +*% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +*% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +*% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +*% LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +*% OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +*% WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +*% +*% [this is the MIT open source license -- please see www.opensource.org] +*% +*% Disclaimer: The above statement indicates +*% that this PPD was written using the Adobe PPD +*% File Format Specification 4.3, but does not +*% intend to imply approval and acceptance by +*% Adobe Systems, Inc. +*% ======================================================= +*% Printer Description File +*% (c) Copyright 2006-2009 Hewlett-Packard Development Company, L.P. +*% PPD for HP LaserJet P2015 Series +*% For Macintosh only +*%======================================================== +*%================================================= +*% PPD File Version Information +*%================================================= +*FileVersion: "1.1" +*HPBuildNumber: "001" +*FormatVersion: "4.3" +*LanguageEncoding: ISOLatin1 +*LanguageVersion: English +*cupsLanguages: "da de es fi fr it ja ko nl nb pt sv zh_CN zh_TW" +*PCFileName: "HPP2015.PPD" + + + +*%*APScanAppBundleID: "com.hp.laserjet.scan" + + +*%================================================= +*% Product Version Information +*%================================================= +*ModelName: "HP LaserJet P2015 Series" +*ShortNickName: "HP LaserJet P2015" +*NickName: "HP LaserJet P2015 Series Postscript (recommended)" +*Product: "(HP LaserJet P2015 Series)" +*Product: "(Hewlett-Packard HP LaserJet P2015 Series)" +*Manufacturer: "HP" +*PSVersion: "(3010.107) 0" + +*%================================================= +*% Device Capabilities +*%================================================= +*ColorDevice: False +*DefaultColorSpace: Gray +*FileSystem: False + +*LanguageLevel: "2" +*Throughput: "27" +*TTRasterizer: Type42 +*?TTRasterizer: " + save + 42 /FontType resourcestatus + { pop pop (Type42)} {pop pop (None)} ifelse = flush + restore +" +*End + +*%================================================= +*% Emulations and Protocols +*%================================================= +*Protocols: TBCP + +*SuggestedJobTimeout: "0" +*SuggestedWaitTimeout: "120" +*PrintPSErrors: True +*%================================================= +*% Installable Options +*%================================================= +*OpenGroup: InstallableOptions/Installed Options +*da.Translation InstallableOptions/Installeret tilbehør: "" +*de.Translation InstallableOptions/Installierte Optionen: "" +*es.Translation InstallableOptions/Opciones instaladas: "" +*fi.Translation InstallableOptions/Asennetut lisävarusteet: "" +*fr.Translation InstallableOptions/Options installées: "" +*it.Translation InstallableOptions/Opzioni installate: "" +*ja.Translation InstallableOptions/インストール済オプション: "" +*ko.Translation InstallableOptions/설치된 선택사양: "" +*nl.Translation InstallableOptions/Geïnstalleerde opties: "" +*nb.Translation InstallableOptions/Installerte alternativer: "" +*pt.Translation InstallableOptions/Versıes Instaladas: "" +*sv.Translation InstallableOptions/Installerade tillbehör: "" +*zh_CN.Translation InstallableOptions/已安装的选项: "" +*zh_TW.Translation InstallableOptions/安裝的選項: "" + +*OpenUI *HPCollateSupported/Collation in Printer: PickOne +*DefaultHPCollateSupported: False +*da.Translation HPCollateSupported/Samling i printer: "" +*de.Translation HPCollateSupported/Drucker-Sortierreihenfolge: "" +*es.Translation HPCollateSupported/Organización en orden en la impresora: "" +*fi.Translation HPCollateSupported/Lajittelu kirjoittimessa: "" +*fr.Translation HPCollateSupported/Assemblage dans l'imprimante: "" +*it.Translation HPCollateSupported/Fascicolazione nella stampante: "" +*ja.Translation HPCollateSupported/プリンタ内の並び替え: "" +*ko.Translation HPCollateSupported/프린터의 데이터 정렬: "" +*nl.Translation HPCollateSupported/Sortering in printer: "" +*nb.Translation HPCollateSupported/Kollatering i skriveren: "" +*pt.Translation HPCollateSupported/Intercalamento na impressora: "" +*sv.Translation HPCollateSupported/Sortering i skrivaren: "" +*zh_CN.Translation HPCollateSupported/打印机中的分页: "" +*zh_TW.Translation HPCollateSupported/印表機中的分頁: "" + +*HPCollateSupported True/Yes<3A> Total RAM <3E>= 96 MB: "" +*da.HPCollateSupported True/Ja<3A> Total RAM <3E>= 96 MB: "" +*de.HPCollateSupported True/Ja<3A> Gesamt-RAM <3E>= 96 MB: "" +*es.HPCollateSupported True/Sí<3A> RAM total <3E>= 96 MB: "" +*fi.HPCollateSupported True/Kyllä<3A> RAM-muistin kokonaismäärä <3E>= 96 MB: "" +*fr.HPCollateSupported True/Oui<3A> RAM totale <3E>= 96 Mo: "" +*it.HPCollateSupported True/Si<3A> RAM totale <3E>= 96 MB: "" +*ja.HPCollateSupported True/はい<3A> 合計 RAM <3E>= 96 MB: "" +*ko.HPCollateSupported True/예<3A> 총 RAM <3E>= 96 MB: "" +*nl.HPCollateSupported True/Ja<3A> Totaal RAM <3E>= 96 MB: "" +*nb.HPCollateSupported True/Ja<3A> Total RAM <3E>= 96 MB: "" +*pt.HPCollateSupported True/Sim<3A> RAM total <3E>= 96 MB: "" +*sv.HPCollateSupported True/Ja<3A> Totalt RAM <3E>= 96 MB: "" +*zh_CN.HPCollateSupported True/是<3A>总内存 <3E>= 96 MB: "" +*zh_TW.HPCollateSupported True/是<3A>總隨機存取記憶體 <3E>= 96 MB: "" + +*HPCollateSupported False/No<3A> Total RAM <3C> 96 MB: "" +*da.HPCollateSupported False/Nej<3A> Total RAM <3C> 96 MB: "" +*de.HPCollateSupported False/Nein<3A> Gesamt-RAM <3C> 96 MB: "" +*es.HPCollateSupported False/No<3A> RAM total <3C> 96 MB: "" +*fi.HPCollateSupported False/Ei<3A> RAM-muistin kokonaismäärä <3C> 96 MB: "" +*fr.HPCollateSupported False/Non<3A> RAM totale <3C> 96 Mo: "" +*it.HPCollateSupported False/No<3A> RAM totale <3C> 96 MB: "" +*ja.HPCollateSupported False/いいえ<3A> 合計 RAM <3C> 96 MB: "" +*ko.HPCollateSupported False/아니오<3A> 총 RAM <3C> 96: "" +*nl.HPCollateSupported False/Nee<3A> Totaal RAM <3C> 96 MB: "" +*nb.HPCollateSupported False/Nei<3A> Total RAM <3C> 96 MB: "" +*pt.HPCollateSupported False/Não<3A> RAM total <3C> 96 MB: "" +*sv.HPCollateSupported False/Nej<3A> Totalt RAM <3C> 96 MB: "" +*zh_CN.HPCollateSupported False/否<3A>总内存 <3C> 96 MB: "" +*zh_TW.HPCollateSupported False/否<3A>總隨機存取記憶體 <3C> 96 MB: "" + +*?HPCollateSupported: " + save + mark + <> >> setpagedevice + { <> setpagedevice + } stopped + { (False) } + { (True) } ifelse = flush + cleartomark + restore +" +*End +*CloseUI: *HPCollateSupported + +*OpenUI *HPOption_Tray3/Tray 3: Boolean +*DefaultHPOption_Tray3: False +*da.Translation HPOption_Tray3/Bakke 3: "" +*de.Translation HPOption_Tray3/Zufuhrfach 3: "" +*es.Translation HPOption_Tray3/Bandeja 3: "" +*fi.Translation HPOption_Tray3/Lokero 3: "" +*fr.Translation HPOption_Tray3/Bac 3: "" +*it.Translation HPOption_Tray3/Vassoio 3: "" +*ja.Translation HPOption_Tray3/トレイ 3: "" +*ko.Translation HPOption_Tray3/용지함 3: "" +*nl.Translation HPOption_Tray3/Lade 3: "" +*nb.Translation HPOption_Tray3/Skuff 3: "" +*pt.Translation HPOption_Tray3/Bandeja 3: "" +*sv.Translation HPOption_Tray3/Fack 3: "" +*zh_CN.Translation HPOption_Tray3/纸盒3: "" +*zh_TW.Translation HPOption_Tray3/紙匣3: "" + +*HPOption_Tray3 True/Installed: "" +*da.HPOption_Tray3 True/Installeret: "" +*de.HPOption_Tray3 True/Installiert: "" +*es.HPOption_Tray3 True/Instalado: "" +*fi.HPOption_Tray3 True/Asennettu: "" +*fr.HPOption_Tray3 True/Installé: "" +*it.HPOption_Tray3 True/Installato: "" +*ja.HPOption_Tray3 True/インストール済: "" +*ko.HPOption_Tray3 True/설치됨: "" +*nl.HPOption_Tray3 True/Geïnstalleerd: "" +*nb.HPOption_Tray3 True/Installert: "" +*pt.HPOption_Tray3 True/Instalada: "" +*sv.HPOption_Tray3 True/Installerat: "" +*zh_CN.HPOption_Tray3 True/已安装: "" +*zh_TW.HPOption_Tray3 True/已安裝: "" + +*HPOption_Tray3 False/Not Installed: "" +*da.HPOption_Tray3 False/Ikke installeret: "" +*de.HPOption_Tray3 False/Nicht installiert: "" +*es.HPOption_Tray3 False/No Instalado: "" +*fi.HPOption_Tray3 False/Ei asennettu: "" +*fr.HPOption_Tray3 False/Non installé: "" +*it.HPOption_Tray3 False/Non installato: "" +*ja.HPOption_Tray3 False/インストールされていない: "" +*ko.HPOption_Tray3 False/설치되지 않음: "" +*nl.HPOption_Tray3 False/Niet geïnstalleerd: "" +*nb.HPOption_Tray3 False/Ikke installert: "" +*pt.HPOption_Tray3 False/Não instalada: "" +*sv.HPOption_Tray3 False/Ej installerat: "" +*zh_CN.HPOption_Tray3 False/未安装: "" +*zh_TW.HPOption_Tray3 False/尚未安裝: "" + +*?HPOption_Tray3: " + save + currentpagedevice /InputAttributes get 1 known + {(True)}{(False)} ifelse = flush + restore +" +*End +*CloseUI: *HPOption_Tray3 + + +*OpenUI *HPOption_Duplexer/Duplex Unit: Boolean +*DefaultHPOption_Duplexer: True +*da.Translation HPOption_Duplexer/Dupleksudskrivningsudstyr: "" +*de.Translation HPOption_Duplexer/Duplexdruck-Zubehör: "" +*es.Translation HPOption_Duplexer/Accesorio para impresión dúplex: "" +*fi.Translation HPOption_Duplexer/Kaksipuolisen tulostuksen lisälaite: "" +*fr.Translation HPOption_Duplexer/Accessoire d'impression recto verso: "" +*it.Translation HPOption_Duplexer/Accessorio per stampa duplex: "" +*ja.Translation HPOption_Duplexer/両面印刷アクセサリ: "" +*ko.Translation HPOption_Duplexer/양면 인쇄 부속품: "" +*nl.Translation HPOption_Duplexer/Duplexeenheid: "" +*nb.Translation HPOption_Duplexer/Ekstrautstyr for dobbeltsidig utskrift: "" +*pt.Translation HPOption_Duplexer/Ùnidade dúplex: "" +*sv.Translation HPOption_Duplexer/Tillbehör för dubbelsidig utskrift: "" +*zh_CN.Translation HPOption_Duplexer/双面打印附件: "" +*zh_TW.Translation HPOption_Duplexer/雙面列印裝置: "" + +*HPOption_Duplexer True/Installed: "" +*da.HPOption_Duplexer True/Installeret: "" +*de.HPOption_Duplexer True/Installiert: "" +*es.HPOption_Duplexer True/Instalado: "" +*fi.HPOption_Duplexer True/Asennettu: "" +*fr.HPOption_Duplexer True/Installé: "" +*it.HPOption_Duplexer True/Installato: "" +*ja.HPOption_Duplexer True/インストール済み: "" +*ko.HPOption_Duplexer True/설치: "" +*nl.HPOption_Duplexer True/Geïnstalleerd: "" +*nb.HPOption_Duplexer True/Installert: "" +*pt.HPOption_Duplexer True/Instalado: "" +*sv.HPOption_Duplexer True/Installerad: "" +*zh_CN.HPOption_Duplexer True/已安装: "" +*zh_TW.HPOption_Duplexer True/已安裝: "" + +*HPOption_Duplexer False/Not Installed: "" +*da.HPOption_Duplexer False/Ikke installeret: "" +*de.HPOption_Duplexer False/Nicht installiert: "" +*es.HPOption_Duplexer False/No instalado: "" +*fi.HPOption_Duplexer False/Ei asennettu: "" +*fr.HPOption_Duplexer False/Non installé: "" +*it.HPOption_Duplexer False/Non installato: "" +*ja.HPOption_Duplexer False/インストールされていない: "" +*ko.HPOption_Duplexer False/미설치: "" +*nl.HPOption_Duplexer False/Niet geïnstalleerd: "" +*nb.HPOption_Duplexer False/Ikke installert: "" +*pt.HPOption_Duplexer False/Não Instalado: "" +*sv.HPOption_Duplexer False/Ej installerad: "" +*zh_CN.HPOption_Duplexer False/未安装: "" +*zh_TW.HPOption_Duplexer False/未安裝: "" + +*?HPOption_Duplexer: " + save + currentpagedevice /Duplex known + {(True)}{(False)}ifelse = flush + restore +" +*End +*CloseUI: *HPOption_Duplexer + + +*%==================================== +*% Fit to Page +*%==================================== + +*OpenUI *HPPaperPolicy/Fit to Page: PickOne +*OrderDependency: 10 AnySetup *HPPaperPolicy +*DefaultHPPaperPolicy: PromptUser +*da.Translation HPPaperPolicy/Tilpas til side: "" +*de.Translation HPPaperPolicy/An Seite anpassen: "" +*es.Translation HPPaperPolicy/Ajustar a la página: "" +*fi.Translation HPPaperPolicy/Sovita sivulle: "" +*fr.Translation HPPaperPolicy/Ajuster à la page: "" +*it.Translation HPPaperPolicy/Adatta a dimensioni pagina: "" +*ja.Translation HPPaperPolicy/用紙のマッチング: "" +*ko.Translation HPPaperPolicy/페이지에 맞춤: "" +*nl.Translation HPPaperPolicy/Papieraanpassing: "" +*nb.Translation HPPaperPolicy/Tilpass til side: "" +*pt.Translation HPPaperPolicy/Ajustar à página: "" +*sv.Translation HPPaperPolicy/Anpassa till sida: "" +*zh_CN.Translation HPPaperPolicy/适合页面: "" +*zh_TW.Translation HPPaperPolicy/符合頁面大小: "" + +*HPPaperPolicy PromptUser/Prompt User: " + <> setpagedevice" +*End +*da.HPPaperPolicy PromptUser/Spørg brugeren: "" +*de.HPPaperPolicy PromptUser/Benutzeraufforderung: "" +*es.HPPaperPolicy PromptUser/Informar al usuario: "" +*fi.HPPaperPolicy PromptUser/Kysy käyttäjältä: "" +*fr.HPPaperPolicy PromptUser/Demander à l'utilisateur: "" +*it.HPPaperPolicy PromptUser/Avvisa utente: "" +*ja.HPPaperPolicy PromptUser/正しいサイズを入力するように要求: "" +*ko.HPPaperPolicy PromptUser/프롬프트 사용자: "" +*nl.HPPaperPolicy PromptUser/Gebruiker waarschuwen: "" +*nb.HPPaperPolicy PromptUser/Gi beskjed til bruker: "" +*pt.HPPaperPolicy PromptUser/Avisar usuário: "" +*sv.HPPaperPolicy PromptUser/Meddela användaren: "" +*zh_CN.HPPaperPolicy PromptUser/提示用户: "" +*zh_TW.HPPaperPolicy PromptUser/提示使用者: "" + +*HPPaperPolicy NearestSizeAdjust/Nearest Size and Scale: " + <> setpagedevice + <> >> setpagedevice" +*End +*da.HPPaperPolicy NearestSizeAdjust/Nærmeste størrelse og skalering: "" +*de.HPPaperPolicy NearestSizeAdjust/Nächstkleineres/-größeres Format & Skalierung: "" +*es.HPPaperPolicy NearestSizeAdjust/Usar tamaño más parecido y cambiar la escala: "" +*fi.HPPaperPolicy NearestSizeAdjust/Lähin koko ja skaalaus: "" +*fr.HPPaperPolicy NearestSizeAdjust/Format et échelle les plus proches: "" +*it.HPPaperPolicy NearestSizeAdjust/Formato più vicino e scala: "" +*ja.HPPaperPolicy NearestSizeAdjust/近似サイズに拡大/縮小: "" +*ko.HPPaperPolicy NearestSizeAdjust/근사 크기와 축소/확대: "" +*nl.HPPaperPolicy NearestSizeAdjust/Dichtst benaderende afmeting en schaal: "" +*nb.HPPaperPolicy NearestSizeAdjust/Nærmeste størrelse og skala: "" +*pt.HPPaperPolicy NearestSizeAdjust/Tamanho mais próximo e ajusta a escala: "" +*sv.HPPaperPolicy NearestSizeAdjust/Närmaste storlek och skala: "" +*zh_CN.HPPaperPolicy NearestSizeAdjust/最接近之尺寸和缩放度: "" +*zh_TW.HPPaperPolicy NearestSizeAdjust/最接近的尺寸並按比例縮放: "" + +*HPPaperPolicy NearestSizeNoAdjust/Nearest Size and Crop: " + <> setpagedevice + <> >> setpagedevice" +*End +*da.HPPaperPolicy NearestSizeNoAdjust/Nærmeste størrelse og beskæring: "" +*de.HPPaperPolicy NearestSizeNoAdjust/Nächstkleineres/-größeres Format & Zuschnitt: "" +*es.HPPaperPolicy NearestSizeNoAdjust/Usar tamaño más parecido y recortar: "" +*fi.HPPaperPolicy NearestSizeNoAdjust/Lähin koko ja rajaus: "" +*fr.HPPaperPolicy NearestSizeNoAdjust/Format et coupe les plus proches: "" +*it.HPPaperPolicy NearestSizeNoAdjust/Formato più vicino e taglia: "" +*ja.HPPaperPolicy NearestSizeNoAdjust/近似サイズにトリミング: "" +*ko.HPPaperPolicy NearestSizeNoAdjust/근사 크기와 자르기: "" +*nl.HPPaperPolicy NearestSizeNoAdjust/Dichtst benaderende grootte en trim: "" +*nb.HPPaperPolicy NearestSizeNoAdjust/Nærmeste størrelse og beskjæring: "" +*pt.HPPaperPolicy NearestSizeNoAdjust/Tamanho mais próximo e corta: "" +*sv.HPPaperPolicy NearestSizeNoAdjust/Närmaste storlek och beskär: "" +*zh_CN.HPPaperPolicy NearestSizeNoAdjust/最接近之尺寸和剪裁: "" +*zh_TW.HPPaperPolicy NearestSizeNoAdjust/最接近的尺寸並裁剪: "" + +*?HPPaperPolicy: "(PromptUser) = flush" +*CloseUI: *HPPaperPolicy + +*CloseGroup: InstallableOptions + +*% ================================= +*% Services Support +*% ================================= +*OpenGroup: Services/Services +*da.Translation Services/Service: "" +*de.Translation Services/Dienste: "" +*es.Translation Services/Servicios: "" +*fi.Translation Services/Huolto: "" +*fr.Translation Services/Services: "" +*it.Translation Services/Servizi: "" +*ja.Translation Services/サービス: "" +*ko.Translation Services/서비스: "" +*nl.Translation Services/Service: "" +*nb.Translation Services/Tjenester: "" +*pt.Translation Services/Serviços: "" +*sv.Translation Services/Tjänster: "" +*zh_CN.Translation Services/服务: "" +*zh_TW.Translation Services/維修: "" + + +*OpenUI *HPServicesWeb/Services on the Web: PickOne +*OrderDependency: 50 AnySetup *HPServicesWeb +*DefaultHPServicesWeb: SupportAndTroubleshooting +*da.Translation HPServicesWeb/Tjenester på internet: "" +*de.Translation HPServicesWeb/Dienste im Internet: "" +*es.Translation HPServicesWeb/Servicios en Internet: "" +*fi.Translation HPServicesWeb/Internet-palvelut: "" +*fr.Translation HPServicesWeb/Services sur Internet: "" +*it.Translation HPServicesWeb/Servizi su Internet: "" +*ja.Translation HPServicesWeb/インターネットサービス: "" +*ko.Translation HPServicesWeb/인터넷 서비스: "" +*nl.Translation HPServicesWeb/Services op Internet: "" +*nb.Translation HPServicesWeb/Tjenester på Internett: "" +*pt.Translation HPServicesWeb/Serviços na Internet: "" +*sv.Translation HPServicesWeb/Tjänster på Internet: "" +*zh_CN.Translation HPServicesWeb/互联网上的服务: "" +*zh_TW.Translation HPServicesWeb/網際網路服務: "" + + +*HPServicesWeb SupportAndTroubleshooting/Support and Troubleshooting: "" +*da.HPServicesWeb SupportAndTroubleshooting/Support og fejlfinding: "" +*de.HPServicesWeb SupportAndTroubleshooting/Support und Problembehandlung: "" +*es.HPServicesWeb SupportAndTroubleshooting/Asistencia técnica y solución de problemas: "" +*fi.HPServicesWeb SupportAndTroubleshooting/Tuki ja vianmääritys: "" +*fr.HPServicesWeb SupportAndTroubleshooting/Support et dépannage: "" +*it.HPServicesWeb SupportAndTroubleshooting/Supporto e soluzione dei problemi: "" +*ja.HPServicesWeb SupportAndTroubleshooting/製品サポート: "" +*ko.HPServicesWeb SupportAndTroubleshooting/지원 및 문제해결: "" +*nl.HPServicesWeb SupportAndTroubleshooting/Support en Problemen oplossen: "" +*nb.HPServicesWeb SupportAndTroubleshooting/Støtte og problemløsing: "" +*pt.HPServicesWeb SupportAndTroubleshooting/Suporte e solução de problemas: "" +*sv.HPServicesWeb SupportAndTroubleshooting/Produktsupport: "" +*zh_CN.HPServicesWeb SupportAndTroubleshooting/支持和疑难排除: "" +*zh_TW.HPServicesWeb SupportAndTroubleshooting/支援與疑難排解: "" + +*HPServicesWeb ProductManuals/Product Manuals: "" +*da.HPServicesWeb ProductManuals/Produktvejledninger: "" +*de.HPServicesWeb ProductManuals/Produkthandbücher: "" +*es.HPServicesWeb ProductManuals/Manuales de productos: "" +*fi.HPServicesWeb ProductManuals/Tuotteen käyttöoppaat: "" +*fr.HPServicesWeb ProductManuals/Manuels produits: "" +*it.HPServicesWeb ProductManuals/Manuali relativi al prodotto: "" +*ja.HPServicesWeb ProductManuals/製品マニュアル: "" +*ko.HPServicesWeb ProductManuals/제품 설명서: "" +*nl.HPServicesWeb ProductManuals/Productdocumentatie: "" +*nb.HPServicesWeb ProductManuals/Produkthåndbøker: "" +*pt.HPServicesWeb ProductManuals/Manuais de produto: "" +*sv.HPServicesWeb ProductManuals/Produkthandböcker: "" +*zh_CN.HPServicesWeb ProductManuals/产品手册: "" +*zh_TW.HPServicesWeb ProductManuals/產品手冊: "" + + +*HPServicesWeb OrderSupplies/Order Supplies: "" +*da.HPServicesWeb OrderSupplies/Bestil forbrugsvarer: "" +*de.HPServicesWeb OrderSupplies/Verbrauchsmaterial bestellen: "" +*es.HPServicesWeb OrderSupplies/Pedir suministros: "" +*fi.HPServicesWeb OrderSupplies/Tilaa tarvikkeita: "" +*fr.HPServicesWeb OrderSupplies/Commander des fournitures: "" +*it.HPServicesWeb OrderSupplies/Ordina materiali di consumo: "" +*ja.HPServicesWeb OrderSupplies/製品情報: "" +*ko.HPServicesWeb OrderSupplies/소모품 주문: "" +*nl.HPServicesWeb OrderSupplies/Benodigdheden bestellen: "" +*nb.HPServicesWeb OrderSupplies/Bestill rekvisita: "" +*pt.HPServicesWeb OrderSupplies/Encomendar suprimentos: "" +*sv.HPServicesWeb OrderSupplies/Beställ förbrukningsmaterial: "" +*zh_CN.HPServicesWeb OrderSupplies/订购耗材: "" +*zh_TW.HPServicesWeb OrderSupplies/訂購耗材: "" + +*CloseUI: *HPServicesWeb + +*CloseGroup: Services + +*HPServicesWebDS SupportAndTroubleshooting/The product's main support page on hp.com: "" +*da.HPServicesWebDS SupportAndTroubleshooting/Produktets hovedsupportside på hp.com: "" +*de.HPServicesWebDS SupportAndTroubleshooting/Support-Webseite des Produkts auf hp.com: "" +*es.HPServicesWebDS SupportAndTroubleshooting/Página principal de asistencia técnica del producto en hp.com: "" +*fi.HPServicesWebDS SupportAndTroubleshooting/Tuotteen päätukisivu osoitteessa hp.com: "" +*fr.HPServicesWebDS SupportAndTroubleshooting/Page d'assistance principale sur le site hp.com: "" +*it.HPServicesWebDS SupportAndTroubleshooting/Pagina principale di assistenza per il prodotto su hp.com: "" +*ja.HPServicesWebDS SupportAndTroubleshooting/hp.com 上の製品のメインサポートページ: "" +*ko.HPServicesWebDS SupportAndTroubleshooting/HP 웹 사이트의 제품 지원 페이지: "" +*nl.HPServicesWebDS SupportAndTroubleshooting/De belangrijkste ondersteuningspagina van het product op hp.com: "" +*nb.HPServicesWebDS SupportAndTroubleshooting/Hovedsiden for støtte til produktet på hp.com: "" +*pt.HPServicesWebDS SupportAndTroubleshooting/A página principal de suporte do produto em hp.com: "" +*sv.HPServicesWebDS SupportAndTroubleshooting/Produktens huvudsupportsida på hp.com: "" +*zh_CN.HPServicesWebDS SupportAndTroubleshooting/hp.com 上的产品支持主页。: "" +*zh_TW.HPServicesWebDS SupportAndTroubleshooting/產品在 hp.com 上的主要支援網頁。: "" + +*HPServicesWebDS ProductManuals/Online manuals that may be viewed or downloaded.: "" +*da.HPServicesWebDS ProductManuals/Onlinebrugervejledninger, der kan læses på skærmen eller overføres: "" +*de.HPServicesWebDS ProductManuals/Online-Handbücher, die angezeigt oder heruntergeladen werden können.: "" +*es.HPServicesWebDS ProductManuals/Manuales en línea que pueden visualizarse y descargarse.: "" +*fi.HPServicesWebDS ProductManuals/Online-käyttöoppaat, joita voidaan tarkastella tai ladata: "" +*fr.HPServicesWebDS ProductManuals/Manuels en ligne pouvant être affichés ou téléchargés: "" +*it.HPServicesWebDS ProductManuals/Manuali in linea che è possibile visualizzare o scaricare: "" +*ja.HPServicesWebDS ProductManuals/表示またはダウンロード可能なオンラインマニュアル: "" +*ko.HPServicesWebDS ProductManuals/열기 및 다운로드 가능한 온라인 설명서: "" +*nl.HPServicesWebDS ProductManuals/On line handleidingen die kunnen worden bekeken en gedownload.: "" +*nb.HPServicesWebDS ProductManuals/Elektroniske håndbøker som kan vises eller lastes ned.: "" +*pt.HPServicesWebDS ProductManuals/Manuais on-line para exibição e download.: "" +*sv.HPServicesWebDS ProductManuals/Handböcker online som kan visas eller hämtas.: "" +*zh_CN.HPServicesWebDS ProductManuals/可供查阅或下载的联机手册。: "" +*zh_TW.HPServicesWebDS ProductManuals/可供檢閱或下載的線上手冊。: "" + +*HPServicesWebDS OrderSupplies/Online shopping of supplies for your HP printer.: "" +*da.HPServicesWebDS OrderSupplies/Onlinebestilling af forbrugsvarer til din HP-printer: "" +*de.HPServicesWebDS OrderSupplies/Online-Einkauf von Verbrauchsmaterialien für HP Drucker.: "" +*es.HPServicesWebDS OrderSupplies/Compra en línea de suministros para su impresora HP.: "" +*fi.HPServicesWebDS OrderSupplies/HP-tulostimen tarvikkeiden ostaminen Internetin kautta: "" +*fr.HPServicesWebDS OrderSupplies/Achat en ligne de fournitures pour votre imprimante HP: "" +*it.HPServicesWebDS OrderSupplies/Acquisti su Internet di materiali di consumo per la stampante HP in uso: "" +*ja.HPServicesWebDS OrderSupplies/HP プリンタ専用サプライ品のオンラインショッピング: "" +*ko.HPServicesWebDS OrderSupplies/해당 HP 프린터용 소모품 온라인 구입: "" +*nl.HPServicesWebDS OrderSupplies/On line winkelen voor HP-printerbenodigdheden.: "" +*nb.HPServicesWebDS OrderSupplies/Elektronisk kjøp av rekvisita til HP-skriveren.: "" +*pt.HPServicesWebDS OrderSupplies/Shopping on-line de suprimentos para sua impressora HP.: "" +*sv.HPServicesWebDS OrderSupplies/Onlineförsäljning av förbrukningsmaterial till din HP-skrivare.: "" +*zh_CN.HPServicesWebDS OrderSupplies/在线购买 HP 打印机耗材: "" +*zh_TW.HPServicesWebDS OrderSupplies/線上採購 HP 印表機耗材: "" + + +*HPServicesWebAction SupportAndTroubleshooting: " +WEB;;http://h20180.www2.hp.com/apps/Nav?h_lang=H_LANG&h_cc=H_CC&h_pagetype=s-001&h_product=CB366A&h_page=hpcom&h_client=S-S-E003-1 +" +*End + +*HPServicesWebAction ProductManuals: " +WEB;;http://h20180.www2.hp.com/apps/Nav?h_lang=H_LANG&h_cc=H_CC&h_pagetype=s-003&h_product=CB366A&h_page=hpcom&h_client=S-S-E003-1 +" +*End + + + +*HPServicesWebAction OrderSupplies: " +WEB;;http://www.hp.com/post-embed/ordersupplies-na?AppName=Mombi&Product_Name=HP LaserJet P2015 Series +" +*End + +*HPServicesUtilityAction DeviceAndSuppliesStatus: " +EWS;;http://%s/ +" +*End + +*% ================================= + +*OpenGroup: HPImagingOptions/Image Quality +*da.Translation HPImagingOptions/Billedindstillinger: "" +*de.Translation HPImagingOptions/Abbildungsoptionen: "" +*es.Translation HPImagingOptions/Opciones de imagen: "" +*fi.Translation HPImagingOptions/Kuvanmuodostusasetukset: "" +*fr.Translation HPImagingOptions/Options d'image: "" +*it.Translation HPImagingOptions/Opzioni di immagine: "" +*ja.Translation HPImagingOptions/画質オプション: "" +*ko.Translation HPImagingOptions/이미지 옵션: "" +*nl.Translation HPImagingOptions/Afbeeldingen-opties: "" +*nb.Translation HPImagingOptions/Valg for bildebehandling: "" +*pt.Translation HPImagingOptions/Opções de imagem: "" +*sv.Translation HPImagingOptions/Alternativ för kvalitet: "" +*zh_CN.Translation HPImagingOptions/图象选项: "" +*zh_TW.Translation HPImagingOptions/影像選項: "" + + +*%================================== +*% HPEconoMode +*%================================== +*OpenUI *HPEconoMode/EconoMode: PickOne +*DefaultHPEconoMode: PrinterDefault +*da.Translation HPEconoMode/EconoMode: "" +*de.Translation HPEconoMode/EconoMode: "" +*es.Translation HPEconoMode/EconoMode: "" +*fi.Translation HPEconoMode/EconoMode: "" +*fr.Translation HPEconoMode/EconoMode: "" +*it.Translation HPEconoMode/EconoMode: "" +*ja.Translation HPEconoMode/EconoMode: "" +*ko.Translation HPEconoMode/EconoMode: "" +*nl.Translation HPEconoMode/EconoMode: "" +*nb.Translation HPEconoMode/EconoMode: "" +*pt.Translation HPEconoMode/EconoMode: "" +*sv.Translation HPEconoMode/EconoMode: "" +*zh_CN.Translation HPEconoMode/EconoMode: "" +*zh_TW.Translation HPEconoMode/EconoMode: "" + +*OrderDependency: 10 AnySetup *HPEconoMode +*HPEconoMode PrinterDefault/Printer's Current Setting: "" +*da.HPEconoMode PrinterDefault/Printerens aktuelle indstilling: "" +*de.HPEconoMode PrinterDefault/Aktuelle Druckereinstellung: "" +*es.HPEconoMode PrinterDefault/Configuración actual de la impresora: "" +*fi.HPEconoMode PrinterDefault/Kirjoittimen nykyinen asetus: "" +*fr.HPEconoMode PrinterDefault/Paramétrage actuel de l’imprimante: "" +*it.HPEconoMode PrinterDefault/Impostazioni correnti della stampante: "" +*ja.HPEconoMode PrinterDefault/プリンタの現在の設定: "" +*ko.HPEconoMode PrinterDefault/프린터 기본값: "" +*nl.HPEconoMode PrinterDefault/Huidige instelling van de printer: "" +*nb.HPEconoMode PrinterDefault/Skriverens gjeldende innstilling: "" +*pt.HPEconoMode PrinterDefault/Configuração atual da impressora: "" +*sv.HPEconoMode PrinterDefault/Skrivarens inställning: "" +*zh_CN.HPEconoMode PrinterDefault/打印机的当前设置: "" +*zh_TW.HPEconoMode PrinterDefault/印表機目前的設定值: "" + +*HPEconoMode True/Save Toner: " + <> setpagedevice" +*End +*da.HPEconoMode True/Spar toner: "" +*de.HPEconoMode True/Toner sparen: "" +*es.HPEconoMode True/Ahorrar tóner: "" +*fi.HPEconoMode True/Säästä väriainetta: "" +*fr.HPEconoMode True/Economiser l’encre: "" +*it.HPEconoMode True/Salva toner: "" +*ja.HPEconoMode True/トナー節約: "" +*ko.HPEconoMode True/토너 절약: "" +*nl.HPEconoMode True/Toner besparen: "" +*nb.HPEconoMode True/Spar toner: "" +*pt.HPEconoMode True/Economizar toner: "" +*sv.HPEconoMode True/Spara toner: "" +*zh_CN.HPEconoMode True/节省碳粉: "" +*zh_TW.HPEconoMode True/節約碳粉: "" + +*HPEconoMode False/Highest Quality: " + <> setpagedevice" +*End +*da.HPEconoMode False/Højeste kvalitet: "" +*de.HPEconoMode False/Beste Qualität: "" +*es.HPEconoMode False/Calidad óptima: "" +*fi.HPEconoMode False/Korkein laatu: "" +*fr.HPEconoMode False/Meilleure qualité: "" +*it.HPEconoMode False/Qualità superiore: "" +*ja.HPEconoMode False/最品位: "" +*ko.HPEconoMode False/최고품질: "" +*nl.HPEconoMode False/Beste kwaliteit: "" +*nb.HPEconoMode False/Høyeste kvalitet: "" +*pt.HPEconoMode False/Melhor qualidade: "" +*sv.HPEconoMode False/Högsta kvalitet: "" +*zh_CN.HPEconoMode False/最高质量: "" +*zh_TW.HPEconoMode False/最高品質: "" + +*?HPEconoMode: " + save + currentpagedevice /EconoMode get + {(True)}{(False)}ifelse = flush + restore +" +*End +*CloseUI: *HPEconoMode + + +*%=================================== +*% Resolution +*%=================================== +*% *% Select Printer Resolution + +*OpenUI *Resolution/Printer Resolution: PickOne +*DefaultResolution: 1200dpi +*da.Translation Resolution/Opløsning: "" +*de.Translation Resolution/Druckerauflösung: "" +*es.Translation Resolution/Resol. de la impresora: "" +*fi.Translation Resolution/Kirjoittimen tarkkuus: "" +*fr.Translation Resolution/Résolution d’imprimante: "" +*it.Translation Resolution/Risoluzione: "" +*ja.Translation Resolution/プリンタの解像度: "" +*ko.Translation Resolution/프린터 해상도: "" +*nl.Translation Resolution/Printer-resolutie: "" +*nb.Translation Resolution/Skriveroppløsning: "" +*pt.Translation Resolution/Resolução da impressora: "" +*sv.Translation Resolution/Skrivarupplösning: "" +*zh_CN.Translation Resolution/打印机分辨率: "" +*zh_TW.Translation Resolution/印表機解析度: "" + +*OrderDependency: 5 DocumentSetup *Resolution + +*Resolution 1200x1200dpi/ProRes 1200: " + <> setpagedevice" +*End +*da.Resolution 1200x1200dpi/ProRes 1200: "" +*de.Resolution 1200x1200dpi/ProRes 1200: "" +*es.Resolution 1200x1200dpi/ProRes 1200: "" +*fi.Resolution 1200x1200dpi/ProRes 1200: "" +*fr.Resolution 1200x1200dpi/ProRes 1200: "" +*it.Resolution 1200x1200dpi/ProRes 1200: "" +*ja.Resolution 1200x1200dpi/ProRes 1200: "" +*ko.Resolution 1200x1200dpi/ProRes 1200: "" +*nl.Resolution 1200x1200dpi/ProRes 1200: "" +*nb.Resolution 1200x1200dpi/ProRes 1200: "" +*pt.Resolution 1200x1200dpi/ProRes 1200: "" +*sv.Resolution 1200x1200dpi/ProRes 1200: "" +*zh_CN.Resolution 1200x1200dpi/ProRes 1200: "" +*zh_TW.Resolution 1200x1200dpi/ProRes 1200: "" + +*Resolution 1200dpi/FastRes: " + <> setpagedevice" +*End +*da.Resolution 1200dpi/FastRes: "" +*de.Resolution 1200dpi/FastRes: "" +*es.Resolution 1200dpi/FastRes: "" +*fi.Resolution 1200dpi/FastRes: "" +*fr.Resolution 1200dpi/FastRes: "" +*it.Resolution 1200dpi/FastRes: "" +*ja.Resolution 1200dpi/FastRes: "" +*ko.Resolution 1200dpi/FastRes: "" +*nl.Resolution 1200dpi/FastRes: "" +*nb.Resolution 1200dpi/FastRes: "" +*pt.Resolution 1200dpi/FastRes: "" +*sv.Resolution 1200dpi/FastRes: "" +*zh_CN.Resolution 1200dpi/FastRes: "" +*zh_TW.Resolution 1200dpi/FastRes: "" + +*Resolution 600x600dpi/600 dpi: " + <> setpagedevice" +*End +*da.Resolution 600x600dpi/600 dpi: "" +*de.Resolution 600x600dpi/600 dpi: "" +*es.Resolution 600x600dpi/600 dpi: "" +*fi.Resolution 600x600dpi/600 dpi: "" +*fr.Resolution 600x600dpi/600 dpi: "" +*it.Resolution 600x600dpi/600 dpi: "" +*ja.Resolution 600x600dpi/600 dpi: "" +*ko.Resolution 600x600dpi/600 dpi: "" +*nl.Resolution 600x600dpi/600 dpi: "" +*nb.Resolution 600x600dpi/600 dpi: "" +*pt.Resolution 600x600dpi/600 dpi: "" +*sv.Resolution 600x600dpi/600 dpi: "" +*zh_CN.Resolution 600x600dpi/600 dpi: "" +*zh_TW.Resolution 600x600dpi/600 dpi: "" + +*?Resolution: " + save + currentpagedevice /HWResolution get + 0 get + ( ) cvs print + (dpi) + = flush + restore +" +*End +*CloseUI: *Resolution + +*%================================================= +*% Resolution Enhancement +*%================================================= +*OpenUI *Smoothing/Resolution Enhancement: PickOne +*OrderDependency: 20 DocumentSetup *Smoothing +*DefaultSmoothing: PrinterDefault +*da.Translation Smoothing/Opløsningsforbedring: "" +*de.Translation Smoothing/Auflösungsoptimierung: "" +*es.Translation Smoothing/Resolución Enhancement: "" +*fi.Translation Smoothing/Tarkkuuden parannus: "" +*fr.Translation Smoothing/Amélioration résolution: "" +*it.Translation Smoothing/Miglioramento risoluzione: "" +*ja.Translation Smoothing/解像度エンハンスメント: "" +*ko.Translation Smoothing/해상도 향상: "" +*nl.Translation Smoothing/Resolutieverbetering: "" +*nb.Translation Smoothing/Oppløsningsfremheving: "" +*pt.Translation Smoothing/Resolução avançada: "" +*sv.Translation Smoothing/Förbättring av upplösning: "" +*zh_CN.Translation Smoothing/分辨率增强: "" +*zh_TW.Translation Smoothing/解析度增強: "" + +*Smoothing PrinterDefault/Printer's Current Setting: "" +*da.Smoothing PrinterDefault/Printerens aktuelle indstilling: "" +*de.Smoothing PrinterDefault/Aktuelle Druckereinstellung: "" +*es.Smoothing PrinterDefault/Configuración actual de la impresora: "" +*fi.Smoothing PrinterDefault/Kirjoittimen nykyinen asetus: "" +*fr.Smoothing PrinterDefault/Paramétrage actuel de l'imprimante: "" +*it.Smoothing PrinterDefault/Impostazioni correnti della stampante: "" +*ja.Smoothing PrinterDefault/プリンタの現在の設定: "" +*ko.Smoothing PrinterDefault/프린터 기본값: "" +*nl.Smoothing PrinterDefault/Huidige instelling van de printer: "" +*nb.Smoothing PrinterDefault/Skriverens gjeldende innstilling: "" +*pt.Smoothing PrinterDefault/Configuração atual da impressora: "" +*sv.Smoothing PrinterDefault/Skrivarens inställning: "" +*zh_CN.Smoothing PrinterDefault/打印机的当前设置: "" +*zh_TW.Smoothing PrinterDefault/印表機目前的設定值: "" + +*Smoothing On/On: " +<< /PostRenderingEnhance true + /PostRenderingEnhanceDetails << /REValue 2 /Type 8 >> +>> setpagedevice" +*End +*da.Smoothing On/Ein: "" +*de.Smoothing On/Ein: "" +*es.Smoothing On/Activado: "" +*fi.Smoothing On/Kyllä: "" +*fr.Smoothing On/Activé: "" +*it.Smoothing On/Attivata: "" +*ja.Smoothing On/オン: "" +*ko.Smoothing On/켜짐: "" +*nl.Smoothing On/Aan: "" +*nb.Smoothing On/På: "" +*pt.Smoothing On/Ativado: "" +*sv.Smoothing On/På: "" +*zh_CN.Smoothing On/开: "" +*zh_TW.Smoothing On/開啟: "" + +*Smoothing Off/Off: " +<< /PostRenderingEnhance true + /PostRenderingEnhanceDetails << /REValue 0 /Type 8 >> +>> setpagedevice" +*End +*da.Smoothing Off/Aus: "" +*de.Smoothing Off/Aus: "" +*es.Smoothing Off/Desactivado: "" +*fi.Smoothing Off/Ei: "" +*fr.Smoothing Off/Désactivé: "" +*it.Smoothing Off/Disattivata: "" +*ja.Smoothing Off/オフ: "" +*ko.Smoothing Off/끔: "" +*nl.Smoothing Off/Uit: "" +*nb.Smoothing Off/Av: "" +*pt.Smoothing Off/Desativado: "" +*sv.Smoothing Off/Av: "" +*zh_CN.Smoothing Off/关: "" +*zh_TW.Smoothing Off/關閉: "" + +*?Smoothing: " + save + currentpagedevice /PostRenderingEnhanceDetails get /REValue get + [(Off) (On) (On) (On)] exch get print + restore +" +*End +*CloseUI: *Smoothing + +*CloseGroup: HPImagingOptions + + + + +*% ================================= +*% ================================= + + + + +*FreeVM: "6000000" +*VMOption 32MB/32 MB: "6000000" +*da.VMOption 32MB/32 MB: "" +*de.VMOption 32MB/32 MB: "" +*es.VMOption 32MB/32 MB: "" +*fi.VMOption 32MB/32 MB: "" +*fr.VMOption 32MB/32 MB: "" +*it.VMOption 32MB/32 MB: "" +*ja.VMOption 32MB/32 MB: "" +*ko.VMOption 32MB/32 MB: "" +*nl.VMOption 32MB/32 MB: "" +*nb.VMOption 32MB/32 MB: "" +*pt.VMOption 32MB/32 MB: "" +*sv.VMOption 32MB/32 MB: "" +*zh_CN.VMOption 32MB/32 MB: "" +*zh_TW.VMOption 32MB/32 MB: "" + +*VMOption 64MB/64 MB: "22000000" +*da.VMOption 64MB/64 MB: "" +*de.VMOption 64MB/64 MB: "" +*es.VMOption 64MB/64 MB: "" +*fi.VMOption 64MB/64 MB: "" +*fr.VMOption 64MB/64 MB: "" +*it.VMOption 64MB/64 MB: "" +*ja.VMOption 64MB/64 MB: "" +*ko.VMOption 64MB/64 MB: "" +*nl.VMOption 64MB/64 MB: "" +*nb.VMOption 64MB/64 MB: "" +*pt.VMOption 64MB/64 MB: "" +*sv.VMOption 64MB/64 MB: "" +*zh_CN.VMOption 64MB/64 MB: "" +*zh_TW.VMOption 64MB/64 MB: "" + +*VMOption 96MB/96 MB: "38000000" +*da.VMOption 96MB/96 MB: "" +*de.VMOption 96MB/96 MB: "" +*es.VMOption 96MB/96 MB: "" +*fi.VMOption 96MB/96 MB: "" +*fr.VMOption 96MB/96 MB: "" +*it.VMOption 96MB/96 MB: "" +*ja.VMOption 96MB/96 MB: "" +*ko.VMOption 96MB/96 MB: "" +*nl.VMOption 96MB/96 MB: "" +*nb.VMOption 96MB/96 MB: "" +*pt.VMOption 96MB/96 MB: "" +*sv.VMOption 96MB/96 MB: "" +*zh_CN.VMOption 96MB/96 MB: "" +*zh_TW.VMOption 96MB/96 MB: "" + +*VMOption 160MB/160 MB: "70000000" +*da.VMOption 160MB/160 MB: "" +*de.VMOption 160MB/160 MB: "" +*es.VMOption 160MB/160 MB: "" +*fi.VMOption 160MB/160 MB: "" +*fr.VMOption 160MB/160 MB: "" +*it.VMOption 160MB/160 MB: "" +*ja.VMOption 160MB/160 MB: "" +*ko.VMOption 160MB/160 MB: "" +*nl.VMOption 160MB/160 MB: "" +*nb.VMOption 160MB/160 MB: "" +*pt.VMOption 160MB/160 MB: "" +*sv.VMOption 160MB/160 MB: "" +*zh_CN.VMOption 160MB/160 MB: "" +*zh_TW.VMOption 160MB/160 MB: "" + +*VMOption 288MB/288 MB: "134000000" +*da.VMOption 288MB/288 MB: "" +*de.VMOption 288MB/288 MB: "" +*es.VMOption 288MB/288 MB: "" +*fi.VMOption 288MB/288 MB: "" +*fr.VMOption 288MB/288 MB: "" +*it.VMOption 288MB/288 MB: "" +*ja.VMOption 288MB/288 MB: "" +*ko.VMOption 288MB/288 MB: "" +*nl.VMOption 288MB/288 MB: "" +*nb.VMOption 288MB/288 MB: "" +*pt.VMOption 288MB/288 MB: "" +*sv.VMOption 288MB/288 MB: "" +*zh_CN.VMOption 288MB/288 MB: "" +*zh_TW.VMOption 288MB/288 MB: "" + + +*%================================================= +*% UI Constraints +*%================================================= +*% If A than not B (Also include the reverse constraints if appropriate) +*% + +*% No 1200 dpi HPEconoMode. + + +*UIConstraints: *Resolution 1200x1200dpi *HPEconoMode True +*UIConstraints: *HPEconoMode True *Resolution 1200x1200dpi + +*% Constraints on collation +*%============================================= +*UIConstraints: *Collate True *HPCollateSupported False +*UIConstraints: *HPCollateSupported False *Collate True + +*% If option not installed then disable appropriate feature. +*%==================================================================== +*UIConstraints: *HPOption_Tray3 False *InputSlot Tray3 + +*% ================================= +*% If optional Duplexer is not installed, disable access to Duplex +*% ================================= + +*UIConstraints: *HPOption_Duplexer False *Duplex DuplexNoTumble +*UIConstraints: *Duplex DuplexNoTumble *HPOption_Duplexer False + +*UIConstraints: *HPOption_Duplexer False *Duplex DuplexTumble +*UIConstraints: *Duplex DuplexTumble *HPOption_Duplexer False + + +*%========================================================= +*% Media Type & Page size Constraints on Tray2 +*%========================================================= +*UIConstraints: *InputSlot Tray2 *MediaType Heavy90105 +*UIConstraints: *InputSlot Tray2 *MediaType Cardstock106177 +*UIConstraints: *InputSlot Tray2 *MediaType Envelope + +*UIConstraints: *MediaType Heavy90105 *InputSlot Tray2 +*UIConstraints: *MediaType Cardstock106177 *InputSlot Tray2 +*UIConstraints: *MediaType Envelope *InputSlot Tray2 + +*UIConstraints: *InputSlot Tray2 *PageSize A6 +*UIConstraints: *InputSlot Tray2 *PageSize ISOB6 +*UIConstraints: *InputSlot Tray2 *PageSize Postcard +*UIConstraints: *InputSlot Tray2 *PageSize DoublePostcard +*UIConstraints: *InputSlot Tray2 *PageSize w558h774 +*UIConstraints: *InputSlot Tray2 *PageSize w553h765 +*UIConstraints: *InputSlot Tray2 *PageSize w522h737 +*UIConstraints: *InputSlot Tray2 *PageSize Env10 +*UIConstraints: *InputSlot Tray2 *PageSize EnvMonarch +*UIConstraints: *InputSlot Tray2 *PageSize EnvDL +*UIConstraints: *InputSlot Tray2 *PageSize EnvC5 +*UIConstraints: *InputSlot Tray2 *PageSize EnvISOB5 + +*UIConstraints: *PageSize A6 *InputSlot Tray2 +*UIConstraints: *PageSize ISOB6 *InputSlot Tray2 +*UIConstraints: *PageSize Postcard *InputSlot Tray2 +*UIConstraints: *PageSize DoublePostcard *InputSlot Tray2 +*UIConstraints: *PageSize w558h774 *InputSlot Tray2 +*UIConstraints: *PageSize w553h765 *InputSlot Tray2 +*UIConstraints: *PageSize w522h737 *InputSlot Tray2 +*UIConstraints: *PageSize Env10 *InputSlot Tray2 +*UIConstraints: *PageSize EnvMonarch *InputSlot Tray2 +*UIConstraints: *PageSize EnvDL *InputSlot Tray2 +*UIConstraints: *PageSize EnvC5 *InputSlot Tray2 +*UIConstraints: *PageSize EnvISOB5 *InputSlot Tray2 + +*NonUIConstraints: *CustomPageSize True *InputSlot Tray2 +*NonUIConstraints: *InputSlot Tray2 *CustomPageSize True + +*UIConstraints: *InputSlot Tray2 *PageRegion A6 +*UIConstraints: *InputSlot Tray2 *PageRegion ISOB6 +*UIConstraints: *InputSlot Tray2 *PageRegion Postcard +*UIConstraints: *InputSlot Tray2 *PageRegion DoublePostcard +*UIConstraints: *InputSlot Tray2 *PageRegion w558h774 +*UIConstraints: *InputSlot Tray2 *PageRegion w553h765 +*UIConstraints: *InputSlot Tray2 *PageRegion w522h737 +*UIConstraints: *InputSlot Tray2 *PageRegion Env10 +*UIConstraints: *InputSlot Tray2 *PageRegion EnvMonarch +*UIConstraints: *InputSlot Tray2 *PageRegion EnvDL +*UIConstraints: *InputSlot Tray2 *PageRegion EnvC5 +*UIConstraints: *InputSlot Tray2 *PageRegion EnvISOB5 + +*UIConstraints: *PageRegion A6 *InputSlot Tray2 +*UIConstraints: *PageRegion ISOB6 *InputSlot Tray2 +*UIConstraints: *PageRegion Postcard *InputSlot Tray2 +*UIConstraints: *PageRegion DoublePostcard *InputSlot Tray2 +*UIConstraints: *PageRegion w558h774 *InputSlot Tray2 +*UIConstraints: *PageRegion w553h765 *InputSlot Tray2 +*UIConstraints: *PageRegion w522h737 *InputSlot Tray2 +*UIConstraints: *PageRegion Env10 *InputSlot Tray2 +*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray2 +*UIConstraints: *PageRegion EnvDL *InputSlot Tray2 +*UIConstraints: *PageRegion EnvC5 *InputSlot Tray2 +*UIConstraints: *PageRegion EnvISOB5 *InputSlot Tray2 + +*%========================================================= +*% Media Type & Page size Constraints on Tray3 +*%========================================================= +*UIConstraints: *InputSlot Tray3 *MediaType Heavy90105 +*UIConstraints: *InputSlot Tray3 *MediaType Cardstock106177 +*UIConstraints: *InputSlot Tray3 *MediaType Envelope + +*UIConstraints: *MediaType Heavy90105 *InputSlot Tray3 +*UIConstraints: *MediaType Cardstock106177 *InputSlot Tray3 +*UIConstraints: *MediaType Envelope *InputSlot Tray3 + +*UIConstraints: *InputSlot Tray3 *PageSize A6 +*UIConstraints: *InputSlot Tray3 *PageSize ISOB6 +*UIConstraints: *InputSlot Tray3 *PageSize Postcard +*UIConstraints: *InputSlot Tray3 *PageSize DoublePostcard +*UIConstraints: *InputSlot Tray3 *PageSize w558h774 +*UIConstraints: *InputSlot Tray3 *PageSize w553h765 +*UIConstraints: *InputSlot Tray3 *PageSize w522h737 +*UIConstraints: *InputSlot Tray3 *PageSize Env10 +*UIConstraints: *InputSlot Tray3 *PageSize EnvMonarch +*UIConstraints: *InputSlot Tray3 *PageSize EnvDL +*UIConstraints: *InputSlot Tray3 *PageSize EnvC5 +*UIConstraints: *InputSlot Tray3 *PageSize EnvISOB5 + +*UIConstraints: *PageSize A6 *InputSlot Tray3 +*UIConstraints: *PageSize ISOB6 *InputSlot Tray3 +*UIConstraints: *PageSize Postcard *InputSlot Tray3 +*UIConstraints: *PageSize DoublePostcard *InputSlot Tray3 +*UIConstraints: *PageSize w558h774 *InputSlot Tray3 +*UIConstraints: *PageSize w553h765 *InputSlot Tray3 +*UIConstraints: *PageSize w522h737 *InputSlot Tray3 +*UIConstraints: *PageSize Env10 *InputSlot Tray3 +*UIConstraints: *PageSize EnvMonarch *InputSlot Tray3 +*UIConstraints: *PageSize EnvDL *InputSlot Tray3 +*UIConstraints: *PageSize EnvC5 *InputSlot Tray3 +*UIConstraints: *PageSize EnvISOB5 *InputSlot Tray3 + +*NonUIConstraints: *CustomPageSize True *InputSlot Tray3 +*NonUIConstraints: *InputSlot Tray3 *CustomPageSize True + +*UIConstraints: *InputSlot Tray3 *PageRegion A6 +*UIConstraints: *InputSlot Tray3 *PageRegion ISOB6 +*UIConstraints: *InputSlot Tray3 *PageRegion Postcard +*UIConstraints: *InputSlot Tray3 *PageRegion DoublePostcard +*UIConstraints: *InputSlot Tray3 *PageRegion w558h774 +*UIConstraints: *InputSlot Tray3 *PageRegion w553h765 +*UIConstraints: *InputSlot Tray3 *PageRegion w522h737 +*UIConstraints: *InputSlot Tray3 *PageRegion Env10 +*UIConstraints: *InputSlot Tray3 *PageRegion EnvMonarch +*UIConstraints: *InputSlot Tray3 *PageRegion EnvDL +*UIConstraints: *InputSlot Tray3 *PageRegion EnvC5 +*UIConstraints: *InputSlot Tray3 *PageRegion EnvISOB5 + +*UIConstraints: *PageRegion A6 *InputSlot Tray3 +*UIConstraints: *PageRegion ISOB6 *InputSlot Tray3 +*UIConstraints: *PageRegion Postcard *InputSlot Tray3 +*UIConstraints: *PageRegion DoublePostcard *InputSlot Tray3 +*UIConstraints: *PageRegion w558h774 *InputSlot Tray3 +*UIConstraints: *PageRegion w553h765 *InputSlot Tray3 +*UIConstraints: *PageRegion w522h737 *InputSlot Tray3 +*UIConstraints: *PageRegion Env10 *InputSlot Tray3 +*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray3 +*UIConstraints: *PageRegion EnvDL *InputSlot Tray3 +*UIConstraints: *PageRegion EnvC5 *InputSlot Tray3 +*UIConstraints: *PageRegion EnvISOB5 *InputSlot Tray3 + +*%========================================================= +*% Duplex Constraints +*%========================================================= +*UIConstraints: *PageSize Executive *Duplex DuplexNoTumble +*UIConstraints: *PageSize Executive *Duplex DuplexTumble +*UIConstraints: *PageSize A5 *Duplex DuplexNoTumble +*UIConstraints: *PageSize A5 *Duplex DuplexTumble +*UIConstraints: *PageSize A6 *Duplex DuplexNoTumble +*UIConstraints: *PageSize A6 *Duplex DuplexTumble +*UIConstraints: *PageSize ISOB5 *Duplex DuplexNoTumble +*UIConstraints: *PageSize ISOB5 *Duplex DuplexTumble +*UIConstraints: *PageSize B5 *Duplex DuplexNoTumble +*UIConstraints: *PageSize B5 *Duplex DuplexTumble +*UIConstraints: *PageSize ISOB6 *Duplex DuplexNoTumble +*UIConstraints: *PageSize ISOB6 *Duplex DuplexTumble +*UIConstraints: *PageSize Postcard *Duplex DuplexNoTumble +*UIConstraints: *PageSize Postcard *Duplex DuplexTumble +*UIConstraints: *PageSize DoublePostcard *Duplex DuplexNoTumble +*UIConstraints: *PageSize DoublePostcard *Duplex DuplexTumble +*UIConstraints: *PageSize w558h774 *Duplex DuplexNoTumble +*UIConstraints: *PageSize w558h774 *Duplex DuplexTumble +*UIConstraints: *PageSize w553h765 *Duplex DuplexNoTumble +*UIConstraints: *PageSize w553h765 *Duplex DuplexTumble +*UIConstraints: *PageSize w522h737 *Duplex DuplexNoTumble +*UIConstraints: *PageSize w522h737 *Duplex DuplexTumble +*UIConstraints: *PageSize EnvISOB5 *Duplex DuplexNoTumble +*UIConstraints: *PageSize EnvISOB5 *Duplex DuplexTumble +*UIConstraints: *PageSize Env10 *Duplex DuplexNoTumble +*UIConstraints: *PageSize Env10 *Duplex DuplexTumble +*UIConstraints: *PageSize EnvC5 *Duplex DuplexNoTumble +*UIConstraints: *PageSize EnvC5 *Duplex DuplexTumble +*UIConstraints: *PageSize EnvDL *Duplex DuplexNoTumble +*UIConstraints: *PageSize EnvDL *Duplex DuplexTumble +*UIConstraints: *PageSize EnvMonarch *Duplex DuplexNoTumble +*UIConstraints: *PageSize EnvMonarch *Duplex DuplexTumble +*UIConstraints: *PageSize w612h936 *Duplex DuplexNoTumble +*UIConstraints: *PageSize w612h936 *Duplex DuplexTumble + +*NonUIConstraints: *CustomPageSize True *Duplex DuplexNoTumble +*NonUIConstraints: *CustomPageSize True *Duplex DuplexTumble + +*UIConstraints: *Duplex DuplexNoTumble *PageSize Executive +*UIConstraints: *Duplex DuplexTumble *PageSize Executive +*UIConstraints: *Duplex DuplexNoTumble *PageSize A5 +*UIConstraints: *Duplex DuplexTumble *PageSize A5 +*UIConstraints: *Duplex DuplexNoTumble *PageSize A6 +*UIConstraints: *Duplex DuplexTumble *PageSize A6 +*UIConstraints: *Duplex DuplexNoTumble *PageSize ISOB5 +*UIConstraints: *Duplex DuplexTumble *PageSize ISOB5 +*UIConstraints: *Duplex DuplexNoTumble *PageSize B5 +*UIConstraints: *Duplex DuplexTumble *PageSize B5 +*UIConstraints: *Duplex DuplexNoTumble *PageSize ISOB6 +*UIConstraints: *Duplex DuplexTumble *PageSize ISOB6 +*UIConstraints: *Duplex DuplexNoTumble *PageSize Postcard +*UIConstraints: *Duplex DuplexTumble *PageSize Postcard +*UIConstraints: *Duplex DuplexNoTumble *PageSize DoublePostcard +*UIConstraints: *Duplex DuplexTumble *PageSize DoublePostcard +*UIConstraints: *Duplex DuplexNoTumble *PageSize w558h774 +*UIConstraints: *Duplex DuplexTumble *PageSize w558h774 +*UIConstraints: *Duplex DuplexNoTumble *PageSize w553h765 +*UIConstraints: *Duplex DuplexTumble *PageSize w553h765 +*UIConstraints: *Duplex DuplexNoTumble *PageSize w522h737 +*UIConstraints: *Duplex DuplexTumble *PageSize w522h737 +*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvISOB5 +*UIConstraints: *Duplex DuplexTumble *PageSize EnvISOB5 +*UIConstraints: *Duplex DuplexNoTumble *PageSize Env10 +*UIConstraints: *Duplex DuplexTumble *PageSize Env10 +*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvC5 +*UIConstraints: *Duplex DuplexTumble *PageSize EnvC5 +*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvDL +*UIConstraints: *Duplex DuplexTumble *PageSize EnvDL +*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvMonarch +*UIConstraints: *Duplex DuplexTumble *PageSize EnvMonarch +*UIConstraints: *Duplex DuplexNoTumble *PageSize w612h936 +*UIConstraints: *Duplex DuplexTumble *PageSize w612h936 + +*NonUIConstraints: *Duplex DuplexNoTumble *CustomPageSize True +*NonUIConstraints: *Duplex DuplexTumble *CustomPageSize True + +*UIConstraints: *PageRegion Executive *Duplex DuplexNoTumble +*UIConstraints: *PageRegion Executive *Duplex DuplexTumble +*UIConstraints: *PageRegion A5 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion A5 *Duplex DuplexTumble +*UIConstraints: *PageRegion A6 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion A6 *Duplex DuplexTumble +*UIConstraints: *PageRegion ISOB5 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion ISOB5 *Duplex DuplexTumble +*UIConstraints: *PageRegion B5 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion B5 *Duplex DuplexTumble +*UIConstraints: *PageRegion ISOB6 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion ISOB6 *Duplex DuplexTumble +*UIConstraints: *PageRegion Postcard *Duplex DuplexNoTumble +*UIConstraints: *PageRegion Postcard *Duplex DuplexTumble +*UIConstraints: *PageRegion DoublePostcard *Duplex DuplexNoTumble +*UIConstraints: *PageRegion DoublePostcard *Duplex DuplexTumble +*UIConstraints: *PageRegion w558h774 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion w558h774 *Duplex DuplexTumble +*UIConstraints: *PageRegion w553h765 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion w553h765 *Duplex DuplexTumble +*UIConstraints: *PageRegion w522h737 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion w522h737 *Duplex DuplexTumble +*UIConstraints: *PageRegion EnvISOB5 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion EnvISOB5 *Duplex DuplexTumble +*UIConstraints: *PageRegion Env10 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion Env10 *Duplex DuplexTumble +*UIConstraints: *PageRegion EnvC5 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion EnvC5 *Duplex DuplexTumble +*UIConstraints: *PageRegion EnvDL *Duplex DuplexNoTumble +*UIConstraints: *PageRegion EnvDL *Duplex DuplexTumble +*UIConstraints: *PageRegion EnvMonarch *Duplex DuplexNoTumble +*UIConstraints: *PageRegion EnvMonarch *Duplex DuplexTumble +*UIConstraints: *PageRegion w612h936 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion w612h936 *Duplex DuplexTumble + +*UIConstraints: *Duplex DuplexNoTumble *PageRegion Executive +*UIConstraints: *Duplex DuplexTumble *PageRegion Executive +*UIConstraints: *Duplex DuplexNoTumble *PageRegion A5 +*UIConstraints: *Duplex DuplexTumble *PageRegion A5 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion A6 +*UIConstraints: *Duplex DuplexTumble *PageRegion A6 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion ISOB5 +*UIConstraints: *Duplex DuplexTumble *PageRegion ISOB5 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion B5 +*UIConstraints: *Duplex DuplexTumble *PageRegion B5 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion ISOB6 +*UIConstraints: *Duplex DuplexTumble *PageRegion ISOB6 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion Postcard +*UIConstraints: *Duplex DuplexTumble *PageRegion Postcard +*UIConstraints: *Duplex DuplexNoTumble *PageRegion DoublePostcard +*UIConstraints: *Duplex DuplexTumble *PageRegion DoublePostcard +*UIConstraints: *Duplex DuplexNoTumble *PageRegion w558h774 +*UIConstraints: *Duplex DuplexTumble *PageRegion w558h774 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion w553h765 +*UIConstraints: *Duplex DuplexTumble *PageRegion w553h765 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion w522h737 +*UIConstraints: *Duplex DuplexTumble *PageRegion w522h737 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvISOB5 +*UIConstraints: *Duplex DuplexTumble *PageRegion EnvISOB5 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion Env10 +*UIConstraints: *Duplex DuplexTumble *PageRegion Env10 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvC5 +*UIConstraints: *Duplex DuplexTumble *PageRegion EnvC5 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvDL +*UIConstraints: *Duplex DuplexTumble *PageRegion EnvDL +*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvMonarch +*UIConstraints: *Duplex DuplexTumble *PageRegion EnvMonarch +*UIConstraints: *Duplex DuplexNoTumble *PageRegion w612h936 +*UIConstraints: *Duplex DuplexTumble *PageRegion w612h936 + +*UIConstraints: *MediaType Transparency *Duplex DuplexNoTumble +*UIConstraints: *MediaType Transparency *Duplex DuplexTumble +*UIConstraints: *MediaType Labels *Duplex DuplexNoTumble +*UIConstraints: *MediaType Labels *Duplex DuplexTumble +*UIConstraints: *MediaType Envelope *Duplex DuplexNoTumble +*UIConstraints: *MediaType Envelope *Duplex DuplexTumble +*UIConstraints: *MediaType Heavy90105 *Duplex DuplexNoTumble +*UIConstraints: *MediaType Heavy90105 *Duplex DuplexTumble +*UIConstraints: *MediaType Cardstock106177 *Duplex DuplexNoTumble +*UIConstraints: *MediaType Cardstock106177 *Duplex DuplexTumble + +*UIConstraints: *Duplex DuplexNoTumble *MediaType Transparency +*UIConstraints: *Duplex DuplexTumble *MediaType Transparency +*UIConstraints: *Duplex DuplexNoTumble *MediaType Labels +*UIConstraints: *Duplex DuplexTumble *MediaType Labels +*UIConstraints: *Duplex DuplexNoTumble *MediaType Envelope +*UIConstraints: *Duplex DuplexTumble *MediaType Envelope +*UIConstraints: *Duplex DuplexNoTumble *MediaType Heavy90105 +*UIConstraints: *Duplex DuplexTumble *MediaType Heavy90105 +*UIConstraints: *Duplex DuplexNoTumble *MediaType Cardstock106177 +*UIConstraints: *Duplex DuplexTumble *MediaType Cardstock106177 + + +*%================================================= +*% Paper Sizes +*%================================================= +*OpenUI *PageSize/Page Size: PickOne +*OrderDependency: 30 AnySetup *PageSize +*DefaultPageSize: A4 +*da.Translation PageSize/Page Size: "" +*de.Translation PageSize/Papierformat: "" +*es.Translation PageSize/Tamaño del papel: "" +*fi.Translation PageSize/Sivukoko: "" +*fr.Translation PageSize/Format de page: "" +*it.Translation PageSize/Dimensioni pagina: "" +*ja.Translation PageSize/ページサイズ: "" +*ko.Translation PageSize/용지 크기: "" +*nl.Translation PageSize/Papierformaat: "" +*nb.Translation PageSize/Papirformat: "" +*pt.Translation PageSize/Tamanho do papel: "" +*sv.Translation PageSize/Sidstorlek: "" +*zh_CN.Translation PageSize/页面大小: "" +*zh_TW.Translation PageSize/頁面尺寸: "" + +*PageSize Letter/Letter: " + <> setpagedevice" +*End +*da.PageSize Letter/Letter: "" +*de.PageSize Letter/Letter: "" +*es.PageSize Letter/Letter: "" +*fi.PageSize Letter/Letter: "" +*fr.PageSize Letter/Lettre: "" +*it.PageSize Letter/Letter: "" +*ja.PageSize Letter/レター: "" +*ko.PageSize Letter/레터: "" +*nl.PageSize Letter/Letter: "" +*nb.PageSize Letter/Letter: "" +*pt.PageSize Letter/Carta: "" +*sv.PageSize Letter/Letter: "" +*zh_CN.PageSize Letter/信纸: "" +*zh_TW.PageSize Letter/Letter: "" + +*PageSize Executive/Executive: " + <> setpagedevice" +*End +*da.PageSize Executive/Executive: "" +*de.PageSize Executive/Executive: "" +*es.PageSize Executive/Ejecutivo: "" +*fi.PageSize Executive/Executive: "" +*fr.PageSize Executive/Exécutif: "" +*it.PageSize Executive/Executive: "" +*ja.PageSize Executive/エグゼクティブ: "" +*ko.PageSize Executive/Executive: "" +*nl.PageSize Executive/Executive: "" +*nb.PageSize Executive/Executive: "" +*pt.PageSize Executive/Executivo: "" +*sv.PageSize Executive/Executive: "" +*zh_CN.PageSize Executive/Executive: "" +*zh_TW.PageSize Executive/Executive: "" + +*PageSize Legal/Legal: " + <> setpagedevice" +*End +*da.PageSize Legal/Legal: "" +*de.PageSize Legal/Legal: "" +*es.PageSize Legal/Legal: "" +*fi.PageSize Legal/Legal: "" +*fr.PageSize Legal/Légal: "" +*it.PageSize Legal/Legal: "" +*ja.PageSize Legal/リーガル: "" +*ko.PageSize Legal/리갈: "" +*nl.PageSize Legal/Legal: "" +*nb.PageSize Legal/Legal: "" +*pt.PageSize Legal/Legal: "" +*sv.PageSize Legal/Legal: "" +*zh_CN.PageSize Legal/Legal: "" +*zh_TW.PageSize Legal/Legal: "" + +*PageSize w612h935/8.5x13: " + <> setpagedevice" +*End +*da.PageSize w612h935/8.5x13: "" +*de.PageSize w612h935/8.5x13: "" +*es.PageSize w612h935/8.5x13: "" +*fi.PageSize w612h935/8.5x13: "" +*fr.PageSize w612h935/8.5x13: "" +*it.PageSize w612h935/8.5x13: "" +*ja.PageSize w612h935/8.5x13: "" +*ko.PageSize w612h935/8.5x13: "" +*nl.PageSize w612h935/8.5x13: "" +*nb.PageSize w612h935/8.5x13: "" +*pt.PageSize w612h935/8.5x13: "" +*sv.PageSize w612h935/8.5x13: "" +*zh_CN.PageSize w612h935/8.5x13: "" +*zh_TW.PageSize w612h935/8.5x13: "" + +*PageSize A4/A4: " + <> setpagedevice" +*End +*da.PageSize A4/A4: "" +*de.PageSize A4/A4: "" +*es.PageSize A4/A4: "" +*fi.PageSize A4/A4: "" +*fr.PageSize A4/A4: "" +*it.PageSize A4/A4: "" +*ja.PageSize A4/A4: "" +*ko.PageSize A4/A4: "" +*nl.PageSize A4/A4: "" +*nb.PageSize A4/A4: "" +*pt.PageSize A4/A4: "" +*sv.PageSize A4/A4: "" +*zh_CN.PageSize A4/A4: "" +*zh_TW.PageSize A4/A4: "" + +*PageSize A5/A5: " + <> setpagedevice" +*End +*da.PageSize A5/A5: "" +*de.PageSize A5/A5: "" +*es.PageSize A5/A5: "" +*fi.PageSize A5/A5: "" +*fr.PageSize A5/A5: "" +*it.PageSize A5/A5: "" +*ja.PageSize A5/A5: "" +*ko.PageSize A5/A5: "" +*nl.PageSize A5/A5: "" +*nb.PageSize A5/A5: "" +*pt.PageSize A5/A5: "" +*sv.PageSize A5/A5: "" +*zh_CN.PageSize A5/A5: "" +*zh_TW.PageSize A5/A5: "" + +*PageSize A6/A6: " + <> setpagedevice" +*End +*da.PageSize A6/A6: "" +*de.PageSize A6/A6: "" +*es.PageSize A6/A6: "" +*fi.PageSize A6/A6: "" +*fr.PageSize A6/A6: "" +*it.PageSize A6/A6: "" +*ja.PageSize A6/A6: "" +*ko.PageSize A6/A6: "" +*nl.PageSize A6/A6: "" +*nb.PageSize A6/A6: "" +*pt.PageSize A6/A6: "" +*sv.PageSize A6/A6: "" +*zh_CN.PageSize A6/A6: "" +*zh_TW.PageSize A6/A6: "" + +*PageSize ISOB5/B5 (ISO): " + <> setpagedevice" +*End +*da.PageSize ISOB5/B5 (ISO): "" +*de.PageSize ISOB5/B5 (ISO): "" +*es.PageSize ISOB5/B5 (ISO): "" +*fi.PageSize ISOB5/B5 (ISO): "" +*fr.PageSize ISOB5/B5 (ISO): "" +*it.PageSize ISOB5/B5 (ISO): "" +*ja.PageSize ISOB5/B5 (ISO): "" +*ko.PageSize ISOB5/B5 (ISO): "" +*nl.PageSize ISOB5/B5 (ISO): "" +*nb.PageSize ISOB5/B5 (ISO): "" +*pt.PageSize ISOB5/B5 (ISO): "" +*sv.PageSize ISOB5/B5 (ISO): "" +*zh_CN.PageSize ISOB5/B5 (ISO): "" +*zh_TW.PageSize ISOB5/B5 (ISO): "" + +*PageSize B5/JIS B5: " + <> setpagedevice" +*End +*da.PageSize B5/JIS B5: "" +*de.PageSize B5/B5 (JIS): "" +*es.PageSize B5/JIS B5: "" +*fi.PageSize B5/JIS B5: "" +*fr.PageSize B5/JIS B5: "" +*it.PageSize B5/JIS B5: "" +*ja.PageSize B5/B5 (JIS): "" +*ko.PageSize B5/JIS B5: "" +*nl.PageSize B5/JIS B5: "" +*nb.PageSize B5/JIS B5: "" +*pt.PageSize B5/B5 JIS: "" +*sv.PageSize B5/JIS B5: "" +*zh_CN.PageSize B5/JIS B5: "" +*zh_TW.PageSize B5/JIS B5: "" + +*PageSize ISOB6/B6 (ISO): " + <> setpagedevice" +*End +*da.PageSize ISOB6/B6 (ISO): "" +*de.PageSize ISOB6/B6 (ISO): "" +*es.PageSize ISOB6/B6 (ISO): "" +*fi.PageSize ISOB6/B6 (ISO): "" +*fr.PageSize ISOB6/B6 (ISO): "" +*it.PageSize ISOB6/B6 (ISO): "" +*ja.PageSize ISOB6/B6 (ISO): "" +*ko.PageSize ISOB6/B6 (ISO): "" +*nl.PageSize ISOB6/B6 (ISO): "" +*nb.PageSize ISOB6/B6 (ISO): "" +*pt.PageSize ISOB6/B6 (ISO): "" +*sv.PageSize ISOB6/B6 (ISO): "" +*zh_CN.PageSize ISOB6/B6 (ISO): "" +*zh_TW.PageSize ISOB6/B6 (ISO): "" + +*PageSize w612h936/Executive (JIS): " + <> setpagedevice" +*End +*da.PageSize w612h936/Executive (JIS): "" +*de.PageSize w612h936/Executive (JIS): "" +*es.PageSize w612h936/Ejecutivo (JIS): "" +*fi.PageSize w612h936/Executive (JIS): "" +*fr.PageSize w612h936/Exécutif (JIS): "" +*it.PageSize w612h936/Executive (JIS): "" +*ja.PageSize w612h936/エグゼクティブ (JIS): "" +*ko.PageSize w612h936/Executive (JIS): "" +*nl.PageSize w612h936/Executive (JIS): "" +*nb.PageSize w612h936/Executive (JIS): "" +*pt.PageSize w612h936/Executivo (JIS): "" +*sv.PageSize w612h936/Executive (JIS): "" +*zh_CN.PageSize w612h936/Executive (JIS): "" +*zh_TW.PageSize w612h936/Executive (JIS): "" + +*PageSize Postcard/Postcard (JIS): " + <> setpagedevice" +*End +*da.PageSize Postcard/Postkort (JIS): "" +*de.PageSize Postcard/Postkarte (JIS): "" +*es.PageSize Postcard/Tarjeta postal (JIS): "" +*fi.PageSize Postcard/Postikortti (JIS): "" +*fr.PageSize Postcard/Carte postale (JIS): "" +*it.PageSize Postcard/Cartolina (JIS): "" +*ja.PageSize Postcard/はがき (JIS): "" +*ko.PageSize Postcard/우편엽서 (JIS): "" +*nl.PageSize Postcard/Briefkaart (JIS): "" +*nb.PageSize Postcard/Postkort (JIS): "" +*pt.PageSize Postcard/Postal (JIS): "" +*sv.PageSize Postcard/Brevkort (JIS): "" +*zh_CN.PageSize Postcard/明信片 (JIS): "" +*zh_TW.PageSize Postcard/明信片(JIS): "" + +*PageSize DoublePostcard/Double Postcard (JIS): " + <> setpagedevice" +*End +*da.PageSize DoublePostcard/Dobbelt postkort (JIS): "" +*de.PageSize DoublePostcard/Doppelte Postkarte (JIS): "" +*es.PageSize DoublePostcard/Tarjeta postal doble (JIS): "" +*fi.PageSize DoublePostcard/Kaksinkert. postikortti (JIS): "" +*fr.PageSize DoublePostcard/Carte postale double (JIS): "" +*it.PageSize DoublePostcard/Cartolina doppia (JIS): "" +*ja.PageSize DoublePostcard/往復はがき (JIS): "" +*ko.PageSize DoublePostcard/양면 엽서 (JIS): "" +*nl.PageSize DoublePostcard/Dubbele briefkaart (JIS): "" +*nb.PageSize DoublePostcard/Dobbelt postkort (JIS): "" +*pt.PageSize DoublePostcard/Postal duplo (JIS): "" +*sv.PageSize DoublePostcard/Dubbelt brevkort (JIS): "" +*zh_CN.PageSize DoublePostcard/大号明信片 (JIS): "" +*zh_TW.PageSize DoublePostcard/雙面明信片 (JIS): "" + +*PageSize w558h774/16K (7.75x10.75 in): " + <> setpagedevice" +*End +*da.PageSize w558h774/16K: "" +*de.PageSize w558h774/16K: "" +*es.PageSize w558h774/16K: "" +*fi.PageSize w558h774/16K: "" +*fr.PageSize w558h774/16K: "" +*it.PageSize w558h774/16K: "" +*ja.PageSize w558h774/16K: "" +*ko.PageSize w558h774/16K: "" +*nl.PageSize w558h774/16K: "" +*nb.PageSize w558h774/16K: "" +*pt.PageSize w558h774/16K: "" +*sv.PageSize w558h774/16K: "" +*zh_CN.PageSize w558h774/16K: "" +*zh_TW.PageSize w558h774/16K: "" + +*PageSize w553h765/16K (195x270 mm): " + <> setpagedevice" +*End +*da.PageSize w553h765/16K (195x270 mm): "" +*de.PageSize w553h765/16K (195x270 mm): "" +*es.PageSize w553h765/16K (195x270 mm): "" +*fi.PageSize w553h765/16K (195x270 mm): "" +*fr.PageSize w553h765/16K (195x270 mm): "" +*it.PageSize w553h765/16K (195x270 mm): "" +*ja.PageSize w553h765/16K (195x270 mm): "" +*ko.PageSize w553h765/16K (195x270 mm): "" +*nl.PageSize w553h765/16K (195x270 mm): "" +*nb.PageSize w553h765/16K (195x270 mm): "" +*pt.PageSize w553h765/16K (195x270 mm): "" +*sv.PageSize w553h765/16K (195x270 mm): "" +*zh_CN.PageSize w553h765/16K (195x270 毫米): "" +*zh_TW.PageSize w553h765/16K (195x270 公釐): "" + +*PageSize w522h737/16K (184x260 mm): " + <> setpagedevice" +*End +*da.PageSize w522h737/16K (184x260 mm): "" +*de.PageSize w522h737/16K (184x260 mm): "" +*es.PageSize w522h737/16K (184x260 mm): "" +*fi.PageSize w522h737/16K (184x260 mm): "" +*fr.PageSize w522h737/16K (184x260 mm): "" +*it.PageSize w522h737/16K (184x260 mm): "" +*ja.PageSize w522h737/16K (184x260 mm): "" +*ko.PageSize w522h737/16K (184x260 mm): "" +*nl.PageSize w522h737/16K (184x260 mm): "" +*nb.PageSize w522h737/16K (184x260 mm): "" +*pt.PageSize w522h737/16K (184x260 mm): "" +*sv.PageSize w522h737/16K (184x260 mm): "" +*zh_CN.PageSize w522h737/16K (184x260 毫米): "" +*zh_TW.PageSize w522h737/16K (184x260 公釐): "" + +*PageSize Env10/Env Comm10: " + <> setpagedevice" +*End +*da.PageSize Env10/Konv Comm10: "" +*de.PageSize Env10/Umschlag Comm10: "" +*es.PageSize Env10/Sobre Comm10: "" +*fi.PageSize Env10/Kirjekuori Comm10: "" +*fr.PageSize Env10/Enveloppe Comm10: "" +*it.PageSize Env10/Busta Comm10: "" +*ja.PageSize Env10/封筒 Comm10: "" +*ko.PageSize Env10/Comm10 봉투: "" +*nl.PageSize Env10/Comm10-envelop: "" +*nb.PageSize Env10/Comm10-konvolutt: "" +*pt.PageSize Env10/Envelope Comm10: "" +*sv.PageSize Env10/Comm10-kuvert: "" +*zh_CN.PageSize Env10/信封 Comm10: "" +*zh_TW.PageSize Env10/Comm10 信封: "" + +*PageSize EnvMonarch/Env Monarch: " + <> setpagedevice" +*End +*da.PageSize EnvMonarch/Konv Monarch: "" +*de.PageSize EnvMonarch/Umschlag Monarch: "" +*es.PageSize EnvMonarch/Sobre Monarch: "" +*fi.PageSize EnvMonarch/Kirjekuori Monarch: "" +*fr.PageSize EnvMonarch/Enveloppe Monarch: "" +*it.PageSize EnvMonarch/Busta Monarch: "" +*ja.PageSize EnvMonarch/封筒 Monarch: "" +*ko.PageSize EnvMonarch/Monarch 봉투: "" +*nl.PageSize EnvMonarch/Monarch-envelop: "" +*nb.PageSize EnvMonarch/Monarch-konvolutt: "" +*pt.PageSize EnvMonarch/Envelope Monarch: "" +*sv.PageSize EnvMonarch/Monarch-kuvert: "" +*zh_CN.PageSize EnvMonarch/信封 Monarch: "" +*zh_TW.PageSize EnvMonarch/Monarch 信封: "" + +*PageSize EnvDL/Env DL: " + <> setpagedevice" +*End +*da.PageSize EnvDL/Konv DL: "" +*de.PageSize EnvDL/Umschlag DL: "" +*es.PageSize EnvDL/Sobre DL: "" +*fi.PageSize EnvDL/Kirjekuori DL: "" +*fr.PageSize EnvDL/Enveloppe DL: "" +*it.PageSize EnvDL/Busta DL: "" +*ja.PageSize EnvDL/封筒 DL: "" +*ko.PageSize EnvDL/DL 봉투: "" +*nl.PageSize EnvDL/DL-envelop: "" +*nb.PageSize EnvDL/DL-konvolutt: "" +*pt.PageSize EnvDL/Envelope DL: "" +*sv.PageSize EnvDL/DL-kuvert: "" +*zh_CN.PageSize EnvDL/信封 DL: "" +*zh_TW.PageSize EnvDL/DL 信封: "" + +*PageSize EnvC5/Env C5: " + <> setpagedevice" +*End +*da.PageSize EnvC5/Konv C5: "" +*de.PageSize EnvC5/Umschlag C5: "" +*es.PageSize EnvC5/Sobre C5: "" +*fi.PageSize EnvC5/Kirjekuori C5: "" +*fr.PageSize EnvC5/Enveloppe C5: "" +*it.PageSize EnvC5/Busta C5: "" +*ja.PageSize EnvC5/封筒 C5: "" +*ko.PageSize EnvC5/C5 봉투: "" +*nl.PageSize EnvC5/C5-envelop: "" +*nb.PageSize EnvC5/C5-konvolutt: "" +*pt.PageSize EnvC5/Envelope C5: "" +*sv.PageSize EnvC5/C5-kuvert: "" +*zh_CN.PageSize EnvC5/信封 C5: "" +*zh_TW.PageSize EnvC5/C5 信封: "" + +*PageSize EnvISOB5/Env ISO B5: " + <> setpagedevice" +*End +*da.PageSize EnvISOB5/Konv ISO B5: "" +*de.PageSize EnvISOB5/Umschlag ISO B5: "" +*es.PageSize EnvISOB5/Sobre ISO B5: "" +*fi.PageSize EnvISOB5/Kirjekuori ISO B5: "" +*fr.PageSize EnvISOB5/Enveloppe ISO B5: "" +*it.PageSize EnvISOB5/Busta ISO B5: "" +*ja.PageSize EnvISOB5/封筒 ISO B5: "" +*ko.PageSize EnvISOB5/ISO B5 봉투: "" +*nl.PageSize EnvISOB5/ISO B5-envelop: "" +*nb.PageSize EnvISOB5/B5-konvolutt: "" +*pt.PageSize EnvISOB5/Envelope B5: "" +*sv.PageSize EnvISOB5/ISO B5-kuvert: "" +*zh_CN.PageSize EnvISOB5/信封 ISO B5: "" +*zh_TW.PageSize EnvISOB5/ISO B5 信封: "" + +*?PageSize: " + save + currentpagedevice /PageSize get aload pop + 2 copy gt {exch} if + (Unknown) + 21 dict + dup [612 792] (Letter) put + dup [522 756] (Executive) put + dup [612 1008] (Legal) put + dup [612 935] (w612h935) put + dup [595 842] (A4) put + dup [420 595] (A5) put + dup [297 420] (A6) put + dup [499 709] (ISOB5) put + dup [516 729] (B5) put + dup [354 499] (ISOB6) put + dup [612 936] (w612h936) put + dup [284 419] (Postcard) put + dup [419.5 567] (DoublePostcard) put + dup [558 774] (w558h774) put + dup [553 765] (w553h765) put + dup [522 737] (w522h737) put + dup [297 684] (Env10) put + dup [279 540] (EnvMonarch) put + dup [312 624] (EnvDL) put + dup [459 649] (EnvC5) put + dup [499 709] (EnvISOB5) put + { exch aload pop 4 index sub abs 5 le exch + 5 index sub abs 5 le and + {exch pop exit} {pop} ifelse + } bind forall + = flush pop pop + restore +" +*End +*CloseUI: *PageSize + +*OpenUI *PageRegion/Page Region: PickOne +*OrderDependency: 40 AnySetup *PageRegion +*DefaultPageRegion: A4 +*da.Translation PageRegion/Page Region: "" +*de.Translation PageRegion/Seitenbereich: "" +*es.Translation PageRegion/Dimensión de papel: "" +*fi.Translation PageRegion/Sivuseutu: "" +*fr.Translation PageRegion/Région de page: "" +*it.Translation PageRegion/Dimensioni regione: "" +*ja.Translation PageRegion/Page Region: "" +*ko.Translation PageRegion/Page Region: "" +*nl.Translation PageRegion/Page Region: "" +*nb.Translation PageRegion/Page Region: "" +*pt.Translation PageRegion/Região do papel: "" +*sv.Translation PageRegion/Page Region: "" +*zh_CN.Translation PageRegion/Page Region: "" +*zh_TW.Translation PageRegion/Page Region: "" + +*PageRegion Letter/Letter: " + <> setpagedevice" +*End +*da.PageRegion Letter/Letter: "" +*de.PageRegion Letter/Letter: "" +*es.PageRegion Letter/Letter: "" +*fi.PageRegion Letter/Letter: "" +*fr.PageRegion Letter/Lettre: "" +*it.PageRegion Letter/Letter: "" +*ja.PageRegion Letter/レター: "" +*ko.PageRegion Letter/레터: "" +*nl.PageRegion Letter/Letter: "" +*nb.PageRegion Letter/Letter: "" +*pt.PageRegion Letter/Carta: "" +*sv.PageRegion Letter/Letter: "" +*zh_CN.PageRegion Letter/信纸: "" +*zh_TW.PageRegion Letter/Letter: "" + +*PageRegion Executive/Executive: " + <> setpagedevice" +*End +*da.PageRegion Executive/Executive: "" +*de.PageRegion Executive/Executive: "" +*es.PageRegion Executive/Executive: "" +*fi.PageRegion Executive/Executive: "" +*fr.PageRegion Executive/Exécutif: "" +*it.PageRegion Executive/Executive: "" +*ja.PageRegion Executive/エグゼクティブ: "" +*ko.PageRegion Executive/Executive: "" +*nl.PageRegion Executive/Executive: "" +*nb.PageRegion Executive/Executive: "" +*pt.PageRegion Executive/Executivo: "" +*sv.PageRegion Executive/Executive: "" +*zh_CN.PageRegion Executive/Executive: "" +*zh_TW.PageRegion Executive/Executive: "" + +*PageRegion Legal/Legal: " + <> setpagedevice" +*End +*da.PageRegion Legal/Legal: "" +*de.PageRegion Legal/Legal: "" +*es.PageRegion Legal/Legal: "" +*fi.PageRegion Legal/Legal: "" +*fr.PageRegion Legal/Légal: "" +*it.PageRegion Legal/Legal: "" +*ja.PageRegion Legal/リーガル: "" +*ko.PageRegion Legal/리갈: "" +*nl.PageRegion Legal/Legal: "" +*nb.PageRegion Legal/Legal: "" +*pt.PageRegion Legal/Legal: "" +*sv.PageRegion Legal/Legal: "" +*zh_CN.PageRegion Legal/Legal: "" +*zh_TW.PageRegion Legal/Legal: "" + +*PageRegion w612h935/8.5x13: " + <> setpagedevice" +*End +*da.PageRegion w612h935/8.5x13: "" +*de.PageRegion w612h935/8.5x13: "" +*es.PageRegion w612h935/8.5x13: "" +*fi.PageRegion w612h935/8.5x13: "" +*fr.PageRegion w612h935/8.5x13: "" +*it.PageRegion w612h935/8.5x13: "" +*ja.PageRegion w612h935/8.5x13: "" +*ko.PageRegion w612h935/8.5x13: "" +*nl.PageRegion w612h935/8.5x13: "" +*nb.PageRegion w612h935/8.5x13: "" +*pt.PageRegion w612h935/8.5x13: "" +*sv.PageRegion w612h935/8.5x13: "" +*zh_CN.PageRegion w612h935/8.5x13: "" +*zh_TW.PageRegion w612h935/8.5x13: "" + +*PageRegion A4/A4: " + <> setpagedevice" +*End +*da.PageRegion A4/A4: "" +*de.PageRegion A4/A4: "" +*es.PageRegion A4/A4: "" +*fi.PageRegion A4/A4: "" +*fr.PageRegion A4/A4: "" +*it.PageRegion A4/A4: "" +*ja.PageRegion A4/A4: "" +*ko.PageRegion A4/A4: "" +*nl.PageRegion A4/A4: "" +*nb.PageRegion A4/A4: "" +*pt.PageRegion A4/A4: "" +*sv.PageRegion A4/A4: "" +*zh_CN.PageRegion A4/A4: "" +*zh_TW.PageRegion A4/A4: "" + +*PageRegion A5/A5: " + <> setpagedevice" +*End +*da.PageRegion A5/A5: "" +*de.PageRegion A5/A5: "" +*es.PageRegion A5/A5: "" +*fi.PageRegion A5/A5: "" +*fr.PageRegion A5/A5: "" +*it.PageRegion A5/A5: "" +*ja.PageRegion A5/A5: "" +*ko.PageRegion A5/A5: "" +*nl.PageRegion A5/A5: "" +*nb.PageRegion A5/A5: "" +*pt.PageRegion A5/A5: "" +*sv.PageRegion A5/A5: "" +*zh_CN.PageRegion A5/A5: "" +*zh_TW.PageRegion A5/A5: "" + +*PageRegion A6/A6: " + <> setpagedevice" +*End +*da.PageRegion A6/A6: "" +*de.PageRegion A6/A6 Card: "" +*es.PageRegion A6/A6: "" +*fi.PageRegion A6/A6: "" +*fr.PageRegion A6/A6 Card: "" +*it.PageRegion A6/A6 Card: "" +*ja.PageRegion A6/A6: "" +*ko.PageRegion A6/A6: "" +*nl.PageRegion A6/A6: "" +*nb.PageRegion A6/A6: "" +*pt.PageRegion A6/A6: "" +*sv.PageRegion A6/A6: "" +*zh_CN.PageRegion A6/A6: "" +*zh_TW.PageRegion A6/A6: "" + +*PageRegion ISOB5/B5 (ISO): " + <> setpagedevice" +*End +*da.PageRegion ISOB5/B5 (ISO): "" +*de.PageRegion ISOB5/B5 (ISO): "" +*es.PageRegion ISOB5/B5 (ISO): "" +*fi.PageRegion ISOB5/B5 (ISO): "" +*fr.PageRegion ISOB5/B5 (ISO): "" +*it.PageRegion ISOB5/B5 (ISO): "" +*ja.PageRegion ISOB5/B5 (ISO): "" +*ko.PageRegion ISOB5/B5 (ISO): "" +*nl.PageRegion ISOB5/B5 (ISO): "" +*nb.PageRegion ISOB5/B5 (ISO): "" +*pt.PageRegion ISOB5/B5 (ISO): "" +*sv.PageRegion ISOB5/B5 (ISO): "" +*zh_CN.PageRegion ISOB5/B5 (ISO): "" +*zh_TW.PageRegion ISOB5/B5 (ISO): "" + +*PageRegion B5/JIS B5: " + <> setpagedevice" +*End +*da.PageRegion B5/JIS B5: "" +*de.PageRegion B5/B5 (JIS): "" +*es.PageRegion B5/JIS B5: "" +*fi.PageRegion B5/JIS B5: "" +*fr.PageRegion B5/JIS B5: "" +*it.PageRegion B5/JIS B5: "" +*ja.PageRegion B5/B5 (JIS): "" +*ko.PageRegion B5/JIS B5: "" +*nl.PageRegion B5/JIS B5: "" +*nb.PageRegion B5/JIS B5: "" +*pt.PageRegion B5/B5 JIS: "" +*sv.PageRegion B5/JIS B5: "" +*zh_CN.PageRegion B5/JIS B5: "" +*zh_TW.PageRegion B5/JIS B5: "" + +*PageRegion ISOB6/B6 (ISO): " + <> setpagedevice" +*End +*da.PageRegion ISOB6/B6 (ISO): "" +*de.PageRegion ISOB6/B6 (ISO): "" +*es.PageRegion ISOB6/B6 (ISO): "" +*fi.PageRegion ISOB6/B6 (ISO): "" +*fr.PageRegion ISOB6/B6 (ISO): "" +*it.PageRegion ISOB6/B6 (ISO): "" +*ja.PageRegion ISOB6/B6 (ISO): "" +*ko.PageRegion ISOB6/B6 (ISO): "" +*nl.PageRegion ISOB6/B6 (ISO): "" +*nb.PageRegion ISOB6/B6 (ISO): "" +*pt.PageRegion ISOB6/B6 (ISO): "" +*sv.PageRegion ISOB6/B6 (ISO): "" +*zh_CN.PageRegion ISOB6/B6 (ISO): "" +*zh_TW.PageRegion ISOB6/B6 (ISO): "" + +*PageRegion w612h936/Executive (JIS): " + <> setpagedevice" +*End +*da.PageRegion w612h936/Executive (JIS): "" +*de.PageRegion w612h936/Executive (JIS): "" +*es.PageRegion w612h936/Executive (JIS): "" +*fi.PageRegion w612h936/Executive (JIS): "" +*fr.PageRegion w612h936/Exécutif (JIS): "" +*it.PageRegion w612h936/Executive (JIS): "" +*ja.PageRegion w612h936/エグゼクティブ (JIS): "" +*ko.PageRegion w612h936/Executive (JIS): "" +*nl.PageRegion w612h936/Executive (JIS): "" +*nb.PageRegion w612h936/Executive (JIS): "" +*pt.PageRegion w612h936/Executive (JIS): "" +*sv.PageRegion w612h936/Executive (JIS): "" +*zh_CN.PageRegion w612h936/Executive (JIS): "" +*zh_TW.PageRegion w612h936/Executive (JIS): "" + +*PageRegion Postcard/Postcard (JIS): " + <> setpagedevice" +*End +*da.PageRegion Postcard/Postkort (JIS): "" +*de.PageRegion Postcard/Postkarte (JIS): "" +*es.PageRegion Postcard/Tarjeta postal (JIS): "" +*fi.PageRegion Postcard/Postikortti (JIS): "" +*fr.PageRegion Postcard/Carte postale (JIS): "" +*it.PageRegion Postcard/Cartolina (JIS): "" +*ja.PageRegion Postcard/はがき (JIS): "" +*ko.PageRegion Postcard/우편엽서 (JIS): "" +*nl.PageRegion Postcard/Briefkaart (JIS): "" +*nb.PageRegion Postcard/Postkort (JIS): "" +*pt.PageRegion Postcard/Postal (JIS): "" +*sv.PageRegion Postcard/Brevkort (JIS): "" +*zh_CN.PageRegion Postcard/明信片 (JIS): "" +*zh_TW.PageRegion Postcard/明信片(JIS): "" + +*PageRegion DoublePostcard/Double Postcard (JIS): " + <> setpagedevice" +*End +*da.PageRegion DoublePostcard/Dobbelt postkort (JIS): "" +*de.PageRegion DoublePostcard/Doppelte Postkarte (JIS): "" +*es.PageRegion DoublePostcard/Tarjeta postal doble (JIS): "" +*fi.PageRegion DoublePostcard/Kaksinkert. postikortti (JIS): "" +*fr.PageRegion DoublePostcard/Carte postale double (JIS): "" +*it.PageRegion DoublePostcard/Cartolina doppia (JIS): "" +*ja.PageRegion DoublePostcard/往復はがき (JIS): "" +*ko.PageRegion DoublePostcard/양면 엽서 (JIS): "" +*nl.PageRegion DoublePostcard/Dubbele briefkaart (JIS): "" +*nb.PageRegion DoublePostcard/Dobbelt postkort (JIS): "" +*pt.PageRegion DoublePostcard/Postal duplo (JIS): "" +*sv.PageRegion DoublePostcard/Dubbelt brevkort (JIS): "" +*zh_CN.PageRegion DoublePostcard/大号明信片 (JIS): "" +*zh_TW.PageRegion DoublePostcard/雙面明信片 (JIS): "" + +*PageRegion w558h774/16K (7.75x10.75 in): " + <> setpagedevice" +*End +*da.PageRegion w558h774/16K: "" +*de.PageRegion w558h774/16K: "" +*es.PageRegion w558h774/16K: "" +*fi.PageRegion w558h774/16K: "" +*fr.PageRegion w558h774/16K: "" +*it.PageRegion w558h774/16K: "" +*ja.PageRegion w558h774/16K: "" +*ko.PageRegion w558h774/16K: "" +*nl.PageRegion w558h774/16K: "" +*nb.PageRegion w558h774/16K: "" +*pt.PageRegion w558h774/16K: "" +*sv.PageRegion w558h774/16K: "" +*zh_CN.PageRegion w558h774/16K: "" +*zh_TW.PageRegion w558h774/16K: "" + +*PageRegion w553h765/16K (195x270 mm): " + <> setpagedevice" +*End +*da.PageRegion w553h765/16K (195x270 mm): "" +*de.PageRegion w553h765/16K (195x270 mm): "" +*es.PageRegion w553h765/16K (195x270 mm): "" +*fi.PageRegion w553h765/16K (195x270 mm): "" +*fr.PageRegion w553h765/16K (195x270 mm): "" +*it.PageRegion w553h765/16K (195x270 mm): "" +*ja.PageRegion w553h765/16K (195x270 mm): "" +*ko.PageRegion w553h765/16K (195x270 mm): "" +*nl.PageRegion w553h765/16K (195x270 mm): "" +*nb.PageRegion w553h765/16K (195x270 mm): "" +*pt.PageRegion w553h765/16K (195x270 mm): "" +*sv.PageRegion w553h765/16K (195x270 mm): "" +*zh_CN.PageRegion w553h765/16K (195x270 毫米): "" +*zh_TW.PageRegion w553h765/16K (195x270 公釐): "" + +*PageRegion w522h737/16K (184x260 mm): " + <> setpagedevice" +*End +*da.PageRegion w522h737/16K (184x260 mm): "" +*de.PageRegion w522h737/16K (184x260 mm): "" +*es.PageRegion w522h737/16K (184x260 mm): "" +*fi.PageRegion w522h737/16K (184x260 mm): "" +*fr.PageRegion w522h737/16K (184x260 mm): "" +*it.PageRegion w522h737/16K (184x260 mm): "" +*ja.PageRegion w522h737/16K (184x260 mm): "" +*ko.PageRegion w522h737/16K (184x260 mm): "" +*nl.PageRegion w522h737/16K (184x260 mm): "" +*nb.PageRegion w522h737/16K (184x260 mm): "" +*pt.PageRegion w522h737/16K (184x260 mm): "" +*sv.PageRegion w522h737/16K (184x260 mm): "" +*zh_CN.PageRegion w522h737/16K (184x260 毫米): "" +*zh_TW.PageRegion w522h737/16K (184x260 公釐): "" + +*PageRegion Env10/Env Comm10: " + <> setpagedevice" +*End +*da.PageRegion Env10/Konv Comm10: "" +*de.PageRegion Env10/Umschlag Comm10: "" +*es.PageRegion Env10/Sobre Comm10: "" +*fi.PageRegion Env10/Kirjekuori Comm10: "" +*fr.PageRegion Env10/Enveloppe Comm10: "" +*it.PageRegion Env10/Busta Comm10: "" +*ja.PageRegion Env10/封筒 Comm10: "" +*ko.PageRegion Env10/Comm10 봉투: "" +*nl.PageRegion Env10/Comm10-envelop: "" +*nb.PageRegion Env10/Comm10-konvolutt: "" +*pt.PageRegion Env10/Envelope Comm10: "" +*sv.PageRegion Env10/Comm10-kuvert: "" +*zh_CN.PageRegion Env10/信封 Comm10: "" +*zh_TW.PageRegion Env10/Comm10 信封: "" + +*PageRegion EnvMonarch/Env Monarch: " + <> setpagedevice" +*End +*da.PageRegion EnvMonarch/Konv Monarch: "" +*de.PageRegion EnvMonarch/Umschlag Monarch: "" +*es.PageRegion EnvMonarch/Sobre Monarch: "" +*fi.PageRegion EnvMonarch/Kirjekuori Monarch: "" +*fr.PageRegion EnvMonarch/Enveloppe Monarch: "" +*it.PageRegion EnvMonarch/Busta Monarch: "" +*ja.PageRegion EnvMonarch/封筒 Monarch: "" +*ko.PageRegion EnvMonarch/Monarch 봉투: "" +*nl.PageRegion EnvMonarch/Monarch-envelop: "" +*nb.PageRegion EnvMonarch/Monarch-konvolutt: "" +*pt.PageRegion EnvMonarch/Envelope Monarch: "" +*sv.PageRegion EnvMonarch/Monarch-kuvert: "" +*zh_CN.PageRegion EnvMonarch/信封 Monarch: "" +*zh_TW.PageRegion EnvMonarch/Monarch 信封: "" + +*PageRegion EnvDL/Env DL: " + <> setpagedevice" +*End +*da.PageRegion EnvDL/Konv DL: "" +*de.PageRegion EnvDL/Umschlag DL: "" +*es.PageRegion EnvDL/Sobre DL: "" +*fi.PageRegion EnvDL/Kirjekuori DL: "" +*fr.PageRegion EnvDL/Enveloppe DL: "" +*it.PageRegion EnvDL/Busta DL: "" +*ja.PageRegion EnvDL/封筒 DL: "" +*ko.PageRegion EnvDL/DL 봉투: "" +*nl.PageRegion EnvDL/DL-envelop: "" +*nb.PageRegion EnvDL/DL-konvolutt: "" +*pt.PageRegion EnvDL/Envelope DL: "" +*sv.PageRegion EnvDL/DL-kuvert: "" +*zh_CN.PageRegion EnvDL/信封 DL: "" +*zh_TW.PageRegion EnvDL/DL 信封: "" + +*PageRegion EnvC5/Env C5: " + <> setpagedevice" +*End +*da.PageRegion EnvC5/Konv C5: "" +*de.PageRegion EnvC5/Umschlag C5: "" +*es.PageRegion EnvC5/Sobre C5: "" +*fi.PageRegion EnvC5/Kirjekuori C5: "" +*fr.PageRegion EnvC5/Enveloppe C5: "" +*it.PageRegion EnvC5/Busta C5: "" +*ja.PageRegion EnvC5/封筒 C5: "" +*ko.PageRegion EnvC5/C5 봉투: "" +*nl.PageRegion EnvC5/C5-envelop: "" +*nb.PageRegion EnvC5/C5-konvolutt: "" +*pt.PageRegion EnvC5/Envelope C5: "" +*sv.PageRegion EnvC5/C5-kuvert: "" +*zh_CN.PageRegion EnvC5/信封 C5: "" +*zh_TW.PageRegion EnvC5/C5 信封: "" + +*PageRegion EnvISOB5/Env ISO B5: " + <> setpagedevice" +*End +*da.PageRegion EnvISOB5/Konv ISO B5: "" +*de.PageRegion EnvISOB5/Umschlag ISO B5: "" +*es.PageRegion EnvISOB5/Sobre ISO B5: "" +*fi.PageRegion EnvISOB5/Kirjekuori ISO B5: "" +*fr.PageRegion EnvISOB5/Enveloppe ISO B5: "" +*it.PageRegion EnvISOB5/Busta ISO B5: "" +*ja.PageRegion EnvISOB5/封筒 B5 (ISO): "" +*ko.PageRegion EnvISOB5/ISO B5 봉투: "" +*nl.PageRegion EnvISOB5/ISO B5-envelop: "" +*nb.PageRegion EnvISOB5/B5-konvolutt: "" +*pt.PageRegion EnvISOB5/Envelope B5: "" +*sv.PageRegion EnvISOB5/ISO B5-kuvert: "" +*zh_CN.PageRegion EnvISOB5/信封 ISO B5: "" +*zh_TW.PageRegion EnvISOB5/ISO B5 信封: "" + +*CloseUI: *PageRegion + +*DefaultImageableArea: A4 +*ImageableArea Letter/Letter: "12.00 12.00 599.76 779.76" +*da.ImageableArea Letter/Letter: "" +*de.ImageableArea Letter/Letter: "" +*es.ImageableArea Letter/Letter: "" +*fi.ImageableArea Letter/Letter: "" +*fr.ImageableArea Letter/Lettre: "" +*it.ImageableArea Letter/Letter: "" +*ja.ImageableArea Letter/レター: "" +*ko.ImageableArea Letter/레터: "" +*nl.ImageableArea Letter/Letter: "" +*nb.ImageableArea Letter/Letter: "" +*pt.ImageableArea Letter/Carta: "" +*sv.ImageableArea Letter/Letter: "" +*zh_CN.ImageableArea Letter/信纸: "" +*zh_TW.ImageableArea Letter/Letter: "" + +*ImageableArea Executive/Executive: "12.00 12.00 509.76 743.76" +*da.ImageableArea Executive/Executive: "" +*de.ImageableArea Executive/Executive: "" +*es.ImageableArea Executive/Executive: "" +*fi.ImageableArea Executive/Executive: "" +*fr.ImageableArea Executive/Exécutif: "" +*it.ImageableArea Executive/Executive: "" +*ja.ImageableArea Executive/エグゼクティブ: "" +*ko.ImageableArea Executive/Executive: "" +*nl.ImageableArea Executive/Executive: "" +*nb.ImageableArea Executive/Executive: "" +*pt.ImageableArea Executive/Executivo: "" +*sv.ImageableArea Executive/Executive: "" +*zh_CN.ImageableArea Executive/Executive: "" +*zh_TW.ImageableArea Executive/Executive: "" + +*ImageableArea Legal/Legal: "12.00 12.00 599.76 995.76" +*da.ImageableArea Legal/Legal: "" +*de.ImageableArea Legal/Legal: "" +*es.ImageableArea Legal/Legal: "" +*fi.ImageableArea Legal/Legal: "" +*fr.ImageableArea Legal/Légal: "" +*it.ImageableArea Legal/Legal: "" +*ja.ImageableArea Legal/リーガル: "" +*ko.ImageableArea Legal/리갈: "" +*nl.ImageableArea Legal/Legal: "" +*nb.ImageableArea Legal/Legal: "" +*pt.ImageableArea Legal/Legal: "" +*sv.ImageableArea Legal/Legal: "" +*zh_CN.ImageableArea Legal/Legal: "" +*zh_TW.ImageableArea Legal/Legal: "" + +*ImageableArea w612h935/8.5x13: "12.00 12.00 599.76 922.76" +*da.ImageableArea w612h935/8.5x13: "" +*de.ImageableArea w612h935/8.5x13: "" +*es.ImageableArea w612h935/8.5x13: "" +*fi.ImageableArea w612h935/8.5x13: "" +*fr.ImageableArea w612h935/8.5x13: "" +*it.ImageableArea w612h935/8.5x13: "" +*ja.ImageableArea w612h935/8.5x13: "" +*ko.ImageableArea w612h935/8.5x13: "" +*nl.ImageableArea w612h935/8.5x13: "" +*nb.ImageableArea w612h935/8.5x13: "" +*pt.ImageableArea w612h935/8.5x13: "" +*sv.ImageableArea w612h935/8.5x13: "" +*zh_CN.ImageableArea w612h935/8.5x13: "" +*zh_TW.ImageableArea w612h935/8.5x13: "" + +*ImageableArea A4/A4: "12.00 12.00 582.96 829.44" +*da.ImageableArea A4/A4: "" +*de.ImageableArea A4/A4: "" +*es.ImageableArea A4/A4: "" +*fi.ImageableArea A4/A4: "" +*fr.ImageableArea A4/A4: "" +*it.ImageableArea A4/A4: "" +*ja.ImageableArea A4/A4: "" +*ko.ImageableArea A4/A4: "" +*nl.ImageableArea A4/A4: "" +*nb.ImageableArea A4/A4: "" +*pt.ImageableArea A4/A4: "" +*sv.ImageableArea A4/A4: "" +*zh_CN.ImageableArea A4/A4: "" +*zh_TW.ImageableArea A4/A4: "" + +*ImageableArea A5/A5: "12.00 12.00 407.28 582.96" +*da.ImageableArea A5/A5: "" +*de.ImageableArea A5/A5: "" +*es.ImageableArea A5/A5: "" +*fi.ImageableArea A5/A5: "" +*fr.ImageableArea A5/A5: "" +*it.ImageableArea A5/A5: "" +*ja.ImageableArea A5/A5: "" +*ko.ImageableArea A5/A5: "" +*nl.ImageableArea A5/A5: "" +*nb.ImageableArea A5/A5: "" +*pt.ImageableArea A5/A5: "" +*sv.ImageableArea A5/A5: "" +*zh_CN.ImageableArea A5/A5: "" +*zh_TW.ImageableArea A5/A5: "" + +*ImageableArea A6/A6: "12.00 12.00 284.76 407.76" +*da.ImageableArea A6/A6: "" +*de.ImageableArea A6/A6 Card: "" +*es.ImageableArea A6/A6: "" +*fi.ImageableArea A6/A6: "" +*fr.ImageableArea A6/A6 Card: "" +*it.ImageableArea A6/A6 Card: "" +*ja.ImageableArea A6/A6: "" +*ko.ImageableArea A6/A6: "" +*nl.ImageableArea A6/A6: "" +*nb.ImageableArea A6/A6: "" +*pt.ImageableArea A6/A6: "" +*sv.ImageableArea A6/A6: "" +*zh_CN.ImageableArea A6/A6: "" +*zh_TW.ImageableArea A6/A6: "" + +*ImageableArea ISOB5/B5 (ISO): "12.00 12.00 488.00 698.00" +*da.ImageableArea ISOB5/B5 (ISO): "" +*de.ImageableArea ISOB5/B5 (ISO): "" +*es.ImageableArea ISOB5/B5 (ISO): "" +*fi.ImageableArea ISOB5/B5 (ISO): "" +*fr.ImageableArea ISOB5/B5 (ISO): "" +*it.ImageableArea ISOB5/B5 (ISO): "" +*ja.ImageableArea ISOB5/B5 (ISO): "" +*ko.ImageableArea ISOB5/B5 (ISO): "" +*nl.ImageableArea ISOB5/B5 (ISO): "" +*nb.ImageableArea ISOB5/B5 (ISO): "" +*pt.ImageableArea ISOB5/B5 (ISO): "" +*sv.ImageableArea ISOB5/B5 (ISO): "" +*zh_CN.ImageableArea ISOB5/B5 (ISO): "" +*zh_TW.ImageableArea ISOB5/B5 (ISO): "" + +*ImageableArea B5/JIS B5: "12.00 12.00 503.52 716.16" +*da.ImageableArea B5/JIS B5: "" +*de.ImageableArea B5/B5 (JIS): "" +*es.ImageableArea B5/JIS B5: "" +*fi.ImageableArea B5/JIS B5: "" +*fr.ImageableArea B5/JIS B5: "" +*it.ImageableArea B5/JIS B5: "" +*ja.ImageableArea B5/B5 (JIS): "" +*ko.ImageableArea B5/JIS B5: "" +*nl.ImageableArea B5/JIS B5: "" +*nb.ImageableArea B5/JIS B5: "" +*pt.ImageableArea B5/B5 JIS: "" +*sv.ImageableArea B5/JIS B5: "" +*zh_CN.ImageableArea B5/JIS B5: "" +*zh_TW.ImageableArea B5/JIS B5: "" + +*ImageableArea ISOB6/B6 (ISO): "12.00 12.00 349.00 488.00" +*da.ImageableArea ISOB6/B6 (ISO): "" +*de.ImageableArea ISOB6/B6 (ISO): "" +*es.ImageableArea ISOB6/B6 (ISO): "" +*fi.ImageableArea ISOB6/B6 (ISO): "" +*fr.ImageableArea ISOB6/B6 (ISO): "" +*it.ImageableArea ISOB6/B6 (ISO): "" +*ja.ImageableArea ISOB6/B6 (ISO): "" +*ko.ImageableArea ISOB6/B6 (ISO): "" +*nl.ImageableArea ISOB6/B6 (ISO): "" +*nb.ImageableArea ISOB6/B6 (ISO): "" +*pt.ImageableArea ISOB6/B6 (ISO): "" +*sv.ImageableArea ISOB6/B6 (ISO): "" +*zh_CN.ImageableArea ISOB6/B6 (ISO): "" +*zh_TW.ImageableArea ISOB6/B6 (ISO): "" + +*ImageableArea w612h936/Executive (JIS): "12.00 12.12 599.76 923.76" +*da.ImageableArea w612h936/Executive (JIS): "" +*de.ImageableArea w612h936/Executive (JIS): "" +*es.ImageableArea w612h936/Executive (JIS): "" +*fi.ImageableArea w612h936/Executive (JIS): "" +*fr.ImageableArea w612h936/Exécutif (JIS): "" +*it.ImageableArea w612h936/Executive (JIS): "" +*ja.ImageableArea w612h936/エグゼクティブ (JIS): "" +*ko.ImageableArea w612h936/Executive (JIS): "" +*nl.ImageableArea w612h936/Executive (JIS): "" +*nb.ImageableArea w612h936/Executive (JIS): "" +*pt.ImageableArea w612h936/Executive (JIS): "" +*sv.ImageableArea w612h936/Executive (JIS): "" +*zh_CN.ImageableArea w612h936/Executive (JIS): "" +*zh_TW.ImageableArea w612h936/Executive (JIS): "" + +*ImageableArea Postcard/Postcard (JIS): "12.00 12.00 271.20 407.28" +*da.ImageableArea Postcard/Postkort (JIS): "" +*de.ImageableArea Postcard/Postkarte (JIS): "" +*es.ImageableArea Postcard/Tarjeta postal (JIS): "" +*fi.ImageableArea Postcard/Postikortti (JIS): "" +*fr.ImageableArea Postcard/Carte postale (JIS): "" +*it.ImageableArea Postcard/Cartolina (JIS): "" +*ja.ImageableArea Postcard/はがき (JIS): "" +*ko.ImageableArea Postcard/우편엽서 (JIS): "" +*nl.ImageableArea Postcard/Briefkaart (JIS): "" +*nb.ImageableArea Postcard/Postkort (JIS): "" +*pt.ImageableArea Postcard/Postal (JIS): "" +*sv.ImageableArea Postcard/Brevkort (JIS): "" +*zh_CN.ImageableArea Postcard/明信片 (JIS): "" +*zh_TW.ImageableArea Postcard/明信片(JIS): "" + +*ImageableArea DoublePostcard/Double Postcard (JIS): "12.00 12.00 407.28 554.64" +*da.ImageableArea DoublePostcard/Dobbelt postkort (JIS): "" +*de.ImageableArea DoublePostcard/Doppelte Postkarte (JIS): "" +*es.ImageableArea DoublePostcard/Tarjeta postal doble (JIS): "" +*fi.ImageableArea DoublePostcard/Kaksinkert. postikortti (JIS): "" +*fr.ImageableArea DoublePostcard/Carte postale double (JIS): "" +*it.ImageableArea DoublePostcard/Cartolina doppia (JIS): "" +*ja.ImageableArea DoublePostcard/往復はがき (JIS): "" +*ko.ImageableArea DoublePostcard/양면 엽서 (JIS): "" +*nl.ImageableArea DoublePostcard/Dubbele briefkaart (JIS): "" +*nb.ImageableArea DoublePostcard/Dobbelt postkort (JIS): "" +*pt.ImageableArea DoublePostcard/Postal duplo (JIS): "" +*sv.ImageableArea DoublePostcard/Dubbelt brevkort (JIS): "" +*zh_CN.ImageableArea DoublePostcard/大号明信片 (JIS): "" +*zh_TW.ImageableArea DoublePostcard/雙面明信片 (JIS): "" + +*ImageableArea w558h774/16K (7.75x10.75 in): "12.00 12.00 545.76 761.76" +*da.ImageableArea w558h774/16K: "" +*de.ImageableArea w558h774/16K: "" +*es.ImageableArea w558h774/16K: "" +*fi.ImageableArea w558h774/16K: "" +*fr.ImageableArea w558h774/16K: "" +*it.ImageableArea w558h774/16K: "" +*ja.ImageableArea w558h774/16K: "" +*ko.ImageableArea w558h774/16K: "" +*nl.ImageableArea w558h774/16K: "" +*nb.ImageableArea w558h774/16K: "" +*pt.ImageableArea w558h774/16K: "" +*sv.ImageableArea w558h774/16K: "" +*zh_CN.ImageableArea w558h774/16K: "" +*zh_TW.ImageableArea w558h774/16K: "" + +*ImageableArea w553h765/16K (195x270 mm): "12.00 12.00 540.52 753.11" +*da.ImageableArea w553h765/16K (195x270 mm): "" +*de.ImageableArea w553h765/16K (195x270 mm): "" +*es.ImageableArea w553h765/16K (195x270 mm): "" +*fi.ImageableArea w553h765/16K (195x270 mm): "" +*fr.ImageableArea w553h765/16K (195x270 mm): "" +*it.ImageableArea w553h765/16K (195x270 mm): "" +*ja.ImageableArea w553h765/16K (195x270 mm): "" +*ko.ImageableArea w553h765/16K (195x270 mm): "" +*nl.ImageableArea w553h765/16K (195x270 mm): "" +*nb.ImageableArea w553h765/16K (195x270 mm): "" +*pt.ImageableArea w553h765/16K (195x270 mm): "" +*sv.ImageableArea w553h765/16K (195x270 mm): "" +*zh_CN.ImageableArea w553h765/16K (195x270 毫米): "" +*zh_TW.ImageableArea w553h765/16K (195x270 公釐): "" + +*ImageableArea w522h737/16K (184x260 mm): "12.00 12.00 509.33 724.77" +*da.ImageableArea w522h737/16K (184x260 mm): "" +*de.ImageableArea w522h737/16K (184x260 mm): "" +*es.ImageableArea w522h737/16K (184x260 mm): "" +*fi.ImageableArea w522h737/16K (184x260 mm): "" +*fr.ImageableArea w522h737/16K (184x260 mm): "" +*it.ImageableArea w522h737/16K (184x260 mm): "" +*ja.ImageableArea w522h737/16K (184x260 mm): "" +*ko.ImageableArea w522h737/16K (184x260 mm): "" +*nl.ImageableArea w522h737/16K (184x260 mm): "" +*nb.ImageableArea w522h737/16K (184x260 mm): "" +*pt.ImageableArea w522h737/16K (184x260 mm): "" +*sv.ImageableArea w522h737/16K (184x260 mm): "" +*zh_CN.ImageableArea w522h737/16K (184x260 毫米): "" +*zh_TW.ImageableArea w522h737/16K (184x260 公釐): "" + +*ImageableArea Env10/Env Comm10: "12.00 12.00 284.64 671.76" +*da.ImageableArea Env10/Konv Comm10: "" +*de.ImageableArea Env10/Umschlag Comm10: "" +*es.ImageableArea Env10/Sobre Comm10: "" +*fi.ImageableArea Env10/Kirjekuori Comm10: "" +*fr.ImageableArea Env10/Enveloppe Comm10: "" +*it.ImageableArea Env10/Busta Comm10: "" +*ja.ImageableArea Env10/封筒 Comm10: "" +*ko.ImageableArea Env10/Comm10 봉투: "" +*nl.ImageableArea Env10/Comm10-envelop: "" +*nb.ImageableArea Env10/Comm10-konvolutt: "" +*pt.ImageableArea Env10/Envelope Comm10: "" +*sv.ImageableArea Env10/Comm10-kuvert: "" +*zh_CN.ImageableArea Env10/信封 Comm10: "" +*zh_TW.ImageableArea Env10/Comm10 信封: "" + +*ImageableArea EnvMonarch/Env Monarch: "12.00 12.00 266.64 527.76" +*da.ImageableArea EnvMonarch/Konv Monarch: "" +*de.ImageableArea EnvMonarch/Umschlag Monarch: "" +*es.ImageableArea EnvMonarch/Sobre Monarch: "" +*fi.ImageableArea EnvMonarch/Kirjekuori Monarch: "" +*fr.ImageableArea EnvMonarch/Enveloppe Monarch: "" +*it.ImageableArea EnvMonarch/Busta Monarch: "" +*ja.ImageableArea EnvMonarch/封筒 Monarch: "" +*ko.ImageableArea EnvMonarch/Monarch 봉투: "" +*nl.ImageableArea EnvMonarch/Monarch-envelop: "" +*nb.ImageableArea EnvMonarch/Monarch-konvolutt: "" +*pt.ImageableArea EnvMonarch/Envelope Monarch: "" +*sv.ImageableArea EnvMonarch/Monarch-kuvert: "" +*zh_CN.ImageableArea EnvMonarch/信封 Monarch: "" +*zh_TW.ImageableArea EnvMonarch/Monarch 信封: "" + +*ImageableArea EnvDL/Env DL: "12.00 12.00 299.52 611.28" +*da.ImageableArea EnvDL/Konv DL: "" +*de.ImageableArea EnvDL/Umschlag DL: "" +*es.ImageableArea EnvDL/Sobre DL: "" +*fi.ImageableArea EnvDL/Kirjekuori DL: "" +*fr.ImageableArea EnvDL/Enveloppe DL: "" +*it.ImageableArea EnvDL/Busta DL: "" +*ja.ImageableArea EnvDL/封筒 DL: "" +*ko.ImageableArea EnvDL/DL 봉투: "" +*nl.ImageableArea EnvDL/DL-envelop: "" +*nb.ImageableArea EnvDL/DL-konvolutt: "" +*pt.ImageableArea EnvDL/Envelope DL: "" +*sv.ImageableArea EnvDL/DL-kuvert: "" +*zh_CN.ImageableArea EnvDL/信封 DL: "" +*zh_TW.ImageableArea EnvDL/DL 信封: "" + +*ImageableArea EnvC5/Env C5: "12.00 12.00 446.88 636.72" +*da.ImageableArea EnvC5/Konv C5: "" +*de.ImageableArea EnvC5/Umschlag C5: "" +*es.ImageableArea EnvC5/Sobre C5: "" +*fi.ImageableArea EnvC5/Kirjekuori C5: "" +*fr.ImageableArea EnvC5/Enveloppe C5: "" +*it.ImageableArea EnvC5/Busta C5: "" +*ja.ImageableArea EnvC5/封筒 C5: "" +*ko.ImageableArea EnvC5/C5 봉투: "" +*nl.ImageableArea EnvC5/C5-envelop: "" +*nb.ImageableArea EnvC5/C5-konvolutt: "" +*pt.ImageableArea EnvC5/Envelope C5: "" +*sv.ImageableArea EnvC5/C5-kuvert: "" +*zh_CN.ImageableArea EnvC5/信封 C5: "" +*zh_TW.ImageableArea EnvC5/C5 信封: "" + +*ImageableArea EnvISOB5/Env ISO B5: "12.00 12.00 486.48 696.24" +*da.ImageableArea EnvISOB5/Konv ISO B5: "" +*de.ImageableArea EnvISOB5/Umschlag ISO B5: "" +*es.ImageableArea EnvISOB5/Sobre ISO B5: "" +*fi.ImageableArea EnvISOB5/Kirjekuori ISO B5: "" +*fr.ImageableArea EnvISOB5/Enveloppe ISO B5: "" +*it.ImageableArea EnvISOB5/Busta ISO B5: "" +*ja.ImageableArea EnvISOB5/封筒 ISO B5: "" +*ko.ImageableArea EnvISOB5/ISO B5 봉투: "" +*nl.ImageableArea EnvISOB5/ISO B5-envelop: "" +*nb.ImageableArea EnvISOB5/B5-konvolutt: "" +*pt.ImageableArea EnvISOB5/Envelope B5: "" +*sv.ImageableArea EnvISOB5/ISO B5-kuvert: "" +*zh_CN.ImageableArea EnvISOB5/信封 ISO B5: "" +*zh_TW.ImageableArea EnvISOB5/ISO B5 信封: "" + +*?ImageableArea: " + save + /cvp { ( ) cvs print ( ) print } bind def + /upperright {10000 mul floor 10000 div} bind def + /lowerleft {10000 mul ceiling 10000 div} bind def + newpath clippath pathbbox + 4 -2 roll exch 2 {lowerleft cvp} repeat + exch 2 {upperright cvp} repeat flush + restore +" +*End + +*DefaultPaperDimension: A4 +*PaperDimension Letter/Letter: "612 792" +*da.PaperDimension Letter/Letter: "" +*de.PaperDimension Letter/Letter: "" +*es.PaperDimension Letter/Letter: "" +*fi.PaperDimension Letter/Letter: "" +*fr.PaperDimension Letter/Lettre: "" +*it.PaperDimension Letter/Letter: "" +*ja.PaperDimension Letter/レター: "" +*ko.PaperDimension Letter/레터: "" +*nl.PaperDimension Letter/Letter: "" +*nb.PaperDimension Letter/Letter: "" +*pt.PaperDimension Letter/Carta: "" +*sv.PaperDimension Letter/Letter: "" +*zh_CN.PaperDimension Letter/信纸: "" +*zh_TW.PaperDimension Letter/Letter: "" + +*PaperDimension Executive/Executive: "522 756" +*da.PaperDimension Executive/Executive: "" +*de.PaperDimension Executive/Executive: "" +*es.PaperDimension Executive/Executive: "" +*fi.PaperDimension Executive/Executive: "" +*fr.PaperDimension Executive/Exécutif: "" +*it.PaperDimension Executive/Executive: "" +*ja.PaperDimension Executive/エグゼクティブ: "" +*ko.PaperDimension Executive/Executive: "" +*nl.PaperDimension Executive/Executive: "" +*nb.PaperDimension Executive/Executive: "" +*pt.PaperDimension Executive/Executivo: "" +*sv.PaperDimension Executive/Executive: "" +*zh_CN.PaperDimension Executive/Executive: "" +*zh_TW.PaperDimension Executive/Executive: "" + +*PaperDimension Legal/Legal: "612 1008" +*da.PaperDimension Legal/Legal: "" +*de.PaperDimension Legal/Legal: "" +*es.PaperDimension Legal/Legal: "" +*fi.PaperDimension Legal/Legal: "" +*fr.PaperDimension Legal/Légal: "" +*it.PaperDimension Legal/Legal: "" +*ja.PaperDimension Legal/リーガル: "" +*ko.PaperDimension Legal/리갈: "" +*nl.PaperDimension Legal/Legal: "" +*nb.PaperDimension Legal/Legal: "" +*pt.PaperDimension Legal/Legal: "" +*sv.PaperDimension Legal/Legal: "" +*zh_CN.PaperDimension Legal/Legal: "" +*zh_TW.PaperDimension Legal/Legal: "" + +*PaperDimension w612h935/8.5x13: "612 935" +*da.PaperDimension w612h935/8.5x13: "" +*de.PaperDimension w612h935/8.5x13: "" +*es.PaperDimension w612h935/8.5x13: "" +*fi.PaperDimension w612h935/8.5x13: "" +*fr.PaperDimension w612h935/8.5x13: "" +*it.PaperDimension w612h935/8.5x13: "" +*ja.PaperDimension w612h935/8.5x13: "" +*ko.PaperDimension w612h935/8.5x13: "" +*nl.PaperDimension w612h935/8.5x13: "" +*nb.PaperDimension w612h935/8.5x13: "" +*pt.PaperDimension w612h935/8.5x13: "" +*sv.PaperDimension w612h935/8.5x13: "" +*zh_CN.PaperDimension w612h935/8.5x13: "" +*zh_TW.PaperDimension w612h935/8.5x13: "" + +*PaperDimension A4/A4: "595 842" +*da.PaperDimension A4/A4: "" +*de.PaperDimension A4/A4: "" +*es.PaperDimension A4/A4: "" +*fi.PaperDimension A4/A4: "" +*fr.PaperDimension A4/A4: "" +*it.PaperDimension A4/A4: "" +*ja.PaperDimension A4/A4: "" +*ko.PaperDimension A4/A4: "" +*nl.PaperDimension A4/A4: "" +*nb.PaperDimension A4/A4: "" +*pt.PaperDimension A4/A4: "" +*sv.PaperDimension A4/A4: "" +*zh_CN.PaperDimension A4/A4: "" +*zh_TW.PaperDimension A4/A4: "" + +*PaperDimension A5/A5: "420 595" +*da.PaperDimension A5/A5: "" +*de.PaperDimension A5/A5: "" +*es.PaperDimension A5/A5: "" +*fi.PaperDimension A5/A5: "" +*fr.PaperDimension A5/A5: "" +*it.PaperDimension A5/A5: "" +*ja.PaperDimension A5/A5: "" +*ko.PaperDimension A5/A5: "" +*nl.PaperDimension A5/A5: "" +*nb.PaperDimension A5/A5: "" +*pt.PaperDimension A5/A5: "" +*sv.PaperDimension A5/A5: "" +*zh_CN.PaperDimension A5/A5: "" +*zh_TW.PaperDimension A5/A5: "" + +*PaperDimension A6/A6: "297 420" +*da.PaperDimension A6/A6: "" +*de.PaperDimension A6/A6 Card: "" +*es.PaperDimension A6/A6: "" +*fi.PaperDimension A6/A6: "" +*fr.PaperDimension A6/A6 Card: "" +*it.PaperDimension A6/A6 Card: "" +*ja.PaperDimension A6/A6: "" +*ko.PaperDimension A6/A6: "" +*nl.PaperDimension A6/A6: "" +*nb.PaperDimension A6/A6: "" +*pt.PaperDimension A6/A6: "" +*sv.PaperDimension A6/A6: "" +*zh_CN.PaperDimension A6/A6: "" +*zh_TW.PaperDimension A6/A6: "" + +*PaperDimension ISOB5/B5 (ISO): "499 709" +*da.PaperDimension ISOB5/B5 (ISO): "" +*de.PaperDimension ISOB5/B5 (ISO): "" +*es.PaperDimension ISOB5/B5 (ISO): "" +*fi.PaperDimension ISOB5/B5 (ISO): "" +*fr.PaperDimension ISOB5/B5 (ISO): "" +*it.PaperDimension ISOB5/B5 (ISO): "" +*ja.PaperDimension ISOB5/B5 (ISO): "" +*ko.PaperDimension ISOB5/B5 (ISO): "" +*nl.PaperDimension ISOB5/B5 (ISO): "" +*nb.PaperDimension ISOB5/B5 (ISO): "" +*pt.PaperDimension ISOB5/B5 (ISO): "" +*sv.PaperDimension ISOB5/B5 (ISO): "" +*zh_CN.PaperDimension ISOB5/B5 (ISO): "" +*zh_TW.PaperDimension ISOB5/B5 (ISO): "" + +*PaperDimension B5/JIS B5: "516 729" +*da.PaperDimension B5/JIS B5: "" +*de.PaperDimension B5/B5 (JIS): "" +*es.PaperDimension B5/JIS B5: "" +*fi.PaperDimension B5/JIS B5: "" +*fr.PaperDimension B5/JIS B5: "" +*it.PaperDimension B5/B5 JIS: "" +*ja.PaperDimension B5/B5 (JIS): "" +*ko.PaperDimension B5/JIS B5: "" +*nl.PaperDimension B5/JIS B5: "" +*nb.PaperDimension B5/JIS B5: "" +*pt.PaperDimension B5/B5 JIS: "" +*sv.PaperDimension B5/JIS B5: "" +*zh_CN.PaperDimension B5/JIS B5: "" +*zh_TW.PaperDimension B5/JIS B5: "" + +*PaperDimension ISOB6/B6 (ISO): "354 499" +*da.PaperDimension ISOB6/B6 (ISO): "" +*de.PaperDimension ISOB6/B6 (ISO): "" +*es.PaperDimension ISOB6/B6 (ISO): "" +*fi.PaperDimension ISOB6/B6 (ISO): "" +*fr.PaperDimension ISOB6/B6 (ISO): "" +*it.PaperDimension ISOB6/B6 (ISO): "" +*ja.PaperDimension ISOB6/B6 (ISO): "" +*ko.PaperDimension ISOB6/B6 (ISO): "" +*nl.PaperDimension ISOB6/B6 (ISO): "" +*nb.PaperDimension ISOB6/B6 (ISO): "" +*pt.PaperDimension ISOB6/B6 (ISO): "" +*sv.PaperDimension ISOB6/B6 (ISO): "" +*zh_CN.PaperDimension ISOB6/B6 (ISO): "" +*zh_TW.PaperDimension ISOB6/B6 (ISO): "" + +*PaperDimension w612h936/Executive (JIS): "612 936" +*da.PaperDimension w612h936/Executive (JIS): "" +*de.PaperDimension w612h936/Executive (JIS): "" +*es.PaperDimension w612h936/Executive (JIS): "" +*fi.PaperDimension w612h936/Executive (JIS): "" +*fr.PaperDimension w612h936/Exécutif (JIS): "" +*it.PaperDimension w612h936/Executive (JIS): "" +*ja.PaperDimension w612h936/エグゼクティブ (JIS): "" +*ko.PaperDimension w612h936/Executive (JIS): "" +*nl.PaperDimension w612h936/Executive (JIS): "" +*nb.PaperDimension w612h936/Executive (JIS): "" +*pt.PaperDimension w612h936/Executive (JIS): "" +*sv.PaperDimension w612h936/Executive (JIS): "" +*zh_CN.PaperDimension w612h936/Executive (JIS): "" +*zh_TW.PaperDimension w612h936/Executive (JIS): "" + +*PaperDimension Postcard/Postcard (JIS): "284 419" +*da.PaperDimension Postcard/Postkort (JIS): "" +*de.PaperDimension Postcard/Postkarte (JIS): "" +*es.PaperDimension Postcard/Tarjeta postal (JIS): "" +*fi.PaperDimension Postcard/Postikortti (JIS): "" +*fr.PaperDimension Postcard/Carte postale (JIS): "" +*it.PaperDimension Postcard/Cartolina (JIS): "" +*ja.PaperDimension Postcard/はがき (JIS): "" +*ko.PaperDimension Postcard/우편엽서 (JIS): "" +*nl.PaperDimension Postcard/Briefkaart (JIS): "" +*nb.PaperDimension Postcard/Postkort (JIS): "" +*pt.PaperDimension Postcard/Postal (JIS): "" +*sv.PaperDimension Postcard/Brevkort (JIS): "" +*zh_CN.PaperDimension Postcard/明信片 (JIS): "" +*zh_TW.PaperDimension Postcard/明信片(JIS): "" + +*PaperDimension DoublePostcard/Double Postcard (JIS): "419.5 567" +*da.PaperDimension DoublePostcard/Dobbelt postkort (JIS): "" +*de.PaperDimension DoublePostcard/Doppelte Postkarte (JIS): "" +*es.PaperDimension DoublePostcard/Tarjeta postal doble (JIS): "" +*fi.PaperDimension DoublePostcard/Kaksinkert. postikortti (JIS): "" +*fr.PaperDimension DoublePostcard/Carte postale double (JIS): "" +*it.PaperDimension DoublePostcard/Cartolina doppia (JIS): "" +*ja.PaperDimension DoublePostcard/往復はがき (JIS): "" +*ko.PaperDimension DoublePostcard/양면 엽서 (JIS): "" +*nl.PaperDimension DoublePostcard/Dubbele briefkaart (JIS): "" +*nb.PaperDimension DoublePostcard/Dobbelt postkort (JIS): "" +*pt.PaperDimension DoublePostcard/Postal duplo (JIS): "" +*sv.PaperDimension DoublePostcard/Dubbelt brevkort (JIS): "" +*zh_CN.PaperDimension DoublePostcard/大号明信片 (JIS): "" +*zh_TW.PaperDimension DoublePostcard/雙面明信片 (JIS): "" + +*PaperDimension w558h774/16K (7.75x10.75 in): "558 774" +*da.PaperDimension w558h774/16K: "" +*de.PaperDimension w558h774/16K: "" +*es.PaperDimension w558h774/16K: "" +*fi.PaperDimension w558h774/16 K: "" +*fr.PaperDimension w558h774/16K: "" +*it.PaperDimension w558h774/16K: "" +*ja.PaperDimension w558h774/16K: "" +*ko.PaperDimension w558h774/16K: "" +*nl.PaperDimension w558h774/16K: "" +*nb.PaperDimension w558h774/16K: "" +*pt.PaperDimension w558h774/16K: "" +*sv.PaperDimension w558h774/16K: "" +*zh_CN.PaperDimension w558h774/16K: "" +*zh_TW.PaperDimension w558h774/16K: "" + +*PaperDimension w553h765/16K (195x270 mm): "553 765" +*da.PaperDimension w553h765/16K (195x270 mm): "" +*de.PaperDimension w553h765/16K (195x270 mm): "" +*es.PaperDimension w553h765/16K (195x270 mm): "" +*fi.PaperDimension w553h765/16K (195x270 mm): "" +*fr.PaperDimension w553h765/16K (195x270 mm): "" +*it.PaperDimension w553h765/16K (195x270 mm): "" +*ja.PaperDimension w553h765/16K (195x270 mm): "" +*ko.PaperDimension w553h765/16K (195x270 mm): "" +*nl.PaperDimension w553h765/16K (195x270 mm): "" +*nb.PaperDimension w553h765/16K (195x270 mm): "" +*pt.PaperDimension w553h765/16K (195x270 mm): "" +*sv.PaperDimension w553h765/16K (195x270 mm): "" +*zh_CN.PaperDimension w553h765/16K (195x270 毫米): "" +*zh_TW.PaperDimension w553h765/16K (195x270 公釐): "" + +*PaperDimension w522h737/16K (184x260 mm): "522 737" +*da.PaperDimension w522h737/16K (184x260 mm): "" +*de.PaperDimension w522h737/16K (184x260 mm): "" +*es.PaperDimension w522h737/16K (184x260 mm): "" +*fi.PaperDimension w522h737/16K (184x260 mm): "" +*fr.PaperDimension w522h737/16K (184x260 mm): "" +*it.PaperDimension w522h737/16K (184x260 mm): "" +*ja.PaperDimension w522h737/16K (184x260 mm): "" +*ko.PaperDimension w522h737/16K (184x260 mm): "" +*nl.PaperDimension w522h737/16K (184x260 mm): "" +*nb.PaperDimension w522h737/16K (184x260 mm): "" +*pt.PaperDimension w522h737/16K (184x260 mm): "" +*sv.PaperDimension w522h737/16K (184x260 mm): "" +*zh_CN.PaperDimension w522h737/16K (184x260 毫米): "" +*zh_TW.PaperDimension w522h737/16K (184x260 公釐): "" + +*PaperDimension Env10/Env Comm10: "297 684" +*da.PaperDimension Env10/Konv Comm10: "" +*de.PaperDimension Env10/Umschlag Comm10: "" +*es.PaperDimension Env10/Sobre Comm10: "" +*fi.PaperDimension Env10/Kirjekuori Comm10: "" +*fr.PaperDimension Env10/Enveloppe Comm10: "" +*it.PaperDimension Env10/Busta Comm10: "" +*ja.PaperDimension Env10/封筒 Comm10: "" +*ko.PaperDimension Env10/Comm10 봉투: "" +*nl.PaperDimension Env10/Comm10-envelop: "" +*nb.PaperDimension Env10/Comm10-konvolutt: "" +*pt.PaperDimension Env10/Envelope Comm10: "" +*sv.PaperDimension Env10/Comm10-kuvert: "" +*zh_CN.PaperDimension Env10/信封 Comm10: "" +*zh_TW.PaperDimension Env10/Comm10 信封: "" + +*PaperDimension EnvMonarch/Env Monarch: "279 540" +*da.PaperDimension EnvMonarch/Konv Monarch: "" +*de.PaperDimension EnvMonarch/Umschlag Monarch: "" +*es.PaperDimension EnvMonarch/Sobre Monarch: "" +*fi.PaperDimension EnvMonarch/Kirjekuori Monarch: "" +*fr.PaperDimension EnvMonarch/Enveloppe Monarch: "" +*it.PaperDimension EnvMonarch/Busta Monarch: "" +*ja.PaperDimension EnvMonarch/封筒 Monarch: "" +*ko.PaperDimension EnvMonarch/Monarch 봉투: "" +*nl.PaperDimension EnvMonarch/Monarch-envelop: "" +*nb.PaperDimension EnvMonarch/Monarch-konvolutt: "" +*pt.PaperDimension EnvMonarch/Envelope Monarch: "" +*sv.PaperDimension EnvMonarch/Monarch-kuvert: "" +*zh_CN.PaperDimension EnvMonarch/信封 Monarch: "" +*zh_TW.PaperDimension EnvMonarch/Monarch 信封: "" + +*PaperDimension EnvDL/Env DL: "312 624" +*da.PaperDimension EnvDL/Konv DL: "" +*de.PaperDimension EnvDL/Umschlag DL: "" +*es.PaperDimension EnvDL/Sobre DL: "" +*fi.PaperDimension EnvDL/Kirjekuori DL: "" +*fr.PaperDimension EnvDL/Enveloppe DL: "" +*it.PaperDimension EnvDL/Busta DL: "" +*ja.PaperDimension EnvDL/封筒 DL: "" +*ko.PaperDimension EnvDL/DL 봉투: "" +*nl.PaperDimension EnvDL/DL-envelop: "" +*nb.PaperDimension EnvDL/DL-konvolutt: "" +*pt.PaperDimension EnvDL/Envelope DL: "" +*sv.PaperDimension EnvDL/DL-kuvert: "" +*zh_CN.PaperDimension EnvDL/信封 DL: "" +*zh_TW.PaperDimension EnvDL/DL 信封: "" + +*PaperDimension EnvC5/Env C5: "459 649" +*da.PaperDimension EnvC5/Konv C5: "" +*de.PaperDimension EnvC5/Umschlag C5: "" +*es.PaperDimension EnvC5/Sobre C5: "" +*fi.PaperDimension EnvC5/Kirjekuori C5: "" +*fr.PaperDimension EnvC5/Enveloppe C5: "" +*it.PaperDimension EnvC5/Busta C5: "" +*ja.PaperDimension EnvC5/封筒 C5: "" +*ko.PaperDimension EnvC5/C5 봉투: "" +*nl.PaperDimension EnvC5/C5-envelop: "" +*nb.PaperDimension EnvC5/C5-konvolutt: "" +*pt.PaperDimension EnvC5/Envelope C5: "" +*sv.PaperDimension EnvC5/C5-kuvert: "" +*zh_CN.PaperDimension EnvC5/信封 C5: "" +*zh_TW.PaperDimension EnvC5/C5 信封: "" + +*PaperDimension EnvISOB5/Env ISO B5: "499 709" +*da.PaperDimension EnvISOB5/Konv ISO B5: "" +*de.PaperDimension EnvISOB5/Umschlag ISO B5: "" +*es.PaperDimension EnvISOB5/Sobre ISO B5: "" +*fi.PaperDimension EnvISOB5/Kirjekuori ISO B5: "" +*fr.PaperDimension EnvISOB5/Enveloppe ISO B5: "" +*it.PaperDimension EnvISOB5/Busta ISO B5: "" +*ja.PaperDimension EnvISOB5/封筒 ISO B5: "" +*ko.PaperDimension EnvISOB5/ISO B5 봉투: "" +*nl.PaperDimension EnvISOB5/ISO B5-envelop: "" +*nb.PaperDimension EnvISOB5/B5-konvolutt: "" +*pt.PaperDimension EnvISOB5/Envelope B5: "" +*sv.PaperDimension EnvISOB5/ISO B5-kuvert: "" +*zh_CN.PaperDimension EnvISOB5/信封 ISO B5: "" +*zh_TW.PaperDimension EnvISOB5/ISO B5 信封: "" + + +*LandscapeOrientation: Plus90 + + +*%================================================= +*% Custom Paper Support +*%================================================= +*%Orientation and Margin (offsets) values are not utilized + +*VariablePaperSize: True + +*LeadingEdge PreferLong: "" +*DefaultLeadingEdge: PreferLong + +*% Smallest = 3x5, Largest = 8.5 x 14 +*MaxMediaWidth: "612" +*MaxMediaHeight: "1008" +*HWMargins: 12 12 12 12 +*%CustomPageRegion True: "" +*CustomPageSize True: " + pop pop pop + <> + setpagedevice +" +*End + + +*ParamCustomPageSize Width: 1 points 216 612 +*ParamCustomPageSize Height: 2 points 360 1008 +*ParamCustomPageSize HeightOffset: 3 points 0 0 +*ParamCustomPageSize WidthOffset: 4 points 0 0 +*ParamCustomPageSize Orientation: 5 int 0 3 + +*RequiresPageRegion All: True + +*%========================================== +*% Media Type +*%========================================= +*OpenUI *MediaType/Media Type: PickOne +*OrderDependency: 20 AnySetup *MediaType +*DefaultMediaType: Unspecified +*da.Translation MediaType/Medietype: "" +*de.Translation MediaType/Medientyp: "" +*es.Translation MediaType/Tipo de sustrato: "" +*fi.Translation MediaType/Tulostusmateriaali: "" +*fr.Translation MediaType/Type de support: "" +*it.Translation MediaType/Tipo di supporto: "" +*ja.Translation MediaType/用紙の種類: "" +*ko.Translation MediaType/용지 종류: "" +*nl.Translation MediaType/Type afdrukmateriaal: "" +*nb.Translation MediaType/Utskriftsmateriale: "" +*pt.Translation MediaType/Tipo de mídia: "" +*sv.Translation MediaType/Material: "" +*zh_CN.Translation MediaType/介质类型: "" +*zh_TW.Translation MediaType/媒體類型: "" + +*MediaType Unspecified/Unspecified: " + <> setpagedevice" +*End +*da.MediaType Unspecified/Uspecificeret: "" +*de.MediaType Unspecified/Nicht bestimmt: "" +*es.MediaType Unspecified/No especificado: "" +*fi.MediaType Unspecified/Määrittämätön: "" +*fr.MediaType Unspecified/Non spécifié: "" +*it.MediaType Unspecified/Non specificato: "" +*ja.MediaType Unspecified/指定なし: "" +*ko.MediaType Unspecified/지정되지 않음: "" +*nl.MediaType Unspecified/Onbekend: "" +*nb.MediaType Unspecified/Uspesifisert: "" +*pt.MediaType Unspecified/Não especificado: "" +*sv.MediaType Unspecified/Ospecificerad: "" +*zh_CN.MediaType Unspecified/未指定: "" +*zh_TW.MediaType Unspecified/未指定: "" + +*MediaType Plain/Plain: " + <> setpagedevice" +*End +*da.MediaType Plain/Almindeligt: "" +*de.MediaType Plain/Normalpapier: "" +*es.MediaType Plain/Estándar: "" +*fi.MediaType Plain/Tavallinen: "" +*fr.MediaType Plain/Ordinaire: "" +*it.MediaType Plain/Normale: "" +*ja.MediaType Plain/普通用紙: "" +*ko.MediaType Plain/일반용지: "" +*nl.MediaType Plain/Gewoon: "" +*nb.MediaType Plain/Vanlig: "" +*pt.MediaType Plain/Comum: "" +*sv.MediaType Plain/Vanligt: "" +*zh_CN.MediaType Plain/普通纸: "" +*zh_TW.MediaType Plain/素面紙: "" + +*MediaType HPMultipurposePaper/HP Multipurpose Paper (71-89 g/m2): " + <> setpagedevice" +*End +*da.MediaType HPMultipurposePaper/HP Universalpapir (71-89 g/m2): "" +*de.MediaType HPMultipurposePaper/HP Mehrzweckpapier (71-89 g/m2): "" +*es.MediaType HPMultipurposePaper/Papel multipropósito HP (71-89 g/m2): "" +*fi.MediaType HPMultipurposePaper/HP monikäyttöpaperi (71-89 g/m2): "" +*fr.MediaType HPMultipurposePaper/Papier universel HP (71-89 g/m2): "" +*it.MediaType HPMultipurposePaper/Carta multiuso HP (71-89 g/m2): "" +*ja.MediaType HPMultipurposePaper/多目的用紙 (71-89 g/m2): "" +*ko.MediaType HPMultipurposePaper/hp 다목적 용지 (71-89 g/m2): "" +*nl.MediaType HPMultipurposePaper/HP Multi-purpose Papier (71-89 g/m2): "" +*nb.MediaType HPMultipurposePaper/HP Multipurpose Paper (71-89 g/m2): "" +*pt.MediaType HPMultipurposePaper/Papel Multipropósito HP (71-89 g/m2): "" +*sv.MediaType HPMultipurposePaper/HP allround-papper (71-89 g/m2): "" +*zh_CN.MediaType HPMultipurposePaper/HP 多用途纸 (71-89 g/m2): "" +*zh_TW.MediaType HPMultipurposePaper/HP 多用途紙張 (71-89 g/m2): "" + +*MediaType HPOfficePaper/HP Office Paper: " + <> setpagedevice" +*End +*da.MediaType HPOfficePaper/HP Kontorpapir: "" +*de.MediaType HPOfficePaper/HP Office-Papier: "" +*es.MediaType HPOfficePaper/Papel de oficina HP: "" +*fi.MediaType HPOfficePaper/HP toimistopaperi: "" +*fr.MediaType HPOfficePaper/Papier pour application bureautique HP: "" +*it.MediaType HPOfficePaper/Carta per ufficio HP: "" +*ja.MediaType HPOfficePaper/オフィス用紙: "" +*ko.MediaType HPOfficePaper/hp 사무용 용지: "" +*nl.MediaType HPOfficePaper/HP Office Papier: "" +*nb.MediaType HPOfficePaper/HP Office Paper: "" +*pt.MediaType HPOfficePaper/Papel Para Escritório HP: "" +*sv.MediaType HPOfficePaper/HP kontorspapper: "" +*zh_CN.MediaType HPOfficePaper/HP 办公纸: "" +*zh_TW.MediaType HPOfficePaper/HP 辦公用紙張: "" + +*MediaType HPAllinOnePaper/HP All-in-one Printing Paper: " + <> setpagedevice" +*End +*da.MediaType HPAllinOnePaper/HP All-in-one-Printerpapir: "" +*de.MediaType HPAllinOnePaper/HP Druckerpapier für All-in-One-Geräte: "" +*es.MediaType HPAllinOnePaper/Papel de impresión para HP All-in-one: "" +*fi.MediaType HPAllinOnePaper/HP yhdistelmälaitteen tulostuspaperi: "" +*fr.MediaType HPAllinOnePaper/Papier d'impression HP tout-en-un: "" +*it.MediaType HPAllinOnePaper/Carta per stampa per HP all-in-one: "" +*ja.MediaType HPAllinOnePaper/オールインワン印刷用紙: "" +*ko.MediaType HPAllinOnePaper/HP all-in-one 인쇄 용지: "" +*nl.MediaType HPAllinOnePaper/HP All-in-one Afdrukpapier: "" +*nb.MediaType HPAllinOnePaper/HP All-in-one-utskriftspapir: "" +*pt.MediaType HPAllinOnePaper/Papel para impressão HP All-in-one: "" +*sv.MediaType HPAllinOnePaper/HP All-in-one-utskriftspapper: "" +*zh_CN.MediaType HPAllinOnePaper/HP All-in-one 打印纸: "" +*zh_TW.MediaType HPAllinOnePaper/HP All-in-one 列印紙張: "" + +*MediaType HPLJPaper/HP LaserJet Paper: " + <> setpagedevice" +*End +*da.MediaType HPLJPaper/HP LaserJet-papir: "" +*de.MediaType HPLJPaper/HP LaserJet-Papier: "" +*es.MediaType HPLJPaper/Papel para HP LaserJet: "" +*fi.MediaType HPLJPaper/HP LaserJet -paperi: "" +*fr.MediaType HPLJPaper/Papier HP LaserJet: "" +*it.MediaType HPLJPaper/Carta per HP LaserJet: "" +*ja.MediaType HPLJPaper/hp LaserJet 用紙: "" +*ko.MediaType HPLJPaper/HP LaserJet 용지: "" +*nl.MediaType HPLJPaper/HP LaserJet Papier: "" +*nb.MediaType HPLJPaper/HP LaserJet-papir: "" +*pt.MediaType HPLJPaper/Papel para HP LaserJet: "" +*sv.MediaType HPLJPaper/HP LaserJet-papper: "" +*zh_CN.MediaType HPLJPaper/HP LaserJet 纸: "" +*zh_TW.MediaType HPLJPaper/HP LaserJet 紙張: "" + +*MediaType HPPremChoiceLJPaper/HP Premium Choice LaserJet Paper: " + <> setpagedevice" +*End +*da.MediaType HPPremChoiceLJPaper/HP Premium Choice LaserJet-papir: "" +*de.MediaType HPPremChoiceLJPaper/HP Premium Choice LaserJet-Papier: "" +*es.MediaType HPPremChoiceLJPaper/Papel para HP Premium Choice LaserJet: "" +*fi.MediaType HPPremChoiceLJPaper/HP Premium Choice LaserJet -paperi: "" +*fr.MediaType HPPremChoiceLJPaper/Papier LaserJet HP Premium Choice: "" +*it.MediaType HPPremChoiceLJPaper/Carta alta qualità per HP LaserJet: "" +*ja.MediaType HPPremChoiceLJPaper/プレミアムチョイス LaserJet 用紙: "" +*ko.MediaType HPPremChoiceLJPaper/HP LaserJet 고급 용지: "" +*nl.MediaType HPPremChoiceLJPaper/HP Premium Choice LaserJet Papier: "" +*nb.MediaType HPPremChoiceLJPaper/HP Premium Choice LaserJet-papir: "" +*pt.MediaType HPPremChoiceLJPaper/Papel HP Premium Choice para HP LaserJet: "" +*sv.MediaType HPPremChoiceLJPaper/HP Premium Choice LaserJet-papper: "" +*zh_CN.MediaType HPPremChoiceLJPaper/HP 优选 LaserJet 纸: "" +*zh_TW.MediaType HPPremChoiceLJPaper/HP 頂級 LaserJet 紙張: "" + +*MediaType Preprinted/Preprinted: " + <> setpagedevice" +*End +*da.MediaType Preprinted/Fortrykt: "" +*de.MediaType Preprinted/Vordruckpapier: "" +*es.MediaType Preprinted/Preimpreso: "" +*fi.MediaType Preprinted/Esipainettu: "" +*fr.MediaType Preprinted/Préimprimé: "" +*it.MediaType Preprinted/Prestampata: "" +*ja.MediaType Preprinted/印刷フォーム: "" +*ko.MediaType Preprinted/미리 인쇄: "" +*nl.MediaType Preprinted/Voorbedrukt: "" +*nb.MediaType Preprinted/Forhåndstrykt: "" +*pt.MediaType Preprinted/Pré-impresso: "" +*sv.MediaType Preprinted/Förtryckt: "" +*zh_CN.MediaType Preprinted/预先打印纸: "" +*zh_TW.MediaType Preprinted/預印的: "" + +*MediaType Letterhead/Letterhead: " + <> setpagedevice" +*End +*da.MediaType Letterhead/Brevpapir: "" +*de.MediaType Letterhead/Briefkopfpapier: "" +*es.MediaType Letterhead/Membrete: "" +*fi.MediaType Letterhead/Kirjelomake: "" +*fr.MediaType Letterhead/Papier à en-tête: "" +*it.MediaType Letterhead/Carta intestata: "" +*ja.MediaType Letterhead/レターヘッド付き: "" +*ko.MediaType Letterhead/레터헤드: "" +*nl.MediaType Letterhead/Briefpapier: "" +*nb.MediaType Letterhead/Brevhode: "" +*pt.MediaType Letterhead/Timbrado: "" +*sv.MediaType Letterhead/Brevpapper: "" +*zh_CN.MediaType Letterhead/信头纸: "" +*zh_TW.MediaType Letterhead/信頭紙: "" + +*MediaType Transparency/Transparency: " + <> setpagedevice" +*End +*da.MediaType Transparency/Transparent: "" +*de.MediaType Transparency/Transparentfolie: "" +*es.MediaType Transparency/Transparencia: "" +*fi.MediaType Transparency/Kalvo: "" +*fr.MediaType Transparency/Transparent: "" +*it.MediaType Transparency/Lucido: "" +*ja.MediaType Transparency/OHP フィルム: "" +*ko.MediaType Transparency/투명 용지: "" +*nl.MediaType Transparency/Transparant: "" +*nb.MediaType Transparency/Transparent: "" +*pt.MediaType Transparency/Transparência: "" +*sv.MediaType Transparency/OH-film: "" +*zh_CN.MediaType Transparency/透明胶片: "" +*zh_TW.MediaType Transparency/投影片: "" + +*MediaType Prepunched/Prepunched: " + <> setpagedevice" +*End +*da.MediaType Prepunched/Hullet: "" +*de.MediaType Prepunched/Vorgelochtes Papier: "" +*es.MediaType Prepunched/Preperforado: "" +*fi.MediaType Prepunched/Rei’itetty: "" +*fr.MediaType Prepunched/Perforé: "" +*it.MediaType Prepunched/Perforata: "" +*ja.MediaType Prepunched/穴あき用紙: "" +*ko.MediaType Prepunched/천공 용지: "" +*nl.MediaType Prepunched/Geperforeerd: "" +*nb.MediaType Prepunched/Hullark: "" +*pt.MediaType Prepunched/Perfurado: "" +*sv.MediaType Prepunched/Hålat: "" +*zh_CN.MediaType Prepunched/预先打孔纸: "" +*zh_TW.MediaType Prepunched/打孔過的: "" + +*MediaType Labels/Labels: " + <> setpagedevice" +*End +*da.MediaType Labels/Etiketter: "" +*de.MediaType Labels/Etiketten: "" +*es.MediaType Labels/Etiquetas: "" +*fi.MediaType Labels/Tarrat: "" +*fr.MediaType Labels/Étiquettes: "" +*it.MediaType Labels/Etichette: "" +*ja.MediaType Labels/ラベル: "" +*ko.MediaType Labels/레이블: "" +*nl.MediaType Labels/Etiketten: "" +*nb.MediaType Labels/Etiketter: "" +*pt.MediaType Labels/Etiquetas: "" +*sv.MediaType Labels/Etiketter: "" +*zh_CN.MediaType Labels/标签: "" +*zh_TW.MediaType Labels/標籤: "" + +*MediaType Bond/Bond: " + <> setpagedevice" +*End +*da.MediaType Bond/Bond: "" +*de.MediaType Bond/Briefpapier: "" +*es.MediaType Bond/Bond: "" +*fi.MediaType Bond/Kova asiakirjapaperi: "" +*fr.MediaType Bond/Document: "" +*it.MediaType Bond/Carta fine: "" +*ja.MediaType Bond/ボンド紙: "" +*ko.MediaType Bond/본드지: "" +*nl.MediaType Bond/Bankpost: "" +*nb.MediaType Bond/Bond: "" +*pt.MediaType Bond/Superbond: "" +*sv.MediaType Bond/Finpapper: "" +*zh_CN.MediaType Bond/证券纸: "" +*zh_TW.MediaType Bond/雪銅紙: "" + +*MediaType Recycled/Recycled: " + <> setpagedevice" +*End +*da.MediaType Recycled/Genbrug: "" +*de.MediaType Recycled/Recyclingpapier: "" +*es.MediaType Recycled/Reciclado: "" +*fi.MediaType Recycled/Uusiopaperi: "" +*fr.MediaType Recycled/Recyclé: "" +*it.MediaType Recycled/Riciclata: "" +*ja.MediaType Recycled/再生紙: "" +*ko.MediaType Recycled/재활용지: "" +*nl.MediaType Recycled/Gerecycled: "" +*nb.MediaType Recycled/Resirkulert: "" +*pt.MediaType Recycled/Reciclado: "" +*sv.MediaType Recycled/Returpapper: "" +*zh_CN.MediaType Recycled/再生纸: "" +*zh_TW.MediaType Recycled/再生紙: "" + +*MediaType Color/Color: " + <> setpagedevice" +*End +*da.MediaType Color/Farvet: "" +*de.MediaType Color/Farbpapier: "" +*es.MediaType Color/Color: "" +*fi.MediaType Color/Väri: "" +*fr.MediaType Color/Couleur: "" +*it.MediaType Color/Colorata: "" +*ja.MediaType Color/カラー: "" +*ko.MediaType Color/색: "" +*nl.MediaType Color/Kleur: "" +*nb.MediaType Color/Farge: "" +*pt.MediaType Color/Colorido: "" +*sv.MediaType Color/Färgat: "" +*zh_CN.MediaType Color/颜色: "" +*zh_TW.MediaType Color/顏色: "" + +*MediaType Light/Light (60-75 g/m2): " + <> setpagedevice" +*End +*da.MediaType Light/Let (60-75 g/m2): "" +*de.MediaType Light/Leicht (60-75 g/m2): "" +*es.MediaType Light/Ligero (60-75 g/m2): "" +*fi.MediaType Light/Kevyt (60-75 g/m2): "" +*fr.MediaType Light/Fin (60-75 g/m2): "" +*it.MediaType Light/Leggera (60-75 g/m2): "" +*ja.MediaType Light/軽い用紙 (60-75 g/m2): "" +*ko.MediaType Light/경량지 (60-75 g/m2): "" +*nl.MediaType Light/Licht (60-75 g/m2): "" +*nb.MediaType Light/Lys (60-75 g/m2): "" +*pt.MediaType Light/Leve (60-75 g/m2): "" +*sv.MediaType Light/Lätt (60-75 g/m2): "" +*zh_CN.MediaType Light/轻磅 (60-75 g/m2): "" +*zh_TW.MediaType Light/輕磅紙 (60-75 g/m2): "" + +*MediaType Heavy90105/Heavy (90-105 g/m2): " + <> setpagedevice" +*End +*da.MediaType Heavy90105/Kraftigt (90-105 g/m2): "" +*de.MediaType Heavy90105/Schwer (90-105 g/m2): "" +*es.MediaType Heavy90105/Pesado (90-105 g/m2): "" +*fi.MediaType Heavy90105/Paksu (90-105 g/m2): "" +*fr.MediaType Heavy90105/Epais (90-105 g/m2): "" +*it.MediaType Heavy90105/Pesante (90-105 g/m2): "" +*ja.MediaType Heavy90105/重い用紙 (90-105 g/m2): "" +*ko.MediaType Heavy90105/중량지 (90-105 g/m2): "" +*nl.MediaType Heavy90105/Zwaar (90-105 g/m2): "" +*nb.MediaType Heavy90105/Tungt (90-105 g/m2): "" +*pt.MediaType Heavy90105/Pesado (90-105 g/m2): "" +*sv.MediaType Heavy90105/Tungt (90-105 g/m2): "" +*zh_CN.MediaType Heavy90105/重磅 (90-105 g/m2): "" +*zh_TW.MediaType Heavy90105/重磅紙 (90-105 g/m2): "" + +*MediaType Cardstock106177/Card Stock (105-176 g/m2): " + <> setpagedevice" +*End +*da.MediaType Cardstock106177/Karton (105-176 g/m2): "" +*de.MediaType Cardstock106177/Karton (105-176 g/m2): "" +*es.MediaType Cardstock106177/Cartulina (105-176 g/m2): "" +*fi.MediaType Cardstock106177/Korttipaperi (105-176 g/m2): "" +*fr.MediaType Cardstock106177/Cartonné (105-176 g/m2): "" +*it.MediaType Cardstock106177/Cartoncino (105-176 g/m2): "" +*ja.MediaType Cardstock106177/カード ストック (105-176 g/m2): "" +*ko.MediaType Cardstock106177/카드 용지 (105-176 g/m2): "" +*nl.MediaType Cardstock106177/Kartonkaart (105-176 g/m2): "" +*nb.MediaType Cardstock106177/Kort (105-176 g/m2): "" +*pt.MediaType Cardstock106177/Cartolina (105-176 g/m2): "" +*sv.MediaType Cardstock106177/Kort (105-176 g/m2): "" +*zh_CN.MediaType Cardstock106177/卡片纸 (105-176 g/m2): "" +*zh_TW.MediaType Cardstock106177/卡片紙 (105-176 g/m2): "" + +*MediaType Envelope/Envelope: " + <> setpagedevice" +*End +*da.MediaType Envelope/Konvolut: "" +*de.MediaType Envelope/Briefumschlag: "" +*es.MediaType Envelope/Sobre: "" +*fi.MediaType Envelope/Kirjekuori: "" +*fr.MediaType Envelope/Enveloppe: "" +*it.MediaType Envelope/Busta: "" +*ja.MediaType Envelope/封筒: "" +*ko.MediaType Envelope/봉투: "" +*nl.MediaType Envelope/Enveloppen: "" +*nb.MediaType Envelope/Konvolutt: "" +*pt.MediaType Envelope/Envelope: "" +*sv.MediaType Envelope/Kuvert: "" +*zh_CN.MediaType Envelope/信封: "" +*zh_TW.MediaType Envelope/信封: "" + +*?MediaType: " + save + currentpagedevice /MediaType get + dup null eq {pop (Unknown)} if + = flush + restore +" +*End +*CloseUI: *MediaType + +*%================================================= +*% Paper Sources +*%================================================= +*OpenUI *InputSlot/Paper Source: PickOne +*OrderDependency: 40 AnySetup *InputSlot +*DefaultInputSlot: Auto +*InputSlot Auto/Automatic: " + <> setpagedevice" +*End +*da.InputSlot Auto/Automatisk: "" +*de.InputSlot Auto/Automatisch: "" +*es.InputSlot Auto/Automático: "" +*fi.InputSlot Auto/Automaattinen: "" +*fr.InputSlot Auto/Automatique: "" +*it.InputSlot Auto/Automatico: "" +*ja.InputSlot Auto/自動: "" +*ko.InputSlot Auto/자동: "" +*nl.InputSlot Auto/Automatisch: "" +*nb.InputSlot Auto/Automatisk: "" +*pt.InputSlot Auto/Automático: "" +*sv.InputSlot Auto/Automatiskt: "" +*zh_CN.InputSlot Auto/自动: "" +*zh_TW.InputSlot Auto/自動: "" + +*da.Translation InputSlot/Papirkilde: "" +*de.Translation InputSlot/Papierquelle: "" +*es.Translation InputSlot/Alimentación de papel: "" +*fi.Translation InputSlot/Paperilähde: "" +*fr.Translation InputSlot/Source du papier: "" +*it.Translation InputSlot/Alimentazione della carta: "" +*ja.Translation InputSlot/給紙元: "" +*ko.Translation InputSlot/용지함: "" +*nl.Translation InputSlot/Papierbron: "" +*nb.Translation InputSlot/Arkmating: "" +*pt.Translation InputSlot/Fonte de papel: "" +*sv.Translation InputSlot/Papperskälla: "" +*zh_CN.Translation InputSlot/纸张来源: "" +*zh_TW.Translation InputSlot/紙張來源: "" + +*InputSlot Tray1/Tray 1: " + <> setpagedevice" +*End +*da.InputSlot Tray1/Bakke 1: "" +*de.InputSlot Tray1/Zufuhrfach 1: "" +*es.InputSlot Tray1/Bandeja 1: "" +*fi.InputSlot Tray1/Lokero 1: "" +*fr.InputSlot Tray1/Bac 1: "" +*it.InputSlot Tray1/Cassetto 1: "" +*ja.InputSlot Tray1/トレイ 1: "" +*ko.InputSlot Tray1/용지함 1: "" +*nl.InputSlot Tray1/Lade 1: "" +*nb.InputSlot Tray1/Skuff 1: "" +*pt.InputSlot Tray1/Bandeja 1: "" +*sv.InputSlot Tray1/Fack 1: "" +*zh_CN.InputSlot Tray1/纸盒 1: "" +*zh_TW.InputSlot Tray1/1 號紙匣: "" + +*InputSlot Tray2/Tray 2: " + <> setpagedevice" +*End +*da.InputSlot Tray2/Bakke 2: "" +*de.InputSlot Tray2/Zufuhrfach 2: "" +*es.InputSlot Tray2/Bandeja 2: "" +*fi.InputSlot Tray2/Lokero 2: "" +*fr.InputSlot Tray2/Bac 2: "" +*it.InputSlot Tray2/Cassetto 2: "" +*ja.InputSlot Tray2/トレイ 2: "" +*ko.InputSlot Tray2/용지함 2: "" +*nl.InputSlot Tray2/Lade 2: "" +*nb.InputSlot Tray2/Skuff 2: "" +*pt.InputSlot Tray2/Bandeja 2: "" +*sv.InputSlot Tray2/Fack 2: "" +*zh_CN.InputSlot Tray2/纸盒 2: "" +*zh_TW.InputSlot Tray2/2 號紙匣: "" + +*InputSlot Tray3/Tray 3: " + <> setpagedevice" +*End +*da.InputSlot Tray3/Bakke 3: "" +*de.InputSlot Tray3/Zufuhrfach 3: "" +*es.InputSlot Tray3/Bandeja 3: "" +*fi.InputSlot Tray3/Lokero 3: "" +*fr.InputSlot Tray3/Bac 3: "" +*it.InputSlot Tray3/Cassetto 3: "" +*ja.InputSlot Tray3/トレイ 3: "" +*ko.InputSlot Tray3/용지함 3: "" +*nl.InputSlot Tray3/Lade 3: "" +*nb.InputSlot Tray3/Skuff 3: "" +*pt.InputSlot Tray3/Bandeja 3: "" +*sv.InputSlot Tray3/Fack 3: "" +*zh_CN.InputSlot Tray3/纸盒 3: "" +*zh_TW.InputSlot Tray3/3 號紙匣: "" + +*InputSlot Tray1_Man/Tray 1 (Manual): " + <> setpagedevice" +*End +*da.InputSlot Tray1_Man/Bakke 1 (Manuel): "" +*de.InputSlot Tray1_Man/Zufuhrfach 1 (Manuell): "" +*es.InputSlot Tray1_Man/Bandeja 1 (Manual): "" +*fi.InputSlot Tray1_Man/Lokero 1 (Käsinsyöttö): "" +*fr.InputSlot Tray1_Man/Bac 1 (Manuel): "" +*it.InputSlot Tray1_Man/Cassetto 1 (Manuale): "" +*ja.InputSlot Tray1_Man/トレイ 1 (手動): "" +*ko.InputSlot Tray1_Man/용지함 1(수동): "" +*nl.InputSlot Tray1_Man/Lade 1 (Handmatig): "" +*nb.InputSlot Tray1_Man/Skuff 1 (Manuell): "" +*pt.InputSlot Tray1_Man/Bandeja 1 (Manual): "" +*sv.InputSlot Tray1_Man/Fack 1 (Manuell): "" +*zh_CN.InputSlot Tray1_Man/纸盒 1(手动): "" +*zh_TW.InputSlot Tray1_Man/1 號紙匣 (手動): "" + + +*?InputSlot: " + +save + currentpagedevice /InputAttributes get + /Priority get + aload pop pop + /theTray exch def + /theTray 0 eq {(Tray2)} {/theTray 1 eq {(Tray3)} {(Tray1)} ifelse} ifelse + = flush +restore +" +*End +*CloseUI: *InputSlot + + +*HPManualFeedPrintsOnBottom: False +*HPManDupTumbleFirstSides: False +*HPGuidePageExtraTumble: " +userdict /hpManDupSettings known + { userdict /hpManDupSettings get dup + /manualFeedPrintsOnBottom known + {/manualFeedPrintsOnBottom get} + {pop true}ifelse + } {true} +ifelse +" +*End + + + + +*% ================================================ +*% ================================================ +*OpenGroup: HPFinishing/Finishing +*da.Translation HPFinishing/Finisher-indstillinger: "" +*de.Translation HPFinishing/Optionen zum Fertigstellen: "" +*es.Translation HPFinishing/Acabado: "" +*fi.Translation HPFinishing/Viimeistelyasetukset: "" +*fr.Translation HPFinishing/Finition: "" +*it.Translation HPFinishing/Finitura: "" +*ja.Translation HPFinishing/仕上げオプション: "" +*ko.Translation HPFinishing/마감장치 옵션: "" +*nl.Translation HPFinishing/Afwerkingsopties: "" +*nb.Translation HPFinishing/Etterbeh.alternativer: "" +*pt.Translation HPFinishing/Acabamento: "" +*sv.Translation HPFinishing/Efterbehandling: "" +*zh_CN.Translation HPFinishing/完成选项: "" +*zh_TW.Translation HPFinishing/外觀選項: "" +*% ================================================ +*% ================================================ + + + + + + + +*% =========================================================== + + + + + + + + + + +*% ================================================ +*% ================================================ + +*% ================================================ +*% ================================================ + + + + +*% These values are set of PageSize settings so we need find +*% the way to refer on to PageSize values + + + + +*%============================================= + + +*OpenUI *HPRotate180/Rotate Page 180 deg: Boolean +*OrderDependency: 48 AnySetup *HPRotate180 +*DefaultHPRotate180: False +*da.Translation HPRotate180/Roter 180 grader: "" +*de.Translation HPRotate180/Um 180 Grad drehen: "" +*es.Translation HPRotate180/Girar 180 grados: "" +*fi.Translation HPRotate180/Kierrä 180 astetta: "" +*fr.Translation HPRotate180/Faire pivoter de 180˚: "" +*it.Translation HPRotate180/Ruota di 180 gradi: "" +*ja.Translation HPRotate180/印刷の向きを 180°回転: "" +*ko.Translation HPRotate180/180도 회전된 방향: "" +*nl.Translation HPRotate180/Draaien met 180 graden: "" +*nb.Translation HPRotate180/Roter 180 grader: "" +*pt.Translation HPRotate180/Girar em 180 graus: "" +*sv.Translation HPRotate180/Rotera sedan 180 grader: "" +*zh_CN.Translation HPRotate180/方向旋转 180 度: "" +*zh_TW.Translation HPRotate180/旋轉 180 度: "" + +*HPRotate180 False/Off: "" +*da.HPRotate180 False/Fra: "" +*de.HPRotate180 False/Aus: "" +*es.HPRotate180 False/Desactivado: "" +*fi.HPRotate180 False/Ei käytössä: "" +*fr.HPRotate180 False/Désactivé: "" +*it.HPRotate180 False/Disattivata: "" +*ja.HPRotate180 False/オフ: "" +*ko.HPRotate180 False/꺼짐: "" +*nl.HPRotate180 False/Uit: "" +*nb.HPRotate180 False/Av: "" +*pt.HPRotate180 False/Desativado: "" +*sv.HPRotate180 False/Av: "" +*zh_CN.HPRotate180 False/关: "" +*zh_TW.HPRotate180 False/關閉: "" + +*HPRotate180 True/On: " +<< /BeginPage + { userdict begin + pop + currentpagedevice /PageSize get dup 0 get exch 1 get translate + 0 0 moveto + 180 rotate + end } bind +>> setpagedevice" +*End +*da.HPRotate180 True/På: "" +*de.HPRotate180 True/Ein: "" +*es.HPRotate180 True/Activado: "" +*fi.HPRotate180 True/käytössä: "" +*fr.HPRotate180 True/Activé: "" +*it.HPRotate180 True/Attiva: "" +*ja.HPRotate180 True/オン: "" +*ko.HPRotate180 True/켜짐: "" +*nl.HPRotate180 True/Aan: "" +*nb.HPRotate180 True/På: "" +*pt.HPRotate180 True/Ativado: "" +*sv.HPRotate180 True/På: "" +*zh_CN.HPRotate180 True/开: "" +*zh_TW.HPRotate180 True/開啟: "" + +*CloseUI: *HPRotate180 + +*OpenUI *HPStraightPaperPath/Use Straight Paper Path: Boolean +*DefaultHPStraightPaperPath: False +*da.Translation HPStraightPaperPath/Benyt lige papirgang: "" +*de.Translation HPStraightPaperPath/Geraden Papierpfad verwenden: "" +*es.Translation HPStraightPaperPath/Utilizar ruta de papel recta: "" +*fi.Translation HPStraightPaperPath/Käytä suoraa paperireittiä: "" +*fr.Translation HPStraightPaperPath/Insérer le papier droit: "" +*it.Translation HPStraightPaperPath/Usa percorso carta diretto: "" +*ja.Translation HPStraightPaperPath/直線用紙経路の使用: "" +*ko.Translation HPStraightPaperPath/곧은 용지 경로를 사용하십시오: "" +*nl.Translation HPStraightPaperPath/Recht papierpad gebruiken: "" +*nb.Translation HPStraightPaperPath/Bruk rett papirbane: "" +*pt.Translation HPStraightPaperPath/Usar caminho reto de papel: "" +*sv.Translation HPStraightPaperPath/Använd rak pappersbana: "" +*zh_CN.Translation HPStraightPaperPath/使用直线馈纸路径: "" +*zh_TW.Translation HPStraightPaperPath/使用直接出紙路徑: "" + +*HPStraightPaperPath True/On: "" +*da.HPStraightPaperPath True/På: "" +*de.HPStraightPaperPath True/Ein: "" +*es.HPStraightPaperPath True/Activado: "" +*fi.HPStraightPaperPath True/Käytössä: "" +*fr.HPStraightPaperPath True/Activé: "" +*it.HPStraightPaperPath True/Attiva: "" +*ja.HPStraightPaperPath True/オン: "" +*ko.HPStraightPaperPath True/켜짐: "" +*nl.HPStraightPaperPath True/Aan: "" +*nb.HPStraightPaperPath True/På: "" +*pt.HPStraightPaperPath True/Ativado: "" +*sv.HPStraightPaperPath True/På: "" +*zh_CN.HPStraightPaperPath True/开: "" +*zh_TW.HPStraightPaperPath True/開啟: "" + +*HPStraightPaperPath False/Off: "" +*da.HPStraightPaperPath False/Fra: "" +*de.HPStraightPaperPath False/Aus: "" +*es.HPStraightPaperPath False/Desactivado: "" +*fi.HPStraightPaperPath False/Ei käytössä: "" +*fr.HPStraightPaperPath False/Désactivé: "" +*it.HPStraightPaperPath False/Disattivata: "" +*ja.HPStraightPaperPath False/オフ: "" +*ko.HPStraightPaperPath False/꺼짐: "" +*nl.HPStraightPaperPath False/Uit: "" +*nb.HPStraightPaperPath False/Av: "" +*pt.HPStraightPaperPath False/Desativado: "" +*sv.HPStraightPaperPath False/Av: "" +*zh_CN.HPStraightPaperPath False/关: "" +*zh_TW.HPStraightPaperPath False/關閉: "" + +*CloseUI: *HPStraightPaperPath +*HPStraightPaperPathDS True: "HPSTRAIGHTPAPERPATH_DS" +*HPStraightPaperPathDS False: "HPSTRAIGHTPAPERPATH_DS" + + +*CloseGroup: HPFinishing +*%==================================== +*% Collation +*%==================================== +*OpenUI *Collate/Collate: Boolean +*OrderDependency: 12 AnySetup *Collate +*DefaultCollate: False +*da.Translation Collate/Sætvis: "" +*de.Translation Collate/Sortieren: "" +*es.Translation Collate/Clasificar: "" +*fi.Translation Collate/Lajittele: "" +*fr.Translation Collate/Assembler: "" +*it.Translation Collate/Fascicola: "" +*ja.Translation Collate/照合: "" +*ko.Translation Collate/한 부씩 인쇄: "" +*nl.Translation Collate/Sorteren: "" +*nb.Translation Collate/Sorter: "" +*pt.Translation Collate/Intercalar: "" +*sv.Translation Collate/Sortera: "" +*zh_CN.Translation Collate/分页: "" +*zh_TW.Translation Collate/自動分頁: "" + +*Collate True/On (turn off in application): " + <> setpagedevice +" +*End +*da.Collate True/Til (deaktiver i programmet): "" +*de.Collate True/Ein (in der Anwendung deaktivieren): "" +*es.Collate True/Activado (desactivar en la aplicación): "" +*fi.Collate True/Kyllä (poista valinta sovelluksesta): "" +*fr.Collate True/Activé (désactiver dans l’applic.): "" +*it.Collate True/Attivata (disattivare in applicazione): "" +*ja.Collate True/オン (アプリケーションではオフに): "" +*ko.Collate True/켬(응용 프로그램에서 마치기): "" +*nl.Collate True/Aan (uitzetten in toepassingsprogramma): "" +*nb.Collate True/På (slå av i programmet): "" +*pt.Collate True/Ligado (desligar no aplicativo): "" +*sv.Collate True/På (stäng av i programmet): "" +*zh_CN.Collate True/开 (在应用程序关闭): "" +*zh_TW.Collate True/開 (從應用程式關閉): "" + + +*Collate False/Off: " + <> setpagedevice +" +*End +*da.Collate False/Fra: "" +*de.Collate False/Aus: "" +*es.Collate False/Desactivado: "" +*fi.Collate False/Ei: "" +*fr.Collate False/Désactivé: "" +*it.Collate False/Disattivata: "" +*ja.Collate False/オフ: "" +*ko.Collate False/끔: "" +*nl.Collate False/Uit: "" +*nb.Collate False/Av: "" +*pt.Collate False/Desligado: "" +*sv.Collate False/Av: "" +*zh_CN.Collate False/关: "" +*zh_TW.Collate False/關: "" + +*?Collate: " + + save + currentpagedevice /Collate get + {(True)}{(False)}ifelse = flush + restore +" +*End +*CloseUI: *Collate + +*%================================================= +*% Duplex +*%================================================= +*OpenUI *Duplex/Duplex: PickOne +*OrderDependency: 50 AnySetup *Duplex +*DefaultDuplex: None +*da.Translation Duplex/Dupleks: "" +*de.Translation Duplex/Beidseitiger Druck: "" +*es.Translation Duplex/Dúplex: "" +*fi.Translation Duplex/Kaksipuolinen tulostus: "" +*fr.Translation Duplex/Impression des deux côtés: "" +*it.Translation Duplex/Duplex: "" +*ja.Translation Duplex/両面印刷: "" +*ko.Translation Duplex/양면인쇄: "" +*nl.Translation Duplex/Duplex: "" +*nb.Translation Duplex/Tosidig: "" +*pt.Translation Duplex/Dúplex: "" +*sv.Translation Duplex/Dubbelsidig: "" +*zh_CN.Translation Duplex/双面打印: "" +*zh_TW.Translation Duplex/雙面列印: "" + +*Duplex None/Off (1-Sided): " + <> setpagedevice" +*End +*da.Duplex None/Fra (1-sidet): "" +*de.Duplex None/Aus (einseitig): "" +*es.Duplex None/Des (por un solo lado): "" +*fi.Duplex None/Ei käytössä: "" +*fr.Duplex None/Désactivé: "" +*it.Duplex None/Disattivato (facciata singola): "" +*ja.Duplex None/オフ (片面印刷): "" +*ko.Duplex None/끔 (한 면): "" +*nl.Duplex None/Uit (enkelzijdig): "" +*nb.Duplex None/Av (1-sidig): "" +*pt.Duplex None/Desligado (face única): "" +*sv.Duplex None/Av (enkelsidig): "" +*zh_CN.Duplex None/关 (1面): "" +*zh_TW.Duplex None/關( 單面): "" + +*Duplex DuplexNoTumble/Flip on Long Edge (Standard): " + <> setpagedevice" +*End +*da.Duplex DuplexNoTumble/Vend på langs: "" +*de.Duplex DuplexNoTumble/Lange Kante spiegeln (Standard): "" +*es.Duplex DuplexNoTumble/Dar vuelta - borde largo (estándar): "" +*fi.Duplex DuplexNoTumble/Pitkän reunan sidonta: "" +*fr.Duplex DuplexNoTumble/Reliure sur bord long: "" +*it.Duplex DuplexNoTumble/Ruota sul lato lungo (Standard): "" +*ja.Duplex DuplexNoTumble/長辺綴じ (標準): "" +*ko.Duplex DuplexNoTumble/긴 가장자리로 뒤집기(표준): "" +*nl.Duplex DuplexNoTumble/Over lange zijde spiegelen (standaard): "" +*nb.Duplex DuplexNoTumble/Vend på langsiden (standard): "" +*pt.Duplex DuplexNoTumble/Inversão na margem longa (padrão): "" +*sv.Duplex DuplexNoTumble/Vänd längs långsidan (standard): "" +*zh_CN.Duplex DuplexNoTumble/长边翻转(标准): "" +*zh_TW.Duplex DuplexNoTumble/在長邊緣倒轉( 標準): "" + +*Duplex DuplexTumble/Flip on Short Edge: " + <> setpagedevice" +*End +*da.Duplex DuplexTumble/Vend på tværs: "" +*de.Duplex DuplexTumble/Kurze Kante spiegeln: "" +*es.Duplex DuplexTumble/Dar vuelta - borde corto: "" +*fi.Duplex DuplexTumble/Lyhyen reunan sidonta: "" +*fr.Duplex DuplexTumble/Reliure sur bord court: "" +*it.Duplex DuplexTumble/Ruota sul lato corto: "" +*ja.Duplex DuplexTumble/短辺綴じ: "" +*ko.Duplex DuplexTumble/짧은 가장자리로 뒤집기: "" +*nl.Duplex DuplexTumble/Over korte zijde spiegelen: "" +*nb.Duplex DuplexTumble/Vend på kortsiden: "" +*pt.Duplex DuplexTumble/Inversão na margem curta: "" +*sv.Duplex DuplexTumble/Vänd längs kortsidan: "" +*zh_CN.Duplex DuplexTumble/短边翻转: "" +*zh_TW.Duplex DuplexTumble/在短邊緣倒轉: "" + +*?Duplex: " + save + currentpagedevice /Duplex known + false ne + { currentpagedevice /Duplex get + { currentpagedevice /Tumble get + {(DuplexTumble)}{(DuplexNoTumble)}ifelse + } { (None)} ifelse + }{(None)} ifelse = flush + restore +" +*End +*CloseUI: *Duplex + +*%================================================= +*% Color Control +*%================================================= +*DefaultColorSep: ProcessBlack.212lpi.1200dpi/212 lpi / 1200 dpi +*InkName: ProcessBlack/Process Black +*InkName: CustomColor/Custom Color +*InkName: ProcessCyan/Process Cyan +*InkName: ProcessMagenta/Process Magenta +*InkName: ProcessYellow/Process Yellow + +*% For 60 lpi / 300 dpi ========================= +*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45" + +*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45" + +*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15" + +*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75" + +*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0" + + +*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60" + +*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60" + +*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60" + +*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60" + +*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60" + + +*% For 85 lpi / 600 dpi (5,5,2,6,6,2,20/3,0) ==== +*ColorSepScreenAngle ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "45.0" + +*ColorSepScreenAngle CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "45.0" + +*ColorSepScreenAngle ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "71.5651" + +*ColorSepScreenAngle ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "18.4349" + +*ColorSepScreenAngle ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "0.0" + + +*ColorSepScreenFreq ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "84.8528" + +*ColorSepScreenFreq CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "84.8528" + +*ColorSepScreenFreq ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "94.8683" + +*ColorSepScreenFreq ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "94.8683" + +*ColorSepScreenFreq ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "30.0" + +*ColorSepScreenProc ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: " +{1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch +1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch +abs exch abs 2 copy add 1 gt {1 sub dup mul exch 1 sub dup mul add 1 +sub }{dup mul exch dup mul add 1 exch sub }ifelse }" +*End + + +*% For 106 lpi / 300 dpi ========================= +*ColorSepScreenAngle ProcessBlack.106lpi.300dpi/106 lpi / 300 dpi: "45.0" + +*ColorSepScreenAngle CustomColor.106lpi.300dpi/106 lpi / 300 dpi: "45.0" + +*ColorSepScreenAngle ProcessCyan.106lpi.300dpi/106 lpi / 300 dpi: "71.5651" + +*ColorSepScreenAngle ProcessMagenta.106lpi.300dpi/106 lpi / 300 dpi: "18.4349" + +*ColorSepScreenAngle ProcessYellow.106lpi.300dpi/106 lpi / 300 dpi: "0.0" + + +*ColorSepScreenFreq ProcessBlack.106lpi.300dpi/106 lpi / 300 dpi: "106.066" + +*ColorSepScreenFreq CustomColor.106lpi.300dpi/106 lpi / 300 dpi: "106.066" + +*ColorSepScreenFreq ProcessCyan.106lpi.300dpi/106 lpi / 300 dpi: "94.8683" + +*ColorSepScreenFreq ProcessMagenta.106lpi.300dpi/106 lpi / 300 dpi: "94.8683" + +*ColorSepScreenFreq ProcessYellow.106lpi.300dpi/106 lpi / 300 dpi: "100.0" + + +*% For 106 lpi / 600 dpi ========================= +*ColorSepScreenAngle ProcessBlack.106lpi.600dpi/106 lpi / 600 dpi: "45.0" + +*ColorSepScreenAngle CustomColor.106lpi.600dpi/106 lpi / 600 dpi: "45.0" + +*ColorSepScreenAngle ProcessCyan.106lpi.600dpi/106 lpi / 600 dpi: "71.5651" + +*ColorSepScreenAngle ProcessMagenta.106lpi.600dpi/106 lpi / 600 dpi: "18.4349" + +*ColorSepScreenAngle ProcessYellow.106lpi.600dpi/106 lpi / 600 dpi: "0.0" + + +*ColorSepScreenFreq ProcessBlack.106lpi.600dpi/106 lpi / 600 dpi: "106.066" + +*ColorSepScreenFreq CustomColor.106lpi.600dpi/106 lpi / 600 dpi: "106.066" + +*ColorSepScreenFreq ProcessCyan.106lpi.600dpi/106 lpi / 600 dpi: "94.8683" + +*ColorSepScreenFreq ProcessMagenta.106lpi.600dpi/106 lpi / 600 dpi: "94.8683" + +*ColorSepScreenFreq ProcessYellow.106lpi.600dpi/106 lpi / 600 dpi: "100.0" + + +*% For 212 lpi / 1200 dpi ========================= +*ColorSepScreenAngle ProcessBlack.212lpi.1200dpi/212 lpi / 1200 dpi: "45.0" + +*ColorSepScreenAngle CustomColor.212lpi.1200dpi/212 lpi / 1200 dpi: "45.0" + +*ColorSepScreenAngle ProcessCyan.212lpi.1200dpi/212 lpi / 1200 dpi: "71.5651" + +*ColorSepScreenAngle ProcessMagenta.212lpi.1200dpi/212 lpi / 1200 dpi: "18.4349" + +*ColorSepScreenAngle ProcessYellow.212lpi.1200dpi/212 lpi / 1200 dpi: "0.0" + + +*ColorSepScreenFreq ProcessBlack.212lpi.1200dpi/212 lpi / 1200 dpi: "212" + +*ColorSepScreenFreq CustomColor.212lpi.1200dpi/212 lpi / 1200 dpi: "212" + +*ColorSepScreenFreq ProcessCyan.212lpi.1200dpi/212 lpi / 1200 dpi: "190" + +*ColorSepScreenFreq ProcessMagenta.212lpi.1200dpi/212 lpi / 1200 dpi: "190" + +*ColorSepScreenFreq ProcessYellow.212lpi.1200dpi/212 lpi / 1200 dpi: "200" + + +*%================================================= +*% Font Information +*%================================================= +*DefaultFont: Courier +*Font AlbertusMT-Italic: Standard "(001.000)" Standard ROM +*Font AlbertusMT-Light: Standard "(001.000)" Standard ROM +*Font AlbertusMT: Standard "(001.000)" Standard ROM +*Font AntiqueOlive-Bold: Standard "(501.009)" ExtendedRoman ROM +*Font AntiqueOlive-Compact: Standard "(501.008)" ExtendedRoman ROM +*Font AntiqueOlive-Italic: Standard "(501.010)" ExtendedRoman ROM +*Font AntiqueOlive-Roman: Standard "(501.008)" ExtendedRoman ROM +*Font AntiqueOliveCE-Bold: Win1250 "(501.009)" ExtendedRoman ROM +*Font AntiqueOliveCE-Compact: Win1250 "(501.008)" ExtendedRoman ROM +*Font AntiqueOliveCE-Italic: Win1250 "(501.010)" ExtendedRoman ROM +*Font AntiqueOliveCE-Roman: Win1250 "(501.008)" ExtendedRoman ROM +*Font Apple-Chancery: Standard "(001.001)" ExtendedRoman ROM +*Font Apple-ChanceryCE: Win1250 "(001.001)" ExtendedRoman ROM +*Font Arial-BoldItalicMT: Standard "(501.009)" ExtendedRoman ROM +*Font Arial-BoldMT: Standard "(501.009)" ExtendedRoman ROM +*Font Arial-ItalicMT: Standard "(501.012)" ExtendedRoman ROM +*Font ArialCE-Bold: Win1250 "(501.009)" ExtendedRoman ROM +*Font ArialCE-BoldItalic: Win1250 "(501.009)" ExtendedRoman ROM +*Font ArialCE-Italic: Win1250 "(501.012)" ExtendedRoman ROM +*Font ArialCE: Win1250 "(501.009)" ExtendedRoman ROM +*Font ArialMT: Standard "(501.009)" ExtendedRoman ROM +*Font AvantGarde-Book: Standard "(501.009)" ExtendedRoman ROM +*Font AvantGarde-BookOblique: Standard "(501.009)" ExtendedRoman ROM +*Font AvantGarde-Demi: Standard "(501.010)" ExtendedRoman ROM +*Font AvantGarde-DemiOblique: Standard "(501.010)" ExtendedRoman ROM +*Font AvantGardeCE-Book: Win1250 "(501.009)" ExtendedRoman ROM +*Font AvantGardeCE-BookOblique: Win1250 "(501.009)" ExtendedRoman ROM +*Font AvantGardeCE-Demi: Win1250 "(501.010)" ExtendedRoman ROM +*Font AvantGardeCE-DemiOblique: Win1250 "(501.010)" ExtendedRoman ROM +*Font Bodoni-Bold: Standard "(501.006)" ExtendedRoman ROM +*Font Bodoni-BoldItalic: Standard "(501.007)" ExtendedRoman ROM +*Font Bodoni-Italic: Standard "(501.007)" ExtendedRoman ROM +*Font Bodoni-Poster: Standard "(501.009)" ExtendedRoman ROM +*Font Bodoni-PosterCompressed: Standard "(501.007)" ExtendedRoman ROM +*Font Bodoni: Standard "(501.008)" ExtendedRoman ROM +*Font BodoniCE-Bold: Win1250 "(501.006)" ExtendedRoman ROM +*Font BodoniCE-BoldItalic: Win1250 "(501.007)" ExtendedRoman ROM +*Font BodoniCE-Italic: Win1250 "(501.007)" ExtendedRoman ROM +*Font BodoniCE-Poster: Win1250 "(501.009)" ExtendedRoman ROM +*Font BodoniCE-PosterCompressed: Win1250 "(501.007)" ExtendedRoman ROM +*Font BodoniCE: Win1250 "(501.008)" ExtendedRoman ROM +*Font Bookman-Demi: Standard "(501.007)" ExtendedRoman ROM +*Font Bookman-DemiItalic: Standard "(501.008)" ExtendedRoman ROM +*Font Bookman-Light: Standard "(501.006)" ExtendedRoman ROM +*Font Bookman-LightItalic: Standard "(501.007)" ExtendedRoman ROM +*Font BookmanCE-Demi: Win1250 "(501.007)" ExtendedRoman ROM +*Font BookmanCE-DemiItalic: Win1250 "(501.008)" ExtendedRoman ROM +*Font BookmanCE-Light: Win1250 "(501.006)" ExtendedRoman ROM +*Font BookmanCE-LightItalic: Win1250 "(501.007)" ExtendedRoman ROM +*Font Carta: Special "(001.001)" Special ROM +*Font Chicago: Standard "(501.011)" ExtendedRoman ROM +*Font ChicagoCE: Win1250 "(501.011)" ExtendedRoman ROM +*Font Clarendon-Bold: Standard "(501.008)" ExtendedRoman ROM +*Font Clarendon-Light: Standard "(501.009)" ExtendedRoman ROM +*Font Clarendon: Standard "(501.009)" ExtendedRoman ROM +*Font ClarendonCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM +*Font ClarendonCE-Light: Win1250 "(501.009)" ExtendedRoman ROM +*Font ClarendonCE: Win1250 "(501.009)" ExtendedRoman ROM +*Font CooperBlack-Italic: Standard "(001.003)" Standard ROM +*Font CooperBlack: Standard "(001.003)" Standard ROM +*Font Copperplate-ThirtyThreeBC: Standard "(001.002)" Standard ROM +*Font Copperplate-ThirtyTwoBC: Standard "(001.002)" Standard ROM +*Font Coronet-Regular: Standard "(001.000)" ExtendedRoman ROM +*Font CoronetCE-Regular: Win1250 "(001.000)" ExtendedRoman ROM +*Font Courier-Bold: Standard "(501.010)" ExtendedRoman ROM +*Font Courier-BoldOblique: Standard "(501.010)" ExtendedRoman ROM +*Font Courier-Oblique: Standard "(501.010)" ExtendedRoman ROM +*Font Courier: Standard "(501.010)" ExtendedRoman ROM +*Font CourierCE-Bold: Win1250 "(501.010)" ExtendedRoman ROM +*Font CourierCE-BoldOblique: Win1250 "(501.010)" ExtendedRoman ROM +*Font CourierCE-Oblique: Win1250 "(501.010)" ExtendedRoman ROM +*Font CourierCE: Win1250 "(501.010)" ExtendedRoman ROM +*Font Eurostile-Bold: Standard "(501.008)" ExtendedRoman ROM +*Font Eurostile-BoldExtendedTwo: Standard "(501.008)" ExtendedRoman ROM +*Font Eurostile-ExtendedTwo: Standard "(501.010)" ExtendedRoman ROM +*Font Eurostile: Standard "(501.008)" ExtendedRoman ROM +*Font EurostileCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM +*Font EurostileCE-BoldExtendedTwo: Win1250 "(501.008)" ExtendedRoman ROM +*Font EurostileCE-ExtendedTwo: Win1250 "(501.010)" ExtendedRoman ROM +*Font EurostileCE: Win1250 "(501.008)" ExtendedRoman ROM +*Font Geneva: Standard "(501.007)" ExtendedRoman ROM +*Font GenevaCE: Win1250 "(501.007)" ExtendedRoman ROM +*Font GillSans-Bold: Standard "(501.007)" ExtendedRoman ROM +*Font GillSans-BoldCondensed: Standard "(501.006)" ExtendedRoman ROM +*Font GillSans-BoldItalic: Standard "(501.008)" ExtendedRoman ROM +*Font GillSans-Condensed: Standard "(501.007)" ExtendedRoman ROM +*Font GillSans-ExtraBold: Standard "(501.008)" ExtendedRoman ROM +*Font GillSans-Italic: Standard "(501.008)" ExtendedRoman ROM +*Font GillSans-Light: Standard "(501.009)" ExtendedRoman ROM +*Font GillSans-LightItalic: Standard "(501.009)" ExtendedRoman ROM +*Font GillSans: Standard "(501.009)" ExtendedRoman ROM +*Font GillSansCE-Bold: Win1250 "(501.007)" ExtendedRoman ROM +*Font GillSansCE-BoldCondensed: Win1250 "(501.006)" ExtendedRoman ROM +*Font GillSansCE-BoldItalic: Win1250 "(501.008)" ExtendedRoman ROM +*Font GillSansCE-Condensed: Win1250 "(501.007)" ExtendedRoman ROM +*Font GillSansCE-ExtraBold: Win1250 "(501.008)" ExtendedRoman ROM +*Font GillSansCE-Italic: Win1250 "(501.008)" ExtendedRoman ROM +*Font GillSansCE-Light: Win1250 "(501.009)" ExtendedRoman ROM +*Font GillSansCE-LightItalic: Win1250 "(501.009)" ExtendedRoman ROM +*Font GillSansCE-Roman: Win1250 "(501.009)" ExtendedRoman ROM +*Font Goudy-Bold: Standard "(001.002)" Standard ROM +*Font Goudy-BoldItalic: Standard "(001.002)" Standard ROM +*Font Goudy-ExtraBold: Standard "(001.001)" Standard ROM +*Font Goudy-Italic: Standard "(001.002)" Standard ROM +*Font Goudy: Standard "(001.003)" Standard ROM +*Font Helvetica-Bold: Standard "(501.010)" ExtendedRoman ROM +*Font Helvetica-BoldOblique: Standard "(501.010)" ExtendedRoman ROM +*Font Helvetica-Condensed-Bold: Standard "(501.009)" ExtendedRoman ROM +*Font Helvetica-Condensed-BoldObl: Standard "(501.009)" ExtendedRoman ROM +*Font Helvetica-Condensed-Oblique: Standard "(501.010)" ExtendedRoman ROM +*Font Helvetica-Condensed: Standard "(501.010)" ExtendedRoman ROM +*Font Helvetica-Narrow-Bold: Standard "(501.010)" ExtendedRoman ROM +*Font Helvetica-Narrow-BoldOblique: Standard "(501.010)" ExtendedRoman ROM +*Font Helvetica-Narrow-Oblique: Standard "(501.008)" ExtendedRoman ROM +*Font Helvetica-Narrow: Standard "(501.008)" ExtendedRoman ROM +*Font Helvetica-Oblique: Standard "(501.008)" ExtendedRoman ROM +*Font Helvetica: Standard "(501.008)" ExtendedRoman ROM +*Font HelveticaCE-Bold: Win1250 "(501.010)" ExtendedRoman ROM +*Font HelveticaCE-BoldOblique: Win1250 "(501.010)" ExtendedRoman ROM +*Font HelveticaCE-Cond: Win1250 "(501.010)" ExtendedRoman ROM +*Font HelveticaCE-CondBold: Win1250 "(501.009)" ExtendedRoman ROM +*Font HelveticaCE-CondBoldObl: Win1250 "(501.009)" ExtendedRoman ROM +*Font HelveticaCE-CondObl: Win1250 "(501.010)" ExtendedRoman ROM +*Font HelveticaCE-Narrow: Win1250 "(501.008)" ExtendedRoman ROM +*Font HelveticaCE-NarrowBold: Win1250 "(501.010)" ExtendedRoman ROM +*Font HelveticaCE-NarrowBoldOblique: Win1250 "(501.010)" ExtendedRoman ROM +*Font HelveticaCE-NarrowOblique: Win1250 "(501.008)" ExtendedRoman ROM +*Font HelveticaCE-Oblique: Win1250 "(501.008)" ExtendedRoman ROM +*Font HelveticaCE: Win1250 "(501.008)" ExtendedRoman ROM +*Font HoeflerText-Black: Standard "(501.008)" ExtendedRoman ROM +*Font HoeflerText-BlackItalic: Standard "(501.009)" ExtendedRoman ROM +*Font HoeflerText-Italic: Standard "(501.010)" ExtendedRoman ROM +*Font HoeflerText-Ornaments: Special "(001.001)" Special ROM +*Font HoeflerText-Regular: Standard "(501.009)" ExtendedRoman ROM +*Font HoeflerTextCE-Black: Win1250 "(501.008)" ExtendedRoman ROM +*Font HoeflerTextCE-BlackItalic: Win1250 "(501.009)" ExtendedRoman ROM +*Font HoeflerTextCE-Italic: Win1250 "(501.010)" ExtendedRoman ROM +*Font HoeflerTextCE-Regular: Win1250 "(501.009)" ExtendedRoman ROM +*Font JoannaMT-Bold: Standard "(501.008)" ExtendedRoman ROM +*Font JoannaMT-BoldItalic: Standard "(501.008)" ExtendedRoman ROM +*Font JoannaMT-Italic: Standard "(501.008)" ExtendedRoman ROM +*Font JoannaMT: Standard "(501.009)" ExtendedRoman ROM +*Font JoannaMTCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM +*Font JoannaMTCE-BoldItalic: Win1250 "(501.008)" ExtendedRoman ROM +*Font JoannaMTCE-Italic: Win1250 "(501.008)" ExtendedRoman ROM +*Font JoannaMTCE: Win1250 "(501.009)" ExtendedRoman ROM +*Font LetterGothic-Bold: Standard "(501.010)" ExtendedRoman ROM +*Font LetterGothic-BoldSlanted: Standard "(501.010)" ExtendedRoman ROM +*Font LetterGothic-Slanted: Standard "(501.010)" ExtendedRoman ROM +*Font LetterGothic: Standard "(501.009)" ExtendedRoman ROM +*Font LetterGothicCE-Bold: Win1250 "(501.010)" ExtendedRoman ROM +*Font LetterGothicCE-BoldSlanted: Win1250 "(501.010)" ExtendedRoman ROM +*Font LetterGothicCE-Slanted: Win1250 "(501.010)" ExtendedRoman ROM +*Font LetterGothicCE: Win1250 "(501.009)" ExtendedRoman ROM +*Font LubalinGraph-Book: Standard "(501.009)" ExtendedRoman ROM +*Font LubalinGraph-BookOblique: Standard "(501.009)" ExtendedRoman ROM +*Font LubalinGraph-Demi: Standard "(501.009)" ExtendedRoman ROM +*Font LubalinGraph-DemiOblique: Standard "(501.009)" ExtendedRoman ROM +*Font LubalinGraphCE-Book: Win1250 "(501.009)" ExtendedRoman ROM +*Font LubalinGraphCE-BookOblique: Win1250 "(501.009)" ExtendedRoman ROM +*Font LubalinGraphCE-Demi: Win1250 "(501.009)" ExtendedRoman ROM +*Font LubalinGraphCE-DemiOblique: Win1250 "(501.009)" ExtendedRoman ROM +*Font Marigold: Standard "(001.000)" Standard ROM +*Font MonaLisa-Recut: Standard "(001.000)" Standard ROM +*Font Monaco: Standard "(501.012)" ExtendedRoman ROM +*Font MonacoCE: Win1250 "(501.012)" ExtendedRoman ROM +*Font NewCenturySchlbk-Bold: Standard "(501.008)" ExtendedRoman ROM +*Font NewCenturySchlbk-BoldItalic: Standard "(501.009)" ExtendedRoman ROM +*Font NewCenturySchlbk-Italic: Standard "(501.011)" ExtendedRoman ROM +*Font NewCenturySchlbk-Roman: Standard "(501.008)" ExtendedRoman ROM +*Font NewCenturySchlbkCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM +*Font NewCenturySchlbkCE-BoldItalic: Win1250 "(501.009)" ExtendedRoman ROM +*Font NewCenturySchlbkCE-Italic: Win1250 "(501.011)" ExtendedRoman ROM +*Font NewCenturySchlbkCE-Roman: Win1250 "(501.008)" ExtendedRoman ROM +*Font NewYork: Standard "(501.013)" ExtendedRoman ROM +*Font NewYorkCE: Win1250 "(501.013)" ExtendedRoman ROM +*Font Optima-Bold: Standard "(501.008)" ExtendedRoman ROM +*Font Optima-BoldItalic: Standard "(501.009)" ExtendedRoman ROM +*Font Optima-Italic: Standard "(501.010)" ExtendedRoman ROM +*Font Optima: Standard "(501.010)" ExtendedRoman ROM +*Font OptimaCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM +*Font OptimaCE-BoldItalic: Win1250 "(501.009)" ExtendedRoman ROM +*Font OptimaCE-Italic: Win1250 "(501.010)" ExtendedRoman ROM +*Font OptimaCE-Roman: Win1250 "(501.010)" ExtendedRoman ROM +*Font Oxford: Standard "(001.000)" Standard ROM +*Font Palatino-Bold: Standard "(501.008)" ExtendedRoman ROM +*Font Palatino-BoldItalic: Standard "(501.007)" ExtendedRoman ROM +*Font Palatino-Italic: Standard "(501.008)" ExtendedRoman ROM +*Font Palatino-Roman: Standard "(501.006)" ExtendedRoman ROM +*Font PalatinoCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM +*Font PalatinoCE-BoldItalic: Win1250 "(501.007)" ExtendedRoman ROM +*Font PalatinoCE-Italic: Win1250 "(501.008)" ExtendedRoman ROM +*Font PalatinoCE-Roman: Win1250 "(501.006)" ExtendedRoman ROM +*Font StempelGaramond-Bold: Standard "(501.007)" ExtendedRoman ROM +*Font StempelGaramond-BoldItalic: Standard "(501.012)" ExtendedRoman ROM +*Font StempelGaramond-Italic: Standard "(501.009)" ExtendedRoman ROM +*Font StempelGaramond-Roman: Standard "(501.011)" ExtendedRoman ROM +*Font StempelGaramondCE-Bold: Win1250 "(501.007)" ExtendedRoman ROM +*Font StempelGaramondCE-BoldItalic: Win1250 "(501.012)" ExtendedRoman ROM +*Font StempelGaramondCE-Italic: Win1250 "(501.009)" ExtendedRoman ROM +*Font StempelGaramondCE-Roman: Win1250 "(501.011)" ExtendedRoman ROM +*Font Symbol: Special "(001.008)" Special ROM +*Font Tekton: Standard "(001.001)" Standard ROM +*Font Times-Bold: Standard "(501.009)" ExtendedRoman ROM +*Font Times-BoldItalic: Standard "(501.009)" ExtendedRoman ROM +*Font Times-Italic: Standard "(501.010)" ExtendedRoman ROM +*Font Times-Roman: Standard "(501.010)" ExtendedRoman ROM +*Font TimesCE-Bold: Win1250 "(501.009)" ExtendedRoman ROM +*Font TimesCE-BoldItalic: Win1250 "(501.009)" ExtendedRoman ROM +*Font TimesCE-Italic: Win1250 "(501.010)" ExtendedRoman ROM +*Font TimesCE-Roman: Win1250 "(501.010)" ExtendedRoman ROM +*Font TimesNewRomanCE-Bold: Win1250 "(501.009)" ExtendedRoman ROM +*Font TimesNewRomanCE-BoldItalic: Win1250 "(501.011)" ExtendedRoman ROM +*Font TimesNewRomanCE-Italic: Win1250 "(501.011)" ExtendedRoman ROM +*Font TimesNewRomanCE: Win1250 "(501.010)" ExtendedRoman ROM +*Font TimesNewRomanPS-BoldItalicMT: Standard "(501.011)" ExtendedRoman ROM +*Font TimesNewRomanPS-BoldMT: Standard "(501.009)" ExtendedRoman ROM +*Font TimesNewRomanPS-ItalicMT: Standard "(501.011)" ExtendedRoman ROM +*Font TimesNewRomanPSMT: Standard "(501.010)" ExtendedRoman ROM +*Font Univers-Bold: Standard "(501.008)" ExtendedRoman ROM +*Font Univers-BoldExt: Standard "(501.010)" ExtendedRoman ROM +*Font Univers-BoldExtObl: Standard "(501.010)" ExtendedRoman ROM +*Font Univers-BoldOblique: Standard "(501.008)" ExtendedRoman ROM +*Font Univers-Condensed: Standard "(501.011)" ExtendedRoman ROM +*Font Univers-CondensedBold: Standard "(501.009)" ExtendedRoman ROM +*Font Univers-CondensedBoldOblique: Standard "(501.009)" ExtendedRoman ROM +*Font Univers-CondensedOblique: Standard "(501.011)" ExtendedRoman ROM +*Font Univers-Extended: Standard "(501.009)" ExtendedRoman ROM +*Font Univers-ExtendedObl: Standard "(501.009)" ExtendedRoman ROM +*Font Univers-Light: Standard "(501.009)" ExtendedRoman ROM +*Font Univers-LightOblique: Standard "(501.009)" ExtendedRoman ROM +*Font Univers-Oblique: Standard "(501.009)" ExtendedRoman ROM +*Font Univers: Standard "(501.009)" ExtendedRoman ROM +*Font UniversCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM +*Font UniversCE-BoldExt: Win1250 "(501.010)" ExtendedRoman ROM +*Font UniversCE-BoldExtObl: Win1250 "(501.010)" ExtendedRoman ROM +*Font UniversCE-BoldOblique: Win1250 "(501.008)" ExtendedRoman ROM +*Font UniversCE-Condensed: Win1250 "(501.011)" ExtendedRoman ROM +*Font UniversCE-CondensedBold: Win1250 "(501.009)" ExtendedRoman ROM +*Font UniversCE-CondensedBoldOblique: Win1250 "(501.009)" ExtendedRoman ROM +*Font UniversCE-CondensedOblique: Win1250 "(501.011)" ExtendedRoman ROM +*Font UniversCE-Extended: Win1250 "(501.009)" ExtendedRoman ROM +*Font UniversCE-ExtendedObl: Win1250 "(501.009)" ExtendedRoman ROM +*Font UniversCE-Light: Win1250 "(501.009)" ExtendedRoman ROM +*Font UniversCE-LightOblique: Win1250 "(501.009)" ExtendedRoman ROM +*Font UniversCE-Medium: Win1250 "(501.009)" ExtendedRoman ROM +*Font UniversCE-Oblique: Win1250 "(501.009)" ExtendedRoman ROM +*Font Wingdings-Regular: Special "(001.001)" Special ROM +*Font ZapfChancery-MediumItalic: Standard "(002.000)" ExtendedRoman ROM +*Font ZapfChanceryCE-MediumItalic: Win1250 "(002.000)" ExtendedRoman ROM +*Font ZapfDingbats: Special "(001.005S)" Special ROM +*?FontQuery: " + save + { count 1 gt + { exch dup 127 string cvs (/) print print (:) print + /Font resourcestatus {pop pop (Yes)} {(No)} ifelse = + } { exit } ifelse + } bind loop + (*) = flush + restore +" +*End + +*?FontList: " + save + (*) {cvn ==} 128 string /Font resourceforall + (*) = flush + restore +" +*End + +*%================================================= +*% Printer Messages (verbatim from printer): +*%================================================= +*Message: "%%[ exitserver: permanent state may be changed ]%%" +*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%" +*Message: "\FontName\ not found, using Courier" + +*% Status (format: %%[ status: ] %%) +*Status: "warming up"/warming up +*Status: "idle"/idle +*Status: "busy"/busy +*Status: "waiting"/waiting +*Status: "printing"/printing +*Status: "initializing"/initializing +*Status: "printing test page"/printing test page +*Status: "PrinterError: cover open or no toner cartridge"/cover open or no toner cartridge +*Status: "PrinterError: cover open"/cover open +*Status: "PrinterError: needs attention"/needs attention +*Status: "PrinterError: no toner cartridge"/no toner cartridge +*Status: "PrinterError: warming up"/warming up +*Status: "PrinterError: manual feed"/manual feed +*Status: "PrinterError: out of paper"/out of paper +*Status: "PrinterError: Paper Jam"/Paper Jam +*Status: "PrinterError: paper jam"/paper jam +*Status: "PrinterError: page protect needed"/page protect needed +*Status: "PrinterError: out of memory"/out of memory +*Status: "PrinterError: output bin full"/output bin full +*Status: "PrinterError: resetting printer"/resetting printer +*Status: "PrinterError: toner is low"/toner is low +*Status: "PrinterError: off line"/off line + +*% Printer Error (format: %%[ PrinterError: ]%%) +*PrinterError: "cover open or no toner cartridge"/cover open or no toner cartridge +*PrinterError: "cover open"/cover open +*PrinterError: "needs attention"/needs attention +*PrinterError: "no toner cartridge"/no toner cartridge +*PrinterError: "warming up"/warming up +*PrinterError: "manual feed"/manual feed +*PrinterError: "out of paper"/out of paper +*PrinterError: "Paper Jam"/Paper Jam +*PrinterError: "paper jam"/paper jam +*PrinterError: "page protect needed"/page protect needed +*PrinterError: "out of memory"/out of memory +*PrinterError: "output bin full"/output bin full +*PrinterError: "resetting printer"/resetting printer +*PrinterError: "toner is low"/toner is low +*PrinterError: "off line"/off line + +*% Input Sources (format: %%[ status: ; source: ]%% ) +*Source: "BiTronics"/BiTronics +*Source: "other I/O"/other I/O +*Source: "AppleTalk"/AppleTalk +*Source: "APPLETALK"/AppleTalk +*Source: "ATALK"/AppleTalk +*Source: "LocalTalk"/LocalTalk +*Source: "Parallel"/Parallel +*Source: "EtherTalk"/EtherTalk +*Source: "NOVELL"/NOVELL +*Source: "DLC/LLC"/DLC/LLC +*Source: "ETALK"/EtherTalk +*Source: "TCP/IP"/TCP/IP + +*Password: "()" +*ExitServer: " + count 0 eq + { false } { true exch startjob } ifelse + not { + (WARNING: Cannot modify initial VM.) = + (Missing or invalid password.) = + (Please contact the author of this software.) = flush quit + } if +" +*End +*Reset: " + count 0 eq { false } { true exch startjob } ifelse + not { + (WARNING: Cannot reset printer.) = + (Missing or invalid password.) = + (Please contact the author of this software.) = flush quit + } if + systemdict /quit get exec + (WARNING : Printer Reset Failed.) = flush +" +*End + +*% ======================================= +*% For "HP LaserJet P2015 Series" +*% ======================================= diff --git a/configfiles/etc/cups/ppd/Salle225.ppd b/configfiles/etc/cups/ppd/Salle225.ppd new file mode 100644 index 0000000..5b3f775 --- /dev/null +++ b/configfiles/etc/cups/ppd/Salle225.ppd @@ -0,0 +1,2256 @@ +*PPD-Adobe: "4.3" +*% ================================= +*% Copyright 1992-2015 HP Company +*% Permission is hereby granted, free of charge, to any person obtaining +*% a copy of this software and associated documentation files (the +*% "Software"), to deal in the Software without restriction, including +*% without limitation the rights to use, copy, modify, merge, publish, +*% distribute, sublicense, and/or sell copies of the Software, and to +*% permit persons to whom the Software is furnished to do so, subject to +*% the following conditions: +*% +*% The above copyright notice and this permission notice shall be +*% included in all copies or substantial portions of the Software. +*% +*% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +*% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +*% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +*% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +*% LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +*% OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +*% WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +*% +*% [this is the MIT open source license -- please see www.opensource.org] +*% +*%%%% Created by the CUPS PPD Compiler CUPS v1.7.2. +*% Copyright (c) 2015 HP Development Company, L.P. +*FormatVersion: "4.3" +*FileVersion: "19.12" +*LanguageVersion: English +*LanguageEncoding: ISOLatin1 +*PCFileName: "HPP00052.PPD" +*Product: "(HP Color LaserJet Pro M252n)" +*Product: "(HP Color LaserJet Pro M252c1)" +*Product: "(HP Color LaserJet Pro M252c2)" +*Product: "(HP Color LaserJet Pro M252c3)" +*Product: "(HP Color LaserJet Pro M252c4)" +*Product: "(HP Color LaserJet Pro M252c5)" +*Product: "(HP Color LaserJet Pro M252dw)" +*Product: "(HP Color LaserJet Pro M252c6)" +*Product: "(HP Color LaserJet Pro M252c7)" +*Product: "(HP Color LaserJet Pro M252c8)" +*Product: "(HP Color LaserJet Pro M252c9)" +*Product: "(HP Color LaserJet Pro M252c10)" +*Manufacturer: "HP" +*ModelName: "HP Color LaserJet Pro M252" +*ShortNickName: "HP Color LaserJet Pro M252" +*1284DeviceID: "MFG:Hewlett-Packard;MDL:hp color laserjet pro m252;" +*NickName: "HP Color LaserJet Pro M252 Postscript (recommended)" +*PSVersion: "(3010.107) 3" +*LanguageLevel: "3" +*ColorDevice: True +*DefaultColorSpace: RGB +*FileSystem: False +*Throughput: "19" +*LandscapeOrientation: Plus90 +*TTRasterizer: Type42 +*% Driver-defined attributes... +*Protocols: TBCP +*cupsPJLCharset: "UTF-8" +*HPAccountingInfo: "4" +*HPBOD: "1" +*cupsUIResolver DuplexerVsDuplex: "*Duplex None" +*cupsUIConstraints DuplexerVsDuplex: "*HPOption_Duplexer False *Duplex" +*cupsCommands: "ReportLevels" +*cupsSNMPSupplies: False +*cupsIPPSupplies: False +*cupsMarkerName cyan/Cyan: "" +*cupsMarkerName magenta/Magenta: "" +*cupsMarkerName yellow/Yellow: "" +*cupsMarkerName black/Black: "" +*RequiresPageRegion All: True +*cupsUIResolver PageSizeVsDuplex: "*PageSize Letter *Duplex None" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize 4x6" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize 5x8" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize A6" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize B6" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize Env4x6" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize Postcard" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize DoublePostcardRotated" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize Env10" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize EnvMonarch" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize EnvISOB5" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize EnvC5" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize EnvDL" +*cupsMediaQualifier2: "Duplex" +*cupsMinSize .DuplexTumble.False: "419.00 595.00" +*cupsMinSize .DuplexNoTumble.False: "419.00 595.00" +*DefaultResolution: 600dpi +*cupsUIResolver MediaTypeVsDuplex: "*Duplex None *MediaType Unspecified" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType HPCoverMatte200" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType HPMattePhoto200" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType CardGlossy176220" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType ColorLaserTransparency" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType Labels" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType Envelope" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType HeavyEnvelope" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType OpaqueFilm" +*FreeVM: "62914560" +*cupsVersion: 1.5 +*cupsModelNumber: 0 +*cupsManualCopies: True +*cupsLanguages: "en da de es fi fr it ja ko no nl pt ru sv zh_CN zh_TW" +*cupsFilter: "application/vnd.cups-postscript 0 hpps" +*OpenUI *PageSize/Media Size: PickOne +*OrderDependency: 10 AnySetup *PageSize +*DefaultPageSize: A4 +*PageSize Letter/US Letter: "<>setpagedevice" +*PageSize Legal/US Legal: "<>setpagedevice" +*PageSize Executive/Executive: "<>setpagedevice" +*PageSize FanFoldGermanLegal/Oficio 8.5x13: "<> setpagedevice" +*PageSize 4x6/4x6: "<>setpagedevice" +*PageSize 5x8/5x8: "<>setpagedevice" +*PageSize A4/A4: "<>setpagedevice" +*PageSize A5/A5: "<>setpagedevice" +*PageSize A6/A6: "<>setpagedevice" +*PageSize B5/JIS B5: "<>setpagedevice" +*PageSize B6/JIS B6: "<>setpagedevice" +*PageSize Env4x6/10x15 cm: "<> setpagedevice" +*PageSize Oficio/Oficio 216x340 mm: "<>setpagedevice" +*PageSize 195x270mm/16K 195x270 mm: "<>setpagedevice" +*PageSize 184x260mm/16K 184x260 mm: "<>setpagedevice" +*PageSize 7.75x10.75/16K 197x273 mm: "<>setpagedevice" +*PageSize Postcard/Postcard: "<>setpagedevice" +*PageSize DoublePostcardRotated/Postcard Double Long Edge: "<>setpagedevice" +*PageSize Env10/Envelope #10: "<>setpagedevice" +*PageSize EnvMonarch/Envelope Monarch: "<>setpagedevice" +*PageSize EnvISOB5/Envelope B5: "<>setpagedevice" +*PageSize EnvC5/Envelope C5: "<>setpagedevice" +*PageSize EnvDL/Envelope DL: "<>setpagedevice" +*CloseUI: *PageSize +*OpenUI *PageRegion/Media Size: PickOne +*OrderDependency: 10 AnySetup *PageRegion +*DefaultPageRegion: A4 +*PageRegion Letter/US Letter: "<>setpagedevice" +*PageRegion Legal/US Legal: "<>setpagedevice" +*PageRegion Executive/Executive: "<>setpagedevice" +*PageRegion FanFoldGermanLegal/Oficio 8.5x13: "<> setpagedevice" +*PageRegion 4x6/4x6: "<>setpagedevice" +*PageRegion 5x8/5x8: "<>setpagedevice" +*PageRegion A4/A4: "<>setpagedevice" +*PageRegion A5/A5: "<>setpagedevice" +*PageRegion A6/A6: "<>setpagedevice" +*PageRegion B5/JIS B5: "<>setpagedevice" +*PageRegion B6/JIS B6: "<>setpagedevice" +*PageRegion Env4x6/10x15 cm: "<> setpagedevice" +*PageRegion Oficio/Oficio 216x340 mm: "<>setpagedevice" +*PageRegion 195x270mm/16K 195x270 mm: "<>setpagedevice" +*PageRegion 184x260mm/16K 184x260 mm: "<>setpagedevice" +*PageRegion 7.75x10.75/16K 197x273 mm: "<>setpagedevice" +*PageRegion Postcard/Postcard: "<>setpagedevice" +*PageRegion DoublePostcardRotated/Postcard Double Long Edge: "<>setpagedevice" +*PageRegion Env10/Envelope #10: "<>setpagedevice" +*PageRegion EnvMonarch/Envelope Monarch: "<>setpagedevice" +*PageRegion EnvISOB5/Envelope B5: "<>setpagedevice" +*PageRegion EnvC5/Envelope C5: "<>setpagedevice" +*PageRegion EnvDL/Envelope DL: "<>setpagedevice" +*CloseUI: *PageRegion +*DefaultImageableArea: Letter +*ImageableArea Letter/US Letter: "12 12 600 780" +*ImageableArea Legal/US Legal: "12 12 600 996" +*ImageableArea Executive/Executive: "12 12 510 744" +*ImageableArea FanFoldGermanLegal/Oficio 8.5x13: "12 12 600 924" +*ImageableArea 4x6/4x6: "12 12 276 420" +*ImageableArea 5x8/5x8: "12 12 348 564" +*ImageableArea A4/A4: "12 12 583 830" +*ImageableArea A5/A5: "12 12 408 583" +*ImageableArea A6/A6: "12 12 285 408" +*ImageableArea B5/JIS B5: "12 12 504 717" +*ImageableArea B6/JIS B6: "12 12 351 504" +*ImageableArea Env4x6/10x15 cm: "12 12 276 419" +*ImageableArea Oficio/Oficio 216x340 mm: "12 12 600 952" +*ImageableArea 195x270mm/16K 195x270 mm: "12 12 541 753" +*ImageableArea 184x260mm/16K 184x260 mm: "12 12 510 725" +*ImageableArea 7.75x10.75/16K 197x273 mm: "12 12 546 762" +*ImageableArea Postcard/Postcard: "12 12 271 408" +*ImageableArea DoublePostcardRotated/Postcard Double Long Edge: "12 12 408 555" +*ImageableArea Env10/Envelope #10: "12 12 285 672" +*ImageableArea EnvMonarch/Envelope Monarch: "12 12 267 528" +*ImageableArea EnvISOB5/Envelope B5: "12 12 487 697" +*ImageableArea EnvC5/Envelope C5: "12 12 447 637" +*ImageableArea EnvDL/Envelope DL: "12 12 300 612" +*DefaultPaperDimension: Letter +*PaperDimension Letter/US Letter: "612 792" +*PaperDimension Legal/US Legal: "612 1008" +*PaperDimension Executive/Executive: "522 756" +*PaperDimension FanFoldGermanLegal/Oficio 8.5x13: "612 936" +*PaperDimension 4x6/4x6: "288 432" +*PaperDimension 5x8/5x8: "360 576" +*PaperDimension A4/A4: "595 842" +*PaperDimension A5/A5: "420 595" +*PaperDimension A6/A6: "297 420" +*PaperDimension B5/JIS B5: "516 729" +*PaperDimension B6/JIS B6: "363 516" +*PaperDimension Env4x6/10x15 cm: "288 431" +*PaperDimension Oficio/Oficio 216x340 mm: "612 964" +*PaperDimension 195x270mm/16K 195x270 mm: "553 765" +*PaperDimension 184x260mm/16K 184x260 mm: "522 737" +*PaperDimension 7.75x10.75/16K 197x273 mm: "558 774" +*PaperDimension Postcard/Postcard: "283 420" +*PaperDimension DoublePostcardRotated/Postcard Double Long Edge: "420 567" +*PaperDimension Env10/Envelope #10: "297 684" +*PaperDimension EnvMonarch/Envelope Monarch: "279 540" +*PaperDimension EnvISOB5/Envelope B5: "499 709" +*PaperDimension EnvC5/Envelope C5: "459 649" +*PaperDimension EnvDL/Envelope DL: "312 624" +*MaxMediaWidth: "612" +*MaxMediaHeight: "1008" +*HWMargins: 12 12 12 12 +*CustomPageSize True: "pop pop pop <>setpagedevice" +*ParamCustomPageSize Width: 1 points 216 612 +*ParamCustomPageSize Height: 2 points 360 1008 +*ParamCustomPageSize WidthOffset: 3 points 0 0 +*ParamCustomPageSize HeightOffset: 4 points 0 0 +*ParamCustomPageSize Orientation: 5 int 0 0 +*OpenUI *Duplex/Two-Sided: PickOne +*OrderDependency: 50 AnySetup *Duplex +*DefaultDuplex: DuplexNoTumble +*Duplex None/Off: "<> setpagedevice" +*Duplex DuplexNoTumble/Long-Edge Binding: "<> setpagedevice" +*Duplex DuplexTumble/Short-Edge Binding: "<> setpagedevice" +*CloseUI: *Duplex +*OpenUI *InputSlot/Paper Feed: PickOne +*OrderDependency: 40 AnySetup *InputSlot +*DefaultInputSlot: Auto +*InputSlot Auto/Automatic: " + <> setpagedevice" +*End +*da.InputSlot Auto/Automatisk: "" +*de.InputSlot Auto/Automatisch: "" +*es.InputSlot Auto/Automático: "" +*fi.InputSlot Auto/Automaattinen: "" +*fr.InputSlot Auto/Automatique: "" +*it.InputSlot Auto/Automatico: "" +*ja.InputSlot Auto/自動: "" +*ko.InputSlot Auto/자동: "" +*nl.InputSlot Auto/Automatisch: "" +*no.InputSlot Auto/Automatisk: "" +*pt.InputSlot Auto/Automático: "" +*ru.InputSlot Auto/Автоматически: "" +*sv.InputSlot Auto/Automatiskt: "" +*zh_CN.InputSlot Auto/自动: "" +*zh_TW.InputSlot Auto/自動: "" + +*InputSlot Tray1/Tray 1: "<> setpagedevice" +*InputSlot Tray2/Tray 2: "<> setpagedevice" +*InputSlot ManualFeed/Manual Feed: "<> setpagedevice" +*CloseUI: *InputSlot +*OpenGroup: InstallableOptions/Installable Options +*OpenUI *HPOption_Duplexer/Duplex Unit: Boolean +*OrderDependency: 0 AnySetup *HPOption_Duplexer +*DefaultHPOption_Duplexer: False +*HPOption_Duplexer True/On: "" +*HPOption_Duplexer False/Off: "" +*CloseUI: *HPOption_Duplexer +*CloseGroup: InstallableOptions +*OpenGroup: HPColorOptionsPanel/Color +*OpenUI *HPPJLColorAsGray/Print Color as Gray: PickOne +*OrderDependency: 20 AnySetup *HPPJLColorAsGray +*DefaultHPPJLColorAsGray: no +*HPPJLColorAsGray yes/On: " " +*HPPJLColorAsGray no/Off: " " +*CloseUI: *HPPJLColorAsGray +*OpenUI *HPRGBEmulation/RGB Color: PickOne +*OrderDependency: 57 AnySetup *HPRGBEmulation +*DefaultHPRGBEmulation: DefaultSRGB +*HPRGBEmulation DefaultSRGB/Default (sRGB): " + globaldict /ColorSmartColorMatching known { + MatchScreen ColorSmartImageAdjustment + } if + " +*End +*HPRGBEmulation PhotoSRGB/Photo (sRGB): " + globaldict /ColorSmartColorMatching known { + PhotoQuality ColorSmartImageAdjustment + } if + " +*End +*HPRGBEmulation Adobe/Photo (Adobe RGB 1998): " + globaldict /ColorSmartColorMatching known { + AdobeRGB ColorSmartImageAdjustment + } if + " +*End +*HPRGBEmulation VividSRGB/Vivid (sRGB): " + globaldict /ColorSmartColorMatching known { + Vivid ColorSmartImageAdjustment + } if + " +*End +*HPRGBEmulation HPRGBEmulationNone/None: " + globaldict /ColorSmartColorMatching known { + NoAdj ColorSmartImageAdjustment + } if + " +*End +*CloseUI: *HPRGBEmulation +*OpenUI *HPEdgeControl/Edge Control: PickOne +*OrderDependency: 57 AnySetup *HPEdgeControl +*DefaultHPEdgeControl: Normal +*HPEdgeControl HPEdgeControlOff/Off: " + globaldict /HPTextAdaptiveHalftoning known { + false HPTextAdaptiveHalftoning + false HPGraphicsAdaptiveHalftoning + false HPImageAdaptiveHalftoning + } if + globaldict /HPColorTrapping known { + Off HPColorTrapping + } if + " +*End +*HPEdgeControl Light/Light: " + globaldict /HPTextAdaptiveHalftoning known { + true HPTextAdaptiveHalftoning + true HPGraphicsAdaptiveHalftoning + true HPImageAdaptiveHalftoning + } if + globaldict /HPColorTrapping known { + Light HPColorTrapping + } if + " +*End +*HPEdgeControl Normal/Normal: " + globaldict /HPTextAdaptiveHalftoning known { + true HPTextAdaptiveHalftoning + true HPGraphicsAdaptiveHalftoning + true HPImageAdaptiveHalftoning + } if + globaldict /HPColorTrapping known { + Normal HPColorTrapping + } if + " +*End +*HPEdgeControl Max/Maximum: " + globaldict /HPTextAdaptiveHalftoning known { + true HPTextAdaptiveHalftoning + true HPGraphicsAdaptiveHalftoning + true HPImageAdaptiveHalftoning + } if + globaldict /HPColorTrapping known { + Max HPColorTrapping + } if + " +*End +*CloseUI: *HPEdgeControl +*OpenUI *HPGeneralHalftone/Halftone: PickOne +*OrderDependency: 57 AnySetup *HPGeneralHalftone +*DefaultHPGeneralHalftone: Smooth +*HPGeneralHalftone Smooth/Smooth: " + globaldict /ColorSmartColorMatching known { + Smooth ColorSmartGraphicsHalftone + Smooth ColorSmartImageHalftone + Smooth ColorSmartTextHalftone + } if + " +*End +*HPGeneralHalftone Detail/Detail: " + globaldict /ColorSmartColorMatching known { + Detail ColorSmartGraphicsHalftone + Detail ColorSmartImageHalftone + Detail ColorSmartTextHalftone + } if + " +*End +*CloseUI: *HPGeneralHalftone +*OpenUI *HPTextNeutralGrays/Text Neutral Grays: PickOne +*OrderDependency: 57 AnySetup *HPTextNeutralGrays +*DefaultHPTextNeutralGrays: Black +*HPTextNeutralGrays Black/Black Only: " + globaldict /HPTextNeutralAxis known { + TonerBlack HPTextNeutralAxis + } if + " +*End +*HPTextNeutralGrays ProcessBlack/4-Color: " + globaldict /HPTextNeutralAxis known { + ProcBlack HPTextNeutralAxis + } if + " +*End +*CloseUI: *HPTextNeutralGrays +*OpenUI *HPGraphicsNeutralGrays/Graphics Neutral Grays: PickOne +*OrderDependency: 57 AnySetup *HPGraphicsNeutralGrays +*DefaultHPGraphicsNeutralGrays: Black +*HPGraphicsNeutralGrays Black/Black Only: " + globaldict /HPGraphicsNeutralAxis known { + TonerBlack HPGraphicsNeutralAxis + } if + " +*End +*HPGraphicsNeutralGrays ProcessBlack/4-Color: " + globaldict /HPGraphicsNeutralAxis known { + ProcBlack HPGraphicsNeutralAxis + } if + " +*End +*CloseUI: *HPGraphicsNeutralGrays +*OpenUI *HPPhotoNeutralGrays/Photo Neutral Grays: PickOne +*OrderDependency: 57 AnySetup *HPPhotoNeutralGrays +*DefaultHPPhotoNeutralGrays: ProcessBlack +*HPPhotoNeutralGrays Black/Black Only: " + globaldict /HPImageNeutralAxis known { + TonerBlack HPImageNeutralAxis + } if + " +*End +*HPPhotoNeutralGrays ProcessBlack/4-Color: " + globaldict /HPImageNeutralAxis known { + ProcBlack HPImageNeutralAxis + } if + " +*End +*CloseUI: *HPPhotoNeutralGrays +*CloseGroup: HPColorOptionsPanel +*OpenGroup: HPPaperQualityPanel/Paper/Quality +*OpenUI *HPPJLEconoMode/EconoMode: Boolean +*OrderDependency: 20 AnySetup *HPPJLEconoMode +*DefaultHPPJLEconoMode: False +*HPPJLEconoMode True/On: " " +*HPPJLEconoMode False/Off: " " +*CloseUI: *HPPJLEconoMode +*OpenUI *MediaType/Media Type: PickOne +*OrderDependency: 20 AnySetup *MediaType +*DefaultMediaType: Plain +*MediaType Unspecified/Unspecified: "<> setpagedevice" +*MediaType Plain/Plain: "<> setpagedevice" +*MediaType HPEcoSMARTLite/HP EcoSMART Lite: "<> setpagedevice" +*MediaType HPLaserJet90/HP LaserJet 90g: "<> setpagedevice" +*MediaType HPColorLaserMatte105/HP Color Laser Matte 105g: "<> setpagedevice" +*MediaType HPPremiumChoiceMatte120/HP Premium Choice Matte 120g: "<> setpagedevice" +*MediaType HPBrochureMatte150/HP Brochure Matte 150g: "<> setpagedevice" +*MediaType HPCoverMatte200/HP Cover Matte 200g: "<> setpagedevice" +*MediaType HPMattePhoto200/HP Matte Photo 200g: "<> setpagedevice" +*MediaType HPPremiumPresentationGlossy120/HP Premium Presentation Glossy 120g: "<> setpagedevice" +*MediaType HPBrochureGlossy150/HP Brochure Glossy 150g: "<> setpagedevice" +*MediaType HPTrifoldBrochureGlossy150/HP Tri-fold Brochure Glossy 150g: "<> setpagedevice" +*MediaType HPBrochureGlossy200/HP Brochure Glossy 200g: "<> setpagedevice" +*MediaType Light6074/Light 60-74g: "<> setpagedevice" +*MediaType Intermediate8595/Intermediate 85-95g: "<> setpagedevice" +*MediaType MidWeight96110/Mid-Weight 96-110g: "<> setpagedevice" +*MediaType Heavy111130/Heavy 111-130g: "<> setpagedevice" +*MediaType ExtraHeavy131175/Extra Heavy 131-175g: "<> setpagedevice" +*MediaType HeavyGlossy111130/Heavy Glossy 111-130g: "<> setpagedevice" +*MediaType ExtraHeavyGlossy131175/Extra Heavy Glossy 131-175g: "<> setpagedevice" +*MediaType CardGlossy176220/Card Glossy 176-220g: "<> setpagedevice" +*MediaType ColorLaserTransparency/Color Laser Transparency: "<> setpagedevice" +*MediaType Labels/Labels: "<> setpagedevice" +*MediaType Letterhead/Letterhead: "<> setpagedevice" +*MediaType Envelope/Envelope: "<> setpagedevice" +*MediaType HeavyEnvelope/Heavy Envelope: "<> setpagedevice" +*MediaType Preprinted/Preprinted: "<> setpagedevice" +*MediaType Prepunched/Prepunched: "<> setpagedevice" +*MediaType Colored/Colored: "<> setpagedevice" +*MediaType Bond/Bond: "<> setpagedevice" +*MediaType Recycled/Recycled: "<> setpagedevice" +*MediaType Rough/Rough: "<> setpagedevice" +*MediaType HeavyRough/Heavy Rough: "<> setpagedevice" +*MediaType OpaqueFilm/Opaque Film: "<> setpagedevice" +*CloseUI: *MediaType +*CloseGroup: HPPaperQualityPanel +*da.Translation Manufacturer/HP: "" +*da.Translation ModelName/HP Color LaserJet Pro M252: "" +*da.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*da.Translation NickName/HP Color LaserJet Pro M252: "" +*da.Translation PageSize/Mediestørrelse: "" +*da.PageSize Letter/US Letter: "" +*da.PageSize Legal/US Legal: "" +*da.PageSize Executive/Executive: "" +*da.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*da.PageSize 4x6/4x6: "" +*da.PageSize 5x8/5x8: "" +*da.PageSize A4/A4: "" +*da.PageSize A5/A5: "" +*da.PageSize A6/A6: "" +*da.PageSize B5/JIS B5: "" +*da.PageSize B6/JIS B6: "" +*da.PageSize Env4x6/10x15 cm: "" +*da.PageSize Oficio/Oficio 216x340 mm: "" +*da.PageSize 195x270mm/16K 195x270 mm: "" +*da.PageSize 184x260mm/16K 184x260 mm: "" +*da.PageSize 7.75x10.75/16K 197x273 mm: "" +*da.PageSize Postcard/Postcard: "" +*da.PageSize DoublePostcardRotated/Postkort, dobbelt - lang kant: "" +*da.PageSize Env10/Konv Comm10: "" +*da.PageSize EnvMonarch/Konv Monarch: "" +*da.PageSize EnvISOB5/Konv ISO B5: "" +*da.PageSize EnvC5/Konv C5: "" +*da.PageSize EnvDL/Konv DL: "" +*da.Translation Duplex/Dupleks: "" +*da.Duplex None/Fra: "" +*da.Duplex DuplexNoTumble/Indbinding på den lange led: "" +*da.Duplex DuplexTumble/Indbinding på den korte led: "" +*da.Translation InputSlot/Papirforsyning: "" +*da.InputSlot Tray1/Bakke 1: "" +*da.InputSlot Tray2/Bakke 2: "" +*da.InputSlot ManualFeed/Manuel indføring: "" +*da.Translation InstallableOptions/Installable Options: "" +*da.Translation HPOption_Duplexer/Dupleksudskrivningsudstyr: "" +*da.HPOption_Duplexer True/Til: "" +*da.HPOption_Duplexer False/Fra: "" +*da.Translation HPColorOptionsPanel/Farve: "" +*da.Translation HPPJLColorAsGray/Udskriv farve som grå: "" +*da.HPPJLColorAsGray yes/Til: "" +*da.HPPJLColorAsGray no/Fra: "" +*da.Translation HPRGBEmulation/RGB-farve: "" +*da.HPRGBEmulation DefaultSRGB/Standard (sRGB): "" +*da.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*da.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*da.HPRGBEmulation VividSRGB/Livlig (sRGB): "" +*da.HPRGBEmulation HPRGBEmulationNone/Ingen: "" +*da.Translation HPEdgeControl/Kantstyring: "" +*da.HPEdgeControl HPEdgeControlOff/Fra: "" +*da.HPEdgeControl Light/Lys: "" +*da.HPEdgeControl Normal/Normal: "" +*da.HPEdgeControl Max/Maksimum: "" +*da.Translation HPGeneralHalftone/Halvtone: "" +*da.HPGeneralHalftone Smooth/Jævn: "" +*da.HPGeneralHalftone Detail/Detaljer: "" +*da.Translation HPTextNeutralGrays/Tekst i neutral grå: "" +*da.HPTextNeutralGrays Black/Kun sort: "" +*da.HPTextNeutralGrays ProcessBlack/4-farve: "" +*da.Translation HPGraphicsNeutralGrays/Grafik i neutral grå: "" +*da.HPGraphicsNeutralGrays Black/Kun sort: "" +*da.HPGraphicsNeutralGrays ProcessBlack/4-farve: "" +*da.Translation HPPhotoNeutralGrays/Fotografier i neutral grå: "" +*da.HPPhotoNeutralGrays Black/Kun sort: "" +*da.HPPhotoNeutralGrays ProcessBlack/4-farve: "" +*da.Translation HPPaperQualityPanel/Paper/Quality: "" +*da.Translation HPPJLEconoMode/EconoMode: "" +*da.HPPJLEconoMode True/Til: "" +*da.HPPJLEconoMode False/Fra: "" +*da.Translation MediaType/Medietype: "" +*da.MediaType Unspecified/Uspecificeret: "" +*da.MediaType Plain/Almindeligt: "" +*da.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*da.MediaType HPLaserJet90/HP LaserJet 90g: "" +*da.MediaType HPColorLaserMatte105/HP Color Laser, mat 105g: "" +*da.MediaType HPPremiumChoiceMatte120/HP Premium Choice, mat 120g: "" +*da.MediaType HPBrochureMatte150/HP brochurepapir, mat 150g: "" +*da.MediaType HPCoverMatte200/HP Omslag, mat 200g: "" +*da.MediaType HPMattePhoto200/HP Foto, mat 200g: "" +*da.MediaType HPPremiumPresentationGlossy120/HP Premium-præsentationspapir, Blankt 120g: "" +*da.MediaType HPBrochureGlossy150/HP brochurepapir, Blankt 150g: "" +*da.MediaType HPTrifoldBrochureGlossy150/HP brochurepapir foldet tre gange, Blankt, 150g: "" +*da.MediaType HPBrochureGlossy200/HP brochurepapir, Blankt 200g: "" +*da.MediaType Light6074/Let 60-74g: "" +*da.MediaType Intermediate8595/Mellem 85-95g: "" +*da.MediaType MidWeight96110/Mellemkraftigt 96-110g: "" +*da.MediaType Heavy111130/Kraftigt 111-130g: "" +*da.MediaType ExtraHeavy131175/Ekstra kraftigt 131-175g: "" +*da.MediaType HeavyGlossy111130/Kraftigt blankt 111-130g: "" +*da.MediaType ExtraHeavyGlossy131175/Ekstra tykt og blankt 131-175g: "" +*da.MediaType CardGlossy176220/Kort, blankt 176-220g: "" +*da.MediaType ColorLaserTransparency/Color Laser-transparent: "" +*da.MediaType Labels/Etiketter: "" +*da.MediaType Letterhead/Brevpapir: "" +*da.MediaType Envelope/Konvolut: "" +*da.MediaType HeavyEnvelope/Kraftig konvolut: "" +*da.MediaType Preprinted/Fortrykt: "" +*da.MediaType Prepunched/Hullet: "" +*da.MediaType Colored/Farvet: "" +*da.MediaType Bond/Bankpost: "" +*da.MediaType Recycled/Genbrug: "" +*da.MediaType Rough/Groft: "" +*da.MediaType HeavyRough/Kraftigt, groft: "" +*da.MediaType OpaqueFilm/Uigennemskinnelig film: "" +*da.APPrinterPreset ChartsAndGraphs/Diagrammer og grafik: "" +*da.cupsICCProfile RGB../sRGB Matching Profile: "" +*da.cupsICCProfile CMYK../CMYK Matching Profile: "" +*da.cupsICCProfile Gray../Gray Matching Profile: "" +*da.cupsMarkerName cyan/Cyan: "" +*da.cupsMarkerName magenta/Magenta: "" +*da.cupsMarkerName yellow/Gul: "" +*da.cupsMarkerName black/Sort: "" +*de.Translation Manufacturer/HP: "" +*de.Translation ModelName/HP Color LaserJet Pro M252: "" +*de.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*de.Translation NickName/HP Color LaserJet Pro M252: "" +*de.Translation PageSize/Mediengröße: "" +*de.PageSize Letter/US Letter: "" +*de.PageSize Legal/US Legal: "" +*de.PageSize Executive/Executive: "" +*de.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*de.PageSize 4x6/4x6: "" +*de.PageSize 5x8/5x8: "" +*de.PageSize A4/A4: "" +*de.PageSize A5/A5: "" +*de.PageSize A6/A6: "" +*de.PageSize B5/JIS B5: "" +*de.PageSize B6/JIS B6: "" +*de.PageSize Env4x6/10x15 cm: "" +*de.PageSize Oficio/Oficio 216x340 mm: "" +*de.PageSize 195x270mm/16K 195x270 mm: "" +*de.PageSize 184x260mm/16K 184x260 mm: "" +*de.PageSize 7.75x10.75/16K 197x273 mm: "" +*de.PageSize Postcard/Postcard: "" +*de.PageSize DoublePostcardRotated/Postkarte - Doppelt - breite Seite: "" +*de.PageSize Env10/Umschlag Comm10: "" +*de.PageSize EnvMonarch/Umschlag Monarch: "" +*de.PageSize EnvISOB5/Umschlag ISO B5: "" +*de.PageSize EnvC5/Umschlag C5: "" +*de.PageSize EnvDL/Umschlag DL: "" +*de.Translation Duplex/Beidseitig: "" +*de.Duplex None/Aus: "" +*de.Duplex DuplexNoTumble/Bindung an langer Kante: "" +*de.Duplex DuplexTumble/Bindung an kurzer Kante: "" +*de.Translation InputSlot/Papiereinzug: "" +*de.InputSlot Tray1/Zufuhrfach 1: "" +*de.InputSlot Tray2/Zufuhrfach 2: "" +*de.InputSlot ManualFeed/Manuelle Zufuhr: "" +*de.Translation InstallableOptions/Installable Options: "" +*de.Translation HPOption_Duplexer/Duplexdruck-Zubehör: "" +*de.HPOption_Duplexer True/Ein: "" +*de.HPOption_Duplexer False/Aus: "" +*de.Translation HPColorOptionsPanel/Farbe: "" +*de.Translation HPPJLColorAsGray/In Graustufen drucken: "" +*de.HPPJLColorAsGray yes/Ein: "" +*de.HPPJLColorAsGray no/Aus: "" +*de.Translation HPRGBEmulation/RGB-Farbe: "" +*de.HPRGBEmulation DefaultSRGB/Standard (sRGB): "" +*de.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*de.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*de.HPRGBEmulation VividSRGB/Leuchtend (sRGB): "" +*de.HPRGBEmulation HPRGBEmulationNone/Keine: "" +*de.Translation HPEdgeControl/Randsteuerung: "" +*de.HPEdgeControl HPEdgeControlOff/Aus: "" +*de.HPEdgeControl Light/Hell: "" +*de.HPEdgeControl Normal/Normal: "" +*de.HPEdgeControl Max/Maximal: "" +*de.Translation HPGeneralHalftone/Halbton: "" +*de.HPGeneralHalftone Smooth/Geglättet: "" +*de.HPGeneralHalftone Detail/Detailliert: "" +*de.Translation HPTextNeutralGrays/Text - neutrales Grau: "" +*de.HPTextNeutralGrays Black/Nur Schwarz: "" +*de.HPTextNeutralGrays ProcessBlack/4-Farbig: "" +*de.Translation HPGraphicsNeutralGrays/Grafik - neutrales Grau: "" +*de.HPGraphicsNeutralGrays Black/Nur Schwarz: "" +*de.HPGraphicsNeutralGrays ProcessBlack/4-Farbig: "" +*de.Translation HPPhotoNeutralGrays/Foto - neutrales Grau: "" +*de.HPPhotoNeutralGrays Black/Nur Schwarz: "" +*de.HPPhotoNeutralGrays ProcessBlack/4-Farbig: "" +*de.Translation HPPaperQualityPanel/Paper/Quality: "" +*de.Translation HPPJLEconoMode/EconoMode: "" +*de.HPPJLEconoMode True/Ein: "" +*de.HPPJLEconoMode False/Aus: "" +*de.Translation MediaType/Druckmedientyp: "" +*de.MediaType Unspecified/Nicht bestimmt: "" +*de.MediaType Plain/Normalpapier: "" +*de.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*de.MediaType HPLaserJet90/HP LaserJet, 90g: "" +*de.MediaType HPColorLaserMatte105/HP Color Laser 105g, matt: "" +*de.MediaType HPPremiumChoiceMatte120/HP Premium Choice 120g, matt: "" +*de.MediaType HPBrochureMatte150/HP Broschürenpapier, matt 150g: "" +*de.MediaType HPCoverMatte200/HP Deckblattpapier 200g, matt: "" +*de.MediaType HPMattePhoto200/HP Fotopapier, matt 200g: "" +*de.MediaType HPPremiumPresentationGlossy120/HP Premium Präsentationspapier, hochglänzend 120g: "" +*de.MediaType HPBrochureGlossy150/HP Broschürenpapier, hochglänzend 150g: "" +*de.MediaType HPTrifoldBrochureGlossy150/HP Broschürenpapier, dreifach gefaltet, hochglänzend 150g: "" +*de.MediaType HPBrochureGlossy200/HP Broschürenpapier, hochglänzend 200g: "" +*de.MediaType Light6074/Leicht 60-74g: "" +*de.MediaType Intermediate8595/Mittelschwer 85-95g: "" +*de.MediaType MidWeight96110/Mittleres Gewicht 96-110g: "" +*de.MediaType Heavy111130/Schwer 111-130g: "" +*de.MediaType ExtraHeavy131175/Sehr schwer 131-175g: "" +*de.MediaType HeavyGlossy111130/Hochglanz, schwer 111-130g: "" +*de.MediaType ExtraHeavyGlossy131175/Hochglanz, extraschwer 131-175g: "" +*de.MediaType CardGlossy176220/Karte 176-220g, hochglänzend: "" +*de.MediaType ColorLaserTransparency/Color Laser-Transparentfolie: "" +*de.MediaType Labels/Etiketten: "" +*de.MediaType Letterhead/Briefkopfpapier: "" +*de.MediaType Envelope/Briefumschlag: "" +*de.MediaType HeavyEnvelope/Schwerer Briefumschlag: "" +*de.MediaType Preprinted/Vordruckpapier: "" +*de.MediaType Prepunched/Vorgelochtes Papier: "" +*de.MediaType Colored/Farbig: "" +*de.MediaType Bond/Briefpapier: "" +*de.MediaType Recycled/Recyclingpapier: "" +*de.MediaType Rough/Rauhpapier: "" +*de.MediaType HeavyRough/Schwer Rau: "" +*de.MediaType OpaqueFilm/Folie, opak: "" +*de.APPrinterPreset ChartsAndGraphs/Diagramme & Grafiken: "" +*de.cupsICCProfile RGB../sRGB Matching Profile: "" +*de.cupsICCProfile CMYK../CMYK Matching Profile: "" +*de.cupsICCProfile Gray../Gray Matching Profile: "" +*de.cupsMarkerName cyan/Zyan: "" +*de.cupsMarkerName magenta/Magenta: "" +*de.cupsMarkerName yellow/Gelb: "" +*de.cupsMarkerName black/Schwarz: "" +*es.Translation Manufacturer/HP: "" +*es.Translation ModelName/HP Color LaserJet Pro M252: "" +*es.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*es.Translation NickName/HP Color LaserJet Pro M252: "" +*es.Translation PageSize/Tamaño de papel: "" +*es.PageSize Letter/US Letter: "" +*es.PageSize Legal/US Legal: "" +*es.PageSize Executive/Ejecutivo: "" +*es.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*es.PageSize 4x6/4x6: "" +*es.PageSize 5x8/5x8: "" +*es.PageSize A4/A4: "" +*es.PageSize A5/A5: "" +*es.PageSize A6/A6: "" +*es.PageSize B5/JIS B5: "" +*es.PageSize B6/JIS B6: "" +*es.PageSize Env4x6/10x15 cm: "" +*es.PageSize Oficio/Oficio 216x340 mm: "" +*es.PageSize 195x270mm/16K 195x270 mm: "" +*es.PageSize 184x260mm/16K 184x260 mm: "" +*es.PageSize 7.75x10.75/16K 197x273 mm: "" +*es.PageSize Postcard/Postcard: "" +*es.PageSize DoublePostcardRotated/Postal doble borde largo: "" +*es.PageSize Env10/Sobre Comm10: "" +*es.PageSize EnvMonarch/Sobre Monarch: "" +*es.PageSize EnvISOB5/Sobre ISO B5: "" +*es.PageSize EnvC5/Sobre C5: "" +*es.PageSize EnvDL/Sobre DL: "" +*es.Translation Duplex/A doble cara: "" +*es.Duplex None/Desactivado: "" +*es.Duplex DuplexNoTumble/Encuadernación de borde largo: "" +*es.Duplex DuplexTumble/Encuadernación de borde corto: "" +*es.Translation InputSlot/Alimentador de papel: "" +*es.InputSlot Tray1/Bandeja 1: "" +*es.InputSlot Tray2/Bandeja 2: "" +*es.InputSlot ManualFeed/Alimentación manual: "" +*es.Translation InstallableOptions/Installable Options: "" +*es.Translation HPOption_Duplexer/Accesorio para impresión dúplex: "" +*es.HPOption_Duplexer True/Activado: "" +*es.HPOption_Duplexer False/Desactivado: "" +*es.Translation HPColorOptionsPanel/Color: "" +*es.Translation HPPJLColorAsGray/Imprimir colores en gris: "" +*es.HPPJLColorAsGray yes/Activado: "" +*es.HPPJLColorAsGray no/Desactivado: "" +*es.Translation HPRGBEmulation/Color RGB: "" +*es.HPRGBEmulation DefaultSRGB/Predeterminado (sRGB): "" +*es.HPRGBEmulation PhotoSRGB/Fotografía (sRGB): "" +*es.HPRGBEmulation Adobe/Fotografía (Adobe RGB 1998): "" +*es.HPRGBEmulation VividSRGB/Intenso (sRGB): "" +*es.HPRGBEmulation HPRGBEmulationNone/Ninguno: "" +*es.Translation HPEdgeControl/Control de bordes: "" +*es.HPEdgeControl HPEdgeControlOff/Desactivado: "" +*es.HPEdgeControl Light/Claro: "" +*es.HPEdgeControl Normal/Normal: "" +*es.HPEdgeControl Max/Máximo: "" +*es.Translation HPGeneralHalftone/Medios tonos: "" +*es.HPGeneralHalftone Smooth/Uniforme: "" +*es.HPGeneralHalftone Detail/Detalle: "" +*es.Translation HPTextNeutralGrays/Gris neutro de texto: "" +*es.HPTextNeutralGrays Black/Sólo negro: "" +*es.HPTextNeutralGrays ProcessBlack/4 colores: "" +*es.Translation HPGraphicsNeutralGrays/Gris neutro de gráfico: "" +*es.HPGraphicsNeutralGrays Black/Sólo negro: "" +*es.HPGraphicsNeutralGrays ProcessBlack/4 colores: "" +*es.Translation HPPhotoNeutralGrays/Gris neutro de fotografías: "" +*es.HPPhotoNeutralGrays Black/Sólo negro: "" +*es.HPPhotoNeutralGrays ProcessBlack/4 colores: "" +*es.Translation HPPaperQualityPanel/Paper/Quality: "" +*es.Translation HPPJLEconoMode/EconoMode: "" +*es.HPPJLEconoMode True/Activado: "" +*es.HPPJLEconoMode False/Desactivado: "" +*es.Translation MediaType/Tipo de sustrato: "" +*es.MediaType Unspecified/No especificado: "" +*es.MediaType Plain/Estándar: "" +*es.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*es.MediaType HPLaserJet90/HP LaserJet 90g: "" +*es.MediaType HPColorLaserMatte105/Impresión láser color mate HP 105g: "" +*es.MediaType HPPremiumChoiceMatte120/HP Premium Choice satinado 120g: "" +*es.MediaType HPBrochureMatte150/Prospecto HP mate 150g: "" +*es.MediaType HPCoverMatte200/Portada mate HP 200g: "" +*es.MediaType HPMattePhoto200/Fotográfico mate HP 200g: "" +*es.MediaType HPPremiumPresentationGlossy120/Presentaciones HP Premium satinadas 120g: "" +*es.MediaType HPBrochureGlossy150/Prospecto HP satinado 150g: "" +*es.MediaType HPTrifoldBrochureGlossy150/Prospecto estilo tríptico HP satinado 150g: "" +*es.MediaType HPBrochureGlossy200/Prospecto HP satinado 200g: "" +*es.MediaType Light6074/Ligero 60-74g: "" +*es.MediaType Intermediate8595/Intermedio 85-95g: "" +*es.MediaType MidWeight96110/Peso medio 96-110g: "" +*es.MediaType Heavy111130/Pesado 111-130g: "" +*es.MediaType ExtraHeavy131175/Pesado extra 131-175g: "" +*es.MediaType HeavyGlossy111130/Satinado pesado 111-130g: "" +*es.MediaType ExtraHeavyGlossy131175/Extra grueso brillante 131-175g: "" +*es.MediaType CardGlossy176220/Tarjeta satinado 176-220g: "" +*es.MediaType ColorLaserTransparency/Transparencia impresión láser: "" +*es.MediaType Labels/Etiquetas: "" +*es.MediaType Letterhead/Membrete: "" +*es.MediaType Envelope/Sobre: "" +*es.MediaType HeavyEnvelope/Sobre pesado: "" +*es.MediaType Preprinted/Preimpreso: "" +*es.MediaType Prepunched/Preperforado: "" +*es.MediaType Colored/Coloreado: "" +*es.MediaType Bond/Bond: "" +*es.MediaType Recycled/Reciclado: "" +*es.MediaType Rough/Rugoso: "" +*es.MediaType HeavyRough/Pesado rugoso: "" +*es.MediaType OpaqueFilm/Película opaca: "" +*es.APPrinterPreset ChartsAndGraphs/Cuadros y gráficos: "" +*es.cupsICCProfile RGB../sRGB Matching Profile: "" +*es.cupsICCProfile CMYK../CMYK Matching Profile: "" +*es.cupsICCProfile Gray../Gray Matching Profile: "" +*es.cupsMarkerName cyan/Cian: "" +*es.cupsMarkerName magenta/Magenta: "" +*es.cupsMarkerName yellow/Amarillo: "" +*es.cupsMarkerName black/Negro: "" +*fi.Translation Manufacturer/HP: "" +*fi.Translation ModelName/HP Color LaserJet Pro M252: "" +*fi.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*fi.Translation NickName/HP Color LaserJet Pro M252: "" +*fi.Translation PageSize/Median koko: "" +*fi.PageSize Letter/US Letter: "" +*fi.PageSize Legal/US Legal: "" +*fi.PageSize Executive/Executive: "" +*fi.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*fi.PageSize 4x6/4x6: "" +*fi.PageSize 5x8/5x8: "" +*fi.PageSize A4/A4: "" +*fi.PageSize A5/A5: "" +*fi.PageSize A6/A6: "" +*fi.PageSize B5/JIS B5: "" +*fi.PageSize B6/JIS B6: "" +*fi.PageSize Env4x6/10x15 cm: "" +*fi.PageSize Oficio/Oficio 216x340 mm: "" +*fi.PageSize 195x270mm/16K 195x270 mm: "" +*fi.PageSize 184x260mm/16K 184x260 mm: "" +*fi.PageSize 7.75x10.75/16K 197x273 mm: "" +*fi.PageSize Postcard/Postcard: "" +*fi.PageSize DoublePostcardRotated/Kaksoispostikortti (pitkä reuna): "" +*fi.PageSize Env10/Kirjekuori Comm10: "" +*fi.PageSize EnvMonarch/Kirjekuori Monarch: "" +*fi.PageSize EnvISOB5/Kirjekuori ISO B5: "" +*fi.PageSize EnvC5/Kirjekuori C5: "" +*fi.PageSize EnvDL/Kirjekuori DL: "" +*fi.Translation Duplex/Kaksipuolinen: "" +*fi.Duplex None/Ei käytössä: "" +*fi.Duplex DuplexNoTumble/Sidonta-pitkäreuna: "" +*fi.Duplex DuplexTumble/Sidonta-lyhytreuna: "" +*fi.Translation InputSlot/Paperinsyöttö: "" +*fi.InputSlot Tray1/Lokero 1: "" +*fi.InputSlot Tray2/Lokero 2: "" +*fi.InputSlot ManualFeed/Käsinsyöttö: "" +*fi.Translation InstallableOptions/Installable Options: "" +*fi.Translation HPOption_Duplexer/Kaksipuolisen tulostuksen lisälaite: "" +*fi.HPOption_Duplexer True/Käytössä: "" +*fi.HPOption_Duplexer False/Ei käytössä: "" +*fi.Translation HPColorOptionsPanel/Väri: "" +*fi.Translation HPPJLColorAsGray/Tulosta värit harmaina: "" +*fi.HPPJLColorAsGray yes/Käytössä: "" +*fi.HPPJLColorAsGray no/Ei käytössä: "" +*fi.Translation HPRGBEmulation/RGB-väri: "" +*fi.HPRGBEmulation DefaultSRGB/Oletus (sRGB): "" +*fi.HPRGBEmulation PhotoSRGB/Valokuva (sRGB): "" +*fi.HPRGBEmulation Adobe/Valokuva (Adobe RGB 1998): "" +*fi.HPRGBEmulation VividSRGB/Kirkas (sRGB): "" +*fi.HPRGBEmulation HPRGBEmulationNone/Ei mitään: "" +*fi.Translation HPEdgeControl/Reunojen hallinta: "" +*fi.HPEdgeControl HPEdgeControlOff/Ei käytössä: "" +*fi.HPEdgeControl Light/Vaalea: "" +*fi.HPEdgeControl Normal/Normaali: "" +*fi.HPEdgeControl Max/Maksimi: "" +*fi.Translation HPGeneralHalftone/Puolisävy: "" +*fi.HPGeneralHalftone Smooth/Tasainen: "" +*fi.HPGeneralHalftone Detail/Yksityiskohtainen: "" +*fi.Translation HPTextNeutralGrays/Teksti, neutraali harmaa: "" +*fi.HPTextNeutralGrays Black/Vain musta: "" +*fi.HPTextNeutralGrays ProcessBlack/Neliväri: "" +*fi.Translation HPGraphicsNeutralGrays/Kuva, neutraali harmaa: "" +*fi.HPGraphicsNeutralGrays Black/Vain musta: "" +*fi.HPGraphicsNeutralGrays ProcessBlack/Neliväri: "" +*fi.Translation HPPhotoNeutralGrays/Val., neutraali harmaa: "" +*fi.HPPhotoNeutralGrays Black/Vain musta: "" +*fi.HPPhotoNeutralGrays ProcessBlack/Neliväri: "" +*fi.Translation HPPaperQualityPanel/Paper/Quality: "" +*fi.Translation HPPJLEconoMode/EconoMode: "" +*fi.HPPJLEconoMode True/Käytössä: "" +*fi.HPPJLEconoMode False/Ei käytössä: "" +*fi.Translation MediaType/Tulostusmateriaali: "" +*fi.MediaType Unspecified/Määrittämätön: "" +*fi.MediaType Plain/Tavallinen: "" +*fi.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*fi.MediaType HPLaserJet90/HP LaserJet, 90g: "" +*fi.MediaType HPColorLaserMatte105/HP<3A>n matta värilaser 105g: "" +*fi.MediaType HPPremiumChoiceMatte120/HP Premium Choice, matta 120g: "" +*fi.MediaType HPBrochureMatte150/HP<3A>n matta esite 150g: "" +*fi.MediaType HPCoverMatte200/HP<3A>n matta kansi 200g: "" +*fi.MediaType HPMattePhoto200/HP<3A>n matta valokuva 200g: "" +*fi.MediaType HPPremiumPresentationGlossy120/HP Premium -esitys, kiiltävä 120g: "" +*fi.MediaType HPBrochureGlossy150/HP<3A>n kiiltävä esite 150g: "" +*fi.MediaType HPTrifoldBrochureGlossy150/HP<3A>n kolminkertainen esite 150g: "" +*fi.MediaType HPBrochureGlossy200/HP<3A>n kiiltävä esite 200g: "" +*fi.MediaType Light6074/Kevyt 60-74g: "" +*fi.MediaType Intermediate8595/Keskikoko 85-95g: "" +*fi.MediaType MidWeight96110/Keskipaksu 96-110g: "" +*fi.MediaType Heavy111130/Paksu 111-130g: "" +*fi.MediaType ExtraHeavy131175/Erittäin paksu 131-175g: "" +*fi.MediaType HeavyGlossy111130/Raskas kiiltävä 111-130g: "" +*fi.MediaType ExtraHeavyGlossy131175/Er. raskas kiiltävä 131-175g: "" +*fi.MediaType CardGlossy176220/Kiiltävä kortti 176-220g: "" +*fi.MediaType ColorLaserTransparency/Värilaserkalvo: "" +*fi.MediaType Labels/Tarrat: "" +*fi.MediaType Letterhead/Kirjelomake: "" +*fi.MediaType Envelope/Kirjekuori: "" +*fi.MediaType HeavyEnvelope/Paksu kirjekuori: "" +*fi.MediaType Preprinted/Esipainettu: "" +*fi.MediaType Prepunched/Rei’itetty: "" +*fi.MediaType Colored/Värillinen: "" +*fi.MediaType Bond/Kova asiakirjapaperi: "" +*fi.MediaType Recycled/Uusiopaperi: "" +*fi.MediaType Rough/Karkea: "" +*fi.MediaType HeavyRough/Paksu karkea: "" +*fi.MediaType OpaqueFilm/Läpikuultamaton kalvo: "" +*fi.APPrinterPreset ChartsAndGraphs/Kaaviot ja grafiikka: "" +*fi.cupsICCProfile RGB../sRGB Matching Profile: "" +*fi.cupsICCProfile CMYK../CMYK Matching Profile: "" +*fi.cupsICCProfile Gray../Gray Matching Profile: "" +*fi.cupsMarkerName cyan/Syaani: "" +*fi.cupsMarkerName magenta/Magenta: "" +*fi.cupsMarkerName yellow/Keltainen: "" +*fi.cupsMarkerName black/Musta: "" +*fr.Translation Manufacturer/HP: "" +*fr.Translation ModelName/HP Color LaserJet Pro M252: "" +*fr.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*fr.Translation NickName/HP Color LaserJet Pro M252: "" +*fr.Translation PageSize/Taille du papier: "" +*fr.PageSize Letter/US Letter: "" +*fr.PageSize Legal/US Legal: "" +*fr.PageSize Executive/Exécutif: "" +*fr.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*fr.PageSize 4x6/4x6: "" +*fr.PageSize 5x8/5x8: "" +*fr.PageSize A4/A4: "" +*fr.PageSize A5/A5: "" +*fr.PageSize A6/A6: "" +*fr.PageSize B5/JIS B5: "" +*fr.PageSize B6/JIS B6: "" +*fr.PageSize Env4x6/10x15 cm: "" +*fr.PageSize Oficio/Oficio 216x340 mm: "" +*fr.PageSize 195x270mm/16K 195x270 mm: "" +*fr.PageSize 184x260mm/16K 184x260 mm: "" +*fr.PageSize 7.75x10.75/16K 197x273 mm: "" +*fr.PageSize Postcard/Postcard: "" +*fr.PageSize DoublePostcardRotated/Carte postale double - Long bord: "" +*fr.PageSize Env10/Enveloppe Comm10: "" +*fr.PageSize EnvMonarch/Enveloppe Monarch: "" +*fr.PageSize EnvISOB5/Enveloppe ISO B5: "" +*fr.PageSize EnvC5/Enveloppe C5: "" +*fr.PageSize EnvDL/Enveloppe DL: "" +*fr.Translation Duplex/Recto verso: "" +*fr.Duplex None/Désactivé: "" +*fr.Duplex DuplexNoTumble/Reliure côté long: "" +*fr.Duplex DuplexTumble/Reliure côté court: "" +*fr.Translation InputSlot/Alimentation: "" +*fr.InputSlot Tray1/Bac 1: "" +*fr.InputSlot Tray2/Bac 2: "" +*fr.InputSlot ManualFeed/Alimentation manuelle: "" +*fr.Translation InstallableOptions/Installable Options: "" +*fr.Translation HPOption_Duplexer/Unité recto verso: "" +*fr.HPOption_Duplexer True/Activé: "" +*fr.HPOption_Duplexer False/Désactivé: "" +*fr.Translation HPColorOptionsPanel/Couleur: "" +*fr.Translation HPPJLColorAsGray/Imprimer couleur en gris: "" +*fr.HPPJLColorAsGray yes/Activé: "" +*fr.HPPJLColorAsGray no/Désactivé: "" +*fr.Translation HPRGBEmulation/Couleur RGB: "" +*fr.HPRGBEmulation DefaultSRGB/Par défaut (sRGB): "" +*fr.HPRGBEmulation PhotoSRGB/Photo (sRGB): "" +*fr.HPRGBEmulation Adobe/Photo (Adobe RGB 1998): "" +*fr.HPRGBEmulation VividSRGB/Vive (sRGB): "" +*fr.HPRGBEmulation HPRGBEmulationNone/Aucun: "" +*fr.Translation HPEdgeControl/Contrôle du bord: "" +*fr.HPEdgeControl HPEdgeControlOff/Désactivé: "" +*fr.HPEdgeControl Light/Clair: "" +*fr.HPEdgeControl Normal/Normal: "" +*fr.HPEdgeControl Max/Maximum: "" +*fr.Translation HPGeneralHalftone/Demi-teinte: "" +*fr.HPGeneralHalftone Smooth/Lisse: "" +*fr.HPGeneralHalftone Detail/Détaillées: "" +*fr.Translation HPTextNeutralGrays/Texte gris neutre: "" +*fr.HPTextNeutralGrays Black/Noir uniquement: "" +*fr.HPTextNeutralGrays ProcessBlack/4 couleurs: "" +*fr.Translation HPGraphicsNeutralGrays/Graphiques gris neutre: "" +*fr.HPGraphicsNeutralGrays Black/Noir uniquement: "" +*fr.HPGraphicsNeutralGrays ProcessBlack/4 couleurs: "" +*fr.Translation HPPhotoNeutralGrays/Photo gris neutre: "" +*fr.HPPhotoNeutralGrays Black/Noir uniquement: "" +*fr.HPPhotoNeutralGrays ProcessBlack/4 couleurs: "" +*fr.Translation HPPaperQualityPanel/Paper/Quality: "" +*fr.Translation HPPJLEconoMode/EconoMode: "" +*fr.HPPJLEconoMode True/Activé: "" +*fr.HPPJLEconoMode False/Désactivé: "" +*fr.Translation MediaType/Type de support: "" +*fr.MediaType Unspecified/Non spécifié: "" +*fr.MediaType Plain/Ordinaire: "" +*fr.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*fr.MediaType HPLaserJet90/HP LaserJet 90g: "" +*fr.MediaType HPColorLaserMatte105/Papier couleur laser mat 105g HP: "" +*fr.MediaType HPPremiumChoiceMatte120/Papier 120g mat HP Premium Choice: "" +*fr.MediaType HPBrochureMatte150/HP Brochure Mat 150g: "" +*fr.MediaType HPCoverMatte200/Couverture mate 200g HP: "" +*fr.MediaType HPMattePhoto200/Papier photo mat HP 200g: "" +*fr.MediaType HPPremiumPresentationGlossy120/Papier brillant pour présentation HP Premium 120g: "" +*fr.MediaType HPBrochureGlossy150/HP Brochure Brillant 150g: "" +*fr.MediaType HPTrifoldBrochureGlossy150/Papier pour brochure plié en trois HP, brillant, 150g: "" +*fr.MediaType HPBrochureGlossy200/HP Brochure Brillant 200g: "" +*fr.MediaType Light6074/Fin 60-74g: "" +*fr.MediaType Intermediate8595/Intermédiaire 85-95g: "" +*fr.MediaType MidWeight96110/Grammage moyen 96-110g: "" +*fr.MediaType Heavy111130/Epais 111-130g: "" +*fr.MediaType ExtraHeavy131175/Très épais 131-175g: "" +*fr.MediaType HeavyGlossy111130/Glacé et épais 111-130g: "" +*fr.MediaType ExtraHeavyGlossy131175/Papier glacé extra fort 131-175g: "" +*fr.MediaType CardGlossy176220/Carte brillante 176-220g: "" +*fr.MediaType ColorLaserTransparency/Transpar. laser couleur: "" +*fr.MediaType Labels/Étiquettes: "" +*fr.MediaType Letterhead/Papier à en-tête: "" +*fr.MediaType Envelope/Enveloppe: "" +*fr.MediaType HeavyEnvelope/Enveloppe à fort grammage: "" +*fr.MediaType Preprinted/Préimprimé: "" +*fr.MediaType Prepunched/Perforé: "" +*fr.MediaType Colored/Coloré: "" +*fr.MediaType Bond/Document: "" +*fr.MediaType Recycled/Recyclé: "" +*fr.MediaType Rough/Rugueux: "" +*fr.MediaType HeavyRough/Epais rugueux: "" +*fr.MediaType OpaqueFilm/Film opaque: "" +*fr.APPrinterPreset ChartsAndGraphs/Diagrammes et graphiques: "" +*fr.cupsICCProfile RGB../sRGB Matching Profile: "" +*fr.cupsICCProfile CMYK../CMYK Matching Profile: "" +*fr.cupsICCProfile Gray../Gray Matching Profile: "" +*fr.cupsMarkerName cyan/Cyan: "" +*fr.cupsMarkerName magenta/Magenta: "" +*fr.cupsMarkerName yellow/Jaune: "" +*fr.cupsMarkerName black/Noir: "" +*it.Translation Manufacturer/HP: "" +*it.Translation ModelName/HP Color LaserJet Pro M252: "" +*it.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*it.Translation NickName/HP Color LaserJet Pro M252: "" +*it.Translation PageSize/Dimensione media: "" +*it.PageSize Letter/US Letter: "" +*it.PageSize Legal/US Legal: "" +*it.PageSize Executive/Executive: "" +*it.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*it.PageSize 4x6/4x6: "" +*it.PageSize 5x8/5x8: "" +*it.PageSize A4/A4: "" +*it.PageSize A5/A5: "" +*it.PageSize A6/A6: "" +*it.PageSize B5/JIS B5: "" +*it.PageSize B6/JIS B6: "" +*it.PageSize Env4x6/10x15 cm: "" +*it.PageSize Oficio/Oficio 216x340 mm: "" +*it.PageSize 195x270mm/16K 195x270 mm: "" +*it.PageSize 184x260mm/16K 184x260 mm: "" +*it.PageSize 7.75x10.75/16K 197x273 mm: "" +*it.PageSize Postcard/Postcard: "" +*it.PageSize DoublePostcardRotated/Cartolina doppia Bordo lungo: "" +*it.PageSize Env10/Busta Comm10: "" +*it.PageSize EnvMonarch/Busta Monarch: "" +*it.PageSize EnvISOB5/Busta ISO B5: "" +*it.PageSize EnvC5/Busta C5: "" +*it.PageSize EnvDL/Busta DL: "" +*it.Translation Duplex/Fronte-retro: "" +*it.Duplex None/Disattivato: "" +*it.Duplex DuplexNoTumble/Rilegatura con taglio largo: "" +*it.Duplex DuplexTumble/Rilegatura con taglio stretto: "" +*it.Translation InputSlot/Alimentazione carta: "" +*it.InputSlot Tray1/Vassoio 1: "" +*it.InputSlot Tray2/Vassoio 2: "" +*it.InputSlot ManualFeed/Alimentazione manuale: "" +*it.Translation InstallableOptions/Installable Options: "" +*it.Translation HPOption_Duplexer/Accessorio per stampa duplex: "" +*it.HPOption_Duplexer True/Attivato: "" +*it.HPOption_Duplexer False/Disattivato: "" +*it.Translation HPColorOptionsPanel/Colore: "" +*it.Translation HPPJLColorAsGray/Stampa colore in grigio: "" +*it.HPPJLColorAsGray yes/Attivato: "" +*it.HPPJLColorAsGray no/Disattivato: "" +*it.Translation HPRGBEmulation/Colore RGB: "" +*it.HPRGBEmulation DefaultSRGB/Predefinito (sRGB): "" +*it.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*it.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*it.HPRGBEmulation VividSRGB/Brillante (sRGB): "" +*it.HPRGBEmulation HPRGBEmulationNone/Nessuna: "" +*it.Translation HPEdgeControl/Controllo margine: "" +*it.HPEdgeControl HPEdgeControlOff/Disattivato: "" +*it.HPEdgeControl Light/Chiaro: "" +*it.HPEdgeControl Normal/Normale: "" +*it.HPEdgeControl Max/Massimo: "" +*it.Translation HPGeneralHalftone/Mezzitoni: "" +*it.HPGeneralHalftone Smooth/Uniformi: "" +*it.HPGeneralHalftone Detail/Dettagli: "" +*it.Translation HPTextNeutralGrays/Grigi neutri testo: "" +*it.HPTextNeutralGrays Black/Solo nero: "" +*it.HPTextNeutralGrays ProcessBlack/Quadricromia: "" +*it.Translation HPGraphicsNeutralGrays/Grigi neutri grafici: "" +*it.HPGraphicsNeutralGrays Black/Solo nero: "" +*it.HPGraphicsNeutralGrays ProcessBlack/Quadricromia: "" +*it.Translation HPPhotoNeutralGrays/Grigi neutri fotografie: "" +*it.HPPhotoNeutralGrays Black/Solo nero: "" +*it.HPPhotoNeutralGrays ProcessBlack/Quadricromia: "" +*it.Translation HPPaperQualityPanel/Paper/Quality: "" +*it.Translation HPPJLEconoMode/EconoMode: "" +*it.HPPJLEconoMode True/Attivato: "" +*it.HPPJLEconoMode False/Disattivato: "" +*it.Translation MediaType/Tipo di supporto: "" +*it.MediaType Unspecified/Non specificato: "" +*it.MediaType Plain/Normale: "" +*it.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*it.MediaType HPLaserJet90/HP LaserJet 90g: "" +*it.MediaType HPColorLaserMatte105/Opaca a colori per stampanti laser HP 105g: "" +*it.MediaType HPPremiumChoiceMatte120/Opaca HP alta qualità 120g: "" +*it.MediaType HPBrochureMatte150/Brochure opaca 150g HP: "" +*it.MediaType HPCoverMatte200/Copertina opaca HP 200g: "" +*it.MediaType HPMattePhoto200/Fotografica opaca HP 200g: "" +*it.MediaType HPPremiumPresentationGlossy120/Presentazione lucida ad alta qualità 120g HP: "" +*it.MediaType HPBrochureGlossy150/Brochure lucida 150g HP: "" +*it.MediaType HPTrifoldBrochureGlossy150/Brochure lucida piegata in tre 150g HP: "" +*it.MediaType HPBrochureGlossy200/Brochure lucida 200g HP: "" +*it.MediaType Light6074/Leggera 60-74g: "" +*it.MediaType Intermediate8595/Intermedia 85-95g: "" +*it.MediaType MidWeight96110/Medio spessore 96-110g: "" +*it.MediaType Heavy111130/Pesante 111-130g: "" +*it.MediaType ExtraHeavy131175/Extra Pesante 131-175g: "" +*it.MediaType HeavyGlossy111130/Carta patinata pesante 111-130g: "" +*it.MediaType ExtraHeavyGlossy131175/Lucida pesante extra 131-175g: "" +*it.MediaType CardGlossy176220/Scheda lucida 176-220g: "" +*it.MediaType ColorLaserTransparency/Lucido per stampanti laser a colori: "" +*it.MediaType Labels/Etichette: "" +*it.MediaType Letterhead/Carta intestata: "" +*it.MediaType Envelope/Busta: "" +*it.MediaType HeavyEnvelope/Busta pesante: "" +*it.MediaType Preprinted/Prestampata: "" +*it.MediaType Prepunched/Perforata: "" +*it.MediaType Colored/Colorata: "" +*it.MediaType Bond/Carta fine: "" +*it.MediaType Recycled/Riciclata: "" +*it.MediaType Rough/Ruvida: "" +*it.MediaType HeavyRough/Ruvida pesante: "" +*it.MediaType OpaqueFilm/Pellicola opaca: "" +*it.APPrinterPreset ChartsAndGraphs/Diagrammi e grafici: "" +*it.cupsICCProfile RGB../sRGB Matching Profile: "" +*it.cupsICCProfile CMYK../CMYK Matching Profile: "" +*it.cupsICCProfile Gray../Gray Matching Profile: "" +*it.cupsMarkerName cyan/Ciano: "" +*it.cupsMarkerName magenta/Magenta: "" +*it.cupsMarkerName yellow/Giallo: "" +*it.cupsMarkerName black/Nero: "" +*ja.Translation Manufacturer/HP: "" +*ja.Translation ModelName/HP Color LaserJet Pro M252: "" +*ja.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*ja.Translation NickName/HP Color LaserJet Pro M252: "" +*ja.Translation PageSize/メディアサイズ: "" +*ja.PageSize Letter/US Letter: "" +*ja.PageSize Legal/US Legal: "" +*ja.PageSize Executive/エグゼクティブ: "" +*ja.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*ja.PageSize 4x6/4x6: "" +*ja.PageSize 5x8/5x8: "" +*ja.PageSize A4/A4: "" +*ja.PageSize A5/A5: "" +*ja.PageSize A6/A6: "" +*ja.PageSize B5/JIS B5: "" +*ja.PageSize B6/JIS B6: "" +*ja.PageSize Env4x6/10x15 cm: "" +*ja.PageSize Oficio/Oficio 216x340 mm: "" +*ja.PageSize 195x270mm/16K 195x270 mm: "" +*ja.PageSize 184x260mm/16K 184x260 mm: "" +*ja.PageSize 7.75x10.75/16K 197x273 mm: "" +*ja.PageSize Postcard/Postcard: "" +*ja.PageSize DoublePostcardRotated/往復はがき 横: "" +*ja.PageSize Env10/封筒 Comm10: "" +*ja.PageSize EnvMonarch/封筒 Monarch: "" +*ja.PageSize EnvISOB5/封筒 ISO B5: "" +*ja.PageSize EnvC5/封筒 C5: "" +*ja.PageSize EnvDL/封筒 DL: "" +*ja.Translation Duplex/両面: "" +*ja.Duplex None/オフ: "" +*ja.Duplex DuplexNoTumble/長辺とじ: "" +*ja.Duplex DuplexTumble/短辺とじ: "" +*ja.Translation InputSlot/給紙: "" +*ja.InputSlot Tray1/トレイ 1: "" +*ja.InputSlot Tray2/トレイ 2: "" +*ja.InputSlot ManualFeed/手差し: "" +*ja.Translation InstallableOptions/Installable Options: "" +*ja.Translation HPOption_Duplexer/両面印刷アクセサリ: "" +*ja.HPOption_Duplexer True/オン: "" +*ja.HPOption_Duplexer False/オフ: "" +*ja.Translation HPColorOptionsPanel/カラー: "" +*ja.Translation HPPJLColorAsGray/グレー印刷: "" +*ja.HPPJLColorAsGray yes/オン: "" +*ja.HPPJLColorAsGray no/オフ: "" +*ja.Translation HPRGBEmulation/RGB カラー: "" +*ja.HPRGBEmulation DefaultSRGB/デフォルト (sRGB): "" +*ja.HPRGBEmulation PhotoSRGB/フォト (sRGB): "" +*ja.HPRGBEmulation Adobe/フォト (Adobe RGB 1998): "" +*ja.HPRGBEmulation VividSRGB/鮮明 (sRGB): "" +*ja.HPRGBEmulation HPRGBEmulationNone/なし: "" +*ja.Translation HPEdgeControl/輪郭コントロール: "" +*ja.HPEdgeControl HPEdgeControlOff/オフ: "" +*ja.HPEdgeControl Light/薄い: "" +*ja.HPEdgeControl Normal/標準: "" +*ja.HPEdgeControl Max/最大: "" +*ja.Translation HPGeneralHalftone/ハーフトーン: "" +*ja.HPGeneralHalftone Smooth/テキスト: "" +*ja.HPGeneralHalftone Detail/詳細: "" +*ja.Translation HPTextNeutralGrays/テキスト グレー中間色: "" +*ja.HPTextNeutralGrays Black/黒のみ: "" +*ja.HPTextNeutralGrays ProcessBlack/4 色: "" +*ja.Translation HPGraphicsNeutralGrays/グラフィック グレー中間色: "" +*ja.HPGraphicsNeutralGrays Black/黒のみ: "" +*ja.HPGraphicsNeutralGrays ProcessBlack/4 色: "" +*ja.Translation HPPhotoNeutralGrays/写真グレー中間色: "" +*ja.HPPhotoNeutralGrays Black/黒のみ: "" +*ja.HPPhotoNeutralGrays ProcessBlack/4 色: "" +*ja.Translation HPPaperQualityPanel/Paper/Quality: "" +*ja.Translation HPPJLEconoMode/EconoMode: "" +*ja.HPPJLEconoMode True/オン: "" +*ja.HPPJLEconoMode False/オフ: "" +*ja.Translation MediaType/用紙の種類: "" +*ja.MediaType Unspecified/指定なし: "" +*ja.MediaType Plain/普通用紙: "" +*ja.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*ja.MediaType HPLaserJet90/HP レーザージェット用紙 90g: "" +*ja.MediaType HPColorLaserMatte105/HP カラーレーザー用紙 (つや消し) 105g: "" +*ja.MediaType HPPremiumChoiceMatte120/HP プレミアムチョイス (つや消し) 120g: "" +*ja.MediaType HPBrochureMatte150/HP ブローシャ用紙 (つや消し) 150g: "" +*ja.MediaType HPCoverMatte200/HP つや消し表紙用紙 200g: "" +*ja.MediaType HPMattePhoto200/HP つや消しフォト用紙 200g: "" +*ja.MediaType HPPremiumPresentationGlossy120/HP プレミアムプレゼンテーション用紙 (つや消し) 120g: "" +*ja.MediaType HPBrochureGlossy150/HP ブローシャ用紙 (光沢) 150g: "" +*ja.MediaType HPTrifoldBrochureGlossy150/HP 3 つ折りブローシャ用紙 (光沢) 150g: "" +*ja.MediaType HPBrochureGlossy200/HP ブローシャ用紙 (光沢) 200g: "" +*ja.MediaType Light6074/軽い用紙 60-74g: "" +*ja.MediaType Intermediate8595/中間 85-95g: "" +*ja.MediaType MidWeight96110/中厚手用紙 96-110g: "" +*ja.MediaType Heavy111130/重い用紙 111-130g: "" +*ja.MediaType ExtraHeavy131175/重い用紙 131-175g: "" +*ja.MediaType HeavyGlossy111130/厚手光沢紙 111-130g: "" +*ja.MediaType ExtraHeavyGlossy131175/超厚手光沢紙 131-175g: "" +*ja.MediaType CardGlossy176220/カード光沢紙 176-220g: "" +*ja.MediaType ColorLaserTransparency/カラーレーザー OHP フィルム: "" +*ja.MediaType Labels/ラベル: "" +*ja.MediaType Letterhead/レターヘッド付き: "" +*ja.MediaType Envelope/封筒: "" +*ja.MediaType HeavyEnvelope/厚手封筒: "" +*ja.MediaType Preprinted/印刷フォーム: "" +*ja.MediaType Prepunched/穴あき用紙: "" +*ja.MediaType Colored/カラー: "" +*ja.MediaType Bond/ボンド紙: "" +*ja.MediaType Recycled/再生紙: "" +*ja.MediaType Rough/ざら紙: "" +*ja.MediaType HeavyRough/厚手粗め用紙: "" +*ja.MediaType OpaqueFilm/不透明なフィルム: "" +*ja.APPrinterPreset ChartsAndGraphs/グラフと図: "" +*ja.cupsICCProfile RGB../sRGB Matching Profile: "" +*ja.cupsICCProfile CMYK../CMYK Matching Profile: "" +*ja.cupsICCProfile Gray../Gray Matching Profile: "" +*ja.cupsMarkerName cyan/シアン: "" +*ja.cupsMarkerName magenta/マゼンタ: "" +*ja.cupsMarkerName yellow/イエロー: "" +*ja.cupsMarkerName black/黒: "" +*ko.Translation Manufacturer/HP: "" +*ko.Translation ModelName/HP Color LaserJet Pro M252: "" +*ko.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*ko.Translation NickName/HP Color LaserJet Pro M252: "" +*ko.Translation PageSize/미디어 크기: "" +*ko.PageSize Letter/US Letter: "" +*ko.PageSize Legal/US Legal: "" +*ko.PageSize Executive/Executive: "" +*ko.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*ko.PageSize 4x6/4x6: "" +*ko.PageSize 5x8/5x8: "" +*ko.PageSize A4/A4: "" +*ko.PageSize A5/A5: "" +*ko.PageSize A6/A6: "" +*ko.PageSize B5/JIS B5: "" +*ko.PageSize B6/JIS B6: "" +*ko.PageSize Env4x6/10x15 cm: "" +*ko.PageSize Oficio/Oficio 216x340 mm: "" +*ko.PageSize 195x270mm/16K 195x270 mm: "" +*ko.PageSize 184x260mm/16K 184x260 mm: "" +*ko.PageSize 7.75x10.75/16K 197x273 mm: "" +*ko.PageSize Postcard/Postcard: "" +*ko.PageSize DoublePostcardRotated/엽서 Long Edge(양면): "" +*ko.PageSize Env10/Comm10 봉투: "" +*ko.PageSize EnvMonarch/Monarch 봉투: "" +*ko.PageSize EnvISOB5/ISO B5 봉투: "" +*ko.PageSize EnvC5/C5 봉투: "" +*ko.PageSize EnvDL/DL 봉투: "" +*ko.Translation Duplex/양면: "" +*ko.Duplex None/꺼짐: "" +*ko.Duplex DuplexNoTumble/긴-가장자리 제본선: "" +*ko.Duplex DuplexTumble/짧은-가장자리 제본선: "" +*ko.Translation InputSlot/용지 공급: "" +*ko.InputSlot Tray1/용지함 1: "" +*ko.InputSlot Tray2/용지함 2: "" +*ko.InputSlot ManualFeed/수동 급지: "" +*ko.Translation InstallableOptions/Installable Options: "" +*ko.Translation HPOption_Duplexer/양면 인쇄 부속품: "" +*ko.HPOption_Duplexer True/켜짐: "" +*ko.HPOption_Duplexer False/꺼짐: "" +*ko.Translation HPColorOptionsPanel/색상: "" +*ko.Translation HPPJLColorAsGray/컬러를 흑백음영으로 인쇄: "" +*ko.HPPJLColorAsGray yes/켜짐: "" +*ko.HPPJLColorAsGray no/꺼짐: "" +*ko.Translation HPRGBEmulation/RGB 색상: "" +*ko.HPRGBEmulation DefaultSRGB/기본값(sRGB): "" +*ko.HPRGBEmulation PhotoSRGB/사진(sRGB): "" +*ko.HPRGBEmulation Adobe/사진(Adobe RGB 1998): "" +*ko.HPRGBEmulation VividSRGB/선명하게 (sRGB): "" +*ko.HPRGBEmulation HPRGBEmulationNone/없음: "" +*ko.Translation HPEdgeControl/가장자리 제어: "" +*ko.HPEdgeControl HPEdgeControlOff/꺼짐: "" +*ko.HPEdgeControl Light/밝게: "" +*ko.HPEdgeControl Normal/보통: "" +*ko.HPEdgeControl Max/최대: "" +*ko.Translation HPGeneralHalftone/중간 색조: "" +*ko.HPGeneralHalftone Smooth/문장: "" +*ko.HPGeneralHalftone Detail/자세히: "" +*ko.Translation HPTextNeutralGrays/문장 순 회색: "" +*ko.HPTextNeutralGrays Black/흑색 전용: "" +*ko.HPTextNeutralGrays ProcessBlack/4색: "" +*ko.Translation HPGraphicsNeutralGrays/그래픽 순 회색: "" +*ko.HPGraphicsNeutralGrays Black/흑색 전용: "" +*ko.HPGraphicsNeutralGrays ProcessBlack/4색: "" +*ko.Translation HPPhotoNeutralGrays/사진 순말: "" +*ko.HPPhotoNeutralGrays Black/흑색 전용: "" +*ko.HPPhotoNeutralGrays ProcessBlack/4색: "" +*ko.Translation HPPaperQualityPanel/Paper/Quality: "" +*ko.Translation HPPJLEconoMode/EconoMode: "" +*ko.HPPJLEconoMode True/켜짐: "" +*ko.HPPJLEconoMode False/꺼짐: "" +*ko.Translation MediaType/용지 종류: "" +*ko.MediaType Unspecified/지정되지 않음: "" +*ko.MediaType Plain/일반용지: "" +*ko.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*ko.MediaType HPLaserJet90/HP LaserJet 90g: "" +*ko.MediaType HPColorLaserMatte105/HP Color Laser 무광 105g: "" +*ko.MediaType HPPremiumChoiceMatte120/HP 프리미엄 초이스 무광 120g: "" +*ko.MediaType HPBrochureMatte150/HP 무광택 브로셔 150g: "" +*ko.MediaType HPCoverMatte200/HP 표지 무광 200g: "" +*ko.MediaType HPMattePhoto200/HP 무광택 사진 200g: "" +*ko.MediaType HPPremiumPresentationGlossy120/HP 프리미엄 프리젠테이션 광택 120g: "" +*ko.MediaType HPBrochureGlossy150/HP 광택 브로셔 150g: "" +*ko.MediaType HPTrifoldBrochureGlossy150/HP 3중 접기 광택 브로셔 150g: "" +*ko.MediaType HPBrochureGlossy200/HP 광택 브로셔 200g: "" +*ko.MediaType Light6074/경량지 60-74g: "" +*ko.MediaType Intermediate8595/보통지 85-95g: "" +*ko.MediaType MidWeight96110/보통 중량지 96-110g: "" +*ko.MediaType Heavy111130/중량지 111-130g: "" +*ko.MediaType ExtraHeavy131175/초중량지 131-175g: "" +*ko.MediaType HeavyGlossy111130/광택 중량지 111-130g: "" +*ko.MediaType ExtraHeavyGlossy131175/고광택 용지 131-175g: "" +*ko.MediaType CardGlossy176220/인사장 유광 176-220g: "" +*ko.MediaType ColorLaserTransparency/Color Laser 투명 필름: "" +*ko.MediaType Labels/레이블: "" +*ko.MediaType Letterhead/레터헤드: "" +*ko.MediaType Envelope/봉투: "" +*ko.MediaType HeavyEnvelope/중량 봉투: "" +*ko.MediaType Preprinted/미리 인쇄: "" +*ko.MediaType Prepunched/천공 용지: "" +*ko.MediaType Colored/색상지: "" +*ko.MediaType Bond/본드지: "" +*ko.MediaType Recycled/재활용지: "" +*ko.MediaType Rough/거친 용지: "" +*ko.MediaType HeavyRough/중량 거친 용지: "" +*ko.MediaType OpaqueFilm/오파크 필름: "" +*ko.APPrinterPreset ChartsAndGraphs/차트 및 그래픽: "" +*ko.cupsICCProfile RGB../sRGB Matching Profile: "" +*ko.cupsICCProfile CMYK../CMYK Matching Profile: "" +*ko.cupsICCProfile Gray../Gray Matching Profile: "" +*ko.cupsMarkerName cyan/시안색: "" +*ko.cupsMarkerName magenta/마젠타색: "" +*ko.cupsMarkerName yellow/노랑색: "" +*ko.cupsMarkerName black/검정색: "" +*no.Translation Manufacturer/HP: "" +*no.Translation ModelName/HP Color LaserJet Pro M252: "" +*no.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*no.Translation NickName/HP Color LaserJet Pro M252: "" +*no.Translation PageSize/Papirstørrelse: "" +*no.PageSize Letter/US Letter: "" +*no.PageSize Legal/US Legal: "" +*no.PageSize Executive/Executive: "" +*no.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*no.PageSize 4x6/4x6: "" +*no.PageSize 5x8/5x8: "" +*no.PageSize A4/A4: "" +*no.PageSize A5/A5: "" +*no.PageSize A6/A6: "" +*no.PageSize B5/JIS B5: "" +*no.PageSize B6/JIS B6: "" +*no.PageSize Env4x6/10x15 cm: "" +*no.PageSize Oficio/Oficio 216x340 mm: "" +*no.PageSize 195x270mm/16K 195x270 mm: "" +*no.PageSize 184x260mm/16K 184x260 mm: "" +*no.PageSize 7.75x10.75/16K 197x273 mm: "" +*no.PageSize Postcard/Postcard: "" +*no.PageSize DoublePostcardRotated/Dobbelt postkort langside: "" +*no.PageSize Env10/Comm10-konvolutt: "" +*no.PageSize EnvMonarch/Monarch-konvolutt: "" +*no.PageSize EnvISOB5/B5-konvolutt: "" +*no.PageSize EnvC5/C5-konvolutt: "" +*no.PageSize EnvDL/DL-konvolutt: "" +*no.Translation Duplex/Tosidig: "" +*no.Duplex None/Av: "" +*no.Duplex DuplexNoTumble/Innbinding på langsiden: "" +*no.Duplex DuplexTumble/Innbinding på kortsiden: "" +*no.Translation InputSlot/Papirmating: "" +*no.InputSlot Tray1/Skuff 1: "" +*no.InputSlot Tray2/Skuff 2: "" +*no.InputSlot ManualFeed/Manuell mater: "" +*no.Translation InstallableOptions/Installable Options: "" +*no.Translation HPOption_Duplexer/Tosidig-enhet: "" +*no.HPOption_Duplexer True/På: "" +*no.HPOption_Duplexer False/Av: "" +*no.Translation HPColorOptionsPanel/Farge: "" +*no.Translation HPPJLColorAsGray/Skriv ut farger i grått: "" +*no.HPPJLColorAsGray yes/På: "" +*no.HPPJLColorAsGray no/Av: "" +*no.Translation HPRGBEmulation/RGB-farge: "" +*no.HPRGBEmulation DefaultSRGB/Standard (sRGB): "" +*no.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*no.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*no.HPRGBEmulation VividSRGB/Sterk (sRGB): "" +*no.HPRGBEmulation HPRGBEmulationNone/Ingen: "" +*no.Translation HPEdgeControl/Kantkontroll: "" +*no.HPEdgeControl HPEdgeControlOff/Av: "" +*no.HPEdgeControl Light/Lys: "" +*no.HPEdgeControl Normal/Normal: "" +*no.HPEdgeControl Max/Maksimum: "" +*no.Translation HPGeneralHalftone/Halvtone: "" +*no.HPGeneralHalftone Smooth/Jevn: "" +*no.HPGeneralHalftone Detail/Detaljert: "" +*no.Translation HPTextNeutralGrays/Tekst, nøytrale gråtoner: "" +*no.HPTextNeutralGrays Black/Bare svart: "" +*no.HPTextNeutralGrays ProcessBlack/4-fargers: "" +*no.Translation HPGraphicsNeutralGrays/Grafikk, nøytrale gråtoner: "" +*no.HPGraphicsNeutralGrays Black/Bare svart: "" +*no.HPGraphicsNeutralGrays ProcessBlack/4-fargers: "" +*no.Translation HPPhotoNeutralGrays/Foto, nøytrale gråtoner: "" +*no.HPPhotoNeutralGrays Black/Bare svart: "" +*no.HPPhotoNeutralGrays ProcessBlack/4-fargers: "" +*no.Translation HPPaperQualityPanel/Paper/Quality: "" +*no.Translation HPPJLEconoMode/EconoMode: "" +*no.HPPJLEconoMode True/På: "" +*no.HPPJLEconoMode False/Av: "" +*no.Translation MediaType/Utskriftsmateriale: "" +*no.MediaType Unspecified/Uspesifisert: "" +*no.MediaType Plain/Vanlig: "" +*no.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*no.MediaType HPLaserJet90/HP LaserJet 90g: "" +*no.MediaType HPColorLaserMatte105/HP Fargelaser matt, 105g: "" +*no.MediaType HPPremiumChoiceMatte120/HP Premium Choice matt, 120g: "" +*no.MediaType HPBrochureMatte150/HP-brosjyre, matt, 150g: "" +*no.MediaType HPCoverMatte200/HP Omslag matt, 200g: "" +*no.MediaType HPMattePhoto200/HP Matt foto 200g: "" +*no.MediaType HPPremiumPresentationGlossy120/HP Premium-presentasjon, glanset, 120g: "" +*no.MediaType HPBrochureGlossy150/HP-brosjyre, glanset, 150g: "" +*no.MediaType HPTrifoldBrochureGlossy150/HP-brosjyre, glanset, brettet i tre, 150g: "" +*no.MediaType HPBrochureGlossy200/HP-brosjyre, glanset, 200g: "" +*no.MediaType Light6074/Lys 60-74g: "" +*no.MediaType Intermediate8595/Middels 85-95g: "" +*no.MediaType MidWeight96110/Mellomtungt, 96-110g: "" +*no.MediaType Heavy111130/Tungt 111-130g: "" +*no.MediaType ExtraHeavy131175/Ekstra Tung 131-175g: "" +*no.MediaType HeavyGlossy111130/Tungt, glanset 111-130g: "" +*no.MediaType ExtraHeavyGlossy131175/Ekstra tykt og blankt 131-175g: "" +*no.MediaType CardGlossy176220/Kort glanset, 176-220g: "" +*no.MediaType ColorLaserTransparency/Transpar. for fargelaser: "" +*no.MediaType Labels/Etiketter: "" +*no.MediaType Letterhead/Brevhode: "" +*no.MediaType Envelope/Konvolutt: "" +*no.MediaType HeavyEnvelope/Tung konvolutt: "" +*no.MediaType Preprinted/Forhåndstrykt: "" +*no.MediaType Prepunched/Hullark: "" +*no.MediaType Colored/Farget: "" +*no.MediaType Bond/Brevpapir: "" +*no.MediaType Recycled/Resirkulert: "" +*no.MediaType Rough/Grovt: "" +*no.MediaType HeavyRough/Tungt grovt: "" +*no.MediaType OpaqueFilm/Opak film: "" +*no.APPrinterPreset ChartsAndGraphs/Diagrammer og grafikk: "" +*no.cupsICCProfile RGB../sRGB Matching Profile: "" +*no.cupsICCProfile CMYK../CMYK Matching Profile: "" +*no.cupsICCProfile Gray../Gray Matching Profile: "" +*no.cupsMarkerName cyan/Cyan: "" +*no.cupsMarkerName magenta/Magenta: "" +*no.cupsMarkerName yellow/Gul: "" +*no.cupsMarkerName black/Svart: "" +*nl.Translation Manufacturer/HP: "" +*nl.Translation ModelName/HP Color LaserJet Pro M252: "" +*nl.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*nl.Translation NickName/HP Color LaserJet Pro M252: "" +*nl.Translation PageSize/Materiaalgrootte: "" +*nl.PageSize Letter/US Letter: "" +*nl.PageSize Legal/US Legal: "" +*nl.PageSize Executive/Executive: "" +*nl.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*nl.PageSize 4x6/4x6: "" +*nl.PageSize 5x8/5x8: "" +*nl.PageSize A4/A4: "" +*nl.PageSize A5/A5: "" +*nl.PageSize A6/A6: "" +*nl.PageSize B5/JIS B5: "" +*nl.PageSize B6/JIS B6: "" +*nl.PageSize Env4x6/10x15 cm: "" +*nl.PageSize Oficio/Oficio 216x340 mm: "" +*nl.PageSize 195x270mm/16K 195x270 mm: "" +*nl.PageSize 184x260mm/16K 184x260 mm: "" +*nl.PageSize 7.75x10.75/16K 197x273 mm: "" +*nl.PageSize Postcard/Postcard: "" +*nl.PageSize DoublePostcardRotated/Briefkaart (dubbel) lange kant: "" +*nl.PageSize Env10/Comm10-envelop: "" +*nl.PageSize EnvMonarch/Monarch-envelop: "" +*nl.PageSize EnvISOB5/ISO B5-envelop: "" +*nl.PageSize EnvC5/C5-envelop: "" +*nl.PageSize EnvDL/DL-envelop: "" +*nl.Translation Duplex/Dubbelzijdig: "" +*nl.Duplex None/Uit: "" +*nl.Duplex DuplexNoTumble/Lange kant binden: "" +*nl.Duplex DuplexTumble/Korte kant binden: "" +*nl.Translation InputSlot/Papierinvoer: "" +*nl.InputSlot Tray1/Lade 1: "" +*nl.InputSlot Tray2/Lade 2: "" +*nl.InputSlot ManualFeed/Handinvoer: "" +*nl.Translation InstallableOptions/Installable Options: "" +*nl.Translation HPOption_Duplexer/Duplexeenheid: "" +*nl.HPOption_Duplexer True/Aan: "" +*nl.HPOption_Duplexer False/Uit: "" +*nl.Translation HPColorOptionsPanel/Kleur: "" +*nl.Translation HPPJLColorAsGray/Kleuren afdr. in grijs: "" +*nl.HPPJLColorAsGray yes/Aan: "" +*nl.HPPJLColorAsGray no/Uit: "" +*nl.Translation HPRGBEmulation/RGB-kleur: "" +*nl.HPRGBEmulation DefaultSRGB/Standaard (sRGB): "" +*nl.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*nl.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*nl.HPRGBEmulation VividSRGB/Levendig (sRGB): "" +*nl.HPRGBEmulation HPRGBEmulationNone/Geen: "" +*nl.Translation HPEdgeControl/Randverbetering: "" +*nl.HPEdgeControl HPEdgeControlOff/Uit: "" +*nl.HPEdgeControl Light/Licht: "" +*nl.HPEdgeControl Normal/Normaal: "" +*nl.HPEdgeControl Max/Maximaal: "" +*nl.Translation HPGeneralHalftone/Halftonen: "" +*nl.HPGeneralHalftone Smooth/Gelijkmatig: "" +*nl.HPGeneralHalftone Detail/Gedetailleerd: "" +*nl.Translation HPTextNeutralGrays/Tekst in neutraal grijs: "" +*nl.HPTextNeutralGrays Black/Alleen zwart: "" +*nl.HPTextNeutralGrays ProcessBlack/4-kleuren: "" +*nl.Translation HPGraphicsNeutralGrays/Afbeeld. in neutraal grijs: "" +*nl.HPGraphicsNeutralGrays Black/Alleen zwart: "" +*nl.HPGraphicsNeutralGrays ProcessBlack/4-kleuren: "" +*nl.Translation HPPhotoNeutralGrays/Foto's in neutraal grijs: "" +*nl.HPPhotoNeutralGrays Black/Alleen zwart: "" +*nl.HPPhotoNeutralGrays ProcessBlack/4-kleuren: "" +*nl.Translation HPPaperQualityPanel/Paper/Quality: "" +*nl.Translation HPPJLEconoMode/EconoMode: "" +*nl.HPPJLEconoMode True/Aan: "" +*nl.HPPJLEconoMode False/Uit: "" +*nl.Translation MediaType/Type afdrukmateriaal: "" +*nl.MediaType Unspecified/Onbekend: "" +*nl.MediaType Plain/Gewoon: "" +*nl.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*nl.MediaType HPLaserJet90/HP LaserJet 90g: "" +*nl.MediaType HPColorLaserMatte105/HP Color Laser, Mat 105g: "" +*nl.MediaType HPPremiumChoiceMatte120/HP Premium Choice, Mat 120g: "" +*nl.MediaType HPBrochureMatte150/HP mat brochurepapier 150g: "" +*nl.MediaType HPCoverMatte200/HP Omslagpapier, Mat 200g: "" +*nl.MediaType HPMattePhoto200/HP Fotopapier, Mat 200g: "" +*nl.MediaType HPPremiumPresentationGlossy120/HP Premium glanzend presentatiepapier 120g: "" +*nl.MediaType HPBrochureGlossy150/HP glanzend brochurepapier 150g: "" +*nl.MediaType HPTrifoldBrochureGlossy150/HP in drieën gevouwen glanzend brochurepapier 150g: "" +*nl.MediaType HPBrochureGlossy200/HP glanzend brochurepapier 200g: "" +*nl.MediaType Light6074/Licht 60-74g: "" +*nl.MediaType Intermediate8595/Intermediate 85-95g: "" +*nl.MediaType MidWeight96110/Middengewicht 96-110g: "" +*nl.MediaType Heavy111130/Zwaar 111-130g: "" +*nl.MediaType ExtraHeavy131175/Extra Zwaar 131-175g: "" +*nl.MediaType HeavyGlossy111130/Zwaarglanzend 111-130g: "" +*nl.MediaType ExtraHeavyGlossy131175/Extra zwaar glanzend 131-175g: "" +*nl.MediaType CardGlossy176220/Karton, Glanzend 176-220g: "" +*nl.MediaType ColorLaserTransparency/Transparant voor kleurenlaser: "" +*nl.MediaType Labels/Etiketten: "" +*nl.MediaType Letterhead/Briefpapier: "" +*nl.MediaType Envelope/Enveloppen: "" +*nl.MediaType HeavyEnvelope/Zware envelop: "" +*nl.MediaType Preprinted/Voorbedrukt: "" +*nl.MediaType Prepunched/Geperforeerd: "" +*nl.MediaType Colored/Gekleurd: "" +*nl.MediaType Bond/Bankpost: "" +*nl.MediaType Recycled/Gerecycled: "" +*nl.MediaType Rough/Ruw: "" +*nl.MediaType HeavyRough/Zwaar ruw: "" +*nl.MediaType OpaqueFilm/Ondoorzichtige film: "" +*nl.APPrinterPreset ChartsAndGraphs/Tabellen en grafieken: "" +*nl.cupsICCProfile RGB../sRGB Matching Profile: "" +*nl.cupsICCProfile CMYK../CMYK Matching Profile: "" +*nl.cupsICCProfile Gray../Gray Matching Profile: "" +*nl.cupsMarkerName cyan/Cyaan: "" +*nl.cupsMarkerName magenta/Magenta: "" +*nl.cupsMarkerName yellow/Geel: "" +*nl.cupsMarkerName black/Zwart: "" +*pt.Translation Manufacturer/HP: "" +*pt.Translation ModelName/HP Color LaserJet Pro M252: "" +*pt.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*pt.Translation NickName/HP Color LaserJet Pro M252: "" +*pt.Translation PageSize/Tamanho de Mídia: "" +*pt.PageSize Letter/US Letter: "" +*pt.PageSize Legal/US Legal: "" +*pt.PageSize Executive/Executivo: "" +*pt.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*pt.PageSize 4x6/4x6: "" +*pt.PageSize 5x8/5x8: "" +*pt.PageSize A4/A4: "" +*pt.PageSize A5/A5: "" +*pt.PageSize A6/A6: "" +*pt.PageSize B5/JIS B5: "" +*pt.PageSize B6/JIS B6: "" +*pt.PageSize Env4x6/10x15 cm: "" +*pt.PageSize Oficio/Oficio 216x340 mm: "" +*pt.PageSize 195x270mm/16K 195x270 mm: "" +*pt.PageSize 184x260mm/16K 184x260 mm: "" +*pt.PageSize 7.75x10.75/16K 197x273 mm: "" +*pt.PageSize Postcard/Postcard: "" +*pt.PageSize DoublePostcardRotated/Cartão-Postal Duplo Margem Longa: "" +*pt.PageSize Env10/Envelope Comm10: "" +*pt.PageSize EnvMonarch/Envelope Monarch: "" +*pt.PageSize EnvISOB5/Envelope B5: "" +*pt.PageSize EnvC5/Envelope C5: "" +*pt.PageSize EnvDL/Envelope DL: "" +*pt.Translation Duplex/Frente e verso: "" +*pt.Duplex None/Desativado: "" +*pt.Duplex DuplexNoTumble/Encadernação com Margem Longa: "" +*pt.Duplex DuplexTumble/Encadernação com Margem Curta: "" +*pt.Translation InputSlot/Alimentação de Papel: "" +*pt.InputSlot Tray1/Bandeja 1: "" +*pt.InputSlot Tray2/Bandeja 2: "" +*pt.InputSlot ManualFeed/Alimentação manual: "" +*pt.Translation InstallableOptions/Installable Options: "" +*pt.Translation HPOption_Duplexer/Unidade dúplex: "" +*pt.HPOption_Duplexer True/Ativado: "" +*pt.HPOption_Duplexer False/Desativado: "" +*pt.Translation HPColorOptionsPanel/Cor: "" +*pt.Translation HPPJLColorAsGray/Imprimir cor como cinza: "" +*pt.HPPJLColorAsGray yes/Ativado: "" +*pt.HPPJLColorAsGray no/Desativado: "" +*pt.Translation HPRGBEmulation/Cor RGB: "" +*pt.HPRGBEmulation DefaultSRGB/Padrão (sRGB): "" +*pt.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*pt.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*pt.HPRGBEmulation VividSRGB/Víva (sRGB): "" +*pt.HPRGBEmulation HPRGBEmulationNone/Nenhum: "" +*pt.Translation HPEdgeControl/Controle de margem: "" +*pt.HPEdgeControl HPEdgeControlOff/Desativado: "" +*pt.HPEdgeControl Light/Claro: "" +*pt.HPEdgeControl Normal/Normal: "" +*pt.HPEdgeControl Max/Máximo: "" +*pt.Translation HPGeneralHalftone/Meio-tom: "" +*pt.HPGeneralHalftone Smooth/Nivelado: "" +*pt.HPGeneralHalftone Detail/Detalhes: "" +*pt.Translation HPTextNeutralGrays/Texto em cinzas neutros: "" +*pt.HPTextNeutralGrays Black/Somente em preto: "" +*pt.HPTextNeutralGrays ProcessBlack/4 cores: "" +*pt.Translation HPGraphicsNeutralGrays/Gráfico em cinzas neutros: "" +*pt.HPGraphicsNeutralGrays Black/Somente em preto: "" +*pt.HPGraphicsNeutralGrays ProcessBlack/4 cores: "" +*pt.Translation HPPhotoNeutralGrays/Foto em cinzas neutros: "" +*pt.HPPhotoNeutralGrays Black/Somente em preto: "" +*pt.HPPhotoNeutralGrays ProcessBlack/4 cores: "" +*pt.Translation HPPaperQualityPanel/Paper/Quality: "" +*pt.Translation HPPJLEconoMode/EconoMode: "" +*pt.HPPJLEconoMode True/Ativado: "" +*pt.HPPJLEconoMode False/Desativado: "" +*pt.Translation MediaType/Tipo de mídia: "" +*pt.MediaType Unspecified/Não especificado: "" +*pt.MediaType Plain/Comum: "" +*pt.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*pt.MediaType HPLaserJet90/HP LaserJet 90g: "" +*pt.MediaType HPColorLaserMatte105/HP Color Laser 105g, fosco: "" +*pt.MediaType HPPremiumChoiceMatte120/HP Premium Choice fosco, 120g: "" +*pt.MediaType HPBrochureMatte150/Brochura HP fosco, 150g: "" +*pt.MediaType HPCoverMatte200/HP Cover 200g, fosco: "" +*pt.MediaType HPMattePhoto200/Fotogr. HP fosco, 200g: "" +*pt.MediaType HPPremiumPresentationGlossy120/Apresentação Premium brilhante HP 120g: "" +*pt.MediaType HPBrochureGlossy150/Brochura HP brilhante, 150g: "" +*pt.MediaType HPTrifoldBrochureGlossy150/Brochura HP brilhante com três dobras, 150g: "" +*pt.MediaType HPBrochureGlossy200/Brochura HP brilhante, 200g: "" +*pt.MediaType Light6074/Leve 60-74g: "" +*pt.MediaType Intermediate8595/Intermedio 85-95g: "" +*pt.MediaType MidWeight96110/Semipesado 96-110g: "" +*pt.MediaType Heavy111130/Pesado 111-130g: "" +*pt.MediaType ExtraHeavy131175/Extrapesado 131-175g: "" +*pt.MediaType HeavyGlossy111130/Espesso brilhante 111-130g: "" +*pt.MediaType ExtraHeavyGlossy131175/Brilhante com gramatura extra 131-175g: "" +*pt.MediaType CardGlossy176220/Cartão brilhante, 176-220g: "" +*pt.MediaType ColorLaserTransparency/Transpar. laser a cores: "" +*pt.MediaType Labels/Etiquetas: "" +*pt.MediaType Letterhead/Timbrado: "" +*pt.MediaType Envelope/Envelope: "" +*pt.MediaType HeavyEnvelope/Envelope pesado: "" +*pt.MediaType Preprinted/Pré-impresso: "" +*pt.MediaType Prepunched/Perfurado: "" +*pt.MediaType Colored/Colorido: "" +*pt.MediaType Bond/Superbond: "" +*pt.MediaType Recycled/Reciclado: "" +*pt.MediaType Rough/Áspero: "" +*pt.MediaType HeavyRough/Áspero pesado: "" +*pt.MediaType OpaqueFilm/Filme opaco: "" +*pt.APPrinterPreset ChartsAndGraphs/Tabelas e gráficos: "" +*pt.cupsICCProfile RGB../sRGB Matching Profile: "" +*pt.cupsICCProfile CMYK../CMYK Matching Profile: "" +*pt.cupsICCProfile Gray../Gray Matching Profile: "" +*pt.cupsMarkerName cyan/Ciano: "" +*pt.cupsMarkerName magenta/Magenta: "" +*pt.cupsMarkerName yellow/Amarelo: "" +*pt.cupsMarkerName black/Preto: "" +*ru.Translation Manufacturer/HP: "" +*ru.Translation ModelName/HP Color LaserJet Pro M252: "" +*ru.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*ru.Translation NickName/HP Color LaserJet Pro M252: "" +*ru.Translation PageSize/Размер бумаги: "" +*ru.PageSize Letter/US Letter: "" +*ru.PageSize Legal/US Legal: "" +*ru.PageSize Executive/Executive: "" +*ru.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*ru.PageSize 4x6/4 x 6: "" +*ru.PageSize 5x8/5 x 8: "" +*ru.PageSize A4/A4: "" +*ru.PageSize A5/A5: "" +*ru.PageSize A6/A6: "" +*ru.PageSize B5/JIS B5: "" +*ru.PageSize B6/JIS B6: "" +*ru.PageSize Env4x6/10 x 15 см: "" +*ru.PageSize Oficio/Oficio 216x340 mm: "" +*ru.PageSize 195x270mm/16K 195 x 270 мм: "" +*ru.PageSize 184x260mm/16K 184 x 260 мм: "" +*ru.PageSize 7.75x10.75/16K 197 x 273 мм: "" +*ru.PageSize Postcard/Postcard: "" +*ru.PageSize DoublePostcardRotated/Postcard Double Long Edge: "" +*ru.PageSize Env10/Конверт Comm10: "" +*ru.PageSize EnvMonarch/Конверт Monarch: "" +*ru.PageSize EnvISOB5/Конверт B5: "" +*ru.PageSize EnvC5/Конверт C5: "" +*ru.PageSize EnvDL/Конверт DL: "" +*ru.Translation Duplex/Двусторонняя: "" +*ru.Duplex None/Выкл.: "" +*ru.Duplex DuplexNoTumble/Прошивка вдоль длинного края: "" +*ru.Duplex DuplexTumble/Прошивка вдоль короткого края: "" +*ru.Translation InputSlot/Подача бумаги: "" +*ru.InputSlot Tray1/Лоток 1: "" +*ru.InputSlot Tray2/Лоток 2: "" +*ru.InputSlot ManualFeed/Ручная подача: "" +*ru.Translation InstallableOptions/Installable Options: "" +*ru.Translation HPOption_Duplexer/Модуль дуплекса: "" +*ru.HPOption_Duplexer True/Вкл.: "" +*ru.HPOption_Duplexer False/Выкл.: "" +*ru.Translation HPColorOptionsPanel/Цвет: "" +*ru.Translation HPPJLColorAsGray/Печать цвета серым: "" +*ru.HPPJLColorAsGray yes/Вкл.: "" +*ru.HPPJLColorAsGray no/Выкл.: "" +*ru.Translation HPRGBEmulation/Цвет RGB: "" +*ru.HPRGBEmulation DefaultSRGB/По умолчанию (sRGB): "" +*ru.HPRGBEmulation PhotoSRGB/Фото (sRGB): "" +*ru.HPRGBEmulation Adobe/Фото (Adobe RGB 1998): "" +*ru.HPRGBEmulation VividSRGB/Яркое (sRGB): "" +*ru.HPRGBEmulation HPRGBEmulationNone/Нет: "" +*ru.Translation HPEdgeControl/Контроль края: "" +*ru.HPEdgeControl HPEdgeControlOff/Выкл.: "" +*ru.HPEdgeControl Light/Светлый: "" +*ru.HPEdgeControl Normal/Обычное: "" +*ru.HPEdgeControl Max/Максимум: "" +*ru.Translation HPGeneralHalftone/Полутона: "" +*ru.HPGeneralHalftone Smooth/Гладкое: "" +*ru.HPGeneralHalftone Detail/Детальное: "" +*ru.Translation HPTextNeutralGrays/Нейтр. серый (текст): "" +*ru.HPTextNeutralGrays Black/Только черный: "" +*ru.HPTextNeutralGrays ProcessBlack/Четырехцветный: "" +*ru.Translation HPGraphicsNeutralGrays/Нейтр. серый (граф.): "" +*ru.HPGraphicsNeutralGrays Black/Только черный: "" +*ru.HPGraphicsNeutralGrays ProcessBlack/Четырехцветный: "" +*ru.Translation HPPhotoNeutralGrays/Нейтр. серый (фото): "" +*ru.HPPhotoNeutralGrays Black/Только черный: "" +*ru.HPPhotoNeutralGrays ProcessBlack/Четырехцветный: "" +*ru.Translation HPPaperQualityPanel/Paper/Quality: "" +*ru.Translation HPPJLEconoMode/EconoMode: "" +*ru.HPPJLEconoMode True/Вкл.: "" +*ru.HPPJLEconoMode False/Выкл.: "" +*ru.Translation MediaType/Тип носителя: "" +*ru.MediaType Unspecified/Не указано: "" +*ru.MediaType Plain/Обычная бумага: "" +*ru.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*ru.MediaType HPLaserJet90/HP LaserJet 90г: "" +*ru.MediaType HPColorLaserMatte105/HP для цветной лазерной печати, матовая 105г: "" +*ru.MediaType HPPremiumChoiceMatte120/HP повышенного качества, матовая 120г: "" +*ru.MediaType HPBrochureMatte150/Бумага HP для брошюр, матовая, 150г: "" +*ru.MediaType HPCoverMatte200/Бумага HP для обложек, матовая 200г: "" +*ru.MediaType HPMattePhoto200/Матовая фотобумага HP 200г: "" +*ru.MediaType HPPremiumPresentationGlossy120/Бум. HP повыш. кач. для презентаций, глянц. 120г: "" +*ru.MediaType HPBrochureGlossy150/Бумага HP для брошюр, глянцевая, 150г: "" +*ru.MediaType HPTrifoldBrochureGlossy150/Бум. HP для склад-х в 3 слоя брошюр, глянц. 150г: "" +*ru.MediaType HPBrochureGlossy200/Бумага HP для брошюр, глянцевая, 200г: "" +*ru.MediaType Light6074/Легкая 60-74г: "" +*ru.MediaType Intermediate8595/Прокладка 85-95г: "" +*ru.MediaType MidWeight96110/Среднеплотная 96-110г: "" +*ru.MediaType Heavy111130/Плотная 111-130г: "" +*ru.MediaType ExtraHeavy131175/Сверхплотная 131-175г: "" +*ru.MediaType HeavyGlossy111130/Плотная глянцевая 111-130г: "" +*ru.MediaType ExtraHeavyGlossy131175/Сверхплотная глянцевая 131-175г: "" +*ru.MediaType CardGlossy176220/Бумага для открыток, глянцевая 176-220г: "" +*ru.MediaType ColorLaserTransparency/Прозрачная пленка для цветн. лазер. печати: "" +*ru.MediaType Labels/Этикетки: "" +*ru.MediaType Letterhead/Фирменный бланк: "" +*ru.MediaType Envelope/Конверт: "" +*ru.MediaType HeavyEnvelope/Плотный конверт: "" +*ru.MediaType Preprinted/Печатный бланк: "" +*ru.MediaType Prepunched/Перфорированная бумага: "" +*ru.MediaType Colored/Цветная: "" +*ru.MediaType Bond/Высокосортная: "" +*ru.MediaType Recycled/Бумага из вторсырья: "" +*ru.MediaType Rough/Грубая бумага: "" +*ru.MediaType HeavyRough/Плотная грубая: "" +*ru.MediaType OpaqueFilm/Непрозрачный диапозитив: "" +*ru.APPrinterPreset ChartsAndGraphs/Диаграммы и графики: "" +*ru.cupsICCProfile RGB../sRGB Matching Profile: "" +*ru.cupsICCProfile CMYK../CMYK Matching Profile: "" +*ru.cupsICCProfile Gray../Gray Matching Profile: "" +*ru.cupsMarkerName cyan/Голубой: "" +*ru.cupsMarkerName magenta/Пурпурный: "" +*ru.cupsMarkerName yellow/Желтый: "" +*ru.cupsMarkerName black/Черный: "" +*sv.Translation Manufacturer/HP: "" +*sv.Translation ModelName/HP Color LaserJet Pro M252: "" +*sv.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*sv.Translation NickName/HP Color LaserJet Pro M252: "" +*sv.Translation PageSize/Mediestorlek: "" +*sv.PageSize Letter/US Letter: "" +*sv.PageSize Legal/US Legal: "" +*sv.PageSize Executive/Executive: "" +*sv.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*sv.PageSize 4x6/4x6: "" +*sv.PageSize 5x8/5x8: "" +*sv.PageSize A4/A4: "" +*sv.PageSize A5/A5: "" +*sv.PageSize A6/A6: "" +*sv.PageSize B5/JIS B5: "" +*sv.PageSize B6/JIS B6: "" +*sv.PageSize Env4x6/10x15 cm: "" +*sv.PageSize Oficio/Oficio 216x340 mm: "" +*sv.PageSize 195x270mm/16K 195x270 mm: "" +*sv.PageSize 184x260mm/16K 184x260 mm: "" +*sv.PageSize 7.75x10.75/16K 197x273 mm: "" +*sv.PageSize Postcard/Postcard: "" +*sv.PageSize DoublePostcardRotated/Vykort - dubbel med lång kant: "" +*sv.PageSize Env10/Comm10-kuvert: "" +*sv.PageSize EnvMonarch/Monarch-kuvert: "" +*sv.PageSize EnvISOB5/ISO B5-kuvert: "" +*sv.PageSize EnvC5/C5-kuvert: "" +*sv.PageSize EnvDL/DL-kuvert: "" +*sv.Translation Duplex/Dubbelsidig: "" +*sv.Duplex None/Av: "" +*sv.Duplex DuplexNoTumble/Häftning långsida: "" +*sv.Duplex DuplexTumble/Häftning kortsida: "" +*sv.Translation InputSlot/Pappersmatare: "" +*sv.InputSlot Tray1/Fack 1: "" +*sv.InputSlot Tray2/Fack 2: "" +*sv.InputSlot ManualFeed/Manuell matning: "" +*sv.Translation InstallableOptions/Installable Options: "" +*sv.Translation HPOption_Duplexer/Tillbehör för dubbelsidig utskrift: "" +*sv.HPOption_Duplexer True/På: "" +*sv.HPOption_Duplexer False/Av: "" +*sv.Translation HPColorOptionsPanel/Färg: "" +*sv.Translation HPPJLColorAsGray/Skriv ut färg i grått: "" +*sv.HPPJLColorAsGray yes/På: "" +*sv.HPPJLColorAsGray no/Av: "" +*sv.Translation HPRGBEmulation/RGB-färg: "" +*sv.HPRGBEmulation DefaultSRGB/Standard (sRGB): "" +*sv.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*sv.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*sv.HPRGBEmulation VividSRGB/Stark (sRGB): "" +*sv.HPRGBEmulation HPRGBEmulationNone/Inget: "" +*sv.Translation HPEdgeControl/Kantkontroll: "" +*sv.HPEdgeControl HPEdgeControlOff/Av: "" +*sv.HPEdgeControl Light/Ljus: "" +*sv.HPEdgeControl Normal/Normal: "" +*sv.HPEdgeControl Max/Högst: "" +*sv.Translation HPGeneralHalftone/Halvton: "" +*sv.HPGeneralHalftone Smooth/Jämnt: "" +*sv.HPGeneralHalftone Detail/Detalj: "" +*sv.Translation HPTextNeutralGrays/Text neutral grå: "" +*sv.HPTextNeutralGrays Black/Endast svart: "" +*sv.HPTextNeutralGrays ProcessBlack/4-färg: "" +*sv.Translation HPGraphicsNeutralGrays/Bilder neutral grå: "" +*sv.HPGraphicsNeutralGrays Black/Endast svart: "" +*sv.HPGraphicsNeutralGrays ProcessBlack/4-färg: "" +*sv.Translation HPPhotoNeutralGrays/Foto neutral grå: "" +*sv.HPPhotoNeutralGrays Black/Endast svart: "" +*sv.HPPhotoNeutralGrays ProcessBlack/4-färg: "" +*sv.Translation HPPaperQualityPanel/Paper/Quality: "" +*sv.Translation HPPJLEconoMode/EconoMode: "" +*sv.HPPJLEconoMode True/På: "" +*sv.HPPJLEconoMode False/Av: "" +*sv.Translation MediaType/Material: "" +*sv.MediaType Unspecified/Ospecificerad: "" +*sv.MediaType Plain/Vanligt: "" +*sv.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*sv.MediaType HPLaserJet90/HP LaserJet 90g: "" +*sv.MediaType HPColorLaserMatte105/HP Color Laser, matt 105g: "" +*sv.MediaType HPPremiumChoiceMatte120/HP Premium Choice, matt 120g: "" +*sv.MediaType HPBrochureMatte150/HP-broschyr, matt 150g: "" +*sv.MediaType HPCoverMatte200/HP omslag, matt 200g: "" +*sv.MediaType HPMattePhoto200/HP matt foto 200g: "" +*sv.MediaType HPPremiumPresentationGlossy120/HP Premium presentation, glättat, 120g: "" +*sv.MediaType HPBrochureGlossy150/HP-broschyr, glättat, 150g: "" +*sv.MediaType HPTrifoldBrochureGlossy150/HP trippelvikt broschyr, glättat, 150g: "" +*sv.MediaType HPBrochureGlossy200/HP-broschyr, glättat, 200g: "" +*sv.MediaType Light6074/Lätt 60-74g: "" +*sv.MediaType Intermediate8595/Medelvikt 85-95g: "" +*sv.MediaType MidWeight96110/Mellanvikt 96-110g: "" +*sv.MediaType Heavy111130/Tungt 111-130g: "" +*sv.MediaType ExtraHeavy131175/Extra Tungt 131-175g: "" +*sv.MediaType HeavyGlossy111130/Tungt glättat 111-130g: "" +*sv.MediaType ExtraHeavyGlossy131175/Extra tungt glättat 131-175g: "" +*sv.MediaType CardGlossy176220/Kort, glättat 176-220g: "" +*sv.MediaType ColorLaserTransparency/Färglaser OH-film: "" +*sv.MediaType Labels/Etiketter: "" +*sv.MediaType Letterhead/Brevpapper: "" +*sv.MediaType Envelope/Kuvert: "" +*sv.MediaType HeavyEnvelope/Tungt kuvert: "" +*sv.MediaType Preprinted/Förtryckt: "" +*sv.MediaType Prepunched/Hålat: "" +*sv.MediaType Colored/Färgat: "" +*sv.MediaType Bond/Finpapper: "" +*sv.MediaType Recycled/Returpapper: "" +*sv.MediaType Rough/Grovt: "" +*sv.MediaType HeavyRough/Tungt grovt: "" +*sv.MediaType OpaqueFilm/Ej genomskinlig film: "" +*sv.APPrinterPreset ChartsAndGraphs/Diagram och grafik: "" +*sv.cupsICCProfile RGB../sRGB Matching Profile: "" +*sv.cupsICCProfile CMYK../CMYK Matching Profile: "" +*sv.cupsICCProfile Gray../Gray Matching Profile: "" +*sv.cupsMarkerName cyan/Cyan: "" +*sv.cupsMarkerName magenta/Magenta: "" +*sv.cupsMarkerName yellow/Gul: "" +*sv.cupsMarkerName black/Svart: "" +*zh_CN.Translation Manufacturer/HP: "" +*zh_CN.Translation ModelName/HP Color LaserJet Pro M252: "" +*zh_CN.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*zh_CN.Translation NickName/HP Color LaserJet Pro M252: "" +*zh_CN.Translation PageSize/介质大小: "" +*zh_CN.PageSize Letter/US Letter: "" +*zh_CN.PageSize Legal/US Legal: "" +*zh_CN.PageSize Executive/Executive: "" +*zh_CN.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*zh_CN.PageSize 4x6/4x6: "" +*zh_CN.PageSize 5x8/5x8: "" +*zh_CN.PageSize A4/A4: "" +*zh_CN.PageSize A5/A5: "" +*zh_CN.PageSize A6/A6: "" +*zh_CN.PageSize B5/JIS B5: "" +*zh_CN.PageSize B6/JIS B6: "" +*zh_CN.PageSize Env4x6/10x15 厘米: "" +*zh_CN.PageSize Oficio/Oficio 216x340 mm: "" +*zh_CN.PageSize 195x270mm/16K 195x270 毫米: "" +*zh_CN.PageSize 184x260mm/16K 184x260 毫米: "" +*zh_CN.PageSize 7.75x10.75/16K 197x273 毫米: "" +*zh_CN.PageSize Postcard/Postcard: "" +*zh_CN.PageSize DoublePostcardRotated/明信片-双面长边: "" +*zh_CN.PageSize Env10/信封 Comm10: "" +*zh_CN.PageSize EnvMonarch/信封 Monarch: "" +*zh_CN.PageSize EnvISOB5/信封 ISO B5: "" +*zh_CN.PageSize EnvC5/信封 C5: "" +*zh_CN.PageSize EnvDL/信封 DL: "" +*zh_CN.Translation Duplex/双面打印: "" +*zh_CN.Duplex None/关: "" +*zh_CN.Duplex DuplexNoTumble/长边装订: "" +*zh_CN.Duplex DuplexTumble/短边装订: "" +*zh_CN.Translation InputSlot/送纸: "" +*zh_CN.InputSlot Tray1/纸盒 1: "" +*zh_CN.InputSlot Tray2/纸盒 2: "" +*zh_CN.InputSlot ManualFeed/手动进纸: "" +*zh_CN.Translation InstallableOptions/Installable Options: "" +*zh_CN.Translation HPOption_Duplexer/双面打印附件: "" +*zh_CN.HPOption_Duplexer True/开: "" +*zh_CN.HPOption_Duplexer False/关: "" +*zh_CN.Translation HPColorOptionsPanel/颜色: "" +*zh_CN.Translation HPPJLColorAsGray/打印颜色为灰色: "" +*zh_CN.HPPJLColorAsGray yes/开: "" +*zh_CN.HPPJLColorAsGray no/关: "" +*zh_CN.Translation HPRGBEmulation/RGB 颜色: "" +*zh_CN.HPRGBEmulation DefaultSRGB/默认 (sRGB): "" +*zh_CN.HPRGBEmulation PhotoSRGB/照片 (sRGB): "" +*zh_CN.HPRGBEmulation Adobe/照片 (Adobe RGB 1998): "" +*zh_CN.HPRGBEmulation VividSRGB/鲜明 (sRGB): "" +*zh_CN.HPRGBEmulation HPRGBEmulationNone/无: "" +*zh_CN.Translation HPEdgeControl/边缘控制: "" +*zh_CN.HPEdgeControl HPEdgeControlOff/关: "" +*zh_CN.HPEdgeControl Light/淡: "" +*zh_CN.HPEdgeControl Normal/正常: "" +*zh_CN.HPEdgeControl Max/最大: "" +*zh_CN.Translation HPGeneralHalftone/半色调: "" +*zh_CN.HPGeneralHalftone Smooth/文本: "" +*zh_CN.HPGeneralHalftone Detail/细节: "" +*zh_CN.Translation HPTextNeutralGrays/文本中性灰色: "" +*zh_CN.HPTextNeutralGrays Black/仅限黑色: "" +*zh_CN.HPTextNeutralGrays ProcessBlack/4 色: "" +*zh_CN.Translation HPGraphicsNeutralGrays/图形中性灰色: "" +*zh_CN.HPGraphicsNeutralGrays Black/仅限黑色: "" +*zh_CN.HPGraphicsNeutralGrays ProcessBlack/4 色: "" +*zh_CN.Translation HPPhotoNeutralGrays/照片中性灰色: "" +*zh_CN.HPPhotoNeutralGrays Black/仅限黑色: "" +*zh_CN.HPPhotoNeutralGrays ProcessBlack/4 色: "" +*zh_CN.Translation HPPaperQualityPanel/Paper/Quality: "" +*zh_CN.Translation HPPJLEconoMode/EconoMode: "" +*zh_CN.HPPJLEconoMode True/开: "" +*zh_CN.HPPJLEconoMode False/关: "" +*zh_CN.Translation MediaType/介质类型: "" +*zh_CN.MediaType Unspecified/未指定: "" +*zh_CN.MediaType Plain/普通纸: "" +*zh_CN.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*zh_CN.MediaType HPLaserJet90/HP LaserJet 90 克纸: "" +*zh_CN.MediaType HPColorLaserMatte105/HP 彩色激光无光泽纸 105g: "" +*zh_CN.MediaType HPPremiumChoiceMatte120/HP 优选无光泽纸 120g: "" +*zh_CN.MediaType HPBrochureMatte150/HP 小册子磨砂纸 150g: "" +*zh_CN.MediaType HPCoverMatte200/HP 无光泽封面纸 200g: "" +*zh_CN.MediaType HPMattePhoto200/HP 无光泽照片纸 200g: "" +*zh_CN.MediaType HPPremiumPresentationGlossy120/HP 高级演示用光泽纸 120g: "" +*zh_CN.MediaType HPBrochureGlossy150/HP 小册子光泽纸 150g: "" +*zh_CN.MediaType HPTrifoldBrochureGlossy150/HP 三折小册子光泽纸 150g: "" +*zh_CN.MediaType HPBrochureGlossy200/HP 小册子光泽纸 200g: "" +*zh_CN.MediaType Light6074/轻磅 60-74g: "" +*zh_CN.MediaType Intermediate8595/光面纸 85-95g: "" +*zh_CN.MediaType MidWeight96110/中等重量纸 96-110g: "" +*zh_CN.MediaType Heavy111130/重磅 111-130g: "" +*zh_CN.MediaType ExtraHeavy131175/超级重磅纸 131-175g: "" +*zh_CN.MediaType HeavyGlossy111130/重磅光泽纸 111-130g: "" +*zh_CN.MediaType ExtraHeavyGlossy131175/超重磅光泽纸 131-175g: "" +*zh_CN.MediaType CardGlossy176220/光泽卡片 176-220g: "" +*zh_CN.MediaType ColorLaserTransparency/彩色激光投影胶片: "" +*zh_CN.MediaType Labels/标签: "" +*zh_CN.MediaType Letterhead/信头纸: "" +*zh_CN.MediaType Envelope/信封: "" +*zh_CN.MediaType HeavyEnvelope/重磅信封: "" +*zh_CN.MediaType Preprinted/预先打印纸: "" +*zh_CN.MediaType Prepunched/预先打孔纸: "" +*zh_CN.MediaType Colored/彩纸: "" +*zh_CN.MediaType Bond/证券纸: "" +*zh_CN.MediaType Recycled/再生纸: "" +*zh_CN.MediaType Rough/粗糙: "" +*zh_CN.MediaType HeavyRough/重磅粗糙纸: "" +*zh_CN.MediaType OpaqueFilm/不透明胶片: "" +*zh_CN.APPrinterPreset ChartsAndGraphs/图表和图形: "" +*zh_CN.cupsICCProfile RGB../sRGB Matching Profile: "" +*zh_CN.cupsICCProfile CMYK../CMYK Matching Profile: "" +*zh_CN.cupsICCProfile Gray../Gray Matching Profile: "" +*zh_CN.cupsMarkerName cyan/青色: "" +*zh_CN.cupsMarkerName magenta/品红色: "" +*zh_CN.cupsMarkerName yellow/黄色: "" +*zh_CN.cupsMarkerName black/黑色: "" +*zh_TW.Translation Manufacturer/HP: "" +*zh_TW.Translation ModelName/HP Color LaserJet Pro M252: "" +*zh_TW.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*zh_TW.Translation NickName/HP Color LaserJet Pro M252: "" +*zh_TW.Translation PageSize/媒體大小: "" +*zh_TW.PageSize Letter/US Letter: "" +*zh_TW.PageSize Legal/US Legal: "" +*zh_TW.PageSize Executive/Executive: "" +*zh_TW.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*zh_TW.PageSize 4x6/4x6: "" +*zh_TW.PageSize 5x8/5x8: "" +*zh_TW.PageSize A4/A4: "" +*zh_TW.PageSize A5/A5: "" +*zh_TW.PageSize A6/A6: "" +*zh_TW.PageSize B5/JIS B5: "" +*zh_TW.PageSize B6/JIS B6: "" +*zh_TW.PageSize Env4x6/10x15 厘米: "" +*zh_TW.PageSize Oficio/Oficio 216x340 mm: "" +*zh_TW.PageSize 195x270mm/16K 195x270 公釐: "" +*zh_TW.PageSize 184x260mm/16K 184x260 公釐: "" +*zh_TW.PageSize 7.75x10.75/16K 197x273 公釐: "" +*zh_TW.PageSize Postcard/Postcard: "" +*zh_TW.PageSize DoublePostcardRotated/雙倍大小明信片長邊: "" +*zh_TW.PageSize Env10/Comm10 信封: "" +*zh_TW.PageSize EnvMonarch/Monarch 信封: "" +*zh_TW.PageSize EnvISOB5/ISO B5 信封: "" +*zh_TW.PageSize EnvC5/C5 信封: "" +*zh_TW.PageSize EnvDL/DL 信封: "" +*zh_TW.Translation Duplex/雙面: "" +*zh_TW.Duplex None/關閉: "" +*zh_TW.Duplex DuplexNoTumble/沿長邊裝訂: "" +*zh_TW.Duplex DuplexTumble/沿短邊裝訂: "" +*zh_TW.Translation InputSlot/送紙匣: "" +*zh_TW.InputSlot Tray1/1 號紙匣: "" +*zh_TW.InputSlot Tray2/2 號紙匣: "" +*zh_TW.InputSlot ManualFeed/手動進紙: "" +*zh_TW.Translation InstallableOptions/Installable Options: "" +*zh_TW.Translation HPOption_Duplexer/雙面列印裝置: "" +*zh_TW.HPOption_Duplexer True/開啟: "" +*zh_TW.HPOption_Duplexer False/關閉: "" +*zh_TW.Translation HPColorOptionsPanel/色彩: "" +*zh_TW.Translation HPPJLColorAsGray/用灰色列印彩色: "" +*zh_TW.HPPJLColorAsGray yes/開啟: "" +*zh_TW.HPPJLColorAsGray no/關閉: "" +*zh_TW.Translation HPRGBEmulation/RGB 色彩: "" +*zh_TW.HPRGBEmulation DefaultSRGB/預設 (sRGB): "" +*zh_TW.HPRGBEmulation PhotoSRGB/相紙 (sRGB): "" +*zh_TW.HPRGBEmulation Adobe/相紙 (Adobe RGB 1998): "" +*zh_TW.HPRGBEmulation VividSRGB/鮮明 (sRGB): "" +*zh_TW.HPRGBEmulation HPRGBEmulationNone/無: "" +*zh_TW.Translation HPEdgeControl/邊緣控制: "" +*zh_TW.HPEdgeControl HPEdgeControlOff/關閉: "" +*zh_TW.HPEdgeControl Light/淡: "" +*zh_TW.HPEdgeControl Normal/正常: "" +*zh_TW.HPEdgeControl Max/最大: "" +*zh_TW.Translation HPGeneralHalftone/半色調: "" +*zh_TW.HPGeneralHalftone Smooth/文字: "" +*zh_TW.HPGeneralHalftone Detail/細節: "" +*zh_TW.Translation HPTextNeutralGrays/文字中性灰色: "" +*zh_TW.HPTextNeutralGrays Black/純黑色: "" +*zh_TW.HPTextNeutralGrays ProcessBlack/4 色: "" +*zh_TW.Translation HPGraphicsNeutralGrays/圖形中性灰色: "" +*zh_TW.HPGraphicsNeutralGrays Black/純黑色: "" +*zh_TW.HPGraphicsNeutralGrays ProcessBlack/4 色: "" +*zh_TW.Translation HPPhotoNeutralGrays/照片中性灰色: "" +*zh_TW.HPPhotoNeutralGrays Black/純黑色: "" +*zh_TW.HPPhotoNeutralGrays ProcessBlack/4 色: "" +*zh_TW.Translation HPPaperQualityPanel/Paper/Quality: "" +*zh_TW.Translation HPPJLEconoMode/EconoMode: "" +*zh_TW.HPPJLEconoMode True/開啟: "" +*zh_TW.HPPJLEconoMode False/關閉: "" +*zh_TW.Translation MediaType/媒體類型: "" +*zh_TW.MediaType Unspecified/未指定: "" +*zh_TW.MediaType Plain/素面紙: "" +*zh_TW.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*zh_TW.MediaType HPLaserJet90/HP LaserJet 90 克紙: "" +*zh_TW.MediaType HPColorLaserMatte105/HP 彩色雷射霧面紙 105g: "" +*zh_TW.MediaType HPPremiumChoiceMatte120/HP 高級霧面紙 120g: "" +*zh_TW.MediaType HPBrochureMatte150/HP 霧面型錄紙 150g: "" +*zh_TW.MediaType HPCoverMatte200/HP 霧面封面紙 200g: "" +*zh_TW.MediaType HPMattePhoto200/HP 霧面相紙 200g: "" +*zh_TW.MediaType HPPremiumPresentationGlossy120/HP 高級光面簡報紙 120g: "" +*zh_TW.MediaType HPBrochureGlossy150/HP 光面型錄紙 150g: "" +*zh_TW.MediaType HPTrifoldBrochureGlossy150/HP 光面三摺型錄紙 150g: "" +*zh_TW.MediaType HPBrochureGlossy200/HP 光面型錄紙 200g: "" +*zh_TW.MediaType Light6074/輕磅紙 60-74g: "" +*zh_TW.MediaType Intermediate8595/嫖醱祧 85-95g: "" +*zh_TW.MediaType MidWeight96110/中磅紙 96-110g: "" +*zh_TW.MediaType Heavy111130/重磅紙 111-130g: "" +*zh_TW.MediaType ExtraHeavy131175/超重磅紙 131-175g: "" +*zh_TW.MediaType HeavyGlossy111130/重磅光面紙 111-130g: "" +*zh_TW.MediaType ExtraHeavyGlossy131175/超厚光滑紙 131-175g: "" +*zh_TW.MediaType CardGlossy176220/光面賀卡紙 176-220g: "" +*zh_TW.MediaType ColorLaserTransparency/彩色雷射投影片: "" +*zh_TW.MediaType Labels/標籤: "" +*zh_TW.MediaType Letterhead/信頭紙: "" +*zh_TW.MediaType Envelope/信封: "" +*zh_TW.MediaType HeavyEnvelope/重磅信封: "" +*zh_TW.MediaType Preprinted/預印的: "" +*zh_TW.MediaType Prepunched/打孔過的: "" +*zh_TW.MediaType Colored/彩紙: "" +*zh_TW.MediaType Bond/雪銅紙: "" +*zh_TW.MediaType Recycled/再生紙: "" +*zh_TW.MediaType Rough/粗糙紙: "" +*zh_TW.MediaType HeavyRough/重磅粗糙紙: "" +*zh_TW.MediaType OpaqueFilm/不透明膠片: "" +*zh_TW.APPrinterPreset ChartsAndGraphs/圖表和圖形: "" +*zh_TW.cupsICCProfile RGB../sRGB Matching Profile: "" +*zh_TW.cupsICCProfile CMYK../CMYK Matching Profile: "" +*zh_TW.cupsICCProfile Gray../Gray Matching Profile: "" +*zh_TW.cupsMarkerName cyan/青藍色: "" +*zh_TW.cupsMarkerName magenta/洋紅色: "" +*zh_TW.cupsMarkerName yellow/黃色: "" +*zh_TW.cupsMarkerName black/黑色: "" +*DefaultFont: Courier +*Font Albertus-ExtraBold: Standard "(001.001)" Standard ROM +*Font Albertus-Medium: Standard "(001.001)" Standard ROM +*Font AntiqueOlive: Standard "(001.001)" Standard ROM +*Font AntiqueOlive-Bold: Standard "(001.001)" Standard ROM +*Font AntiqueOlive-Italic: Standard "(001.001)" Standard ROM +*Font Arial: Standard "(001.001)" Standard ROM +*Font Arial-Bold: Standard "(001.001)" Standard ROM +*Font Arial-BoldItalic: Standard "(001.001)" Standard ROM +*Font Arial-Italic: Standard "(001.001)" Standard ROM +*Font AvantGarde-Book: Standard "(001.001)" Standard ROM +*Font AvantGarde-BookOblique: Standard "(001.001)" Standard ROM +*Font AvantGarde-Demi: Standard "(001.001)" Standard ROM +*Font AvantGarde-DemiOblique: Standard "(001.001)" Standard ROM +*Font Bookman-Demi: Standard "(001.001)" Standard ROM +*Font Bookman-DemiItalic: Standard "(001.001)" Standard ROM +*Font Bookman-Light: Standard "(001.001)" Standard ROM +*Font Bookman-LightItalic: Standard "(001.001)" Standard ROM +*Font BookmanCE-Demi: Win1250 "(001.001)" ExtendedRoman ROM +*Font BookmanCE-DemiItalic: Win1250 "(001.001)" ExtendedRoman ROM +*Font BookmanCE-Light: Win1250 "(001.001)" ExtendedRoman ROM +*Font BookmanCE-LightItalic: Win1250 "(001.001)" ExtendedRoman ROM +*Font CGOmega: Standard "(001.001)" Standard ROM +*Font CGOmega-Bold: Standard "(001.001)" Standard ROM +*Font CGOmega-BoldItalic: Standard "(001.001)" Standard ROM +*Font CGOmega-Italic: Standard "(001.001)" Standard ROM +*Font CGTimes: Standard "(001.001)" Standard ROM +*Font CGTimes-Bold: Standard "(001.001)" Standard ROM +*Font CGTimes-BoldItalic: Standard "(001.001)" Standard ROM +*Font CGTimes-Italic: Standard "(001.001)" Standard ROM +*Font Clarendon-Condensed-Bold: Standard "(001.001)" Standard ROM +*Font Coronet: Standard "(001.001)" Standard ROM +*Font Courier: Standard "(001.001)" Standard ROM +*Font Courier-Bold: Standard "(001.001)" Standard ROM +*Font Courier-BoldOblique: Standard "(001.001)" Standard ROM +*Font Courier-Oblique: Standard "(001.001)" Standard ROM +*Font CourierHP: Standard "(001.001)" Standard ROM +*Font CourierHP-Bold: Standard "(001.001)" Standard ROM +*Font CourierHP-BoldItalic: Standard "(001.001)" Standard ROM +*Font CourierHP-Italic: Standard "(001.001)" Standard ROM +*Font Garamond-Antiqua: Standard "(001.001)" Standard ROM +*Font Garamond-Halbfett: Standard "(001.001)" Standard ROM +*Font Garamond-Kursiv: Standard "(001.001)" Standard ROM +*Font Garamond-KursivHalbfett: Standard "(001.001)" Standard ROM +*Font Helvetica: Standard "(001.001)" Standard ROM +*Font Helvetica-Bold: Standard "(001.001)" Standard ROM +*Font Helvetica-BoldOblique: Standard "(001.001)" Standard ROM +*Font Helvetica-Narrow: Standard "(001.001)" Standard ROM +*Font Helvetica-Narrow-Bold: Standard "(001.001)" Standard ROM +*Font Helvetica-Narrow-BoldOblique: Standard "(001.001)" Standard ROM +*Font Helvetica-Narrow-Oblique: Standard "(001.001)" Standard ROM +*Font Helvetica-Oblique: Standard "(001.001)" Standard ROM +*Font LetterGothic: Standard "(001.001)" Standard ROM +*Font LetterGothic-Bold: Standard "(001.001)" Standard ROM +*Font LetterGothic-Italic: Standard "(001.001)" Standard ROM +*Font Marigold: Standard "(001.001)" Standard ROM +*Font NewCenturySchlbk-Bold: Standard "(001.001)" Standard ROM +*Font NewCenturySchlbk-BoldItalic: Standard "(001.001)" Standard ROM +*Font NewCenturySchlbk-Italic: Standard "(001.001)" Standard ROM +*Font NewCenturySchlbk-Roman: Standard "(001.001)" Standard ROM +*Font Palatino-Bold: Standard "(001.001)" Standard ROM +*Font Palatino-BoldItalic: Standard "(001.001)" Standard ROM +*Font Palatino-Italic: Standard "(001.001)" Standard ROM +*Font Palatino-Roman: Standard "(001.001)" Standard ROM +*Font Symbol: Special "(001.001)" Special ROM +*Font SymbolMT: Standard "(001.001)" Standard ROM +*Font Times-Bold: Standard "(001.001)" Standard ROM +*Font Times-BoldItalic: Standard "(001.001)" Standard ROM +*Font Times-Italic: Standard "(001.001)" Standard ROM +*Font Times-Roman: Standard "(001.001)" Standard ROM +*Font TimesNewRoman: Standard "(001.001)" Standard ROM +*Font TimesNewRoman-Bold: Standard "(001.001)" Standard ROM +*Font TimesNewRoman-BoldItalic: Standard "(001.001)" Standard ROM +*Font TimesNewRoman-Italic: Standard "(001.001)" Standard ROM +*Font Univers-Bold: Standard "(001.001)" Standard ROM +*Font Univers-BoldItalic: Standard "(001.001)" Standard ROM +*Font Univers-Condensed-Bold: Standard "(001.001)" Standard ROM +*Font Univers-Condensed-BoldItalic: Standard "(001.001)" Standard ROM +*Font Univers-Condensed-Medium: Standard "(001.001)" Standard ROM +*Font Univers-Condensed-MediumItalic: Standard "(001.001)" Standard ROM +*Font Univers-Medium: Standard "(001.001)" Standard ROM +*Font Univers-MediumItalic: Standard "(001.001)" Standard ROM +*Font Wingdings-Regular: Special "(001.001)" Special ROM +*Font Wingdings-Regular: Standard "(001.001)" Standard ROM +*Font ZapfChancery-MediumItalic: Standard "(001.001)" Standard ROM +*Font ZapfDingbats: Special "(001.001)" Special ROM +*% End of HPP00052.PPD, 211422 bytes. diff --git a/configfiles/etc/cups/ppd/Salle225.ppd.O b/configfiles/etc/cups/ppd/Salle225.ppd.O new file mode 100644 index 0000000..6dacded --- /dev/null +++ b/configfiles/etc/cups/ppd/Salle225.ppd.O @@ -0,0 +1,237 @@ +*PPD-Adobe: "4.3" +*%%%% PPD file for HP LaserJet p2015n Series with CUPS. +*%%%% Created by the CUPS PPD Compiler CUPS v1.6.2. +*% (c) 2008 Copyright Hewlett-Packard Development Company, LP +*FormatVersion: "4.3" +*FileVersion: "3.13.5" +*LanguageVersion: English +*LanguageEncoding: ISOLatin1 +*PCFileName: "hp-laserjet_p2015n_series.ppd" +*Product: "(HP LaserJet p2015n Printer)" +*Manufacturer: "HP" +*ModelName: "HP LaserJet p2015n Series" +*ShortNickName: "HP LaserJet p2015n Series" +*NickName: "HP LaserJet p2015n Series, hpcups 3.13.5" +*PSVersion: "(3010.000) 0" +*LanguageLevel: "3" +*ColorDevice: True +*DefaultColorSpace: RGB +*FileSystem: False +*Throughput: "1" +*LandscapeOrientation: Plus90 +*TTRasterizer: Type42 +*% Driver-defined attributes... +*RequiresPageRegion All: True +*cupsEvenDuplex: True +*hpPrinterLanguage: "ljmono" +*cupsModelName: "HP LaserJet" +*1284DeviceID: "MFG:HP;MDL:hp laserjet p2015n series;DES:hp laserjet p2015n series;" +*cupsVersion: 1.6 +*cupsModelNumber: 0 +*cupsManualCopies: True +*cupsFilter: "application/vnd.cups-raster 0 hpcups" +*cupsLanguages: "en" +*OpenUI *PageSize/Media Size: PickOne +*OrderDependency: 10 AnySetup *PageSize +*DefaultPageSize: A4 +*PageSize Card3x5/Index Card 3x5in: "<>setpagedevice" +*PageSize Hagaki/Hagaki 100x148mm: "<>setpagedevice" +*PageSize Photo4x6/Photo 4x6in: "<>setpagedevice" +*PageSize A6/A6 105x148mm: "<>setpagedevice" +*PageSize Photo5x7/Photo 5x7in: "<>setpagedevice" +*PageSize Card5x8/Index Card 5x8in: "<>setpagedevice" +*PageSize Oufuku/Oufuku-Hagaki 148x200mm: "<>setpagedevice" +*PageSize A5/A5 148x210mm: "<>setpagedevice" +*PageSize B5/B5 176x250mm: "<>setpagedevice" +*PageSize JB5/JB5 182x257mm: "<>setpagedevice" +*PageSize Executive/Executive 7.25x10.5in: "<>setpagedevice" +*PageSize 16k/16k 7.75x10.75in: "<>setpagedevice" +*PageSize Letter/Letter 8.5x11in: "<>setpagedevice" +*PageSize A4/A4 210x297mm: "<>setpagedevice" +*PageSize ExecutiveJIS/Executive (JIS) 8.5x12.986in: "<>setpagedevice" +*PageSize FLSA/American Foolscap 8.5x13in: "<>setpagedevice" +*PageSize Legal/Legal 8.5x14in: "<>setpagedevice" +*PageSize EnvA2/A2 Envelope 4.37x5.75in: "<>setpagedevice" +*PageSize EnvC6/C6 Envelope 114x162mm: "<>setpagedevice" +*PageSize EnvChou4/#4 Japanese Envelope 90x205mm: "<>setpagedevice" +*PageSize EnvMonarch/Monarch Envelope 3.875x7.5in: "<>setpagedevice" +*PageSize EnvDL/DL Envelope 110x220mm: "<>setpagedevice" +*PageSize Env10/#10 Envelope 4.12x9.5in: "<>setpagedevice" +*PageSize EnvChou3/#3 Japanese Envelope 120x235mm: "<>setpagedevice" +*PageSize EnvC5/C5 Envelope 162x229mm: "<>setpagedevice" +*PageSize EnvB5/B5 Envelope 176x250mm: "<>setpagedevice" +*CloseUI: *PageSize +*OpenUI *PageRegion/Media Size: PickOne +*OrderDependency: 10 AnySetup *PageRegion +*DefaultPageRegion: A4 +*PageRegion Card3x5/Index Card 3x5in: "<>setpagedevice" +*PageRegion Hagaki/Hagaki 100x148mm: "<>setpagedevice" +*PageRegion Photo4x6/Photo 4x6in: "<>setpagedevice" +*PageRegion A6/A6 105x148mm: "<>setpagedevice" +*PageRegion Photo5x7/Photo 5x7in: "<>setpagedevice" +*PageRegion Card5x8/Index Card 5x8in: "<>setpagedevice" +*PageRegion Oufuku/Oufuku-Hagaki 148x200mm: "<>setpagedevice" +*PageRegion A5/A5 148x210mm: "<>setpagedevice" +*PageRegion B5/B5 176x250mm: "<>setpagedevice" +*PageRegion JB5/JB5 182x257mm: "<>setpagedevice" +*PageRegion Executive/Executive 7.25x10.5in: "<>setpagedevice" +*PageRegion 16k/16k 7.75x10.75in: "<>setpagedevice" +*PageRegion Letter/Letter 8.5x11in: "<>setpagedevice" +*PageRegion A4/A4 210x297mm: "<>setpagedevice" +*PageRegion ExecutiveJIS/Executive (JIS) 8.5x12.986in: "<>setpagedevice" +*PageRegion FLSA/American Foolscap 8.5x13in: "<>setpagedevice" +*PageRegion Legal/Legal 8.5x14in: "<>setpagedevice" +*PageRegion EnvA2/A2 Envelope 4.37x5.75in: "<>setpagedevice" +*PageRegion EnvC6/C6 Envelope 114x162mm: "<>setpagedevice" +*PageRegion EnvChou4/#4 Japanese Envelope 90x205mm: "<>setpagedevice" +*PageRegion EnvMonarch/Monarch Envelope 3.875x7.5in: "<>setpagedevice" +*PageRegion EnvDL/DL Envelope 110x220mm: "<>setpagedevice" +*PageRegion Env10/#10 Envelope 4.12x9.5in: "<>setpagedevice" +*PageRegion EnvChou3/#3 Japanese Envelope 120x235mm: "<>setpagedevice" +*PageRegion EnvC5/C5 Envelope 162x229mm: "<>setpagedevice" +*PageRegion EnvB5/B5 Envelope 176x250mm: "<>setpagedevice" +*CloseUI: *PageRegion +*DefaultImageableArea: A4 +*ImageableArea Card3x5/Index Card 3x5in: "18 14 198 346" +*ImageableArea Hagaki/Hagaki 100x148mm: "18 14 266 406" +*ImageableArea Photo4x6/Photo 4x6in: "18 14 270 418" +*ImageableArea A6/A6 105x148mm: "18 14 279.359985351562 405.760009765625" +*ImageableArea Photo5x7/Photo 5x7in: "18 14 342 490" +*ImageableArea Card5x8/Index Card 5x8in: "18 14 342 562" +*ImageableArea Oufuku/Oufuku-Hagaki 148x200mm: "18 14 549 406" +*ImageableArea A5/A5 148x210mm: "18 14 401.760009765625 581.440002441406" +*ImageableArea B5/B5 176x250mm: "18 14 480.959991455078 694.47998046875" +*ImageableArea JB5/JB5 182x257mm: "18 14 498.239990234375 714.640014648438" +*ImageableArea Executive/Executive 7.25x10.5in: "18 14 504 742" +*ImageableArea 16k/16k 7.75x10.75in: "18 14 540 760" +*ImageableArea Letter/Letter 8.5x11in: "18 14 594 778" +*ImageableArea A4/A4 210x297mm: "18 14 577.440002441406 827.679992675781" +*ImageableArea ExecutiveJIS/Executive (JIS) 8.5x12.986in: "18 14 594 922" +*ImageableArea FLSA/American Foolscap 8.5x13in: "18 14 594 922" +*ImageableArea Legal/Legal 8.5x14in: "18 14 594 994" +*ImageableArea EnvA2/A2 Envelope 4.37x5.75in: "18 14 296.640014648438 400" +*ImageableArea EnvC6/C6 Envelope 114x162mm: "18 14 305.279998779297 445.359985351562" +*ImageableArea EnvChou4/#4 Japanese Envelope 90x205mm: "18 14 236.880004882812 567.039978027344" +*ImageableArea EnvMonarch/Monarch Envelope 3.875x7.5in: "18 14 261 526" +*ImageableArea EnvDL/DL Envelope 110x220mm: "18 14 293.760009765625 609.52001953125" +*ImageableArea Env10/#10 Envelope 4.12x9.5in: "18 14 279 670" +*ImageableArea EnvChou3/#3 Japanese Envelope 120x235mm: "18 14 321.839996337891 652" +*ImageableArea EnvC5/C5 Envelope 162x229mm: "18 14 441 635" +*ImageableArea EnvB5/B5 Envelope 176x250mm: "18 14 481 695" +*DefaultPaperDimension: A4 +*PaperDimension Card3x5/Index Card 3x5in: "216 360" +*PaperDimension Hagaki/Hagaki 100x148mm: "284 420" +*PaperDimension Photo4x6/Photo 4x6in: "288 432" +*PaperDimension A6/A6 105x148mm: "297.359985351562 419.760009765625" +*PaperDimension Photo5x7/Photo 5x7in: "360 504" +*PaperDimension Card5x8/Index Card 5x8in: "360 576" +*PaperDimension Oufuku/Oufuku-Hagaki 148x200mm: "567 420" +*PaperDimension A5/A5 148x210mm: "419.760009765625 595.440002441406" +*PaperDimension B5/B5 176x250mm: "498.959991455078 708.47998046875" +*PaperDimension JB5/JB5 182x257mm: "516.239990234375 728.640014648438" +*PaperDimension Executive/Executive 7.25x10.5in: "522 756" +*PaperDimension 16k/16k 7.75x10.75in: "558 774" +*PaperDimension Letter/Letter 8.5x11in: "612 792" +*PaperDimension A4/A4 210x297mm: "595.440002441406 841.679992675781" +*PaperDimension ExecutiveJIS/Executive (JIS) 8.5x12.986in: "612 936" +*PaperDimension FLSA/American Foolscap 8.5x13in: "612 936" +*PaperDimension Legal/Legal 8.5x14in: "612 1008" +*PaperDimension EnvA2/A2 Envelope 4.37x5.75in: "314.640014648438 414" +*PaperDimension EnvC6/C6 Envelope 114x162mm: "323.279998779297 459.359985351562" +*PaperDimension EnvChou4/#4 Japanese Envelope 90x205mm: "254.880004882812 581.039978027344" +*PaperDimension EnvMonarch/Monarch Envelope 3.875x7.5in: "279 540" +*PaperDimension EnvDL/DL Envelope 110x220mm: "311.760009765625 623.52001953125" +*PaperDimension Env10/#10 Envelope 4.12x9.5in: "297 684" +*PaperDimension EnvChou3/#3 Japanese Envelope 120x235mm: "339.839996337891 666" +*PaperDimension EnvC5/C5 Envelope 162x229mm: "459 649" +*PaperDimension EnvB5/B5 Envelope 176x250mm: "499 709" +*MaxMediaWidth: "612" +*MaxMediaHeight: "1008" +*HWMargins: 18 14 18 14 +*CustomPageSize True: "pop pop pop <>setpagedevice" +*ParamCustomPageSize Width: 1 points 72 612 +*ParamCustomPageSize Height: 2 points 288 1008 +*ParamCustomPageSize WidthOffset: 3 points 0 0 +*ParamCustomPageSize HeightOffset: 4 points 0 0 +*ParamCustomPageSize Orientation: 5 int 0 0 +*OpenUI *Duplex/Double-Sided Printing: PickOne +*OrderDependency: 10 AnySetup *Duplex +*DefaultDuplex: DuplexNoTumble +*Duplex DuplexNoTumble/Long Edge (Standard): "<>setpagedevice" +*Duplex DuplexTumble/Short Edge (Flip): "<>setpagedevice" +*Duplex None/Off: "<>setpagedevice" +*CloseUI: *Duplex +*OpenUI *InputSlot/Media Source: PickOne +*OrderDependency: 10 AnySetup *InputSlot +*DefaultInputSlot: Auto +*InputSlot Auto/Auto-Select: "<>setpagedevice" +*InputSlot PhotoTray/Photo Tray: "<>setpagedevice" +*InputSlot Upper/Upper Tray: "<>setpagedevice" +*InputSlot Lower/Lower Tray: "<>setpagedevice" +*InputSlot Envelope/Envelope Feeder: "<>setpagedevice" +*InputSlot LargeCapacity/Large Capacity Tray: "<>setpagedevice" +*InputSlot Manual/Manual Feeder: "<>setpagedevice" +*InputSlot MPTray/Multi Purpose Tray: "<>setpagedevice" +*CloseUI: *InputSlot +*OpenUI *ColorModel/Output Mode: PickOne +*OrderDependency: 10 AnySetup *ColorModel +*DefaultColorModel: Gray +*ColorModel Gray/Grayscale: "<>setpagedevice" +*CloseUI: *ColorModel +*OpenUI *MediaType/Media Type: PickOne +*OrderDependency: 10 AnySetup *MediaType +*DefaultMediaType: Plain +*MediaType Plain/Plain Paper: "<>setpagedevice" +*CloseUI: *MediaType +*OpenUI *OutputMode/Print Quality: PickOne +*OrderDependency: 10 AnySetup *OutputMode +*DefaultOutputMode: Normal +*OutputMode Normal/Normal: "<>setpagedevice" +*OutputMode Draft/Draft (Economy): "<>setpagedevice" +*OutputMode Best/Best: "<>setpagedevice" +*CloseUI: *OutputMode +*OpenGroup: InstallableOptions/Installable Options +*OpenUI *OptionDuplex/Duplexer Installed: Boolean +*OrderDependency: 10 AnySetup *OptionDuplex +*DefaultOptionDuplex: False +*OptionDuplex False/Not Installed: "" +*OptionDuplex True/Installed: "" +*CloseUI: *OptionDuplex +*CloseGroup: InstallableOptions +*DefaultFont: Courier +*Font AvantGarde-Book: Standard "(1.05)" Standard ROM +*Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM +*Font AvantGarde-Demi: Standard "(1.05)" Standard ROM +*Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM +*Font Bookman-Demi: Standard "(1.05)" Standard ROM +*Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM +*Font Bookman-Light: Standard "(1.05)" Standard ROM +*Font Bookman-LightItalic: Standard "(1.05)" Standard ROM +*Font Courier: Standard "(1.05)" Standard ROM +*Font Courier-Bold: Standard "(1.05)" Standard ROM +*Font Courier-BoldOblique: Standard "(1.05)" Standard ROM +*Font Courier-Oblique: Standard "(1.05)" Standard ROM +*Font Helvetica: Standard "(1.05)" Standard ROM +*Font Helvetica-Bold: Standard "(1.05)" Standard ROM +*Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM +*Font Helvetica-Narrow: Standard "(1.05)" Standard ROM +*Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM +*Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM +*Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM +*Font Helvetica-Oblique: Standard "(1.05)" Standard ROM +*Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM +*Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM +*Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM +*Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM +*Font Palatino-Bold: Standard "(1.05)" Standard ROM +*Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM +*Font Palatino-Italic: Standard "(1.05)" Standard ROM +*Font Palatino-Roman: Standard "(1.05)" Standard ROM +*Font Symbol: Special "(001.005)" Special ROM +*Font Times-Bold: Standard "(1.05)" Standard ROM +*Font Times-BoldItalic: Standard "(1.05)" Standard ROM +*Font Times-Italic: Standard "(1.05)" Standard ROM +*Font Times-Roman: Standard "(1.05)" Standard ROM +*Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM +*Font ZapfDingbats: Special "(001.005)" Special ROM +*% End of hp-laserjet_p2015n_series.ppd, 15195 bytes. diff --git a/configfiles/etc/cups/ppd/Salle229.ppd b/configfiles/etc/cups/ppd/Salle229.ppd new file mode 100644 index 0000000..5cf5aef --- /dev/null +++ b/configfiles/etc/cups/ppd/Salle229.ppd @@ -0,0 +1,2256 @@ +*PPD-Adobe: "4.3" +*% ================================= +*% Copyright 1992-2015 HP Company +*% Permission is hereby granted, free of charge, to any person obtaining +*% a copy of this software and associated documentation files (the +*% "Software"), to deal in the Software without restriction, including +*% without limitation the rights to use, copy, modify, merge, publish, +*% distribute, sublicense, and/or sell copies of the Software, and to +*% permit persons to whom the Software is furnished to do so, subject to +*% the following conditions: +*% +*% The above copyright notice and this permission notice shall be +*% included in all copies or substantial portions of the Software. +*% +*% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +*% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +*% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +*% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +*% LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +*% OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +*% WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +*% +*% [this is the MIT open source license -- please see www.opensource.org] +*% +*%%%% Created by the CUPS PPD Compiler CUPS v1.7.2. +*% Copyright (c) 2015 HP Development Company, L.P. +*FormatVersion: "4.3" +*FileVersion: "19.12" +*LanguageVersion: English +*LanguageEncoding: ISOLatin1 +*PCFileName: "HPP00052.PPD" +*Product: "(HP Color LaserJet Pro M252n)" +*Product: "(HP Color LaserJet Pro M252c1)" +*Product: "(HP Color LaserJet Pro M252c2)" +*Product: "(HP Color LaserJet Pro M252c3)" +*Product: "(HP Color LaserJet Pro M252c4)" +*Product: "(HP Color LaserJet Pro M252c5)" +*Product: "(HP Color LaserJet Pro M252dw)" +*Product: "(HP Color LaserJet Pro M252c6)" +*Product: "(HP Color LaserJet Pro M252c7)" +*Product: "(HP Color LaserJet Pro M252c8)" +*Product: "(HP Color LaserJet Pro M252c9)" +*Product: "(HP Color LaserJet Pro M252c10)" +*Manufacturer: "HP" +*ModelName: "HP Color LaserJet Pro M252" +*ShortNickName: "HP Color LaserJet Pro M252" +*1284DeviceID: "MFG:Hewlett-Packard;MDL:hp color laserjet pro m252;" +*NickName: "HP Color LaserJet Pro M252 Postscript (recommended)" +*PSVersion: "(3010.107) 3" +*LanguageLevel: "3" +*ColorDevice: True +*DefaultColorSpace: RGB +*FileSystem: False +*Throughput: "19" +*LandscapeOrientation: Plus90 +*TTRasterizer: Type42 +*% Driver-defined attributes... +*Protocols: TBCP +*cupsPJLCharset: "UTF-8" +*HPAccountingInfo: "4" +*HPBOD: "1" +*cupsUIResolver DuplexerVsDuplex: "*Duplex None" +*cupsUIConstraints DuplexerVsDuplex: "*HPOption_Duplexer False *Duplex" +*cupsCommands: "ReportLevels" +*cupsSNMPSupplies: False +*cupsIPPSupplies: False +*cupsMarkerName cyan/Cyan: "" +*cupsMarkerName magenta/Magenta: "" +*cupsMarkerName yellow/Yellow: "" +*cupsMarkerName black/Black: "" +*RequiresPageRegion All: True +*cupsUIResolver PageSizeVsDuplex: "*PageSize Letter *Duplex None" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize 4x6" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize 5x8" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize A6" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize B6" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize Env4x6" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize Postcard" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize DoublePostcardRotated" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize Env10" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize EnvMonarch" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize EnvISOB5" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize EnvC5" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize EnvDL" +*cupsMediaQualifier2: "Duplex" +*cupsMinSize .DuplexTumble.False: "419.00 595.00" +*cupsMinSize .DuplexNoTumble.False: "419.00 595.00" +*DefaultResolution: 600dpi +*cupsUIResolver MediaTypeVsDuplex: "*Duplex None *MediaType Unspecified" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType HPCoverMatte200" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType HPMattePhoto200" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType CardGlossy176220" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType ColorLaserTransparency" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType Labels" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType Envelope" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType HeavyEnvelope" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType OpaqueFilm" +*FreeVM: "62914560" +*cupsVersion: 1.5 +*cupsModelNumber: 0 +*cupsManualCopies: True +*cupsLanguages: "en da de es fi fr it ja ko no nl pt ru sv zh_CN zh_TW" +*cupsFilter: "application/vnd.cups-postscript 0 hpps" +*OpenUI *PageSize/Media Size: PickOne +*OrderDependency: 10 AnySetup *PageSize +*DefaultPageSize: A4 +*PageSize Letter/US Letter: "<>setpagedevice" +*PageSize Legal/US Legal: "<>setpagedevice" +*PageSize Executive/Executive: "<>setpagedevice" +*PageSize FanFoldGermanLegal/Oficio 8.5x13: "<> setpagedevice" +*PageSize 4x6/4x6: "<>setpagedevice" +*PageSize 5x8/5x8: "<>setpagedevice" +*PageSize A4/A4: "<>setpagedevice" +*PageSize A5/A5: "<>setpagedevice" +*PageSize A6/A6: "<>setpagedevice" +*PageSize B5/JIS B5: "<>setpagedevice" +*PageSize B6/JIS B6: "<>setpagedevice" +*PageSize Env4x6/10x15 cm: "<> setpagedevice" +*PageSize Oficio/Oficio 216x340 mm: "<>setpagedevice" +*PageSize 195x270mm/16K 195x270 mm: "<>setpagedevice" +*PageSize 184x260mm/16K 184x260 mm: "<>setpagedevice" +*PageSize 7.75x10.75/16K 197x273 mm: "<>setpagedevice" +*PageSize Postcard/Postcard: "<>setpagedevice" +*PageSize DoublePostcardRotated/Postcard Double Long Edge: "<>setpagedevice" +*PageSize Env10/Envelope #10: "<>setpagedevice" +*PageSize EnvMonarch/Envelope Monarch: "<>setpagedevice" +*PageSize EnvISOB5/Envelope B5: "<>setpagedevice" +*PageSize EnvC5/Envelope C5: "<>setpagedevice" +*PageSize EnvDL/Envelope DL: "<>setpagedevice" +*CloseUI: *PageSize +*OpenUI *PageRegion/Media Size: PickOne +*OrderDependency: 10 AnySetup *PageRegion +*DefaultPageRegion: A4 +*PageRegion Letter/US Letter: "<>setpagedevice" +*PageRegion Legal/US Legal: "<>setpagedevice" +*PageRegion Executive/Executive: "<>setpagedevice" +*PageRegion FanFoldGermanLegal/Oficio 8.5x13: "<> setpagedevice" +*PageRegion 4x6/4x6: "<>setpagedevice" +*PageRegion 5x8/5x8: "<>setpagedevice" +*PageRegion A4/A4: "<>setpagedevice" +*PageRegion A5/A5: "<>setpagedevice" +*PageRegion A6/A6: "<>setpagedevice" +*PageRegion B5/JIS B5: "<>setpagedevice" +*PageRegion B6/JIS B6: "<>setpagedevice" +*PageRegion Env4x6/10x15 cm: "<> setpagedevice" +*PageRegion Oficio/Oficio 216x340 mm: "<>setpagedevice" +*PageRegion 195x270mm/16K 195x270 mm: "<>setpagedevice" +*PageRegion 184x260mm/16K 184x260 mm: "<>setpagedevice" +*PageRegion 7.75x10.75/16K 197x273 mm: "<>setpagedevice" +*PageRegion Postcard/Postcard: "<>setpagedevice" +*PageRegion DoublePostcardRotated/Postcard Double Long Edge: "<>setpagedevice" +*PageRegion Env10/Envelope #10: "<>setpagedevice" +*PageRegion EnvMonarch/Envelope Monarch: "<>setpagedevice" +*PageRegion EnvISOB5/Envelope B5: "<>setpagedevice" +*PageRegion EnvC5/Envelope C5: "<>setpagedevice" +*PageRegion EnvDL/Envelope DL: "<>setpagedevice" +*CloseUI: *PageRegion +*DefaultImageableArea: Letter +*ImageableArea Letter/US Letter: "12 12 600 780" +*ImageableArea Legal/US Legal: "12 12 600 996" +*ImageableArea Executive/Executive: "12 12 510 744" +*ImageableArea FanFoldGermanLegal/Oficio 8.5x13: "12 12 600 924" +*ImageableArea 4x6/4x6: "12 12 276 420" +*ImageableArea 5x8/5x8: "12 12 348 564" +*ImageableArea A4/A4: "12 12 583 830" +*ImageableArea A5/A5: "12 12 408 583" +*ImageableArea A6/A6: "12 12 285 408" +*ImageableArea B5/JIS B5: "12 12 504 717" +*ImageableArea B6/JIS B6: "12 12 351 504" +*ImageableArea Env4x6/10x15 cm: "12 12 276 419" +*ImageableArea Oficio/Oficio 216x340 mm: "12 12 600 952" +*ImageableArea 195x270mm/16K 195x270 mm: "12 12 541 753" +*ImageableArea 184x260mm/16K 184x260 mm: "12 12 510 725" +*ImageableArea 7.75x10.75/16K 197x273 mm: "12 12 546 762" +*ImageableArea Postcard/Postcard: "12 12 271 408" +*ImageableArea DoublePostcardRotated/Postcard Double Long Edge: "12 12 408 555" +*ImageableArea Env10/Envelope #10: "12 12 285 672" +*ImageableArea EnvMonarch/Envelope Monarch: "12 12 267 528" +*ImageableArea EnvISOB5/Envelope B5: "12 12 487 697" +*ImageableArea EnvC5/Envelope C5: "12 12 447 637" +*ImageableArea EnvDL/Envelope DL: "12 12 300 612" +*DefaultPaperDimension: Letter +*PaperDimension Letter/US Letter: "612 792" +*PaperDimension Legal/US Legal: "612 1008" +*PaperDimension Executive/Executive: "522 756" +*PaperDimension FanFoldGermanLegal/Oficio 8.5x13: "612 936" +*PaperDimension 4x6/4x6: "288 432" +*PaperDimension 5x8/5x8: "360 576" +*PaperDimension A4/A4: "595 842" +*PaperDimension A5/A5: "420 595" +*PaperDimension A6/A6: "297 420" +*PaperDimension B5/JIS B5: "516 729" +*PaperDimension B6/JIS B6: "363 516" +*PaperDimension Env4x6/10x15 cm: "288 431" +*PaperDimension Oficio/Oficio 216x340 mm: "612 964" +*PaperDimension 195x270mm/16K 195x270 mm: "553 765" +*PaperDimension 184x260mm/16K 184x260 mm: "522 737" +*PaperDimension 7.75x10.75/16K 197x273 mm: "558 774" +*PaperDimension Postcard/Postcard: "283 420" +*PaperDimension DoublePostcardRotated/Postcard Double Long Edge: "420 567" +*PaperDimension Env10/Envelope #10: "297 684" +*PaperDimension EnvMonarch/Envelope Monarch: "279 540" +*PaperDimension EnvISOB5/Envelope B5: "499 709" +*PaperDimension EnvC5/Envelope C5: "459 649" +*PaperDimension EnvDL/Envelope DL: "312 624" +*MaxMediaWidth: "612" +*MaxMediaHeight: "1008" +*HWMargins: 12 12 12 12 +*CustomPageSize True: "pop pop pop <>setpagedevice" +*ParamCustomPageSize Width: 1 points 216 612 +*ParamCustomPageSize Height: 2 points 360 1008 +*ParamCustomPageSize WidthOffset: 3 points 0 0 +*ParamCustomPageSize HeightOffset: 4 points 0 0 +*ParamCustomPageSize Orientation: 5 int 0 0 +*OpenUI *Duplex/Two-Sided: PickOne +*OrderDependency: 50 AnySetup *Duplex +*DefaultDuplex: None +*Duplex None/Off: "<> setpagedevice" +*Duplex DuplexNoTumble/Long-Edge Binding: "<> setpagedevice" +*Duplex DuplexTumble/Short-Edge Binding: "<> setpagedevice" +*CloseUI: *Duplex +*OpenUI *InputSlot/Paper Feed: PickOne +*OrderDependency: 40 AnySetup *InputSlot +*DefaultInputSlot: Auto +*InputSlot Auto/Automatic: " + <> setpagedevice" +*End +*da.InputSlot Auto/Automatisk: "" +*de.InputSlot Auto/Automatisch: "" +*es.InputSlot Auto/Automático: "" +*fi.InputSlot Auto/Automaattinen: "" +*fr.InputSlot Auto/Automatique: "" +*it.InputSlot Auto/Automatico: "" +*ja.InputSlot Auto/自動: "" +*ko.InputSlot Auto/자동: "" +*nl.InputSlot Auto/Automatisch: "" +*no.InputSlot Auto/Automatisk: "" +*pt.InputSlot Auto/Automático: "" +*ru.InputSlot Auto/Автоматически: "" +*sv.InputSlot Auto/Automatiskt: "" +*zh_CN.InputSlot Auto/自动: "" +*zh_TW.InputSlot Auto/自動: "" + +*InputSlot Tray1/Tray 1: "<> setpagedevice" +*InputSlot Tray2/Tray 2: "<> setpagedevice" +*InputSlot ManualFeed/Manual Feed: "<> setpagedevice" +*CloseUI: *InputSlot +*OpenGroup: InstallableOptions/Installable Options +*OpenUI *HPOption_Duplexer/Duplex Unit: Boolean +*OrderDependency: 0 AnySetup *HPOption_Duplexer +*DefaultHPOption_Duplexer: False +*HPOption_Duplexer True/On: "" +*HPOption_Duplexer False/Off: "" +*CloseUI: *HPOption_Duplexer +*CloseGroup: InstallableOptions +*OpenGroup: HPColorOptionsPanel/Color +*OpenUI *HPPJLColorAsGray/Print Color as Gray: PickOne +*OrderDependency: 20 AnySetup *HPPJLColorAsGray +*DefaultHPPJLColorAsGray: no +*HPPJLColorAsGray yes/On: " " +*HPPJLColorAsGray no/Off: " " +*CloseUI: *HPPJLColorAsGray +*OpenUI *HPRGBEmulation/RGB Color: PickOne +*OrderDependency: 57 AnySetup *HPRGBEmulation +*DefaultHPRGBEmulation: DefaultSRGB +*HPRGBEmulation DefaultSRGB/Default (sRGB): " + globaldict /ColorSmartColorMatching known { + MatchScreen ColorSmartImageAdjustment + } if + " +*End +*HPRGBEmulation PhotoSRGB/Photo (sRGB): " + globaldict /ColorSmartColorMatching known { + PhotoQuality ColorSmartImageAdjustment + } if + " +*End +*HPRGBEmulation Adobe/Photo (Adobe RGB 1998): " + globaldict /ColorSmartColorMatching known { + AdobeRGB ColorSmartImageAdjustment + } if + " +*End +*HPRGBEmulation VividSRGB/Vivid (sRGB): " + globaldict /ColorSmartColorMatching known { + Vivid ColorSmartImageAdjustment + } if + " +*End +*HPRGBEmulation HPRGBEmulationNone/None: " + globaldict /ColorSmartColorMatching known { + NoAdj ColorSmartImageAdjustment + } if + " +*End +*CloseUI: *HPRGBEmulation +*OpenUI *HPEdgeControl/Edge Control: PickOne +*OrderDependency: 57 AnySetup *HPEdgeControl +*DefaultHPEdgeControl: Normal +*HPEdgeControl HPEdgeControlOff/Off: " + globaldict /HPTextAdaptiveHalftoning known { + false HPTextAdaptiveHalftoning + false HPGraphicsAdaptiveHalftoning + false HPImageAdaptiveHalftoning + } if + globaldict /HPColorTrapping known { + Off HPColorTrapping + } if + " +*End +*HPEdgeControl Light/Light: " + globaldict /HPTextAdaptiveHalftoning known { + true HPTextAdaptiveHalftoning + true HPGraphicsAdaptiveHalftoning + true HPImageAdaptiveHalftoning + } if + globaldict /HPColorTrapping known { + Light HPColorTrapping + } if + " +*End +*HPEdgeControl Normal/Normal: " + globaldict /HPTextAdaptiveHalftoning known { + true HPTextAdaptiveHalftoning + true HPGraphicsAdaptiveHalftoning + true HPImageAdaptiveHalftoning + } if + globaldict /HPColorTrapping known { + Normal HPColorTrapping + } if + " +*End +*HPEdgeControl Max/Maximum: " + globaldict /HPTextAdaptiveHalftoning known { + true HPTextAdaptiveHalftoning + true HPGraphicsAdaptiveHalftoning + true HPImageAdaptiveHalftoning + } if + globaldict /HPColorTrapping known { + Max HPColorTrapping + } if + " +*End +*CloseUI: *HPEdgeControl +*OpenUI *HPGeneralHalftone/Halftone: PickOne +*OrderDependency: 57 AnySetup *HPGeneralHalftone +*DefaultHPGeneralHalftone: Smooth +*HPGeneralHalftone Smooth/Smooth: " + globaldict /ColorSmartColorMatching known { + Smooth ColorSmartGraphicsHalftone + Smooth ColorSmartImageHalftone + Smooth ColorSmartTextHalftone + } if + " +*End +*HPGeneralHalftone Detail/Detail: " + globaldict /ColorSmartColorMatching known { + Detail ColorSmartGraphicsHalftone + Detail ColorSmartImageHalftone + Detail ColorSmartTextHalftone + } if + " +*End +*CloseUI: *HPGeneralHalftone +*OpenUI *HPTextNeutralGrays/Text Neutral Grays: PickOne +*OrderDependency: 57 AnySetup *HPTextNeutralGrays +*DefaultHPTextNeutralGrays: Black +*HPTextNeutralGrays Black/Black Only: " + globaldict /HPTextNeutralAxis known { + TonerBlack HPTextNeutralAxis + } if + " +*End +*HPTextNeutralGrays ProcessBlack/4-Color: " + globaldict /HPTextNeutralAxis known { + ProcBlack HPTextNeutralAxis + } if + " +*End +*CloseUI: *HPTextNeutralGrays +*OpenUI *HPGraphicsNeutralGrays/Graphics Neutral Grays: PickOne +*OrderDependency: 57 AnySetup *HPGraphicsNeutralGrays +*DefaultHPGraphicsNeutralGrays: Black +*HPGraphicsNeutralGrays Black/Black Only: " + globaldict /HPGraphicsNeutralAxis known { + TonerBlack HPGraphicsNeutralAxis + } if + " +*End +*HPGraphicsNeutralGrays ProcessBlack/4-Color: " + globaldict /HPGraphicsNeutralAxis known { + ProcBlack HPGraphicsNeutralAxis + } if + " +*End +*CloseUI: *HPGraphicsNeutralGrays +*OpenUI *HPPhotoNeutralGrays/Photo Neutral Grays: PickOne +*OrderDependency: 57 AnySetup *HPPhotoNeutralGrays +*DefaultHPPhotoNeutralGrays: ProcessBlack +*HPPhotoNeutralGrays Black/Black Only: " + globaldict /HPImageNeutralAxis known { + TonerBlack HPImageNeutralAxis + } if + " +*End +*HPPhotoNeutralGrays ProcessBlack/4-Color: " + globaldict /HPImageNeutralAxis known { + ProcBlack HPImageNeutralAxis + } if + " +*End +*CloseUI: *HPPhotoNeutralGrays +*CloseGroup: HPColorOptionsPanel +*OpenGroup: HPPaperQualityPanel/Paper/Quality +*OpenUI *HPPJLEconoMode/EconoMode: Boolean +*OrderDependency: 20 AnySetup *HPPJLEconoMode +*DefaultHPPJLEconoMode: False +*HPPJLEconoMode True/On: " " +*HPPJLEconoMode False/Off: " " +*CloseUI: *HPPJLEconoMode +*OpenUI *MediaType/Media Type: PickOne +*OrderDependency: 20 AnySetup *MediaType +*DefaultMediaType: Unspecified +*MediaType Unspecified/Unspecified: "<> setpagedevice" +*MediaType Plain/Plain: "<> setpagedevice" +*MediaType HPEcoSMARTLite/HP EcoSMART Lite: "<> setpagedevice" +*MediaType HPLaserJet90/HP LaserJet 90g: "<> setpagedevice" +*MediaType HPColorLaserMatte105/HP Color Laser Matte 105g: "<> setpagedevice" +*MediaType HPPremiumChoiceMatte120/HP Premium Choice Matte 120g: "<> setpagedevice" +*MediaType HPBrochureMatte150/HP Brochure Matte 150g: "<> setpagedevice" +*MediaType HPCoverMatte200/HP Cover Matte 200g: "<> setpagedevice" +*MediaType HPMattePhoto200/HP Matte Photo 200g: "<> setpagedevice" +*MediaType HPPremiumPresentationGlossy120/HP Premium Presentation Glossy 120g: "<> setpagedevice" +*MediaType HPBrochureGlossy150/HP Brochure Glossy 150g: "<> setpagedevice" +*MediaType HPTrifoldBrochureGlossy150/HP Tri-fold Brochure Glossy 150g: "<> setpagedevice" +*MediaType HPBrochureGlossy200/HP Brochure Glossy 200g: "<> setpagedevice" +*MediaType Light6074/Light 60-74g: "<> setpagedevice" +*MediaType Intermediate8595/Intermediate 85-95g: "<> setpagedevice" +*MediaType MidWeight96110/Mid-Weight 96-110g: "<> setpagedevice" +*MediaType Heavy111130/Heavy 111-130g: "<> setpagedevice" +*MediaType ExtraHeavy131175/Extra Heavy 131-175g: "<> setpagedevice" +*MediaType HeavyGlossy111130/Heavy Glossy 111-130g: "<> setpagedevice" +*MediaType ExtraHeavyGlossy131175/Extra Heavy Glossy 131-175g: "<> setpagedevice" +*MediaType CardGlossy176220/Card Glossy 176-220g: "<> setpagedevice" +*MediaType ColorLaserTransparency/Color Laser Transparency: "<> setpagedevice" +*MediaType Labels/Labels: "<> setpagedevice" +*MediaType Letterhead/Letterhead: "<> setpagedevice" +*MediaType Envelope/Envelope: "<> setpagedevice" +*MediaType HeavyEnvelope/Heavy Envelope: "<> setpagedevice" +*MediaType Preprinted/Preprinted: "<> setpagedevice" +*MediaType Prepunched/Prepunched: "<> setpagedevice" +*MediaType Colored/Colored: "<> setpagedevice" +*MediaType Bond/Bond: "<> setpagedevice" +*MediaType Recycled/Recycled: "<> setpagedevice" +*MediaType Rough/Rough: "<> setpagedevice" +*MediaType HeavyRough/Heavy Rough: "<> setpagedevice" +*MediaType OpaqueFilm/Opaque Film: "<> setpagedevice" +*CloseUI: *MediaType +*CloseGroup: HPPaperQualityPanel +*da.Translation Manufacturer/HP: "" +*da.Translation ModelName/HP Color LaserJet Pro M252: "" +*da.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*da.Translation NickName/HP Color LaserJet Pro M252: "" +*da.Translation PageSize/Mediestørrelse: "" +*da.PageSize Letter/US Letter: "" +*da.PageSize Legal/US Legal: "" +*da.PageSize Executive/Executive: "" +*da.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*da.PageSize 4x6/4x6: "" +*da.PageSize 5x8/5x8: "" +*da.PageSize A4/A4: "" +*da.PageSize A5/A5: "" +*da.PageSize A6/A6: "" +*da.PageSize B5/JIS B5: "" +*da.PageSize B6/JIS B6: "" +*da.PageSize Env4x6/10x15 cm: "" +*da.PageSize Oficio/Oficio 216x340 mm: "" +*da.PageSize 195x270mm/16K 195x270 mm: "" +*da.PageSize 184x260mm/16K 184x260 mm: "" +*da.PageSize 7.75x10.75/16K 197x273 mm: "" +*da.PageSize Postcard/Postcard: "" +*da.PageSize DoublePostcardRotated/Postkort, dobbelt - lang kant: "" +*da.PageSize Env10/Konv Comm10: "" +*da.PageSize EnvMonarch/Konv Monarch: "" +*da.PageSize EnvISOB5/Konv ISO B5: "" +*da.PageSize EnvC5/Konv C5: "" +*da.PageSize EnvDL/Konv DL: "" +*da.Translation Duplex/Dupleks: "" +*da.Duplex None/Fra: "" +*da.Duplex DuplexNoTumble/Indbinding på den lange led: "" +*da.Duplex DuplexTumble/Indbinding på den korte led: "" +*da.Translation InputSlot/Papirforsyning: "" +*da.InputSlot Tray1/Bakke 1: "" +*da.InputSlot Tray2/Bakke 2: "" +*da.InputSlot ManualFeed/Manuel indføring: "" +*da.Translation InstallableOptions/Installable Options: "" +*da.Translation HPOption_Duplexer/Dupleksudskrivningsudstyr: "" +*da.HPOption_Duplexer True/Til: "" +*da.HPOption_Duplexer False/Fra: "" +*da.Translation HPColorOptionsPanel/Farve: "" +*da.Translation HPPJLColorAsGray/Udskriv farve som grå: "" +*da.HPPJLColorAsGray yes/Til: "" +*da.HPPJLColorAsGray no/Fra: "" +*da.Translation HPRGBEmulation/RGB-farve: "" +*da.HPRGBEmulation DefaultSRGB/Standard (sRGB): "" +*da.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*da.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*da.HPRGBEmulation VividSRGB/Livlig (sRGB): "" +*da.HPRGBEmulation HPRGBEmulationNone/Ingen: "" +*da.Translation HPEdgeControl/Kantstyring: "" +*da.HPEdgeControl HPEdgeControlOff/Fra: "" +*da.HPEdgeControl Light/Lys: "" +*da.HPEdgeControl Normal/Normal: "" +*da.HPEdgeControl Max/Maksimum: "" +*da.Translation HPGeneralHalftone/Halvtone: "" +*da.HPGeneralHalftone Smooth/Jævn: "" +*da.HPGeneralHalftone Detail/Detaljer: "" +*da.Translation HPTextNeutralGrays/Tekst i neutral grå: "" +*da.HPTextNeutralGrays Black/Kun sort: "" +*da.HPTextNeutralGrays ProcessBlack/4-farve: "" +*da.Translation HPGraphicsNeutralGrays/Grafik i neutral grå: "" +*da.HPGraphicsNeutralGrays Black/Kun sort: "" +*da.HPGraphicsNeutralGrays ProcessBlack/4-farve: "" +*da.Translation HPPhotoNeutralGrays/Fotografier i neutral grå: "" +*da.HPPhotoNeutralGrays Black/Kun sort: "" +*da.HPPhotoNeutralGrays ProcessBlack/4-farve: "" +*da.Translation HPPaperQualityPanel/Paper/Quality: "" +*da.Translation HPPJLEconoMode/EconoMode: "" +*da.HPPJLEconoMode True/Til: "" +*da.HPPJLEconoMode False/Fra: "" +*da.Translation MediaType/Medietype: "" +*da.MediaType Unspecified/Uspecificeret: "" +*da.MediaType Plain/Almindeligt: "" +*da.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*da.MediaType HPLaserJet90/HP LaserJet 90g: "" +*da.MediaType HPColorLaserMatte105/HP Color Laser, mat 105g: "" +*da.MediaType HPPremiumChoiceMatte120/HP Premium Choice, mat 120g: "" +*da.MediaType HPBrochureMatte150/HP brochurepapir, mat 150g: "" +*da.MediaType HPCoverMatte200/HP Omslag, mat 200g: "" +*da.MediaType HPMattePhoto200/HP Foto, mat 200g: "" +*da.MediaType HPPremiumPresentationGlossy120/HP Premium-præsentationspapir, Blankt 120g: "" +*da.MediaType HPBrochureGlossy150/HP brochurepapir, Blankt 150g: "" +*da.MediaType HPTrifoldBrochureGlossy150/HP brochurepapir foldet tre gange, Blankt, 150g: "" +*da.MediaType HPBrochureGlossy200/HP brochurepapir, Blankt 200g: "" +*da.MediaType Light6074/Let 60-74g: "" +*da.MediaType Intermediate8595/Mellem 85-95g: "" +*da.MediaType MidWeight96110/Mellemkraftigt 96-110g: "" +*da.MediaType Heavy111130/Kraftigt 111-130g: "" +*da.MediaType ExtraHeavy131175/Ekstra kraftigt 131-175g: "" +*da.MediaType HeavyGlossy111130/Kraftigt blankt 111-130g: "" +*da.MediaType ExtraHeavyGlossy131175/Ekstra tykt og blankt 131-175g: "" +*da.MediaType CardGlossy176220/Kort, blankt 176-220g: "" +*da.MediaType ColorLaserTransparency/Color Laser-transparent: "" +*da.MediaType Labels/Etiketter: "" +*da.MediaType Letterhead/Brevpapir: "" +*da.MediaType Envelope/Konvolut: "" +*da.MediaType HeavyEnvelope/Kraftig konvolut: "" +*da.MediaType Preprinted/Fortrykt: "" +*da.MediaType Prepunched/Hullet: "" +*da.MediaType Colored/Farvet: "" +*da.MediaType Bond/Bankpost: "" +*da.MediaType Recycled/Genbrug: "" +*da.MediaType Rough/Groft: "" +*da.MediaType HeavyRough/Kraftigt, groft: "" +*da.MediaType OpaqueFilm/Uigennemskinnelig film: "" +*da.APPrinterPreset ChartsAndGraphs/Diagrammer og grafik: "" +*da.cupsICCProfile RGB../sRGB Matching Profile: "" +*da.cupsICCProfile CMYK../CMYK Matching Profile: "" +*da.cupsICCProfile Gray../Gray Matching Profile: "" +*da.cupsMarkerName cyan/Cyan: "" +*da.cupsMarkerName magenta/Magenta: "" +*da.cupsMarkerName yellow/Gul: "" +*da.cupsMarkerName black/Sort: "" +*de.Translation Manufacturer/HP: "" +*de.Translation ModelName/HP Color LaserJet Pro M252: "" +*de.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*de.Translation NickName/HP Color LaserJet Pro M252: "" +*de.Translation PageSize/Mediengröße: "" +*de.PageSize Letter/US Letter: "" +*de.PageSize Legal/US Legal: "" +*de.PageSize Executive/Executive: "" +*de.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*de.PageSize 4x6/4x6: "" +*de.PageSize 5x8/5x8: "" +*de.PageSize A4/A4: "" +*de.PageSize A5/A5: "" +*de.PageSize A6/A6: "" +*de.PageSize B5/JIS B5: "" +*de.PageSize B6/JIS B6: "" +*de.PageSize Env4x6/10x15 cm: "" +*de.PageSize Oficio/Oficio 216x340 mm: "" +*de.PageSize 195x270mm/16K 195x270 mm: "" +*de.PageSize 184x260mm/16K 184x260 mm: "" +*de.PageSize 7.75x10.75/16K 197x273 mm: "" +*de.PageSize Postcard/Postcard: "" +*de.PageSize DoublePostcardRotated/Postkarte - Doppelt - breite Seite: "" +*de.PageSize Env10/Umschlag Comm10: "" +*de.PageSize EnvMonarch/Umschlag Monarch: "" +*de.PageSize EnvISOB5/Umschlag ISO B5: "" +*de.PageSize EnvC5/Umschlag C5: "" +*de.PageSize EnvDL/Umschlag DL: "" +*de.Translation Duplex/Beidseitig: "" +*de.Duplex None/Aus: "" +*de.Duplex DuplexNoTumble/Bindung an langer Kante: "" +*de.Duplex DuplexTumble/Bindung an kurzer Kante: "" +*de.Translation InputSlot/Papiereinzug: "" +*de.InputSlot Tray1/Zufuhrfach 1: "" +*de.InputSlot Tray2/Zufuhrfach 2: "" +*de.InputSlot ManualFeed/Manuelle Zufuhr: "" +*de.Translation InstallableOptions/Installable Options: "" +*de.Translation HPOption_Duplexer/Duplexdruck-Zubehör: "" +*de.HPOption_Duplexer True/Ein: "" +*de.HPOption_Duplexer False/Aus: "" +*de.Translation HPColorOptionsPanel/Farbe: "" +*de.Translation HPPJLColorAsGray/In Graustufen drucken: "" +*de.HPPJLColorAsGray yes/Ein: "" +*de.HPPJLColorAsGray no/Aus: "" +*de.Translation HPRGBEmulation/RGB-Farbe: "" +*de.HPRGBEmulation DefaultSRGB/Standard (sRGB): "" +*de.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*de.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*de.HPRGBEmulation VividSRGB/Leuchtend (sRGB): "" +*de.HPRGBEmulation HPRGBEmulationNone/Keine: "" +*de.Translation HPEdgeControl/Randsteuerung: "" +*de.HPEdgeControl HPEdgeControlOff/Aus: "" +*de.HPEdgeControl Light/Hell: "" +*de.HPEdgeControl Normal/Normal: "" +*de.HPEdgeControl Max/Maximal: "" +*de.Translation HPGeneralHalftone/Halbton: "" +*de.HPGeneralHalftone Smooth/Geglättet: "" +*de.HPGeneralHalftone Detail/Detailliert: "" +*de.Translation HPTextNeutralGrays/Text - neutrales Grau: "" +*de.HPTextNeutralGrays Black/Nur Schwarz: "" +*de.HPTextNeutralGrays ProcessBlack/4-Farbig: "" +*de.Translation HPGraphicsNeutralGrays/Grafik - neutrales Grau: "" +*de.HPGraphicsNeutralGrays Black/Nur Schwarz: "" +*de.HPGraphicsNeutralGrays ProcessBlack/4-Farbig: "" +*de.Translation HPPhotoNeutralGrays/Foto - neutrales Grau: "" +*de.HPPhotoNeutralGrays Black/Nur Schwarz: "" +*de.HPPhotoNeutralGrays ProcessBlack/4-Farbig: "" +*de.Translation HPPaperQualityPanel/Paper/Quality: "" +*de.Translation HPPJLEconoMode/EconoMode: "" +*de.HPPJLEconoMode True/Ein: "" +*de.HPPJLEconoMode False/Aus: "" +*de.Translation MediaType/Druckmedientyp: "" +*de.MediaType Unspecified/Nicht bestimmt: "" +*de.MediaType Plain/Normalpapier: "" +*de.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*de.MediaType HPLaserJet90/HP LaserJet, 90g: "" +*de.MediaType HPColorLaserMatte105/HP Color Laser 105g, matt: "" +*de.MediaType HPPremiumChoiceMatte120/HP Premium Choice 120g, matt: "" +*de.MediaType HPBrochureMatte150/HP Broschürenpapier, matt 150g: "" +*de.MediaType HPCoverMatte200/HP Deckblattpapier 200g, matt: "" +*de.MediaType HPMattePhoto200/HP Fotopapier, matt 200g: "" +*de.MediaType HPPremiumPresentationGlossy120/HP Premium Präsentationspapier, hochglänzend 120g: "" +*de.MediaType HPBrochureGlossy150/HP Broschürenpapier, hochglänzend 150g: "" +*de.MediaType HPTrifoldBrochureGlossy150/HP Broschürenpapier, dreifach gefaltet, hochglänzend 150g: "" +*de.MediaType HPBrochureGlossy200/HP Broschürenpapier, hochglänzend 200g: "" +*de.MediaType Light6074/Leicht 60-74g: "" +*de.MediaType Intermediate8595/Mittelschwer 85-95g: "" +*de.MediaType MidWeight96110/Mittleres Gewicht 96-110g: "" +*de.MediaType Heavy111130/Schwer 111-130g: "" +*de.MediaType ExtraHeavy131175/Sehr schwer 131-175g: "" +*de.MediaType HeavyGlossy111130/Hochglanz, schwer 111-130g: "" +*de.MediaType ExtraHeavyGlossy131175/Hochglanz, extraschwer 131-175g: "" +*de.MediaType CardGlossy176220/Karte 176-220g, hochglänzend: "" +*de.MediaType ColorLaserTransparency/Color Laser-Transparentfolie: "" +*de.MediaType Labels/Etiketten: "" +*de.MediaType Letterhead/Briefkopfpapier: "" +*de.MediaType Envelope/Briefumschlag: "" +*de.MediaType HeavyEnvelope/Schwerer Briefumschlag: "" +*de.MediaType Preprinted/Vordruckpapier: "" +*de.MediaType Prepunched/Vorgelochtes Papier: "" +*de.MediaType Colored/Farbig: "" +*de.MediaType Bond/Briefpapier: "" +*de.MediaType Recycled/Recyclingpapier: "" +*de.MediaType Rough/Rauhpapier: "" +*de.MediaType HeavyRough/Schwer Rau: "" +*de.MediaType OpaqueFilm/Folie, opak: "" +*de.APPrinterPreset ChartsAndGraphs/Diagramme & Grafiken: "" +*de.cupsICCProfile RGB../sRGB Matching Profile: "" +*de.cupsICCProfile CMYK../CMYK Matching Profile: "" +*de.cupsICCProfile Gray../Gray Matching Profile: "" +*de.cupsMarkerName cyan/Zyan: "" +*de.cupsMarkerName magenta/Magenta: "" +*de.cupsMarkerName yellow/Gelb: "" +*de.cupsMarkerName black/Schwarz: "" +*es.Translation Manufacturer/HP: "" +*es.Translation ModelName/HP Color LaserJet Pro M252: "" +*es.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*es.Translation NickName/HP Color LaserJet Pro M252: "" +*es.Translation PageSize/Tamaño de papel: "" +*es.PageSize Letter/US Letter: "" +*es.PageSize Legal/US Legal: "" +*es.PageSize Executive/Ejecutivo: "" +*es.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*es.PageSize 4x6/4x6: "" +*es.PageSize 5x8/5x8: "" +*es.PageSize A4/A4: "" +*es.PageSize A5/A5: "" +*es.PageSize A6/A6: "" +*es.PageSize B5/JIS B5: "" +*es.PageSize B6/JIS B6: "" +*es.PageSize Env4x6/10x15 cm: "" +*es.PageSize Oficio/Oficio 216x340 mm: "" +*es.PageSize 195x270mm/16K 195x270 mm: "" +*es.PageSize 184x260mm/16K 184x260 mm: "" +*es.PageSize 7.75x10.75/16K 197x273 mm: "" +*es.PageSize Postcard/Postcard: "" +*es.PageSize DoublePostcardRotated/Postal doble borde largo: "" +*es.PageSize Env10/Sobre Comm10: "" +*es.PageSize EnvMonarch/Sobre Monarch: "" +*es.PageSize EnvISOB5/Sobre ISO B5: "" +*es.PageSize EnvC5/Sobre C5: "" +*es.PageSize EnvDL/Sobre DL: "" +*es.Translation Duplex/A doble cara: "" +*es.Duplex None/Desactivado: "" +*es.Duplex DuplexNoTumble/Encuadernación de borde largo: "" +*es.Duplex DuplexTumble/Encuadernación de borde corto: "" +*es.Translation InputSlot/Alimentador de papel: "" +*es.InputSlot Tray1/Bandeja 1: "" +*es.InputSlot Tray2/Bandeja 2: "" +*es.InputSlot ManualFeed/Alimentación manual: "" +*es.Translation InstallableOptions/Installable Options: "" +*es.Translation HPOption_Duplexer/Accesorio para impresión dúplex: "" +*es.HPOption_Duplexer True/Activado: "" +*es.HPOption_Duplexer False/Desactivado: "" +*es.Translation HPColorOptionsPanel/Color: "" +*es.Translation HPPJLColorAsGray/Imprimir colores en gris: "" +*es.HPPJLColorAsGray yes/Activado: "" +*es.HPPJLColorAsGray no/Desactivado: "" +*es.Translation HPRGBEmulation/Color RGB: "" +*es.HPRGBEmulation DefaultSRGB/Predeterminado (sRGB): "" +*es.HPRGBEmulation PhotoSRGB/Fotografía (sRGB): "" +*es.HPRGBEmulation Adobe/Fotografía (Adobe RGB 1998): "" +*es.HPRGBEmulation VividSRGB/Intenso (sRGB): "" +*es.HPRGBEmulation HPRGBEmulationNone/Ninguno: "" +*es.Translation HPEdgeControl/Control de bordes: "" +*es.HPEdgeControl HPEdgeControlOff/Desactivado: "" +*es.HPEdgeControl Light/Claro: "" +*es.HPEdgeControl Normal/Normal: "" +*es.HPEdgeControl Max/Máximo: "" +*es.Translation HPGeneralHalftone/Medios tonos: "" +*es.HPGeneralHalftone Smooth/Uniforme: "" +*es.HPGeneralHalftone Detail/Detalle: "" +*es.Translation HPTextNeutralGrays/Gris neutro de texto: "" +*es.HPTextNeutralGrays Black/Sólo negro: "" +*es.HPTextNeutralGrays ProcessBlack/4 colores: "" +*es.Translation HPGraphicsNeutralGrays/Gris neutro de gráfico: "" +*es.HPGraphicsNeutralGrays Black/Sólo negro: "" +*es.HPGraphicsNeutralGrays ProcessBlack/4 colores: "" +*es.Translation HPPhotoNeutralGrays/Gris neutro de fotografías: "" +*es.HPPhotoNeutralGrays Black/Sólo negro: "" +*es.HPPhotoNeutralGrays ProcessBlack/4 colores: "" +*es.Translation HPPaperQualityPanel/Paper/Quality: "" +*es.Translation HPPJLEconoMode/EconoMode: "" +*es.HPPJLEconoMode True/Activado: "" +*es.HPPJLEconoMode False/Desactivado: "" +*es.Translation MediaType/Tipo de sustrato: "" +*es.MediaType Unspecified/No especificado: "" +*es.MediaType Plain/Estándar: "" +*es.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*es.MediaType HPLaserJet90/HP LaserJet 90g: "" +*es.MediaType HPColorLaserMatte105/Impresión láser color mate HP 105g: "" +*es.MediaType HPPremiumChoiceMatte120/HP Premium Choice satinado 120g: "" +*es.MediaType HPBrochureMatte150/Prospecto HP mate 150g: "" +*es.MediaType HPCoverMatte200/Portada mate HP 200g: "" +*es.MediaType HPMattePhoto200/Fotográfico mate HP 200g: "" +*es.MediaType HPPremiumPresentationGlossy120/Presentaciones HP Premium satinadas 120g: "" +*es.MediaType HPBrochureGlossy150/Prospecto HP satinado 150g: "" +*es.MediaType HPTrifoldBrochureGlossy150/Prospecto estilo tríptico HP satinado 150g: "" +*es.MediaType HPBrochureGlossy200/Prospecto HP satinado 200g: "" +*es.MediaType Light6074/Ligero 60-74g: "" +*es.MediaType Intermediate8595/Intermedio 85-95g: "" +*es.MediaType MidWeight96110/Peso medio 96-110g: "" +*es.MediaType Heavy111130/Pesado 111-130g: "" +*es.MediaType ExtraHeavy131175/Pesado extra 131-175g: "" +*es.MediaType HeavyGlossy111130/Satinado pesado 111-130g: "" +*es.MediaType ExtraHeavyGlossy131175/Extra grueso brillante 131-175g: "" +*es.MediaType CardGlossy176220/Tarjeta satinado 176-220g: "" +*es.MediaType ColorLaserTransparency/Transparencia impresión láser: "" +*es.MediaType Labels/Etiquetas: "" +*es.MediaType Letterhead/Membrete: "" +*es.MediaType Envelope/Sobre: "" +*es.MediaType HeavyEnvelope/Sobre pesado: "" +*es.MediaType Preprinted/Preimpreso: "" +*es.MediaType Prepunched/Preperforado: "" +*es.MediaType Colored/Coloreado: "" +*es.MediaType Bond/Bond: "" +*es.MediaType Recycled/Reciclado: "" +*es.MediaType Rough/Rugoso: "" +*es.MediaType HeavyRough/Pesado rugoso: "" +*es.MediaType OpaqueFilm/Película opaca: "" +*es.APPrinterPreset ChartsAndGraphs/Cuadros y gráficos: "" +*es.cupsICCProfile RGB../sRGB Matching Profile: "" +*es.cupsICCProfile CMYK../CMYK Matching Profile: "" +*es.cupsICCProfile Gray../Gray Matching Profile: "" +*es.cupsMarkerName cyan/Cian: "" +*es.cupsMarkerName magenta/Magenta: "" +*es.cupsMarkerName yellow/Amarillo: "" +*es.cupsMarkerName black/Negro: "" +*fi.Translation Manufacturer/HP: "" +*fi.Translation ModelName/HP Color LaserJet Pro M252: "" +*fi.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*fi.Translation NickName/HP Color LaserJet Pro M252: "" +*fi.Translation PageSize/Median koko: "" +*fi.PageSize Letter/US Letter: "" +*fi.PageSize Legal/US Legal: "" +*fi.PageSize Executive/Executive: "" +*fi.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*fi.PageSize 4x6/4x6: "" +*fi.PageSize 5x8/5x8: "" +*fi.PageSize A4/A4: "" +*fi.PageSize A5/A5: "" +*fi.PageSize A6/A6: "" +*fi.PageSize B5/JIS B5: "" +*fi.PageSize B6/JIS B6: "" +*fi.PageSize Env4x6/10x15 cm: "" +*fi.PageSize Oficio/Oficio 216x340 mm: "" +*fi.PageSize 195x270mm/16K 195x270 mm: "" +*fi.PageSize 184x260mm/16K 184x260 mm: "" +*fi.PageSize 7.75x10.75/16K 197x273 mm: "" +*fi.PageSize Postcard/Postcard: "" +*fi.PageSize DoublePostcardRotated/Kaksoispostikortti (pitkä reuna): "" +*fi.PageSize Env10/Kirjekuori Comm10: "" +*fi.PageSize EnvMonarch/Kirjekuori Monarch: "" +*fi.PageSize EnvISOB5/Kirjekuori ISO B5: "" +*fi.PageSize EnvC5/Kirjekuori C5: "" +*fi.PageSize EnvDL/Kirjekuori DL: "" +*fi.Translation Duplex/Kaksipuolinen: "" +*fi.Duplex None/Ei käytössä: "" +*fi.Duplex DuplexNoTumble/Sidonta-pitkäreuna: "" +*fi.Duplex DuplexTumble/Sidonta-lyhytreuna: "" +*fi.Translation InputSlot/Paperinsyöttö: "" +*fi.InputSlot Tray1/Lokero 1: "" +*fi.InputSlot Tray2/Lokero 2: "" +*fi.InputSlot ManualFeed/Käsinsyöttö: "" +*fi.Translation InstallableOptions/Installable Options: "" +*fi.Translation HPOption_Duplexer/Kaksipuolisen tulostuksen lisälaite: "" +*fi.HPOption_Duplexer True/Käytössä: "" +*fi.HPOption_Duplexer False/Ei käytössä: "" +*fi.Translation HPColorOptionsPanel/Väri: "" +*fi.Translation HPPJLColorAsGray/Tulosta värit harmaina: "" +*fi.HPPJLColorAsGray yes/Käytössä: "" +*fi.HPPJLColorAsGray no/Ei käytössä: "" +*fi.Translation HPRGBEmulation/RGB-väri: "" +*fi.HPRGBEmulation DefaultSRGB/Oletus (sRGB): "" +*fi.HPRGBEmulation PhotoSRGB/Valokuva (sRGB): "" +*fi.HPRGBEmulation Adobe/Valokuva (Adobe RGB 1998): "" +*fi.HPRGBEmulation VividSRGB/Kirkas (sRGB): "" +*fi.HPRGBEmulation HPRGBEmulationNone/Ei mitään: "" +*fi.Translation HPEdgeControl/Reunojen hallinta: "" +*fi.HPEdgeControl HPEdgeControlOff/Ei käytössä: "" +*fi.HPEdgeControl Light/Vaalea: "" +*fi.HPEdgeControl Normal/Normaali: "" +*fi.HPEdgeControl Max/Maksimi: "" +*fi.Translation HPGeneralHalftone/Puolisävy: "" +*fi.HPGeneralHalftone Smooth/Tasainen: "" +*fi.HPGeneralHalftone Detail/Yksityiskohtainen: "" +*fi.Translation HPTextNeutralGrays/Teksti, neutraali harmaa: "" +*fi.HPTextNeutralGrays Black/Vain musta: "" +*fi.HPTextNeutralGrays ProcessBlack/Neliväri: "" +*fi.Translation HPGraphicsNeutralGrays/Kuva, neutraali harmaa: "" +*fi.HPGraphicsNeutralGrays Black/Vain musta: "" +*fi.HPGraphicsNeutralGrays ProcessBlack/Neliväri: "" +*fi.Translation HPPhotoNeutralGrays/Val., neutraali harmaa: "" +*fi.HPPhotoNeutralGrays Black/Vain musta: "" +*fi.HPPhotoNeutralGrays ProcessBlack/Neliväri: "" +*fi.Translation HPPaperQualityPanel/Paper/Quality: "" +*fi.Translation HPPJLEconoMode/EconoMode: "" +*fi.HPPJLEconoMode True/Käytössä: "" +*fi.HPPJLEconoMode False/Ei käytössä: "" +*fi.Translation MediaType/Tulostusmateriaali: "" +*fi.MediaType Unspecified/Määrittämätön: "" +*fi.MediaType Plain/Tavallinen: "" +*fi.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*fi.MediaType HPLaserJet90/HP LaserJet, 90g: "" +*fi.MediaType HPColorLaserMatte105/HP<3A>n matta värilaser 105g: "" +*fi.MediaType HPPremiumChoiceMatte120/HP Premium Choice, matta 120g: "" +*fi.MediaType HPBrochureMatte150/HP<3A>n matta esite 150g: "" +*fi.MediaType HPCoverMatte200/HP<3A>n matta kansi 200g: "" +*fi.MediaType HPMattePhoto200/HP<3A>n matta valokuva 200g: "" +*fi.MediaType HPPremiumPresentationGlossy120/HP Premium -esitys, kiiltävä 120g: "" +*fi.MediaType HPBrochureGlossy150/HP<3A>n kiiltävä esite 150g: "" +*fi.MediaType HPTrifoldBrochureGlossy150/HP<3A>n kolminkertainen esite 150g: "" +*fi.MediaType HPBrochureGlossy200/HP<3A>n kiiltävä esite 200g: "" +*fi.MediaType Light6074/Kevyt 60-74g: "" +*fi.MediaType Intermediate8595/Keskikoko 85-95g: "" +*fi.MediaType MidWeight96110/Keskipaksu 96-110g: "" +*fi.MediaType Heavy111130/Paksu 111-130g: "" +*fi.MediaType ExtraHeavy131175/Erittäin paksu 131-175g: "" +*fi.MediaType HeavyGlossy111130/Raskas kiiltävä 111-130g: "" +*fi.MediaType ExtraHeavyGlossy131175/Er. raskas kiiltävä 131-175g: "" +*fi.MediaType CardGlossy176220/Kiiltävä kortti 176-220g: "" +*fi.MediaType ColorLaserTransparency/Värilaserkalvo: "" +*fi.MediaType Labels/Tarrat: "" +*fi.MediaType Letterhead/Kirjelomake: "" +*fi.MediaType Envelope/Kirjekuori: "" +*fi.MediaType HeavyEnvelope/Paksu kirjekuori: "" +*fi.MediaType Preprinted/Esipainettu: "" +*fi.MediaType Prepunched/Rei’itetty: "" +*fi.MediaType Colored/Värillinen: "" +*fi.MediaType Bond/Kova asiakirjapaperi: "" +*fi.MediaType Recycled/Uusiopaperi: "" +*fi.MediaType Rough/Karkea: "" +*fi.MediaType HeavyRough/Paksu karkea: "" +*fi.MediaType OpaqueFilm/Läpikuultamaton kalvo: "" +*fi.APPrinterPreset ChartsAndGraphs/Kaaviot ja grafiikka: "" +*fi.cupsICCProfile RGB../sRGB Matching Profile: "" +*fi.cupsICCProfile CMYK../CMYK Matching Profile: "" +*fi.cupsICCProfile Gray../Gray Matching Profile: "" +*fi.cupsMarkerName cyan/Syaani: "" +*fi.cupsMarkerName magenta/Magenta: "" +*fi.cupsMarkerName yellow/Keltainen: "" +*fi.cupsMarkerName black/Musta: "" +*fr.Translation Manufacturer/HP: "" +*fr.Translation ModelName/HP Color LaserJet Pro M252: "" +*fr.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*fr.Translation NickName/HP Color LaserJet Pro M252: "" +*fr.Translation PageSize/Taille du papier: "" +*fr.PageSize Letter/US Letter: "" +*fr.PageSize Legal/US Legal: "" +*fr.PageSize Executive/Exécutif: "" +*fr.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*fr.PageSize 4x6/4x6: "" +*fr.PageSize 5x8/5x8: "" +*fr.PageSize A4/A4: "" +*fr.PageSize A5/A5: "" +*fr.PageSize A6/A6: "" +*fr.PageSize B5/JIS B5: "" +*fr.PageSize B6/JIS B6: "" +*fr.PageSize Env4x6/10x15 cm: "" +*fr.PageSize Oficio/Oficio 216x340 mm: "" +*fr.PageSize 195x270mm/16K 195x270 mm: "" +*fr.PageSize 184x260mm/16K 184x260 mm: "" +*fr.PageSize 7.75x10.75/16K 197x273 mm: "" +*fr.PageSize Postcard/Postcard: "" +*fr.PageSize DoublePostcardRotated/Carte postale double - Long bord: "" +*fr.PageSize Env10/Enveloppe Comm10: "" +*fr.PageSize EnvMonarch/Enveloppe Monarch: "" +*fr.PageSize EnvISOB5/Enveloppe ISO B5: "" +*fr.PageSize EnvC5/Enveloppe C5: "" +*fr.PageSize EnvDL/Enveloppe DL: "" +*fr.Translation Duplex/Recto verso: "" +*fr.Duplex None/Désactivé: "" +*fr.Duplex DuplexNoTumble/Reliure côté long: "" +*fr.Duplex DuplexTumble/Reliure côté court: "" +*fr.Translation InputSlot/Alimentation: "" +*fr.InputSlot Tray1/Bac 1: "" +*fr.InputSlot Tray2/Bac 2: "" +*fr.InputSlot ManualFeed/Alimentation manuelle: "" +*fr.Translation InstallableOptions/Installable Options: "" +*fr.Translation HPOption_Duplexer/Unité recto verso: "" +*fr.HPOption_Duplexer True/Activé: "" +*fr.HPOption_Duplexer False/Désactivé: "" +*fr.Translation HPColorOptionsPanel/Couleur: "" +*fr.Translation HPPJLColorAsGray/Imprimer couleur en gris: "" +*fr.HPPJLColorAsGray yes/Activé: "" +*fr.HPPJLColorAsGray no/Désactivé: "" +*fr.Translation HPRGBEmulation/Couleur RGB: "" +*fr.HPRGBEmulation DefaultSRGB/Par défaut (sRGB): "" +*fr.HPRGBEmulation PhotoSRGB/Photo (sRGB): "" +*fr.HPRGBEmulation Adobe/Photo (Adobe RGB 1998): "" +*fr.HPRGBEmulation VividSRGB/Vive (sRGB): "" +*fr.HPRGBEmulation HPRGBEmulationNone/Aucun: "" +*fr.Translation HPEdgeControl/Contrôle du bord: "" +*fr.HPEdgeControl HPEdgeControlOff/Désactivé: "" +*fr.HPEdgeControl Light/Clair: "" +*fr.HPEdgeControl Normal/Normal: "" +*fr.HPEdgeControl Max/Maximum: "" +*fr.Translation HPGeneralHalftone/Demi-teinte: "" +*fr.HPGeneralHalftone Smooth/Lisse: "" +*fr.HPGeneralHalftone Detail/Détaillées: "" +*fr.Translation HPTextNeutralGrays/Texte gris neutre: "" +*fr.HPTextNeutralGrays Black/Noir uniquement: "" +*fr.HPTextNeutralGrays ProcessBlack/4 couleurs: "" +*fr.Translation HPGraphicsNeutralGrays/Graphiques gris neutre: "" +*fr.HPGraphicsNeutralGrays Black/Noir uniquement: "" +*fr.HPGraphicsNeutralGrays ProcessBlack/4 couleurs: "" +*fr.Translation HPPhotoNeutralGrays/Photo gris neutre: "" +*fr.HPPhotoNeutralGrays Black/Noir uniquement: "" +*fr.HPPhotoNeutralGrays ProcessBlack/4 couleurs: "" +*fr.Translation HPPaperQualityPanel/Paper/Quality: "" +*fr.Translation HPPJLEconoMode/EconoMode: "" +*fr.HPPJLEconoMode True/Activé: "" +*fr.HPPJLEconoMode False/Désactivé: "" +*fr.Translation MediaType/Type de support: "" +*fr.MediaType Unspecified/Non spécifié: "" +*fr.MediaType Plain/Ordinaire: "" +*fr.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*fr.MediaType HPLaserJet90/HP LaserJet 90g: "" +*fr.MediaType HPColorLaserMatte105/Papier couleur laser mat 105g HP: "" +*fr.MediaType HPPremiumChoiceMatte120/Papier 120g mat HP Premium Choice: "" +*fr.MediaType HPBrochureMatte150/HP Brochure Mat 150g: "" +*fr.MediaType HPCoverMatte200/Couverture mate 200g HP: "" +*fr.MediaType HPMattePhoto200/Papier photo mat HP 200g: "" +*fr.MediaType HPPremiumPresentationGlossy120/Papier brillant pour présentation HP Premium 120g: "" +*fr.MediaType HPBrochureGlossy150/HP Brochure Brillant 150g: "" +*fr.MediaType HPTrifoldBrochureGlossy150/Papier pour brochure plié en trois HP, brillant, 150g: "" +*fr.MediaType HPBrochureGlossy200/HP Brochure Brillant 200g: "" +*fr.MediaType Light6074/Fin 60-74g: "" +*fr.MediaType Intermediate8595/Intermédiaire 85-95g: "" +*fr.MediaType MidWeight96110/Grammage moyen 96-110g: "" +*fr.MediaType Heavy111130/Epais 111-130g: "" +*fr.MediaType ExtraHeavy131175/Très épais 131-175g: "" +*fr.MediaType HeavyGlossy111130/Glacé et épais 111-130g: "" +*fr.MediaType ExtraHeavyGlossy131175/Papier glacé extra fort 131-175g: "" +*fr.MediaType CardGlossy176220/Carte brillante 176-220g: "" +*fr.MediaType ColorLaserTransparency/Transpar. laser couleur: "" +*fr.MediaType Labels/Étiquettes: "" +*fr.MediaType Letterhead/Papier à en-tête: "" +*fr.MediaType Envelope/Enveloppe: "" +*fr.MediaType HeavyEnvelope/Enveloppe à fort grammage: "" +*fr.MediaType Preprinted/Préimprimé: "" +*fr.MediaType Prepunched/Perforé: "" +*fr.MediaType Colored/Coloré: "" +*fr.MediaType Bond/Document: "" +*fr.MediaType Recycled/Recyclé: "" +*fr.MediaType Rough/Rugueux: "" +*fr.MediaType HeavyRough/Epais rugueux: "" +*fr.MediaType OpaqueFilm/Film opaque: "" +*fr.APPrinterPreset ChartsAndGraphs/Diagrammes et graphiques: "" +*fr.cupsICCProfile RGB../sRGB Matching Profile: "" +*fr.cupsICCProfile CMYK../CMYK Matching Profile: "" +*fr.cupsICCProfile Gray../Gray Matching Profile: "" +*fr.cupsMarkerName cyan/Cyan: "" +*fr.cupsMarkerName magenta/Magenta: "" +*fr.cupsMarkerName yellow/Jaune: "" +*fr.cupsMarkerName black/Noir: "" +*it.Translation Manufacturer/HP: "" +*it.Translation ModelName/HP Color LaserJet Pro M252: "" +*it.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*it.Translation NickName/HP Color LaserJet Pro M252: "" +*it.Translation PageSize/Dimensione media: "" +*it.PageSize Letter/US Letter: "" +*it.PageSize Legal/US Legal: "" +*it.PageSize Executive/Executive: "" +*it.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*it.PageSize 4x6/4x6: "" +*it.PageSize 5x8/5x8: "" +*it.PageSize A4/A4: "" +*it.PageSize A5/A5: "" +*it.PageSize A6/A6: "" +*it.PageSize B5/JIS B5: "" +*it.PageSize B6/JIS B6: "" +*it.PageSize Env4x6/10x15 cm: "" +*it.PageSize Oficio/Oficio 216x340 mm: "" +*it.PageSize 195x270mm/16K 195x270 mm: "" +*it.PageSize 184x260mm/16K 184x260 mm: "" +*it.PageSize 7.75x10.75/16K 197x273 mm: "" +*it.PageSize Postcard/Postcard: "" +*it.PageSize DoublePostcardRotated/Cartolina doppia Bordo lungo: "" +*it.PageSize Env10/Busta Comm10: "" +*it.PageSize EnvMonarch/Busta Monarch: "" +*it.PageSize EnvISOB5/Busta ISO B5: "" +*it.PageSize EnvC5/Busta C5: "" +*it.PageSize EnvDL/Busta DL: "" +*it.Translation Duplex/Fronte-retro: "" +*it.Duplex None/Disattivato: "" +*it.Duplex DuplexNoTumble/Rilegatura con taglio largo: "" +*it.Duplex DuplexTumble/Rilegatura con taglio stretto: "" +*it.Translation InputSlot/Alimentazione carta: "" +*it.InputSlot Tray1/Vassoio 1: "" +*it.InputSlot Tray2/Vassoio 2: "" +*it.InputSlot ManualFeed/Alimentazione manuale: "" +*it.Translation InstallableOptions/Installable Options: "" +*it.Translation HPOption_Duplexer/Accessorio per stampa duplex: "" +*it.HPOption_Duplexer True/Attivato: "" +*it.HPOption_Duplexer False/Disattivato: "" +*it.Translation HPColorOptionsPanel/Colore: "" +*it.Translation HPPJLColorAsGray/Stampa colore in grigio: "" +*it.HPPJLColorAsGray yes/Attivato: "" +*it.HPPJLColorAsGray no/Disattivato: "" +*it.Translation HPRGBEmulation/Colore RGB: "" +*it.HPRGBEmulation DefaultSRGB/Predefinito (sRGB): "" +*it.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*it.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*it.HPRGBEmulation VividSRGB/Brillante (sRGB): "" +*it.HPRGBEmulation HPRGBEmulationNone/Nessuna: "" +*it.Translation HPEdgeControl/Controllo margine: "" +*it.HPEdgeControl HPEdgeControlOff/Disattivato: "" +*it.HPEdgeControl Light/Chiaro: "" +*it.HPEdgeControl Normal/Normale: "" +*it.HPEdgeControl Max/Massimo: "" +*it.Translation HPGeneralHalftone/Mezzitoni: "" +*it.HPGeneralHalftone Smooth/Uniformi: "" +*it.HPGeneralHalftone Detail/Dettagli: "" +*it.Translation HPTextNeutralGrays/Grigi neutri testo: "" +*it.HPTextNeutralGrays Black/Solo nero: "" +*it.HPTextNeutralGrays ProcessBlack/Quadricromia: "" +*it.Translation HPGraphicsNeutralGrays/Grigi neutri grafici: "" +*it.HPGraphicsNeutralGrays Black/Solo nero: "" +*it.HPGraphicsNeutralGrays ProcessBlack/Quadricromia: "" +*it.Translation HPPhotoNeutralGrays/Grigi neutri fotografie: "" +*it.HPPhotoNeutralGrays Black/Solo nero: "" +*it.HPPhotoNeutralGrays ProcessBlack/Quadricromia: "" +*it.Translation HPPaperQualityPanel/Paper/Quality: "" +*it.Translation HPPJLEconoMode/EconoMode: "" +*it.HPPJLEconoMode True/Attivato: "" +*it.HPPJLEconoMode False/Disattivato: "" +*it.Translation MediaType/Tipo di supporto: "" +*it.MediaType Unspecified/Non specificato: "" +*it.MediaType Plain/Normale: "" +*it.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*it.MediaType HPLaserJet90/HP LaserJet 90g: "" +*it.MediaType HPColorLaserMatte105/Opaca a colori per stampanti laser HP 105g: "" +*it.MediaType HPPremiumChoiceMatte120/Opaca HP alta qualità 120g: "" +*it.MediaType HPBrochureMatte150/Brochure opaca 150g HP: "" +*it.MediaType HPCoverMatte200/Copertina opaca HP 200g: "" +*it.MediaType HPMattePhoto200/Fotografica opaca HP 200g: "" +*it.MediaType HPPremiumPresentationGlossy120/Presentazione lucida ad alta qualità 120g HP: "" +*it.MediaType HPBrochureGlossy150/Brochure lucida 150g HP: "" +*it.MediaType HPTrifoldBrochureGlossy150/Brochure lucida piegata in tre 150g HP: "" +*it.MediaType HPBrochureGlossy200/Brochure lucida 200g HP: "" +*it.MediaType Light6074/Leggera 60-74g: "" +*it.MediaType Intermediate8595/Intermedia 85-95g: "" +*it.MediaType MidWeight96110/Medio spessore 96-110g: "" +*it.MediaType Heavy111130/Pesante 111-130g: "" +*it.MediaType ExtraHeavy131175/Extra Pesante 131-175g: "" +*it.MediaType HeavyGlossy111130/Carta patinata pesante 111-130g: "" +*it.MediaType ExtraHeavyGlossy131175/Lucida pesante extra 131-175g: "" +*it.MediaType CardGlossy176220/Scheda lucida 176-220g: "" +*it.MediaType ColorLaserTransparency/Lucido per stampanti laser a colori: "" +*it.MediaType Labels/Etichette: "" +*it.MediaType Letterhead/Carta intestata: "" +*it.MediaType Envelope/Busta: "" +*it.MediaType HeavyEnvelope/Busta pesante: "" +*it.MediaType Preprinted/Prestampata: "" +*it.MediaType Prepunched/Perforata: "" +*it.MediaType Colored/Colorata: "" +*it.MediaType Bond/Carta fine: "" +*it.MediaType Recycled/Riciclata: "" +*it.MediaType Rough/Ruvida: "" +*it.MediaType HeavyRough/Ruvida pesante: "" +*it.MediaType OpaqueFilm/Pellicola opaca: "" +*it.APPrinterPreset ChartsAndGraphs/Diagrammi e grafici: "" +*it.cupsICCProfile RGB../sRGB Matching Profile: "" +*it.cupsICCProfile CMYK../CMYK Matching Profile: "" +*it.cupsICCProfile Gray../Gray Matching Profile: "" +*it.cupsMarkerName cyan/Ciano: "" +*it.cupsMarkerName magenta/Magenta: "" +*it.cupsMarkerName yellow/Giallo: "" +*it.cupsMarkerName black/Nero: "" +*ja.Translation Manufacturer/HP: "" +*ja.Translation ModelName/HP Color LaserJet Pro M252: "" +*ja.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*ja.Translation NickName/HP Color LaserJet Pro M252: "" +*ja.Translation PageSize/メディアサイズ: "" +*ja.PageSize Letter/US Letter: "" +*ja.PageSize Legal/US Legal: "" +*ja.PageSize Executive/エグゼクティブ: "" +*ja.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*ja.PageSize 4x6/4x6: "" +*ja.PageSize 5x8/5x8: "" +*ja.PageSize A4/A4: "" +*ja.PageSize A5/A5: "" +*ja.PageSize A6/A6: "" +*ja.PageSize B5/JIS B5: "" +*ja.PageSize B6/JIS B6: "" +*ja.PageSize Env4x6/10x15 cm: "" +*ja.PageSize Oficio/Oficio 216x340 mm: "" +*ja.PageSize 195x270mm/16K 195x270 mm: "" +*ja.PageSize 184x260mm/16K 184x260 mm: "" +*ja.PageSize 7.75x10.75/16K 197x273 mm: "" +*ja.PageSize Postcard/Postcard: "" +*ja.PageSize DoublePostcardRotated/往復はがき 横: "" +*ja.PageSize Env10/封筒 Comm10: "" +*ja.PageSize EnvMonarch/封筒 Monarch: "" +*ja.PageSize EnvISOB5/封筒 ISO B5: "" +*ja.PageSize EnvC5/封筒 C5: "" +*ja.PageSize EnvDL/封筒 DL: "" +*ja.Translation Duplex/両面: "" +*ja.Duplex None/オフ: "" +*ja.Duplex DuplexNoTumble/長辺とじ: "" +*ja.Duplex DuplexTumble/短辺とじ: "" +*ja.Translation InputSlot/給紙: "" +*ja.InputSlot Tray1/トレイ 1: "" +*ja.InputSlot Tray2/トレイ 2: "" +*ja.InputSlot ManualFeed/手差し: "" +*ja.Translation InstallableOptions/Installable Options: "" +*ja.Translation HPOption_Duplexer/両面印刷アクセサリ: "" +*ja.HPOption_Duplexer True/オン: "" +*ja.HPOption_Duplexer False/オフ: "" +*ja.Translation HPColorOptionsPanel/カラー: "" +*ja.Translation HPPJLColorAsGray/グレー印刷: "" +*ja.HPPJLColorAsGray yes/オン: "" +*ja.HPPJLColorAsGray no/オフ: "" +*ja.Translation HPRGBEmulation/RGB カラー: "" +*ja.HPRGBEmulation DefaultSRGB/デフォルト (sRGB): "" +*ja.HPRGBEmulation PhotoSRGB/フォト (sRGB): "" +*ja.HPRGBEmulation Adobe/フォト (Adobe RGB 1998): "" +*ja.HPRGBEmulation VividSRGB/鮮明 (sRGB): "" +*ja.HPRGBEmulation HPRGBEmulationNone/なし: "" +*ja.Translation HPEdgeControl/輪郭コントロール: "" +*ja.HPEdgeControl HPEdgeControlOff/オフ: "" +*ja.HPEdgeControl Light/薄い: "" +*ja.HPEdgeControl Normal/標準: "" +*ja.HPEdgeControl Max/最大: "" +*ja.Translation HPGeneralHalftone/ハーフトーン: "" +*ja.HPGeneralHalftone Smooth/テキスト: "" +*ja.HPGeneralHalftone Detail/詳細: "" +*ja.Translation HPTextNeutralGrays/テキスト グレー中間色: "" +*ja.HPTextNeutralGrays Black/黒のみ: "" +*ja.HPTextNeutralGrays ProcessBlack/4 色: "" +*ja.Translation HPGraphicsNeutralGrays/グラフィック グレー中間色: "" +*ja.HPGraphicsNeutralGrays Black/黒のみ: "" +*ja.HPGraphicsNeutralGrays ProcessBlack/4 色: "" +*ja.Translation HPPhotoNeutralGrays/写真グレー中間色: "" +*ja.HPPhotoNeutralGrays Black/黒のみ: "" +*ja.HPPhotoNeutralGrays ProcessBlack/4 色: "" +*ja.Translation HPPaperQualityPanel/Paper/Quality: "" +*ja.Translation HPPJLEconoMode/EconoMode: "" +*ja.HPPJLEconoMode True/オン: "" +*ja.HPPJLEconoMode False/オフ: "" +*ja.Translation MediaType/用紙の種類: "" +*ja.MediaType Unspecified/指定なし: "" +*ja.MediaType Plain/普通用紙: "" +*ja.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*ja.MediaType HPLaserJet90/HP レーザージェット用紙 90g: "" +*ja.MediaType HPColorLaserMatte105/HP カラーレーザー用紙 (つや消し) 105g: "" +*ja.MediaType HPPremiumChoiceMatte120/HP プレミアムチョイス (つや消し) 120g: "" +*ja.MediaType HPBrochureMatte150/HP ブローシャ用紙 (つや消し) 150g: "" +*ja.MediaType HPCoverMatte200/HP つや消し表紙用紙 200g: "" +*ja.MediaType HPMattePhoto200/HP つや消しフォト用紙 200g: "" +*ja.MediaType HPPremiumPresentationGlossy120/HP プレミアムプレゼンテーション用紙 (つや消し) 120g: "" +*ja.MediaType HPBrochureGlossy150/HP ブローシャ用紙 (光沢) 150g: "" +*ja.MediaType HPTrifoldBrochureGlossy150/HP 3 つ折りブローシャ用紙 (光沢) 150g: "" +*ja.MediaType HPBrochureGlossy200/HP ブローシャ用紙 (光沢) 200g: "" +*ja.MediaType Light6074/軽い用紙 60-74g: "" +*ja.MediaType Intermediate8595/中間 85-95g: "" +*ja.MediaType MidWeight96110/中厚手用紙 96-110g: "" +*ja.MediaType Heavy111130/重い用紙 111-130g: "" +*ja.MediaType ExtraHeavy131175/重い用紙 131-175g: "" +*ja.MediaType HeavyGlossy111130/厚手光沢紙 111-130g: "" +*ja.MediaType ExtraHeavyGlossy131175/超厚手光沢紙 131-175g: "" +*ja.MediaType CardGlossy176220/カード光沢紙 176-220g: "" +*ja.MediaType ColorLaserTransparency/カラーレーザー OHP フィルム: "" +*ja.MediaType Labels/ラベル: "" +*ja.MediaType Letterhead/レターヘッド付き: "" +*ja.MediaType Envelope/封筒: "" +*ja.MediaType HeavyEnvelope/厚手封筒: "" +*ja.MediaType Preprinted/印刷フォーム: "" +*ja.MediaType Prepunched/穴あき用紙: "" +*ja.MediaType Colored/カラー: "" +*ja.MediaType Bond/ボンド紙: "" +*ja.MediaType Recycled/再生紙: "" +*ja.MediaType Rough/ざら紙: "" +*ja.MediaType HeavyRough/厚手粗め用紙: "" +*ja.MediaType OpaqueFilm/不透明なフィルム: "" +*ja.APPrinterPreset ChartsAndGraphs/グラフと図: "" +*ja.cupsICCProfile RGB../sRGB Matching Profile: "" +*ja.cupsICCProfile CMYK../CMYK Matching Profile: "" +*ja.cupsICCProfile Gray../Gray Matching Profile: "" +*ja.cupsMarkerName cyan/シアン: "" +*ja.cupsMarkerName magenta/マゼンタ: "" +*ja.cupsMarkerName yellow/イエロー: "" +*ja.cupsMarkerName black/黒: "" +*ko.Translation Manufacturer/HP: "" +*ko.Translation ModelName/HP Color LaserJet Pro M252: "" +*ko.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*ko.Translation NickName/HP Color LaserJet Pro M252: "" +*ko.Translation PageSize/미디어 크기: "" +*ko.PageSize Letter/US Letter: "" +*ko.PageSize Legal/US Legal: "" +*ko.PageSize Executive/Executive: "" +*ko.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*ko.PageSize 4x6/4x6: "" +*ko.PageSize 5x8/5x8: "" +*ko.PageSize A4/A4: "" +*ko.PageSize A5/A5: "" +*ko.PageSize A6/A6: "" +*ko.PageSize B5/JIS B5: "" +*ko.PageSize B6/JIS B6: "" +*ko.PageSize Env4x6/10x15 cm: "" +*ko.PageSize Oficio/Oficio 216x340 mm: "" +*ko.PageSize 195x270mm/16K 195x270 mm: "" +*ko.PageSize 184x260mm/16K 184x260 mm: "" +*ko.PageSize 7.75x10.75/16K 197x273 mm: "" +*ko.PageSize Postcard/Postcard: "" +*ko.PageSize DoublePostcardRotated/엽서 Long Edge(양면): "" +*ko.PageSize Env10/Comm10 봉투: "" +*ko.PageSize EnvMonarch/Monarch 봉투: "" +*ko.PageSize EnvISOB5/ISO B5 봉투: "" +*ko.PageSize EnvC5/C5 봉투: "" +*ko.PageSize EnvDL/DL 봉투: "" +*ko.Translation Duplex/양면: "" +*ko.Duplex None/꺼짐: "" +*ko.Duplex DuplexNoTumble/긴-가장자리 제본선: "" +*ko.Duplex DuplexTumble/짧은-가장자리 제본선: "" +*ko.Translation InputSlot/용지 공급: "" +*ko.InputSlot Tray1/용지함 1: "" +*ko.InputSlot Tray2/용지함 2: "" +*ko.InputSlot ManualFeed/수동 급지: "" +*ko.Translation InstallableOptions/Installable Options: "" +*ko.Translation HPOption_Duplexer/양면 인쇄 부속품: "" +*ko.HPOption_Duplexer True/켜짐: "" +*ko.HPOption_Duplexer False/꺼짐: "" +*ko.Translation HPColorOptionsPanel/색상: "" +*ko.Translation HPPJLColorAsGray/컬러를 흑백음영으로 인쇄: "" +*ko.HPPJLColorAsGray yes/켜짐: "" +*ko.HPPJLColorAsGray no/꺼짐: "" +*ko.Translation HPRGBEmulation/RGB 색상: "" +*ko.HPRGBEmulation DefaultSRGB/기본값(sRGB): "" +*ko.HPRGBEmulation PhotoSRGB/사진(sRGB): "" +*ko.HPRGBEmulation Adobe/사진(Adobe RGB 1998): "" +*ko.HPRGBEmulation VividSRGB/선명하게 (sRGB): "" +*ko.HPRGBEmulation HPRGBEmulationNone/없음: "" +*ko.Translation HPEdgeControl/가장자리 제어: "" +*ko.HPEdgeControl HPEdgeControlOff/꺼짐: "" +*ko.HPEdgeControl Light/밝게: "" +*ko.HPEdgeControl Normal/보통: "" +*ko.HPEdgeControl Max/최대: "" +*ko.Translation HPGeneralHalftone/중간 색조: "" +*ko.HPGeneralHalftone Smooth/문장: "" +*ko.HPGeneralHalftone Detail/자세히: "" +*ko.Translation HPTextNeutralGrays/문장 순 회색: "" +*ko.HPTextNeutralGrays Black/흑색 전용: "" +*ko.HPTextNeutralGrays ProcessBlack/4색: "" +*ko.Translation HPGraphicsNeutralGrays/그래픽 순 회색: "" +*ko.HPGraphicsNeutralGrays Black/흑색 전용: "" +*ko.HPGraphicsNeutralGrays ProcessBlack/4색: "" +*ko.Translation HPPhotoNeutralGrays/사진 순말: "" +*ko.HPPhotoNeutralGrays Black/흑색 전용: "" +*ko.HPPhotoNeutralGrays ProcessBlack/4색: "" +*ko.Translation HPPaperQualityPanel/Paper/Quality: "" +*ko.Translation HPPJLEconoMode/EconoMode: "" +*ko.HPPJLEconoMode True/켜짐: "" +*ko.HPPJLEconoMode False/꺼짐: "" +*ko.Translation MediaType/용지 종류: "" +*ko.MediaType Unspecified/지정되지 않음: "" +*ko.MediaType Plain/일반용지: "" +*ko.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*ko.MediaType HPLaserJet90/HP LaserJet 90g: "" +*ko.MediaType HPColorLaserMatte105/HP Color Laser 무광 105g: "" +*ko.MediaType HPPremiumChoiceMatte120/HP 프리미엄 초이스 무광 120g: "" +*ko.MediaType HPBrochureMatte150/HP 무광택 브로셔 150g: "" +*ko.MediaType HPCoverMatte200/HP 표지 무광 200g: "" +*ko.MediaType HPMattePhoto200/HP 무광택 사진 200g: "" +*ko.MediaType HPPremiumPresentationGlossy120/HP 프리미엄 프리젠테이션 광택 120g: "" +*ko.MediaType HPBrochureGlossy150/HP 광택 브로셔 150g: "" +*ko.MediaType HPTrifoldBrochureGlossy150/HP 3중 접기 광택 브로셔 150g: "" +*ko.MediaType HPBrochureGlossy200/HP 광택 브로셔 200g: "" +*ko.MediaType Light6074/경량지 60-74g: "" +*ko.MediaType Intermediate8595/보통지 85-95g: "" +*ko.MediaType MidWeight96110/보통 중량지 96-110g: "" +*ko.MediaType Heavy111130/중량지 111-130g: "" +*ko.MediaType ExtraHeavy131175/초중량지 131-175g: "" +*ko.MediaType HeavyGlossy111130/광택 중량지 111-130g: "" +*ko.MediaType ExtraHeavyGlossy131175/고광택 용지 131-175g: "" +*ko.MediaType CardGlossy176220/인사장 유광 176-220g: "" +*ko.MediaType ColorLaserTransparency/Color Laser 투명 필름: "" +*ko.MediaType Labels/레이블: "" +*ko.MediaType Letterhead/레터헤드: "" +*ko.MediaType Envelope/봉투: "" +*ko.MediaType HeavyEnvelope/중량 봉투: "" +*ko.MediaType Preprinted/미리 인쇄: "" +*ko.MediaType Prepunched/천공 용지: "" +*ko.MediaType Colored/색상지: "" +*ko.MediaType Bond/본드지: "" +*ko.MediaType Recycled/재활용지: "" +*ko.MediaType Rough/거친 용지: "" +*ko.MediaType HeavyRough/중량 거친 용지: "" +*ko.MediaType OpaqueFilm/오파크 필름: "" +*ko.APPrinterPreset ChartsAndGraphs/차트 및 그래픽: "" +*ko.cupsICCProfile RGB../sRGB Matching Profile: "" +*ko.cupsICCProfile CMYK../CMYK Matching Profile: "" +*ko.cupsICCProfile Gray../Gray Matching Profile: "" +*ko.cupsMarkerName cyan/시안색: "" +*ko.cupsMarkerName magenta/마젠타색: "" +*ko.cupsMarkerName yellow/노랑색: "" +*ko.cupsMarkerName black/검정색: "" +*no.Translation Manufacturer/HP: "" +*no.Translation ModelName/HP Color LaserJet Pro M252: "" +*no.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*no.Translation NickName/HP Color LaserJet Pro M252: "" +*no.Translation PageSize/Papirstørrelse: "" +*no.PageSize Letter/US Letter: "" +*no.PageSize Legal/US Legal: "" +*no.PageSize Executive/Executive: "" +*no.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*no.PageSize 4x6/4x6: "" +*no.PageSize 5x8/5x8: "" +*no.PageSize A4/A4: "" +*no.PageSize A5/A5: "" +*no.PageSize A6/A6: "" +*no.PageSize B5/JIS B5: "" +*no.PageSize B6/JIS B6: "" +*no.PageSize Env4x6/10x15 cm: "" +*no.PageSize Oficio/Oficio 216x340 mm: "" +*no.PageSize 195x270mm/16K 195x270 mm: "" +*no.PageSize 184x260mm/16K 184x260 mm: "" +*no.PageSize 7.75x10.75/16K 197x273 mm: "" +*no.PageSize Postcard/Postcard: "" +*no.PageSize DoublePostcardRotated/Dobbelt postkort langside: "" +*no.PageSize Env10/Comm10-konvolutt: "" +*no.PageSize EnvMonarch/Monarch-konvolutt: "" +*no.PageSize EnvISOB5/B5-konvolutt: "" +*no.PageSize EnvC5/C5-konvolutt: "" +*no.PageSize EnvDL/DL-konvolutt: "" +*no.Translation Duplex/Tosidig: "" +*no.Duplex None/Av: "" +*no.Duplex DuplexNoTumble/Innbinding på langsiden: "" +*no.Duplex DuplexTumble/Innbinding på kortsiden: "" +*no.Translation InputSlot/Papirmating: "" +*no.InputSlot Tray1/Skuff 1: "" +*no.InputSlot Tray2/Skuff 2: "" +*no.InputSlot ManualFeed/Manuell mater: "" +*no.Translation InstallableOptions/Installable Options: "" +*no.Translation HPOption_Duplexer/Tosidig-enhet: "" +*no.HPOption_Duplexer True/På: "" +*no.HPOption_Duplexer False/Av: "" +*no.Translation HPColorOptionsPanel/Farge: "" +*no.Translation HPPJLColorAsGray/Skriv ut farger i grått: "" +*no.HPPJLColorAsGray yes/På: "" +*no.HPPJLColorAsGray no/Av: "" +*no.Translation HPRGBEmulation/RGB-farge: "" +*no.HPRGBEmulation DefaultSRGB/Standard (sRGB): "" +*no.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*no.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*no.HPRGBEmulation VividSRGB/Sterk (sRGB): "" +*no.HPRGBEmulation HPRGBEmulationNone/Ingen: "" +*no.Translation HPEdgeControl/Kantkontroll: "" +*no.HPEdgeControl HPEdgeControlOff/Av: "" +*no.HPEdgeControl Light/Lys: "" +*no.HPEdgeControl Normal/Normal: "" +*no.HPEdgeControl Max/Maksimum: "" +*no.Translation HPGeneralHalftone/Halvtone: "" +*no.HPGeneralHalftone Smooth/Jevn: "" +*no.HPGeneralHalftone Detail/Detaljert: "" +*no.Translation HPTextNeutralGrays/Tekst, nøytrale gråtoner: "" +*no.HPTextNeutralGrays Black/Bare svart: "" +*no.HPTextNeutralGrays ProcessBlack/4-fargers: "" +*no.Translation HPGraphicsNeutralGrays/Grafikk, nøytrale gråtoner: "" +*no.HPGraphicsNeutralGrays Black/Bare svart: "" +*no.HPGraphicsNeutralGrays ProcessBlack/4-fargers: "" +*no.Translation HPPhotoNeutralGrays/Foto, nøytrale gråtoner: "" +*no.HPPhotoNeutralGrays Black/Bare svart: "" +*no.HPPhotoNeutralGrays ProcessBlack/4-fargers: "" +*no.Translation HPPaperQualityPanel/Paper/Quality: "" +*no.Translation HPPJLEconoMode/EconoMode: "" +*no.HPPJLEconoMode True/På: "" +*no.HPPJLEconoMode False/Av: "" +*no.Translation MediaType/Utskriftsmateriale: "" +*no.MediaType Unspecified/Uspesifisert: "" +*no.MediaType Plain/Vanlig: "" +*no.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*no.MediaType HPLaserJet90/HP LaserJet 90g: "" +*no.MediaType HPColorLaserMatte105/HP Fargelaser matt, 105g: "" +*no.MediaType HPPremiumChoiceMatte120/HP Premium Choice matt, 120g: "" +*no.MediaType HPBrochureMatte150/HP-brosjyre, matt, 150g: "" +*no.MediaType HPCoverMatte200/HP Omslag matt, 200g: "" +*no.MediaType HPMattePhoto200/HP Matt foto 200g: "" +*no.MediaType HPPremiumPresentationGlossy120/HP Premium-presentasjon, glanset, 120g: "" +*no.MediaType HPBrochureGlossy150/HP-brosjyre, glanset, 150g: "" +*no.MediaType HPTrifoldBrochureGlossy150/HP-brosjyre, glanset, brettet i tre, 150g: "" +*no.MediaType HPBrochureGlossy200/HP-brosjyre, glanset, 200g: "" +*no.MediaType Light6074/Lys 60-74g: "" +*no.MediaType Intermediate8595/Middels 85-95g: "" +*no.MediaType MidWeight96110/Mellomtungt, 96-110g: "" +*no.MediaType Heavy111130/Tungt 111-130g: "" +*no.MediaType ExtraHeavy131175/Ekstra Tung 131-175g: "" +*no.MediaType HeavyGlossy111130/Tungt, glanset 111-130g: "" +*no.MediaType ExtraHeavyGlossy131175/Ekstra tykt og blankt 131-175g: "" +*no.MediaType CardGlossy176220/Kort glanset, 176-220g: "" +*no.MediaType ColorLaserTransparency/Transpar. for fargelaser: "" +*no.MediaType Labels/Etiketter: "" +*no.MediaType Letterhead/Brevhode: "" +*no.MediaType Envelope/Konvolutt: "" +*no.MediaType HeavyEnvelope/Tung konvolutt: "" +*no.MediaType Preprinted/Forhåndstrykt: "" +*no.MediaType Prepunched/Hullark: "" +*no.MediaType Colored/Farget: "" +*no.MediaType Bond/Brevpapir: "" +*no.MediaType Recycled/Resirkulert: "" +*no.MediaType Rough/Grovt: "" +*no.MediaType HeavyRough/Tungt grovt: "" +*no.MediaType OpaqueFilm/Opak film: "" +*no.APPrinterPreset ChartsAndGraphs/Diagrammer og grafikk: "" +*no.cupsICCProfile RGB../sRGB Matching Profile: "" +*no.cupsICCProfile CMYK../CMYK Matching Profile: "" +*no.cupsICCProfile Gray../Gray Matching Profile: "" +*no.cupsMarkerName cyan/Cyan: "" +*no.cupsMarkerName magenta/Magenta: "" +*no.cupsMarkerName yellow/Gul: "" +*no.cupsMarkerName black/Svart: "" +*nl.Translation Manufacturer/HP: "" +*nl.Translation ModelName/HP Color LaserJet Pro M252: "" +*nl.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*nl.Translation NickName/HP Color LaserJet Pro M252: "" +*nl.Translation PageSize/Materiaalgrootte: "" +*nl.PageSize Letter/US Letter: "" +*nl.PageSize Legal/US Legal: "" +*nl.PageSize Executive/Executive: "" +*nl.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*nl.PageSize 4x6/4x6: "" +*nl.PageSize 5x8/5x8: "" +*nl.PageSize A4/A4: "" +*nl.PageSize A5/A5: "" +*nl.PageSize A6/A6: "" +*nl.PageSize B5/JIS B5: "" +*nl.PageSize B6/JIS B6: "" +*nl.PageSize Env4x6/10x15 cm: "" +*nl.PageSize Oficio/Oficio 216x340 mm: "" +*nl.PageSize 195x270mm/16K 195x270 mm: "" +*nl.PageSize 184x260mm/16K 184x260 mm: "" +*nl.PageSize 7.75x10.75/16K 197x273 mm: "" +*nl.PageSize Postcard/Postcard: "" +*nl.PageSize DoublePostcardRotated/Briefkaart (dubbel) lange kant: "" +*nl.PageSize Env10/Comm10-envelop: "" +*nl.PageSize EnvMonarch/Monarch-envelop: "" +*nl.PageSize EnvISOB5/ISO B5-envelop: "" +*nl.PageSize EnvC5/C5-envelop: "" +*nl.PageSize EnvDL/DL-envelop: "" +*nl.Translation Duplex/Dubbelzijdig: "" +*nl.Duplex None/Uit: "" +*nl.Duplex DuplexNoTumble/Lange kant binden: "" +*nl.Duplex DuplexTumble/Korte kant binden: "" +*nl.Translation InputSlot/Papierinvoer: "" +*nl.InputSlot Tray1/Lade 1: "" +*nl.InputSlot Tray2/Lade 2: "" +*nl.InputSlot ManualFeed/Handinvoer: "" +*nl.Translation InstallableOptions/Installable Options: "" +*nl.Translation HPOption_Duplexer/Duplexeenheid: "" +*nl.HPOption_Duplexer True/Aan: "" +*nl.HPOption_Duplexer False/Uit: "" +*nl.Translation HPColorOptionsPanel/Kleur: "" +*nl.Translation HPPJLColorAsGray/Kleuren afdr. in grijs: "" +*nl.HPPJLColorAsGray yes/Aan: "" +*nl.HPPJLColorAsGray no/Uit: "" +*nl.Translation HPRGBEmulation/RGB-kleur: "" +*nl.HPRGBEmulation DefaultSRGB/Standaard (sRGB): "" +*nl.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*nl.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*nl.HPRGBEmulation VividSRGB/Levendig (sRGB): "" +*nl.HPRGBEmulation HPRGBEmulationNone/Geen: "" +*nl.Translation HPEdgeControl/Randverbetering: "" +*nl.HPEdgeControl HPEdgeControlOff/Uit: "" +*nl.HPEdgeControl Light/Licht: "" +*nl.HPEdgeControl Normal/Normaal: "" +*nl.HPEdgeControl Max/Maximaal: "" +*nl.Translation HPGeneralHalftone/Halftonen: "" +*nl.HPGeneralHalftone Smooth/Gelijkmatig: "" +*nl.HPGeneralHalftone Detail/Gedetailleerd: "" +*nl.Translation HPTextNeutralGrays/Tekst in neutraal grijs: "" +*nl.HPTextNeutralGrays Black/Alleen zwart: "" +*nl.HPTextNeutralGrays ProcessBlack/4-kleuren: "" +*nl.Translation HPGraphicsNeutralGrays/Afbeeld. in neutraal grijs: "" +*nl.HPGraphicsNeutralGrays Black/Alleen zwart: "" +*nl.HPGraphicsNeutralGrays ProcessBlack/4-kleuren: "" +*nl.Translation HPPhotoNeutralGrays/Foto's in neutraal grijs: "" +*nl.HPPhotoNeutralGrays Black/Alleen zwart: "" +*nl.HPPhotoNeutralGrays ProcessBlack/4-kleuren: "" +*nl.Translation HPPaperQualityPanel/Paper/Quality: "" +*nl.Translation HPPJLEconoMode/EconoMode: "" +*nl.HPPJLEconoMode True/Aan: "" +*nl.HPPJLEconoMode False/Uit: "" +*nl.Translation MediaType/Type afdrukmateriaal: "" +*nl.MediaType Unspecified/Onbekend: "" +*nl.MediaType Plain/Gewoon: "" +*nl.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*nl.MediaType HPLaserJet90/HP LaserJet 90g: "" +*nl.MediaType HPColorLaserMatte105/HP Color Laser, Mat 105g: "" +*nl.MediaType HPPremiumChoiceMatte120/HP Premium Choice, Mat 120g: "" +*nl.MediaType HPBrochureMatte150/HP mat brochurepapier 150g: "" +*nl.MediaType HPCoverMatte200/HP Omslagpapier, Mat 200g: "" +*nl.MediaType HPMattePhoto200/HP Fotopapier, Mat 200g: "" +*nl.MediaType HPPremiumPresentationGlossy120/HP Premium glanzend presentatiepapier 120g: "" +*nl.MediaType HPBrochureGlossy150/HP glanzend brochurepapier 150g: "" +*nl.MediaType HPTrifoldBrochureGlossy150/HP in drieën gevouwen glanzend brochurepapier 150g: "" +*nl.MediaType HPBrochureGlossy200/HP glanzend brochurepapier 200g: "" +*nl.MediaType Light6074/Licht 60-74g: "" +*nl.MediaType Intermediate8595/Intermediate 85-95g: "" +*nl.MediaType MidWeight96110/Middengewicht 96-110g: "" +*nl.MediaType Heavy111130/Zwaar 111-130g: "" +*nl.MediaType ExtraHeavy131175/Extra Zwaar 131-175g: "" +*nl.MediaType HeavyGlossy111130/Zwaarglanzend 111-130g: "" +*nl.MediaType ExtraHeavyGlossy131175/Extra zwaar glanzend 131-175g: "" +*nl.MediaType CardGlossy176220/Karton, Glanzend 176-220g: "" +*nl.MediaType ColorLaserTransparency/Transparant voor kleurenlaser: "" +*nl.MediaType Labels/Etiketten: "" +*nl.MediaType Letterhead/Briefpapier: "" +*nl.MediaType Envelope/Enveloppen: "" +*nl.MediaType HeavyEnvelope/Zware envelop: "" +*nl.MediaType Preprinted/Voorbedrukt: "" +*nl.MediaType Prepunched/Geperforeerd: "" +*nl.MediaType Colored/Gekleurd: "" +*nl.MediaType Bond/Bankpost: "" +*nl.MediaType Recycled/Gerecycled: "" +*nl.MediaType Rough/Ruw: "" +*nl.MediaType HeavyRough/Zwaar ruw: "" +*nl.MediaType OpaqueFilm/Ondoorzichtige film: "" +*nl.APPrinterPreset ChartsAndGraphs/Tabellen en grafieken: "" +*nl.cupsICCProfile RGB../sRGB Matching Profile: "" +*nl.cupsICCProfile CMYK../CMYK Matching Profile: "" +*nl.cupsICCProfile Gray../Gray Matching Profile: "" +*nl.cupsMarkerName cyan/Cyaan: "" +*nl.cupsMarkerName magenta/Magenta: "" +*nl.cupsMarkerName yellow/Geel: "" +*nl.cupsMarkerName black/Zwart: "" +*pt.Translation Manufacturer/HP: "" +*pt.Translation ModelName/HP Color LaserJet Pro M252: "" +*pt.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*pt.Translation NickName/HP Color LaserJet Pro M252: "" +*pt.Translation PageSize/Tamanho de Mídia: "" +*pt.PageSize Letter/US Letter: "" +*pt.PageSize Legal/US Legal: "" +*pt.PageSize Executive/Executivo: "" +*pt.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*pt.PageSize 4x6/4x6: "" +*pt.PageSize 5x8/5x8: "" +*pt.PageSize A4/A4: "" +*pt.PageSize A5/A5: "" +*pt.PageSize A6/A6: "" +*pt.PageSize B5/JIS B5: "" +*pt.PageSize B6/JIS B6: "" +*pt.PageSize Env4x6/10x15 cm: "" +*pt.PageSize Oficio/Oficio 216x340 mm: "" +*pt.PageSize 195x270mm/16K 195x270 mm: "" +*pt.PageSize 184x260mm/16K 184x260 mm: "" +*pt.PageSize 7.75x10.75/16K 197x273 mm: "" +*pt.PageSize Postcard/Postcard: "" +*pt.PageSize DoublePostcardRotated/Cartão-Postal Duplo Margem Longa: "" +*pt.PageSize Env10/Envelope Comm10: "" +*pt.PageSize EnvMonarch/Envelope Monarch: "" +*pt.PageSize EnvISOB5/Envelope B5: "" +*pt.PageSize EnvC5/Envelope C5: "" +*pt.PageSize EnvDL/Envelope DL: "" +*pt.Translation Duplex/Frente e verso: "" +*pt.Duplex None/Desativado: "" +*pt.Duplex DuplexNoTumble/Encadernação com Margem Longa: "" +*pt.Duplex DuplexTumble/Encadernação com Margem Curta: "" +*pt.Translation InputSlot/Alimentação de Papel: "" +*pt.InputSlot Tray1/Bandeja 1: "" +*pt.InputSlot Tray2/Bandeja 2: "" +*pt.InputSlot ManualFeed/Alimentação manual: "" +*pt.Translation InstallableOptions/Installable Options: "" +*pt.Translation HPOption_Duplexer/Unidade dúplex: "" +*pt.HPOption_Duplexer True/Ativado: "" +*pt.HPOption_Duplexer False/Desativado: "" +*pt.Translation HPColorOptionsPanel/Cor: "" +*pt.Translation HPPJLColorAsGray/Imprimir cor como cinza: "" +*pt.HPPJLColorAsGray yes/Ativado: "" +*pt.HPPJLColorAsGray no/Desativado: "" +*pt.Translation HPRGBEmulation/Cor RGB: "" +*pt.HPRGBEmulation DefaultSRGB/Padrão (sRGB): "" +*pt.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*pt.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*pt.HPRGBEmulation VividSRGB/Víva (sRGB): "" +*pt.HPRGBEmulation HPRGBEmulationNone/Nenhum: "" +*pt.Translation HPEdgeControl/Controle de margem: "" +*pt.HPEdgeControl HPEdgeControlOff/Desativado: "" +*pt.HPEdgeControl Light/Claro: "" +*pt.HPEdgeControl Normal/Normal: "" +*pt.HPEdgeControl Max/Máximo: "" +*pt.Translation HPGeneralHalftone/Meio-tom: "" +*pt.HPGeneralHalftone Smooth/Nivelado: "" +*pt.HPGeneralHalftone Detail/Detalhes: "" +*pt.Translation HPTextNeutralGrays/Texto em cinzas neutros: "" +*pt.HPTextNeutralGrays Black/Somente em preto: "" +*pt.HPTextNeutralGrays ProcessBlack/4 cores: "" +*pt.Translation HPGraphicsNeutralGrays/Gráfico em cinzas neutros: "" +*pt.HPGraphicsNeutralGrays Black/Somente em preto: "" +*pt.HPGraphicsNeutralGrays ProcessBlack/4 cores: "" +*pt.Translation HPPhotoNeutralGrays/Foto em cinzas neutros: "" +*pt.HPPhotoNeutralGrays Black/Somente em preto: "" +*pt.HPPhotoNeutralGrays ProcessBlack/4 cores: "" +*pt.Translation HPPaperQualityPanel/Paper/Quality: "" +*pt.Translation HPPJLEconoMode/EconoMode: "" +*pt.HPPJLEconoMode True/Ativado: "" +*pt.HPPJLEconoMode False/Desativado: "" +*pt.Translation MediaType/Tipo de mídia: "" +*pt.MediaType Unspecified/Não especificado: "" +*pt.MediaType Plain/Comum: "" +*pt.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*pt.MediaType HPLaserJet90/HP LaserJet 90g: "" +*pt.MediaType HPColorLaserMatte105/HP Color Laser 105g, fosco: "" +*pt.MediaType HPPremiumChoiceMatte120/HP Premium Choice fosco, 120g: "" +*pt.MediaType HPBrochureMatte150/Brochura HP fosco, 150g: "" +*pt.MediaType HPCoverMatte200/HP Cover 200g, fosco: "" +*pt.MediaType HPMattePhoto200/Fotogr. HP fosco, 200g: "" +*pt.MediaType HPPremiumPresentationGlossy120/Apresentação Premium brilhante HP 120g: "" +*pt.MediaType HPBrochureGlossy150/Brochura HP brilhante, 150g: "" +*pt.MediaType HPTrifoldBrochureGlossy150/Brochura HP brilhante com três dobras, 150g: "" +*pt.MediaType HPBrochureGlossy200/Brochura HP brilhante, 200g: "" +*pt.MediaType Light6074/Leve 60-74g: "" +*pt.MediaType Intermediate8595/Intermedio 85-95g: "" +*pt.MediaType MidWeight96110/Semipesado 96-110g: "" +*pt.MediaType Heavy111130/Pesado 111-130g: "" +*pt.MediaType ExtraHeavy131175/Extrapesado 131-175g: "" +*pt.MediaType HeavyGlossy111130/Espesso brilhante 111-130g: "" +*pt.MediaType ExtraHeavyGlossy131175/Brilhante com gramatura extra 131-175g: "" +*pt.MediaType CardGlossy176220/Cartão brilhante, 176-220g: "" +*pt.MediaType ColorLaserTransparency/Transpar. laser a cores: "" +*pt.MediaType Labels/Etiquetas: "" +*pt.MediaType Letterhead/Timbrado: "" +*pt.MediaType Envelope/Envelope: "" +*pt.MediaType HeavyEnvelope/Envelope pesado: "" +*pt.MediaType Preprinted/Pré-impresso: "" +*pt.MediaType Prepunched/Perfurado: "" +*pt.MediaType Colored/Colorido: "" +*pt.MediaType Bond/Superbond: "" +*pt.MediaType Recycled/Reciclado: "" +*pt.MediaType Rough/Áspero: "" +*pt.MediaType HeavyRough/Áspero pesado: "" +*pt.MediaType OpaqueFilm/Filme opaco: "" +*pt.APPrinterPreset ChartsAndGraphs/Tabelas e gráficos: "" +*pt.cupsICCProfile RGB../sRGB Matching Profile: "" +*pt.cupsICCProfile CMYK../CMYK Matching Profile: "" +*pt.cupsICCProfile Gray../Gray Matching Profile: "" +*pt.cupsMarkerName cyan/Ciano: "" +*pt.cupsMarkerName magenta/Magenta: "" +*pt.cupsMarkerName yellow/Amarelo: "" +*pt.cupsMarkerName black/Preto: "" +*ru.Translation Manufacturer/HP: "" +*ru.Translation ModelName/HP Color LaserJet Pro M252: "" +*ru.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*ru.Translation NickName/HP Color LaserJet Pro M252: "" +*ru.Translation PageSize/Размер бумаги: "" +*ru.PageSize Letter/US Letter: "" +*ru.PageSize Legal/US Legal: "" +*ru.PageSize Executive/Executive: "" +*ru.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*ru.PageSize 4x6/4 x 6: "" +*ru.PageSize 5x8/5 x 8: "" +*ru.PageSize A4/A4: "" +*ru.PageSize A5/A5: "" +*ru.PageSize A6/A6: "" +*ru.PageSize B5/JIS B5: "" +*ru.PageSize B6/JIS B6: "" +*ru.PageSize Env4x6/10 x 15 см: "" +*ru.PageSize Oficio/Oficio 216x340 mm: "" +*ru.PageSize 195x270mm/16K 195 x 270 мм: "" +*ru.PageSize 184x260mm/16K 184 x 260 мм: "" +*ru.PageSize 7.75x10.75/16K 197 x 273 мм: "" +*ru.PageSize Postcard/Postcard: "" +*ru.PageSize DoublePostcardRotated/Postcard Double Long Edge: "" +*ru.PageSize Env10/Конверт Comm10: "" +*ru.PageSize EnvMonarch/Конверт Monarch: "" +*ru.PageSize EnvISOB5/Конверт B5: "" +*ru.PageSize EnvC5/Конверт C5: "" +*ru.PageSize EnvDL/Конверт DL: "" +*ru.Translation Duplex/Двусторонняя: "" +*ru.Duplex None/Выкл.: "" +*ru.Duplex DuplexNoTumble/Прошивка вдоль длинного края: "" +*ru.Duplex DuplexTumble/Прошивка вдоль короткого края: "" +*ru.Translation InputSlot/Подача бумаги: "" +*ru.InputSlot Tray1/Лоток 1: "" +*ru.InputSlot Tray2/Лоток 2: "" +*ru.InputSlot ManualFeed/Ручная подача: "" +*ru.Translation InstallableOptions/Installable Options: "" +*ru.Translation HPOption_Duplexer/Модуль дуплекса: "" +*ru.HPOption_Duplexer True/Вкл.: "" +*ru.HPOption_Duplexer False/Выкл.: "" +*ru.Translation HPColorOptionsPanel/Цвет: "" +*ru.Translation HPPJLColorAsGray/Печать цвета серым: "" +*ru.HPPJLColorAsGray yes/Вкл.: "" +*ru.HPPJLColorAsGray no/Выкл.: "" +*ru.Translation HPRGBEmulation/Цвет RGB: "" +*ru.HPRGBEmulation DefaultSRGB/По умолчанию (sRGB): "" +*ru.HPRGBEmulation PhotoSRGB/Фото (sRGB): "" +*ru.HPRGBEmulation Adobe/Фото (Adobe RGB 1998): "" +*ru.HPRGBEmulation VividSRGB/Яркое (sRGB): "" +*ru.HPRGBEmulation HPRGBEmulationNone/Нет: "" +*ru.Translation HPEdgeControl/Контроль края: "" +*ru.HPEdgeControl HPEdgeControlOff/Выкл.: "" +*ru.HPEdgeControl Light/Светлый: "" +*ru.HPEdgeControl Normal/Обычное: "" +*ru.HPEdgeControl Max/Максимум: "" +*ru.Translation HPGeneralHalftone/Полутона: "" +*ru.HPGeneralHalftone Smooth/Гладкое: "" +*ru.HPGeneralHalftone Detail/Детальное: "" +*ru.Translation HPTextNeutralGrays/Нейтр. серый (текст): "" +*ru.HPTextNeutralGrays Black/Только черный: "" +*ru.HPTextNeutralGrays ProcessBlack/Четырехцветный: "" +*ru.Translation HPGraphicsNeutralGrays/Нейтр. серый (граф.): "" +*ru.HPGraphicsNeutralGrays Black/Только черный: "" +*ru.HPGraphicsNeutralGrays ProcessBlack/Четырехцветный: "" +*ru.Translation HPPhotoNeutralGrays/Нейтр. серый (фото): "" +*ru.HPPhotoNeutralGrays Black/Только черный: "" +*ru.HPPhotoNeutralGrays ProcessBlack/Четырехцветный: "" +*ru.Translation HPPaperQualityPanel/Paper/Quality: "" +*ru.Translation HPPJLEconoMode/EconoMode: "" +*ru.HPPJLEconoMode True/Вкл.: "" +*ru.HPPJLEconoMode False/Выкл.: "" +*ru.Translation MediaType/Тип носителя: "" +*ru.MediaType Unspecified/Не указано: "" +*ru.MediaType Plain/Обычная бумага: "" +*ru.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*ru.MediaType HPLaserJet90/HP LaserJet 90г: "" +*ru.MediaType HPColorLaserMatte105/HP для цветной лазерной печати, матовая 105г: "" +*ru.MediaType HPPremiumChoiceMatte120/HP повышенного качества, матовая 120г: "" +*ru.MediaType HPBrochureMatte150/Бумага HP для брошюр, матовая, 150г: "" +*ru.MediaType HPCoverMatte200/Бумага HP для обложек, матовая 200г: "" +*ru.MediaType HPMattePhoto200/Матовая фотобумага HP 200г: "" +*ru.MediaType HPPremiumPresentationGlossy120/Бум. HP повыш. кач. для презентаций, глянц. 120г: "" +*ru.MediaType HPBrochureGlossy150/Бумага HP для брошюр, глянцевая, 150г: "" +*ru.MediaType HPTrifoldBrochureGlossy150/Бум. HP для склад-х в 3 слоя брошюр, глянц. 150г: "" +*ru.MediaType HPBrochureGlossy200/Бумага HP для брошюр, глянцевая, 200г: "" +*ru.MediaType Light6074/Легкая 60-74г: "" +*ru.MediaType Intermediate8595/Прокладка 85-95г: "" +*ru.MediaType MidWeight96110/Среднеплотная 96-110г: "" +*ru.MediaType Heavy111130/Плотная 111-130г: "" +*ru.MediaType ExtraHeavy131175/Сверхплотная 131-175г: "" +*ru.MediaType HeavyGlossy111130/Плотная глянцевая 111-130г: "" +*ru.MediaType ExtraHeavyGlossy131175/Сверхплотная глянцевая 131-175г: "" +*ru.MediaType CardGlossy176220/Бумага для открыток, глянцевая 176-220г: "" +*ru.MediaType ColorLaserTransparency/Прозрачная пленка для цветн. лазер. печати: "" +*ru.MediaType Labels/Этикетки: "" +*ru.MediaType Letterhead/Фирменный бланк: "" +*ru.MediaType Envelope/Конверт: "" +*ru.MediaType HeavyEnvelope/Плотный конверт: "" +*ru.MediaType Preprinted/Печатный бланк: "" +*ru.MediaType Prepunched/Перфорированная бумага: "" +*ru.MediaType Colored/Цветная: "" +*ru.MediaType Bond/Высокосортная: "" +*ru.MediaType Recycled/Бумага из вторсырья: "" +*ru.MediaType Rough/Грубая бумага: "" +*ru.MediaType HeavyRough/Плотная грубая: "" +*ru.MediaType OpaqueFilm/Непрозрачный диапозитив: "" +*ru.APPrinterPreset ChartsAndGraphs/Диаграммы и графики: "" +*ru.cupsICCProfile RGB../sRGB Matching Profile: "" +*ru.cupsICCProfile CMYK../CMYK Matching Profile: "" +*ru.cupsICCProfile Gray../Gray Matching Profile: "" +*ru.cupsMarkerName cyan/Голубой: "" +*ru.cupsMarkerName magenta/Пурпурный: "" +*ru.cupsMarkerName yellow/Желтый: "" +*ru.cupsMarkerName black/Черный: "" +*sv.Translation Manufacturer/HP: "" +*sv.Translation ModelName/HP Color LaserJet Pro M252: "" +*sv.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*sv.Translation NickName/HP Color LaserJet Pro M252: "" +*sv.Translation PageSize/Mediestorlek: "" +*sv.PageSize Letter/US Letter: "" +*sv.PageSize Legal/US Legal: "" +*sv.PageSize Executive/Executive: "" +*sv.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*sv.PageSize 4x6/4x6: "" +*sv.PageSize 5x8/5x8: "" +*sv.PageSize A4/A4: "" +*sv.PageSize A5/A5: "" +*sv.PageSize A6/A6: "" +*sv.PageSize B5/JIS B5: "" +*sv.PageSize B6/JIS B6: "" +*sv.PageSize Env4x6/10x15 cm: "" +*sv.PageSize Oficio/Oficio 216x340 mm: "" +*sv.PageSize 195x270mm/16K 195x270 mm: "" +*sv.PageSize 184x260mm/16K 184x260 mm: "" +*sv.PageSize 7.75x10.75/16K 197x273 mm: "" +*sv.PageSize Postcard/Postcard: "" +*sv.PageSize DoublePostcardRotated/Vykort - dubbel med lång kant: "" +*sv.PageSize Env10/Comm10-kuvert: "" +*sv.PageSize EnvMonarch/Monarch-kuvert: "" +*sv.PageSize EnvISOB5/ISO B5-kuvert: "" +*sv.PageSize EnvC5/C5-kuvert: "" +*sv.PageSize EnvDL/DL-kuvert: "" +*sv.Translation Duplex/Dubbelsidig: "" +*sv.Duplex None/Av: "" +*sv.Duplex DuplexNoTumble/Häftning långsida: "" +*sv.Duplex DuplexTumble/Häftning kortsida: "" +*sv.Translation InputSlot/Pappersmatare: "" +*sv.InputSlot Tray1/Fack 1: "" +*sv.InputSlot Tray2/Fack 2: "" +*sv.InputSlot ManualFeed/Manuell matning: "" +*sv.Translation InstallableOptions/Installable Options: "" +*sv.Translation HPOption_Duplexer/Tillbehör för dubbelsidig utskrift: "" +*sv.HPOption_Duplexer True/På: "" +*sv.HPOption_Duplexer False/Av: "" +*sv.Translation HPColorOptionsPanel/Färg: "" +*sv.Translation HPPJLColorAsGray/Skriv ut färg i grått: "" +*sv.HPPJLColorAsGray yes/På: "" +*sv.HPPJLColorAsGray no/Av: "" +*sv.Translation HPRGBEmulation/RGB-färg: "" +*sv.HPRGBEmulation DefaultSRGB/Standard (sRGB): "" +*sv.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*sv.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*sv.HPRGBEmulation VividSRGB/Stark (sRGB): "" +*sv.HPRGBEmulation HPRGBEmulationNone/Inget: "" +*sv.Translation HPEdgeControl/Kantkontroll: "" +*sv.HPEdgeControl HPEdgeControlOff/Av: "" +*sv.HPEdgeControl Light/Ljus: "" +*sv.HPEdgeControl Normal/Normal: "" +*sv.HPEdgeControl Max/Högst: "" +*sv.Translation HPGeneralHalftone/Halvton: "" +*sv.HPGeneralHalftone Smooth/Jämnt: "" +*sv.HPGeneralHalftone Detail/Detalj: "" +*sv.Translation HPTextNeutralGrays/Text neutral grå: "" +*sv.HPTextNeutralGrays Black/Endast svart: "" +*sv.HPTextNeutralGrays ProcessBlack/4-färg: "" +*sv.Translation HPGraphicsNeutralGrays/Bilder neutral grå: "" +*sv.HPGraphicsNeutralGrays Black/Endast svart: "" +*sv.HPGraphicsNeutralGrays ProcessBlack/4-färg: "" +*sv.Translation HPPhotoNeutralGrays/Foto neutral grå: "" +*sv.HPPhotoNeutralGrays Black/Endast svart: "" +*sv.HPPhotoNeutralGrays ProcessBlack/4-färg: "" +*sv.Translation HPPaperQualityPanel/Paper/Quality: "" +*sv.Translation HPPJLEconoMode/EconoMode: "" +*sv.HPPJLEconoMode True/På: "" +*sv.HPPJLEconoMode False/Av: "" +*sv.Translation MediaType/Material: "" +*sv.MediaType Unspecified/Ospecificerad: "" +*sv.MediaType Plain/Vanligt: "" +*sv.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*sv.MediaType HPLaserJet90/HP LaserJet 90g: "" +*sv.MediaType HPColorLaserMatte105/HP Color Laser, matt 105g: "" +*sv.MediaType HPPremiumChoiceMatte120/HP Premium Choice, matt 120g: "" +*sv.MediaType HPBrochureMatte150/HP-broschyr, matt 150g: "" +*sv.MediaType HPCoverMatte200/HP omslag, matt 200g: "" +*sv.MediaType HPMattePhoto200/HP matt foto 200g: "" +*sv.MediaType HPPremiumPresentationGlossy120/HP Premium presentation, glättat, 120g: "" +*sv.MediaType HPBrochureGlossy150/HP-broschyr, glättat, 150g: "" +*sv.MediaType HPTrifoldBrochureGlossy150/HP trippelvikt broschyr, glättat, 150g: "" +*sv.MediaType HPBrochureGlossy200/HP-broschyr, glättat, 200g: "" +*sv.MediaType Light6074/Lätt 60-74g: "" +*sv.MediaType Intermediate8595/Medelvikt 85-95g: "" +*sv.MediaType MidWeight96110/Mellanvikt 96-110g: "" +*sv.MediaType Heavy111130/Tungt 111-130g: "" +*sv.MediaType ExtraHeavy131175/Extra Tungt 131-175g: "" +*sv.MediaType HeavyGlossy111130/Tungt glättat 111-130g: "" +*sv.MediaType ExtraHeavyGlossy131175/Extra tungt glättat 131-175g: "" +*sv.MediaType CardGlossy176220/Kort, glättat 176-220g: "" +*sv.MediaType ColorLaserTransparency/Färglaser OH-film: "" +*sv.MediaType Labels/Etiketter: "" +*sv.MediaType Letterhead/Brevpapper: "" +*sv.MediaType Envelope/Kuvert: "" +*sv.MediaType HeavyEnvelope/Tungt kuvert: "" +*sv.MediaType Preprinted/Förtryckt: "" +*sv.MediaType Prepunched/Hålat: "" +*sv.MediaType Colored/Färgat: "" +*sv.MediaType Bond/Finpapper: "" +*sv.MediaType Recycled/Returpapper: "" +*sv.MediaType Rough/Grovt: "" +*sv.MediaType HeavyRough/Tungt grovt: "" +*sv.MediaType OpaqueFilm/Ej genomskinlig film: "" +*sv.APPrinterPreset ChartsAndGraphs/Diagram och grafik: "" +*sv.cupsICCProfile RGB../sRGB Matching Profile: "" +*sv.cupsICCProfile CMYK../CMYK Matching Profile: "" +*sv.cupsICCProfile Gray../Gray Matching Profile: "" +*sv.cupsMarkerName cyan/Cyan: "" +*sv.cupsMarkerName magenta/Magenta: "" +*sv.cupsMarkerName yellow/Gul: "" +*sv.cupsMarkerName black/Svart: "" +*zh_CN.Translation Manufacturer/HP: "" +*zh_CN.Translation ModelName/HP Color LaserJet Pro M252: "" +*zh_CN.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*zh_CN.Translation NickName/HP Color LaserJet Pro M252: "" +*zh_CN.Translation PageSize/介质大小: "" +*zh_CN.PageSize Letter/US Letter: "" +*zh_CN.PageSize Legal/US Legal: "" +*zh_CN.PageSize Executive/Executive: "" +*zh_CN.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*zh_CN.PageSize 4x6/4x6: "" +*zh_CN.PageSize 5x8/5x8: "" +*zh_CN.PageSize A4/A4: "" +*zh_CN.PageSize A5/A5: "" +*zh_CN.PageSize A6/A6: "" +*zh_CN.PageSize B5/JIS B5: "" +*zh_CN.PageSize B6/JIS B6: "" +*zh_CN.PageSize Env4x6/10x15 厘米: "" +*zh_CN.PageSize Oficio/Oficio 216x340 mm: "" +*zh_CN.PageSize 195x270mm/16K 195x270 毫米: "" +*zh_CN.PageSize 184x260mm/16K 184x260 毫米: "" +*zh_CN.PageSize 7.75x10.75/16K 197x273 毫米: "" +*zh_CN.PageSize Postcard/Postcard: "" +*zh_CN.PageSize DoublePostcardRotated/明信片-双面长边: "" +*zh_CN.PageSize Env10/信封 Comm10: "" +*zh_CN.PageSize EnvMonarch/信封 Monarch: "" +*zh_CN.PageSize EnvISOB5/信封 ISO B5: "" +*zh_CN.PageSize EnvC5/信封 C5: "" +*zh_CN.PageSize EnvDL/信封 DL: "" +*zh_CN.Translation Duplex/双面打印: "" +*zh_CN.Duplex None/关: "" +*zh_CN.Duplex DuplexNoTumble/长边装订: "" +*zh_CN.Duplex DuplexTumble/短边装订: "" +*zh_CN.Translation InputSlot/送纸: "" +*zh_CN.InputSlot Tray1/纸盒 1: "" +*zh_CN.InputSlot Tray2/纸盒 2: "" +*zh_CN.InputSlot ManualFeed/手动进纸: "" +*zh_CN.Translation InstallableOptions/Installable Options: "" +*zh_CN.Translation HPOption_Duplexer/双面打印附件: "" +*zh_CN.HPOption_Duplexer True/开: "" +*zh_CN.HPOption_Duplexer False/关: "" +*zh_CN.Translation HPColorOptionsPanel/颜色: "" +*zh_CN.Translation HPPJLColorAsGray/打印颜色为灰色: "" +*zh_CN.HPPJLColorAsGray yes/开: "" +*zh_CN.HPPJLColorAsGray no/关: "" +*zh_CN.Translation HPRGBEmulation/RGB 颜色: "" +*zh_CN.HPRGBEmulation DefaultSRGB/默认 (sRGB): "" +*zh_CN.HPRGBEmulation PhotoSRGB/照片 (sRGB): "" +*zh_CN.HPRGBEmulation Adobe/照片 (Adobe RGB 1998): "" +*zh_CN.HPRGBEmulation VividSRGB/鲜明 (sRGB): "" +*zh_CN.HPRGBEmulation HPRGBEmulationNone/无: "" +*zh_CN.Translation HPEdgeControl/边缘控制: "" +*zh_CN.HPEdgeControl HPEdgeControlOff/关: "" +*zh_CN.HPEdgeControl Light/淡: "" +*zh_CN.HPEdgeControl Normal/正常: "" +*zh_CN.HPEdgeControl Max/最大: "" +*zh_CN.Translation HPGeneralHalftone/半色调: "" +*zh_CN.HPGeneralHalftone Smooth/文本: "" +*zh_CN.HPGeneralHalftone Detail/细节: "" +*zh_CN.Translation HPTextNeutralGrays/文本中性灰色: "" +*zh_CN.HPTextNeutralGrays Black/仅限黑色: "" +*zh_CN.HPTextNeutralGrays ProcessBlack/4 色: "" +*zh_CN.Translation HPGraphicsNeutralGrays/图形中性灰色: "" +*zh_CN.HPGraphicsNeutralGrays Black/仅限黑色: "" +*zh_CN.HPGraphicsNeutralGrays ProcessBlack/4 色: "" +*zh_CN.Translation HPPhotoNeutralGrays/照片中性灰色: "" +*zh_CN.HPPhotoNeutralGrays Black/仅限黑色: "" +*zh_CN.HPPhotoNeutralGrays ProcessBlack/4 色: "" +*zh_CN.Translation HPPaperQualityPanel/Paper/Quality: "" +*zh_CN.Translation HPPJLEconoMode/EconoMode: "" +*zh_CN.HPPJLEconoMode True/开: "" +*zh_CN.HPPJLEconoMode False/关: "" +*zh_CN.Translation MediaType/介质类型: "" +*zh_CN.MediaType Unspecified/未指定: "" +*zh_CN.MediaType Plain/普通纸: "" +*zh_CN.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*zh_CN.MediaType HPLaserJet90/HP LaserJet 90 克纸: "" +*zh_CN.MediaType HPColorLaserMatte105/HP 彩色激光无光泽纸 105g: "" +*zh_CN.MediaType HPPremiumChoiceMatte120/HP 优选无光泽纸 120g: "" +*zh_CN.MediaType HPBrochureMatte150/HP 小册子磨砂纸 150g: "" +*zh_CN.MediaType HPCoverMatte200/HP 无光泽封面纸 200g: "" +*zh_CN.MediaType HPMattePhoto200/HP 无光泽照片纸 200g: "" +*zh_CN.MediaType HPPremiumPresentationGlossy120/HP 高级演示用光泽纸 120g: "" +*zh_CN.MediaType HPBrochureGlossy150/HP 小册子光泽纸 150g: "" +*zh_CN.MediaType HPTrifoldBrochureGlossy150/HP 三折小册子光泽纸 150g: "" +*zh_CN.MediaType HPBrochureGlossy200/HP 小册子光泽纸 200g: "" +*zh_CN.MediaType Light6074/轻磅 60-74g: "" +*zh_CN.MediaType Intermediate8595/光面纸 85-95g: "" +*zh_CN.MediaType MidWeight96110/中等重量纸 96-110g: "" +*zh_CN.MediaType Heavy111130/重磅 111-130g: "" +*zh_CN.MediaType ExtraHeavy131175/超级重磅纸 131-175g: "" +*zh_CN.MediaType HeavyGlossy111130/重磅光泽纸 111-130g: "" +*zh_CN.MediaType ExtraHeavyGlossy131175/超重磅光泽纸 131-175g: "" +*zh_CN.MediaType CardGlossy176220/光泽卡片 176-220g: "" +*zh_CN.MediaType ColorLaserTransparency/彩色激光投影胶片: "" +*zh_CN.MediaType Labels/标签: "" +*zh_CN.MediaType Letterhead/信头纸: "" +*zh_CN.MediaType Envelope/信封: "" +*zh_CN.MediaType HeavyEnvelope/重磅信封: "" +*zh_CN.MediaType Preprinted/预先打印纸: "" +*zh_CN.MediaType Prepunched/预先打孔纸: "" +*zh_CN.MediaType Colored/彩纸: "" +*zh_CN.MediaType Bond/证券纸: "" +*zh_CN.MediaType Recycled/再生纸: "" +*zh_CN.MediaType Rough/粗糙: "" +*zh_CN.MediaType HeavyRough/重磅粗糙纸: "" +*zh_CN.MediaType OpaqueFilm/不透明胶片: "" +*zh_CN.APPrinterPreset ChartsAndGraphs/图表和图形: "" +*zh_CN.cupsICCProfile RGB../sRGB Matching Profile: "" +*zh_CN.cupsICCProfile CMYK../CMYK Matching Profile: "" +*zh_CN.cupsICCProfile Gray../Gray Matching Profile: "" +*zh_CN.cupsMarkerName cyan/青色: "" +*zh_CN.cupsMarkerName magenta/品红色: "" +*zh_CN.cupsMarkerName yellow/黄色: "" +*zh_CN.cupsMarkerName black/黑色: "" +*zh_TW.Translation Manufacturer/HP: "" +*zh_TW.Translation ModelName/HP Color LaserJet Pro M252: "" +*zh_TW.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*zh_TW.Translation NickName/HP Color LaserJet Pro M252: "" +*zh_TW.Translation PageSize/媒體大小: "" +*zh_TW.PageSize Letter/US Letter: "" +*zh_TW.PageSize Legal/US Legal: "" +*zh_TW.PageSize Executive/Executive: "" +*zh_TW.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*zh_TW.PageSize 4x6/4x6: "" +*zh_TW.PageSize 5x8/5x8: "" +*zh_TW.PageSize A4/A4: "" +*zh_TW.PageSize A5/A5: "" +*zh_TW.PageSize A6/A6: "" +*zh_TW.PageSize B5/JIS B5: "" +*zh_TW.PageSize B6/JIS B6: "" +*zh_TW.PageSize Env4x6/10x15 厘米: "" +*zh_TW.PageSize Oficio/Oficio 216x340 mm: "" +*zh_TW.PageSize 195x270mm/16K 195x270 公釐: "" +*zh_TW.PageSize 184x260mm/16K 184x260 公釐: "" +*zh_TW.PageSize 7.75x10.75/16K 197x273 公釐: "" +*zh_TW.PageSize Postcard/Postcard: "" +*zh_TW.PageSize DoublePostcardRotated/雙倍大小明信片長邊: "" +*zh_TW.PageSize Env10/Comm10 信封: "" +*zh_TW.PageSize EnvMonarch/Monarch 信封: "" +*zh_TW.PageSize EnvISOB5/ISO B5 信封: "" +*zh_TW.PageSize EnvC5/C5 信封: "" +*zh_TW.PageSize EnvDL/DL 信封: "" +*zh_TW.Translation Duplex/雙面: "" +*zh_TW.Duplex None/關閉: "" +*zh_TW.Duplex DuplexNoTumble/沿長邊裝訂: "" +*zh_TW.Duplex DuplexTumble/沿短邊裝訂: "" +*zh_TW.Translation InputSlot/送紙匣: "" +*zh_TW.InputSlot Tray1/1 號紙匣: "" +*zh_TW.InputSlot Tray2/2 號紙匣: "" +*zh_TW.InputSlot ManualFeed/手動進紙: "" +*zh_TW.Translation InstallableOptions/Installable Options: "" +*zh_TW.Translation HPOption_Duplexer/雙面列印裝置: "" +*zh_TW.HPOption_Duplexer True/開啟: "" +*zh_TW.HPOption_Duplexer False/關閉: "" +*zh_TW.Translation HPColorOptionsPanel/色彩: "" +*zh_TW.Translation HPPJLColorAsGray/用灰色列印彩色: "" +*zh_TW.HPPJLColorAsGray yes/開啟: "" +*zh_TW.HPPJLColorAsGray no/關閉: "" +*zh_TW.Translation HPRGBEmulation/RGB 色彩: "" +*zh_TW.HPRGBEmulation DefaultSRGB/預設 (sRGB): "" +*zh_TW.HPRGBEmulation PhotoSRGB/相紙 (sRGB): "" +*zh_TW.HPRGBEmulation Adobe/相紙 (Adobe RGB 1998): "" +*zh_TW.HPRGBEmulation VividSRGB/鮮明 (sRGB): "" +*zh_TW.HPRGBEmulation HPRGBEmulationNone/無: "" +*zh_TW.Translation HPEdgeControl/邊緣控制: "" +*zh_TW.HPEdgeControl HPEdgeControlOff/關閉: "" +*zh_TW.HPEdgeControl Light/淡: "" +*zh_TW.HPEdgeControl Normal/正常: "" +*zh_TW.HPEdgeControl Max/最大: "" +*zh_TW.Translation HPGeneralHalftone/半色調: "" +*zh_TW.HPGeneralHalftone Smooth/文字: "" +*zh_TW.HPGeneralHalftone Detail/細節: "" +*zh_TW.Translation HPTextNeutralGrays/文字中性灰色: "" +*zh_TW.HPTextNeutralGrays Black/純黑色: "" +*zh_TW.HPTextNeutralGrays ProcessBlack/4 色: "" +*zh_TW.Translation HPGraphicsNeutralGrays/圖形中性灰色: "" +*zh_TW.HPGraphicsNeutralGrays Black/純黑色: "" +*zh_TW.HPGraphicsNeutralGrays ProcessBlack/4 色: "" +*zh_TW.Translation HPPhotoNeutralGrays/照片中性灰色: "" +*zh_TW.HPPhotoNeutralGrays Black/純黑色: "" +*zh_TW.HPPhotoNeutralGrays ProcessBlack/4 色: "" +*zh_TW.Translation HPPaperQualityPanel/Paper/Quality: "" +*zh_TW.Translation HPPJLEconoMode/EconoMode: "" +*zh_TW.HPPJLEconoMode True/開啟: "" +*zh_TW.HPPJLEconoMode False/關閉: "" +*zh_TW.Translation MediaType/媒體類型: "" +*zh_TW.MediaType Unspecified/未指定: "" +*zh_TW.MediaType Plain/素面紙: "" +*zh_TW.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*zh_TW.MediaType HPLaserJet90/HP LaserJet 90 克紙: "" +*zh_TW.MediaType HPColorLaserMatte105/HP 彩色雷射霧面紙 105g: "" +*zh_TW.MediaType HPPremiumChoiceMatte120/HP 高級霧面紙 120g: "" +*zh_TW.MediaType HPBrochureMatte150/HP 霧面型錄紙 150g: "" +*zh_TW.MediaType HPCoverMatte200/HP 霧面封面紙 200g: "" +*zh_TW.MediaType HPMattePhoto200/HP 霧面相紙 200g: "" +*zh_TW.MediaType HPPremiumPresentationGlossy120/HP 高級光面簡報紙 120g: "" +*zh_TW.MediaType HPBrochureGlossy150/HP 光面型錄紙 150g: "" +*zh_TW.MediaType HPTrifoldBrochureGlossy150/HP 光面三摺型錄紙 150g: "" +*zh_TW.MediaType HPBrochureGlossy200/HP 光面型錄紙 200g: "" +*zh_TW.MediaType Light6074/輕磅紙 60-74g: "" +*zh_TW.MediaType Intermediate8595/嫖醱祧 85-95g: "" +*zh_TW.MediaType MidWeight96110/中磅紙 96-110g: "" +*zh_TW.MediaType Heavy111130/重磅紙 111-130g: "" +*zh_TW.MediaType ExtraHeavy131175/超重磅紙 131-175g: "" +*zh_TW.MediaType HeavyGlossy111130/重磅光面紙 111-130g: "" +*zh_TW.MediaType ExtraHeavyGlossy131175/超厚光滑紙 131-175g: "" +*zh_TW.MediaType CardGlossy176220/光面賀卡紙 176-220g: "" +*zh_TW.MediaType ColorLaserTransparency/彩色雷射投影片: "" +*zh_TW.MediaType Labels/標籤: "" +*zh_TW.MediaType Letterhead/信頭紙: "" +*zh_TW.MediaType Envelope/信封: "" +*zh_TW.MediaType HeavyEnvelope/重磅信封: "" +*zh_TW.MediaType Preprinted/預印的: "" +*zh_TW.MediaType Prepunched/打孔過的: "" +*zh_TW.MediaType Colored/彩紙: "" +*zh_TW.MediaType Bond/雪銅紙: "" +*zh_TW.MediaType Recycled/再生紙: "" +*zh_TW.MediaType Rough/粗糙紙: "" +*zh_TW.MediaType HeavyRough/重磅粗糙紙: "" +*zh_TW.MediaType OpaqueFilm/不透明膠片: "" +*zh_TW.APPrinterPreset ChartsAndGraphs/圖表和圖形: "" +*zh_TW.cupsICCProfile RGB../sRGB Matching Profile: "" +*zh_TW.cupsICCProfile CMYK../CMYK Matching Profile: "" +*zh_TW.cupsICCProfile Gray../Gray Matching Profile: "" +*zh_TW.cupsMarkerName cyan/青藍色: "" +*zh_TW.cupsMarkerName magenta/洋紅色: "" +*zh_TW.cupsMarkerName yellow/黃色: "" +*zh_TW.cupsMarkerName black/黑色: "" +*DefaultFont: Courier +*Font Albertus-ExtraBold: Standard "(001.001)" Standard ROM +*Font Albertus-Medium: Standard "(001.001)" Standard ROM +*Font AntiqueOlive: Standard "(001.001)" Standard ROM +*Font AntiqueOlive-Bold: Standard "(001.001)" Standard ROM +*Font AntiqueOlive-Italic: Standard "(001.001)" Standard ROM +*Font Arial: Standard "(001.001)" Standard ROM +*Font Arial-Bold: Standard "(001.001)" Standard ROM +*Font Arial-BoldItalic: Standard "(001.001)" Standard ROM +*Font Arial-Italic: Standard "(001.001)" Standard ROM +*Font AvantGarde-Book: Standard "(001.001)" Standard ROM +*Font AvantGarde-BookOblique: Standard "(001.001)" Standard ROM +*Font AvantGarde-Demi: Standard "(001.001)" Standard ROM +*Font AvantGarde-DemiOblique: Standard "(001.001)" Standard ROM +*Font Bookman-Demi: Standard "(001.001)" Standard ROM +*Font Bookman-DemiItalic: Standard "(001.001)" Standard ROM +*Font Bookman-Light: Standard "(001.001)" Standard ROM +*Font Bookman-LightItalic: Standard "(001.001)" Standard ROM +*Font BookmanCE-Demi: Win1250 "(001.001)" ExtendedRoman ROM +*Font BookmanCE-DemiItalic: Win1250 "(001.001)" ExtendedRoman ROM +*Font BookmanCE-Light: Win1250 "(001.001)" ExtendedRoman ROM +*Font BookmanCE-LightItalic: Win1250 "(001.001)" ExtendedRoman ROM +*Font CGOmega: Standard "(001.001)" Standard ROM +*Font CGOmega-Bold: Standard "(001.001)" Standard ROM +*Font CGOmega-BoldItalic: Standard "(001.001)" Standard ROM +*Font CGOmega-Italic: Standard "(001.001)" Standard ROM +*Font CGTimes: Standard "(001.001)" Standard ROM +*Font CGTimes-Bold: Standard "(001.001)" Standard ROM +*Font CGTimes-BoldItalic: Standard "(001.001)" Standard ROM +*Font CGTimes-Italic: Standard "(001.001)" Standard ROM +*Font Clarendon-Condensed-Bold: Standard "(001.001)" Standard ROM +*Font Coronet: Standard "(001.001)" Standard ROM +*Font Courier: Standard "(001.001)" Standard ROM +*Font Courier-Bold: Standard "(001.001)" Standard ROM +*Font Courier-BoldOblique: Standard "(001.001)" Standard ROM +*Font Courier-Oblique: Standard "(001.001)" Standard ROM +*Font CourierHP: Standard "(001.001)" Standard ROM +*Font CourierHP-Bold: Standard "(001.001)" Standard ROM +*Font CourierHP-BoldItalic: Standard "(001.001)" Standard ROM +*Font CourierHP-Italic: Standard "(001.001)" Standard ROM +*Font Garamond-Antiqua: Standard "(001.001)" Standard ROM +*Font Garamond-Halbfett: Standard "(001.001)" Standard ROM +*Font Garamond-Kursiv: Standard "(001.001)" Standard ROM +*Font Garamond-KursivHalbfett: Standard "(001.001)" Standard ROM +*Font Helvetica: Standard "(001.001)" Standard ROM +*Font Helvetica-Bold: Standard "(001.001)" Standard ROM +*Font Helvetica-BoldOblique: Standard "(001.001)" Standard ROM +*Font Helvetica-Narrow: Standard "(001.001)" Standard ROM +*Font Helvetica-Narrow-Bold: Standard "(001.001)" Standard ROM +*Font Helvetica-Narrow-BoldOblique: Standard "(001.001)" Standard ROM +*Font Helvetica-Narrow-Oblique: Standard "(001.001)" Standard ROM +*Font Helvetica-Oblique: Standard "(001.001)" Standard ROM +*Font LetterGothic: Standard "(001.001)" Standard ROM +*Font LetterGothic-Bold: Standard "(001.001)" Standard ROM +*Font LetterGothic-Italic: Standard "(001.001)" Standard ROM +*Font Marigold: Standard "(001.001)" Standard ROM +*Font NewCenturySchlbk-Bold: Standard "(001.001)" Standard ROM +*Font NewCenturySchlbk-BoldItalic: Standard "(001.001)" Standard ROM +*Font NewCenturySchlbk-Italic: Standard "(001.001)" Standard ROM +*Font NewCenturySchlbk-Roman: Standard "(001.001)" Standard ROM +*Font Palatino-Bold: Standard "(001.001)" Standard ROM +*Font Palatino-BoldItalic: Standard "(001.001)" Standard ROM +*Font Palatino-Italic: Standard "(001.001)" Standard ROM +*Font Palatino-Roman: Standard "(001.001)" Standard ROM +*Font Symbol: Special "(001.001)" Special ROM +*Font SymbolMT: Standard "(001.001)" Standard ROM +*Font Times-Bold: Standard "(001.001)" Standard ROM +*Font Times-BoldItalic: Standard "(001.001)" Standard ROM +*Font Times-Italic: Standard "(001.001)" Standard ROM +*Font Times-Roman: Standard "(001.001)" Standard ROM +*Font TimesNewRoman: Standard "(001.001)" Standard ROM +*Font TimesNewRoman-Bold: Standard "(001.001)" Standard ROM +*Font TimesNewRoman-BoldItalic: Standard "(001.001)" Standard ROM +*Font TimesNewRoman-Italic: Standard "(001.001)" Standard ROM +*Font Univers-Bold: Standard "(001.001)" Standard ROM +*Font Univers-BoldItalic: Standard "(001.001)" Standard ROM +*Font Univers-Condensed-Bold: Standard "(001.001)" Standard ROM +*Font Univers-Condensed-BoldItalic: Standard "(001.001)" Standard ROM +*Font Univers-Condensed-Medium: Standard "(001.001)" Standard ROM +*Font Univers-Condensed-MediumItalic: Standard "(001.001)" Standard ROM +*Font Univers-Medium: Standard "(001.001)" Standard ROM +*Font Univers-MediumItalic: Standard "(001.001)" Standard ROM +*Font Wingdings-Regular: Special "(001.001)" Special ROM +*Font Wingdings-Regular: Standard "(001.001)" Standard ROM +*Font ZapfChancery-MediumItalic: Standard "(001.001)" Standard ROM +*Font ZapfDingbats: Special "(001.001)" Special ROM +*% End of HPP00052.PPD, 211422 bytes. diff --git a/configfiles/etc/cups/ppd/Salle229.ppd.O b/configfiles/etc/cups/ppd/Salle229.ppd.O new file mode 100644 index 0000000..2cdb07d --- /dev/null +++ b/configfiles/etc/cups/ppd/Salle229.ppd.O @@ -0,0 +1,3555 @@ +*PPD-Adobe: "4.3" +*% ================================= +*% Copyright 1992-2009 Hewlett-Packard Company +*% Permission is hereby granted, free of charge, to any person obtaining +*% a copy of this software and associated documentation files (the +*% "Software"), to deal in the Software without restriction, including +*% without limitation the rights to use, copy, modify, merge, publish, +*% distribute, sublicense, and/or sell copies of the Software, and to +*% permit persons to whom the Software is furnished to do so, subject to +*% the following conditions: +*% +*% The above copyright notice and this permission notice shall be +*% included in all copies or substantial portions of the Software. +*% +*% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +*% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +*% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +*% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +*% LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +*% OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +*% WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +*% +*% [this is the MIT open source license -- please see www.opensource.org] +*% +*% Disclaimer: The above statement indicates +*% that this PPD was written using the Adobe PPD +*% File Format Specification 4.3, but does not +*% intend to imply approval and acceptance by +*% Adobe Systems, Inc. +*% ======================================================= +*% Printer Description File +*% (c) Copyright 2004-2009 Hewlett-Packard Development Company, L.P. +*% PPD for HP LaserJet 1320 Series +*% For Macintosh only +*%======================================================== +*%================================================= +*% PPD File Version Information +*%================================================= +*FileVersion: "1.1" +*FormatVersion: "4.3" +*LanguageEncoding: ISOLatin1 +*LanguageVersion: English +*cupsLanguages: "da de es fi fr it ja ko nl nb pt sv zh_CN zh_TW" +*PCFileName: "HP1300_6.PPD" + + + +*%================================================= +*% Product Version Information +*%================================================= +*ModelName: "HP LaserJet 1320 series" +*ShortNickName: "HP LaserJet 1320 series" +*NickName: "HP LaserJet 1320 series Postscript (recommended)" +*Product: "(hp LaserJet 1320 series)" +*Product: "(Hewlett-Packard hp LaserJet 1320 series)" +*Product: "(HP LaserJet 1320 series)" +*Manufacturer: "HP" +*PSVersion: "(2014.116) 0" + +*%================================================= +*% Device Capabilities +*%================================================= +*ColorDevice: False +*DefaultColorSpace: Gray +*FileSystem: False + +*LanguageLevel: "2" +*Throughput: "22" +*TTRasterizer: Type42 +*?TTRasterizer: " + save + 42 /FontType resourcestatus + { pop pop (Type42)} {pop pop (None)} ifelse = flush + restore +" +*End + +*%================================================= +*% Emulations and Protocols +*%================================================= +*Protocols: TBCP + +*SuggestedJobTimeout: "0" +*SuggestedWaitTimeout: "120" +*PrintPSErrors: True + +*%============================================== +*% Installable Options +*%============================================== +*OpenGroup: InstallableOptions/Installed Options +*da.Translation InstallableOptions/Installeret tilbehør: "" +*de.Translation InstallableOptions/Installierte Optionen: "" +*es.Translation InstallableOptions/Opciones instaladas: "" +*fi.Translation InstallableOptions/Asennetut lisävarusteet: "" +*fr.Translation InstallableOptions/Options installées: "" +*it.Translation InstallableOptions/Installed Options: "" +*ja.Translation InstallableOptions/インストール済オプション: "" +*ko.Translation InstallableOptions/설치된 선택사양: "" +*nl.Translation InstallableOptions/Geïnstalleerde opties: "" +*nb.Translation InstallableOptions/Installerte alternativer: "" +*pt.Translation InstallableOptions/Versıes Instaladas: "" +*sv.Translation InstallableOptions/Installerade tillbehör: "" +*zh_CN.Translation InstallableOptions/已安装的选项: "" +*zh_TW.Translation InstallableOptions/安裝的選項: "" + + +*OpenUI *HPOption_Tray2/Tray 2: Boolean +*DefaultHPOption_Tray2: False +*da.Translation HPOption_Tray2/Bakke 2: "" +*de.Translation HPOption_Tray2/Zufuhrfach 2: "" +*es.Translation HPOption_Tray2/Bandeja 2: "" +*fi.Translation HPOption_Tray2/Lokero 2: "" +*fr.Translation HPOption_Tray2/Bac 2: "" +*it.Translation HPOption_Tray2/Vassoio 2: "" +*ja.Translation HPOption_Tray2/トレイ 2: "" +*ko.Translation HPOption_Tray2/용지함 2: "" +*nl.Translation HPOption_Tray2/Lade 2: "" +*nb.Translation HPOption_Tray2/Skuff 2: "" +*pt.Translation HPOption_Tray2/Bandeja 2: "" +*sv.Translation HPOption_Tray2/Fack 2: "" +*zh_CN.Translation HPOption_Tray2/纸盒2: "" +*zh_TW.Translation HPOption_Tray2/紙匣2: "" + +*HPOption_Tray2 True/Installed: "" +*da.HPOption_Tray2 True/Installeret: "" +*de.HPOption_Tray2 True/Installiert: "" +*es.HPOption_Tray2 True/Instalado: "" +*fi.HPOption_Tray2 True/Asennettu: "" +*fr.HPOption_Tray2 True/Installé: "" +*it.HPOption_Tray2 True/Installato: "" +*ja.HPOption_Tray2 True/インストール済: "" +*ko.HPOption_Tray2 True/설치됨: "" +*nl.HPOption_Tray2 True/Geïnstalleerd: "" +*nb.HPOption_Tray2 True/Installert: "" +*pt.HPOption_Tray2 True/Instalada: "" +*sv.HPOption_Tray2 True/Installerat: "" +*zh_CN.HPOption_Tray2 True/已安装: "" +*zh_TW.HPOption_Tray2 True/已安裝: "" + +*HPOption_Tray2 False/Not Installed: "" +*da.HPOption_Tray2 False/Ikke installeret: "" +*de.HPOption_Tray2 False/Nicht installiert: "" +*es.HPOption_Tray2 False/No Instalado: "" +*fi.HPOption_Tray2 False/Ei asennettu: "" +*fr.HPOption_Tray2 False/Non installé: "" +*it.HPOption_Tray2 False/Non installato: "" +*ja.HPOption_Tray2 False/インストールされていない: "" +*ko.HPOption_Tray2 False/설치되지 않음: "" +*nl.HPOption_Tray2 False/Niet geïnstalleerd: "" +*nb.HPOption_Tray2 False/Ikke installert: "" +*pt.HPOption_Tray2 False/Não instalada: "" +*sv.HPOption_Tray2 False/Ej installerat: "" +*zh_CN.HPOption_Tray2 False/未安装: "" +*zh_TW.HPOption_Tray2 False/尚未安裝: "" + +*?HPOption_Tray2: " + save + currentpagedevice /InputAttributes get 0 known + {(True)}{(False)} ifelse = flush + restore " +*End +*CloseUI: *HPOption_Tray2 + +*OpenUI *HPOption_Tray3/Tray 3: Boolean +*DefaultHPOption_Tray3: False +*da.Translation HPOption_Tray3/Bakke 3: "" +*de.Translation HPOption_Tray3/Zufuhrfach 3: "" +*es.Translation HPOption_Tray3/Bandeja 3: "" +*fi.Translation HPOption_Tray3/Lokero 3: "" +*fr.Translation HPOption_Tray3/Bac 3: "" +*it.Translation HPOption_Tray3/Vassoio 3: "" +*ja.Translation HPOption_Tray3/トレイ 3: "" +*ko.Translation HPOption_Tray3/용지함 3: "" +*nl.Translation HPOption_Tray3/Lade 3: "" +*nb.Translation HPOption_Tray3/Skuff 3: "" +*pt.Translation HPOption_Tray3/Bandeja 3: "" +*sv.Translation HPOption_Tray3/Fack 3: "" +*zh_CN.Translation HPOption_Tray3/纸盒3: "" +*zh_TW.Translation HPOption_Tray3/紙匣3: "" + +*HPOption_Tray3 True/Installed: "" +*da.HPOption_Tray3 True/Installeret: "" +*de.HPOption_Tray3 True/Installiert: "" +*es.HPOption_Tray3 True/Instalado: "" +*fi.HPOption_Tray3 True/Asennettu: "" +*fr.HPOption_Tray3 True/Installé: "" +*it.HPOption_Tray3 True/Installato: "" +*ja.HPOption_Tray3 True/インストール済: "" +*ko.HPOption_Tray3 True/설치됨: "" +*nl.HPOption_Tray3 True/Geïnstalleerd: "" +*nb.HPOption_Tray3 True/Installert: "" +*pt.HPOption_Tray3 True/Instalada: "" +*sv.HPOption_Tray3 True/Installerat: "" +*zh_CN.HPOption_Tray3 True/已安装: "" +*zh_TW.HPOption_Tray3 True/已安裝: "" + +*HPOption_Tray3 False/Not Installed: "" +*da.HPOption_Tray3 False/Ikke installeret: "" +*de.HPOption_Tray3 False/Nicht installiert: "" +*es.HPOption_Tray3 False/No Instalado: "" +*fi.HPOption_Tray3 False/Ei asennettu: "" +*fr.HPOption_Tray3 False/Non installé: "" +*it.HPOption_Tray3 False/Non installato: "" +*ja.HPOption_Tray3 False/インストールされていない: "" +*ko.HPOption_Tray3 False/설치되지 않음: "" +*nl.HPOption_Tray3 False/Niet geïnstalleerd: "" +*nb.HPOption_Tray3 False/Ikke installert: "" +*pt.HPOption_Tray3 False/Não instalada: "" +*sv.HPOption_Tray3 False/Ej installerat: "" +*zh_CN.HPOption_Tray3 False/未安装: "" +*zh_TW.HPOption_Tray3 False/尚未安裝: "" + +*?HPOption_Tray3: " + save + currentpagedevice /InputAttributes get 1 known + {(True)}{(False)} ifelse = flush + restore " +*End +*CloseUI: *HPOption_Tray3 + +*%==================================== +*% Fit to Page +*%==================================== +*OpenUI *HPOption_PaperPolicy/Fit to Page: PickOne +*OrderDependency: 10 AnySetup *HPOption_PaperPolicy +*DefaultHPOption_PaperPolicy: PromptUser +*da.Translation HPOption_PaperPolicy/Tilpas til siden: "" +*de.Translation HPOption_PaperPolicy/An Seite anpassen: "" +*es.Translation HPOption_PaperPolicy/Hacer que quepa en la hoja: "" +*fi.Translation HPOption_PaperPolicy/Sovita sivulle: "" +*fr.Translation HPOption_PaperPolicy/Ajuster à la page: "" +*it.Translation HPOption_PaperPolicy/Adatta alle dimensioni della pagina: "" +*ja.Translation HPOption_PaperPolicy/用紙のマッチング: "" +*ko.Translation HPOption_PaperPolicy/용지 일치: "" +*nl.Translation HPOption_PaperPolicy/Papieraanpassing: "" +*nb.Translation HPOption_PaperPolicy/Papirtilpasning: "" +*pt.Translation HPOption_PaperPolicy/Correspondência de papel: "" +*sv.Translation HPOption_PaperPolicy/Pappersmatchning: "" +*zh_CN.Translation HPOption_PaperPolicy/纸张匹配: "" +*zh_TW.Translation HPOption_PaperPolicy/紙張相符: "" + +*HPOption_PaperPolicy PromptUser/Prompt User: " + <> setpagedevice" +*End +*da.HPOption_PaperPolicy PromptUser/Spørg brugeren: "" +*de.HPOption_PaperPolicy PromptUser/Benutzer auffordern: "" +*es.HPOption_PaperPolicy PromptUser/Informar al usuario: "" +*fi.HPOption_PaperPolicy PromptUser/Kysy käyttäjältä: "" +*fr.HPOption_PaperPolicy PromptUser/Demander à l’utilisateur: "" +*it.HPOption_PaperPolicy PromptUser/Avvisa utente: "" +*ja.HPOption_PaperPolicy PromptUser/正しいサイズを入力するように要求: "" +*ko.HPOption_PaperPolicy PromptUser/프롬프트 사용자: "" +*nl.HPOption_PaperPolicy PromptUser/Gebruiker waarschuwen: "" +*nb.HPOption_PaperPolicy PromptUser/Gi beskjed til bruker: "" +*pt.HPOption_PaperPolicy PromptUser/Avisar usuário: "" +*sv.HPOption_PaperPolicy PromptUser/Meddela användaren: "" +*zh_CN.HPOption_PaperPolicy PromptUser/提示用户: "" +*zh_TW.HPOption_PaperPolicy PromptUser/提示使用者: "" + +*HPOption_PaperPolicy NearestSizeAdjust/Nearest Size and Scale: " + <> setpagedevice + <> >> setpagedevice" +*End +*da.HPOption_PaperPolicy NearestSizeAdjust/Nærmeste størrelse og skalering: "" +*de.HPOption_PaperPolicy NearestSizeAdjust/Nächstkleineres/größeres Format mit Skalierung: "" +*es.HPOption_PaperPolicy NearestSizeAdjust/Usar tamaño más parecido y cambiar a escala: "" +*fi.HPOption_PaperPolicy NearestSizeAdjust/Lähin koko ja skaalaus: "" +*fr.HPOption_PaperPolicy NearestSizeAdjust/Format et échelle les plus proches: "" +*it.HPOption_PaperPolicy NearestSizeAdjust/Usa le dimensioni più vicine e adatta: "" +*ja.HPOption_PaperPolicy NearestSizeAdjust/近似サイズに拡大/縮小: "" +*ko.HPOption_PaperPolicy NearestSizeAdjust/근사 크기와 축소/확대: "" +*nl.HPOption_PaperPolicy NearestSizeAdjust/Dichtst benaderende afmeting en schaal: "" +*nb.HPOption_PaperPolicy NearestSizeAdjust/Nærmeste størrelse og skala: "" +*pt.HPOption_PaperPolicy NearestSizeAdjust/Tamanho mais próximo e ajusta a escala: "" +*sv.HPOption_PaperPolicy NearestSizeAdjust/Närmaste storlek och skala: "" +*zh_CN.HPOption_PaperPolicy NearestSizeAdjust/最接近之尺寸和缩放度: "" +*zh_TW.HPOption_PaperPolicy NearestSizeAdjust/最接近的尺寸並按比例縮放: "" + +*HPOption_PaperPolicy NearestSizeNoAdjust/Nearest Size and Crop: " + <> setpagedevice + <> >> setpagedevice" +*End +*da.HPOption_PaperPolicy NearestSizeNoAdjust/Nærmeste størrelse og beskæring: "" +*de.HPOption_PaperPolicy NearestSizeNoAdjust/Nächstkleineres/größeres Format mit Beschnitt: "" +*es.HPOption_PaperPolicy NearestSizeNoAdjust/Usar tamaño más parecido y recortar: "" +*fi.HPOption_PaperPolicy NearestSizeNoAdjust/Lähin koko ja rajaus: "" +*fr.HPOption_PaperPolicy NearestSizeNoAdjust/Format et coupe les plus proches: "" +*it.HPOption_PaperPolicy NearestSizeNoAdjust/Usa le dimensioni più vicine e taglia: "" +*ja.HPOption_PaperPolicy NearestSizeNoAdjust/近似サイズにトリミング: "" +*ko.HPOption_PaperPolicy NearestSizeNoAdjust/근사 크기와 자르기: "" +*nl.HPOption_PaperPolicy NearestSizeNoAdjust/Dichtst benaderende grootte en trim: "" +*nb.HPOption_PaperPolicy NearestSizeNoAdjust/Nærmeste størrelse og beskjæring: "" +*pt.HPOption_PaperPolicy NearestSizeNoAdjust/Tamanho mais próximo e corta: "" +*sv.HPOption_PaperPolicy NearestSizeNoAdjust/Närmaste storlek och beskär: "" +*zh_CN.HPOption_PaperPolicy NearestSizeNoAdjust/最接近之尺寸和剪裁: "" +*zh_TW.HPOption_PaperPolicy NearestSizeNoAdjust/最接近的尺寸並裁剪: "" + +*?HPOption_PaperPolicy: "(PromptUser) = flush" +*CloseUI: *HPOption_PaperPolicy + + +*OpenUI *InstalledMemory/Total Printer Memory: PickOne +*DefaultInstalledMemory: 16_31MB +*da.Translation InstalledMemory/Printerhukommelse i alt: "" +*de.Translation InstalledMemory/Druckerspeicher insgesamt: "" +*es.Translation InstalledMemory/Memoria total de la impresora: "" +*fi.Translation InstalledMemory/Kirjoittimen kokonaismuisti: "" +*fr.Translation InstalledMemory/Mémoire totale de l’imprimante: "" +*it.Translation InstalledMemory/Configurazione della memoria: "" +*ja.Translation InstalledMemory/プリンタ総メモリ容量: "" +*ko.Translation InstalledMemory/메모리 구성: "" +*nl.Translation InstalledMemory/Geheugenconfiguratie: "" +*nb.Translation InstalledMemory/Total skriverhukommelse: "" +*pt.Translation InstalledMemory/Configuração de memória: "" +*sv.Translation InstalledMemory/Minneskonfiguration: "" +*zh_CN.Translation InstalledMemory/内存配置: "" +*zh_TW.Translation InstalledMemory/記憶體設定: "" + +*InstalledMemory 16_31MB/16 - 31 MB: "" +*da.InstalledMemory 16_31MB/16 - 31 MB: "" +*de.InstalledMemory 16_31MB/16 - 31 MB: "" +*es.InstalledMemory 16_31MB/16 - 31 MB de RAM: "" +*fi.InstalledMemory 16_31MB/16 - 31 megatavua: "" +*fr.InstalledMemory 16_31MB/16 à 31 Mo de RAM: "" +*it.InstalledMemory 16_31MB/16 - 31 MB: "" +*ja.InstalledMemory 16_31MB/16 〜 31 MB RAM: "" +*ko.InstalledMemory 16_31MB/16 - 31 MB: "" +*nl.InstalledMemory 16_31MB/16 - 31 MB: "" +*nb.InstalledMemory 16_31MB/16 - 31 MB: "" +*pt.InstalledMemory 16_31MB/16 - 31 MB: "" +*sv.InstalledMemory 16_31MB/16 - 31 MB: "" +*zh_CN.InstalledMemory 16_31MB/16 - 31 MB: "" +*zh_TW.InstalledMemory 16_31MB/16 - 31 MB: "" + +*InstalledMemory 32_47MB/32 - 47 MB: "" +*da.InstalledMemory 32_47MB/32 - 47 MB: "" +*de.InstalledMemory 32_47MB/32 - 47 MB: "" +*es.InstalledMemory 32_47MB/32 - 47 MB de RAM: "" +*fi.InstalledMemory 32_47MB/32 - 47 megatavua: "" +*fr.InstalledMemory 32_47MB/32 à 47 Mo de RAM: "" +*it.InstalledMemory 32_47MB/32 - 47 MB: "" +*ja.InstalledMemory 32_47MB/32 〜 47 MB RAM: "" +*ko.InstalledMemory 32_47MB/32 - 47 MB: "" +*nl.InstalledMemory 32_47MB/32 - 47 MB: "" +*nb.InstalledMemory 32_47MB/32 - 47 MB: "" +*pt.InstalledMemory 32_47MB/32 - 47 MB: "" +*sv.InstalledMemory 32_47MB/32 - 47 MB: "" +*zh_CN.InstalledMemory 32_47MB/32 - 47 MB: "" +*zh_TW.InstalledMemory 32_47MB/32 - 47 MB: "" + +*InstalledMemory 48_79MB/48 - 79 MB: "" +*da.InstalledMemory 48_79MB/48 - 79 MB: "" +*de.InstalledMemory 48_79MB/48 - 79 MB: "" +*es.InstalledMemory 48_79MB/48 - 79 MB de RAM: "" +*fi.InstalledMemory 48_79MB/48 - 79 megatavua: "" +*fr.InstalledMemory 48_79MB/48 à 79 Mo de RAM: "" +*it.InstalledMemory 48_79MB/48 - 79 MB: "" +*ja.InstalledMemory 48_79MB/48 〜 79 MB RAM: "" +*ko.InstalledMemory 48_79MB/48 - 79 MB: "" +*nl.InstalledMemory 48_79MB/48 - 79 MB: "" +*nb.InstalledMemory 48_79MB/48 - 79 MB: "" +*pt.InstalledMemory 48_79MB/48 - 79 MB: "" +*sv.InstalledMemory 48_79MB/48 - 79 MB: "" +*zh_CN.InstalledMemory 48_79MB/48 - 79 MB: "" +*zh_TW.InstalledMemory 48_79MB/48 - 79 MB: "" + +*InstalledMemory 80_143MB/80 - 143 MB: "" +*da.InstalledMemory 80_143MB/80 - 143 MB: "" +*de.InstalledMemory 80_143MB/80 - 143 MB: "" +*es.InstalledMemory 80_143MB/80 - 143 MB de RAM: "" +*fi.InstalledMemory 80_143MB/80 - 143 megatavua: "" +*fr.InstalledMemory 80_143MB/80 à 143 Mo de RAM: "" +*it.InstalledMemory 80_143MB/80 - 143 MB: "" +*ja.InstalledMemory 80_143MB/80 〜 143 MB RAM: "" +*ko.InstalledMemory 80_143MB/80 - 143 MB: "" +*nl.InstalledMemory 80_143MB/80 - 143 MB: "" +*nb.InstalledMemory 80_143MB/80 - 143 MB: "" +*pt.InstalledMemory 80_143MB/80 - 143 MB: "" +*sv.InstalledMemory 80_143MB/80 - 143 MB: "" +*zh_CN.InstalledMemory 80_143MB/80 - 143 MB: "" +*zh_TW.InstalledMemory 80_143MB/80 - 143 MB: "" + +*InstalledMemory 144MB/144 or more MB: "" +*da.InstalledMemory 144MB/144 MB: "" +*de.InstalledMemory 144MB/144 MB: "" +*es.InstalledMemory 144MB/144 MB de RAM: "" +*fi.InstalledMemory 144MB/144 megatavua: "" +*fr.InstalledMemory 144MB/144 Mo de RAM: "" +*it.InstalledMemory 144MB/144 MB: "" +*ja.InstalledMemory 144MB/144 MB RAM: "" +*ko.InstalledMemory 144MB/144 MB: "" +*nl.InstalledMemory 144MB/144 MB: "" +*nb.InstalledMemory 144MB/144 MB: "" +*pt.InstalledMemory 144MB/144 MB: "" +*sv.InstalledMemory 144MB/144 MB: "" +*zh_CN.InstalledMemory 144MB/144 MB: "" +*zh_TW.InstalledMemory 144MB/144 MB: "" + +*?InstalledMemory: " + save + currentsystemparams /RamSize get + 524288 div ceiling cvi 2 div + /size exch def + size 144 ge + {(144MB)} + {size 80 ge + {(80_143MB)} + {size 48 ge + {(48_79MB)} + {size 32 ge + {(32_47MB)} + {(16_31MB)} ifelse + } ifelse + } ifelse + } ifelse = flush + restore +" +*End +*CloseUI: *InstalledMemory + +*CloseGroup: InstallableOptions + +*OpenUI *HPStraightPaperPath/Use Straight Paper Path: Boolean +*DefaultHPStraightPaperPath: False +*da.Translation HPStraightPaperPath/Benyt lige papirgang: "" +*de.Translation HPStraightPaperPath/Geraden Papierpfad verwenden: "" +*es.Translation HPStraightPaperPath/Utilizar ruta de papel recta: "" +*fi.Translation HPStraightPaperPath/Käytä suoraa paperireittiä: "" +*fr.Translation HPStraightPaperPath/Insérer le papier droit: "" +*it.Translation HPStraightPaperPath/Usa percorso carta diretto: "" +*ja.Translation HPStraightPaperPath/直線用紙経路の使用: "" +*ko.Translation HPStraightPaperPath/곧은 용지 경로를 사용하십시오: "" +*nl.Translation HPStraightPaperPath/Recht papierpad gebruiken: "" +*nb.Translation HPStraightPaperPath/Bruk rett papirbane: "" +*pt.Translation HPStraightPaperPath/Usar caminho reto de papel: "" +*sv.Translation HPStraightPaperPath/Använd rak pappersbana: "" +*zh_CN.Translation HPStraightPaperPath/使用直线馈纸路径: "" +*zh_TW.Translation HPStraightPaperPath/使用直接出紙路徑: "" + +*HPStraightPaperPath True/On: "" +*da.HPStraightPaperPath True/På: "" +*de.HPStraightPaperPath True/Ein: "" +*es.HPStraightPaperPath True/Activado: "" +*fi.HPStraightPaperPath True/Käytössä: "" +*fr.HPStraightPaperPath True/Activé: "" +*it.HPStraightPaperPath True/Attiva: "" +*ja.HPStraightPaperPath True/オン: "" +*ko.HPStraightPaperPath True/켜짐: "" +*nl.HPStraightPaperPath True/Aan: "" +*nb.HPStraightPaperPath True/På: "" +*pt.HPStraightPaperPath True/Ativado: "" +*sv.HPStraightPaperPath True/På: "" +*zh_CN.HPStraightPaperPath True/开: "" +*zh_TW.HPStraightPaperPath True/開啟: "" + +*HPStraightPaperPath False/Off: "" +*da.HPStraightPaperPath False/Fra: "" +*de.HPStraightPaperPath False/Aus: "" +*es.HPStraightPaperPath False/Desactivado: "" +*fi.HPStraightPaperPath False/Ei käytössä: "" +*fr.HPStraightPaperPath False/Désactivé: "" +*it.HPStraightPaperPath False/Disattivata: "" +*ja.HPStraightPaperPath False/オフ: "" +*ko.HPStraightPaperPath False/꺼짐: "" +*nl.HPStraightPaperPath False/Uit: "" +*nb.HPStraightPaperPath False/Av: "" +*pt.HPStraightPaperPath False/Desativado: "" +*sv.HPStraightPaperPath False/Av: "" +*zh_CN.HPStraightPaperPath False/关: "" +*zh_TW.HPStraightPaperPath False/關閉: "" + +*CloseUI: *HPStraightPaperPath +*HPStraightPaperPathDS True: "HPSTRAIGHTPAPERPATH_DS" +*HPStraightPaperPathDS False: "HPSTRAIGHTPAPERPATH_DS" + + +*% ================================= +*% ================================= + +*OpenGroup: HPImagingOptions/Image Quality +*da.Translation HPImagingOptions/Billedindstillinger: "" +*de.Translation HPImagingOptions/Abbildungsoptionen: "" +*es.Translation HPImagingOptions/Opciones de imagen: "" +*fi.Translation HPImagingOptions/Kuvanmuodostusasetukset: "" +*fr.Translation HPImagingOptions/Options d'image: "" +*it.Translation HPImagingOptions/Opzioni di immagine: "" +*ja.Translation HPImagingOptions/画質オプション: "" +*ko.Translation HPImagingOptions/이미지 옵션: "" +*nl.Translation HPImagingOptions/Afbeeldingen-opties: "" +*nb.Translation HPImagingOptions/Valg for bildebehandling: "" +*pt.Translation HPImagingOptions/Opções de imagem: "" +*sv.Translation HPImagingOptions/Alternativ för kvalitet: "" +*zh_CN.Translation HPImagingOptions/图象选项: "" +*zh_TW.Translation HPImagingOptions/影像選項: "" + + +*%=================================== +*% Resolution +*%=================================== +*% Select Printer Resolution +*OpenUI *Resolution/Printer Resolution: PickOne +*DefaultResolution: 1200dpi +*da.Translation Resolution/Opløsning: "" +*de.Translation Resolution/Druckerauflösung: "" +*es.Translation Resolution/Resol. de la impresora: "" +*fi.Translation Resolution/Kirjoittimen tarkkuus: "" +*fr.Translation Resolution/Résolution d’imprimante: "" +*it.Translation Resolution/Risoluzione: "" +*ja.Translation Resolution/プリンタの解像度: "" +*ko.Translation Resolution/프린터 해상도: "" +*nl.Translation Resolution/Printer-resolutie: "" +*nb.Translation Resolution/Skriveroppløsning: "" +*pt.Translation Resolution/Resolução da impressora: "" +*sv.Translation Resolution/Skrivarupplösning: "" +*zh_CN.Translation Resolution/打印机分辨率: "" +*zh_TW.Translation Resolution/印表機解析度: "" + +*OrderDependency: 5 DocumentSetup *Resolution +*Resolution 1200x1200dpi/ProRes 1200: " + <> setpagedevice" +*End +*da.Resolution 1200x1200dpi/ProRes 1200: "" +*de.Resolution 1200x1200dpi/ProRes 1200: "" +*es.Resolution 1200x1200dpi/ProRes 1200: "" +*fi.Resolution 1200x1200dpi/ProRes 1200: "" +*fr.Resolution 1200x1200dpi/ProRes 1200: "" +*it.Resolution 1200x1200dpi/ProRes 1200: "" +*ja.Resolution 1200x1200dpi/ProRes 1200: "" +*ko.Resolution 1200x1200dpi/ProRes 1200: "" +*nl.Resolution 1200x1200dpi/ProRes 1200: "" +*nb.Resolution 1200x1200dpi/ProRes 1200: "" +*pt.Resolution 1200x1200dpi/ProRes 1200: "" +*sv.Resolution 1200x1200dpi/ProRes 1200: "" +*zh_CN.Resolution 1200x1200dpi/ProRes 1200: "" +*zh_TW.Resolution 1200x1200dpi/ProRes 1200: "" + +*Resolution 1200dpi/FastRes 1200: " + <> setpagedevice" +*End +*da.Resolution 1200dpi/FastRes 1200: "" +*de.Resolution 1200dpi/FastRes 1200: "" +*es.Resolution 1200dpi/FastRes 1200: "" +*fi.Resolution 1200dpi/FastRes 1200: "" +*fr.Resolution 1200dpi/FastRes 1200: "" +*it.Resolution 1200dpi/FastRes 1200: "" +*ja.Resolution 1200dpi/FastRes 1200: "" +*ko.Resolution 1200dpi/FastRes 1200: "" +*nl.Resolution 1200dpi/FastRes 1200: "" +*nb.Resolution 1200dpi/FastRes 1200: "" +*pt.Resolution 1200dpi/FastRes 1200: "" +*sv.Resolution 1200dpi/FastRes 1200: "" +*zh_CN.Resolution 1200dpi/FastRes 1200: "" +*zh_TW.Resolution 1200dpi/FastRes 1200: "" + +*Resolution 600x600dpi/600 dpi: " + <> setpagedevice" +*End +*da.Resolution 600x600dpi/600 dpi: "" +*de.Resolution 600x600dpi/600 dpi: "" +*es.Resolution 600x600dpi/600 dpi: "" +*fi.Resolution 600x600dpi/600 dpi: "" +*fr.Resolution 600x600dpi/600 dpi: "" +*it.Resolution 600x600dpi/600 dpi: "" +*ja.Resolution 600x600dpi/600 dpi: "" +*ko.Resolution 600x600dpi/600 dpi: "" +*nl.Resolution 600x600dpi/600 dpi: "" +*nb.Resolution 600x600dpi/600 dpi: "" +*pt.Resolution 600x600dpi/600 dpi: "" +*sv.Resolution 600x600dpi/600 dpi: "" +*zh_CN.Resolution 600x600dpi/600 dpi: "" +*zh_TW.Resolution 600x600dpi/600 dpi: "" + +*?Resolution: " + save + currentpagedevice /HWResolution get + 0 get + ( ) cvs print + (dpi) + = flush + restore +" +*End +*CloseUI: *Resolution + +*%================================================= +*% Resolution Enhancement +*%================================================= +*OpenUI *Smoothing/Resolution Enhancement: PickOne +*OrderDependency: 20 DocumentSetup *Smoothing +*DefaultSmoothing: PrinterDefault +*da.Translation Smoothing/Opløsningsforbedring: "" +*de.Translation Smoothing/Auflösungsoptimierung: "" +*es.Translation Smoothing/Resolución Enhancement: "" +*fi.Translation Smoothing/Tarkkuuden parannus: "" +*fr.Translation Smoothing/Amélioration résolution: "" +*it.Translation Smoothing/Miglioramento risoluzione: "" +*ja.Translation Smoothing/解像度エンハンスメント: "" +*ko.Translation Smoothing/해상도 향상: "" +*nl.Translation Smoothing/Resolutieverbetering: "" +*nb.Translation Smoothing/Oppløsningsfremheving: "" +*pt.Translation Smoothing/Resolução avançada: "" +*sv.Translation Smoothing/Förbättring av upplösning: "" +*zh_CN.Translation Smoothing/分辨率增强: "" +*zh_TW.Translation Smoothing/解析度增強: "" + +*Smoothing PrinterDefault/Printer's Current Setting: "" +*da.Smoothing PrinterDefault/Aktuelle Druckereinstellung: "" +*de.Smoothing PrinterDefault/Aktuelle Druckereinstellung: "" +*es.Smoothing PrinterDefault/Configuración actual de la impresora: "" +*fi.Smoothing PrinterDefault/Kirjoittimen nykyinen asetus: "" +*fr.Smoothing PrinterDefault/Paramétrage actuel de l'imprimante: "" +*it.Smoothing PrinterDefault/Impostazioni correnti della stampante: "" +*ja.Smoothing PrinterDefault/プリンタの現在の設定: "" +*ko.Smoothing PrinterDefault/프린터 기본값: "" +*nl.Smoothing PrinterDefault/Huidige instelling van de printer: "" +*nb.Smoothing PrinterDefault/Skriverens gjeldende innstilling: "" +*pt.Smoothing PrinterDefault/Configuração atual da impressora: "" +*sv.Smoothing PrinterDefault/Skrivarens inställning: "" +*zh_CN.Smoothing PrinterDefault/打印机的当前设置: "" +*zh_TW.Smoothing PrinterDefault/印表機目前的設定值: "" + +*Smoothing On/On: " +<< /PostRenderingEnhance true + /PostRenderingEnhanceDetails << /REValue 2 /Type 8 >> +>> setpagedevice" +*End +*da.Smoothing On/Ein: "" +*de.Smoothing On/Ein: "" +*es.Smoothing On/Activado: "" +*fi.Smoothing On/Kyllä: "" +*fr.Smoothing On/Activé: "" +*it.Smoothing On/Attivata: "" +*ja.Smoothing On/オン: "" +*ko.Smoothing On/켜짐: "" +*nl.Smoothing On/Aan: "" +*nb.Smoothing On/På: "" +*pt.Smoothing On/Ativado: "" +*sv.Smoothing On/På: "" +*zh_CN.Smoothing On/开: "" +*zh_TW.Smoothing On/開啟: "" + +*Smoothing Off/Off: " +<< /PostRenderingEnhance true + /PostRenderingEnhanceDetails << /REValue 0 /Type 8 >> +>> setpagedevice" +*End +*da.Smoothing Off/Aus: "" +*de.Smoothing Off/Aus: "" +*es.Smoothing Off/Desactivado: "" +*fi.Smoothing Off/Ei: "" +*fr.Smoothing Off/Désactivé: "" +*it.Smoothing Off/Disattivata: "" +*ja.Smoothing Off/オフ: "" +*ko.Smoothing Off/끔: "" +*nl.Smoothing Off/Uit: "" +*nb.Smoothing Off/Av: "" +*pt.Smoothing Off/Desativado: "" +*sv.Smoothing Off/Av: "" +*zh_CN.Smoothing Off/关: "" +*zh_TW.Smoothing Off/關閉: "" + +*?Smoothing: " + save + currentpagedevice /PostRenderingEnhanceDetails get /REValue get + [(Off) (On) (On) (On)] exch get print + restore +" +*End +*CloseUI: *Smoothing + +*%================================== +*% HPEconoMode +*%================================== +*OpenUI *HPEconoMode/EconoMode: PickOne +*DefaultHPEconoMode: PrinterDefault +*da.Translation HPEconoMode/EconoMode: "" +*de.Translation HPEconoMode/EconoMode: "" +*es.Translation HPEconoMode/EconoMode: "" +*fi.Translation HPEconoMode/EconoMode: "" +*fr.Translation HPEconoMode/EconoMode: "" +*it.Translation HPEconoMode/EconoMode: "" +*ja.Translation HPEconoMode/EconoMode: "" +*ko.Translation HPEconoMode/EconoMode: "" +*nl.Translation HPEconoMode/EconoMode: "" +*nb.Translation HPEconoMode/EconoMode: "" +*pt.Translation HPEconoMode/EconoMode: "" +*sv.Translation HPEconoMode/EconoMode: "" +*zh_CN.Translation HPEconoMode/EconoMode: "" +*zh_TW.Translation HPEconoMode/EconoMode: "" + +*OrderDependency: 10 AnySetup *HPEconoMode +*HPEconoMode PrinterDefault/Printer's Current Setting: "" +*da.HPEconoMode PrinterDefault/Printerens aktuelle indstilling: "" +*de.HPEconoMode PrinterDefault/Aktuelle Druckereinstellung: "" +*es.HPEconoMode PrinterDefault/Configuración actual de la impresora: "" +*fi.HPEconoMode PrinterDefault/Kirjoittimen nykyinen asetus: "" +*fr.HPEconoMode PrinterDefault/Paramétrage actuel de l’imprimante: "" +*it.HPEconoMode PrinterDefault/Impostazioni correnti della stampante: "" +*ja.HPEconoMode PrinterDefault/プリンタの現在の設定: "" +*ko.HPEconoMode PrinterDefault/프린터의 현재 설정: "" +*nl.HPEconoMode PrinterDefault/Huidige instelling van de printer: "" +*nb.HPEconoMode PrinterDefault/Skriverens gjeldende innstilling: "" +*pt.HPEconoMode PrinterDefault/Configuração atual da impressora: "" +*sv.HPEconoMode PrinterDefault/Skrivarens inställning: "" +*zh_CN.HPEconoMode PrinterDefault/打印机的当前设置: "" +*zh_TW.HPEconoMode PrinterDefault/印表機目前的設定值: "" + +*HPEconoMode True/Save Toner: " + <> setpagedevice" +*End +*da.HPEconoMode True/Spar toner: "" +*de.HPEconoMode True/Toner sparen: "" +*es.HPEconoMode True/Ahorrar tóner: "" +*fi.HPEconoMode True/Säästä väriainetta: "" +*fr.HPEconoMode True/Economiser l’encre: "" +*it.HPEconoMode True/Salva toner: "" +*ja.HPEconoMode True/トナー節約: "" +*ko.HPEconoMode True/토너 절약: "" +*nl.HPEconoMode True/Toner besparen: "" +*nb.HPEconoMode True/Spar toner: "" +*pt.HPEconoMode True/Economizar toner: "" +*sv.HPEconoMode True/Spara toner: "" +*zh_CN.HPEconoMode True/节省碳粉: "" +*zh_TW.HPEconoMode True/節約碳粉: "" + +*HPEconoMode False/Highest Quality: " + <> setpagedevice" +*End +*da.HPEconoMode False/Højeste kvalitet: "" +*de.HPEconoMode False/Beste Qualität: "" +*es.HPEconoMode False/Calidad óptima: "" +*fi.HPEconoMode False/Korkein laatu: "" +*fr.HPEconoMode False/Meilleure qualité: "" +*it.HPEconoMode False/Qualità superiore: "" +*ja.HPEconoMode False/最品位: "" +*ko.HPEconoMode False/최고품질: "" +*nl.HPEconoMode False/Beste kwaliteit: "" +*nb.HPEconoMode False/Høyeste kvalitet: "" +*pt.HPEconoMode False/Melhor qualidade: "" +*sv.HPEconoMode False/Högsta kvalitet: "" +*zh_CN.HPEconoMode False/最高质量: "" +*zh_TW.HPEconoMode False/最高品質: "" + +*?HPEconoMode: " + save + currentpagedevice /EconoMode get + {(True)}{(False)}ifelse = flush + restore +" +*End +*CloseUI: *HPEconoMode + +*CloseGroup: HPImagingOptions + + +*FreeVM: "4000000" +*VMOption 16_31MB/16 - 61 MB: "4000000" +*da.VMOption 16_31MB/16 - 61 MB: "" +*de.VMOption 16_31MB/16 - 61 MB: "" +*es.VMOption 16_31MB/16 - 61 MB: "" +*fi.VMOption 16_31MB/16 - 61 MB: "" +*fr.VMOption 16_31MB/16 - 61 MB: "" +*it.VMOption 16_31MB/16 - 61 MB: "" +*ja.VMOption 16_31MB/16 - 61 MB: "" +*ko.VMOption 16_31MB/16 - 61 MB: "" +*nl.VMOption 16_31MB/16 - 61 MB: "" +*nb.VMOption 16_31MB/16 - 61 MB: "" +*pt.VMOption 16_31MB/16 - 61 MB: "" +*sv.VMOption 16_31MB/16 - 61 MB: "" +*zh_CN.VMOption 16_31MB/16 - 61 MB: "" +*zh_TW.VMOption 16_31MB/16 - 61 MB: "" + +*VMOption 32_47MB/32 - 47 MB: "11000000" +*da.VMOption 32_47MB/32 - 47 MB: "" +*de.VMOption 32_47MB/32 - 47 MB: "" +*es.VMOption 32_47MB/32 - 47 MB: "" +*fi.VMOption 32_47MB/32 - 47 MB: "" +*fr.VMOption 32_47MB/32 - 47 MB: "" +*it.VMOption 32_47MB/32 - 47 MB: "" +*ja.VMOption 32_47MB/32 - 47 MB: "" +*ko.VMOption 32_47MB/32 - 47 MB: "" +*nl.VMOption 32_47MB/32 - 47 MB: "" +*nb.VMOption 32_47MB/32 - 47 MB: "" +*pt.VMOption 32_47MB/32 - 47 MB: "" +*sv.VMOption 32_47MB/32 - 47 MB: "" +*zh_CN.VMOption 32_47MB/32 - 47 MB: "" +*zh_TW.VMOption 32_47MB/32 - 47 MB: "" + +*VMOption 48_79MB/48 - 71 MB: "18000000" +*da.VMOption 48_79MB/48 - 71 MB: "" +*de.VMOption 48_79MB/48 - 71 MB: "" +*es.VMOption 48_79MB/48 - 71 MB: "" +*fi.VMOption 48_79MB/48 - 71 MB: "" +*fr.VMOption 48_79MB/48 - 71 MB: "" +*it.VMOption 48_79MB/48 - 71 MB: "" +*ja.VMOption 48_79MB/48 - 71 MB: "" +*ko.VMOption 48_79MB/48 - 71 MB: "" +*nl.VMOption 48_79MB/48 - 71 MB: "" +*nb.VMOption 48_79MB/48 - 71 MB: "" +*pt.VMOption 48_79MB/48 - 71 MB: "" +*sv.VMOption 48_79MB/48 - 71 MB: "" +*zh_CN.VMOption 48_79MB/48 - 71 MB: "" +*zh_TW.VMOption 48_79MB/48 - 71 MB: "" + +*VMOption 80_143MB/80-143 MB: "25000000" +*da.VMOption 80_143MB/80-143 MB: "" +*de.VMOption 80_143MB/80-143 MB: "" +*es.VMOption 80_143MB/80-143 MB: "" +*fi.VMOption 80_143MB/80-143 MB: "" +*fr.VMOption 80_143MB/80-143 MB: "" +*it.VMOption 80_143MB/80-143 MB: "" +*ja.VMOption 80_143MB/80-143 MB: "" +*ko.VMOption 80_143MB/80-143 MB: "" +*nl.VMOption 80_143MB/80-143 MB: "" +*nb.VMOption 80_143MB/80-143 MB: "" +*pt.VMOption 80_143MB/80-143 MB: "" +*sv.VMOption 80_143MB/80-143 MB: "" +*zh_CN.VMOption 80_143MB/80-143 MB: "" +*zh_TW.VMOption 80_143MB/80-143 MB: "" + +*VMOption 144MB/144 or more MB: "25000000" +*da.VMOption 144MB/144 or more MB: "" +*de.VMOption 144MB/144 or more MB: "" +*es.VMOption 144MB/144 or more MB: "" +*fi.VMOption 144MB/144 or more MB: "" +*fr.VMOption 144MB/144 or more MB: "" +*it.VMOption 144MB/144 or more MB: "" +*ja.VMOption 144MB/144 or more MB: "" +*ko.VMOption 144MB/144 or more MB: "" +*nl.VMOption 144MB/144 or more MB: "" +*nb.VMOption 144MB/144 or more MB: "" +*pt.VMOption 144MB/144 or more MB: "" +*sv.VMOption 144MB/144 or more MB: "" +*zh_CN.VMOption 144MB/144 or more MB: "" +*zh_TW.VMOption 144MB/144 or more MB: "" + + +*%================================================= +*% UI Constraints +*%================================================= +*% If A than not B (Also include the reverse constraints if appropriate) +*% + +*% No 1200 dpi HPEconoMode. +*UIConstraints: *Resolution 1200x1200dpi *HPEconoMode True +*UIConstraints: *HPEconoMode True *Resolution 1200x1200dpi + +*% If an optional 250 sheet tray is not installed, disable access to Tray2 +*UIConstraints: *HPOption_Tray2 False *InputSlot Tray2 +*UIConstraints: *InputSlot Tray2 *HPOption_Tray2 False + +*UIConstraints: *HPOption_Tray3 False *InputSlot Tray3 +*UIConstraints: *InputSlot Tray3 *HPOption_Tray3 False + +*% If selected page size is an envelope, Postcard or double postcard +*% disable access to paper trays 2 and 3 +*UIConstraints: *PageSize Env10 *InputSlot Tray2 +*UIConstraints: *PageSize EnvMonarch *InputSlot Tray2 +*UIConstraints: *PageSize EnvDL *InputSlot Tray2 +*UIConstraints: *PageSize EnvC5 *InputSlot Tray2 +*UIConstraints: *PageSize EnvISOB5 *InputSlot Tray2 +*UIConstraints: *PageSize w558h774 *InputSlot Tray2 +*UIConstraints: *PageSize Postcard *InputSlot Tray2 +*UIConstraints: *PageSize DoublePostcard *InputSlot Tray2 +*UIConstraints: *PageSize A6 *InputSlot Tray2 +*UIConstraints: *PageSize B6 *InputSlot Tray2 +*NonUIConstraints: *CustomPageSize True *InputSlot Tray2 + +*UIConstraints: *PageSize Env10 *InputSlot Tray3 +*UIConstraints: *PageSize EnvMonarch *InputSlot Tray3 +*UIConstraints: *PageSize EnvDL *InputSlot Tray3 +*UIConstraints: *PageSize EnvC5 *InputSlot Tray3 +*UIConstraints: *PageSize EnvISOB5 *InputSlot Tray3 +*UIConstraints: *PageSize w558h774 *InputSlot Tray3 +*UIConstraints: *PageSize Postcard *InputSlot Tray3 +*UIConstraints: *PageSize DoublePostcard *InputSlot Tray3 +*UIConstraints: *PageSize A6 *InputSlot Tray3 +*UIConstraints: *PageSize B6 *InputSlot Tray3 +*NonUIConstraints: *CustomPageSize True *InputSlot Tray3 + +*UIConstraints: *InputSlot Tray2 *PageSize Env10 +*UIConstraints: *InputSlot Tray2 *PageSize EnvMonarch +*UIConstraints: *InputSlot Tray2 *PageSize EnvDL +*UIConstraints: *InputSlot Tray2 *PageSize EnvC5 +*UIConstraints: *InputSlot Tray2 *PageSize EnvISOB5 +*UIConstraints: *InputSlot Tray2 *PageSize w558h774 +*UIConstraints: *InputSlot Tray2 *PageSize Postcard +*UIConstraints: *InputSlot Tray2 *PageSize DoublePostcard +*UIConstraints: *InputSlot Tray2 *PageSize A6 +*UIConstraints: *InputSlot Tray2 *PageSize B6 + +*UIConstraints: *InputSlot Tray3 *PageSize Env10 +*UIConstraints: *InputSlot Tray3 *PageSize EnvMonarch +*UIConstraints: *InputSlot Tray3 *PageSize EnvDL +*UIConstraints: *InputSlot Tray3 *PageSize EnvC5 +*UIConstraints: *InputSlot Tray3 *PageSize EnvISOB5 +*UIConstraints: *InputSlot Tray3 *PageSize w558h774 +*UIConstraints: *InputSlot Tray3 *PageSize Postcard +*UIConstraints: *InputSlot Tray3 *PageSize DoublePostcard +*UIConstraints: *InputSlot Tray3 *PageSize A6 +*UIConstraints: *InputSlot Tray3 *PageSize B6 + +*UIConstraints: *PageRegion Env10 *InputSlot Tray2 +*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray2 +*UIConstraints: *PageRegion EnvDL *InputSlot Tray2 +*UIConstraints: *PageRegion EnvC5 *InputSlot Tray2 +*UIConstraints: *PageRegion EnvISOB5 *InputSlot Tray2 +*UIConstraints: *PageRegion w558h774 *InputSlot Tray2 +*UIConstraints: *PageRegion Postcard *InputSlot Tray2 +*UIConstraints: *PageRegion DoublePostcard *InputSlot Tray2 +*UIConstraints: *PageRegion A6 *InputSlot Tray2 +*UIConstraints: *PageRegion B6 *InputSlot Tray2 +*%NonUIConstraints: *CustomPageRegion True *InputSlot Tray2 + +*UIConstraints: *PageRegion Env10 *InputSlot Tray3 +*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray3 +*UIConstraints: *PageRegion EnvDL *InputSlot Tray3 +*UIConstraints: *PageRegion EnvC5 *InputSlot Tray3 +*UIConstraints: *PageRegion EnvISOB5 *InputSlot Tray3 +*UIConstraints: *PageRegion w558h774 *InputSlot Tray3 +*UIConstraints: *PageRegion Postcard *InputSlot Tray3 +*UIConstraints: *PageRegion DoublePostcard *InputSlot Tray3 +*UIConstraints: *PageRegion A6 *InputSlot Tray3 +*UIConstraints: *PageRegion B6 *InputSlot Tray3 +*%NonUIConstraints: *CustomPageRegion True *InputSlot Tray3 + +*UIConstraints: *InputSlot Tray2 *PageRegion Env10 +*UIConstraints: *InputSlot Tray2 *PageRegion EnvMonarch +*UIConstraints: *InputSlot Tray2 *PageRegion EnvDL +*UIConstraints: *InputSlot Tray2 *PageRegion EnvC5 +*UIConstraints: *InputSlot Tray2 *PageRegion EnvISOB5 +*UIConstraints: *InputSlot Tray2 *PageRegion w558h774 +*UIConstraints: *InputSlot Tray2 *PageRegion Postcard +*UIConstraints: *InputSlot Tray2 *PageRegion DoublePostcard +*UIConstraints: *InputSlot Tray2 *PageRegion A6 +*UIConstraints: *InputSlot Tray2 *PageRegion B6 + +*UIConstraints: *InputSlot Tray3 *PageRegion Env10 +*UIConstraints: *InputSlot Tray3 *PageRegion EnvMonarch +*UIConstraints: *InputSlot Tray3 *PageRegion EnvDL +*UIConstraints: *InputSlot Tray3 *PageRegion EnvC5 +*UIConstraints: *InputSlot Tray3 *PageRegion EnvISOB5 +*UIConstraints: *InputSlot Tray3 *PageRegion w558h774 +*UIConstraints: *InputSlot Tray3 *PageRegion Postcard +*UIConstraints: *InputSlot Tray3 *PageRegion DoublePostcard +*UIConstraints: *InputSlot Tray3 *PageRegion A6 +*UIConstraints: *InputSlot Tray3 *PageRegion B6 + +*% Duplex Constraints +*%------------------------------------------------------------ +*UIConstraints: *PageSize Executive *Duplex DuplexNoTumble +*UIConstraints: *PageSize Executive *Duplex DuplexTumble +*UIConstraints: *PageSize A5 *Duplex DuplexNoTumble +*UIConstraints: *PageSize A5 *Duplex DuplexTumble +*UIConstraints: *PageSize A6 *Duplex DuplexNoTumble +*UIConstraints: *PageSize A6 *Duplex DuplexTumble +*UIConstraints: *PageSize B6 *Duplex DuplexNoTumble +*UIConstraints: *PageSize B6 *Duplex DuplexTumble +*UIConstraints: *PageSize ISOB5 *Duplex DuplexNoTumble +*UIConstraints: *PageSize ISOB5 *Duplex DuplexTumble +*UIConstraints: *PageSize B5 *Duplex DuplexNoTumble +*UIConstraints: *PageSize B5 *Duplex DuplexTumble +*UIConstraints: *PageSize Postcard *Duplex DuplexNoTumble +*UIConstraints: *PageSize Postcard *Duplex DuplexTumble +*UIConstraints: *PageSize DoublePostcard *Duplex DuplexNoTumble +*UIConstraints: *PageSize DoublePostcard *Duplex DuplexTumble +*UIConstraints: *PageSize w558h774 *Duplex DuplexNoTumble +*UIConstraints: *PageSize w558h774 *Duplex DuplexTumble +*UIConstraints: *PageSize EnvISOB5 *Duplex DuplexNoTumble +*UIConstraints: *PageSize EnvISOB5 *Duplex DuplexTumble +*UIConstraints: *PageSize Env10 *Duplex DuplexNoTumble +*UIConstraints: *PageSize Env10 *Duplex DuplexTumble +*UIConstraints: *PageSize EnvC5 *Duplex DuplexNoTumble +*UIConstraints: *PageSize EnvC5 *Duplex DuplexTumble +*UIConstraints: *PageSize EnvDL *Duplex DuplexNoTumble +*UIConstraints: *PageSize EnvDL *Duplex DuplexTumble +*UIConstraints: *PageSize EnvMonarch *Duplex DuplexNoTumble +*UIConstraints: *PageSize EnvMonarch *Duplex DuplexTumble +*NonUIConstraints: *CustomPageSize True *Duplex DuplexNoTumble +*NonUIConstraints: *CustomPageSize True *Duplex DuplexTumble + +*UIConstraints: *Duplex DuplexNoTumble *PageSize Executive +*UIConstraints: *Duplex DuplexTumble *PageSize Executive +*UIConstraints: *Duplex DuplexNoTumble *PageSize A5 +*UIConstraints: *Duplex DuplexTumble *PageSize A5 +*UIConstraints: *Duplex DuplexNoTumble *PageSize A6 +*UIConstraints: *Duplex DuplexTumble *PageSize A6 +*UIConstraints: *Duplex DuplexNoTumble *PageSize B6 +*UIConstraints: *Duplex DuplexTumble *PageSize B6 +*UIConstraints: *Duplex DuplexNoTumble *PageSize ISOB5 +*UIConstraints: *Duplex DuplexTumble *PageSize ISOB5 +*UIConstraints: *Duplex DuplexNoTumble *PageSize B5 +*UIConstraints: *Duplex DuplexTumble *PageSize B5 +*UIConstraints: *Duplex DuplexNoTumble *PageSize Postcard +*UIConstraints: *Duplex DuplexTumble *PageSize Postcard +*UIConstraints: *Duplex DuplexNoTumble *PageSize DoublePostcard +*UIConstraints: *Duplex DuplexTumble *PageSize DoublePostcard +*UIConstraints: *Duplex DuplexNoTumble *PageSize w558h774 +*UIConstraints: *Duplex DuplexTumble *PageSize w558h774 +*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvISOB5 +*UIConstraints: *Duplex DuplexTumble *PageSize EnvISOB5 +*UIConstraints: *Duplex DuplexNoTumble *PageSize Env10 +*UIConstraints: *Duplex DuplexTumble *PageSize Env10 +*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvC5 +*UIConstraints: *Duplex DuplexTumble *PageSize EnvC5 +*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvDL +*UIConstraints: *Duplex DuplexTumble *PageSize EnvDL +*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvMonarch +*UIConstraints: *Duplex DuplexTumble *PageSize EnvMonarch +*NonUIConstraints: *Duplex DuplexNoTumble *CustomPageSize True +*NonUIConstraints: *Duplex DuplexTumble *CustomPageSize True + +*UIConstraints: *PageRegion Executive *Duplex DuplexNoTumble +*UIConstraints: *PageRegion Executive *Duplex DuplexTumble +*UIConstraints: *PageRegion A5 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion A5 *Duplex DuplexTumble +*UIConstraints: *PageRegion A6 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion A6 *Duplex DuplexTumble +*UIConstraints: *PageRegion B6 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion B6 *Duplex DuplexTumble +*UIConstraints: *PageRegion ISOB5 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion ISOB5 *Duplex DuplexTumble +*UIConstraints: *PageRegion B5 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion B5 *Duplex DuplexTumble +*UIConstraints: *PageRegion Postcard *Duplex DuplexNoTumble +*UIConstraints: *PageRegion Postcard *Duplex DuplexTumble +*UIConstraints: *PageRegion DoublePostcard *Duplex DuplexNoTumble +*UIConstraints: *PageRegion DoublePostcard *Duplex DuplexTumble +*UIConstraints: *PageRegion w558h774 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion w558h774 *Duplex DuplexTumble +*UIConstraints: *PageRegion EnvISOB5 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion EnvISOB5 *Duplex DuplexTumble +*UIConstraints: *PageRegion Env10 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion Env10 *Duplex DuplexTumble +*UIConstraints: *PageRegion EnvC5 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion EnvC5 *Duplex DuplexTumble +*UIConstraints: *PageRegion EnvDL *Duplex DuplexNoTumble +*UIConstraints: *PageRegion EnvDL *Duplex DuplexTumble +*UIConstraints: *PageRegion EnvMonarch *Duplex DuplexNoTumble +*UIConstraints: *PageRegion EnvMonarch *Duplex DuplexTumble +*%NonUIConstraints: *CustomPageRegion True *Duplex DuplexNoTumble +*%NonUIConstraints: *CustomPageRegion True *Duplex DuplexTumble + +*UIConstraints: *Duplex DuplexNoTumble *PageRegion Executive +*UIConstraints: *Duplex DuplexTumble *PageRegion Executive +*UIConstraints: *Duplex DuplexNoTumble *PageRegion A5 +*UIConstraints: *Duplex DuplexTumble *PageRegion A5 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion A6 +*UIConstraints: *Duplex DuplexTumble *PageRegion A6 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion B6 +*UIConstraints: *Duplex DuplexTumble *PageRegion B6 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion ISOB5 +*UIConstraints: *Duplex DuplexTumble *PageRegion ISOB5 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion B5 +*UIConstraints: *Duplex DuplexTumble *PageRegion B5 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion Postcard +*UIConstraints: *Duplex DuplexTumble *PageRegion Postcard +*UIConstraints: *Duplex DuplexNoTumble *PageRegion DoublePostcard +*UIConstraints: *Duplex DuplexTumble *PageRegion DoublePostcard +*UIConstraints: *Duplex DuplexNoTumble *PageRegion w558h774 +*UIConstraints: *Duplex DuplexTumble *PageRegion w558h774 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvISOB5 +*UIConstraints: *Duplex DuplexTumble *PageRegion EnvISOB5 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion Env10 +*UIConstraints: *Duplex DuplexTumble *PageRegion Env10 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvC5 +*UIConstraints: *Duplex DuplexTumble *PageRegion EnvC5 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvDL +*UIConstraints: *Duplex DuplexTumble *PageRegion EnvDL +*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvMonarch +*UIConstraints: *Duplex DuplexTumble *PageRegion EnvMonarch +*%NonUIConstraints: *Duplex DuplexNoTumble *CustomPageRegion True +*%NonUIConstraints: *Duplex DuplexTumble *CustomPageRegion True + +*% Media Type constraints +*%---------------------------------------------------------------- +*UIConstraints: *MediaType Labels *InputSlot Tray2 +*UIConstraints: *MediaType Labels *InputSlot Tray3 +*UIConstraints: *MediaType Transparency *InputSlot Tray2 +*UIConstraints: *MediaType Transparency *InputSlot Tray3 +*UIConstraints: *MediaType Heavy91105 *InputSlot Tray2 +*UIConstraints: *MediaType Heavy91105 *InputSlot Tray3 +*UIConstraints: *MediaType Cardstock105176 *InputSlot Tray2 +*UIConstraints: *MediaType Cardstock105176 *InputSlot Tray3 +*UIConstraints: *MediaType Envelope *InputSlot Tray2 +*UIConstraints: *MediaType Envelope *InputSlot Tray3 + +*UIConstraints: *InputSlot Tray2 *MediaType Labels +*UIConstraints: *InputSlot Tray3 *MediaType Labels +*UIConstraints: *InputSlot Tray2 *MediaType Transparency +*UIConstraints: *InputSlot Tray3 *MediaType Transparency +*UIConstraints: *InputSlot Tray2 *MediaType Heavy91105 +*UIConstraints: *InputSlot Tray3 *MediaType Heavy91105 +*UIConstraints: *InputSlot Tray2 *MediaType Cardstock105176 +*UIConstraints: *InputSlot Tray3 *MediaType Cardstock105176 +*UIConstraints: *InputSlot Tray2 *MediaType Envelope +*UIConstraints: *InputSlot Tray3 *MediaType Envelope + +*UIConstraints: *MediaType Transparency *Duplex DuplexNoTumble +*UIConstraints: *MediaType Transparency *Duplex DuplexTumble +*UIConstraints: *MediaType Labels *Duplex DuplexNoTumble +*UIConstraints: *MediaType Labels *Duplex DuplexTumble +*UIConstraints: *MediaType Cardstock105176 *Duplex DuplexNoTumble +*UIConstraints: *MediaType Cardstock105176 *Duplex DuplexTumble +*UIConstraints: *MediaType Heavy91105 *Duplex DuplexNoTumble +*UIConstraints: *MediaType Heavy91105 *Duplex DuplexTumble +*UIConstraints: *MediaType Envelope *Duplex DuplexNoTumble +*UIConstraints: *MediaType Envelope *Duplex DuplexTumble + +*UIConstraints: *Duplex DuplexNoTumble *MediaType Transparency +*UIConstraints: *Duplex DuplexTumble *MediaType Transparency +*UIConstraints: *Duplex DuplexNoTumble *MediaType Labels +*UIConstraints: *Duplex DuplexTumble *MediaType Labels +*UIConstraints: *Duplex DuplexNoTumble *MediaType Cardstock105176 +*UIConstraints: *Duplex DuplexTumble *MediaType Cardstock105176 +*UIConstraints: *Duplex DuplexNoTumble *MediaType Heavy91105 +*UIConstraints: *Duplex DuplexTumble *MediaType Heavy91105 +*UIConstraints: *Duplex DuplexNoTumble *MediaType Envelope +*UIConstraints: *Duplex DuplexTumble *MediaType Envelope + + +*% Fills not allowed with overlays +*%------------------------------------------------------------ + +*%------------------------------------------------------------ + +*%================================================= +*% Paper Sizes +*%================================================= +*OpenUI *PageSize/Page Size: PickOne +*OrderDependency: 30 AnySetup *PageSize +*DefaultPageSize: A4 +*da.Translation PageSize/Page Size: "" +*de.Translation PageSize/Papierformat: "" +*es.Translation PageSize/Tamaño del papel: "" +*fi.Translation PageSize/Sivukoko: "" +*fr.Translation PageSize/Format de page: "" +*it.Translation PageSize/Dimensioni pagina: "" +*ja.Translation PageSize/ページサイズ: "" +*ko.Translation PageSize/용지 크기: "" +*nl.Translation PageSize/Papierformaat: "" +*nb.Translation PageSize/Papirformat: "" +*pt.Translation PageSize/Tamanho do papel: "" +*sv.Translation PageSize/Sidstorlek: "" +*zh_CN.Translation PageSize/页面大小: "" +*zh_TW.Translation PageSize/頁面尺寸: "" + +*PageSize Letter/Letter: " + <> setpagedevice" +*End +*da.PageSize Letter/Letter: "" +*de.PageSize Letter/Letter: "" +*es.PageSize Letter/Letter: "" +*fi.PageSize Letter/Letter: "" +*fr.PageSize Letter/Lettre: "" +*it.PageSize Letter/Letter: "" +*ja.PageSize Letter/レター: "" +*ko.PageSize Letter/레터: "" +*nl.PageSize Letter/Letter: "" +*nb.PageSize Letter/Letter: "" +*pt.PageSize Letter/Carta: "" +*sv.PageSize Letter/Letter: "" +*zh_CN.PageSize Letter/信纸: "" +*zh_TW.PageSize Letter/Letter: "" + +*PageSize LetterSmall/Letter (Small): " + <> setpagedevice" +*End +*da.PageSize LetterSmall/Letter (lille): "" +*de.PageSize LetterSmall/Letter (Klein): "" +*es.PageSize LetterSmall/Letter (pequeño): "" +*fi.PageSize LetterSmall/Letter (pieni): "" +*fr.PageSize LetterSmall/Lettre (petit): "" +*it.PageSize LetterSmall/Letter (ridotta): "" +*ja.PageSize LetterSmall/レター (小): "" +*ko.PageSize LetterSmall/레터 (소): "" +*nl.PageSize LetterSmall/Letter (klein): "" +*nb.PageSize LetterSmall/Letter (lite): "" +*pt.PageSize LetterSmall/Carta (pequeno): "" +*sv.PageSize LetterSmall/Letter (litet): "" +*zh_CN.PageSize LetterSmall/信纸 (小): "" +*zh_TW.PageSize LetterSmall/Letter (小): "" + +*PageSize Executive/Executive: " + <> setpagedevice" +*End +*da.PageSize Executive/Executive: "" +*de.PageSize Executive/Executive: "" +*es.PageSize Executive/Ejecutivo: "" +*fi.PageSize Executive/Executive: "" +*fr.PageSize Executive/Exécutif: "" +*it.PageSize Executive/Executive: "" +*ja.PageSize Executive/エグゼクティブ: "" +*ko.PageSize Executive/Executive: "" +*nl.PageSize Executive/Executive: "" +*nb.PageSize Executive/Executive: "" +*pt.PageSize Executive/Executivo: "" +*sv.PageSize Executive/Executive: "" +*zh_CN.PageSize Executive/Executive: "" +*zh_TW.PageSize Executive/Executive: "" + +*PageSize Legal/Legal: " + <> setpagedevice" +*End +*da.PageSize Legal/Legal: "" +*de.PageSize Legal/Legal: "" +*es.PageSize Legal/Legal: "" +*fi.PageSize Legal/Legal: "" +*fr.PageSize Legal/Légal: "" +*it.PageSize Legal/Legal: "" +*ja.PageSize Legal/リーガル: "" +*ko.PageSize Legal/리갈: "" +*nl.PageSize Legal/Legal: "" +*nb.PageSize Legal/Legal: "" +*pt.PageSize Legal/Legal: "" +*sv.PageSize Legal/Legal: "" +*zh_CN.PageSize Legal/Legal: "" +*zh_TW.PageSize Legal/Legal: "" + +*PageSize LegalSmall/Legal (Small): " + <> setpagedevice" +*End +*da.PageSize LegalSmall/Legal (lille): "" +*de.PageSize LegalSmall/Legal (Klein): "" +*es.PageSize LegalSmall/Legal (pequeño): "" +*fi.PageSize LegalSmall/Legal (pieni): "" +*fr.PageSize LegalSmall/Légal (petit): "" +*it.PageSize LegalSmall/Legal (ridotto): "" +*ja.PageSize LegalSmall/リーガル (小): "" +*ko.PageSize LegalSmall/리갈 (소): "" +*nl.PageSize LegalSmall/Legal (klein): "" +*nb.PageSize LegalSmall/Legal (lite): "" +*pt.PageSize LegalSmall/Legal (pequeno): "" +*sv.PageSize LegalSmall/Legal (litet): "" +*zh_CN.PageSize LegalSmall/Legal (小): "" +*zh_TW.PageSize LegalSmall/Legal (小): "" + +*PageSize A4/A4: " + <> setpagedevice" +*End +*da.PageSize A4/A4: "" +*de.PageSize A4/A4: "" +*es.PageSize A4/A4: "" +*fi.PageSize A4/A4: "" +*fr.PageSize A4/A4: "" +*it.PageSize A4/A4: "" +*ja.PageSize A4/A4: "" +*ko.PageSize A4/A4: "" +*nl.PageSize A4/A4: "" +*nb.PageSize A4/A4: "" +*pt.PageSize A4/A4: "" +*sv.PageSize A4/A4: "" +*zh_CN.PageSize A4/A4: "" +*zh_TW.PageSize A4/A4: "" + +*PageSize A4Small/A4 (Small): " + <> setpagedevice" +*End +*da.PageSize A4Small/A4 (lille): "" +*de.PageSize A4Small/A4 (Klein): "" +*es.PageSize A4Small/A4 (pequeño): "" +*fi.PageSize A4Small/A4 (pieni): "" +*fr.PageSize A4Small/A4 (petit): "" +*it.PageSize A4Small/A4 (ridotta): "" +*ja.PageSize A4Small/A4 (小): "" +*ko.PageSize A4Small/A4 (소): "" +*nl.PageSize A4Small/A4 (klein): "" +*nb.PageSize A4Small/A4 (lite): "" +*pt.PageSize A4Small/A4 (pequeno): "" +*sv.PageSize A4Small/A4 (litet): "" +*zh_CN.PageSize A4Small/A4 (小): "" +*zh_TW.PageSize A4Small/A4 (小): "" + +*PageSize A5/A5: " + <> setpagedevice" +*End +*da.PageSize A5/A5: "" +*de.PageSize A5/A5: "" +*es.PageSize A5/A5: "" +*fi.PageSize A5/A5: "" +*fr.PageSize A5/A5: "" +*it.PageSize A5/A5: "" +*ja.PageSize A5/A5: "" +*ko.PageSize A5/A5: "" +*nl.PageSize A5/A5: "" +*nb.PageSize A5/A5: "" +*pt.PageSize A5/A5: "" +*sv.PageSize A5/A5: "" +*zh_CN.PageSize A5/A5: "" +*zh_TW.PageSize A5/A5: "" + +*PageSize A6/A6: " + <> setpagedevice" +*End +*da.PageSize A6/A6: "" +*de.PageSize A6/A6: "" +*es.PageSize A6/A6: "" +*fi.PageSize A6/A6: "" +*fr.PageSize A6/A6: "" +*it.PageSize A6/A6: "" +*ja.PageSize A6/A6: "" +*ko.PageSize A6/A6: "" +*nl.PageSize A6/A6: "" +*nb.PageSize A6/A6: "" +*pt.PageSize A6/A6: "" +*sv.PageSize A6/A6: "" +*zh_CN.PageSize A6/A6: "" +*zh_TW.PageSize A6/A6: "" + +*PageSize B6/JIS B6: " + <> setpagedevice" +*End +*da.PageSize B6/JIS B6: "" +*de.PageSize B6/B6 (JIS): "" +*es.PageSize B6/JIS B6: "" +*fi.PageSize B6/JIS B6: "" +*fr.PageSize B6/JIS B6: "" +*it.PageSize B6/JIS B6: "" +*ja.PageSize B6/B6 (JIS): "" +*ko.PageSize B6/JIS B6: "" +*nl.PageSize B6/JIS B6: "" +*nb.PageSize B6/JIS B6: "" +*pt.PageSize B6/B6 JIS: "" +*sv.PageSize B6/JIS B6: "" +*zh_CN.PageSize B6/JIS B6: "" +*zh_TW.PageSize B6/JIS B6: "" + +*PageSize ISOB5/B5 (ISO): " + <> setpagedevice" +*End +*da.PageSize ISOB5/B5 (ISO): "" +*de.PageSize ISOB5/B5 (ISO): "" +*es.PageSize ISOB5/B5 (ISO): "" +*fi.PageSize ISOB5/B5 (ISO): "" +*fr.PageSize ISOB5/B5 (ISO): "" +*it.PageSize ISOB5/B5 (ISO): "" +*ja.PageSize ISOB5/B5 (ISO): "" +*ko.PageSize ISOB5/B5 (ISO): "" +*nl.PageSize ISOB5/B5 (ISO): "" +*nb.PageSize ISOB5/B5 (ISO): "" +*pt.PageSize ISOB5/B5 (ISO): "" +*sv.PageSize ISOB5/B5 (ISO): "" +*zh_CN.PageSize ISOB5/B5 (ISO): "" +*zh_TW.PageSize ISOB5/B5 (ISO): "" + +*PageSize B5/JIS B5: " + <> setpagedevice" +*End +*da.PageSize B5/JIS B5: "" +*de.PageSize B5/B5 (JIS): "" +*es.PageSize B5/JIS B5: "" +*fi.PageSize B5/JIS B5: "" +*fr.PageSize B5/JIS B5: "" +*it.PageSize B5/JIS B5: "" +*ja.PageSize B5/B5 (JIS): "" +*ko.PageSize B5/JIS B5: "" +*nl.PageSize B5/JIS B5: "" +*nb.PageSize B5/JIS B5: "" +*pt.PageSize B5/B5 JIS: "" +*sv.PageSize B5/JIS B5: "" +*zh_CN.PageSize B5/JIS B5: "" +*zh_TW.PageSize B5/JIS B5: "" + +*PageSize Postcard/Postcard (JIS): " + <> setpagedevice" +*End +*da.PageSize Postcard/Postkort (JIS): "" +*de.PageSize Postcard/Postkarte (JIS): "" +*es.PageSize Postcard/Tarjeta postal (JIS): "" +*fi.PageSize Postcard/Postikortti (JIS): "" +*fr.PageSize Postcard/Carte postale (JIS): "" +*it.PageSize Postcard/Cartolina (JIS): "" +*ja.PageSize Postcard/はがき (JIS): "" +*ko.PageSize Postcard/우편엽서 (JIS): "" +*nl.PageSize Postcard/Briefkaart (JIS): "" +*nb.PageSize Postcard/Postkort (JIS): "" +*pt.PageSize Postcard/Postal (JIS): "" +*sv.PageSize Postcard/Brevkort (JIS): "" +*zh_CN.PageSize Postcard/明信片 (JIS): "" +*zh_TW.PageSize Postcard/明信片(JIS): "" + +*PageSize DoublePostcard/Double Postcard (JIS): " + <> setpagedevice" +*End +*da.PageSize DoublePostcard/Dobbelt postkort (JIS): "" +*de.PageSize DoublePostcard/Doppelte Postkarte (JIS): "" +*es.PageSize DoublePostcard/Tarjeta postal doble (JIS): "" +*fi.PageSize DoublePostcard/Kaksinkert. postikortti (JIS): "" +*fr.PageSize DoublePostcard/Carte postale double (JIS): "" +*it.PageSize DoublePostcard/Cartolina doppia (JIS): "" +*ja.PageSize DoublePostcard/往復はがき (JIS): "" +*ko.PageSize DoublePostcard/양면 엽서 (JIS): "" +*nl.PageSize DoublePostcard/Dubbele briefkaart (JIS): "" +*nb.PageSize DoublePostcard/Dobbelt postkort (JIS): "" +*pt.PageSize DoublePostcard/Postal duplo (JIS): "" +*sv.PageSize DoublePostcard/Dubbelt brevkort (JIS): "" +*zh_CN.PageSize DoublePostcard/大号明信片 (JIS): "" +*zh_TW.PageSize DoublePostcard/雙面明信片 (JIS): "" + +*PageSize w558h774/16K: " + <> setpagedevice" +*End +*da.PageSize w558h774/16K: "" +*de.PageSize w558h774/16K: "" +*es.PageSize w558h774/16K: "" +*fi.PageSize w558h774/16K: "" +*fr.PageSize w558h774/16K: "" +*it.PageSize w558h774/16K: "" +*ja.PageSize w558h774/16K: "" +*ko.PageSize w558h774/16K: "" +*nl.PageSize w558h774/16K: "" +*nb.PageSize w558h774/16K: "" +*pt.PageSize w558h774/16K: "" +*sv.PageSize w558h774/16K: "" +*zh_CN.PageSize w558h774/16K: "" +*zh_TW.PageSize w558h774/16K: "" + +*PageSize Env10/Env Comm10: " + <> setpagedevice" +*End +*da.PageSize Env10/Konv Comm10: "" +*de.PageSize Env10/Umschlag Comm10: "" +*es.PageSize Env10/Sobre Comm10: "" +*fi.PageSize Env10/Kirjekuori Comm10: "" +*fr.PageSize Env10/Enveloppe Comm10: "" +*it.PageSize Env10/Busta Comm10: "" +*ja.PageSize Env10/封筒 Comm10: "" +*ko.PageSize Env10/Comm10 봉투: "" +*nl.PageSize Env10/Comm10-envelop: "" +*nb.PageSize Env10/Comm10-konvolutt: "" +*pt.PageSize Env10/Envelope Comm10: "" +*sv.PageSize Env10/Comm10-kuvert: "" +*zh_CN.PageSize Env10/信封 Comm10: "" +*zh_TW.PageSize Env10/Comm10 信封: "" + +*PageSize EnvMonarch/Env Monarch: " + <> setpagedevice" +*End +*da.PageSize EnvMonarch/Konv Monarch: "" +*de.PageSize EnvMonarch/Umschlag Monarch: "" +*es.PageSize EnvMonarch/Sobre Monarch: "" +*fi.PageSize EnvMonarch/Kirjekuori Monarch: "" +*fr.PageSize EnvMonarch/Enveloppe Monarch: "" +*it.PageSize EnvMonarch/Busta Monarch: "" +*ja.PageSize EnvMonarch/封筒 Monarch: "" +*ko.PageSize EnvMonarch/Monarch 봉투: "" +*nl.PageSize EnvMonarch/Monarch-envelop: "" +*nb.PageSize EnvMonarch/Monarch-konvolutt: "" +*pt.PageSize EnvMonarch/Envelope Monarch: "" +*sv.PageSize EnvMonarch/Monarch-kuvert: "" +*zh_CN.PageSize EnvMonarch/信封 Monarch: "" +*zh_TW.PageSize EnvMonarch/Monarch 信封: "" + +*PageSize EnvDL/Env DL: " + <> setpagedevice" +*End +*da.PageSize EnvDL/Konv DL: "" +*de.PageSize EnvDL/Umschlag DL: "" +*es.PageSize EnvDL/Sobre DL: "" +*fi.PageSize EnvDL/Kirjekuori DL: "" +*fr.PageSize EnvDL/Enveloppe DL: "" +*it.PageSize EnvDL/Busta DL: "" +*ja.PageSize EnvDL/封筒 DL: "" +*ko.PageSize EnvDL/DL 봉투: "" +*nl.PageSize EnvDL/DL-envelop: "" +*nb.PageSize EnvDL/DL-konvolutt: "" +*pt.PageSize EnvDL/Envelope DL: "" +*sv.PageSize EnvDL/DL-kuvert: "" +*zh_CN.PageSize EnvDL/信封 DL: "" +*zh_TW.PageSize EnvDL/DL 信封: "" + +*PageSize EnvC5/Env C5: " + <> setpagedevice" +*End +*da.PageSize EnvC5/Konv C5: "" +*de.PageSize EnvC5/Umschlag C5: "" +*es.PageSize EnvC5/Sobre C5: "" +*fi.PageSize EnvC5/Kirjekuori C5: "" +*fr.PageSize EnvC5/Enveloppe C5: "" +*it.PageSize EnvC5/Busta C5: "" +*ja.PageSize EnvC5/封筒 C5: "" +*ko.PageSize EnvC5/C5 봉투: "" +*nl.PageSize EnvC5/C5-envelop: "" +*nb.PageSize EnvC5/C5-konvolutt: "" +*pt.PageSize EnvC5/Envelope C5: "" +*sv.PageSize EnvC5/C5-kuvert: "" +*zh_CN.PageSize EnvC5/信封 C5: "" +*zh_TW.PageSize EnvC5/C5 信封: "" + +*PageSize EnvISOB5/Env ISO B5: " + <> setpagedevice" +*End +*da.PageSize EnvISOB5/Konv ISO B5: "" +*de.PageSize EnvISOB5/Umschlag ISO B5: "" +*es.PageSize EnvISOB5/Sobre ISO B5: "" +*fi.PageSize EnvISOB5/Kirjekuori ISO B5: "" +*fr.PageSize EnvISOB5/Enveloppe ISO B5: "" +*it.PageSize EnvISOB5/Busta B5: "" +*ja.PageSize EnvISOB5/封筒 ISO B5: "" +*ko.PageSize EnvISOB5/ISO B5 봉투: "" +*nl.PageSize EnvISOB5/ISO B5-envelop: "" +*nb.PageSize EnvISOB5/B5-konvolutt: "" +*pt.PageSize EnvISOB5/Envelope B5: "" +*sv.PageSize EnvISOB5/ISO B5-kuvert: "" +*zh_CN.PageSize EnvISOB5/信封 ISO B5: "" +*zh_TW.PageSize EnvISOB5/ISO B5 信封: "" + +*?PageSize: " + save + currentpagedevice /PageSize get aload pop + 2 copy gt {exch} if + (Unknown) + 16 dict + dup [612 792] (Letter) put + dup [522 756] (Executive) put + dup [612 1008] (Legal) put + dup [595 842] (A4) put + dup [420 595] (A5) put + dup [297 420] (A6) put + dup [499 709] (ISOB5) put + dup [516 729] (B5) put + dup [284 419] (Postcard) put + dup [419.5 567] (DoublePostcard) put + dup [558 774] (w558h774) put + dup [297 684] (Env10) put + dup [279 540] (EnvMonarch) put + dup [312 624] (EnvDL) put + dup [459 649] (EnvC5) put + dup [499 709] (EnvISOB5) put + { exch aload pop 4 index sub abs 5 le exch + 5 index sub abs 5 le and + {exch pop exit} {pop} ifelse + } bind forall + = flush pop pop + restore +" +*End +*CloseUI: *PageSize + +*OpenUI *PageRegion/Page Region: PickOne +*OrderDependency: 40 AnySetup *PageRegion +*DefaultPageRegion: A4 +*da.Translation PageRegion/Page Region: "" +*de.Translation PageRegion/Seitenbereich: "" +*es.Translation PageRegion/Dimensión de papel: "" +*fi.Translation PageRegion/Sivuseutu: "" +*fr.Translation PageRegion/Région de page: "" +*it.Translation PageRegion/Dimensioni regione: "" +*ja.Translation PageRegion/Page Region: "" +*ko.Translation PageRegion/Page Region: "" +*nl.Translation PageRegion/Page Region: "" +*nb.Translation PageRegion/Page Region: "" +*pt.Translation PageRegion/Região do papel: "" +*sv.Translation PageRegion/Page Region: "" +*zh_CN.Translation PageRegion/Page Region: "" +*zh_TW.Translation PageRegion/Page Region: "" + +*PageRegion Letter/Letter: " + <> setpagedevice" +*End +*da.PageRegion Letter/Letter: "" +*de.PageRegion Letter/Letter: "" +*es.PageRegion Letter/Letter: "" +*fi.PageRegion Letter/Letter: "" +*fr.PageRegion Letter/Lettre: "" +*it.PageRegion Letter/Letter: "" +*ja.PageRegion Letter/レター: "" +*ko.PageRegion Letter/레터: "" +*nl.PageRegion Letter/Letter: "" +*nb.PageRegion Letter/Letter: "" +*pt.PageRegion Letter/Carta: "" +*sv.PageRegion Letter/Letter: "" +*zh_CN.PageRegion Letter/信纸: "" +*zh_TW.PageRegion Letter/Letter: "" + +*PageRegion LetterSmall/Letter (Small): " + <> setpagedevice" +*End +*da.PageRegion LetterSmall/Letter (lille): "" +*de.PageRegion LetterSmall/Letter (Klein): "" +*es.PageRegion LetterSmall/Letter (pequeño): "" +*fi.PageRegion LetterSmall/Letter (pieni): "" +*fr.PageRegion LetterSmall/Lettre (petit): "" +*it.PageRegion LetterSmall/Letter (ridotta): "" +*ja.PageRegion LetterSmall/レター (小): "" +*ko.PageRegion LetterSmall/레터 (소): "" +*nl.PageRegion LetterSmall/Letter (klein): "" +*nb.PageRegion LetterSmall/Letter (lite): "" +*pt.PageRegion LetterSmall/Carta (pequeno): "" +*sv.PageRegion LetterSmall/Letter (litet): "" +*zh_CN.PageRegion LetterSmall/信纸 (小): "" +*zh_TW.PageRegion LetterSmall/Letter (小): "" + +*PageRegion Executive/Executive: " + <> setpagedevice" +*End +*da.PageRegion Executive/Executive: "" +*de.PageRegion Executive/Executive: "" +*es.PageRegion Executive/Ejecutivo: "" +*fi.PageRegion Executive/Executive: "" +*fr.PageRegion Executive/Exécutif: "" +*it.PageRegion Executive/Executive: "" +*ja.PageRegion Executive/エグゼクティブ: "" +*ko.PageRegion Executive/Executive: "" +*nl.PageRegion Executive/Executive: "" +*nb.PageRegion Executive/Executive: "" +*pt.PageRegion Executive/Executivo: "" +*sv.PageRegion Executive/Executive: "" +*zh_CN.PageRegion Executive/Executive: "" +*zh_TW.PageRegion Executive/Executive: "" + +*PageRegion Legal/Legal: " + <> setpagedevice" +*End +*da.PageRegion Legal/Legal: "" +*de.PageRegion Legal/Legal: "" +*es.PageRegion Legal/Legal: "" +*fi.PageRegion Legal/Legal: "" +*fr.PageRegion Legal/Légal: "" +*it.PageRegion Legal/Legal: "" +*ja.PageRegion Legal/リーガル: "" +*ko.PageRegion Legal/리갈: "" +*nl.PageRegion Legal/Legal: "" +*nb.PageRegion Legal/Legal: "" +*pt.PageRegion Legal/Legal: "" +*sv.PageRegion Legal/Legal: "" +*zh_CN.PageRegion Legal/Legal: "" +*zh_TW.PageRegion Legal/Legal: "" + +*PageRegion LegalSmall/Legal (Small): " + <> setpagedevice" +*End +*da.PageRegion LegalSmall/Legal (lille): "" +*de.PageRegion LegalSmall/Legal (Klein): "" +*es.PageRegion LegalSmall/Legal (pequeño): "" +*fi.PageRegion LegalSmall/Legal (pieni): "" +*fr.PageRegion LegalSmall/Légal (petit): "" +*it.PageRegion LegalSmall/Legal (ridotto): "" +*ja.PageRegion LegalSmall/リーガル (小): "" +*ko.PageRegion LegalSmall/리갈 (소): "" +*nl.PageRegion LegalSmall/Legal (klein): "" +*nb.PageRegion LegalSmall/Legal (lite): "" +*pt.PageRegion LegalSmall/Legal (pequeno): "" +*sv.PageRegion LegalSmall/Legal (litet): "" +*zh_CN.PageRegion LegalSmall/Legal (小): "" +*zh_TW.PageRegion LegalSmall/Legal (小): "" + +*PageRegion A4/A4: " + <> setpagedevice" +*End +*da.PageRegion A4/A4: "" +*de.PageRegion A4/A4: "" +*es.PageRegion A4/A4: "" +*fi.PageRegion A4/A4: "" +*fr.PageRegion A4/A4: "" +*it.PageRegion A4/A4: "" +*ja.PageRegion A4/A4: "" +*ko.PageRegion A4/A4: "" +*nl.PageRegion A4/A4: "" +*nb.PageRegion A4/A4: "" +*pt.PageRegion A4/A4: "" +*sv.PageRegion A4/A4: "" +*zh_CN.PageRegion A4/A4: "" +*zh_TW.PageRegion A4/A4: "" + +*PageRegion A4Small/A4 (Small): " + <> setpagedevice" +*End +*da.PageRegion A4Small/A4 (lille): "" +*de.PageRegion A4Small/A4 (Klein): "" +*es.PageRegion A4Small/A4 (pequeño): "" +*fi.PageRegion A4Small/A4 (pieni): "" +*fr.PageRegion A4Small/A4 (petit): "" +*it.PageRegion A4Small/A4 (ridotta): "" +*ja.PageRegion A4Small/A4 (小): "" +*ko.PageRegion A4Small/A4 (소): "" +*nl.PageRegion A4Small/A4 (klein): "" +*nb.PageRegion A4Small/A4 (lite): "" +*pt.PageRegion A4Small/A4 (pequeno): "" +*sv.PageRegion A4Small/A4 (litet): "" +*zh_CN.PageRegion A4Small/A4 (小): "" +*zh_TW.PageRegion A4Small/A4 (小): "" + +*PageRegion A5/A5: " + <> setpagedevice" +*End +*da.PageRegion A5/A5: "" +*de.PageRegion A5/A5: "" +*es.PageRegion A5/A5: "" +*fi.PageRegion A5/A5: "" +*fr.PageRegion A5/A5: "" +*it.PageRegion A5/A5: "" +*ja.PageRegion A5/A5: "" +*ko.PageRegion A5/A5: "" +*nl.PageRegion A5/A5: "" +*nb.PageRegion A5/A5: "" +*pt.PageRegion A5/A5: "" +*sv.PageRegion A5/A5: "" +*zh_CN.PageRegion A5/A5: "" +*zh_TW.PageRegion A5/A5: "" + +*PageRegion A6/A6: " + <> setpagedevice" +*End +*da.PageRegion A6/A6: "" +*de.PageRegion A6/A6 Card: "" +*es.PageRegion A6/A6: "" +*fi.PageRegion A6/A6: "" +*fr.PageRegion A6/A6 Card: "" +*it.PageRegion A6/A6 Card: "" +*ja.PageRegion A6/A6: "" +*ko.PageRegion A6/A6: "" +*nl.PageRegion A6/A6: "" +*nb.PageRegion A6/A6: "" +*pt.PageRegion A6/A6: "" +*sv.PageRegion A6/A6: "" +*zh_CN.PageRegion A6/A6: "" +*zh_TW.PageRegion A6/A6: "" + +*PageRegion B6/JIS B6: " + <> setpagedevice" +*End +*da.PageRegion B6/JIS B6: "" +*de.PageRegion B6/B6 (JIS): "" +*es.PageRegion B6/JIS B6: "" +*fi.PageRegion B6/JIS B6: "" +*fr.PageRegion B6/JIS B6: "" +*it.PageRegion B6/JIS B6: "" +*ja.PageRegion B6/B6 (JIS): "" +*ko.PageRegion B6/JIS B6: "" +*nl.PageRegion B6/JIS B6: "" +*nb.PageRegion B6/JIS B6: "" +*pt.PageRegion B6/B6 JIS: "" +*sv.PageRegion B6/JIS B6: "" +*zh_CN.PageRegion B6/JIS B6: "" +*zh_TW.PageRegion B6/JIS B6: "" + +*PageRegion ISOB5/B5 (ISO): " + <> setpagedevice" +*End +*da.PageRegion ISOB5/B5 (ISO): "" +*de.PageRegion ISOB5/B5 (ISO): "" +*es.PageRegion ISOB5/B5 (ISO): "" +*fi.PageRegion ISOB5/B5 (ISO): "" +*fr.PageRegion ISOB5/B5 (ISO): "" +*it.PageRegion ISOB5/B5 (ISO): "" +*ja.PageRegion ISOB5/B5 (ISO): "" +*ko.PageRegion ISOB5/B5 (ISO): "" +*nl.PageRegion ISOB5/B5 (ISO): "" +*nb.PageRegion ISOB5/B5 (ISO): "" +*pt.PageRegion ISOB5/B5 (ISO): "" +*sv.PageRegion ISOB5/B5 (ISO): "" +*zh_CN.PageRegion ISOB5/B5 (ISO): "" +*zh_TW.PageRegion ISOB5/B5 (ISO): "" + +*PageRegion B5/JIS B5: " + <> setpagedevice" +*End +*da.PageRegion B5/JIS B5: "" +*de.PageRegion B5/B5 (JIS): "" +*es.PageRegion B5/JIS B5: "" +*fi.PageRegion B5/JIS B5: "" +*fr.PageRegion B5/JIS B5: "" +*it.PageRegion B5/JIS B5: "" +*ja.PageRegion B5/B5 (JIS): "" +*ko.PageRegion B5/JIS B5: "" +*nl.PageRegion B5/JIS B5: "" +*nb.PageRegion B5/JIS B5: "" +*pt.PageRegion B5/B5 JIS: "" +*sv.PageRegion B5/JIS B5: "" +*zh_CN.PageRegion B5/JIS B5: "" +*zh_TW.PageRegion B5/JIS B5: "" + +*PageRegion Postcard/Postcard (JIS): " + <> setpagedevice" +*End +*da.PageRegion Postcard/Postkort (JIS): "" +*de.PageRegion Postcard/Postkarte (JIS): "" +*es.PageRegion Postcard/Tarjeta postal (JIS): "" +*fi.PageRegion Postcard/Postikortti (JIS): "" +*fr.PageRegion Postcard/Carte postale (JIS): "" +*it.PageRegion Postcard/Cartolina (JIS): "" +*ja.PageRegion Postcard/はがき (JIS): "" +*ko.PageRegion Postcard/우편엽서 (JIS): "" +*nl.PageRegion Postcard/Briefkaart (JIS): "" +*nb.PageRegion Postcard/Postkort (JIS): "" +*pt.PageRegion Postcard/Postal (JIS): "" +*sv.PageRegion Postcard/Brevkort (JIS): "" +*zh_CN.PageRegion Postcard/明信片 (JIS): "" +*zh_TW.PageRegion Postcard/明信片(JIS): "" + +*PageRegion DoublePostcard/Double Postcard (JIS): " + <> setpagedevice" +*End +*da.PageRegion DoublePostcard/Dobbelt postkort (JIS): "" +*de.PageRegion DoublePostcard/Doppelte Postkarte (JIS): "" +*es.PageRegion DoublePostcard/Tarjeta postal doble (JIS): "" +*fi.PageRegion DoublePostcard/Kaksinkert. postikortti (JIS): "" +*fr.PageRegion DoublePostcard/Carte postale double (JIS): "" +*it.PageRegion DoublePostcard/Cartolina doppia (JIS): "" +*ja.PageRegion DoublePostcard/往復はがき (JIS): "" +*ko.PageRegion DoublePostcard/양면 엽서 (JIS): "" +*nl.PageRegion DoublePostcard/Dubbele briefkaart (JIS): "" +*nb.PageRegion DoublePostcard/Dobbelt postkort (JIS): "" +*pt.PageRegion DoublePostcard/Postal duplo (JIS): "" +*sv.PageRegion DoublePostcard/Dubbelt brevkort (JIS): "" +*zh_CN.PageRegion DoublePostcard/大号明信片 (JIS): "" +*zh_TW.PageRegion DoublePostcard/雙面明信片 (JIS): "" + +*PageRegion w558h774/16K: " + <> setpagedevice" +*End +*da.PageRegion w558h774/16K: "" +*de.PageRegion w558h774/16K: "" +*es.PageRegion w558h774/16K: "" +*fi.PageRegion w558h774/16K: "" +*fr.PageRegion w558h774/16K: "" +*it.PageRegion w558h774/16K: "" +*ja.PageRegion w558h774/16K: "" +*ko.PageRegion w558h774/16K: "" +*nl.PageRegion w558h774/16K: "" +*nb.PageRegion w558h774/16K: "" +*pt.PageRegion w558h774/16K: "" +*sv.PageRegion w558h774/16K: "" +*zh_CN.PageRegion w558h774/16K: "" +*zh_TW.PageRegion w558h774/16K: "" + +*PageRegion Env10/Env Comm10: " + <> setpagedevice" +*End +*da.PageRegion Env10/Konv Comm10: "" +*de.PageRegion Env10/Umschlag Comm10: "" +*es.PageRegion Env10/Sobre Comm10: "" +*fi.PageRegion Env10/Kirjekuori Comm10: "" +*fr.PageRegion Env10/Enveloppe Comm10: "" +*it.PageRegion Env10/Busta Comm10: "" +*ja.PageRegion Env10/封筒 Comm10: "" +*ko.PageRegion Env10/Comm10 봉투: "" +*nl.PageRegion Env10/Comm10-envelop: "" +*nb.PageRegion Env10/Comm10-konvolutt: "" +*pt.PageRegion Env10/Envelope Comm10: "" +*sv.PageRegion Env10/Comm10-kuvert: "" +*zh_CN.PageRegion Env10/信封 Comm10: "" +*zh_TW.PageRegion Env10/Comm10 信封: "" + +*PageRegion EnvMonarch/Env Monarch: " + <> setpagedevice" +*End +*da.PageRegion EnvMonarch/Konv Monarch: "" +*de.PageRegion EnvMonarch/Umschlag Monarch: "" +*es.PageRegion EnvMonarch/Sobre Monarch: "" +*fi.PageRegion EnvMonarch/Kirjekuori Monarch: "" +*fr.PageRegion EnvMonarch/Enveloppe Monarch: "" +*it.PageRegion EnvMonarch/Busta Monarch: "" +*ja.PageRegion EnvMonarch/封筒 Monarch: "" +*ko.PageRegion EnvMonarch/Monarch 봉투: "" +*nl.PageRegion EnvMonarch/Monarch-envelop: "" +*nb.PageRegion EnvMonarch/Monarch-konvolutt: "" +*pt.PageRegion EnvMonarch/Envelope Monarch: "" +*sv.PageRegion EnvMonarch/Monarch-kuvert: "" +*zh_CN.PageRegion EnvMonarch/信封 Monarch: "" +*zh_TW.PageRegion EnvMonarch/Monarch 信封: "" + +*PageRegion EnvDL/Env DL: " + <> setpagedevice" +*End +*da.PageRegion EnvDL/Konv DL: "" +*de.PageRegion EnvDL/Umschlag DL: "" +*es.PageRegion EnvDL/Sobre DL: "" +*fi.PageRegion EnvDL/Kirjekuori DL: "" +*fr.PageRegion EnvDL/Enveloppe DL: "" +*it.PageRegion EnvDL/Busta DL: "" +*ja.PageRegion EnvDL/封筒 DL: "" +*ko.PageRegion EnvDL/DL 봉투: "" +*nl.PageRegion EnvDL/DL-envelop: "" +*nb.PageRegion EnvDL/DL-konvolutt: "" +*pt.PageRegion EnvDL/Envelope DL: "" +*sv.PageRegion EnvDL/DL-kuvert: "" +*zh_CN.PageRegion EnvDL/信封 DL: "" +*zh_TW.PageRegion EnvDL/DL 信封: "" + +*PageRegion EnvC5/Env C5: " + <> setpagedevice" +*End +*da.PageRegion EnvC5/Konv C5: "" +*de.PageRegion EnvC5/Umschlag C5: "" +*es.PageRegion EnvC5/Sobre C5: "" +*fi.PageRegion EnvC5/Kirjekuori C5: "" +*fr.PageRegion EnvC5/Enveloppe C5: "" +*it.PageRegion EnvC5/Busta C5: "" +*ja.PageRegion EnvC5/封筒 C5: "" +*ko.PageRegion EnvC5/C5 봉투: "" +*nl.PageRegion EnvC5/C5-envelop: "" +*nb.PageRegion EnvC5/C5-konvolutt: "" +*pt.PageRegion EnvC5/Envelope C5: "" +*sv.PageRegion EnvC5/C5-kuvert: "" +*zh_CN.PageRegion EnvC5/信封 C5: "" +*zh_TW.PageRegion EnvC5/C5 信封: "" + +*PageRegion EnvISOB5/Env ISO B5: " + <> setpagedevice" +*End +*da.PageRegion EnvISOB5/Konv ISO B5: "" +*de.PageRegion EnvISOB5/Umschlag ISO B5: "" +*es.PageRegion EnvISOB5/Sobre ISO B5: "" +*fi.PageRegion EnvISOB5/Kirjekuori ISO B5: "" +*fr.PageRegion EnvISOB5/Enveloppe ISO B5: "" +*it.PageRegion EnvISOB5/Busta ISO B5: "" +*ja.PageRegion EnvISOB5/封筒 B5 (ISO): "" +*ko.PageRegion EnvISOB5/ISO B5 봉투: "" +*nl.PageRegion EnvISOB5/ISO B5-envelop: "" +*nb.PageRegion EnvISOB5/B5-konvolutt: "" +*pt.PageRegion EnvISOB5/Envelope B5: "" +*sv.PageRegion EnvISOB5/ISO B5-kuvert: "" +*zh_CN.PageRegion EnvISOB5/信封 ISO B5: "" +*zh_TW.PageRegion EnvISOB5/ISO B5 信封: "" + +*CloseUI: *PageRegion + +*DefaultImageableArea: A4 +*ImageableArea Letter/Letter: "12.00 12.00 599.76 779.76" +*da.ImageableArea Letter/Letter: "" +*de.ImageableArea Letter/Letter: "" +*es.ImageableArea Letter/Letter: "" +*fi.ImageableArea Letter/Letter: "" +*fr.ImageableArea Letter/Lettre: "" +*it.ImageableArea Letter/Letter: "" +*ja.ImageableArea Letter/レター: "" +*ko.ImageableArea Letter/레터: "" +*nl.ImageableArea Letter/Letter: "" +*nb.ImageableArea Letter/Letter: "" +*pt.ImageableArea Letter/Carta: "" +*sv.ImageableArea Letter/Letter: "" +*zh_CN.ImageableArea Letter/信纸: "" +*zh_TW.ImageableArea Letter/Letter: "" + +*ImageableArea LetterSmall/Letter (Small): "30.00 31.00 582.00 761.00" +*da.ImageableArea LetterSmall/Letter (lille): "" +*de.ImageableArea LetterSmall/Letter (Klein): "" +*es.ImageableArea LetterSmall/Letter (pequeño): "" +*fi.ImageableArea LetterSmall/Letter (pieni): "" +*fr.ImageableArea LetterSmall/Lettre (petit): "" +*it.ImageableArea LetterSmall/Letter (ridotta): "" +*ja.ImageableArea LetterSmall/レター (小): "" +*ko.ImageableArea LetterSmall/레터 (소): "" +*nl.ImageableArea LetterSmall/Letter (klein): "" +*nb.ImageableArea LetterSmall/Letter (lite): "" +*pt.ImageableArea LetterSmall/Carta (pequeno): "" +*sv.ImageableArea LetterSmall/Letter (litet): "" +*zh_CN.ImageableArea LetterSmall/信纸 (小): "" +*zh_TW.ImageableArea LetterSmall/Letter (小): "" + +*ImageableArea Executive/Executive: "12.00 12.00 509.76 743.76" +*da.ImageableArea Executive/Executive: "" +*de.ImageableArea Executive/Executive: "" +*es.ImageableArea Executive/Ejecutivo: "" +*fi.ImageableArea Executive/Executive: "" +*fr.ImageableArea Executive/Exécutif: "" +*it.ImageableArea Executive/Executive: "" +*ja.ImageableArea Executive/エグゼクティブ: "" +*ko.ImageableArea Executive/Executive: "" +*nl.ImageableArea Executive/Executive: "" +*nb.ImageableArea Executive/Executive: "" +*pt.ImageableArea Executive/Executivo: "" +*sv.ImageableArea Executive/Executive: "" +*zh_CN.ImageableArea Executive/Executive: "" +*zh_TW.ImageableArea Executive/Executive: "" + +*ImageableArea Legal/Legal: "12.00 12.00 599.76 995.76" +*da.ImageableArea Legal/Legal: "" +*de.ImageableArea Legal/Legal: "" +*es.ImageableArea Legal/Legal: "" +*fi.ImageableArea Legal/Legal: "" +*fr.ImageableArea Legal/Légal: "" +*it.ImageableArea Legal/Legal: "" +*ja.ImageableArea Legal/リーガル: "" +*ko.ImageableArea Legal/리갈: "" +*nl.ImageableArea Legal/Legal: "" +*nb.ImageableArea Legal/Legal: "" +*pt.ImageableArea Legal/Legal: "" +*sv.ImageableArea Legal/Legal: "" +*zh_CN.ImageableArea Legal/Legal: "" +*zh_TW.ImageableArea Legal/Legal: "" + +*ImageableArea LegalSmall/Legal (Small): "64.00 54.00 548.00 954.00" +*da.ImageableArea LegalSmall/Legal (lille): "" +*de.ImageableArea LegalSmall/Legal (Klein): "" +*es.ImageableArea LegalSmall/Legal (pequeño): "" +*fi.ImageableArea LegalSmall/Legal (pieni): "" +*fr.ImageableArea LegalSmall/Légal (petit): "" +*it.ImageableArea LegalSmall/Legal (ridotto): "" +*ja.ImageableArea LegalSmall/リーガル (小): "" +*ko.ImageableArea LegalSmall/리갈 (소): "" +*nl.ImageableArea LegalSmall/Legal (klein): "" +*nb.ImageableArea LegalSmall/Legal (lite): "" +*pt.ImageableArea LegalSmall/Legal (pequeno): "" +*sv.ImageableArea LegalSmall/Legal (litet): "" +*zh_CN.ImageableArea LegalSmall/Legal (小): "" +*zh_TW.ImageableArea LegalSmall/Legal (小): "" + +*ImageableArea A4/A4: "12.00 12.00 582.96 829.44" +*da.ImageableArea A4/A4: "" +*de.ImageableArea A4/A4: "" +*es.ImageableArea A4/A4: "" +*fi.ImageableArea A4/A4: "" +*fr.ImageableArea A4/A4: "" +*it.ImageableArea A4/A4: "" +*ja.ImageableArea A4/A4: "" +*ko.ImageableArea A4/A4: "" +*nl.ImageableArea A4/A4: "" +*nb.ImageableArea A4/A4: "" +*pt.ImageableArea A4/A4: "" +*sv.ImageableArea A4/A4: "" +*zh_CN.ImageableArea A4/A4: "" +*zh_TW.ImageableArea A4/A4: "" + +*ImageableArea A4Small/A4 (Small): "28.00 30.00 566.00 811.00" +*da.ImageableArea A4Small/A4 (lille): "" +*de.ImageableArea A4Small/A4 (Klein): "" +*es.ImageableArea A4Small/A4 (pequeño): "" +*fi.ImageableArea A4Small/A4 (pieni): "" +*fr.ImageableArea A4Small/A4 (petit): "" +*it.ImageableArea A4Small/A4 (ridotta): "" +*ja.ImageableArea A4Small/A4 (小): "" +*ko.ImageableArea A4Small/A4 (소): "" +*nl.ImageableArea A4Small/A4 (klein): "" +*nb.ImageableArea A4Small/A4 (lite): "" +*pt.ImageableArea A4Small/A4 (pequeno): "" +*sv.ImageableArea A4Small/A4 (litet): "" +*zh_CN.ImageableArea A4Small/A4 (小): "" +*zh_TW.ImageableArea A4Small/A4 (小): "" + +*ImageableArea A5/A5: "12.00 12.00 407.28 582.96" +*da.ImageableArea A5/A5: "" +*de.ImageableArea A5/A5: "" +*es.ImageableArea A5/A5: "" +*fi.ImageableArea A5/A5: "" +*fr.ImageableArea A5/A5: "" +*it.ImageableArea A5/A5: "" +*ja.ImageableArea A5/A5: "" +*ko.ImageableArea A5/A5: "" +*nl.ImageableArea A5/A5: "" +*nb.ImageableArea A5/A5: "" +*pt.ImageableArea A5/A5: "" +*sv.ImageableArea A5/A5: "" +*zh_CN.ImageableArea A5/A5: "" +*zh_TW.ImageableArea A5/A5: "" + +*ImageableArea A6/A6: "12.00 12.00 284.76 407.76" +*da.ImageableArea A6/A6: "" +*de.ImageableArea A6/A6 Card: "" +*es.ImageableArea A6/A6: "" +*fi.ImageableArea A6/A6: "" +*fr.ImageableArea A6/A6 Card: "" +*it.ImageableArea A6/A6 Card: "" +*ja.ImageableArea A6/A6: "" +*ko.ImageableArea A6/A6: "" +*nl.ImageableArea A6/A6: "" +*nb.ImageableArea A6/A6: "" +*pt.ImageableArea A6/A6: "" +*sv.ImageableArea A6/A6: "" +*zh_CN.ImageableArea A6/A6: "" +*zh_TW.ImageableArea A6/A6: "" + +*ImageableArea B6/JIS B6: "12.00 12.00 350.50 503.50" +*da.ImageableArea B6/JIS B6: "" +*de.ImageableArea B6/B6 (JIS): "" +*es.ImageableArea B6/JIS B6: "" +*fi.ImageableArea B6/JIS B6: "" +*fr.ImageableArea B6/JIS B6: "" +*it.ImageableArea B6/JIS B6: "" +*ja.ImageableArea B6/B6 (JIS): "" +*ko.ImageableArea B6/JIS B6: "" +*nl.ImageableArea B6/JIS B6: "" +*nb.ImageableArea B6/JIS B6: "" +*pt.ImageableArea B6/B6 JIS: "" +*sv.ImageableArea B6/JIS B6: "" +*zh_CN.ImageableArea B6/JIS B6: "" +*zh_TW.ImageableArea B6/JIS B6: "" + +*ImageableArea ISOB5/B5 (ISO): "12.00 12.00 488.00 698.00" +*da.ImageableArea ISOB5/B5 (ISO): "" +*de.ImageableArea ISOB5/B5 (ISO): "" +*es.ImageableArea ISOB5/B5 (ISO): "" +*fi.ImageableArea ISOB5/B5 (ISO): "" +*fr.ImageableArea ISOB5/B5 (ISO): "" +*it.ImageableArea ISOB5/B5 (ISO): "" +*ja.ImageableArea ISOB5/B5 (ISO): "" +*ko.ImageableArea ISOB5/B5 (ISO): "" +*nl.ImageableArea ISOB5/B5 (ISO): "" +*nb.ImageableArea ISOB5/B5 (ISO): "" +*pt.ImageableArea ISOB5/B5 (ISO): "" +*sv.ImageableArea ISOB5/B5 (ISO): "" +*zh_CN.ImageableArea ISOB5/B5 (ISO): "" +*zh_TW.ImageableArea ISOB5/B5 (ISO): "" + +*ImageableArea B5/JIS B5: "12.00 12.00 503.52 716.16" +*da.ImageableArea B5/JIS B5: "" +*de.ImageableArea B5/B5 (JIS): "" +*es.ImageableArea B5/JIS B5: "" +*fi.ImageableArea B5/JIS B5: "" +*fr.ImageableArea B5/JIS B5: "" +*it.ImageableArea B5/JIS B5: "" +*ja.ImageableArea B5/B5 (JIS): "" +*ko.ImageableArea B5/JIS B5: "" +*nl.ImageableArea B5/JIS B5: "" +*nb.ImageableArea B5/JIS B5: "" +*pt.ImageableArea B5/B5 JIS: "" +*sv.ImageableArea B5/JIS B5: "" +*zh_CN.ImageableArea B5/JIS B5: "" +*zh_TW.ImageableArea B5/JIS B5: "" + +*ImageableArea Postcard/Postcard (JIS): "12.00 12.00 271.20 407.28" +*da.ImageableArea Postcard/Postkort (JIS): "" +*de.ImageableArea Postcard/Postkarte (JIS): "" +*es.ImageableArea Postcard/Tarjeta postal (JIS): "" +*fi.ImageableArea Postcard/Postikortti (JIS): "" +*fr.ImageableArea Postcard/Carte postale (JIS): "" +*it.ImageableArea Postcard/Cartolina (JIS): "" +*ja.ImageableArea Postcard/はがき (JIS): "" +*ko.ImageableArea Postcard/우편엽서 (JIS): "" +*nl.ImageableArea Postcard/Briefkaart (JIS): "" +*nb.ImageableArea Postcard/Postkort (JIS): "" +*pt.ImageableArea Postcard/Postal (JIS): "" +*sv.ImageableArea Postcard/Brevkort (JIS): "" +*zh_CN.ImageableArea Postcard/明信片 (JIS): "" +*zh_TW.ImageableArea Postcard/明信片(JIS): "" + +*ImageableArea DoublePostcard/Double Postcard (JIS): "12.00 12.00 407.28 554.64" +*da.ImageableArea DoublePostcard/Dobbelt postkort (JIS): "" +*de.ImageableArea DoublePostcard/Doppelte Postkarte (JIS): "" +*es.ImageableArea DoublePostcard/Tarjeta postal doble (JIS): "" +*fi.ImageableArea DoublePostcard/Kaksinkert. postikortti (JIS): "" +*fr.ImageableArea DoublePostcard/Carte postale double (JIS): "" +*it.ImageableArea DoublePostcard/Cartolina doppia (JIS): "" +*ja.ImageableArea DoublePostcard/往復はがき (JIS): "" +*ko.ImageableArea DoublePostcard/양면 엽서 (JIS): "" +*nl.ImageableArea DoublePostcard/Dubbele briefkaart (JIS): "" +*nb.ImageableArea DoublePostcard/Dobbelt postkort (JIS): "" +*pt.ImageableArea DoublePostcard/Postal duplo (JIS): "" +*sv.ImageableArea DoublePostcard/Dubbelt brevkort (JIS): "" +*zh_CN.ImageableArea DoublePostcard/大号明信片 (JIS): "" +*zh_TW.ImageableArea DoublePostcard/雙面明信片 (JIS): "" + +*ImageableArea w558h774/16K: "12.00 12.00 545.76 761.76" +*da.ImageableArea w558h774/16K: "" +*de.ImageableArea w558h774/16K: "" +*es.ImageableArea w558h774/16K: "" +*fi.ImageableArea w558h774/16K: "" +*fr.ImageableArea w558h774/16K: "" +*it.ImageableArea w558h774/16K: "" +*ja.ImageableArea w558h774/16K: "" +*ko.ImageableArea w558h774/16K: "" +*nl.ImageableArea w558h774/16K: "" +*nb.ImageableArea w558h774/16K: "" +*pt.ImageableArea w558h774/16K: "" +*sv.ImageableArea w558h774/16K: "" +*zh_CN.ImageableArea w558h774/16K: "" +*zh_TW.ImageableArea w558h774/16K: "" + +*ImageableArea Env10/Env Comm10: "12.00 12.00 284.64 671.76" +*da.ImageableArea Env10/Konv Comm10: "" +*de.ImageableArea Env10/Umschlag Comm10: "" +*es.ImageableArea Env10/Sobre Comm10: "" +*fi.ImageableArea Env10/Kirjekuori Comm10: "" +*fr.ImageableArea Env10/Enveloppe Comm10: "" +*it.ImageableArea Env10/Busta Comm10: "" +*ja.ImageableArea Env10/封筒 Comm10: "" +*ko.ImageableArea Env10/Comm10 봉투: "" +*nl.ImageableArea Env10/Comm10-envelop: "" +*nb.ImageableArea Env10/Comm10-konvolutt: "" +*pt.ImageableArea Env10/Envelope Comm10: "" +*sv.ImageableArea Env10/Comm10-kuvert: "" +*zh_CN.ImageableArea Env10/信封 Comm10: "" +*zh_TW.ImageableArea Env10/Comm10 信封: "" + +*ImageableArea EnvMonarch/Env Monarch: "12.00 12.00 266.64 527.76" +*da.ImageableArea EnvMonarch/Konv Monarch: "" +*de.ImageableArea EnvMonarch/Umschlag Monarch: "" +*es.ImageableArea EnvMonarch/Sobre Monarch: "" +*fi.ImageableArea EnvMonarch/Kirjekuori Monarch: "" +*fr.ImageableArea EnvMonarch/Enveloppe Monarch: "" +*it.ImageableArea EnvMonarch/Busta Monarch: "" +*ja.ImageableArea EnvMonarch/封筒 Monarch: "" +*ko.ImageableArea EnvMonarch/Monarch 봉투: "" +*nl.ImageableArea EnvMonarch/Monarch-envelop: "" +*nb.ImageableArea EnvMonarch/Monarch-konvolutt: "" +*pt.ImageableArea EnvMonarch/Envelope Monarch: "" +*sv.ImageableArea EnvMonarch/Monarch-kuvert: "" +*zh_CN.ImageableArea EnvMonarch/信封 Monarch: "" +*zh_TW.ImageableArea EnvMonarch/Monarch 信封: "" + +*ImageableArea EnvDL/Env DL: "12.00 12.00 299.52 611.28" +*da.ImageableArea EnvDL/Konv DL: "" +*de.ImageableArea EnvDL/Umschlag DL: "" +*es.ImageableArea EnvDL/Sobre DL: "" +*fi.ImageableArea EnvDL/Kirjekuori DL: "" +*fr.ImageableArea EnvDL/Enveloppe DL: "" +*it.ImageableArea EnvDL/Busta DL: "" +*ja.ImageableArea EnvDL/封筒 DL: "" +*ko.ImageableArea EnvDL/DL 봉투: "" +*nl.ImageableArea EnvDL/DL-envelop: "" +*nb.ImageableArea EnvDL/DL-konvolutt: "" +*pt.ImageableArea EnvDL/Envelope DL: "" +*sv.ImageableArea EnvDL/DL-kuvert: "" +*zh_CN.ImageableArea EnvDL/信封 DL: "" +*zh_TW.ImageableArea EnvDL/DL 信封: "" + +*ImageableArea EnvC5/Env C5: "12.00 12.00 446.88 636.72" +*da.ImageableArea EnvC5/Konv C5: "" +*de.ImageableArea EnvC5/Umschlag C5: "" +*es.ImageableArea EnvC5/Sobre C5: "" +*fi.ImageableArea EnvC5/Kirjekuori C5: "" +*fr.ImageableArea EnvC5/Enveloppe C5: "" +*it.ImageableArea EnvC5/Busta C5: "" +*ja.ImageableArea EnvC5/封筒 C5: "" +*ko.ImageableArea EnvC5/C5 봉투: "" +*nl.ImageableArea EnvC5/C5-envelop: "" +*nb.ImageableArea EnvC5/C5-konvolutt: "" +*pt.ImageableArea EnvC5/Envelope C5: "" +*sv.ImageableArea EnvC5/C5-kuvert: "" +*zh_CN.ImageableArea EnvC5/信封 C5: "" +*zh_TW.ImageableArea EnvC5/C5 信封: "" + +*ImageableArea EnvISOB5/Env ISO B5: "12.00 12.00 486.48 696.24" +*da.ImageableArea EnvISOB5/Konv ISO B5: "" +*de.ImageableArea EnvISOB5/Umschlag ISO B5: "" +*es.ImageableArea EnvISOB5/Sobre ISO B5: "" +*fi.ImageableArea EnvISOB5/Kirjekuori ISO B5: "" +*fr.ImageableArea EnvISOB5/Enveloppe ISO B5: "" +*it.ImageableArea EnvISOB5/Busta ISO B5: "" +*ja.ImageableArea EnvISOB5/封筒 ISO B5: "" +*ko.ImageableArea EnvISOB5/ISO B5 봉투: "" +*nl.ImageableArea EnvISOB5/ISO B5-envelop: "" +*nb.ImageableArea EnvISOB5/B5-konvolutt: "" +*pt.ImageableArea EnvISOB5/Envelope B5: "" +*sv.ImageableArea EnvISOB5/ISO B5-kuvert: "" +*zh_CN.ImageableArea EnvISOB5/信封 ISO B5: "" +*zh_TW.ImageableArea EnvISOB5/ISO B5 信封: "" + +*?ImageableArea: " + save + /cvp { ( ) cvs print ( ) print } bind def + /upperright {10000 mul floor 10000 div} bind def + /lowerleft {10000 mul ceiling 10000 div} bind def + newpath clippath pathbbox + 4 -2 roll exch 2 {lowerleft cvp} repeat + exch 2 {upperright cvp} repeat flush + restore +" +*End + +*DefaultPaperDimension: A4 +*PaperDimension Letter/Letter: "612 792" +*da.PaperDimension Letter/Letter: "" +*de.PaperDimension Letter/Letter: "" +*es.PaperDimension Letter/Letter: "" +*fi.PaperDimension Letter/Letter: "" +*fr.PaperDimension Letter/Lettre: "" +*it.PaperDimension Letter/Letter: "" +*ja.PaperDimension Letter/レター: "" +*ko.PaperDimension Letter/레터: "" +*nl.PaperDimension Letter/Letter: "" +*nb.PaperDimension Letter/Letter: "" +*pt.PaperDimension Letter/Carta: "" +*sv.PaperDimension Letter/Letter: "" +*zh_CN.PaperDimension Letter/信纸: "" +*zh_TW.PaperDimension Letter/Letter: "" + +*PaperDimension LetterSmall/Letter (Small): "612 792" +*da.PaperDimension LetterSmall/Letter (lille): "" +*de.PaperDimension LetterSmall/Letter (Klein): "" +*es.PaperDimension LetterSmall/Letter (pequeño): "" +*fi.PaperDimension LetterSmall/Letter (pieni): "" +*fr.PaperDimension LetterSmall/Lettre (petit): "" +*it.PaperDimension LetterSmall/Letter (ridotto): "" +*ja.PaperDimension LetterSmall/レター (小): "" +*ko.PaperDimension LetterSmall/레터 (소): "" +*nl.PaperDimension LetterSmall/Letter (klein): "" +*nb.PaperDimension LetterSmall/Letter (lite): "" +*pt.PaperDimension LetterSmall/Carta (pequeno): "" +*sv.PaperDimension LetterSmall/Letter (litet): "" +*zh_CN.PaperDimension LetterSmall/信纸 (小): "" +*zh_TW.PaperDimension LetterSmall/Letter (小): "" + +*PaperDimension Executive/Executive: "522 756" +*da.PaperDimension Executive/Executive: "" +*de.PaperDimension Executive/Executive: "" +*es.PaperDimension Executive/Ejecutivo: "" +*fi.PaperDimension Executive/Executive: "" +*fr.PaperDimension Executive/Exécutif: "" +*it.PaperDimension Executive/Executive: "" +*ja.PaperDimension Executive/エグゼクティブ: "" +*ko.PaperDimension Executive/Executive: "" +*nl.PaperDimension Executive/Executive: "" +*nb.PaperDimension Executive/Executive: "" +*pt.PaperDimension Executive/Executivo: "" +*sv.PaperDimension Executive/Executive: "" +*zh_CN.PaperDimension Executive/Executive: "" +*zh_TW.PaperDimension Executive/Executive: "" + +*PaperDimension Legal/Legal: "612 1008" +*da.PaperDimension Legal/Legal: "" +*de.PaperDimension Legal/Legal: "" +*es.PaperDimension Legal/Legal: "" +*fi.PaperDimension Legal/Legal: "" +*fr.PaperDimension Legal/Légal: "" +*it.PaperDimension Legal/Legal: "" +*ja.PaperDimension Legal/リーガル: "" +*ko.PaperDimension Legal/리갈: "" +*nl.PaperDimension Legal/Legal: "" +*nb.PaperDimension Legal/Legal: "" +*pt.PaperDimension Legal/Legal: "" +*sv.PaperDimension Legal/Legal: "" +*zh_CN.PaperDimension Legal/Legal: "" +*zh_TW.PaperDimension Legal/Legal: "" + +*PaperDimension LegalSmall/Legal (Small): "612 1008" +*da.PaperDimension LegalSmall/Legal (lille): "" +*de.PaperDimension LegalSmall/Legal (Klein): "" +*es.PaperDimension LegalSmall/Legal (pequeño): "" +*fi.PaperDimension LegalSmall/Legal (pieni): "" +*fr.PaperDimension LegalSmall/Légal (petit): "" +*it.PaperDimension LegalSmall/Legal (ridotto): "" +*ja.PaperDimension LegalSmall/リーガル (小): "" +*ko.PaperDimension LegalSmall/리갈 (소): "" +*nl.PaperDimension LegalSmall/Legal (klein): "" +*nb.PaperDimension LegalSmall/Legal (lite): "" +*pt.PaperDimension LegalSmall/Legal (pequeno): "" +*sv.PaperDimension LegalSmall/Legal (litet): "" +*zh_CN.PaperDimension LegalSmall/Legal (小): "" +*zh_TW.PaperDimension LegalSmall/Legal (小): "" + +*PaperDimension A4/A4: "595 842" +*da.PaperDimension A4/A4: "" +*de.PaperDimension A4/A4: "" +*es.PaperDimension A4/A4: "" +*fi.PaperDimension A4/A4: "" +*fr.PaperDimension A4/A4: "" +*it.PaperDimension A4/A4: "" +*ja.PaperDimension A4/A4: "" +*ko.PaperDimension A4/A4: "" +*nl.PaperDimension A4/A4: "" +*nb.PaperDimension A4/A4: "" +*pt.PaperDimension A4/A4: "" +*sv.PaperDimension A4/A4: "" +*zh_CN.PaperDimension A4/A4: "" +*zh_TW.PaperDimension A4/A4: "" + +*PaperDimension A4Small/A4 (Small): "595 842" +*da.PaperDimension A4Small/A4 (lille): "" +*de.PaperDimension A4Small/A4 (Klein): "" +*es.PaperDimension A4Small/A4 (pequeño): "" +*fi.PaperDimension A4Small/A4 (pieni): "" +*fr.PaperDimension A4Small/A4 (petit): "" +*it.PaperDimension A4Small/A4 (ridotta): "" +*ja.PaperDimension A4Small/A4 (小): "" +*ko.PaperDimension A4Small/A4 (소): "" +*nl.PaperDimension A4Small/A4 (klein): "" +*nb.PaperDimension A4Small/A4 (lite): "" +*pt.PaperDimension A4Small/A4 (pequeno): "" +*sv.PaperDimension A4Small/A4 (litet): "" +*zh_CN.PaperDimension A4Small/A4 (小): "" +*zh_TW.PaperDimension A4Small/A4 (小): "" + +*PaperDimension A5/A5: "420 595" +*da.PaperDimension A5/A5: "" +*de.PaperDimension A5/A5: "" +*es.PaperDimension A5/A5: "" +*fi.PaperDimension A5/A5: "" +*fr.PaperDimension A5/A5: "" +*it.PaperDimension A5/A5: "" +*ja.PaperDimension A5/A5: "" +*ko.PaperDimension A5/A5: "" +*nl.PaperDimension A5/A5: "" +*nb.PaperDimension A5/A5: "" +*pt.PaperDimension A5/A5: "" +*sv.PaperDimension A5/A5: "" +*zh_CN.PaperDimension A5/A5: "" +*zh_TW.PaperDimension A5/A5: "" + +*PaperDimension ISOB5/B5 (ISO): "499 709" +*da.PaperDimension ISOB5/B5 (ISO): "" +*de.PaperDimension ISOB5/B5 (ISO): "" +*es.PaperDimension ISOB5/B5 (ISO): "" +*fi.PaperDimension ISOB5/B5 (ISO): "" +*fr.PaperDimension ISOB5/B5 (ISO): "" +*it.PaperDimension ISOB5/B5 (ISO): "" +*ja.PaperDimension ISOB5/B5 (ISO): "" +*ko.PaperDimension ISOB5/B5 (ISO): "" +*nl.PaperDimension ISOB5/B5 (ISO): "" +*nb.PaperDimension ISOB5/B5 (ISO): "" +*pt.PaperDimension ISOB5/B5 (ISO): "" +*sv.PaperDimension ISOB5/B5 (ISO): "" +*zh_CN.PaperDimension ISOB5/B5 (ISO): "" +*zh_TW.PaperDimension ISOB5/B5 (ISO): "" + +*PaperDimension A6/A6: "297 420" +*da.PaperDimension A6/A6: "" +*de.PaperDimension A6/A6 Card: "" +*es.PaperDimension A6/A6: "" +*fi.PaperDimension A6/A6: "" +*fr.PaperDimension A6/A6 Card: "" +*it.PaperDimension A6/A6 Card: "" +*ja.PaperDimension A6/A6: "" +*ko.PaperDimension A6/A6: "" +*nl.PaperDimension A6/A6: "" +*nb.PaperDimension A6/A6: "" +*pt.PaperDimension A6/A6: "" +*sv.PaperDimension A6/A6: "" +*zh_CN.PaperDimension A6/A6: "" +*zh_TW.PaperDimension A6/A6: "" + +*PaperDimension B6/JIS B6: "363 516" +*da.PaperDimension B6/JIS B6: "" +*de.PaperDimension B6/B6 (JIS): "" +*es.PaperDimension B6/JIS B6: "" +*fi.PaperDimension B6/JIS B6: "" +*fr.PaperDimension B6/JIS B6: "" +*it.PaperDimension B6/B6 JIS: "" +*ja.PaperDimension B6/B6 (JIS): "" +*ko.PaperDimension B6/JIS B6: "" +*nl.PaperDimension B6/JIS B6: "" +*nb.PaperDimension B6/JIS B6: "" +*pt.PaperDimension B6/B6 JIS: "" +*sv.PaperDimension B6/JIS B6: "" +*zh_CN.PaperDimension B6/JIS B6: "" +*zh_TW.PaperDimension B6/JIS B6: "" + +*PaperDimension B5/JIS B5: "516 729" +*da.PaperDimension B5/JIS B5: "" +*de.PaperDimension B5/B5 (JIS): "" +*es.PaperDimension B5/JIS B5: "" +*fi.PaperDimension B5/JIS B5: "" +*fr.PaperDimension B5/JIS B5: "" +*it.PaperDimension B5/B5 JIS: "" +*ja.PaperDimension B5/B5 (JIS): "" +*ko.PaperDimension B5/JIS B5: "" +*nl.PaperDimension B5/JIS B5: "" +*nb.PaperDimension B5/JIS B5: "" +*pt.PaperDimension B5/B5 JIS: "" +*sv.PaperDimension B5/JIS B5: "" +*zh_CN.PaperDimension B5/JIS B5: "" +*zh_TW.PaperDimension B5/JIS B5: "" + +*PaperDimension Postcard/Postcard (JIS): "284 419" +*da.PaperDimension Postcard/Postkort (JIS): "" +*de.PaperDimension Postcard/Postkarte (JIS): "" +*es.PaperDimension Postcard/Tarjeta postal (JIS): "" +*fi.PaperDimension Postcard/Postikortti (JIS): "" +*fr.PaperDimension Postcard/Carte postale (JIS): "" +*it.PaperDimension Postcard/Cartolina (JIS): "" +*ja.PaperDimension Postcard/はがき (JIS): "" +*ko.PaperDimension Postcard/우편엽서 (JIS): "" +*nl.PaperDimension Postcard/Briefkaart (JIS): "" +*nb.PaperDimension Postcard/Postkort (JIS): "" +*pt.PaperDimension Postcard/Postal (JIS): "" +*sv.PaperDimension Postcard/Brevkort (JIS): "" +*zh_CN.PaperDimension Postcard/明信片 (JIS): "" +*zh_TW.PaperDimension Postcard/明信片(JIS): "" + +*PaperDimension DoublePostcard/Double Postcard (JIS): "419.5 567" +*da.PaperDimension DoublePostcard/Dobbelt postkort (JIS): "" +*de.PaperDimension DoublePostcard/Doppelte Postkarte (JIS): "" +*es.PaperDimension DoublePostcard/Tarjeta postal doble (JIS): "" +*fi.PaperDimension DoublePostcard/Kaksinkert. postikortti (JIS): "" +*fr.PaperDimension DoublePostcard/Carte postale double (JIS): "" +*it.PaperDimension DoublePostcard/Cartolina doppia (JIS): "" +*ja.PaperDimension DoublePostcard/往復はがき (JIS): "" +*ko.PaperDimension DoublePostcard/양면 엽서 (JIS): "" +*nl.PaperDimension DoublePostcard/Dubbele briefkaart (JIS): "" +*nb.PaperDimension DoublePostcard/Dobbelt postkort (JIS): "" +*pt.PaperDimension DoublePostcard/Postal duplo (JIS): "" +*sv.PaperDimension DoublePostcard/Dubbelt brevkort (JIS): "" +*zh_CN.PaperDimension DoublePostcard/大号明信片 (JIS): "" +*zh_TW.PaperDimension DoublePostcard/雙面明信片 (JIS): "" + +*PaperDimension w558h774/16K: "558 774" +*da.PaperDimension w558h774/16K: "" +*de.PaperDimension w558h774/16K: "" +*es.PaperDimension w558h774/16K: "" +*fi.PaperDimension w558h774/16 K: "" +*fr.PaperDimension w558h774/16K: "" +*it.PaperDimension w558h774/16K: "" +*ja.PaperDimension w558h774/16K: "" +*ko.PaperDimension w558h774/16K: "" +*nl.PaperDimension w558h774/16K: "" +*nb.PaperDimension w558h774/16K: "" +*pt.PaperDimension w558h774/16K: "" +*sv.PaperDimension w558h774/16K: "" +*zh_CN.PaperDimension w558h774/16K: "" +*zh_TW.PaperDimension w558h774/16K: "" + +*PaperDimension Env10/Env Comm10: "297 684" +*da.PaperDimension Env10/Konv Comm10: "" +*de.PaperDimension Env10/Umschlag Comm10: "" +*es.PaperDimension Env10/Sobre Comm10: "" +*fi.PaperDimension Env10/Kirjekuori Comm10: "" +*fr.PaperDimension Env10/Enveloppe Comm10: "" +*it.PaperDimension Env10/Busta Comm10: "" +*ja.PaperDimension Env10/封筒 Comm10: "" +*ko.PaperDimension Env10/Comm10 봉투: "" +*nl.PaperDimension Env10/Comm10-envelop: "" +*nb.PaperDimension Env10/Comm10-konvolutt: "" +*pt.PaperDimension Env10/Envelope Comm10: "" +*sv.PaperDimension Env10/Comm10-kuvert: "" +*zh_CN.PaperDimension Env10/信封 Comm10: "" +*zh_TW.PaperDimension Env10/Comm10 信封: "" + +*PaperDimension EnvMonarch/Env Monarch: "279 540" +*da.PaperDimension EnvMonarch/Konv Monarch: "" +*de.PaperDimension EnvMonarch/Umschlag Monarch: "" +*es.PaperDimension EnvMonarch/Sobre Monarch: "" +*fi.PaperDimension EnvMonarch/Kirjekuori Monarch: "" +*fr.PaperDimension EnvMonarch/Enveloppe Monarch: "" +*it.PaperDimension EnvMonarch/Busta Monarch: "" +*ja.PaperDimension EnvMonarch/封筒 Monarch: "" +*ko.PaperDimension EnvMonarch/Monarch 봉투: "" +*nl.PaperDimension EnvMonarch/Monarch-envelop: "" +*nb.PaperDimension EnvMonarch/Monarch-konvolutt: "" +*pt.PaperDimension EnvMonarch/Envelope Monarch: "" +*sv.PaperDimension EnvMonarch/Monarch-kuvert: "" +*zh_CN.PaperDimension EnvMonarch/信封 Monarch: "" +*zh_TW.PaperDimension EnvMonarch/Monarch 信封: "" + +*PaperDimension EnvDL/Env DL: "312 624" +*da.PaperDimension EnvDL/Konv DL: "" +*de.PaperDimension EnvDL/Umschlag DL: "" +*es.PaperDimension EnvDL/Sobre DL: "" +*fi.PaperDimension EnvDL/Kirjekuori DL: "" +*fr.PaperDimension EnvDL/Enveloppe DL: "" +*it.PaperDimension EnvDL/Busta DL: "" +*ja.PaperDimension EnvDL/封筒 DL: "" +*ko.PaperDimension EnvDL/DL 봉투: "" +*nl.PaperDimension EnvDL/DL-envelop: "" +*nb.PaperDimension EnvDL/DL-konvolutt: "" +*pt.PaperDimension EnvDL/Envelope DL: "" +*sv.PaperDimension EnvDL/DL-kuvert: "" +*zh_CN.PaperDimension EnvDL/信封 DL: "" +*zh_TW.PaperDimension EnvDL/DL 信封: "" + +*PaperDimension EnvC5/Env C5: "459 649" +*da.PaperDimension EnvC5/Konv C5: "" +*de.PaperDimension EnvC5/Umschlag C5: "" +*es.PaperDimension EnvC5/Sobre C5: "" +*fi.PaperDimension EnvC5/Kirjekuori C5: "" +*fr.PaperDimension EnvC5/Enveloppe C5: "" +*it.PaperDimension EnvC5/Busta C5: "" +*ja.PaperDimension EnvC5/封筒 C5: "" +*ko.PaperDimension EnvC5/C5 봉투: "" +*nl.PaperDimension EnvC5/C5-envelop: "" +*nb.PaperDimension EnvC5/C5-konvolutt: "" +*pt.PaperDimension EnvC5/Envelope C5: "" +*sv.PaperDimension EnvC5/C5-kuvert: "" +*zh_CN.PaperDimension EnvC5/信封 C5: "" +*zh_TW.PaperDimension EnvC5/C5 信封: "" + +*PaperDimension EnvISOB5/Env ISO B5: "499 709" +*da.PaperDimension EnvISOB5/Konv ISO B5: "" +*de.PaperDimension EnvISOB5/Umschlag ISO B5: "" +*es.PaperDimension EnvISOB5/Sobre ISO B5: "" +*fi.PaperDimension EnvISOB5/Kirjekuori ISO B5: "" +*fr.PaperDimension EnvISOB5/Enveloppe ISO B5: "" +*it.PaperDimension EnvISOB5/Busta ISO B5: "" +*ja.PaperDimension EnvISOB5/封筒 ISO B5: "" +*ko.PaperDimension EnvISOB5/ISO B5 봉투: "" +*nl.PaperDimension EnvISOB5/ISO B5-envelop: "" +*nb.PaperDimension EnvISOB5/B5-konvolutt: "" +*pt.PaperDimension EnvISOB5/Envelope B5: "" +*sv.PaperDimension EnvISOB5/ISO B5-kuvert: "" +*zh_CN.PaperDimension EnvISOB5/信封 ISO B5: "" +*zh_TW.PaperDimension EnvISOB5/ISO B5 信封: "" + + +*LandscapeOrientation: Plus90 + +*%================================================= +*% Custom Paper Support +*%================================================= +*%Orientation and Margin (offsets) values are not utilized + +*VariablePaperSize: True + +*LeadingEdge PreferLong: "" +*DefaultLeadingEdge: PreferLong + +*% Smallest = 3x5, Largest = 8.5 x 14 +*MaxMediaWidth: "612" +*MaxMediaHeight: "1008" +*HWMargins: 12 12 12 12 +*%CustomPageRegion True: "" +*CustomPageSize True: " + pop pop pop + <> + setpagedevice +" +*End + + +*ParamCustomPageSize Width: 1 points 216 612 +*ParamCustomPageSize Height: 2 points 360 1008 +*ParamCustomPageSize WidthOffset: 3 points 0 0 +*ParamCustomPageSize HeightOffset: 4 points 0 0 +*ParamCustomPageSize Orientation: 5 int 0 0 + +*RequiresPageRegion All: True + +*%========================================== +*% Media Type +*%========================================= +*OpenUI *MediaType/Media Type: PickOne +*OrderDependency: 20 AnySetup *MediaType +*DefaultMediaType: Unspecified +*da.Translation MediaType/Medietype: "" +*de.Translation MediaType/Medientyp: "" +*es.Translation MediaType/Tipo de sustrato: "" +*fi.Translation MediaType/Tulostusmateriaali: "" +*fr.Translation MediaType/Type de support: "" +*it.Translation MediaType/Tipo di supporto: "" +*ja.Translation MediaType/用紙の種類: "" +*ko.Translation MediaType/용지 종류: "" +*nl.Translation MediaType/Type afdrukmateriaal: "" +*nb.Translation MediaType/Utskriftsmateriale: "" +*pt.Translation MediaType/Tipo de mídia: "" +*sv.Translation MediaType/Material: "" +*zh_CN.Translation MediaType/介质类型: "" +*zh_TW.Translation MediaType/媒體類型: "" + +*MediaType Unspecified/Unspecified: " + <> setpagedevice" +*End +*da.MediaType Unspecified/Uspecificeret: "" +*de.MediaType Unspecified/Nicht bestimmt: "" +*es.MediaType Unspecified/No especificado: "" +*fi.MediaType Unspecified/Määrittämätön: "" +*fr.MediaType Unspecified/Non spécifié: "" +*it.MediaType Unspecified/Non specificato: "" +*ja.MediaType Unspecified/指定なし: "" +*ko.MediaType Unspecified/지정되지 않음: "" +*nl.MediaType Unspecified/Onbekend: "" +*nb.MediaType Unspecified/Uspesifisert: "" +*pt.MediaType Unspecified/Não especificado: "" +*sv.MediaType Unspecified/Ospecificerad: "" +*zh_CN.MediaType Unspecified/未指定: "" +*zh_TW.MediaType Unspecified/未指定: "" + +*MediaType Plain/Plain: " + <> setpagedevice" +*End +*da.MediaType Plain/Almindeligt: "" +*de.MediaType Plain/Normalpapier: "" +*es.MediaType Plain/Estándar: "" +*fi.MediaType Plain/Tavallinen: "" +*fr.MediaType Plain/Ordinaire: "" +*it.MediaType Plain/Normale: "" +*ja.MediaType Plain/普通用紙: "" +*ko.MediaType Plain/일반용지: "" +*nl.MediaType Plain/Gewoon: "" +*nb.MediaType Plain/Vanlig: "" +*pt.MediaType Plain/Comum: "" +*sv.MediaType Plain/Vanligt: "" +*zh_CN.MediaType Plain/普通纸: "" +*zh_TW.MediaType Plain/素面紙: "" + +*MediaType HPMultipurposePaper/HP Multipurpose Paper (71-89 g/m2): " + <> setpagedevice" +*End +*da.MediaType HPMultipurposePaper/HP Universalpapir (71-89 g/m2): "" +*de.MediaType HPMultipurposePaper/HP Mehrzweckpapier (71-89 g/m2): "" +*es.MediaType HPMultipurposePaper/Papel multipropósito HP (71-89 g/m2): "" +*fi.MediaType HPMultipurposePaper/HP monikäyttöpaperi (71-89 g/m2): "" +*fr.MediaType HPMultipurposePaper/Papier universel HP (71-89 g/m2): "" +*it.MediaType HPMultipurposePaper/Carta multiuso HP (71-89 g/m2): "" +*ja.MediaType HPMultipurposePaper/HP 多目的用紙 (71-89 g/m2): "" +*ko.MediaType HPMultipurposePaper/hp 다목적 용지 (71-89 g/m2): "" +*nl.MediaType HPMultipurposePaper/HP Multi-purpose Papier (71-89 g/m2): "" +*nb.MediaType HPMultipurposePaper/HP Multipurpose Paper (71-89 g/m2): "" +*pt.MediaType HPMultipurposePaper/Papel Multipropósito HP (71-89 g/m2): "" +*sv.MediaType HPMultipurposePaper/HP allround-papper (71-89 g/m2): "" +*zh_CN.MediaType HPMultipurposePaper/HP 多用途纸 (71-89 g/m2): "" +*zh_TW.MediaType HPMultipurposePaper/HP 多用途紙張 (71-89 g/m2): "" + +*MediaType HPOfficePaper/HP Office Paper: " + <> setpagedevice" +*End +*da.MediaType HPOfficePaper/HP Kontorpapir: "" +*de.MediaType HPOfficePaper/HP Office-Papier: "" +*es.MediaType HPOfficePaper/Papel de oficina HP: "" +*fi.MediaType HPOfficePaper/HP toimistopaperi: "" +*fr.MediaType HPOfficePaper/Papier pour application bureautique HP: "" +*it.MediaType HPOfficePaper/Carta per ufficio HP: "" +*ja.MediaType HPOfficePaper/HP オフィス用紙: "" +*ko.MediaType HPOfficePaper/hp 사무용 용지: "" +*nl.MediaType HPOfficePaper/HP Office Papier: "" +*nb.MediaType HPOfficePaper/HP Office Paper: "" +*pt.MediaType HPOfficePaper/Papel Para Escritório HP: "" +*sv.MediaType HPOfficePaper/HP kontorspapper: "" +*zh_CN.MediaType HPOfficePaper/HP 办公纸: "" +*zh_TW.MediaType HPOfficePaper/HP 辦公用紙張: "" + +*MediaType HPAllinOnePaper/HP All-in-one Printing Paper: " + <> setpagedevice" +*End +*da.MediaType HPAllinOnePaper/HP All-in-one-Printerpapir: "" +*de.MediaType HPAllinOnePaper/HP Druckerpapier für All-in-One-Geräte: "" +*es.MediaType HPAllinOnePaper/Papel de impresión para HP All-in-one: "" +*fi.MediaType HPAllinOnePaper/HP yhdistelmälaitteen tulostuspaperi: "" +*fr.MediaType HPAllinOnePaper/Papier d'impression HP tout-en-un: "" +*it.MediaType HPAllinOnePaper/Carta per stampa per HP all-in-one: "" +*ja.MediaType HPAllinOnePaper/HP オールインワン印刷用紙: "" +*ko.MediaType HPAllinOnePaper/HP all-in-one 인쇄 용지: "" +*nl.MediaType HPAllinOnePaper/HP All-in-one Afdrukpapier: "" +*nb.MediaType HPAllinOnePaper/HP All-in-one-utskriftspapir: "" +*pt.MediaType HPAllinOnePaper/Papel para impressão HP All-in-one: "" +*sv.MediaType HPAllinOnePaper/HP All-in-one-utskriftspapper: "" +*zh_CN.MediaType HPAllinOnePaper/HP All-in-one 打印纸: "" +*zh_TW.MediaType HPAllinOnePaper/HP All-in-one 列印紙張: "" + +*MediaType HPLJPaper/HP LaserJet Paper: " + <> setpagedevice" +*End +*da.MediaType HPLJPaper/HP LaserJet-papir: "" +*de.MediaType HPLJPaper/HP LaserJet-Papier: "" +*es.MediaType HPLJPaper/Papel para HP LaserJet: "" +*fi.MediaType HPLJPaper/HP LaserJet -paperi: "" +*fr.MediaType HPLJPaper/Papier HP LaserJet: "" +*it.MediaType HPLJPaper/Carta per HP LaserJet: "" +*ja.MediaType HPLJPaper/HP LaserJet 用紙: "" +*ko.MediaType HPLJPaper/HP LaserJet 용지: "" +*nl.MediaType HPLJPaper/HP LaserJet Papier: "" +*nb.MediaType HPLJPaper/HP LaserJet-papir: "" +*pt.MediaType HPLJPaper/Papel para HP LaserJet: "" +*sv.MediaType HPLJPaper/HP LaserJet-papper: "" +*zh_CN.MediaType HPLJPaper/HP LaserJet 纸: "" +*zh_TW.MediaType HPLJPaper/HP LaserJet 紙張: "" + +*MediaType HPPremChoiceLJPaper/HP Premium Choice LaserJet Paper: " + <> setpagedevice" +*End +*da.MediaType HPPremChoiceLJPaper/HP Premium Choice LaserJet-papir: "" +*de.MediaType HPPremChoiceLJPaper/HP Premium Choice LaserJet-Papier: "" +*es.MediaType HPPremChoiceLJPaper/Papel para HP Premium Choice LaserJet: "" +*fi.MediaType HPPremChoiceLJPaper/HP Premium Choice LaserJet -paperi: "" +*fr.MediaType HPPremChoiceLJPaper/Papier LaserJet HP Premium Choice: "" +*it.MediaType HPPremChoiceLJPaper/Carta alta qualità per HP LaserJet: "" +*ja.MediaType HPPremChoiceLJPaper/HP プレミアムチョイス LaserJet 用紙: "" +*ko.MediaType HPPremChoiceLJPaper/HP LaserJet 고급 용지: "" +*nl.MediaType HPPremChoiceLJPaper/HP Premium Choice LaserJet Papier: "" +*nb.MediaType HPPremChoiceLJPaper/HP Premium Choice LaserJet-papir: "" +*pt.MediaType HPPremChoiceLJPaper/Papel HP Premium Choice para HP LaserJet: "" +*sv.MediaType HPPremChoiceLJPaper/HP Premium Choice LaserJet-papper: "" +*zh_CN.MediaType HPPremChoiceLJPaper/HP 优选 LaserJet 纸: "" +*zh_TW.MediaType HPPremChoiceLJPaper/HP 頂級 LaserJet 紙張: "" + +*MediaType Preprinted/Preprinted: " + <> setpagedevice" +*End +*da.MediaType Preprinted/Fortrykt: "" +*de.MediaType Preprinted/Vordruckpapier: "" +*es.MediaType Preprinted/Preimpreso: "" +*fi.MediaType Preprinted/Esipainettu: "" +*fr.MediaType Preprinted/Préimprimé: "" +*it.MediaType Preprinted/Prestampata: "" +*ja.MediaType Preprinted/印刷フォーム: "" +*ko.MediaType Preprinted/미리 인쇄: "" +*nl.MediaType Preprinted/Voorbedrukt: "" +*nb.MediaType Preprinted/Forhåndstrykt: "" +*pt.MediaType Preprinted/Pré-impresso: "" +*sv.MediaType Preprinted/Förtryckt: "" +*zh_CN.MediaType Preprinted/预先打印纸: "" +*zh_TW.MediaType Preprinted/預印的: "" + +*MediaType Letterhead/Letterhead: " + <> setpagedevice" +*End +*da.MediaType Letterhead/Brevpapir: "" +*de.MediaType Letterhead/Briefkopfpapier: "" +*es.MediaType Letterhead/Membrete: "" +*fi.MediaType Letterhead/Kirjelomake: "" +*fr.MediaType Letterhead/Papier à en-tête: "" +*it.MediaType Letterhead/Carta intestata: "" +*ja.MediaType Letterhead/レターヘッド付き: "" +*ko.MediaType Letterhead/레터헤드: "" +*nl.MediaType Letterhead/Briefpapier: "" +*nb.MediaType Letterhead/Brevhode: "" +*pt.MediaType Letterhead/Timbrado: "" +*sv.MediaType Letterhead/Brevpapper: "" +*zh_CN.MediaType Letterhead/信头纸: "" +*zh_TW.MediaType Letterhead/信頭紙: "" + +*MediaType Transparency/Transparency: " + <> setpagedevice" +*End +*da.MediaType Transparency/Transparent: "" +*de.MediaType Transparency/Transparentfolie: "" +*es.MediaType Transparency/Transparencia: "" +*fi.MediaType Transparency/Kalvo: "" +*fr.MediaType Transparency/Transparent: "" +*it.MediaType Transparency/Lucido: "" +*ja.MediaType Transparency/OHP フィルム: "" +*ko.MediaType Transparency/투명 용지: "" +*nl.MediaType Transparency/Transparant: "" +*nb.MediaType Transparency/Transparent: "" +*pt.MediaType Transparency/Transparência: "" +*sv.MediaType Transparency/OH-film: "" +*zh_CN.MediaType Transparency/透明胶片: "" +*zh_TW.MediaType Transparency/投影片: "" + +*MediaType Prepunched/Prepunched: " + <> setpagedevice" +*End +*da.MediaType Prepunched/Hullet: "" +*de.MediaType Prepunched/Vorgelochtes Papier: "" +*es.MediaType Prepunched/Preperforado: "" +*fi.MediaType Prepunched/Rei’itetty: "" +*fr.MediaType Prepunched/Perforé: "" +*it.MediaType Prepunched/Perforata: "" +*ja.MediaType Prepunched/穴あき用紙: "" +*ko.MediaType Prepunched/천공 용지: "" +*nl.MediaType Prepunched/Geperforeerd: "" +*nb.MediaType Prepunched/Hullark: "" +*pt.MediaType Prepunched/Perfurado: "" +*sv.MediaType Prepunched/Hålat: "" +*zh_CN.MediaType Prepunched/预先打孔纸: "" +*zh_TW.MediaType Prepunched/打孔過的: "" + +*MediaType Labels/Labels: " + <> setpagedevice" +*End +*da.MediaType Labels/Etiketter: "" +*de.MediaType Labels/Etiketten: "" +*es.MediaType Labels/Etiquetas: "" +*fi.MediaType Labels/Tarrat: "" +*fr.MediaType Labels/Étiquettes: "" +*it.MediaType Labels/Etichette: "" +*ja.MediaType Labels/ラベル: "" +*ko.MediaType Labels/레이블: "" +*nl.MediaType Labels/Etiketten: "" +*nb.MediaType Labels/Etiketter: "" +*pt.MediaType Labels/Etiquetas: "" +*sv.MediaType Labels/Etiketter: "" +*zh_CN.MediaType Labels/标签: "" +*zh_TW.MediaType Labels/標籤: "" + +*MediaType Bond/Bond: " + <> setpagedevice" +*End +*da.MediaType Bond/Bond: "" +*de.MediaType Bond/Briefpapier: "" +*es.MediaType Bond/Bond: "" +*fi.MediaType Bond/Kova asiakirjapaperi: "" +*fr.MediaType Bond/Document: "" +*it.MediaType Bond/Carta fine: "" +*ja.MediaType Bond/ボンド紙: "" +*ko.MediaType Bond/본드지: "" +*nl.MediaType Bond/Bankpost: "" +*nb.MediaType Bond/Bond: "" +*pt.MediaType Bond/Superbond: "" +*sv.MediaType Bond/Finpapper: "" +*zh_CN.MediaType Bond/证券纸: "" +*zh_TW.MediaType Bond/雪銅紙: "" + +*MediaType Recycled/Recycled: " + <> setpagedevice" +*End +*da.MediaType Recycled/Genbrug: "" +*de.MediaType Recycled/Recyclingpapier: "" +*es.MediaType Recycled/Reciclado: "" +*fi.MediaType Recycled/Uusiopaperi: "" +*fr.MediaType Recycled/Recyclé: "" +*it.MediaType Recycled/Riciclata: "" +*ja.MediaType Recycled/再生紙: "" +*ko.MediaType Recycled/재활용지: "" +*nl.MediaType Recycled/Gerecycled: "" +*nb.MediaType Recycled/Resirkulert: "" +*pt.MediaType Recycled/Reciclado: "" +*sv.MediaType Recycled/Returpapper: "" +*zh_CN.MediaType Recycled/再生纸: "" +*zh_TW.MediaType Recycled/再生紙: "" + +*MediaType Color/Color: " + <> setpagedevice" +*End +*da.MediaType Color/Farvet: "" +*de.MediaType Color/Farbpapier: "" +*es.MediaType Color/Color: "" +*fi.MediaType Color/Väri: "" +*fr.MediaType Color/Couleur: "" +*it.MediaType Color/Colorata: "" +*ja.MediaType Color/カラー: "" +*ko.MediaType Color/색: "" +*nl.MediaType Color/Kleur: "" +*nb.MediaType Color/Farge: "" +*pt.MediaType Color/Colorido: "" +*sv.MediaType Color/Färgat: "" +*zh_CN.MediaType Color/颜色: "" +*zh_TW.MediaType Color/顏色: "" + +*MediaType Light75/Light (<3c>75 g/m2): " + <> setpagedevice" +*End +*da.MediaType Light75/Let (<3c>75 g/m2): "" +*de.MediaType Light75/Leicht (<3c>75 g/m2): "" +*es.MediaType Light75/Ligero (<3c>75 g/m2): "" +*fi.MediaType Light75/Kevyt (<3c>75 g/m2): "" +*fr.MediaType Light75/Fin (<3c>75 g/m2): "" +*it.MediaType Light75/Leggera (<3c>75 g/m2): "" +*ja.MediaType Light75/軽い用紙 (<3c>75 g/m2): "" +*ko.MediaType Light75/경량지 (<3c>75 g/m2): "" +*nl.MediaType Light75/Licht (<3c>75 g/m2): "" +*nb.MediaType Light75/Lys (<3c>75 g/m2): "" +*pt.MediaType Light75/Leve (<3c>75 g/m2): "" +*sv.MediaType Light75/Lätt (<3c>75 g/m2): "" +*zh_CN.MediaType Light75/轻磅 (<3c>75 g/m2): "" +*zh_TW.MediaType Light75/輕磅紙 (<3c>75 g/m2): "" + +*MediaType Heavy91105/Heavy (90-104 g/m2): " + <> setpagedevice" +*End +*da.MediaType Heavy91105/Kraftigt (91-105 g/m2): "" +*de.MediaType Heavy91105/Schwer (91-105 g/m2): "" +*es.MediaType Heavy91105/Pesado (91-105 g/m2): "" +*fi.MediaType Heavy91105/Paksu (91-105 g/m2): "" +*fr.MediaType Heavy91105/Epais (91-105 g/m2): "" +*it.MediaType Heavy91105/Pesante (91-105 g/m2): "" +*ja.MediaType Heavy91105/重い用紙 (91-105 g/m2): "" +*ko.MediaType Heavy91105/중량지 (91-105 g/m2): "" +*nl.MediaType Heavy91105/Zwaar (91-105 g/m2): "" +*nb.MediaType Heavy91105/Tungt (91-105 g/m2): "" +*pt.MediaType Heavy91105/Pesado (91-105 g/m2): "" +*sv.MediaType Heavy91105/Tungt (91-105 g/m2): "" +*zh_CN.MediaType Heavy91105/重磅 (91-105 g/m2): "" +*zh_TW.MediaType Heavy91105/重磅紙 (91-105 g/m2): "" + +*MediaType Cardstock105176/Card Stock (105-176 g/m2): " + <> setpagedevice" +*End +*da.MediaType Cardstock105176/Karton (105-176 g/m2): "" +*de.MediaType Cardstock105176/Karton (105-176 g/m2): "" +*es.MediaType Cardstock105176/Cartulina (105-176 g/m2): "" +*fi.MediaType Cardstock105176/Korttipaperi (105-176 g/m2): "" +*fr.MediaType Cardstock105176/Cartonné (105-176 g/m2): "" +*it.MediaType Cardstock105176/Cartoncino (105-176 g/m2): "" +*ja.MediaType Cardstock105176/カード ストック (105-176 g/m2): "" +*ko.MediaType Cardstock105176/카드 용지 (105-176 g/m2): "" +*nl.MediaType Cardstock105176/Kartonkaart (105-176 g/m2): "" +*nb.MediaType Cardstock105176/Kort (105-176 g/m2): "" +*pt.MediaType Cardstock105176/Cartolina (105-176 g/m2): "" +*sv.MediaType Cardstock105176/Kort (105-176 g/m2): "" +*zh_CN.MediaType Cardstock105176/卡片纸 (105-176 g/m2): "" +*zh_TW.MediaType Cardstock105176/卡片紙 (105-176 g/m2): "" + +*MediaType Envelope/Envelope: " + <> setpagedevice" +*End +*da.MediaType Envelope/Konvolut: "" +*de.MediaType Envelope/Briefumschlag: "" +*es.MediaType Envelope/Sobre: "" +*fi.MediaType Envelope/Kirjekuori: "" +*fr.MediaType Envelope/Enveloppe: "" +*it.MediaType Envelope/Busta: "" +*ja.MediaType Envelope/封筒: "" +*ko.MediaType Envelope/봉투: "" +*nl.MediaType Envelope/Enveloppen: "" +*nb.MediaType Envelope/Konvolutt: "" +*pt.MediaType Envelope/Envelope: "" +*sv.MediaType Envelope/Kuvert: "" +*zh_CN.MediaType Envelope/信封: "" +*zh_TW.MediaType Envelope/信封: "" + +*MediaType Rough/Rough: " + <> setpagedevice" +*End +*da.MediaType Rough/Groft (90-105 g/m2): "" +*de.MediaType Rough/Rauhpapier: "" +*es.MediaType Rough/Rugoso: "" +*fi.MediaType Rough/Karkea: "" +*fr.MediaType Rough/Rugueux: "" +*it.MediaType Rough/Ruvida: "" +*ja.MediaType Rough/ざら紙: "" +*ko.MediaType Rough/거친 용지: "" +*nl.MediaType Rough/Ruw: "" +*nb.MediaType Rough/Grovt: "" +*pt.MediaType Rough/Áspero: "" +*sv.MediaType Rough/Grovt: "" +*zh_CN.MediaType Rough/粗糙: "" +*zh_TW.MediaType Rough/粗糙紙: "" + +*?MediaType: " + save + currentpagedevice /MediaType get + dup null eq {pop (Unknown)} if + = flush + restore +" +*End +*CloseUI: *MediaType +*% ================================================ +*% ================================================ + +*% ================================================ +*% ================================================ + + + + +*% These values are set of PageSize settings so we need find +*% the way to refer on to PageSize values + + + +*%============================================= +*%================================================= +*% Paper Sources +*%================================================= +*OpenUI *InputSlot/Paper Source: PickOne +*OrderDependency: 20 AnySetup *InputSlot +*DefaultInputSlot: Auto +*InputSlot Auto/Automatic: " + <> setpagedevice" +*End +*da.InputSlot Auto/Automatisk: "" +*de.InputSlot Auto/Automatisch: "" +*es.InputSlot Auto/Automático: "" +*fi.InputSlot Auto/Automaattinen: "" +*fr.InputSlot Auto/Automatique: "" +*it.InputSlot Auto/Automatico: "" +*ja.InputSlot Auto/自動: "" +*ko.InputSlot Auto/자동: "" +*nl.InputSlot Auto/Automatisch: "" +*nb.InputSlot Auto/Automatisk: "" +*pt.InputSlot Auto/Automático: "" +*sv.InputSlot Auto/Automatiskt: "" +*zh_CN.InputSlot Auto/自动: "" +*zh_TW.InputSlot Auto/自動: "" + +*da.Translation InputSlot/Papirkilde: "" +*de.Translation InputSlot/Papierquelle: "" +*es.Translation InputSlot/Alimentación de papel: "" +*fi.Translation InputSlot/Paperilähde: "" +*fr.Translation InputSlot/Source du papier: "" +*it.Translation InputSlot/Alimentazione della carta: "" +*ja.Translation InputSlot/給紙元: "" +*ko.Translation InputSlot/용지함: "" +*nl.Translation InputSlot/Papierbron: "" +*nb.Translation InputSlot/Arkmating: "" +*pt.Translation InputSlot/Fonte de papel: "" +*sv.Translation InputSlot/Papperskälla: "" +*zh_CN.Translation InputSlot/纸张来源: "" +*zh_TW.Translation InputSlot/紙張來源: "" + +*InputSlot Tray1/Tray 1: "<> setpagedevice" +*da.InputSlot Tray1/Bakke 1: "" +*de.InputSlot Tray1/Zufuhrfach 1: "" +*es.InputSlot Tray1/Bandeja 1: "" +*fi.InputSlot Tray1/Lokero 1: "" +*fr.InputSlot Tray1/Bac 1: "" +*it.InputSlot Tray1/Cassetto 1: "" +*ja.InputSlot Tray1/トレイ 1: "" +*ko.InputSlot Tray1/용지함 1: "" +*nl.InputSlot Tray1/Lade 1: "" +*nb.InputSlot Tray1/Skuff 1: "" +*pt.InputSlot Tray1/Bandeja 1: "" +*sv.InputSlot Tray1/Fack 1: "" +*zh_CN.InputSlot Tray1/纸盒 1: "" +*zh_TW.InputSlot Tray1/1 號紙匣: "" + +*InputSlot Tray2/Tray 2: "<> setpagedevice" +*da.InputSlot Tray2/Bakke 2: "" +*de.InputSlot Tray2/Zufuhrfach 2: "" +*es.InputSlot Tray2/Bandeja 2: "" +*fi.InputSlot Tray2/Lokero 2: "" +*fr.InputSlot Tray2/Bac 2: "" +*it.InputSlot Tray2/Cassetto 2: "" +*ja.InputSlot Tray2/トレイ 2: "" +*ko.InputSlot Tray2/용지함 2: "" +*nl.InputSlot Tray2/Lade 2: "" +*nb.InputSlot Tray2/Skuff 2: "" +*pt.InputSlot Tray2/Bandeja 2: "" +*sv.InputSlot Tray2/Fack 2: "" +*zh_CN.InputSlot Tray2/纸盒 2: "" +*zh_TW.InputSlot Tray2/2 號紙匣: "" + +*InputSlot Tray3/Tray 3: "<> setpagedevice" +*da.InputSlot Tray3/Bakke 3: "" +*de.InputSlot Tray3/Zufuhrfach 3: "" +*es.InputSlot Tray3/Bandeja 3: "" +*fi.InputSlot Tray3/Lokero 3: "" +*fr.InputSlot Tray3/Bac 3: "" +*it.InputSlot Tray3/Cassetto 3: "" +*ja.InputSlot Tray3/トレイ 3: "" +*ko.InputSlot Tray3/용지함 3: "" +*nl.InputSlot Tray3/Lade 3: "" +*nb.InputSlot Tray3/Skuff 3: "" +*pt.InputSlot Tray3/Bandeja 3: "" +*sv.InputSlot Tray3/Fack 3: "" +*zh_CN.InputSlot Tray3/纸盒 3: "" +*zh_TW.InputSlot Tray3/3 號紙匣: "" + +*?InputSlot: " + save + [(Tray2) (None) (Tray1) (Tray2)] + statusdict /papertray get exec + {get exec} stopped { pop pop (unknown) } if = flush + restore +" +*End +*CloseUI: *InputSlot + +*% Enable/Disable Manual Feed +*OpenUI *ManualFeed/Tray 1 (Manual): Boolean +*OrderDependency: 20 AnySetup *ManualFeed +*DefaultManualFeed: False +*da.Translation ManualFeed/Bakke 1 (manuel): "" +*de.Translation ManualFeed/Zufuhrfach 1 (Manuell): "" +*es.Translation ManualFeed/Bandeja 1 (manual): "" +*fi.Translation ManualFeed/Lokero 1 (Käsinsyöttö): "" +*fr.Translation ManualFeed/Bac 1 (manuel): "" +*it.Translation ManualFeed/Cassetto 1 (Manuale): "" +*ja.Translation ManualFeed/トレイ 1 (手動): "" +*ko.Translation ManualFeed/용지함 1(수동): "" +*nl.Translation ManualFeed/Lade 1 (handmatig): "" +*nb.Translation ManualFeed/Skuff 1 (manuell): "" +*pt.Translation ManualFeed/Bandeja 1 (manual): "" +*sv.Translation ManualFeed/Fack 1 (manuell): "" +*zh_CN.Translation ManualFeed/纸盒1 (手工): "" +*zh_TW.Translation ManualFeed/紙匣1 ( 手動): "" + +*ManualFeed True/True: " + <> setpagedevice" +*End +*da.ManualFeed True/Sand: "" +*de.ManualFeed True/Ja: "" +*es.ManualFeed True/Verdadero: "" +*fi.ManualFeed True/Käytössä: "" +*fr.ManualFeed True/Vrai: "" +*it.ManualFeed True/Vero: "" +*ja.ManualFeed True/はい: "" +*ko.ManualFeed True/참: "" +*nl.ManualFeed True/Waar: "" +*nb.ManualFeed True/Sann: "" +*pt.ManualFeed True/Verdadeiro: "" +*sv.ManualFeed True/Sant: "" +*zh_CN.ManualFeed True/真: "" +*zh_TW.ManualFeed True/真: "" + +*ManualFeed False/False: " + <> setpagedevice" +*End +*da.ManualFeed False/Falsk: "" +*de.ManualFeed False/Nein: "" +*es.ManualFeed False/Falso: "" +*fi.ManualFeed False/Ei käytössä: "" +*fr.ManualFeed False/Faux: "" +*it.ManualFeed False/Falso: "" +*ja.ManualFeed False/いいえ: "" +*ko.ManualFeed False/거짓: "" +*nl.ManualFeed False/Onwaar: "" +*nb.ManualFeed False/Usann: "" +*pt.ManualFeed False/Falso: "" +*sv.ManualFeed False/Falskt: "" +*zh_CN.ManualFeed False/伪: "" +*zh_TW.ManualFeed False/假: "" + +*?ManualFeed: " + save + currentpagedevice /ManualFeed get + {(True)}{(False)}ifelse = flush + restore +" +*End +*CloseUI: *ManualFeed + +*HPManualFeedPrintsOnBottom: True +*HPManDupTumbleFirstSides: True +*HPGuidePageExtraTumble: " +userdict /hpManDupSettings known + { userdict /hpManDupSettings get dup + /manualFeedPrintsOnBottom known + {/manualFeedPrintsOnBottom get} + {pop true}ifelse + } + {true} +ifelse +" +*End + +*%================================================= +*% Duplex +*%================================================= +*OpenUI *Duplex/Duplex: PickOne +*OrderDependency: 50 AnySetup *Duplex +*DefaultDuplex: None +*da.Translation Duplex/Dupleks: "" +*de.Translation Duplex/Beidseitiger Druck: "" +*es.Translation Duplex/Dúplex: "" +*fi.Translation Duplex/Kaksipuolinen tulostus: "" +*fr.Translation Duplex/Impression des deux côtés: "" +*it.Translation Duplex/Duplex: "" +*ja.Translation Duplex/両面印刷: "" +*ko.Translation Duplex/양면인쇄: "" +*nl.Translation Duplex/Duplex: "" +*nb.Translation Duplex/Tosidig: "" +*pt.Translation Duplex/Dúplex: "" +*sv.Translation Duplex/Dubbelsidig: "" +*zh_CN.Translation Duplex/双面打印: "" +*zh_TW.Translation Duplex/雙面列印: "" + +*Duplex None/Off (1-Sided): " + <> setpagedevice" +*End +*da.Duplex None/Fra (1-sidet): "" +*de.Duplex None/Aus (einseitig): "" +*es.Duplex None/Des (por un solo lado): "" +*fi.Duplex None/Ei käytössä: "" +*fr.Duplex None/Désactivé: "" +*it.Duplex None/Disattivato (facciata singola): "" +*ja.Duplex None/オフ (片面印刷): "" +*ko.Duplex None/끔 (한 면): "" +*nl.Duplex None/Uit (enkelzijdig): "" +*nb.Duplex None/Av (1-sidig): "" +*pt.Duplex None/Desligado (face única): "" +*sv.Duplex None/Av (enkelsidig): "" +*zh_CN.Duplex None/关 (1面): "" +*zh_TW.Duplex None/關( 單面): "" + +*Duplex DuplexNoTumble/Flip on Long Edge (Standard): " + <> setpagedevice" +*End +*da.Duplex DuplexNoTumble/Vend på langs: "" +*de.Duplex DuplexNoTumble/Lange Kante spiegeln (Standard): "" +*es.Duplex DuplexNoTumble/Dar vuelta - borde largo (estándar): "" +*fi.Duplex DuplexNoTumble/Pitkän reunan sidonta: "" +*fr.Duplex DuplexNoTumble/Reliure sur bord long: "" +*it.Duplex DuplexNoTumble/Ruota sul lato lungo (Standard): "" +*ja.Duplex DuplexNoTumble/長辺綴じ (標準): "" +*ko.Duplex DuplexNoTumble/긴 가장자리로 뒤집기(표준): "" +*nl.Duplex DuplexNoTumble/Over lange zijde spiegelen (standaard): "" +*nb.Duplex DuplexNoTumble/Vend på langsiden (standard): "" +*pt.Duplex DuplexNoTumble/Inversão na margem longa (padrão): "" +*sv.Duplex DuplexNoTumble/Vänd längs långsidan (standard): "" +*zh_CN.Duplex DuplexNoTumble/长边翻转(标准): "" +*zh_TW.Duplex DuplexNoTumble/在長邊緣倒轉( 標準): "" + +*Duplex DuplexTumble/Flip on Short Edge: " + <> setpagedevice" +*End +*da.Duplex DuplexTumble/Vend på tværs: "" +*de.Duplex DuplexTumble/Kurze Kante spiegeln: "" +*es.Duplex DuplexTumble/Dar vuelta - borde corto: "" +*fi.Duplex DuplexTumble/Lyhyen reunan sidonta: "" +*fr.Duplex DuplexTumble/Reliure sur bord court: "" +*it.Duplex DuplexTumble/Ruota sul lato corto: "" +*ja.Duplex DuplexTumble/短辺綴じ: "" +*ko.Duplex DuplexTumble/짧은 가장자리로 뒤집기: "" +*nl.Duplex DuplexTumble/Over korte zijde spiegelen: "" +*nb.Duplex DuplexTumble/Vend på kortsiden: "" +*pt.Duplex DuplexTumble/Inversão na margem curta: "" +*sv.Duplex DuplexTumble/Vänd längs kortsidan: "" +*zh_CN.Duplex DuplexTumble/短边翻转: "" +*zh_TW.Duplex DuplexTumble/在短邊緣倒轉: "" + +*?Duplex: " + save + currentpagedevice /Duplex known + false ne + { currentpagedevice /Duplex get + { currentpagedevice /Tumble get + {(DuplexTumble)}{(DuplexNoTumble)}ifelse + } { (None)} ifelse + }{(None)} ifelse = flush + restore +" +*End +*CloseUI: *Duplex + +*%================================================= +*% Color Control +*%================================================= +*DefaultColorSep: ProcessBlack.212lpi.1200dpi/212 lpi / 1200 dpi +*InkName: ProcessBlack/Process Black +*InkName: CustomColor/Custom Color +*InkName: ProcessCyan/Process Cyan +*InkName: ProcessMagenta/Process Magenta +*InkName: ProcessYellow/Process Yellow + +*% For 60 lpi / 300 dpi ========================= +*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45" + +*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45" + +*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15" + +*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75" + +*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0" + + +*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60" + +*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60" + +*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60" + +*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60" + +*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60" + + +*% For 85 lpi / 600 dpi (5,5,2,6,6,2,20/3,0) ==== +*ColorSepScreenAngle ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "45.0" + +*ColorSepScreenAngle CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "45.0" + +*ColorSepScreenAngle ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "71.5651" + +*ColorSepScreenAngle ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "18.4349" + +*ColorSepScreenAngle ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "0.0" + + +*ColorSepScreenFreq ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "84.8528" + +*ColorSepScreenFreq CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "84.8528" + +*ColorSepScreenFreq ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "94.8683" + +*ColorSepScreenFreq ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "94.8683" + +*ColorSepScreenFreq ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "30.0" + +*ColorSepScreenProc ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: " +{1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch +1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch +abs exch abs 2 copy add 1 gt {1 sub dup mul exch 1 sub dup mul add 1 +sub }{dup mul exch dup mul add 1 exch sub }ifelse }" +*End + + +*% For 106 lpi / 300 dpi ========================= +*ColorSepScreenAngle ProcessBlack.106lpi.300dpi/106 lpi / 300 dpi: "45.0" + +*ColorSepScreenAngle CustomColor.106lpi.300dpi/106 lpi / 300 dpi: "45.0" + +*ColorSepScreenAngle ProcessCyan.106lpi.300dpi/106 lpi / 300 dpi: "71.5651" + +*ColorSepScreenAngle ProcessMagenta.106lpi.300dpi/106 lpi / 300 dpi: "18.4349" + +*ColorSepScreenAngle ProcessYellow.106lpi.300dpi/106 lpi / 300 dpi: "0.0" + + +*ColorSepScreenFreq ProcessBlack.106lpi.300dpi/106 lpi / 300 dpi: "106.066" + +*ColorSepScreenFreq CustomColor.106lpi.300dpi/106 lpi / 300 dpi: "106.066" + +*ColorSepScreenFreq ProcessCyan.106lpi.300dpi/106 lpi / 300 dpi: "94.8683" + +*ColorSepScreenFreq ProcessMagenta.106lpi.300dpi/106 lpi / 300 dpi: "94.8683" + +*ColorSepScreenFreq ProcessYellow.106lpi.300dpi/106 lpi / 300 dpi: "100.0" + + +*% For 106 lpi / 600 dpi ========================= +*ColorSepScreenAngle ProcessBlack.106lpi.600dpi/106 lpi / 600 dpi: "45.0" + +*ColorSepScreenAngle CustomColor.106lpi.600dpi/106 lpi / 600 dpi: "45.0" + +*ColorSepScreenAngle ProcessCyan.106lpi.600dpi/106 lpi / 600 dpi: "71.5651" + +*ColorSepScreenAngle ProcessMagenta.106lpi.600dpi/106 lpi / 600 dpi: "18.4349" + +*ColorSepScreenAngle ProcessYellow.106lpi.600dpi/106 lpi / 600 dpi: "0.0" + + +*ColorSepScreenFreq ProcessBlack.106lpi.600dpi/106 lpi / 600 dpi: "106.066" + +*ColorSepScreenFreq CustomColor.106lpi.600dpi/106 lpi / 600 dpi: "106.066" + +*ColorSepScreenFreq ProcessCyan.106lpi.600dpi/106 lpi / 600 dpi: "94.8683" + +*ColorSepScreenFreq ProcessMagenta.106lpi.600dpi/106 lpi / 600 dpi: "94.8683" + +*ColorSepScreenFreq ProcessYellow.106lpi.600dpi/106 lpi / 600 dpi: "100.0" + + +*% For 212 lpi / 1200 dpi ========================= +*ColorSepScreenAngle ProcessBlack.212lpi.1200dpi/212 lpi / 1200 dpi: "45.0" + +*ColorSepScreenAngle CustomColor.212lpi.1200dpi/212 lpi / 1200 dpi: "45.0" + +*ColorSepScreenAngle ProcessCyan.212lpi.1200dpi/212 lpi / 1200 dpi: "71.5651" + +*ColorSepScreenAngle ProcessMagenta.212lpi.1200dpi/212 lpi / 1200 dpi: "18.4349" + +*ColorSepScreenAngle ProcessYellow.212lpi.1200dpi/212 lpi / 1200 dpi: "0.0" + + +*ColorSepScreenFreq ProcessBlack.212lpi.1200dpi/212 lpi / 1200 dpi: "212" + +*ColorSepScreenFreq CustomColor.212lpi.1200dpi/212 lpi / 1200 dpi: "212" + +*ColorSepScreenFreq ProcessCyan.212lpi.1200dpi/212 lpi / 1200 dpi: "190" + +*ColorSepScreenFreq ProcessMagenta.212lpi.1200dpi/212 lpi / 1200 dpi: "190" + +*ColorSepScreenFreq ProcessYellow.212lpi.1200dpi/212 lpi / 1200 dpi: "200" + + +*%================================================= +*% Font Information +*%================================================= +*DefaultFont: Courier +*Font AvantGarde-Book: Standard "(001.006S)" Standard ROM +*Font AvantGarde-BookOblique: Standard "(001.006S)" Standard ROM +*Font AvantGarde-Demi: Standard "(001.007S)" Standard ROM +*Font AvantGarde-DemiOblique: Standard "(001.007S)" Standard ROM +*Font Bookman-Demi: Standard "(001.004S)" Standard ROM +*Font Bookman-DemiItalic: Standard "(001.004S)" Standard ROM +*Font Bookman-Light: Standard "(001.004S)" Standard ROM +*Font Bookman-LightItalic: Standard "(001.004S)" Standard ROM +*Font Courier: Standard "(002.004S)" Standard ROM +*Font Courier-Bold: Standard "(002.004S)" Standard ROM +*Font Courier-BoldOblique: Standard "(002.004S)" Standard ROM +*Font Courier-Oblique: Standard "(002.004S)" Standard ROM +*Font Helvetica: Standard "(001.006S)" Standard ROM +*Font Helvetica-Bold: Standard "(001.007S)" Standard ROM +*Font Helvetica-BoldOblique: Standard "(001.007S)" Standard ROM +*Font Helvetica-Narrow: Standard "(001.006S)" Standard ROM +*Font Helvetica-Narrow-Bold: Standard "(001.007S)" Standard ROM +*Font Helvetica-Narrow-BoldOblique: Standard "(001.007S)" Standard ROM +*Font Helvetica-Narrow-Oblique: Standard "(001.006S)" Standard ROM +*Font Helvetica-Oblique: Standard "(001.006S)" Standard ROM +*Font NewCenturySchlbk-Bold: Standard "(001.009S)" Standard ROM +*Font NewCenturySchlbk-BoldItalic: Standard "(001.007S)" Standard ROM +*Font NewCenturySchlbk-Italic: Standard "(001.006S)" Standard ROM +*Font NewCenturySchlbk-Roman: Standard "(001.007S)" Standard ROM +*Font Palatino-Bold: Standard "(001.005S)" Standard ROM +*Font Palatino-BoldItalic: Standard "(001.005S)" Standard ROM +*Font Palatino-Italic: Standard "(001.005S)" Standard ROM +*Font Palatino-Roman: Standard "(001.005S)" Standard ROM +*Font Symbol: Special "(001.007S)" Special ROM +*Font Times-Bold: Standard "(001.007S)" Standard ROM +*Font Times-BoldItalic: Standard "(001.009S)" Standard ROM +*Font Times-Italic: Standard "(001.007S)" Standard ROM +*Font Times-Roman: Standard "(001.007S)" Standard ROM +*Font ZapfChancery-MediumItalic: Standard "(001.007S)" Standard ROM +*Font ZapfDingbats: Special "(001.004S)" Special ROM +*?FontQuery: " + save + { count 1 gt + { exch dup 127 string cvs (/) print print (:) print + /Font resourcestatus {pop pop (Yes)} {(No)} ifelse = + } { exit } ifelse + } bind loop + (*) = flush + restore +" +*End + +*?FontList: " + save + (*) {cvn ==} 128 string /Font resourceforall + (*) = flush + restore +" +*End + +*%================================================= +*% Printer Messages (verbatim from printer): +*%================================================= +*Message: "%%[ exitserver: permanent state may be changed ]%%" +*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%" +*Message: "\FontName\ not found, using Courier" + +*% Status (format: %%[ status: ] %%) +*Status: "warming up"/warming up +*Status: "idle"/idle +*Status: "busy"/busy +*Status: "waiting"/waiting +*Status: "printing"/printing +*Status: "initializing"/initializing +*Status: "printing test page"/printing test page +*Status: "PrinterError: cover open or no toner cartridge"/cover open or no toner cartridge +*Status: "PrinterError: cover open"/cover open +*Status: "PrinterError: needs attention"/needs attention +*Status: "PrinterError: no toner cartridge"/no toner cartridge +*Status: "PrinterError: warming up"/warming up +*Status: "PrinterError: manual feed"/manual feed +*Status: "PrinterError: out of paper"/out of paper +*Status: "PrinterError: Paper Jam"/Paper Jam +*Status: "PrinterError: paper jam"/paper jam +*Status: "PrinterError: page protect needed"/page protect needed +*Status: "PrinterError: out of memory"/out of memory +*Status: "PrinterError: output bin full"/output bin full +*Status: "PrinterError: resetting printer"/resetting printer +*Status: "PrinterError: toner is low"/toner is low +*Status: "PrinterError: off line"/off line + +*% Printer Error (format: %%[ PrinterError: ]%%) +*PrinterError: "cover open or no toner cartridge"/cover open or no toner cartridge +*PrinterError: "cover open"/cover open +*PrinterError: "needs attention"/needs attention +*PrinterError: "no toner cartridge"/no toner cartridge +*PrinterError: "warming up"/warming up +*PrinterError: "manual feed"/manual feed +*PrinterError: "out of paper"/out of paper +*PrinterError: "Paper Jam"/Paper Jam +*PrinterError: "paper jam"/paper jam +*PrinterError: "page protect needed"/page protect needed +*PrinterError: "out of memory"/out of memory +*PrinterError: "output bin full"/output bin full +*PrinterError: "resetting printer"/resetting printer +*PrinterError: "toner is low"/toner is low +*PrinterError: "off line"/off line + +*% Input Sources (format: %%[ status: ; source: ]%% ) +*Source: "BiTronics"/BiTronics +*Source: "other I/O"/other I/O +*Source: "AppleTalk"/AppleTalk +*Source: "APPLETALK"/AppleTalk +*Source: "ATALK"/AppleTalk +*Source: "LocalTalk"/LocalTalk +*Source: "Parallel"/Parallel +*Source: "EtherTalk"/EtherTalk +*Source: "NOVELL"/NOVELL +*Source: "DLC/LLC"/DLC/LLC +*Source: "ETALK"/EtherTalk +*Source: "TCP/IP"/TCP/IP + +*Password: "()" +*ExitServer: " + count 0 eq + { false } { true exch startjob } ifelse + not { + (WARNING: Cannot modify initial VM.) = + (Missing or invalid password.) = + (Please contact the author of this software.) = flush quit + } if +" +*End +*Reset: " + count 0 eq { false } { true exch startjob } ifelse + not { + (WARNING: Cannot reset printer.) = + (Missing or invalid password.) = + (Please contact the author of this software.) = flush quit + } if + systemdict /quit get exec + (WARNING : Printer Reset Failed.) = flush +" +*End + +*% ======================================= +*% For "HP LaserJet 1320 Series" +*% ======================================= diff --git a/configfiles/etc/cups/ppd/Salle235.ppd b/configfiles/etc/cups/ppd/Salle235.ppd new file mode 100644 index 0000000..99bf513 --- /dev/null +++ b/configfiles/etc/cups/ppd/Salle235.ppd @@ -0,0 +1,2256 @@ +*PPD-Adobe: "4.3" +*% ================================= +*% Copyright 1992-2015 HP Company +*% Permission is hereby granted, free of charge, to any person obtaining +*% a copy of this software and associated documentation files (the +*% "Software"), to deal in the Software without restriction, including +*% without limitation the rights to use, copy, modify, merge, publish, +*% distribute, sublicense, and/or sell copies of the Software, and to +*% permit persons to whom the Software is furnished to do so, subject to +*% the following conditions: +*% +*% The above copyright notice and this permission notice shall be +*% included in all copies or substantial portions of the Software. +*% +*% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +*% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +*% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +*% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +*% LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +*% OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +*% WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +*% +*% [this is the MIT open source license -- please see www.opensource.org] +*% +*%%%% Created by the CUPS PPD Compiler CUPS v1.7.2. +*% Copyright (c) 2015 HP Development Company, L.P. +*FormatVersion: "4.3" +*FileVersion: "19.12" +*LanguageVersion: English +*LanguageEncoding: ISOLatin1 +*PCFileName: "HPP00052.PPD" +*Product: "(HP Color LaserJet Pro M252n)" +*Product: "(HP Color LaserJet Pro M252c1)" +*Product: "(HP Color LaserJet Pro M252c2)" +*Product: "(HP Color LaserJet Pro M252c3)" +*Product: "(HP Color LaserJet Pro M252c4)" +*Product: "(HP Color LaserJet Pro M252c5)" +*Product: "(HP Color LaserJet Pro M252dw)" +*Product: "(HP Color LaserJet Pro M252c6)" +*Product: "(HP Color LaserJet Pro M252c7)" +*Product: "(HP Color LaserJet Pro M252c8)" +*Product: "(HP Color LaserJet Pro M252c9)" +*Product: "(HP Color LaserJet Pro M252c10)" +*Manufacturer: "HP" +*ModelName: "HP Color LaserJet Pro M252" +*ShortNickName: "HP Color LaserJet Pro M252" +*1284DeviceID: "MFG:Hewlett-Packard;MDL:hp color laserjet pro m252;" +*NickName: "HP Color LaserJet Pro M252 Postscript (recommended)" +*PSVersion: "(3010.107) 3" +*LanguageLevel: "3" +*ColorDevice: True +*DefaultColorSpace: RGB +*FileSystem: False +*Throughput: "19" +*LandscapeOrientation: Plus90 +*TTRasterizer: Type42 +*% Driver-defined attributes... +*Protocols: TBCP +*cupsPJLCharset: "UTF-8" +*HPAccountingInfo: "4" +*HPBOD: "1" +*cupsUIResolver DuplexerVsDuplex: "*Duplex None" +*cupsUIConstraints DuplexerVsDuplex: "*HPOption_Duplexer False *Duplex" +*cupsCommands: "ReportLevels" +*cupsSNMPSupplies: False +*cupsIPPSupplies: False +*cupsMarkerName cyan/Cyan: "" +*cupsMarkerName magenta/Magenta: "" +*cupsMarkerName yellow/Yellow: "" +*cupsMarkerName black/Black: "" +*RequiresPageRegion All: True +*cupsUIResolver PageSizeVsDuplex: "*PageSize Letter *Duplex None" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize 4x6" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize 5x8" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize A6" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize B6" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize Env4x6" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize Postcard" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize DoublePostcardRotated" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize Env10" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize EnvMonarch" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize EnvISOB5" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize EnvC5" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize EnvDL" +*cupsMediaQualifier2: "Duplex" +*cupsMinSize .DuplexTumble.False: "419.00 595.00" +*cupsMinSize .DuplexNoTumble.False: "419.00 595.00" +*DefaultResolution: 600dpi +*cupsUIResolver MediaTypeVsDuplex: "*Duplex None *MediaType Unspecified" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType HPCoverMatte200" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType HPMattePhoto200" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType CardGlossy176220" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType ColorLaserTransparency" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType Labels" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType Envelope" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType HeavyEnvelope" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType OpaqueFilm" +*FreeVM: "62914560" +*cupsVersion: 1.5 +*cupsModelNumber: 0 +*cupsManualCopies: True +*cupsLanguages: "en da de es fi fr it ja ko no nl pt ru sv zh_CN zh_TW" +*cupsFilter: "application/vnd.cups-postscript 0 hpps" +*OpenUI *PageSize/Media Size: PickOne +*OrderDependency: 10 AnySetup *PageSize +*DefaultPageSize: A4 +*PageSize Letter/US Letter: "<>setpagedevice" +*PageSize Legal/US Legal: "<>setpagedevice" +*PageSize Executive/Executive: "<>setpagedevice" +*PageSize FanFoldGermanLegal/Oficio 8.5x13: "<> setpagedevice" +*PageSize 4x6/4x6: "<>setpagedevice" +*PageSize 5x8/5x8: "<>setpagedevice" +*PageSize A4/A4: "<>setpagedevice" +*PageSize A5/A5: "<>setpagedevice" +*PageSize A6/A6: "<>setpagedevice" +*PageSize B5/JIS B5: "<>setpagedevice" +*PageSize B6/JIS B6: "<>setpagedevice" +*PageSize Env4x6/10x15 cm: "<> setpagedevice" +*PageSize Oficio/Oficio 216x340 mm: "<>setpagedevice" +*PageSize 195x270mm/16K 195x270 mm: "<>setpagedevice" +*PageSize 184x260mm/16K 184x260 mm: "<>setpagedevice" +*PageSize 7.75x10.75/16K 197x273 mm: "<>setpagedevice" +*PageSize Postcard/Postcard: "<>setpagedevice" +*PageSize DoublePostcardRotated/Postcard Double Long Edge: "<>setpagedevice" +*PageSize Env10/Envelope #10: "<>setpagedevice" +*PageSize EnvMonarch/Envelope Monarch: "<>setpagedevice" +*PageSize EnvISOB5/Envelope B5: "<>setpagedevice" +*PageSize EnvC5/Envelope C5: "<>setpagedevice" +*PageSize EnvDL/Envelope DL: "<>setpagedevice" +*CloseUI: *PageSize +*OpenUI *PageRegion/Media Size: PickOne +*OrderDependency: 10 AnySetup *PageRegion +*DefaultPageRegion: A4 +*PageRegion Letter/US Letter: "<>setpagedevice" +*PageRegion Legal/US Legal: "<>setpagedevice" +*PageRegion Executive/Executive: "<>setpagedevice" +*PageRegion FanFoldGermanLegal/Oficio 8.5x13: "<> setpagedevice" +*PageRegion 4x6/4x6: "<>setpagedevice" +*PageRegion 5x8/5x8: "<>setpagedevice" +*PageRegion A4/A4: "<>setpagedevice" +*PageRegion A5/A5: "<>setpagedevice" +*PageRegion A6/A6: "<>setpagedevice" +*PageRegion B5/JIS B5: "<>setpagedevice" +*PageRegion B6/JIS B6: "<>setpagedevice" +*PageRegion Env4x6/10x15 cm: "<> setpagedevice" +*PageRegion Oficio/Oficio 216x340 mm: "<>setpagedevice" +*PageRegion 195x270mm/16K 195x270 mm: "<>setpagedevice" +*PageRegion 184x260mm/16K 184x260 mm: "<>setpagedevice" +*PageRegion 7.75x10.75/16K 197x273 mm: "<>setpagedevice" +*PageRegion Postcard/Postcard: "<>setpagedevice" +*PageRegion DoublePostcardRotated/Postcard Double Long Edge: "<>setpagedevice" +*PageRegion Env10/Envelope #10: "<>setpagedevice" +*PageRegion EnvMonarch/Envelope Monarch: "<>setpagedevice" +*PageRegion EnvISOB5/Envelope B5: "<>setpagedevice" +*PageRegion EnvC5/Envelope C5: "<>setpagedevice" +*PageRegion EnvDL/Envelope DL: "<>setpagedevice" +*CloseUI: *PageRegion +*DefaultImageableArea: Letter +*ImageableArea Letter/US Letter: "12 12 600 780" +*ImageableArea Legal/US Legal: "12 12 600 996" +*ImageableArea Executive/Executive: "12 12 510 744" +*ImageableArea FanFoldGermanLegal/Oficio 8.5x13: "12 12 600 924" +*ImageableArea 4x6/4x6: "12 12 276 420" +*ImageableArea 5x8/5x8: "12 12 348 564" +*ImageableArea A4/A4: "12 12 583 830" +*ImageableArea A5/A5: "12 12 408 583" +*ImageableArea A6/A6: "12 12 285 408" +*ImageableArea B5/JIS B5: "12 12 504 717" +*ImageableArea B6/JIS B6: "12 12 351 504" +*ImageableArea Env4x6/10x15 cm: "12 12 276 419" +*ImageableArea Oficio/Oficio 216x340 mm: "12 12 600 952" +*ImageableArea 195x270mm/16K 195x270 mm: "12 12 541 753" +*ImageableArea 184x260mm/16K 184x260 mm: "12 12 510 725" +*ImageableArea 7.75x10.75/16K 197x273 mm: "12 12 546 762" +*ImageableArea Postcard/Postcard: "12 12 271 408" +*ImageableArea DoublePostcardRotated/Postcard Double Long Edge: "12 12 408 555" +*ImageableArea Env10/Envelope #10: "12 12 285 672" +*ImageableArea EnvMonarch/Envelope Monarch: "12 12 267 528" +*ImageableArea EnvISOB5/Envelope B5: "12 12 487 697" +*ImageableArea EnvC5/Envelope C5: "12 12 447 637" +*ImageableArea EnvDL/Envelope DL: "12 12 300 612" +*DefaultPaperDimension: Letter +*PaperDimension Letter/US Letter: "612 792" +*PaperDimension Legal/US Legal: "612 1008" +*PaperDimension Executive/Executive: "522 756" +*PaperDimension FanFoldGermanLegal/Oficio 8.5x13: "612 936" +*PaperDimension 4x6/4x6: "288 432" +*PaperDimension 5x8/5x8: "360 576" +*PaperDimension A4/A4: "595 842" +*PaperDimension A5/A5: "420 595" +*PaperDimension A6/A6: "297 420" +*PaperDimension B5/JIS B5: "516 729" +*PaperDimension B6/JIS B6: "363 516" +*PaperDimension Env4x6/10x15 cm: "288 431" +*PaperDimension Oficio/Oficio 216x340 mm: "612 964" +*PaperDimension 195x270mm/16K 195x270 mm: "553 765" +*PaperDimension 184x260mm/16K 184x260 mm: "522 737" +*PaperDimension 7.75x10.75/16K 197x273 mm: "558 774" +*PaperDimension Postcard/Postcard: "283 420" +*PaperDimension DoublePostcardRotated/Postcard Double Long Edge: "420 567" +*PaperDimension Env10/Envelope #10: "297 684" +*PaperDimension EnvMonarch/Envelope Monarch: "279 540" +*PaperDimension EnvISOB5/Envelope B5: "499 709" +*PaperDimension EnvC5/Envelope C5: "459 649" +*PaperDimension EnvDL/Envelope DL: "312 624" +*MaxMediaWidth: "612" +*MaxMediaHeight: "1008" +*HWMargins: 12 12 12 12 +*CustomPageSize True: "pop pop pop <>setpagedevice" +*ParamCustomPageSize Width: 1 points 216 612 +*ParamCustomPageSize Height: 2 points 360 1008 +*ParamCustomPageSize WidthOffset: 3 points 0 0 +*ParamCustomPageSize HeightOffset: 4 points 0 0 +*ParamCustomPageSize Orientation: 5 int 0 0 +*OpenUI *Duplex/Two-Sided: PickOne +*OrderDependency: 50 AnySetup *Duplex +*DefaultDuplex: None +*Duplex None/Off: "<> setpagedevice" +*Duplex DuplexNoTumble/Long-Edge Binding: "<> setpagedevice" +*Duplex DuplexTumble/Short-Edge Binding: "<> setpagedevice" +*CloseUI: *Duplex +*OpenUI *InputSlot/Paper Feed: PickOne +*OrderDependency: 40 AnySetup *InputSlot +*DefaultInputSlot: Auto +*InputSlot Auto/Automatic: " + <> setpagedevice" +*End +*da.InputSlot Auto/Automatisk: "" +*de.InputSlot Auto/Automatisch: "" +*es.InputSlot Auto/Automático: "" +*fi.InputSlot Auto/Automaattinen: "" +*fr.InputSlot Auto/Automatique: "" +*it.InputSlot Auto/Automatico: "" +*ja.InputSlot Auto/自動: "" +*ko.InputSlot Auto/자동: "" +*nl.InputSlot Auto/Automatisch: "" +*no.InputSlot Auto/Automatisk: "" +*pt.InputSlot Auto/Automático: "" +*ru.InputSlot Auto/Автоматически: "" +*sv.InputSlot Auto/Automatiskt: "" +*zh_CN.InputSlot Auto/自动: "" +*zh_TW.InputSlot Auto/自動: "" + +*InputSlot Tray1/Tray 1: "<> setpagedevice" +*InputSlot Tray2/Tray 2: "<> setpagedevice" +*InputSlot ManualFeed/Manual Feed: "<> setpagedevice" +*CloseUI: *InputSlot +*OpenGroup: InstallableOptions/Installable Options +*OpenUI *HPOption_Duplexer/Duplex Unit: Boolean +*OrderDependency: 0 AnySetup *HPOption_Duplexer +*DefaultHPOption_Duplexer: True +*HPOption_Duplexer True/On: "" +*HPOption_Duplexer False/Off: "" +*CloseUI: *HPOption_Duplexer +*CloseGroup: InstallableOptions +*OpenGroup: HPColorOptionsPanel/Color +*OpenUI *HPPJLColorAsGray/Print Color as Gray: PickOne +*OrderDependency: 20 AnySetup *HPPJLColorAsGray +*DefaultHPPJLColorAsGray: no +*HPPJLColorAsGray yes/On: " " +*HPPJLColorAsGray no/Off: " " +*CloseUI: *HPPJLColorAsGray +*OpenUI *HPRGBEmulation/RGB Color: PickOne +*OrderDependency: 57 AnySetup *HPRGBEmulation +*DefaultHPRGBEmulation: DefaultSRGB +*HPRGBEmulation DefaultSRGB/Default (sRGB): " + globaldict /ColorSmartColorMatching known { + MatchScreen ColorSmartImageAdjustment + } if + " +*End +*HPRGBEmulation PhotoSRGB/Photo (sRGB): " + globaldict /ColorSmartColorMatching known { + PhotoQuality ColorSmartImageAdjustment + } if + " +*End +*HPRGBEmulation Adobe/Photo (Adobe RGB 1998): " + globaldict /ColorSmartColorMatching known { + AdobeRGB ColorSmartImageAdjustment + } if + " +*End +*HPRGBEmulation VividSRGB/Vivid (sRGB): " + globaldict /ColorSmartColorMatching known { + Vivid ColorSmartImageAdjustment + } if + " +*End +*HPRGBEmulation HPRGBEmulationNone/None: " + globaldict /ColorSmartColorMatching known { + NoAdj ColorSmartImageAdjustment + } if + " +*End +*CloseUI: *HPRGBEmulation +*OpenUI *HPEdgeControl/Edge Control: PickOne +*OrderDependency: 57 AnySetup *HPEdgeControl +*DefaultHPEdgeControl: Normal +*HPEdgeControl HPEdgeControlOff/Off: " + globaldict /HPTextAdaptiveHalftoning known { + false HPTextAdaptiveHalftoning + false HPGraphicsAdaptiveHalftoning + false HPImageAdaptiveHalftoning + } if + globaldict /HPColorTrapping known { + Off HPColorTrapping + } if + " +*End +*HPEdgeControl Light/Light: " + globaldict /HPTextAdaptiveHalftoning known { + true HPTextAdaptiveHalftoning + true HPGraphicsAdaptiveHalftoning + true HPImageAdaptiveHalftoning + } if + globaldict /HPColorTrapping known { + Light HPColorTrapping + } if + " +*End +*HPEdgeControl Normal/Normal: " + globaldict /HPTextAdaptiveHalftoning known { + true HPTextAdaptiveHalftoning + true HPGraphicsAdaptiveHalftoning + true HPImageAdaptiveHalftoning + } if + globaldict /HPColorTrapping known { + Normal HPColorTrapping + } if + " +*End +*HPEdgeControl Max/Maximum: " + globaldict /HPTextAdaptiveHalftoning known { + true HPTextAdaptiveHalftoning + true HPGraphicsAdaptiveHalftoning + true HPImageAdaptiveHalftoning + } if + globaldict /HPColorTrapping known { + Max HPColorTrapping + } if + " +*End +*CloseUI: *HPEdgeControl +*OpenUI *HPGeneralHalftone/Halftone: PickOne +*OrderDependency: 57 AnySetup *HPGeneralHalftone +*DefaultHPGeneralHalftone: Smooth +*HPGeneralHalftone Smooth/Smooth: " + globaldict /ColorSmartColorMatching known { + Smooth ColorSmartGraphicsHalftone + Smooth ColorSmartImageHalftone + Smooth ColorSmartTextHalftone + } if + " +*End +*HPGeneralHalftone Detail/Detail: " + globaldict /ColorSmartColorMatching known { + Detail ColorSmartGraphicsHalftone + Detail ColorSmartImageHalftone + Detail ColorSmartTextHalftone + } if + " +*End +*CloseUI: *HPGeneralHalftone +*OpenUI *HPTextNeutralGrays/Text Neutral Grays: PickOne +*OrderDependency: 57 AnySetup *HPTextNeutralGrays +*DefaultHPTextNeutralGrays: Black +*HPTextNeutralGrays Black/Black Only: " + globaldict /HPTextNeutralAxis known { + TonerBlack HPTextNeutralAxis + } if + " +*End +*HPTextNeutralGrays ProcessBlack/4-Color: " + globaldict /HPTextNeutralAxis known { + ProcBlack HPTextNeutralAxis + } if + " +*End +*CloseUI: *HPTextNeutralGrays +*OpenUI *HPGraphicsNeutralGrays/Graphics Neutral Grays: PickOne +*OrderDependency: 57 AnySetup *HPGraphicsNeutralGrays +*DefaultHPGraphicsNeutralGrays: Black +*HPGraphicsNeutralGrays Black/Black Only: " + globaldict /HPGraphicsNeutralAxis known { + TonerBlack HPGraphicsNeutralAxis + } if + " +*End +*HPGraphicsNeutralGrays ProcessBlack/4-Color: " + globaldict /HPGraphicsNeutralAxis known { + ProcBlack HPGraphicsNeutralAxis + } if + " +*End +*CloseUI: *HPGraphicsNeutralGrays +*OpenUI *HPPhotoNeutralGrays/Photo Neutral Grays: PickOne +*OrderDependency: 57 AnySetup *HPPhotoNeutralGrays +*DefaultHPPhotoNeutralGrays: ProcessBlack +*HPPhotoNeutralGrays Black/Black Only: " + globaldict /HPImageNeutralAxis known { + TonerBlack HPImageNeutralAxis + } if + " +*End +*HPPhotoNeutralGrays ProcessBlack/4-Color: " + globaldict /HPImageNeutralAxis known { + ProcBlack HPImageNeutralAxis + } if + " +*End +*CloseUI: *HPPhotoNeutralGrays +*CloseGroup: HPColorOptionsPanel +*OpenGroup: HPPaperQualityPanel/Paper/Quality +*OpenUI *HPPJLEconoMode/EconoMode: Boolean +*OrderDependency: 20 AnySetup *HPPJLEconoMode +*DefaultHPPJLEconoMode: False +*HPPJLEconoMode True/On: " " +*HPPJLEconoMode False/Off: " " +*CloseUI: *HPPJLEconoMode +*OpenUI *MediaType/Media Type: PickOne +*OrderDependency: 20 AnySetup *MediaType +*DefaultMediaType: Unspecified +*MediaType Unspecified/Unspecified: "<> setpagedevice" +*MediaType Plain/Plain: "<> setpagedevice" +*MediaType HPEcoSMARTLite/HP EcoSMART Lite: "<> setpagedevice" +*MediaType HPLaserJet90/HP LaserJet 90g: "<> setpagedevice" +*MediaType HPColorLaserMatte105/HP Color Laser Matte 105g: "<> setpagedevice" +*MediaType HPPremiumChoiceMatte120/HP Premium Choice Matte 120g: "<> setpagedevice" +*MediaType HPBrochureMatte150/HP Brochure Matte 150g: "<> setpagedevice" +*MediaType HPCoverMatte200/HP Cover Matte 200g: "<> setpagedevice" +*MediaType HPMattePhoto200/HP Matte Photo 200g: "<> setpagedevice" +*MediaType HPPremiumPresentationGlossy120/HP Premium Presentation Glossy 120g: "<> setpagedevice" +*MediaType HPBrochureGlossy150/HP Brochure Glossy 150g: "<> setpagedevice" +*MediaType HPTrifoldBrochureGlossy150/HP Tri-fold Brochure Glossy 150g: "<> setpagedevice" +*MediaType HPBrochureGlossy200/HP Brochure Glossy 200g: "<> setpagedevice" +*MediaType Light6074/Light 60-74g: "<> setpagedevice" +*MediaType Intermediate8595/Intermediate 85-95g: "<> setpagedevice" +*MediaType MidWeight96110/Mid-Weight 96-110g: "<> setpagedevice" +*MediaType Heavy111130/Heavy 111-130g: "<> setpagedevice" +*MediaType ExtraHeavy131175/Extra Heavy 131-175g: "<> setpagedevice" +*MediaType HeavyGlossy111130/Heavy Glossy 111-130g: "<> setpagedevice" +*MediaType ExtraHeavyGlossy131175/Extra Heavy Glossy 131-175g: "<> setpagedevice" +*MediaType CardGlossy176220/Card Glossy 176-220g: "<> setpagedevice" +*MediaType ColorLaserTransparency/Color Laser Transparency: "<> setpagedevice" +*MediaType Labels/Labels: "<> setpagedevice" +*MediaType Letterhead/Letterhead: "<> setpagedevice" +*MediaType Envelope/Envelope: "<> setpagedevice" +*MediaType HeavyEnvelope/Heavy Envelope: "<> setpagedevice" +*MediaType Preprinted/Preprinted: "<> setpagedevice" +*MediaType Prepunched/Prepunched: "<> setpagedevice" +*MediaType Colored/Colored: "<> setpagedevice" +*MediaType Bond/Bond: "<> setpagedevice" +*MediaType Recycled/Recycled: "<> setpagedevice" +*MediaType Rough/Rough: "<> setpagedevice" +*MediaType HeavyRough/Heavy Rough: "<> setpagedevice" +*MediaType OpaqueFilm/Opaque Film: "<> setpagedevice" +*CloseUI: *MediaType +*CloseGroup: HPPaperQualityPanel +*da.Translation Manufacturer/HP: "" +*da.Translation ModelName/HP Color LaserJet Pro M252: "" +*da.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*da.Translation NickName/HP Color LaserJet Pro M252: "" +*da.Translation PageSize/Mediestørrelse: "" +*da.PageSize Letter/US Letter: "" +*da.PageSize Legal/US Legal: "" +*da.PageSize Executive/Executive: "" +*da.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*da.PageSize 4x6/4x6: "" +*da.PageSize 5x8/5x8: "" +*da.PageSize A4/A4: "" +*da.PageSize A5/A5: "" +*da.PageSize A6/A6: "" +*da.PageSize B5/JIS B5: "" +*da.PageSize B6/JIS B6: "" +*da.PageSize Env4x6/10x15 cm: "" +*da.PageSize Oficio/Oficio 216x340 mm: "" +*da.PageSize 195x270mm/16K 195x270 mm: "" +*da.PageSize 184x260mm/16K 184x260 mm: "" +*da.PageSize 7.75x10.75/16K 197x273 mm: "" +*da.PageSize Postcard/Postcard: "" +*da.PageSize DoublePostcardRotated/Postkort, dobbelt - lang kant: "" +*da.PageSize Env10/Konv Comm10: "" +*da.PageSize EnvMonarch/Konv Monarch: "" +*da.PageSize EnvISOB5/Konv ISO B5: "" +*da.PageSize EnvC5/Konv C5: "" +*da.PageSize EnvDL/Konv DL: "" +*da.Translation Duplex/Dupleks: "" +*da.Duplex None/Fra: "" +*da.Duplex DuplexNoTumble/Indbinding på den lange led: "" +*da.Duplex DuplexTumble/Indbinding på den korte led: "" +*da.Translation InputSlot/Papirforsyning: "" +*da.InputSlot Tray1/Bakke 1: "" +*da.InputSlot Tray2/Bakke 2: "" +*da.InputSlot ManualFeed/Manuel indføring: "" +*da.Translation InstallableOptions/Installable Options: "" +*da.Translation HPOption_Duplexer/Dupleksudskrivningsudstyr: "" +*da.HPOption_Duplexer True/Til: "" +*da.HPOption_Duplexer False/Fra: "" +*da.Translation HPColorOptionsPanel/Farve: "" +*da.Translation HPPJLColorAsGray/Udskriv farve som grå: "" +*da.HPPJLColorAsGray yes/Til: "" +*da.HPPJLColorAsGray no/Fra: "" +*da.Translation HPRGBEmulation/RGB-farve: "" +*da.HPRGBEmulation DefaultSRGB/Standard (sRGB): "" +*da.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*da.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*da.HPRGBEmulation VividSRGB/Livlig (sRGB): "" +*da.HPRGBEmulation HPRGBEmulationNone/Ingen: "" +*da.Translation HPEdgeControl/Kantstyring: "" +*da.HPEdgeControl HPEdgeControlOff/Fra: "" +*da.HPEdgeControl Light/Lys: "" +*da.HPEdgeControl Normal/Normal: "" +*da.HPEdgeControl Max/Maksimum: "" +*da.Translation HPGeneralHalftone/Halvtone: "" +*da.HPGeneralHalftone Smooth/Jævn: "" +*da.HPGeneralHalftone Detail/Detaljer: "" +*da.Translation HPTextNeutralGrays/Tekst i neutral grå: "" +*da.HPTextNeutralGrays Black/Kun sort: "" +*da.HPTextNeutralGrays ProcessBlack/4-farve: "" +*da.Translation HPGraphicsNeutralGrays/Grafik i neutral grå: "" +*da.HPGraphicsNeutralGrays Black/Kun sort: "" +*da.HPGraphicsNeutralGrays ProcessBlack/4-farve: "" +*da.Translation HPPhotoNeutralGrays/Fotografier i neutral grå: "" +*da.HPPhotoNeutralGrays Black/Kun sort: "" +*da.HPPhotoNeutralGrays ProcessBlack/4-farve: "" +*da.Translation HPPaperQualityPanel/Paper/Quality: "" +*da.Translation HPPJLEconoMode/EconoMode: "" +*da.HPPJLEconoMode True/Til: "" +*da.HPPJLEconoMode False/Fra: "" +*da.Translation MediaType/Medietype: "" +*da.MediaType Unspecified/Uspecificeret: "" +*da.MediaType Plain/Almindeligt: "" +*da.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*da.MediaType HPLaserJet90/HP LaserJet 90g: "" +*da.MediaType HPColorLaserMatte105/HP Color Laser, mat 105g: "" +*da.MediaType HPPremiumChoiceMatte120/HP Premium Choice, mat 120g: "" +*da.MediaType HPBrochureMatte150/HP brochurepapir, mat 150g: "" +*da.MediaType HPCoverMatte200/HP Omslag, mat 200g: "" +*da.MediaType HPMattePhoto200/HP Foto, mat 200g: "" +*da.MediaType HPPremiumPresentationGlossy120/HP Premium-præsentationspapir, Blankt 120g: "" +*da.MediaType HPBrochureGlossy150/HP brochurepapir, Blankt 150g: "" +*da.MediaType HPTrifoldBrochureGlossy150/HP brochurepapir foldet tre gange, Blankt, 150g: "" +*da.MediaType HPBrochureGlossy200/HP brochurepapir, Blankt 200g: "" +*da.MediaType Light6074/Let 60-74g: "" +*da.MediaType Intermediate8595/Mellem 85-95g: "" +*da.MediaType MidWeight96110/Mellemkraftigt 96-110g: "" +*da.MediaType Heavy111130/Kraftigt 111-130g: "" +*da.MediaType ExtraHeavy131175/Ekstra kraftigt 131-175g: "" +*da.MediaType HeavyGlossy111130/Kraftigt blankt 111-130g: "" +*da.MediaType ExtraHeavyGlossy131175/Ekstra tykt og blankt 131-175g: "" +*da.MediaType CardGlossy176220/Kort, blankt 176-220g: "" +*da.MediaType ColorLaserTransparency/Color Laser-transparent: "" +*da.MediaType Labels/Etiketter: "" +*da.MediaType Letterhead/Brevpapir: "" +*da.MediaType Envelope/Konvolut: "" +*da.MediaType HeavyEnvelope/Kraftig konvolut: "" +*da.MediaType Preprinted/Fortrykt: "" +*da.MediaType Prepunched/Hullet: "" +*da.MediaType Colored/Farvet: "" +*da.MediaType Bond/Bankpost: "" +*da.MediaType Recycled/Genbrug: "" +*da.MediaType Rough/Groft: "" +*da.MediaType HeavyRough/Kraftigt, groft: "" +*da.MediaType OpaqueFilm/Uigennemskinnelig film: "" +*da.APPrinterPreset ChartsAndGraphs/Diagrammer og grafik: "" +*da.cupsICCProfile RGB../sRGB Matching Profile: "" +*da.cupsICCProfile CMYK../CMYK Matching Profile: "" +*da.cupsICCProfile Gray../Gray Matching Profile: "" +*da.cupsMarkerName cyan/Cyan: "" +*da.cupsMarkerName magenta/Magenta: "" +*da.cupsMarkerName yellow/Gul: "" +*da.cupsMarkerName black/Sort: "" +*de.Translation Manufacturer/HP: "" +*de.Translation ModelName/HP Color LaserJet Pro M252: "" +*de.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*de.Translation NickName/HP Color LaserJet Pro M252: "" +*de.Translation PageSize/Mediengröße: "" +*de.PageSize Letter/US Letter: "" +*de.PageSize Legal/US Legal: "" +*de.PageSize Executive/Executive: "" +*de.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*de.PageSize 4x6/4x6: "" +*de.PageSize 5x8/5x8: "" +*de.PageSize A4/A4: "" +*de.PageSize A5/A5: "" +*de.PageSize A6/A6: "" +*de.PageSize B5/JIS B5: "" +*de.PageSize B6/JIS B6: "" +*de.PageSize Env4x6/10x15 cm: "" +*de.PageSize Oficio/Oficio 216x340 mm: "" +*de.PageSize 195x270mm/16K 195x270 mm: "" +*de.PageSize 184x260mm/16K 184x260 mm: "" +*de.PageSize 7.75x10.75/16K 197x273 mm: "" +*de.PageSize Postcard/Postcard: "" +*de.PageSize DoublePostcardRotated/Postkarte - Doppelt - breite Seite: "" +*de.PageSize Env10/Umschlag Comm10: "" +*de.PageSize EnvMonarch/Umschlag Monarch: "" +*de.PageSize EnvISOB5/Umschlag ISO B5: "" +*de.PageSize EnvC5/Umschlag C5: "" +*de.PageSize EnvDL/Umschlag DL: "" +*de.Translation Duplex/Beidseitig: "" +*de.Duplex None/Aus: "" +*de.Duplex DuplexNoTumble/Bindung an langer Kante: "" +*de.Duplex DuplexTumble/Bindung an kurzer Kante: "" +*de.Translation InputSlot/Papiereinzug: "" +*de.InputSlot Tray1/Zufuhrfach 1: "" +*de.InputSlot Tray2/Zufuhrfach 2: "" +*de.InputSlot ManualFeed/Manuelle Zufuhr: "" +*de.Translation InstallableOptions/Installable Options: "" +*de.Translation HPOption_Duplexer/Duplexdruck-Zubehör: "" +*de.HPOption_Duplexer True/Ein: "" +*de.HPOption_Duplexer False/Aus: "" +*de.Translation HPColorOptionsPanel/Farbe: "" +*de.Translation HPPJLColorAsGray/In Graustufen drucken: "" +*de.HPPJLColorAsGray yes/Ein: "" +*de.HPPJLColorAsGray no/Aus: "" +*de.Translation HPRGBEmulation/RGB-Farbe: "" +*de.HPRGBEmulation DefaultSRGB/Standard (sRGB): "" +*de.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*de.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*de.HPRGBEmulation VividSRGB/Leuchtend (sRGB): "" +*de.HPRGBEmulation HPRGBEmulationNone/Keine: "" +*de.Translation HPEdgeControl/Randsteuerung: "" +*de.HPEdgeControl HPEdgeControlOff/Aus: "" +*de.HPEdgeControl Light/Hell: "" +*de.HPEdgeControl Normal/Normal: "" +*de.HPEdgeControl Max/Maximal: "" +*de.Translation HPGeneralHalftone/Halbton: "" +*de.HPGeneralHalftone Smooth/Geglättet: "" +*de.HPGeneralHalftone Detail/Detailliert: "" +*de.Translation HPTextNeutralGrays/Text - neutrales Grau: "" +*de.HPTextNeutralGrays Black/Nur Schwarz: "" +*de.HPTextNeutralGrays ProcessBlack/4-Farbig: "" +*de.Translation HPGraphicsNeutralGrays/Grafik - neutrales Grau: "" +*de.HPGraphicsNeutralGrays Black/Nur Schwarz: "" +*de.HPGraphicsNeutralGrays ProcessBlack/4-Farbig: "" +*de.Translation HPPhotoNeutralGrays/Foto - neutrales Grau: "" +*de.HPPhotoNeutralGrays Black/Nur Schwarz: "" +*de.HPPhotoNeutralGrays ProcessBlack/4-Farbig: "" +*de.Translation HPPaperQualityPanel/Paper/Quality: "" +*de.Translation HPPJLEconoMode/EconoMode: "" +*de.HPPJLEconoMode True/Ein: "" +*de.HPPJLEconoMode False/Aus: "" +*de.Translation MediaType/Druckmedientyp: "" +*de.MediaType Unspecified/Nicht bestimmt: "" +*de.MediaType Plain/Normalpapier: "" +*de.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*de.MediaType HPLaserJet90/HP LaserJet, 90g: "" +*de.MediaType HPColorLaserMatte105/HP Color Laser 105g, matt: "" +*de.MediaType HPPremiumChoiceMatte120/HP Premium Choice 120g, matt: "" +*de.MediaType HPBrochureMatte150/HP Broschürenpapier, matt 150g: "" +*de.MediaType HPCoverMatte200/HP Deckblattpapier 200g, matt: "" +*de.MediaType HPMattePhoto200/HP Fotopapier, matt 200g: "" +*de.MediaType HPPremiumPresentationGlossy120/HP Premium Präsentationspapier, hochglänzend 120g: "" +*de.MediaType HPBrochureGlossy150/HP Broschürenpapier, hochglänzend 150g: "" +*de.MediaType HPTrifoldBrochureGlossy150/HP Broschürenpapier, dreifach gefaltet, hochglänzend 150g: "" +*de.MediaType HPBrochureGlossy200/HP Broschürenpapier, hochglänzend 200g: "" +*de.MediaType Light6074/Leicht 60-74g: "" +*de.MediaType Intermediate8595/Mittelschwer 85-95g: "" +*de.MediaType MidWeight96110/Mittleres Gewicht 96-110g: "" +*de.MediaType Heavy111130/Schwer 111-130g: "" +*de.MediaType ExtraHeavy131175/Sehr schwer 131-175g: "" +*de.MediaType HeavyGlossy111130/Hochglanz, schwer 111-130g: "" +*de.MediaType ExtraHeavyGlossy131175/Hochglanz, extraschwer 131-175g: "" +*de.MediaType CardGlossy176220/Karte 176-220g, hochglänzend: "" +*de.MediaType ColorLaserTransparency/Color Laser-Transparentfolie: "" +*de.MediaType Labels/Etiketten: "" +*de.MediaType Letterhead/Briefkopfpapier: "" +*de.MediaType Envelope/Briefumschlag: "" +*de.MediaType HeavyEnvelope/Schwerer Briefumschlag: "" +*de.MediaType Preprinted/Vordruckpapier: "" +*de.MediaType Prepunched/Vorgelochtes Papier: "" +*de.MediaType Colored/Farbig: "" +*de.MediaType Bond/Briefpapier: "" +*de.MediaType Recycled/Recyclingpapier: "" +*de.MediaType Rough/Rauhpapier: "" +*de.MediaType HeavyRough/Schwer Rau: "" +*de.MediaType OpaqueFilm/Folie, opak: "" +*de.APPrinterPreset ChartsAndGraphs/Diagramme & Grafiken: "" +*de.cupsICCProfile RGB../sRGB Matching Profile: "" +*de.cupsICCProfile CMYK../CMYK Matching Profile: "" +*de.cupsICCProfile Gray../Gray Matching Profile: "" +*de.cupsMarkerName cyan/Zyan: "" +*de.cupsMarkerName magenta/Magenta: "" +*de.cupsMarkerName yellow/Gelb: "" +*de.cupsMarkerName black/Schwarz: "" +*es.Translation Manufacturer/HP: "" +*es.Translation ModelName/HP Color LaserJet Pro M252: "" +*es.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*es.Translation NickName/HP Color LaserJet Pro M252: "" +*es.Translation PageSize/Tamaño de papel: "" +*es.PageSize Letter/US Letter: "" +*es.PageSize Legal/US Legal: "" +*es.PageSize Executive/Ejecutivo: "" +*es.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*es.PageSize 4x6/4x6: "" +*es.PageSize 5x8/5x8: "" +*es.PageSize A4/A4: "" +*es.PageSize A5/A5: "" +*es.PageSize A6/A6: "" +*es.PageSize B5/JIS B5: "" +*es.PageSize B6/JIS B6: "" +*es.PageSize Env4x6/10x15 cm: "" +*es.PageSize Oficio/Oficio 216x340 mm: "" +*es.PageSize 195x270mm/16K 195x270 mm: "" +*es.PageSize 184x260mm/16K 184x260 mm: "" +*es.PageSize 7.75x10.75/16K 197x273 mm: "" +*es.PageSize Postcard/Postcard: "" +*es.PageSize DoublePostcardRotated/Postal doble borde largo: "" +*es.PageSize Env10/Sobre Comm10: "" +*es.PageSize EnvMonarch/Sobre Monarch: "" +*es.PageSize EnvISOB5/Sobre ISO B5: "" +*es.PageSize EnvC5/Sobre C5: "" +*es.PageSize EnvDL/Sobre DL: "" +*es.Translation Duplex/A doble cara: "" +*es.Duplex None/Desactivado: "" +*es.Duplex DuplexNoTumble/Encuadernación de borde largo: "" +*es.Duplex DuplexTumble/Encuadernación de borde corto: "" +*es.Translation InputSlot/Alimentador de papel: "" +*es.InputSlot Tray1/Bandeja 1: "" +*es.InputSlot Tray2/Bandeja 2: "" +*es.InputSlot ManualFeed/Alimentación manual: "" +*es.Translation InstallableOptions/Installable Options: "" +*es.Translation HPOption_Duplexer/Accesorio para impresión dúplex: "" +*es.HPOption_Duplexer True/Activado: "" +*es.HPOption_Duplexer False/Desactivado: "" +*es.Translation HPColorOptionsPanel/Color: "" +*es.Translation HPPJLColorAsGray/Imprimir colores en gris: "" +*es.HPPJLColorAsGray yes/Activado: "" +*es.HPPJLColorAsGray no/Desactivado: "" +*es.Translation HPRGBEmulation/Color RGB: "" +*es.HPRGBEmulation DefaultSRGB/Predeterminado (sRGB): "" +*es.HPRGBEmulation PhotoSRGB/Fotografía (sRGB): "" +*es.HPRGBEmulation Adobe/Fotografía (Adobe RGB 1998): "" +*es.HPRGBEmulation VividSRGB/Intenso (sRGB): "" +*es.HPRGBEmulation HPRGBEmulationNone/Ninguno: "" +*es.Translation HPEdgeControl/Control de bordes: "" +*es.HPEdgeControl HPEdgeControlOff/Desactivado: "" +*es.HPEdgeControl Light/Claro: "" +*es.HPEdgeControl Normal/Normal: "" +*es.HPEdgeControl Max/Máximo: "" +*es.Translation HPGeneralHalftone/Medios tonos: "" +*es.HPGeneralHalftone Smooth/Uniforme: "" +*es.HPGeneralHalftone Detail/Detalle: "" +*es.Translation HPTextNeutralGrays/Gris neutro de texto: "" +*es.HPTextNeutralGrays Black/Sólo negro: "" +*es.HPTextNeutralGrays ProcessBlack/4 colores: "" +*es.Translation HPGraphicsNeutralGrays/Gris neutro de gráfico: "" +*es.HPGraphicsNeutralGrays Black/Sólo negro: "" +*es.HPGraphicsNeutralGrays ProcessBlack/4 colores: "" +*es.Translation HPPhotoNeutralGrays/Gris neutro de fotografías: "" +*es.HPPhotoNeutralGrays Black/Sólo negro: "" +*es.HPPhotoNeutralGrays ProcessBlack/4 colores: "" +*es.Translation HPPaperQualityPanel/Paper/Quality: "" +*es.Translation HPPJLEconoMode/EconoMode: "" +*es.HPPJLEconoMode True/Activado: "" +*es.HPPJLEconoMode False/Desactivado: "" +*es.Translation MediaType/Tipo de sustrato: "" +*es.MediaType Unspecified/No especificado: "" +*es.MediaType Plain/Estándar: "" +*es.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*es.MediaType HPLaserJet90/HP LaserJet 90g: "" +*es.MediaType HPColorLaserMatte105/Impresión láser color mate HP 105g: "" +*es.MediaType HPPremiumChoiceMatte120/HP Premium Choice satinado 120g: "" +*es.MediaType HPBrochureMatte150/Prospecto HP mate 150g: "" +*es.MediaType HPCoverMatte200/Portada mate HP 200g: "" +*es.MediaType HPMattePhoto200/Fotográfico mate HP 200g: "" +*es.MediaType HPPremiumPresentationGlossy120/Presentaciones HP Premium satinadas 120g: "" +*es.MediaType HPBrochureGlossy150/Prospecto HP satinado 150g: "" +*es.MediaType HPTrifoldBrochureGlossy150/Prospecto estilo tríptico HP satinado 150g: "" +*es.MediaType HPBrochureGlossy200/Prospecto HP satinado 200g: "" +*es.MediaType Light6074/Ligero 60-74g: "" +*es.MediaType Intermediate8595/Intermedio 85-95g: "" +*es.MediaType MidWeight96110/Peso medio 96-110g: "" +*es.MediaType Heavy111130/Pesado 111-130g: "" +*es.MediaType ExtraHeavy131175/Pesado extra 131-175g: "" +*es.MediaType HeavyGlossy111130/Satinado pesado 111-130g: "" +*es.MediaType ExtraHeavyGlossy131175/Extra grueso brillante 131-175g: "" +*es.MediaType CardGlossy176220/Tarjeta satinado 176-220g: "" +*es.MediaType ColorLaserTransparency/Transparencia impresión láser: "" +*es.MediaType Labels/Etiquetas: "" +*es.MediaType Letterhead/Membrete: "" +*es.MediaType Envelope/Sobre: "" +*es.MediaType HeavyEnvelope/Sobre pesado: "" +*es.MediaType Preprinted/Preimpreso: "" +*es.MediaType Prepunched/Preperforado: "" +*es.MediaType Colored/Coloreado: "" +*es.MediaType Bond/Bond: "" +*es.MediaType Recycled/Reciclado: "" +*es.MediaType Rough/Rugoso: "" +*es.MediaType HeavyRough/Pesado rugoso: "" +*es.MediaType OpaqueFilm/Película opaca: "" +*es.APPrinterPreset ChartsAndGraphs/Cuadros y gráficos: "" +*es.cupsICCProfile RGB../sRGB Matching Profile: "" +*es.cupsICCProfile CMYK../CMYK Matching Profile: "" +*es.cupsICCProfile Gray../Gray Matching Profile: "" +*es.cupsMarkerName cyan/Cian: "" +*es.cupsMarkerName magenta/Magenta: "" +*es.cupsMarkerName yellow/Amarillo: "" +*es.cupsMarkerName black/Negro: "" +*fi.Translation Manufacturer/HP: "" +*fi.Translation ModelName/HP Color LaserJet Pro M252: "" +*fi.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*fi.Translation NickName/HP Color LaserJet Pro M252: "" +*fi.Translation PageSize/Median koko: "" +*fi.PageSize Letter/US Letter: "" +*fi.PageSize Legal/US Legal: "" +*fi.PageSize Executive/Executive: "" +*fi.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*fi.PageSize 4x6/4x6: "" +*fi.PageSize 5x8/5x8: "" +*fi.PageSize A4/A4: "" +*fi.PageSize A5/A5: "" +*fi.PageSize A6/A6: "" +*fi.PageSize B5/JIS B5: "" +*fi.PageSize B6/JIS B6: "" +*fi.PageSize Env4x6/10x15 cm: "" +*fi.PageSize Oficio/Oficio 216x340 mm: "" +*fi.PageSize 195x270mm/16K 195x270 mm: "" +*fi.PageSize 184x260mm/16K 184x260 mm: "" +*fi.PageSize 7.75x10.75/16K 197x273 mm: "" +*fi.PageSize Postcard/Postcard: "" +*fi.PageSize DoublePostcardRotated/Kaksoispostikortti (pitkä reuna): "" +*fi.PageSize Env10/Kirjekuori Comm10: "" +*fi.PageSize EnvMonarch/Kirjekuori Monarch: "" +*fi.PageSize EnvISOB5/Kirjekuori ISO B5: "" +*fi.PageSize EnvC5/Kirjekuori C5: "" +*fi.PageSize EnvDL/Kirjekuori DL: "" +*fi.Translation Duplex/Kaksipuolinen: "" +*fi.Duplex None/Ei käytössä: "" +*fi.Duplex DuplexNoTumble/Sidonta-pitkäreuna: "" +*fi.Duplex DuplexTumble/Sidonta-lyhytreuna: "" +*fi.Translation InputSlot/Paperinsyöttö: "" +*fi.InputSlot Tray1/Lokero 1: "" +*fi.InputSlot Tray2/Lokero 2: "" +*fi.InputSlot ManualFeed/Käsinsyöttö: "" +*fi.Translation InstallableOptions/Installable Options: "" +*fi.Translation HPOption_Duplexer/Kaksipuolisen tulostuksen lisälaite: "" +*fi.HPOption_Duplexer True/Käytössä: "" +*fi.HPOption_Duplexer False/Ei käytössä: "" +*fi.Translation HPColorOptionsPanel/Väri: "" +*fi.Translation HPPJLColorAsGray/Tulosta värit harmaina: "" +*fi.HPPJLColorAsGray yes/Käytössä: "" +*fi.HPPJLColorAsGray no/Ei käytössä: "" +*fi.Translation HPRGBEmulation/RGB-väri: "" +*fi.HPRGBEmulation DefaultSRGB/Oletus (sRGB): "" +*fi.HPRGBEmulation PhotoSRGB/Valokuva (sRGB): "" +*fi.HPRGBEmulation Adobe/Valokuva (Adobe RGB 1998): "" +*fi.HPRGBEmulation VividSRGB/Kirkas (sRGB): "" +*fi.HPRGBEmulation HPRGBEmulationNone/Ei mitään: "" +*fi.Translation HPEdgeControl/Reunojen hallinta: "" +*fi.HPEdgeControl HPEdgeControlOff/Ei käytössä: "" +*fi.HPEdgeControl Light/Vaalea: "" +*fi.HPEdgeControl Normal/Normaali: "" +*fi.HPEdgeControl Max/Maksimi: "" +*fi.Translation HPGeneralHalftone/Puolisävy: "" +*fi.HPGeneralHalftone Smooth/Tasainen: "" +*fi.HPGeneralHalftone Detail/Yksityiskohtainen: "" +*fi.Translation HPTextNeutralGrays/Teksti, neutraali harmaa: "" +*fi.HPTextNeutralGrays Black/Vain musta: "" +*fi.HPTextNeutralGrays ProcessBlack/Neliväri: "" +*fi.Translation HPGraphicsNeutralGrays/Kuva, neutraali harmaa: "" +*fi.HPGraphicsNeutralGrays Black/Vain musta: "" +*fi.HPGraphicsNeutralGrays ProcessBlack/Neliväri: "" +*fi.Translation HPPhotoNeutralGrays/Val., neutraali harmaa: "" +*fi.HPPhotoNeutralGrays Black/Vain musta: "" +*fi.HPPhotoNeutralGrays ProcessBlack/Neliväri: "" +*fi.Translation HPPaperQualityPanel/Paper/Quality: "" +*fi.Translation HPPJLEconoMode/EconoMode: "" +*fi.HPPJLEconoMode True/Käytössä: "" +*fi.HPPJLEconoMode False/Ei käytössä: "" +*fi.Translation MediaType/Tulostusmateriaali: "" +*fi.MediaType Unspecified/Määrittämätön: "" +*fi.MediaType Plain/Tavallinen: "" +*fi.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*fi.MediaType HPLaserJet90/HP LaserJet, 90g: "" +*fi.MediaType HPColorLaserMatte105/HP<3A>n matta värilaser 105g: "" +*fi.MediaType HPPremiumChoiceMatte120/HP Premium Choice, matta 120g: "" +*fi.MediaType HPBrochureMatte150/HP<3A>n matta esite 150g: "" +*fi.MediaType HPCoverMatte200/HP<3A>n matta kansi 200g: "" +*fi.MediaType HPMattePhoto200/HP<3A>n matta valokuva 200g: "" +*fi.MediaType HPPremiumPresentationGlossy120/HP Premium -esitys, kiiltävä 120g: "" +*fi.MediaType HPBrochureGlossy150/HP<3A>n kiiltävä esite 150g: "" +*fi.MediaType HPTrifoldBrochureGlossy150/HP<3A>n kolminkertainen esite 150g: "" +*fi.MediaType HPBrochureGlossy200/HP<3A>n kiiltävä esite 200g: "" +*fi.MediaType Light6074/Kevyt 60-74g: "" +*fi.MediaType Intermediate8595/Keskikoko 85-95g: "" +*fi.MediaType MidWeight96110/Keskipaksu 96-110g: "" +*fi.MediaType Heavy111130/Paksu 111-130g: "" +*fi.MediaType ExtraHeavy131175/Erittäin paksu 131-175g: "" +*fi.MediaType HeavyGlossy111130/Raskas kiiltävä 111-130g: "" +*fi.MediaType ExtraHeavyGlossy131175/Er. raskas kiiltävä 131-175g: "" +*fi.MediaType CardGlossy176220/Kiiltävä kortti 176-220g: "" +*fi.MediaType ColorLaserTransparency/Värilaserkalvo: "" +*fi.MediaType Labels/Tarrat: "" +*fi.MediaType Letterhead/Kirjelomake: "" +*fi.MediaType Envelope/Kirjekuori: "" +*fi.MediaType HeavyEnvelope/Paksu kirjekuori: "" +*fi.MediaType Preprinted/Esipainettu: "" +*fi.MediaType Prepunched/Rei’itetty: "" +*fi.MediaType Colored/Värillinen: "" +*fi.MediaType Bond/Kova asiakirjapaperi: "" +*fi.MediaType Recycled/Uusiopaperi: "" +*fi.MediaType Rough/Karkea: "" +*fi.MediaType HeavyRough/Paksu karkea: "" +*fi.MediaType OpaqueFilm/Läpikuultamaton kalvo: "" +*fi.APPrinterPreset ChartsAndGraphs/Kaaviot ja grafiikka: "" +*fi.cupsICCProfile RGB../sRGB Matching Profile: "" +*fi.cupsICCProfile CMYK../CMYK Matching Profile: "" +*fi.cupsICCProfile Gray../Gray Matching Profile: "" +*fi.cupsMarkerName cyan/Syaani: "" +*fi.cupsMarkerName magenta/Magenta: "" +*fi.cupsMarkerName yellow/Keltainen: "" +*fi.cupsMarkerName black/Musta: "" +*fr.Translation Manufacturer/HP: "" +*fr.Translation ModelName/HP Color LaserJet Pro M252: "" +*fr.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*fr.Translation NickName/HP Color LaserJet Pro M252: "" +*fr.Translation PageSize/Taille du papier: "" +*fr.PageSize Letter/US Letter: "" +*fr.PageSize Legal/US Legal: "" +*fr.PageSize Executive/Exécutif: "" +*fr.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*fr.PageSize 4x6/4x6: "" +*fr.PageSize 5x8/5x8: "" +*fr.PageSize A4/A4: "" +*fr.PageSize A5/A5: "" +*fr.PageSize A6/A6: "" +*fr.PageSize B5/JIS B5: "" +*fr.PageSize B6/JIS B6: "" +*fr.PageSize Env4x6/10x15 cm: "" +*fr.PageSize Oficio/Oficio 216x340 mm: "" +*fr.PageSize 195x270mm/16K 195x270 mm: "" +*fr.PageSize 184x260mm/16K 184x260 mm: "" +*fr.PageSize 7.75x10.75/16K 197x273 mm: "" +*fr.PageSize Postcard/Postcard: "" +*fr.PageSize DoublePostcardRotated/Carte postale double - Long bord: "" +*fr.PageSize Env10/Enveloppe Comm10: "" +*fr.PageSize EnvMonarch/Enveloppe Monarch: "" +*fr.PageSize EnvISOB5/Enveloppe ISO B5: "" +*fr.PageSize EnvC5/Enveloppe C5: "" +*fr.PageSize EnvDL/Enveloppe DL: "" +*fr.Translation Duplex/Recto verso: "" +*fr.Duplex None/Désactivé: "" +*fr.Duplex DuplexNoTumble/Reliure côté long: "" +*fr.Duplex DuplexTumble/Reliure côté court: "" +*fr.Translation InputSlot/Alimentation: "" +*fr.InputSlot Tray1/Bac 1: "" +*fr.InputSlot Tray2/Bac 2: "" +*fr.InputSlot ManualFeed/Alimentation manuelle: "" +*fr.Translation InstallableOptions/Installable Options: "" +*fr.Translation HPOption_Duplexer/Unité recto verso: "" +*fr.HPOption_Duplexer True/Activé: "" +*fr.HPOption_Duplexer False/Désactivé: "" +*fr.Translation HPColorOptionsPanel/Couleur: "" +*fr.Translation HPPJLColorAsGray/Imprimer couleur en gris: "" +*fr.HPPJLColorAsGray yes/Activé: "" +*fr.HPPJLColorAsGray no/Désactivé: "" +*fr.Translation HPRGBEmulation/Couleur RGB: "" +*fr.HPRGBEmulation DefaultSRGB/Par défaut (sRGB): "" +*fr.HPRGBEmulation PhotoSRGB/Photo (sRGB): "" +*fr.HPRGBEmulation Adobe/Photo (Adobe RGB 1998): "" +*fr.HPRGBEmulation VividSRGB/Vive (sRGB): "" +*fr.HPRGBEmulation HPRGBEmulationNone/Aucun: "" +*fr.Translation HPEdgeControl/Contrôle du bord: "" +*fr.HPEdgeControl HPEdgeControlOff/Désactivé: "" +*fr.HPEdgeControl Light/Clair: "" +*fr.HPEdgeControl Normal/Normal: "" +*fr.HPEdgeControl Max/Maximum: "" +*fr.Translation HPGeneralHalftone/Demi-teinte: "" +*fr.HPGeneralHalftone Smooth/Lisse: "" +*fr.HPGeneralHalftone Detail/Détaillées: "" +*fr.Translation HPTextNeutralGrays/Texte gris neutre: "" +*fr.HPTextNeutralGrays Black/Noir uniquement: "" +*fr.HPTextNeutralGrays ProcessBlack/4 couleurs: "" +*fr.Translation HPGraphicsNeutralGrays/Graphiques gris neutre: "" +*fr.HPGraphicsNeutralGrays Black/Noir uniquement: "" +*fr.HPGraphicsNeutralGrays ProcessBlack/4 couleurs: "" +*fr.Translation HPPhotoNeutralGrays/Photo gris neutre: "" +*fr.HPPhotoNeutralGrays Black/Noir uniquement: "" +*fr.HPPhotoNeutralGrays ProcessBlack/4 couleurs: "" +*fr.Translation HPPaperQualityPanel/Paper/Quality: "" +*fr.Translation HPPJLEconoMode/EconoMode: "" +*fr.HPPJLEconoMode True/Activé: "" +*fr.HPPJLEconoMode False/Désactivé: "" +*fr.Translation MediaType/Type de support: "" +*fr.MediaType Unspecified/Non spécifié: "" +*fr.MediaType Plain/Ordinaire: "" +*fr.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*fr.MediaType HPLaserJet90/HP LaserJet 90g: "" +*fr.MediaType HPColorLaserMatte105/Papier couleur laser mat 105g HP: "" +*fr.MediaType HPPremiumChoiceMatte120/Papier 120g mat HP Premium Choice: "" +*fr.MediaType HPBrochureMatte150/HP Brochure Mat 150g: "" +*fr.MediaType HPCoverMatte200/Couverture mate 200g HP: "" +*fr.MediaType HPMattePhoto200/Papier photo mat HP 200g: "" +*fr.MediaType HPPremiumPresentationGlossy120/Papier brillant pour présentation HP Premium 120g: "" +*fr.MediaType HPBrochureGlossy150/HP Brochure Brillant 150g: "" +*fr.MediaType HPTrifoldBrochureGlossy150/Papier pour brochure plié en trois HP, brillant, 150g: "" +*fr.MediaType HPBrochureGlossy200/HP Brochure Brillant 200g: "" +*fr.MediaType Light6074/Fin 60-74g: "" +*fr.MediaType Intermediate8595/Intermédiaire 85-95g: "" +*fr.MediaType MidWeight96110/Grammage moyen 96-110g: "" +*fr.MediaType Heavy111130/Epais 111-130g: "" +*fr.MediaType ExtraHeavy131175/Très épais 131-175g: "" +*fr.MediaType HeavyGlossy111130/Glacé et épais 111-130g: "" +*fr.MediaType ExtraHeavyGlossy131175/Papier glacé extra fort 131-175g: "" +*fr.MediaType CardGlossy176220/Carte brillante 176-220g: "" +*fr.MediaType ColorLaserTransparency/Transpar. laser couleur: "" +*fr.MediaType Labels/Étiquettes: "" +*fr.MediaType Letterhead/Papier à en-tête: "" +*fr.MediaType Envelope/Enveloppe: "" +*fr.MediaType HeavyEnvelope/Enveloppe à fort grammage: "" +*fr.MediaType Preprinted/Préimprimé: "" +*fr.MediaType Prepunched/Perforé: "" +*fr.MediaType Colored/Coloré: "" +*fr.MediaType Bond/Document: "" +*fr.MediaType Recycled/Recyclé: "" +*fr.MediaType Rough/Rugueux: "" +*fr.MediaType HeavyRough/Epais rugueux: "" +*fr.MediaType OpaqueFilm/Film opaque: "" +*fr.APPrinterPreset ChartsAndGraphs/Diagrammes et graphiques: "" +*fr.cupsICCProfile RGB../sRGB Matching Profile: "" +*fr.cupsICCProfile CMYK../CMYK Matching Profile: "" +*fr.cupsICCProfile Gray../Gray Matching Profile: "" +*fr.cupsMarkerName cyan/Cyan: "" +*fr.cupsMarkerName magenta/Magenta: "" +*fr.cupsMarkerName yellow/Jaune: "" +*fr.cupsMarkerName black/Noir: "" +*it.Translation Manufacturer/HP: "" +*it.Translation ModelName/HP Color LaserJet Pro M252: "" +*it.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*it.Translation NickName/HP Color LaserJet Pro M252: "" +*it.Translation PageSize/Dimensione media: "" +*it.PageSize Letter/US Letter: "" +*it.PageSize Legal/US Legal: "" +*it.PageSize Executive/Executive: "" +*it.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*it.PageSize 4x6/4x6: "" +*it.PageSize 5x8/5x8: "" +*it.PageSize A4/A4: "" +*it.PageSize A5/A5: "" +*it.PageSize A6/A6: "" +*it.PageSize B5/JIS B5: "" +*it.PageSize B6/JIS B6: "" +*it.PageSize Env4x6/10x15 cm: "" +*it.PageSize Oficio/Oficio 216x340 mm: "" +*it.PageSize 195x270mm/16K 195x270 mm: "" +*it.PageSize 184x260mm/16K 184x260 mm: "" +*it.PageSize 7.75x10.75/16K 197x273 mm: "" +*it.PageSize Postcard/Postcard: "" +*it.PageSize DoublePostcardRotated/Cartolina doppia Bordo lungo: "" +*it.PageSize Env10/Busta Comm10: "" +*it.PageSize EnvMonarch/Busta Monarch: "" +*it.PageSize EnvISOB5/Busta ISO B5: "" +*it.PageSize EnvC5/Busta C5: "" +*it.PageSize EnvDL/Busta DL: "" +*it.Translation Duplex/Fronte-retro: "" +*it.Duplex None/Disattivato: "" +*it.Duplex DuplexNoTumble/Rilegatura con taglio largo: "" +*it.Duplex DuplexTumble/Rilegatura con taglio stretto: "" +*it.Translation InputSlot/Alimentazione carta: "" +*it.InputSlot Tray1/Vassoio 1: "" +*it.InputSlot Tray2/Vassoio 2: "" +*it.InputSlot ManualFeed/Alimentazione manuale: "" +*it.Translation InstallableOptions/Installable Options: "" +*it.Translation HPOption_Duplexer/Accessorio per stampa duplex: "" +*it.HPOption_Duplexer True/Attivato: "" +*it.HPOption_Duplexer False/Disattivato: "" +*it.Translation HPColorOptionsPanel/Colore: "" +*it.Translation HPPJLColorAsGray/Stampa colore in grigio: "" +*it.HPPJLColorAsGray yes/Attivato: "" +*it.HPPJLColorAsGray no/Disattivato: "" +*it.Translation HPRGBEmulation/Colore RGB: "" +*it.HPRGBEmulation DefaultSRGB/Predefinito (sRGB): "" +*it.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*it.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*it.HPRGBEmulation VividSRGB/Brillante (sRGB): "" +*it.HPRGBEmulation HPRGBEmulationNone/Nessuna: "" +*it.Translation HPEdgeControl/Controllo margine: "" +*it.HPEdgeControl HPEdgeControlOff/Disattivato: "" +*it.HPEdgeControl Light/Chiaro: "" +*it.HPEdgeControl Normal/Normale: "" +*it.HPEdgeControl Max/Massimo: "" +*it.Translation HPGeneralHalftone/Mezzitoni: "" +*it.HPGeneralHalftone Smooth/Uniformi: "" +*it.HPGeneralHalftone Detail/Dettagli: "" +*it.Translation HPTextNeutralGrays/Grigi neutri testo: "" +*it.HPTextNeutralGrays Black/Solo nero: "" +*it.HPTextNeutralGrays ProcessBlack/Quadricromia: "" +*it.Translation HPGraphicsNeutralGrays/Grigi neutri grafici: "" +*it.HPGraphicsNeutralGrays Black/Solo nero: "" +*it.HPGraphicsNeutralGrays ProcessBlack/Quadricromia: "" +*it.Translation HPPhotoNeutralGrays/Grigi neutri fotografie: "" +*it.HPPhotoNeutralGrays Black/Solo nero: "" +*it.HPPhotoNeutralGrays ProcessBlack/Quadricromia: "" +*it.Translation HPPaperQualityPanel/Paper/Quality: "" +*it.Translation HPPJLEconoMode/EconoMode: "" +*it.HPPJLEconoMode True/Attivato: "" +*it.HPPJLEconoMode False/Disattivato: "" +*it.Translation MediaType/Tipo di supporto: "" +*it.MediaType Unspecified/Non specificato: "" +*it.MediaType Plain/Normale: "" +*it.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*it.MediaType HPLaserJet90/HP LaserJet 90g: "" +*it.MediaType HPColorLaserMatte105/Opaca a colori per stampanti laser HP 105g: "" +*it.MediaType HPPremiumChoiceMatte120/Opaca HP alta qualità 120g: "" +*it.MediaType HPBrochureMatte150/Brochure opaca 150g HP: "" +*it.MediaType HPCoverMatte200/Copertina opaca HP 200g: "" +*it.MediaType HPMattePhoto200/Fotografica opaca HP 200g: "" +*it.MediaType HPPremiumPresentationGlossy120/Presentazione lucida ad alta qualità 120g HP: "" +*it.MediaType HPBrochureGlossy150/Brochure lucida 150g HP: "" +*it.MediaType HPTrifoldBrochureGlossy150/Brochure lucida piegata in tre 150g HP: "" +*it.MediaType HPBrochureGlossy200/Brochure lucida 200g HP: "" +*it.MediaType Light6074/Leggera 60-74g: "" +*it.MediaType Intermediate8595/Intermedia 85-95g: "" +*it.MediaType MidWeight96110/Medio spessore 96-110g: "" +*it.MediaType Heavy111130/Pesante 111-130g: "" +*it.MediaType ExtraHeavy131175/Extra Pesante 131-175g: "" +*it.MediaType HeavyGlossy111130/Carta patinata pesante 111-130g: "" +*it.MediaType ExtraHeavyGlossy131175/Lucida pesante extra 131-175g: "" +*it.MediaType CardGlossy176220/Scheda lucida 176-220g: "" +*it.MediaType ColorLaserTransparency/Lucido per stampanti laser a colori: "" +*it.MediaType Labels/Etichette: "" +*it.MediaType Letterhead/Carta intestata: "" +*it.MediaType Envelope/Busta: "" +*it.MediaType HeavyEnvelope/Busta pesante: "" +*it.MediaType Preprinted/Prestampata: "" +*it.MediaType Prepunched/Perforata: "" +*it.MediaType Colored/Colorata: "" +*it.MediaType Bond/Carta fine: "" +*it.MediaType Recycled/Riciclata: "" +*it.MediaType Rough/Ruvida: "" +*it.MediaType HeavyRough/Ruvida pesante: "" +*it.MediaType OpaqueFilm/Pellicola opaca: "" +*it.APPrinterPreset ChartsAndGraphs/Diagrammi e grafici: "" +*it.cupsICCProfile RGB../sRGB Matching Profile: "" +*it.cupsICCProfile CMYK../CMYK Matching Profile: "" +*it.cupsICCProfile Gray../Gray Matching Profile: "" +*it.cupsMarkerName cyan/Ciano: "" +*it.cupsMarkerName magenta/Magenta: "" +*it.cupsMarkerName yellow/Giallo: "" +*it.cupsMarkerName black/Nero: "" +*ja.Translation Manufacturer/HP: "" +*ja.Translation ModelName/HP Color LaserJet Pro M252: "" +*ja.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*ja.Translation NickName/HP Color LaserJet Pro M252: "" +*ja.Translation PageSize/メディアサイズ: "" +*ja.PageSize Letter/US Letter: "" +*ja.PageSize Legal/US Legal: "" +*ja.PageSize Executive/エグゼクティブ: "" +*ja.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*ja.PageSize 4x6/4x6: "" +*ja.PageSize 5x8/5x8: "" +*ja.PageSize A4/A4: "" +*ja.PageSize A5/A5: "" +*ja.PageSize A6/A6: "" +*ja.PageSize B5/JIS B5: "" +*ja.PageSize B6/JIS B6: "" +*ja.PageSize Env4x6/10x15 cm: "" +*ja.PageSize Oficio/Oficio 216x340 mm: "" +*ja.PageSize 195x270mm/16K 195x270 mm: "" +*ja.PageSize 184x260mm/16K 184x260 mm: "" +*ja.PageSize 7.75x10.75/16K 197x273 mm: "" +*ja.PageSize Postcard/Postcard: "" +*ja.PageSize DoublePostcardRotated/往復はがき 横: "" +*ja.PageSize Env10/封筒 Comm10: "" +*ja.PageSize EnvMonarch/封筒 Monarch: "" +*ja.PageSize EnvISOB5/封筒 ISO B5: "" +*ja.PageSize EnvC5/封筒 C5: "" +*ja.PageSize EnvDL/封筒 DL: "" +*ja.Translation Duplex/両面: "" +*ja.Duplex None/オフ: "" +*ja.Duplex DuplexNoTumble/長辺とじ: "" +*ja.Duplex DuplexTumble/短辺とじ: "" +*ja.Translation InputSlot/給紙: "" +*ja.InputSlot Tray1/トレイ 1: "" +*ja.InputSlot Tray2/トレイ 2: "" +*ja.InputSlot ManualFeed/手差し: "" +*ja.Translation InstallableOptions/Installable Options: "" +*ja.Translation HPOption_Duplexer/両面印刷アクセサリ: "" +*ja.HPOption_Duplexer True/オン: "" +*ja.HPOption_Duplexer False/オフ: "" +*ja.Translation HPColorOptionsPanel/カラー: "" +*ja.Translation HPPJLColorAsGray/グレー印刷: "" +*ja.HPPJLColorAsGray yes/オン: "" +*ja.HPPJLColorAsGray no/オフ: "" +*ja.Translation HPRGBEmulation/RGB カラー: "" +*ja.HPRGBEmulation DefaultSRGB/デフォルト (sRGB): "" +*ja.HPRGBEmulation PhotoSRGB/フォト (sRGB): "" +*ja.HPRGBEmulation Adobe/フォト (Adobe RGB 1998): "" +*ja.HPRGBEmulation VividSRGB/鮮明 (sRGB): "" +*ja.HPRGBEmulation HPRGBEmulationNone/なし: "" +*ja.Translation HPEdgeControl/輪郭コントロール: "" +*ja.HPEdgeControl HPEdgeControlOff/オフ: "" +*ja.HPEdgeControl Light/薄い: "" +*ja.HPEdgeControl Normal/標準: "" +*ja.HPEdgeControl Max/最大: "" +*ja.Translation HPGeneralHalftone/ハーフトーン: "" +*ja.HPGeneralHalftone Smooth/テキスト: "" +*ja.HPGeneralHalftone Detail/詳細: "" +*ja.Translation HPTextNeutralGrays/テキスト グレー中間色: "" +*ja.HPTextNeutralGrays Black/黒のみ: "" +*ja.HPTextNeutralGrays ProcessBlack/4 色: "" +*ja.Translation HPGraphicsNeutralGrays/グラフィック グレー中間色: "" +*ja.HPGraphicsNeutralGrays Black/黒のみ: "" +*ja.HPGraphicsNeutralGrays ProcessBlack/4 色: "" +*ja.Translation HPPhotoNeutralGrays/写真グレー中間色: "" +*ja.HPPhotoNeutralGrays Black/黒のみ: "" +*ja.HPPhotoNeutralGrays ProcessBlack/4 色: "" +*ja.Translation HPPaperQualityPanel/Paper/Quality: "" +*ja.Translation HPPJLEconoMode/EconoMode: "" +*ja.HPPJLEconoMode True/オン: "" +*ja.HPPJLEconoMode False/オフ: "" +*ja.Translation MediaType/用紙の種類: "" +*ja.MediaType Unspecified/指定なし: "" +*ja.MediaType Plain/普通用紙: "" +*ja.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*ja.MediaType HPLaserJet90/HP レーザージェット用紙 90g: "" +*ja.MediaType HPColorLaserMatte105/HP カラーレーザー用紙 (つや消し) 105g: "" +*ja.MediaType HPPremiumChoiceMatte120/HP プレミアムチョイス (つや消し) 120g: "" +*ja.MediaType HPBrochureMatte150/HP ブローシャ用紙 (つや消し) 150g: "" +*ja.MediaType HPCoverMatte200/HP つや消し表紙用紙 200g: "" +*ja.MediaType HPMattePhoto200/HP つや消しフォト用紙 200g: "" +*ja.MediaType HPPremiumPresentationGlossy120/HP プレミアムプレゼンテーション用紙 (つや消し) 120g: "" +*ja.MediaType HPBrochureGlossy150/HP ブローシャ用紙 (光沢) 150g: "" +*ja.MediaType HPTrifoldBrochureGlossy150/HP 3 つ折りブローシャ用紙 (光沢) 150g: "" +*ja.MediaType HPBrochureGlossy200/HP ブローシャ用紙 (光沢) 200g: "" +*ja.MediaType Light6074/軽い用紙 60-74g: "" +*ja.MediaType Intermediate8595/中間 85-95g: "" +*ja.MediaType MidWeight96110/中厚手用紙 96-110g: "" +*ja.MediaType Heavy111130/重い用紙 111-130g: "" +*ja.MediaType ExtraHeavy131175/重い用紙 131-175g: "" +*ja.MediaType HeavyGlossy111130/厚手光沢紙 111-130g: "" +*ja.MediaType ExtraHeavyGlossy131175/超厚手光沢紙 131-175g: "" +*ja.MediaType CardGlossy176220/カード光沢紙 176-220g: "" +*ja.MediaType ColorLaserTransparency/カラーレーザー OHP フィルム: "" +*ja.MediaType Labels/ラベル: "" +*ja.MediaType Letterhead/レターヘッド付き: "" +*ja.MediaType Envelope/封筒: "" +*ja.MediaType HeavyEnvelope/厚手封筒: "" +*ja.MediaType Preprinted/印刷フォーム: "" +*ja.MediaType Prepunched/穴あき用紙: "" +*ja.MediaType Colored/カラー: "" +*ja.MediaType Bond/ボンド紙: "" +*ja.MediaType Recycled/再生紙: "" +*ja.MediaType Rough/ざら紙: "" +*ja.MediaType HeavyRough/厚手粗め用紙: "" +*ja.MediaType OpaqueFilm/不透明なフィルム: "" +*ja.APPrinterPreset ChartsAndGraphs/グラフと図: "" +*ja.cupsICCProfile RGB../sRGB Matching Profile: "" +*ja.cupsICCProfile CMYK../CMYK Matching Profile: "" +*ja.cupsICCProfile Gray../Gray Matching Profile: "" +*ja.cupsMarkerName cyan/シアン: "" +*ja.cupsMarkerName magenta/マゼンタ: "" +*ja.cupsMarkerName yellow/イエロー: "" +*ja.cupsMarkerName black/黒: "" +*ko.Translation Manufacturer/HP: "" +*ko.Translation ModelName/HP Color LaserJet Pro M252: "" +*ko.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*ko.Translation NickName/HP Color LaserJet Pro M252: "" +*ko.Translation PageSize/미디어 크기: "" +*ko.PageSize Letter/US Letter: "" +*ko.PageSize Legal/US Legal: "" +*ko.PageSize Executive/Executive: "" +*ko.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*ko.PageSize 4x6/4x6: "" +*ko.PageSize 5x8/5x8: "" +*ko.PageSize A4/A4: "" +*ko.PageSize A5/A5: "" +*ko.PageSize A6/A6: "" +*ko.PageSize B5/JIS B5: "" +*ko.PageSize B6/JIS B6: "" +*ko.PageSize Env4x6/10x15 cm: "" +*ko.PageSize Oficio/Oficio 216x340 mm: "" +*ko.PageSize 195x270mm/16K 195x270 mm: "" +*ko.PageSize 184x260mm/16K 184x260 mm: "" +*ko.PageSize 7.75x10.75/16K 197x273 mm: "" +*ko.PageSize Postcard/Postcard: "" +*ko.PageSize DoublePostcardRotated/엽서 Long Edge(양면): "" +*ko.PageSize Env10/Comm10 봉투: "" +*ko.PageSize EnvMonarch/Monarch 봉투: "" +*ko.PageSize EnvISOB5/ISO B5 봉투: "" +*ko.PageSize EnvC5/C5 봉투: "" +*ko.PageSize EnvDL/DL 봉투: "" +*ko.Translation Duplex/양면: "" +*ko.Duplex None/꺼짐: "" +*ko.Duplex DuplexNoTumble/긴-가장자리 제본선: "" +*ko.Duplex DuplexTumble/짧은-가장자리 제본선: "" +*ko.Translation InputSlot/용지 공급: "" +*ko.InputSlot Tray1/용지함 1: "" +*ko.InputSlot Tray2/용지함 2: "" +*ko.InputSlot ManualFeed/수동 급지: "" +*ko.Translation InstallableOptions/Installable Options: "" +*ko.Translation HPOption_Duplexer/양면 인쇄 부속품: "" +*ko.HPOption_Duplexer True/켜짐: "" +*ko.HPOption_Duplexer False/꺼짐: "" +*ko.Translation HPColorOptionsPanel/색상: "" +*ko.Translation HPPJLColorAsGray/컬러를 흑백음영으로 인쇄: "" +*ko.HPPJLColorAsGray yes/켜짐: "" +*ko.HPPJLColorAsGray no/꺼짐: "" +*ko.Translation HPRGBEmulation/RGB 색상: "" +*ko.HPRGBEmulation DefaultSRGB/기본값(sRGB): "" +*ko.HPRGBEmulation PhotoSRGB/사진(sRGB): "" +*ko.HPRGBEmulation Adobe/사진(Adobe RGB 1998): "" +*ko.HPRGBEmulation VividSRGB/선명하게 (sRGB): "" +*ko.HPRGBEmulation HPRGBEmulationNone/없음: "" +*ko.Translation HPEdgeControl/가장자리 제어: "" +*ko.HPEdgeControl HPEdgeControlOff/꺼짐: "" +*ko.HPEdgeControl Light/밝게: "" +*ko.HPEdgeControl Normal/보통: "" +*ko.HPEdgeControl Max/최대: "" +*ko.Translation HPGeneralHalftone/중간 색조: "" +*ko.HPGeneralHalftone Smooth/문장: "" +*ko.HPGeneralHalftone Detail/자세히: "" +*ko.Translation HPTextNeutralGrays/문장 순 회색: "" +*ko.HPTextNeutralGrays Black/흑색 전용: "" +*ko.HPTextNeutralGrays ProcessBlack/4색: "" +*ko.Translation HPGraphicsNeutralGrays/그래픽 순 회색: "" +*ko.HPGraphicsNeutralGrays Black/흑색 전용: "" +*ko.HPGraphicsNeutralGrays ProcessBlack/4색: "" +*ko.Translation HPPhotoNeutralGrays/사진 순말: "" +*ko.HPPhotoNeutralGrays Black/흑색 전용: "" +*ko.HPPhotoNeutralGrays ProcessBlack/4색: "" +*ko.Translation HPPaperQualityPanel/Paper/Quality: "" +*ko.Translation HPPJLEconoMode/EconoMode: "" +*ko.HPPJLEconoMode True/켜짐: "" +*ko.HPPJLEconoMode False/꺼짐: "" +*ko.Translation MediaType/용지 종류: "" +*ko.MediaType Unspecified/지정되지 않음: "" +*ko.MediaType Plain/일반용지: "" +*ko.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*ko.MediaType HPLaserJet90/HP LaserJet 90g: "" +*ko.MediaType HPColorLaserMatte105/HP Color Laser 무광 105g: "" +*ko.MediaType HPPremiumChoiceMatte120/HP 프리미엄 초이스 무광 120g: "" +*ko.MediaType HPBrochureMatte150/HP 무광택 브로셔 150g: "" +*ko.MediaType HPCoverMatte200/HP 표지 무광 200g: "" +*ko.MediaType HPMattePhoto200/HP 무광택 사진 200g: "" +*ko.MediaType HPPremiumPresentationGlossy120/HP 프리미엄 프리젠테이션 광택 120g: "" +*ko.MediaType HPBrochureGlossy150/HP 광택 브로셔 150g: "" +*ko.MediaType HPTrifoldBrochureGlossy150/HP 3중 접기 광택 브로셔 150g: "" +*ko.MediaType HPBrochureGlossy200/HP 광택 브로셔 200g: "" +*ko.MediaType Light6074/경량지 60-74g: "" +*ko.MediaType Intermediate8595/보통지 85-95g: "" +*ko.MediaType MidWeight96110/보통 중량지 96-110g: "" +*ko.MediaType Heavy111130/중량지 111-130g: "" +*ko.MediaType ExtraHeavy131175/초중량지 131-175g: "" +*ko.MediaType HeavyGlossy111130/광택 중량지 111-130g: "" +*ko.MediaType ExtraHeavyGlossy131175/고광택 용지 131-175g: "" +*ko.MediaType CardGlossy176220/인사장 유광 176-220g: "" +*ko.MediaType ColorLaserTransparency/Color Laser 투명 필름: "" +*ko.MediaType Labels/레이블: "" +*ko.MediaType Letterhead/레터헤드: "" +*ko.MediaType Envelope/봉투: "" +*ko.MediaType HeavyEnvelope/중량 봉투: "" +*ko.MediaType Preprinted/미리 인쇄: "" +*ko.MediaType Prepunched/천공 용지: "" +*ko.MediaType Colored/색상지: "" +*ko.MediaType Bond/본드지: "" +*ko.MediaType Recycled/재활용지: "" +*ko.MediaType Rough/거친 용지: "" +*ko.MediaType HeavyRough/중량 거친 용지: "" +*ko.MediaType OpaqueFilm/오파크 필름: "" +*ko.APPrinterPreset ChartsAndGraphs/차트 및 그래픽: "" +*ko.cupsICCProfile RGB../sRGB Matching Profile: "" +*ko.cupsICCProfile CMYK../CMYK Matching Profile: "" +*ko.cupsICCProfile Gray../Gray Matching Profile: "" +*ko.cupsMarkerName cyan/시안색: "" +*ko.cupsMarkerName magenta/마젠타색: "" +*ko.cupsMarkerName yellow/노랑색: "" +*ko.cupsMarkerName black/검정색: "" +*no.Translation Manufacturer/HP: "" +*no.Translation ModelName/HP Color LaserJet Pro M252: "" +*no.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*no.Translation NickName/HP Color LaserJet Pro M252: "" +*no.Translation PageSize/Papirstørrelse: "" +*no.PageSize Letter/US Letter: "" +*no.PageSize Legal/US Legal: "" +*no.PageSize Executive/Executive: "" +*no.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*no.PageSize 4x6/4x6: "" +*no.PageSize 5x8/5x8: "" +*no.PageSize A4/A4: "" +*no.PageSize A5/A5: "" +*no.PageSize A6/A6: "" +*no.PageSize B5/JIS B5: "" +*no.PageSize B6/JIS B6: "" +*no.PageSize Env4x6/10x15 cm: "" +*no.PageSize Oficio/Oficio 216x340 mm: "" +*no.PageSize 195x270mm/16K 195x270 mm: "" +*no.PageSize 184x260mm/16K 184x260 mm: "" +*no.PageSize 7.75x10.75/16K 197x273 mm: "" +*no.PageSize Postcard/Postcard: "" +*no.PageSize DoublePostcardRotated/Dobbelt postkort langside: "" +*no.PageSize Env10/Comm10-konvolutt: "" +*no.PageSize EnvMonarch/Monarch-konvolutt: "" +*no.PageSize EnvISOB5/B5-konvolutt: "" +*no.PageSize EnvC5/C5-konvolutt: "" +*no.PageSize EnvDL/DL-konvolutt: "" +*no.Translation Duplex/Tosidig: "" +*no.Duplex None/Av: "" +*no.Duplex DuplexNoTumble/Innbinding på langsiden: "" +*no.Duplex DuplexTumble/Innbinding på kortsiden: "" +*no.Translation InputSlot/Papirmating: "" +*no.InputSlot Tray1/Skuff 1: "" +*no.InputSlot Tray2/Skuff 2: "" +*no.InputSlot ManualFeed/Manuell mater: "" +*no.Translation InstallableOptions/Installable Options: "" +*no.Translation HPOption_Duplexer/Tosidig-enhet: "" +*no.HPOption_Duplexer True/På: "" +*no.HPOption_Duplexer False/Av: "" +*no.Translation HPColorOptionsPanel/Farge: "" +*no.Translation HPPJLColorAsGray/Skriv ut farger i grått: "" +*no.HPPJLColorAsGray yes/På: "" +*no.HPPJLColorAsGray no/Av: "" +*no.Translation HPRGBEmulation/RGB-farge: "" +*no.HPRGBEmulation DefaultSRGB/Standard (sRGB): "" +*no.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*no.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*no.HPRGBEmulation VividSRGB/Sterk (sRGB): "" +*no.HPRGBEmulation HPRGBEmulationNone/Ingen: "" +*no.Translation HPEdgeControl/Kantkontroll: "" +*no.HPEdgeControl HPEdgeControlOff/Av: "" +*no.HPEdgeControl Light/Lys: "" +*no.HPEdgeControl Normal/Normal: "" +*no.HPEdgeControl Max/Maksimum: "" +*no.Translation HPGeneralHalftone/Halvtone: "" +*no.HPGeneralHalftone Smooth/Jevn: "" +*no.HPGeneralHalftone Detail/Detaljert: "" +*no.Translation HPTextNeutralGrays/Tekst, nøytrale gråtoner: "" +*no.HPTextNeutralGrays Black/Bare svart: "" +*no.HPTextNeutralGrays ProcessBlack/4-fargers: "" +*no.Translation HPGraphicsNeutralGrays/Grafikk, nøytrale gråtoner: "" +*no.HPGraphicsNeutralGrays Black/Bare svart: "" +*no.HPGraphicsNeutralGrays ProcessBlack/4-fargers: "" +*no.Translation HPPhotoNeutralGrays/Foto, nøytrale gråtoner: "" +*no.HPPhotoNeutralGrays Black/Bare svart: "" +*no.HPPhotoNeutralGrays ProcessBlack/4-fargers: "" +*no.Translation HPPaperQualityPanel/Paper/Quality: "" +*no.Translation HPPJLEconoMode/EconoMode: "" +*no.HPPJLEconoMode True/På: "" +*no.HPPJLEconoMode False/Av: "" +*no.Translation MediaType/Utskriftsmateriale: "" +*no.MediaType Unspecified/Uspesifisert: "" +*no.MediaType Plain/Vanlig: "" +*no.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*no.MediaType HPLaserJet90/HP LaserJet 90g: "" +*no.MediaType HPColorLaserMatte105/HP Fargelaser matt, 105g: "" +*no.MediaType HPPremiumChoiceMatte120/HP Premium Choice matt, 120g: "" +*no.MediaType HPBrochureMatte150/HP-brosjyre, matt, 150g: "" +*no.MediaType HPCoverMatte200/HP Omslag matt, 200g: "" +*no.MediaType HPMattePhoto200/HP Matt foto 200g: "" +*no.MediaType HPPremiumPresentationGlossy120/HP Premium-presentasjon, glanset, 120g: "" +*no.MediaType HPBrochureGlossy150/HP-brosjyre, glanset, 150g: "" +*no.MediaType HPTrifoldBrochureGlossy150/HP-brosjyre, glanset, brettet i tre, 150g: "" +*no.MediaType HPBrochureGlossy200/HP-brosjyre, glanset, 200g: "" +*no.MediaType Light6074/Lys 60-74g: "" +*no.MediaType Intermediate8595/Middels 85-95g: "" +*no.MediaType MidWeight96110/Mellomtungt, 96-110g: "" +*no.MediaType Heavy111130/Tungt 111-130g: "" +*no.MediaType ExtraHeavy131175/Ekstra Tung 131-175g: "" +*no.MediaType HeavyGlossy111130/Tungt, glanset 111-130g: "" +*no.MediaType ExtraHeavyGlossy131175/Ekstra tykt og blankt 131-175g: "" +*no.MediaType CardGlossy176220/Kort glanset, 176-220g: "" +*no.MediaType ColorLaserTransparency/Transpar. for fargelaser: "" +*no.MediaType Labels/Etiketter: "" +*no.MediaType Letterhead/Brevhode: "" +*no.MediaType Envelope/Konvolutt: "" +*no.MediaType HeavyEnvelope/Tung konvolutt: "" +*no.MediaType Preprinted/Forhåndstrykt: "" +*no.MediaType Prepunched/Hullark: "" +*no.MediaType Colored/Farget: "" +*no.MediaType Bond/Brevpapir: "" +*no.MediaType Recycled/Resirkulert: "" +*no.MediaType Rough/Grovt: "" +*no.MediaType HeavyRough/Tungt grovt: "" +*no.MediaType OpaqueFilm/Opak film: "" +*no.APPrinterPreset ChartsAndGraphs/Diagrammer og grafikk: "" +*no.cupsICCProfile RGB../sRGB Matching Profile: "" +*no.cupsICCProfile CMYK../CMYK Matching Profile: "" +*no.cupsICCProfile Gray../Gray Matching Profile: "" +*no.cupsMarkerName cyan/Cyan: "" +*no.cupsMarkerName magenta/Magenta: "" +*no.cupsMarkerName yellow/Gul: "" +*no.cupsMarkerName black/Svart: "" +*nl.Translation Manufacturer/HP: "" +*nl.Translation ModelName/HP Color LaserJet Pro M252: "" +*nl.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*nl.Translation NickName/HP Color LaserJet Pro M252: "" +*nl.Translation PageSize/Materiaalgrootte: "" +*nl.PageSize Letter/US Letter: "" +*nl.PageSize Legal/US Legal: "" +*nl.PageSize Executive/Executive: "" +*nl.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*nl.PageSize 4x6/4x6: "" +*nl.PageSize 5x8/5x8: "" +*nl.PageSize A4/A4: "" +*nl.PageSize A5/A5: "" +*nl.PageSize A6/A6: "" +*nl.PageSize B5/JIS B5: "" +*nl.PageSize B6/JIS B6: "" +*nl.PageSize Env4x6/10x15 cm: "" +*nl.PageSize Oficio/Oficio 216x340 mm: "" +*nl.PageSize 195x270mm/16K 195x270 mm: "" +*nl.PageSize 184x260mm/16K 184x260 mm: "" +*nl.PageSize 7.75x10.75/16K 197x273 mm: "" +*nl.PageSize Postcard/Postcard: "" +*nl.PageSize DoublePostcardRotated/Briefkaart (dubbel) lange kant: "" +*nl.PageSize Env10/Comm10-envelop: "" +*nl.PageSize EnvMonarch/Monarch-envelop: "" +*nl.PageSize EnvISOB5/ISO B5-envelop: "" +*nl.PageSize EnvC5/C5-envelop: "" +*nl.PageSize EnvDL/DL-envelop: "" +*nl.Translation Duplex/Dubbelzijdig: "" +*nl.Duplex None/Uit: "" +*nl.Duplex DuplexNoTumble/Lange kant binden: "" +*nl.Duplex DuplexTumble/Korte kant binden: "" +*nl.Translation InputSlot/Papierinvoer: "" +*nl.InputSlot Tray1/Lade 1: "" +*nl.InputSlot Tray2/Lade 2: "" +*nl.InputSlot ManualFeed/Handinvoer: "" +*nl.Translation InstallableOptions/Installable Options: "" +*nl.Translation HPOption_Duplexer/Duplexeenheid: "" +*nl.HPOption_Duplexer True/Aan: "" +*nl.HPOption_Duplexer False/Uit: "" +*nl.Translation HPColorOptionsPanel/Kleur: "" +*nl.Translation HPPJLColorAsGray/Kleuren afdr. in grijs: "" +*nl.HPPJLColorAsGray yes/Aan: "" +*nl.HPPJLColorAsGray no/Uit: "" +*nl.Translation HPRGBEmulation/RGB-kleur: "" +*nl.HPRGBEmulation DefaultSRGB/Standaard (sRGB): "" +*nl.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*nl.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*nl.HPRGBEmulation VividSRGB/Levendig (sRGB): "" +*nl.HPRGBEmulation HPRGBEmulationNone/Geen: "" +*nl.Translation HPEdgeControl/Randverbetering: "" +*nl.HPEdgeControl HPEdgeControlOff/Uit: "" +*nl.HPEdgeControl Light/Licht: "" +*nl.HPEdgeControl Normal/Normaal: "" +*nl.HPEdgeControl Max/Maximaal: "" +*nl.Translation HPGeneralHalftone/Halftonen: "" +*nl.HPGeneralHalftone Smooth/Gelijkmatig: "" +*nl.HPGeneralHalftone Detail/Gedetailleerd: "" +*nl.Translation HPTextNeutralGrays/Tekst in neutraal grijs: "" +*nl.HPTextNeutralGrays Black/Alleen zwart: "" +*nl.HPTextNeutralGrays ProcessBlack/4-kleuren: "" +*nl.Translation HPGraphicsNeutralGrays/Afbeeld. in neutraal grijs: "" +*nl.HPGraphicsNeutralGrays Black/Alleen zwart: "" +*nl.HPGraphicsNeutralGrays ProcessBlack/4-kleuren: "" +*nl.Translation HPPhotoNeutralGrays/Foto's in neutraal grijs: "" +*nl.HPPhotoNeutralGrays Black/Alleen zwart: "" +*nl.HPPhotoNeutralGrays ProcessBlack/4-kleuren: "" +*nl.Translation HPPaperQualityPanel/Paper/Quality: "" +*nl.Translation HPPJLEconoMode/EconoMode: "" +*nl.HPPJLEconoMode True/Aan: "" +*nl.HPPJLEconoMode False/Uit: "" +*nl.Translation MediaType/Type afdrukmateriaal: "" +*nl.MediaType Unspecified/Onbekend: "" +*nl.MediaType Plain/Gewoon: "" +*nl.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*nl.MediaType HPLaserJet90/HP LaserJet 90g: "" +*nl.MediaType HPColorLaserMatte105/HP Color Laser, Mat 105g: "" +*nl.MediaType HPPremiumChoiceMatte120/HP Premium Choice, Mat 120g: "" +*nl.MediaType HPBrochureMatte150/HP mat brochurepapier 150g: "" +*nl.MediaType HPCoverMatte200/HP Omslagpapier, Mat 200g: "" +*nl.MediaType HPMattePhoto200/HP Fotopapier, Mat 200g: "" +*nl.MediaType HPPremiumPresentationGlossy120/HP Premium glanzend presentatiepapier 120g: "" +*nl.MediaType HPBrochureGlossy150/HP glanzend brochurepapier 150g: "" +*nl.MediaType HPTrifoldBrochureGlossy150/HP in drieën gevouwen glanzend brochurepapier 150g: "" +*nl.MediaType HPBrochureGlossy200/HP glanzend brochurepapier 200g: "" +*nl.MediaType Light6074/Licht 60-74g: "" +*nl.MediaType Intermediate8595/Intermediate 85-95g: "" +*nl.MediaType MidWeight96110/Middengewicht 96-110g: "" +*nl.MediaType Heavy111130/Zwaar 111-130g: "" +*nl.MediaType ExtraHeavy131175/Extra Zwaar 131-175g: "" +*nl.MediaType HeavyGlossy111130/Zwaarglanzend 111-130g: "" +*nl.MediaType ExtraHeavyGlossy131175/Extra zwaar glanzend 131-175g: "" +*nl.MediaType CardGlossy176220/Karton, Glanzend 176-220g: "" +*nl.MediaType ColorLaserTransparency/Transparant voor kleurenlaser: "" +*nl.MediaType Labels/Etiketten: "" +*nl.MediaType Letterhead/Briefpapier: "" +*nl.MediaType Envelope/Enveloppen: "" +*nl.MediaType HeavyEnvelope/Zware envelop: "" +*nl.MediaType Preprinted/Voorbedrukt: "" +*nl.MediaType Prepunched/Geperforeerd: "" +*nl.MediaType Colored/Gekleurd: "" +*nl.MediaType Bond/Bankpost: "" +*nl.MediaType Recycled/Gerecycled: "" +*nl.MediaType Rough/Ruw: "" +*nl.MediaType HeavyRough/Zwaar ruw: "" +*nl.MediaType OpaqueFilm/Ondoorzichtige film: "" +*nl.APPrinterPreset ChartsAndGraphs/Tabellen en grafieken: "" +*nl.cupsICCProfile RGB../sRGB Matching Profile: "" +*nl.cupsICCProfile CMYK../CMYK Matching Profile: "" +*nl.cupsICCProfile Gray../Gray Matching Profile: "" +*nl.cupsMarkerName cyan/Cyaan: "" +*nl.cupsMarkerName magenta/Magenta: "" +*nl.cupsMarkerName yellow/Geel: "" +*nl.cupsMarkerName black/Zwart: "" +*pt.Translation Manufacturer/HP: "" +*pt.Translation ModelName/HP Color LaserJet Pro M252: "" +*pt.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*pt.Translation NickName/HP Color LaserJet Pro M252: "" +*pt.Translation PageSize/Tamanho de Mídia: "" +*pt.PageSize Letter/US Letter: "" +*pt.PageSize Legal/US Legal: "" +*pt.PageSize Executive/Executivo: "" +*pt.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*pt.PageSize 4x6/4x6: "" +*pt.PageSize 5x8/5x8: "" +*pt.PageSize A4/A4: "" +*pt.PageSize A5/A5: "" +*pt.PageSize A6/A6: "" +*pt.PageSize B5/JIS B5: "" +*pt.PageSize B6/JIS B6: "" +*pt.PageSize Env4x6/10x15 cm: "" +*pt.PageSize Oficio/Oficio 216x340 mm: "" +*pt.PageSize 195x270mm/16K 195x270 mm: "" +*pt.PageSize 184x260mm/16K 184x260 mm: "" +*pt.PageSize 7.75x10.75/16K 197x273 mm: "" +*pt.PageSize Postcard/Postcard: "" +*pt.PageSize DoublePostcardRotated/Cartão-Postal Duplo Margem Longa: "" +*pt.PageSize Env10/Envelope Comm10: "" +*pt.PageSize EnvMonarch/Envelope Monarch: "" +*pt.PageSize EnvISOB5/Envelope B5: "" +*pt.PageSize EnvC5/Envelope C5: "" +*pt.PageSize EnvDL/Envelope DL: "" +*pt.Translation Duplex/Frente e verso: "" +*pt.Duplex None/Desativado: "" +*pt.Duplex DuplexNoTumble/Encadernação com Margem Longa: "" +*pt.Duplex DuplexTumble/Encadernação com Margem Curta: "" +*pt.Translation InputSlot/Alimentação de Papel: "" +*pt.InputSlot Tray1/Bandeja 1: "" +*pt.InputSlot Tray2/Bandeja 2: "" +*pt.InputSlot ManualFeed/Alimentação manual: "" +*pt.Translation InstallableOptions/Installable Options: "" +*pt.Translation HPOption_Duplexer/Unidade dúplex: "" +*pt.HPOption_Duplexer True/Ativado: "" +*pt.HPOption_Duplexer False/Desativado: "" +*pt.Translation HPColorOptionsPanel/Cor: "" +*pt.Translation HPPJLColorAsGray/Imprimir cor como cinza: "" +*pt.HPPJLColorAsGray yes/Ativado: "" +*pt.HPPJLColorAsGray no/Desativado: "" +*pt.Translation HPRGBEmulation/Cor RGB: "" +*pt.HPRGBEmulation DefaultSRGB/Padrão (sRGB): "" +*pt.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*pt.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*pt.HPRGBEmulation VividSRGB/Víva (sRGB): "" +*pt.HPRGBEmulation HPRGBEmulationNone/Nenhum: "" +*pt.Translation HPEdgeControl/Controle de margem: "" +*pt.HPEdgeControl HPEdgeControlOff/Desativado: "" +*pt.HPEdgeControl Light/Claro: "" +*pt.HPEdgeControl Normal/Normal: "" +*pt.HPEdgeControl Max/Máximo: "" +*pt.Translation HPGeneralHalftone/Meio-tom: "" +*pt.HPGeneralHalftone Smooth/Nivelado: "" +*pt.HPGeneralHalftone Detail/Detalhes: "" +*pt.Translation HPTextNeutralGrays/Texto em cinzas neutros: "" +*pt.HPTextNeutralGrays Black/Somente em preto: "" +*pt.HPTextNeutralGrays ProcessBlack/4 cores: "" +*pt.Translation HPGraphicsNeutralGrays/Gráfico em cinzas neutros: "" +*pt.HPGraphicsNeutralGrays Black/Somente em preto: "" +*pt.HPGraphicsNeutralGrays ProcessBlack/4 cores: "" +*pt.Translation HPPhotoNeutralGrays/Foto em cinzas neutros: "" +*pt.HPPhotoNeutralGrays Black/Somente em preto: "" +*pt.HPPhotoNeutralGrays ProcessBlack/4 cores: "" +*pt.Translation HPPaperQualityPanel/Paper/Quality: "" +*pt.Translation HPPJLEconoMode/EconoMode: "" +*pt.HPPJLEconoMode True/Ativado: "" +*pt.HPPJLEconoMode False/Desativado: "" +*pt.Translation MediaType/Tipo de mídia: "" +*pt.MediaType Unspecified/Não especificado: "" +*pt.MediaType Plain/Comum: "" +*pt.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*pt.MediaType HPLaserJet90/HP LaserJet 90g: "" +*pt.MediaType HPColorLaserMatte105/HP Color Laser 105g, fosco: "" +*pt.MediaType HPPremiumChoiceMatte120/HP Premium Choice fosco, 120g: "" +*pt.MediaType HPBrochureMatte150/Brochura HP fosco, 150g: "" +*pt.MediaType HPCoverMatte200/HP Cover 200g, fosco: "" +*pt.MediaType HPMattePhoto200/Fotogr. HP fosco, 200g: "" +*pt.MediaType HPPremiumPresentationGlossy120/Apresentação Premium brilhante HP 120g: "" +*pt.MediaType HPBrochureGlossy150/Brochura HP brilhante, 150g: "" +*pt.MediaType HPTrifoldBrochureGlossy150/Brochura HP brilhante com três dobras, 150g: "" +*pt.MediaType HPBrochureGlossy200/Brochura HP brilhante, 200g: "" +*pt.MediaType Light6074/Leve 60-74g: "" +*pt.MediaType Intermediate8595/Intermedio 85-95g: "" +*pt.MediaType MidWeight96110/Semipesado 96-110g: "" +*pt.MediaType Heavy111130/Pesado 111-130g: "" +*pt.MediaType ExtraHeavy131175/Extrapesado 131-175g: "" +*pt.MediaType HeavyGlossy111130/Espesso brilhante 111-130g: "" +*pt.MediaType ExtraHeavyGlossy131175/Brilhante com gramatura extra 131-175g: "" +*pt.MediaType CardGlossy176220/Cartão brilhante, 176-220g: "" +*pt.MediaType ColorLaserTransparency/Transpar. laser a cores: "" +*pt.MediaType Labels/Etiquetas: "" +*pt.MediaType Letterhead/Timbrado: "" +*pt.MediaType Envelope/Envelope: "" +*pt.MediaType HeavyEnvelope/Envelope pesado: "" +*pt.MediaType Preprinted/Pré-impresso: "" +*pt.MediaType Prepunched/Perfurado: "" +*pt.MediaType Colored/Colorido: "" +*pt.MediaType Bond/Superbond: "" +*pt.MediaType Recycled/Reciclado: "" +*pt.MediaType Rough/Áspero: "" +*pt.MediaType HeavyRough/Áspero pesado: "" +*pt.MediaType OpaqueFilm/Filme opaco: "" +*pt.APPrinterPreset ChartsAndGraphs/Tabelas e gráficos: "" +*pt.cupsICCProfile RGB../sRGB Matching Profile: "" +*pt.cupsICCProfile CMYK../CMYK Matching Profile: "" +*pt.cupsICCProfile Gray../Gray Matching Profile: "" +*pt.cupsMarkerName cyan/Ciano: "" +*pt.cupsMarkerName magenta/Magenta: "" +*pt.cupsMarkerName yellow/Amarelo: "" +*pt.cupsMarkerName black/Preto: "" +*ru.Translation Manufacturer/HP: "" +*ru.Translation ModelName/HP Color LaserJet Pro M252: "" +*ru.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*ru.Translation NickName/HP Color LaserJet Pro M252: "" +*ru.Translation PageSize/Размер бумаги: "" +*ru.PageSize Letter/US Letter: "" +*ru.PageSize Legal/US Legal: "" +*ru.PageSize Executive/Executive: "" +*ru.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*ru.PageSize 4x6/4 x 6: "" +*ru.PageSize 5x8/5 x 8: "" +*ru.PageSize A4/A4: "" +*ru.PageSize A5/A5: "" +*ru.PageSize A6/A6: "" +*ru.PageSize B5/JIS B5: "" +*ru.PageSize B6/JIS B6: "" +*ru.PageSize Env4x6/10 x 15 см: "" +*ru.PageSize Oficio/Oficio 216x340 mm: "" +*ru.PageSize 195x270mm/16K 195 x 270 мм: "" +*ru.PageSize 184x260mm/16K 184 x 260 мм: "" +*ru.PageSize 7.75x10.75/16K 197 x 273 мм: "" +*ru.PageSize Postcard/Postcard: "" +*ru.PageSize DoublePostcardRotated/Postcard Double Long Edge: "" +*ru.PageSize Env10/Конверт Comm10: "" +*ru.PageSize EnvMonarch/Конверт Monarch: "" +*ru.PageSize EnvISOB5/Конверт B5: "" +*ru.PageSize EnvC5/Конверт C5: "" +*ru.PageSize EnvDL/Конверт DL: "" +*ru.Translation Duplex/Двусторонняя: "" +*ru.Duplex None/Выкл.: "" +*ru.Duplex DuplexNoTumble/Прошивка вдоль длинного края: "" +*ru.Duplex DuplexTumble/Прошивка вдоль короткого края: "" +*ru.Translation InputSlot/Подача бумаги: "" +*ru.InputSlot Tray1/Лоток 1: "" +*ru.InputSlot Tray2/Лоток 2: "" +*ru.InputSlot ManualFeed/Ручная подача: "" +*ru.Translation InstallableOptions/Installable Options: "" +*ru.Translation HPOption_Duplexer/Модуль дуплекса: "" +*ru.HPOption_Duplexer True/Вкл.: "" +*ru.HPOption_Duplexer False/Выкл.: "" +*ru.Translation HPColorOptionsPanel/Цвет: "" +*ru.Translation HPPJLColorAsGray/Печать цвета серым: "" +*ru.HPPJLColorAsGray yes/Вкл.: "" +*ru.HPPJLColorAsGray no/Выкл.: "" +*ru.Translation HPRGBEmulation/Цвет RGB: "" +*ru.HPRGBEmulation DefaultSRGB/По умолчанию (sRGB): "" +*ru.HPRGBEmulation PhotoSRGB/Фото (sRGB): "" +*ru.HPRGBEmulation Adobe/Фото (Adobe RGB 1998): "" +*ru.HPRGBEmulation VividSRGB/Яркое (sRGB): "" +*ru.HPRGBEmulation HPRGBEmulationNone/Нет: "" +*ru.Translation HPEdgeControl/Контроль края: "" +*ru.HPEdgeControl HPEdgeControlOff/Выкл.: "" +*ru.HPEdgeControl Light/Светлый: "" +*ru.HPEdgeControl Normal/Обычное: "" +*ru.HPEdgeControl Max/Максимум: "" +*ru.Translation HPGeneralHalftone/Полутона: "" +*ru.HPGeneralHalftone Smooth/Гладкое: "" +*ru.HPGeneralHalftone Detail/Детальное: "" +*ru.Translation HPTextNeutralGrays/Нейтр. серый (текст): "" +*ru.HPTextNeutralGrays Black/Только черный: "" +*ru.HPTextNeutralGrays ProcessBlack/Четырехцветный: "" +*ru.Translation HPGraphicsNeutralGrays/Нейтр. серый (граф.): "" +*ru.HPGraphicsNeutralGrays Black/Только черный: "" +*ru.HPGraphicsNeutralGrays ProcessBlack/Четырехцветный: "" +*ru.Translation HPPhotoNeutralGrays/Нейтр. серый (фото): "" +*ru.HPPhotoNeutralGrays Black/Только черный: "" +*ru.HPPhotoNeutralGrays ProcessBlack/Четырехцветный: "" +*ru.Translation HPPaperQualityPanel/Paper/Quality: "" +*ru.Translation HPPJLEconoMode/EconoMode: "" +*ru.HPPJLEconoMode True/Вкл.: "" +*ru.HPPJLEconoMode False/Выкл.: "" +*ru.Translation MediaType/Тип носителя: "" +*ru.MediaType Unspecified/Не указано: "" +*ru.MediaType Plain/Обычная бумага: "" +*ru.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*ru.MediaType HPLaserJet90/HP LaserJet 90г: "" +*ru.MediaType HPColorLaserMatte105/HP для цветной лазерной печати, матовая 105г: "" +*ru.MediaType HPPremiumChoiceMatte120/HP повышенного качества, матовая 120г: "" +*ru.MediaType HPBrochureMatte150/Бумага HP для брошюр, матовая, 150г: "" +*ru.MediaType HPCoverMatte200/Бумага HP для обложек, матовая 200г: "" +*ru.MediaType HPMattePhoto200/Матовая фотобумага HP 200г: "" +*ru.MediaType HPPremiumPresentationGlossy120/Бум. HP повыш. кач. для презентаций, глянц. 120г: "" +*ru.MediaType HPBrochureGlossy150/Бумага HP для брошюр, глянцевая, 150г: "" +*ru.MediaType HPTrifoldBrochureGlossy150/Бум. HP для склад-х в 3 слоя брошюр, глянц. 150г: "" +*ru.MediaType HPBrochureGlossy200/Бумага HP для брошюр, глянцевая, 200г: "" +*ru.MediaType Light6074/Легкая 60-74г: "" +*ru.MediaType Intermediate8595/Прокладка 85-95г: "" +*ru.MediaType MidWeight96110/Среднеплотная 96-110г: "" +*ru.MediaType Heavy111130/Плотная 111-130г: "" +*ru.MediaType ExtraHeavy131175/Сверхплотная 131-175г: "" +*ru.MediaType HeavyGlossy111130/Плотная глянцевая 111-130г: "" +*ru.MediaType ExtraHeavyGlossy131175/Сверхплотная глянцевая 131-175г: "" +*ru.MediaType CardGlossy176220/Бумага для открыток, глянцевая 176-220г: "" +*ru.MediaType ColorLaserTransparency/Прозрачная пленка для цветн. лазер. печати: "" +*ru.MediaType Labels/Этикетки: "" +*ru.MediaType Letterhead/Фирменный бланк: "" +*ru.MediaType Envelope/Конверт: "" +*ru.MediaType HeavyEnvelope/Плотный конверт: "" +*ru.MediaType Preprinted/Печатный бланк: "" +*ru.MediaType Prepunched/Перфорированная бумага: "" +*ru.MediaType Colored/Цветная: "" +*ru.MediaType Bond/Высокосортная: "" +*ru.MediaType Recycled/Бумага из вторсырья: "" +*ru.MediaType Rough/Грубая бумага: "" +*ru.MediaType HeavyRough/Плотная грубая: "" +*ru.MediaType OpaqueFilm/Непрозрачный диапозитив: "" +*ru.APPrinterPreset ChartsAndGraphs/Диаграммы и графики: "" +*ru.cupsICCProfile RGB../sRGB Matching Profile: "" +*ru.cupsICCProfile CMYK../CMYK Matching Profile: "" +*ru.cupsICCProfile Gray../Gray Matching Profile: "" +*ru.cupsMarkerName cyan/Голубой: "" +*ru.cupsMarkerName magenta/Пурпурный: "" +*ru.cupsMarkerName yellow/Желтый: "" +*ru.cupsMarkerName black/Черный: "" +*sv.Translation Manufacturer/HP: "" +*sv.Translation ModelName/HP Color LaserJet Pro M252: "" +*sv.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*sv.Translation NickName/HP Color LaserJet Pro M252: "" +*sv.Translation PageSize/Mediestorlek: "" +*sv.PageSize Letter/US Letter: "" +*sv.PageSize Legal/US Legal: "" +*sv.PageSize Executive/Executive: "" +*sv.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*sv.PageSize 4x6/4x6: "" +*sv.PageSize 5x8/5x8: "" +*sv.PageSize A4/A4: "" +*sv.PageSize A5/A5: "" +*sv.PageSize A6/A6: "" +*sv.PageSize B5/JIS B5: "" +*sv.PageSize B6/JIS B6: "" +*sv.PageSize Env4x6/10x15 cm: "" +*sv.PageSize Oficio/Oficio 216x340 mm: "" +*sv.PageSize 195x270mm/16K 195x270 mm: "" +*sv.PageSize 184x260mm/16K 184x260 mm: "" +*sv.PageSize 7.75x10.75/16K 197x273 mm: "" +*sv.PageSize Postcard/Postcard: "" +*sv.PageSize DoublePostcardRotated/Vykort - dubbel med lång kant: "" +*sv.PageSize Env10/Comm10-kuvert: "" +*sv.PageSize EnvMonarch/Monarch-kuvert: "" +*sv.PageSize EnvISOB5/ISO B5-kuvert: "" +*sv.PageSize EnvC5/C5-kuvert: "" +*sv.PageSize EnvDL/DL-kuvert: "" +*sv.Translation Duplex/Dubbelsidig: "" +*sv.Duplex None/Av: "" +*sv.Duplex DuplexNoTumble/Häftning långsida: "" +*sv.Duplex DuplexTumble/Häftning kortsida: "" +*sv.Translation InputSlot/Pappersmatare: "" +*sv.InputSlot Tray1/Fack 1: "" +*sv.InputSlot Tray2/Fack 2: "" +*sv.InputSlot ManualFeed/Manuell matning: "" +*sv.Translation InstallableOptions/Installable Options: "" +*sv.Translation HPOption_Duplexer/Tillbehör för dubbelsidig utskrift: "" +*sv.HPOption_Duplexer True/På: "" +*sv.HPOption_Duplexer False/Av: "" +*sv.Translation HPColorOptionsPanel/Färg: "" +*sv.Translation HPPJLColorAsGray/Skriv ut färg i grått: "" +*sv.HPPJLColorAsGray yes/På: "" +*sv.HPPJLColorAsGray no/Av: "" +*sv.Translation HPRGBEmulation/RGB-färg: "" +*sv.HPRGBEmulation DefaultSRGB/Standard (sRGB): "" +*sv.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*sv.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*sv.HPRGBEmulation VividSRGB/Stark (sRGB): "" +*sv.HPRGBEmulation HPRGBEmulationNone/Inget: "" +*sv.Translation HPEdgeControl/Kantkontroll: "" +*sv.HPEdgeControl HPEdgeControlOff/Av: "" +*sv.HPEdgeControl Light/Ljus: "" +*sv.HPEdgeControl Normal/Normal: "" +*sv.HPEdgeControl Max/Högst: "" +*sv.Translation HPGeneralHalftone/Halvton: "" +*sv.HPGeneralHalftone Smooth/Jämnt: "" +*sv.HPGeneralHalftone Detail/Detalj: "" +*sv.Translation HPTextNeutralGrays/Text neutral grå: "" +*sv.HPTextNeutralGrays Black/Endast svart: "" +*sv.HPTextNeutralGrays ProcessBlack/4-färg: "" +*sv.Translation HPGraphicsNeutralGrays/Bilder neutral grå: "" +*sv.HPGraphicsNeutralGrays Black/Endast svart: "" +*sv.HPGraphicsNeutralGrays ProcessBlack/4-färg: "" +*sv.Translation HPPhotoNeutralGrays/Foto neutral grå: "" +*sv.HPPhotoNeutralGrays Black/Endast svart: "" +*sv.HPPhotoNeutralGrays ProcessBlack/4-färg: "" +*sv.Translation HPPaperQualityPanel/Paper/Quality: "" +*sv.Translation HPPJLEconoMode/EconoMode: "" +*sv.HPPJLEconoMode True/På: "" +*sv.HPPJLEconoMode False/Av: "" +*sv.Translation MediaType/Material: "" +*sv.MediaType Unspecified/Ospecificerad: "" +*sv.MediaType Plain/Vanligt: "" +*sv.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*sv.MediaType HPLaserJet90/HP LaserJet 90g: "" +*sv.MediaType HPColorLaserMatte105/HP Color Laser, matt 105g: "" +*sv.MediaType HPPremiumChoiceMatte120/HP Premium Choice, matt 120g: "" +*sv.MediaType HPBrochureMatte150/HP-broschyr, matt 150g: "" +*sv.MediaType HPCoverMatte200/HP omslag, matt 200g: "" +*sv.MediaType HPMattePhoto200/HP matt foto 200g: "" +*sv.MediaType HPPremiumPresentationGlossy120/HP Premium presentation, glättat, 120g: "" +*sv.MediaType HPBrochureGlossy150/HP-broschyr, glättat, 150g: "" +*sv.MediaType HPTrifoldBrochureGlossy150/HP trippelvikt broschyr, glättat, 150g: "" +*sv.MediaType HPBrochureGlossy200/HP-broschyr, glättat, 200g: "" +*sv.MediaType Light6074/Lätt 60-74g: "" +*sv.MediaType Intermediate8595/Medelvikt 85-95g: "" +*sv.MediaType MidWeight96110/Mellanvikt 96-110g: "" +*sv.MediaType Heavy111130/Tungt 111-130g: "" +*sv.MediaType ExtraHeavy131175/Extra Tungt 131-175g: "" +*sv.MediaType HeavyGlossy111130/Tungt glättat 111-130g: "" +*sv.MediaType ExtraHeavyGlossy131175/Extra tungt glättat 131-175g: "" +*sv.MediaType CardGlossy176220/Kort, glättat 176-220g: "" +*sv.MediaType ColorLaserTransparency/Färglaser OH-film: "" +*sv.MediaType Labels/Etiketter: "" +*sv.MediaType Letterhead/Brevpapper: "" +*sv.MediaType Envelope/Kuvert: "" +*sv.MediaType HeavyEnvelope/Tungt kuvert: "" +*sv.MediaType Preprinted/Förtryckt: "" +*sv.MediaType Prepunched/Hålat: "" +*sv.MediaType Colored/Färgat: "" +*sv.MediaType Bond/Finpapper: "" +*sv.MediaType Recycled/Returpapper: "" +*sv.MediaType Rough/Grovt: "" +*sv.MediaType HeavyRough/Tungt grovt: "" +*sv.MediaType OpaqueFilm/Ej genomskinlig film: "" +*sv.APPrinterPreset ChartsAndGraphs/Diagram och grafik: "" +*sv.cupsICCProfile RGB../sRGB Matching Profile: "" +*sv.cupsICCProfile CMYK../CMYK Matching Profile: "" +*sv.cupsICCProfile Gray../Gray Matching Profile: "" +*sv.cupsMarkerName cyan/Cyan: "" +*sv.cupsMarkerName magenta/Magenta: "" +*sv.cupsMarkerName yellow/Gul: "" +*sv.cupsMarkerName black/Svart: "" +*zh_CN.Translation Manufacturer/HP: "" +*zh_CN.Translation ModelName/HP Color LaserJet Pro M252: "" +*zh_CN.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*zh_CN.Translation NickName/HP Color LaserJet Pro M252: "" +*zh_CN.Translation PageSize/介质大小: "" +*zh_CN.PageSize Letter/US Letter: "" +*zh_CN.PageSize Legal/US Legal: "" +*zh_CN.PageSize Executive/Executive: "" +*zh_CN.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*zh_CN.PageSize 4x6/4x6: "" +*zh_CN.PageSize 5x8/5x8: "" +*zh_CN.PageSize A4/A4: "" +*zh_CN.PageSize A5/A5: "" +*zh_CN.PageSize A6/A6: "" +*zh_CN.PageSize B5/JIS B5: "" +*zh_CN.PageSize B6/JIS B6: "" +*zh_CN.PageSize Env4x6/10x15 厘米: "" +*zh_CN.PageSize Oficio/Oficio 216x340 mm: "" +*zh_CN.PageSize 195x270mm/16K 195x270 毫米: "" +*zh_CN.PageSize 184x260mm/16K 184x260 毫米: "" +*zh_CN.PageSize 7.75x10.75/16K 197x273 毫米: "" +*zh_CN.PageSize Postcard/Postcard: "" +*zh_CN.PageSize DoublePostcardRotated/明信片-双面长边: "" +*zh_CN.PageSize Env10/信封 Comm10: "" +*zh_CN.PageSize EnvMonarch/信封 Monarch: "" +*zh_CN.PageSize EnvISOB5/信封 ISO B5: "" +*zh_CN.PageSize EnvC5/信封 C5: "" +*zh_CN.PageSize EnvDL/信封 DL: "" +*zh_CN.Translation Duplex/双面打印: "" +*zh_CN.Duplex None/关: "" +*zh_CN.Duplex DuplexNoTumble/长边装订: "" +*zh_CN.Duplex DuplexTumble/短边装订: "" +*zh_CN.Translation InputSlot/送纸: "" +*zh_CN.InputSlot Tray1/纸盒 1: "" +*zh_CN.InputSlot Tray2/纸盒 2: "" +*zh_CN.InputSlot ManualFeed/手动进纸: "" +*zh_CN.Translation InstallableOptions/Installable Options: "" +*zh_CN.Translation HPOption_Duplexer/双面打印附件: "" +*zh_CN.HPOption_Duplexer True/开: "" +*zh_CN.HPOption_Duplexer False/关: "" +*zh_CN.Translation HPColorOptionsPanel/颜色: "" +*zh_CN.Translation HPPJLColorAsGray/打印颜色为灰色: "" +*zh_CN.HPPJLColorAsGray yes/开: "" +*zh_CN.HPPJLColorAsGray no/关: "" +*zh_CN.Translation HPRGBEmulation/RGB 颜色: "" +*zh_CN.HPRGBEmulation DefaultSRGB/默认 (sRGB): "" +*zh_CN.HPRGBEmulation PhotoSRGB/照片 (sRGB): "" +*zh_CN.HPRGBEmulation Adobe/照片 (Adobe RGB 1998): "" +*zh_CN.HPRGBEmulation VividSRGB/鲜明 (sRGB): "" +*zh_CN.HPRGBEmulation HPRGBEmulationNone/无: "" +*zh_CN.Translation HPEdgeControl/边缘控制: "" +*zh_CN.HPEdgeControl HPEdgeControlOff/关: "" +*zh_CN.HPEdgeControl Light/淡: "" +*zh_CN.HPEdgeControl Normal/正常: "" +*zh_CN.HPEdgeControl Max/最大: "" +*zh_CN.Translation HPGeneralHalftone/半色调: "" +*zh_CN.HPGeneralHalftone Smooth/文本: "" +*zh_CN.HPGeneralHalftone Detail/细节: "" +*zh_CN.Translation HPTextNeutralGrays/文本中性灰色: "" +*zh_CN.HPTextNeutralGrays Black/仅限黑色: "" +*zh_CN.HPTextNeutralGrays ProcessBlack/4 色: "" +*zh_CN.Translation HPGraphicsNeutralGrays/图形中性灰色: "" +*zh_CN.HPGraphicsNeutralGrays Black/仅限黑色: "" +*zh_CN.HPGraphicsNeutralGrays ProcessBlack/4 色: "" +*zh_CN.Translation HPPhotoNeutralGrays/照片中性灰色: "" +*zh_CN.HPPhotoNeutralGrays Black/仅限黑色: "" +*zh_CN.HPPhotoNeutralGrays ProcessBlack/4 色: "" +*zh_CN.Translation HPPaperQualityPanel/Paper/Quality: "" +*zh_CN.Translation HPPJLEconoMode/EconoMode: "" +*zh_CN.HPPJLEconoMode True/开: "" +*zh_CN.HPPJLEconoMode False/关: "" +*zh_CN.Translation MediaType/介质类型: "" +*zh_CN.MediaType Unspecified/未指定: "" +*zh_CN.MediaType Plain/普通纸: "" +*zh_CN.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*zh_CN.MediaType HPLaserJet90/HP LaserJet 90 克纸: "" +*zh_CN.MediaType HPColorLaserMatte105/HP 彩色激光无光泽纸 105g: "" +*zh_CN.MediaType HPPremiumChoiceMatte120/HP 优选无光泽纸 120g: "" +*zh_CN.MediaType HPBrochureMatte150/HP 小册子磨砂纸 150g: "" +*zh_CN.MediaType HPCoverMatte200/HP 无光泽封面纸 200g: "" +*zh_CN.MediaType HPMattePhoto200/HP 无光泽照片纸 200g: "" +*zh_CN.MediaType HPPremiumPresentationGlossy120/HP 高级演示用光泽纸 120g: "" +*zh_CN.MediaType HPBrochureGlossy150/HP 小册子光泽纸 150g: "" +*zh_CN.MediaType HPTrifoldBrochureGlossy150/HP 三折小册子光泽纸 150g: "" +*zh_CN.MediaType HPBrochureGlossy200/HP 小册子光泽纸 200g: "" +*zh_CN.MediaType Light6074/轻磅 60-74g: "" +*zh_CN.MediaType Intermediate8595/光面纸 85-95g: "" +*zh_CN.MediaType MidWeight96110/中等重量纸 96-110g: "" +*zh_CN.MediaType Heavy111130/重磅 111-130g: "" +*zh_CN.MediaType ExtraHeavy131175/超级重磅纸 131-175g: "" +*zh_CN.MediaType HeavyGlossy111130/重磅光泽纸 111-130g: "" +*zh_CN.MediaType ExtraHeavyGlossy131175/超重磅光泽纸 131-175g: "" +*zh_CN.MediaType CardGlossy176220/光泽卡片 176-220g: "" +*zh_CN.MediaType ColorLaserTransparency/彩色激光投影胶片: "" +*zh_CN.MediaType Labels/标签: "" +*zh_CN.MediaType Letterhead/信头纸: "" +*zh_CN.MediaType Envelope/信封: "" +*zh_CN.MediaType HeavyEnvelope/重磅信封: "" +*zh_CN.MediaType Preprinted/预先打印纸: "" +*zh_CN.MediaType Prepunched/预先打孔纸: "" +*zh_CN.MediaType Colored/彩纸: "" +*zh_CN.MediaType Bond/证券纸: "" +*zh_CN.MediaType Recycled/再生纸: "" +*zh_CN.MediaType Rough/粗糙: "" +*zh_CN.MediaType HeavyRough/重磅粗糙纸: "" +*zh_CN.MediaType OpaqueFilm/不透明胶片: "" +*zh_CN.APPrinterPreset ChartsAndGraphs/图表和图形: "" +*zh_CN.cupsICCProfile RGB../sRGB Matching Profile: "" +*zh_CN.cupsICCProfile CMYK../CMYK Matching Profile: "" +*zh_CN.cupsICCProfile Gray../Gray Matching Profile: "" +*zh_CN.cupsMarkerName cyan/青色: "" +*zh_CN.cupsMarkerName magenta/品红色: "" +*zh_CN.cupsMarkerName yellow/黄色: "" +*zh_CN.cupsMarkerName black/黑色: "" +*zh_TW.Translation Manufacturer/HP: "" +*zh_TW.Translation ModelName/HP Color LaserJet Pro M252: "" +*zh_TW.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*zh_TW.Translation NickName/HP Color LaserJet Pro M252: "" +*zh_TW.Translation PageSize/媒體大小: "" +*zh_TW.PageSize Letter/US Letter: "" +*zh_TW.PageSize Legal/US Legal: "" +*zh_TW.PageSize Executive/Executive: "" +*zh_TW.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*zh_TW.PageSize 4x6/4x6: "" +*zh_TW.PageSize 5x8/5x8: "" +*zh_TW.PageSize A4/A4: "" +*zh_TW.PageSize A5/A5: "" +*zh_TW.PageSize A6/A6: "" +*zh_TW.PageSize B5/JIS B5: "" +*zh_TW.PageSize B6/JIS B6: "" +*zh_TW.PageSize Env4x6/10x15 厘米: "" +*zh_TW.PageSize Oficio/Oficio 216x340 mm: "" +*zh_TW.PageSize 195x270mm/16K 195x270 公釐: "" +*zh_TW.PageSize 184x260mm/16K 184x260 公釐: "" +*zh_TW.PageSize 7.75x10.75/16K 197x273 公釐: "" +*zh_TW.PageSize Postcard/Postcard: "" +*zh_TW.PageSize DoublePostcardRotated/雙倍大小明信片長邊: "" +*zh_TW.PageSize Env10/Comm10 信封: "" +*zh_TW.PageSize EnvMonarch/Monarch 信封: "" +*zh_TW.PageSize EnvISOB5/ISO B5 信封: "" +*zh_TW.PageSize EnvC5/C5 信封: "" +*zh_TW.PageSize EnvDL/DL 信封: "" +*zh_TW.Translation Duplex/雙面: "" +*zh_TW.Duplex None/關閉: "" +*zh_TW.Duplex DuplexNoTumble/沿長邊裝訂: "" +*zh_TW.Duplex DuplexTumble/沿短邊裝訂: "" +*zh_TW.Translation InputSlot/送紙匣: "" +*zh_TW.InputSlot Tray1/1 號紙匣: "" +*zh_TW.InputSlot Tray2/2 號紙匣: "" +*zh_TW.InputSlot ManualFeed/手動進紙: "" +*zh_TW.Translation InstallableOptions/Installable Options: "" +*zh_TW.Translation HPOption_Duplexer/雙面列印裝置: "" +*zh_TW.HPOption_Duplexer True/開啟: "" +*zh_TW.HPOption_Duplexer False/關閉: "" +*zh_TW.Translation HPColorOptionsPanel/色彩: "" +*zh_TW.Translation HPPJLColorAsGray/用灰色列印彩色: "" +*zh_TW.HPPJLColorAsGray yes/開啟: "" +*zh_TW.HPPJLColorAsGray no/關閉: "" +*zh_TW.Translation HPRGBEmulation/RGB 色彩: "" +*zh_TW.HPRGBEmulation DefaultSRGB/預設 (sRGB): "" +*zh_TW.HPRGBEmulation PhotoSRGB/相紙 (sRGB): "" +*zh_TW.HPRGBEmulation Adobe/相紙 (Adobe RGB 1998): "" +*zh_TW.HPRGBEmulation VividSRGB/鮮明 (sRGB): "" +*zh_TW.HPRGBEmulation HPRGBEmulationNone/無: "" +*zh_TW.Translation HPEdgeControl/邊緣控制: "" +*zh_TW.HPEdgeControl HPEdgeControlOff/關閉: "" +*zh_TW.HPEdgeControl Light/淡: "" +*zh_TW.HPEdgeControl Normal/正常: "" +*zh_TW.HPEdgeControl Max/最大: "" +*zh_TW.Translation HPGeneralHalftone/半色調: "" +*zh_TW.HPGeneralHalftone Smooth/文字: "" +*zh_TW.HPGeneralHalftone Detail/細節: "" +*zh_TW.Translation HPTextNeutralGrays/文字中性灰色: "" +*zh_TW.HPTextNeutralGrays Black/純黑色: "" +*zh_TW.HPTextNeutralGrays ProcessBlack/4 色: "" +*zh_TW.Translation HPGraphicsNeutralGrays/圖形中性灰色: "" +*zh_TW.HPGraphicsNeutralGrays Black/純黑色: "" +*zh_TW.HPGraphicsNeutralGrays ProcessBlack/4 色: "" +*zh_TW.Translation HPPhotoNeutralGrays/照片中性灰色: "" +*zh_TW.HPPhotoNeutralGrays Black/純黑色: "" +*zh_TW.HPPhotoNeutralGrays ProcessBlack/4 色: "" +*zh_TW.Translation HPPaperQualityPanel/Paper/Quality: "" +*zh_TW.Translation HPPJLEconoMode/EconoMode: "" +*zh_TW.HPPJLEconoMode True/開啟: "" +*zh_TW.HPPJLEconoMode False/關閉: "" +*zh_TW.Translation MediaType/媒體類型: "" +*zh_TW.MediaType Unspecified/未指定: "" +*zh_TW.MediaType Plain/素面紙: "" +*zh_TW.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*zh_TW.MediaType HPLaserJet90/HP LaserJet 90 克紙: "" +*zh_TW.MediaType HPColorLaserMatte105/HP 彩色雷射霧面紙 105g: "" +*zh_TW.MediaType HPPremiumChoiceMatte120/HP 高級霧面紙 120g: "" +*zh_TW.MediaType HPBrochureMatte150/HP 霧面型錄紙 150g: "" +*zh_TW.MediaType HPCoverMatte200/HP 霧面封面紙 200g: "" +*zh_TW.MediaType HPMattePhoto200/HP 霧面相紙 200g: "" +*zh_TW.MediaType HPPremiumPresentationGlossy120/HP 高級光面簡報紙 120g: "" +*zh_TW.MediaType HPBrochureGlossy150/HP 光面型錄紙 150g: "" +*zh_TW.MediaType HPTrifoldBrochureGlossy150/HP 光面三摺型錄紙 150g: "" +*zh_TW.MediaType HPBrochureGlossy200/HP 光面型錄紙 200g: "" +*zh_TW.MediaType Light6074/輕磅紙 60-74g: "" +*zh_TW.MediaType Intermediate8595/嫖醱祧 85-95g: "" +*zh_TW.MediaType MidWeight96110/中磅紙 96-110g: "" +*zh_TW.MediaType Heavy111130/重磅紙 111-130g: "" +*zh_TW.MediaType ExtraHeavy131175/超重磅紙 131-175g: "" +*zh_TW.MediaType HeavyGlossy111130/重磅光面紙 111-130g: "" +*zh_TW.MediaType ExtraHeavyGlossy131175/超厚光滑紙 131-175g: "" +*zh_TW.MediaType CardGlossy176220/光面賀卡紙 176-220g: "" +*zh_TW.MediaType ColorLaserTransparency/彩色雷射投影片: "" +*zh_TW.MediaType Labels/標籤: "" +*zh_TW.MediaType Letterhead/信頭紙: "" +*zh_TW.MediaType Envelope/信封: "" +*zh_TW.MediaType HeavyEnvelope/重磅信封: "" +*zh_TW.MediaType Preprinted/預印的: "" +*zh_TW.MediaType Prepunched/打孔過的: "" +*zh_TW.MediaType Colored/彩紙: "" +*zh_TW.MediaType Bond/雪銅紙: "" +*zh_TW.MediaType Recycled/再生紙: "" +*zh_TW.MediaType Rough/粗糙紙: "" +*zh_TW.MediaType HeavyRough/重磅粗糙紙: "" +*zh_TW.MediaType OpaqueFilm/不透明膠片: "" +*zh_TW.APPrinterPreset ChartsAndGraphs/圖表和圖形: "" +*zh_TW.cupsICCProfile RGB../sRGB Matching Profile: "" +*zh_TW.cupsICCProfile CMYK../CMYK Matching Profile: "" +*zh_TW.cupsICCProfile Gray../Gray Matching Profile: "" +*zh_TW.cupsMarkerName cyan/青藍色: "" +*zh_TW.cupsMarkerName magenta/洋紅色: "" +*zh_TW.cupsMarkerName yellow/黃色: "" +*zh_TW.cupsMarkerName black/黑色: "" +*DefaultFont: Courier +*Font Albertus-ExtraBold: Standard "(001.001)" Standard ROM +*Font Albertus-Medium: Standard "(001.001)" Standard ROM +*Font AntiqueOlive: Standard "(001.001)" Standard ROM +*Font AntiqueOlive-Bold: Standard "(001.001)" Standard ROM +*Font AntiqueOlive-Italic: Standard "(001.001)" Standard ROM +*Font Arial: Standard "(001.001)" Standard ROM +*Font Arial-Bold: Standard "(001.001)" Standard ROM +*Font Arial-BoldItalic: Standard "(001.001)" Standard ROM +*Font Arial-Italic: Standard "(001.001)" Standard ROM +*Font AvantGarde-Book: Standard "(001.001)" Standard ROM +*Font AvantGarde-BookOblique: Standard "(001.001)" Standard ROM +*Font AvantGarde-Demi: Standard "(001.001)" Standard ROM +*Font AvantGarde-DemiOblique: Standard "(001.001)" Standard ROM +*Font Bookman-Demi: Standard "(001.001)" Standard ROM +*Font Bookman-DemiItalic: Standard "(001.001)" Standard ROM +*Font Bookman-Light: Standard "(001.001)" Standard ROM +*Font Bookman-LightItalic: Standard "(001.001)" Standard ROM +*Font BookmanCE-Demi: Win1250 "(001.001)" ExtendedRoman ROM +*Font BookmanCE-DemiItalic: Win1250 "(001.001)" ExtendedRoman ROM +*Font BookmanCE-Light: Win1250 "(001.001)" ExtendedRoman ROM +*Font BookmanCE-LightItalic: Win1250 "(001.001)" ExtendedRoman ROM +*Font CGOmega: Standard "(001.001)" Standard ROM +*Font CGOmega-Bold: Standard "(001.001)" Standard ROM +*Font CGOmega-BoldItalic: Standard "(001.001)" Standard ROM +*Font CGOmega-Italic: Standard "(001.001)" Standard ROM +*Font CGTimes: Standard "(001.001)" Standard ROM +*Font CGTimes-Bold: Standard "(001.001)" Standard ROM +*Font CGTimes-BoldItalic: Standard "(001.001)" Standard ROM +*Font CGTimes-Italic: Standard "(001.001)" Standard ROM +*Font Clarendon-Condensed-Bold: Standard "(001.001)" Standard ROM +*Font Coronet: Standard "(001.001)" Standard ROM +*Font Courier: Standard "(001.001)" Standard ROM +*Font Courier-Bold: Standard "(001.001)" Standard ROM +*Font Courier-BoldOblique: Standard "(001.001)" Standard ROM +*Font Courier-Oblique: Standard "(001.001)" Standard ROM +*Font CourierHP: Standard "(001.001)" Standard ROM +*Font CourierHP-Bold: Standard "(001.001)" Standard ROM +*Font CourierHP-BoldItalic: Standard "(001.001)" Standard ROM +*Font CourierHP-Italic: Standard "(001.001)" Standard ROM +*Font Garamond-Antiqua: Standard "(001.001)" Standard ROM +*Font Garamond-Halbfett: Standard "(001.001)" Standard ROM +*Font Garamond-Kursiv: Standard "(001.001)" Standard ROM +*Font Garamond-KursivHalbfett: Standard "(001.001)" Standard ROM +*Font Helvetica: Standard "(001.001)" Standard ROM +*Font Helvetica-Bold: Standard "(001.001)" Standard ROM +*Font Helvetica-BoldOblique: Standard "(001.001)" Standard ROM +*Font Helvetica-Narrow: Standard "(001.001)" Standard ROM +*Font Helvetica-Narrow-Bold: Standard "(001.001)" Standard ROM +*Font Helvetica-Narrow-BoldOblique: Standard "(001.001)" Standard ROM +*Font Helvetica-Narrow-Oblique: Standard "(001.001)" Standard ROM +*Font Helvetica-Oblique: Standard "(001.001)" Standard ROM +*Font LetterGothic: Standard "(001.001)" Standard ROM +*Font LetterGothic-Bold: Standard "(001.001)" Standard ROM +*Font LetterGothic-Italic: Standard "(001.001)" Standard ROM +*Font Marigold: Standard "(001.001)" Standard ROM +*Font NewCenturySchlbk-Bold: Standard "(001.001)" Standard ROM +*Font NewCenturySchlbk-BoldItalic: Standard "(001.001)" Standard ROM +*Font NewCenturySchlbk-Italic: Standard "(001.001)" Standard ROM +*Font NewCenturySchlbk-Roman: Standard "(001.001)" Standard ROM +*Font Palatino-Bold: Standard "(001.001)" Standard ROM +*Font Palatino-BoldItalic: Standard "(001.001)" Standard ROM +*Font Palatino-Italic: Standard "(001.001)" Standard ROM +*Font Palatino-Roman: Standard "(001.001)" Standard ROM +*Font Symbol: Special "(001.001)" Special ROM +*Font SymbolMT: Standard "(001.001)" Standard ROM +*Font Times-Bold: Standard "(001.001)" Standard ROM +*Font Times-BoldItalic: Standard "(001.001)" Standard ROM +*Font Times-Italic: Standard "(001.001)" Standard ROM +*Font Times-Roman: Standard "(001.001)" Standard ROM +*Font TimesNewRoman: Standard "(001.001)" Standard ROM +*Font TimesNewRoman-Bold: Standard "(001.001)" Standard ROM +*Font TimesNewRoman-BoldItalic: Standard "(001.001)" Standard ROM +*Font TimesNewRoman-Italic: Standard "(001.001)" Standard ROM +*Font Univers-Bold: Standard "(001.001)" Standard ROM +*Font Univers-BoldItalic: Standard "(001.001)" Standard ROM +*Font Univers-Condensed-Bold: Standard "(001.001)" Standard ROM +*Font Univers-Condensed-BoldItalic: Standard "(001.001)" Standard ROM +*Font Univers-Condensed-Medium: Standard "(001.001)" Standard ROM +*Font Univers-Condensed-MediumItalic: Standard "(001.001)" Standard ROM +*Font Univers-Medium: Standard "(001.001)" Standard ROM +*Font Univers-MediumItalic: Standard "(001.001)" Standard ROM +*Font Wingdings-Regular: Special "(001.001)" Special ROM +*Font Wingdings-Regular: Standard "(001.001)" Standard ROM +*Font ZapfChancery-MediumItalic: Standard "(001.001)" Standard ROM +*Font ZapfDingbats: Special "(001.001)" Special ROM +*% End of HPP00052.PPD, 211422 bytes. diff --git a/configfiles/etc/cups/ppd/Salle235.ppd.O b/configfiles/etc/cups/ppd/Salle235.ppd.O new file mode 100644 index 0000000..64f3af6 --- /dev/null +++ b/configfiles/etc/cups/ppd/Salle235.ppd.O @@ -0,0 +1,4831 @@ +*PPD-Adobe: "4.3" +*% ================================= +*% Copyright 1992-2009 Hewlett-Packard Company +*% Permission is hereby granted, free of charge, to any person obtaining +*% a copy of this software and associated documentation files (the +*% "Software"), to deal in the Software without restriction, including +*% without limitation the rights to use, copy, modify, merge, publish, +*% distribute, sublicense, and/or sell copies of the Software, and to +*% permit persons to whom the Software is furnished to do so, subject to +*% the following conditions: +*% +*% The above copyright notice and this permission notice shall be +*% included in all copies or substantial portions of the Software. +*% +*% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +*% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +*% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +*% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +*% LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +*% OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +*% WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +*% +*% [this is the MIT open source license -- please see www.opensource.org] +*% +*% ================================= +*% Adobe Systems PostScript(R) Printer Description File +*% (c) Copyright 2008-2009 Hewlett-Packard Development Company, L.P. +*% PPD Version for Apple Macintosh +*% ================================= + +*% =================================== +*% Product / PPD Version Information +*% =================================== +*% PPD File Version Information +*FormatVersion: "4.3" +*FileVersion: "1.1" +*HPBuildNumber: "001" +*LanguageEncoding: ISOLatin1 +*cupsLanguages: "da de es fi fr it ja ko nl nb pt sv zh_CN zh_TW ru" +*cupsFilter: "application/vnd.cups-postscript 0 hpps" + +*LanguageVersion: English +*PCFileName: "HP3010.PPD" + + + +*% Product Version Information +*Product: "(HP LaserJet P3015)" +*Product: "(Hewlett-Packard HP LaserJet P3015)" +*Product: "(HP LaserJet P3011)" +*Product: "(Hewlett-Packard HP LaserJet P3011)" +*Product: "(HP LaserJet P3010 Series)" +*Product: "(Hewlett-Packard HP LaserJet P3010 Series)" +*ModelName: "HP LaserJet P3010 Series" +*ShortNickName: "HP LaserJet P3010 Series" +*NickName: "HP LaserJet P3010 Series Postscript (recommended)" +*PSVersion: "(3010.107) 0" +*Manufacturer: "HP" + +*% =================================== +*% Basic Device Capabilities +*% =================================== +*LanguageLevel: "3" +*ColorDevice: False +*DefaultColorSpace: Gray +*FileSystem: True +*?FileSystem: " + save false + (%disk?%) + { currentdevparams dup /Writeable known + { /Writeable get {pop true} if } { pop } ifelse + } 100 string /IODevice resourceforall + {(True)}{(False)} ifelse = flush + restore +" +*End + +*Throughput: "42" +*TTRasterizer: Type42 +*?TTRasterizer: " + save + 42 /FontType resourcestatus + { pop pop (Type42)} {pop pop (None)} ifelse = flush + restore +" +*End + +*VariablePaperSize: True + +*% =================================== +*% Emulations and Protocols +*% =================================== +*Protocols: TBCP + +*SuggestedJobTimeout: "0" +*SuggestedWaitTimeout: "120" +*PrintPSErrors: True + +*% =================================== +*% Installable Options +*% =================================== +*OpenGroup: InstallableOptions/Installed Options +*da.Translation InstallableOptions/Installeret tilbehør: "" +*de.Translation InstallableOptions/Installierte Optionen: "" +*es.Translation InstallableOptions/Opciones instaladas: "" +*fi.Translation InstallableOptions/Asennetut lisävarusteet: "" +*fr.Translation InstallableOptions/Options installées: "" +*it.Translation InstallableOptions/Opzioni installate: "" +*ja.Translation InstallableOptions/インストール済オプション: "" +*ko.Translation InstallableOptions/설치된 선택사양: "" +*nl.Translation InstallableOptions/Geïnstalleerde opties: "" +*nb.Translation InstallableOptions/Installerte alternativer: "" +*pt.Translation InstallableOptions/Versıes Instaladas: "" +*sv.Translation InstallableOptions/Installerade tillbehör: "" +*zh_CN.Translation InstallableOptions/已安装的选项: "" +*zh_TW.Translation InstallableOptions/安裝的選項: "" +*ru.Translation InstallableOptions/Установленные параметры: "" + + +*OpenUI *HPCollateSupported/Collation in Printer: PickOne +*DefaultHPCollateSupported: True128 +*da.Translation HPCollateSupported/Samling i printer: "" +*de.Translation HPCollateSupported/Drucker-Sortierreihenfolge: "" +*es.Translation HPCollateSupported/Organización en orden en la impresora: "" +*fi.Translation HPCollateSupported/Lajittelu kirjoittimessa: "" +*fr.Translation HPCollateSupported/Assemblage dans l'imprimante: "" +*it.Translation HPCollateSupported/Fascicolazione nella stampante: "" +*ja.Translation HPCollateSupported/プリンタ内の並び替え: "" +*ko.Translation HPCollateSupported/프린터의 데이터 정렬: "" +*nl.Translation HPCollateSupported/Sortering in printer: "" +*nb.Translation HPCollateSupported/Kollatering i skriveren: "" +*pt.Translation HPCollateSupported/Intercalamento na impressora: "" +*sv.Translation HPCollateSupported/Sortering i skrivaren: "" +*zh_CN.Translation HPCollateSupported/打印机中的分页: "" +*zh_TW.Translation HPCollateSupported/印表機中的分頁: "" +*ru.Translation HPCollateSupported/Разбор по копиям в принтере: "" + +*HPCollateSupported True128/Yes<3A> Total RAM <3E>= 128 MB or Hard Disk: "" +*da.HPCollateSupported True128/Ja<3A> Total RAM <3E>= 128 MB eller harddisk: "" +*de.HPCollateSupported True128/Ja<3A> Gesamt-RAM <3E>= 128 MB oder Festplatte: "" +*es.HPCollateSupported True128/Sí<3A> RAM total <3E>= 128 MB o disco duro: "" +*fi.HPCollateSupported True128/Kyllä<3A> RAM-muistin kokonaismäärä <3E>= 128 MB tai kiintolevy: "" +*fr.HPCollateSupported True128/Oui<3A> RAM totale <3E>= 128 Mo ou disque dur: "" +*it.HPCollateSupported True128/Si<3A> RAM totale <3E>= 128 MB o Disco rigido: "" +*ja.HPCollateSupported True128/はい<3A> 合計 RAM <3E>= 128 MB あるいはハードディスク: "" +*ko.HPCollateSupported True128/예<3A> 총 RAM <3E>= 128 MB 또는 하드 디스크: "" +*nl.HPCollateSupported True128/Ja<3A> Totaal RAM <3E>= 128 MB of harde schijf: "" +*nb.HPCollateSupported True128/YJa<3A> Total RAM <3E>= 128 MB eller harddisk: "" +*pt.HPCollateSupported True128/Sim<3A> RAM total <3E>= 128 MB ou disco rígido: "" +*sv.HPCollateSupported True128/Ya<3A> Totalt RAM <3E>= 128 MB eller hårddisk: "" +*zh_CN.HPCollateSupported True128/是<3A>总内存 <3E>= 128 MB 或使用硬盘: "" +*zh_TW.HPCollateSupported True128/是<3A>總隨機存取記憶體 <3E>= 128 MB 或使用硬碟: "" +*ru.HPCollateSupported True128/Да<3A> Общий объем ОЗУ <3E>= 128 Мб или жесткий диск: "" + +*HPCollateSupported False128/No<3A> Total RAM <3C> 128 MB and No Hard Disk: "" +*da.HPCollateSupported False128/Nej<3A> Total RAM <3C> 128 MB og ingen harddisk: "" +*de.HPCollateSupported False128/Nein<3A> Gesamt-RAM <3C> 128 MB und keine Festplatte: "" +*es.HPCollateSupported False128/No<3A> RAM total <3C> 128 MB y sin disco duro: "" +*fi.HPCollateSupported False128/Ei<3A> RAM-muistin kokonaismäärä <3C> 128 MB eikä kiintolevyä: "" +*fr.HPCollateSupported False128/Non<3A> RAM totale <3C> 128 Mo, pas de disque dur: "" +*it.HPCollateSupported False128/No<3A> RAM totale <3C> 128 MB o Senza disco rigido: "" +*ja.HPCollateSupported False128/いいえ<3A> 合計 RAM <3C> 128 MB および ハードディスクなし: "" +*ko.HPCollateSupported False128/아니오<3A> 총 RAM <3C> 128 MB 및 하드 디스크 없음: "" +*nl.HPCollateSupported False128/Nee<3A> Totaal RAM <3C> 128 MB en geen harde schijf: "" +*nb.HPCollateSupported False128/Nei<3A> Total RAM <3C> 128 MB og ingen harddisk: "" +*pt.HPCollateSupported False128/Não<3A> RAM total <3C> 128 MB e nenhum disco rígido: "" +*sv.HPCollateSupported False128/Nej<3A> Totalt RAM <3C> 128 MB eller ingen hårddisk: "" +*zh_CN.HPCollateSupported False128/否<3A>总内存 <3C> 128 MB 且没有硬盘: "" +*zh_TW.HPCollateSupported False128/否<3A>總隨機存取記憶體 <3C> 128 MB 且沒有硬碟: "" +*ru.HPCollateSupported False128/Нет<3A> Общий объем ОЗУ <3C> 128 Мб без жестк. диска: "" + +*?HPCollateSupported: " + save + mark + <> >> setpagedevice + { <> setpagedevice + } stopped + { (False128) } + { (True128) } ifelse = flush + cleartomark + restore +" +*End +*CloseUI: *HPCollateSupported + +*%======================== +*%Tray 3 +*%====== +*OpenUI *HPOption_Tray3/Tray 3: PickOne +*DefaultHPOption_Tray3: False +*da.Translation HPOption_Tray3/Bakke 3: "" +*de.Translation HPOption_Tray3/Zufuhrfach 3: "" +*es.Translation HPOption_Tray3/Bandeja 3: "" +*fi.Translation HPOption_Tray3/Lokero 3: "" +*fr.Translation HPOption_Tray3/Bac 3: "" +*it.Translation HPOption_Tray3/Vassoio 3: "" +*ja.Translation HPOption_Tray3/トレイ 3: "" +*ko.Translation HPOption_Tray3/용지함 3: "" +*nl.Translation HPOption_Tray3/Lade 3: "" +*nb.Translation HPOption_Tray3/Skuff 3: "" +*pt.Translation HPOption_Tray3/Bandeja 3: "" +*sv.Translation HPOption_Tray3/Fack 3: "" +*zh_CN.Translation HPOption_Tray3/纸盒 3: "" +*zh_TW.Translation HPOption_Tray3/紙匣3: "" +*ru.Translation HPOption_Tray3/Лоток 3: "" + +*HPOption_Tray3 False/Not Installed: "" +*da.HPOption_Tray3 False/Ikke installeret: "" +*de.HPOption_Tray3 False/Nicht installiert: "" +*es.HPOption_Tray3 False/No Instalado: "" +*fi.HPOption_Tray3 False/Ei asennettu: "" +*fr.HPOption_Tray3 False/Non installé: "" +*it.HPOption_Tray3 False/Non installato: "" +*ja.HPOption_Tray3 False/インストールされていない: "" +*ko.HPOption_Tray3 False/설치되지 않음: "" +*nl.HPOption_Tray3 False/Niet geïnstalleerd: "" +*nb.HPOption_Tray3 False/Ikke installert: "" +*pt.HPOption_Tray3 False/Não instalada: "" +*sv.HPOption_Tray3 False/Ej installerad: "" +*zh_CN.HPOption_Tray3 False/未安装: "" +*zh_TW.HPOption_Tray3 False/未安裝: "" +*ru.HPOption_Tray3 False/Не установлен: "" + +*HPOption_Tray3 True/Installed: "" +*da.HPOption_Tray3 True/Installeret: "" +*de.HPOption_Tray3 True/Installiert: "" +*es.HPOption_Tray3 True/Instalado: "" +*fi.HPOption_Tray3 True/Asennettu: "" +*fr.HPOption_Tray3 True/Installé: "" +*it.HPOption_Tray3 True/Installato: "" +*ja.HPOption_Tray3 True/インストール済: "" +*ko.HPOption_Tray3 True/설치됨: "" +*nl.HPOption_Tray3 True/Geïnstalleerd: "" +*nb.HPOption_Tray3 True/Installert: "" +*pt.HPOption_Tray3 True/Instalada: "" +*sv.HPOption_Tray3 True/Installerat: "" +*zh_CN.HPOption_Tray3 True/已安装: "" +*zh_TW.HPOption_Tray3 True/已安裝: "" +*ru.HPOption_Tray3 True/Установлен: "" + +*?HPOption_Tray3: " + save + currentpagedevice dup /InputAttributes known + {/InputAttributes get 1 known {(True)}{(False)} ifelse} + {pop (False)} ifelse + = flush + restore +" +*End +*CloseUI: *HPOption_Tray3 + +*OpenUI *HPOption_Tray4/Tray 4: PickOne +*DefaultHPOption_Tray4: False +*da.Translation HPOption_Tray4/Bakke 4: "" +*de.Translation HPOption_Tray4/Zufuhrfach 4: "" +*es.Translation HPOption_Tray4/Bandeja 4: "" +*fi.Translation HPOption_Tray4/Lokero 4: "" +*fr.Translation HPOption_Tray4/Bac 4: "" +*it.Translation HPOption_Tray4/Vassoio 4: "" +*ja.Translation HPOption_Tray4/トレイ 4: "" +*ko.Translation HPOption_Tray4/용지함 4: "" +*nl.Translation HPOption_Tray4/Lade 4: "" +*nb.Translation HPOption_Tray4/Skuff 4: "" +*pt.Translation HPOption_Tray4/Bandeja 4: "" +*sv.Translation HPOption_Tray4/Fack 4: "" +*zh_CN.Translation HPOption_Tray4/纸盒 4: "" +*zh_TW.Translation HPOption_Tray4/紙匣4: "" +*ru.Translation HPOption_Tray4/Лоток 4: "" + +*HPOption_Tray4 False/Not Installed: "" +*da.HPOption_Tray4 False/Ikke installeret: "" +*de.HPOption_Tray4 False/Nicht installiert: "" +*es.HPOption_Tray4 False/No instalado: "" +*fi.HPOption_Tray4 False/Ei asennettu: "" +*fr.HPOption_Tray4 False/Non installé: "" +*it.HPOption_Tray4 False/Non installato: "" +*ja.HPOption_Tray4 False/インストールされていない: "" +*ko.HPOption_Tray4 False/설치되지 않음: "" +*nl.HPOption_Tray4 False/Niet geïnstalleerd: "" +*nb.HPOption_Tray4 False/Ikke installert: "" +*pt.HPOption_Tray4 False/Não Instalada: "" +*sv.HPOption_Tray4 False/Ej installerad: "" +*zh_CN.HPOption_Tray4 False/未安装: "" +*zh_TW.HPOption_Tray4 False/未安裝: "" +*ru.HPOption_Tray4 False/Не установлен: "" + +*HPOption_Tray4 True/Installed: "" +*da.HPOption_Tray4 True/Installeret: "" +*de.HPOption_Tray4 True/Installiert: "" +*es.HPOption_Tray4 True/Instalado: "" +*fi.HPOption_Tray4 True/Asennettu: "" +*fr.HPOption_Tray4 True/Installé: "" +*it.HPOption_Tray4 True/Installato: "" +*ja.HPOption_Tray4 True/インストール済み: "" +*ko.HPOption_Tray4 True/설치됨: "" +*nl.HPOption_Tray4 True/Geïnstalleerd: "" +*nb.HPOption_Tray4 True/Installert: "" +*pt.HPOption_Tray4 True/Instalada: "" +*sv.HPOption_Tray4 True/Installerad: "" +*zh_CN.HPOption_Tray4 True/已安装: "" +*zh_TW.HPOption_Tray4 True/已安裝: "" +*ru.HPOption_Tray4 True/Установлен: "" + +*?HPOption_Tray4: " + save + currentpagedevice dup /InputAttributes known + {/InputAttributes get 4 known {(True)}{(False)} ifelse} + {pop (False)} ifelse + = flush + restore +" +*End +*CloseUI: *HPOption_Tray4 + +*OpenUI *HPOption_Duplexer/Duplex Unit: Boolean +*DefaultHPOption_Duplexer: True +*da.Translation HPOption_Duplexer/Dupleksudskrivningsudstyr: "" +*de.Translation HPOption_Duplexer/Duplexdruck-Zubehör: "" +*es.Translation HPOption_Duplexer/Accesorio para impresión dúplex: "" +*fi.Translation HPOption_Duplexer/Kaksipuolisen tulostuksen lisälaite: "" +*fr.Translation HPOption_Duplexer/Accessoire d'impression recto verso: "" +*it.Translation HPOption_Duplexer/Accessorio per stampa duplex: "" +*ja.Translation HPOption_Duplexer/両面印刷アクセサリ: "" +*ko.Translation HPOption_Duplexer/양면 인쇄 부속품: "" +*nl.Translation HPOption_Duplexer/Duplexeenheid: "" +*nb.Translation HPOption_Duplexer/Ekstrautstyr for dobbeltsidig utskrift: "" +*pt.Translation HPOption_Duplexer/Ùnidade dúplex: "" +*sv.Translation HPOption_Duplexer/Tillbehör för dubbelsidig utskrift: "" +*zh_CN.Translation HPOption_Duplexer/双面打印附件: "" +*zh_TW.Translation HPOption_Duplexer/雙面列印裝置: "" +*ru.Translation HPOption_Duplexer/Модуль дуплекса: "" + +*HPOption_Duplexer True/Installed: "" +*da.HPOption_Duplexer True/Installeret: "" +*de.HPOption_Duplexer True/Installiert: "" +*es.HPOption_Duplexer True/Instalado: "" +*fi.HPOption_Duplexer True/Asennettu: "" +*fr.HPOption_Duplexer True/Installé: "" +*it.HPOption_Duplexer True/Installato: "" +*ja.HPOption_Duplexer True/インストール済み: "" +*ko.HPOption_Duplexer True/설치됨: "" +*nl.HPOption_Duplexer True/Geïnstalleerd: "" +*nb.HPOption_Duplexer True/Installert: "" +*pt.HPOption_Duplexer True/Instalada: "" +*sv.HPOption_Duplexer True/Installerad: "" +*zh_CN.HPOption_Duplexer True/已安装: "" +*zh_TW.HPOption_Duplexer True/已安裝: "" +*ru.HPOption_Duplexer True/Установлен: "" + +*HPOption_Duplexer False/Not Installed: "" +*da.HPOption_Duplexer False/Ikke installeret: "" +*de.HPOption_Duplexer False/Nicht installiert: "" +*es.HPOption_Duplexer False/No instalado: "" +*fi.HPOption_Duplexer False/Ei asennettu: "" +*fr.HPOption_Duplexer False/Non installé: "" +*it.HPOption_Duplexer False/Non installato: "" +*ja.HPOption_Duplexer False/インストールされていない: "" +*ko.HPOption_Duplexer False/설치되지 않음: "" +*nl.HPOption_Duplexer False/Niet geïnstalleerd: "" +*nb.HPOption_Duplexer False/Ikke installert: "" +*pt.HPOption_Duplexer False/Não Instalada: "" +*sv.HPOption_Duplexer False/Ej installerad: "" +*zh_CN.HPOption_Duplexer False/未安装: "" +*zh_TW.HPOption_Duplexer False/未安裝: "" +*ru.HPOption_Duplexer False/Не установлен: "" + +*?HPOption_Duplexer: " + save + currentpagedevice /Duplex known + {(True)}{(False)}ifelse = flush + restore " +*End +*CloseUI: *HPOption_Duplexer + + +*% ================================= +*% NOTE: FWMax and RAMMax values can differ for different products + +*OpenUI *HPOption_Disk/Printer Disk: PickOne +*DefaultHPOption_Disk: None +*da.Translation HPOption_Disk/Printerens harddisk: "" +*de.Translation HPOption_Disk/Druckerfestplatte: "" +*es.Translation HPOption_Disk/Disco de la impresora: "" +*fi.Translation HPOption_Disk/Tulostimen kiintolevy: "" +*fr.Translation HPOption_Disk/Disque dur de l'imprimante: "" +*it.Translation HPOption_Disk/Disco rigido stampante: "" +*ja.Translation HPOption_Disk/プリンタ ハード ディスク: "" +*ko.Translation HPOption_Disk/프린터 하드 디스크: "" +*nl.Translation HPOption_Disk/Harde schijf van printer: "" +*nb.Translation HPOption_Disk/Skriverharddisk: "" +*pt.Translation HPOption_Disk/Disco rÌgido da impressora: "" +*sv.Translation HPOption_Disk/Skrivarens hårddisk: "" +*zh_CN.Translation HPOption_Disk/打印机硬盘: "" +*zh_TW.Translation HPOption_Disk/印表機硬碟: "" +*ru.Translation HPOption_Disk/Жесткий диск принтера: "" + +*HPOption_Disk None/None: "" +*da.HPOption_Disk None/Ingen: "" +*de.HPOption_Disk None/Keine: "" +*es.HPOption_Disk None/Ninguno: "" +*fi.HPOption_Disk None/Ei mitään: "" +*fr.HPOption_Disk None/Aucun: "" +*it.HPOption_Disk None/Nessuno: "" +*ja.HPOption_Disk None/なし: "" +*ko.HPOption_Disk None/없음: "" +*nl.HPOption_Disk None/Geen: "" +*nb.HPOption_Disk None/Ingen: "" +*pt.HPOption_Disk None/Nenhuma: "" +*sv.HPOption_Disk None/Inget: "" +*zh_CN.HPOption_Disk None/无: "" +*zh_TW.HPOption_Disk None/無: "" +*ru.HPOption_Disk None/Нет: "" + +*HPOption_Disk RAMDisk/RAM Disk: "" +*da.HPOption_Disk RAMDisk/RAM-disk: "" +*de.HPOption_Disk RAMDisk/RAM-Disk: "" +*es.HPOption_Disk RAMDisk/Disco RAM: "" +*fi.HPOption_Disk RAMDisk/RAM-levy: "" +*fr.HPOption_Disk RAMDisk/Disque MEV: "" +*it.HPOption_Disk RAMDisk/Disco RAM: "" +*ja.HPOption_Disk RAMDisk/RAMディスク: "" +*ko.HPOption_Disk RAMDisk/RAM 디스크: "" +*nl.HPOption_Disk RAMDisk/RAM-station: "" +*nb.HPOption_Disk RAMDisk/RAM-disk: "" +*pt.HPOption_Disk RAMDisk/Disco RAM: "" +*sv.HPOption_Disk RAMDisk/RAM-disk: "" +*zh_CN.HPOption_Disk RAMDisk/RAM 磁盘: "" +*zh_TW.HPOption_Disk RAMDisk/RAM 磁碟: "" +*ru.HPOption_Disk RAMDisk/RAM диск: "" + +*HPOption_Disk HardDisk/Hard Disk: "" +*da.HPOption_Disk HardDisk/Harddisk: "" +*de.HPOption_Disk HardDisk/Festplatte: "" +*es.HPOption_Disk HardDisk/Disco duro: "" +*fi.HPOption_Disk HardDisk/Kiintolevy: "" +*fr.HPOption_Disk HardDisk/Disque dur: "" +*it.HPOption_Disk HardDisk/Disco rigido: "" +*ja.HPOption_Disk HardDisk/ハードディスク: "" +*ko.HPOption_Disk HardDisk/하드 디스크: "" +*nl.HPOption_Disk HardDisk/Harde schijf: "" +*nb.HPOption_Disk HardDisk/Harddisk: "" +*pt.HPOption_Disk HardDisk/Disco rígido: "" +*sv.HPOption_Disk HardDisk/Hårddisk: "" +*zh_CN.HPOption_Disk HardDisk/硬盘: "" +*zh_TW.HPOption_Disk HardDisk/硬碟: "" +*ru.HPOption_Disk HardDisk/Жесткий диск: "" + +*?HPOption_Disk: " +save + /FWMax 2048 def /RAMMax 1000000 def + (HardDisk) (RAMDisk) (None) + 0 + (%disk?%) + { currentdevparams dup /Writeable known + { dup /Writeable get + { /PhysicalSize get dup FWMax gt + { RAMMax gt {2}{1} ifelse 2 copy lt { exch }if pop } + { pop } ifelse + } + { pop } ifelse + } + { pop } ifelse + } 100 string /IODevice resourceforall + index = flush pop pop pop +restore +" +*End +*CloseUI: *HPOption_Disk + +*CloseGroup: InstallableOptions + +*HPAccountingInfo: 1 + +*%============================================== +*% Secure Printing +*% ============================================ + +*OpenGroup: SecPin/Secure Printing + +*OpenUI *HPPinPrnt/Secure Printing: Boolean +*OrderDependency: 50.0 AnySetup *HPPinPrnt +*DefaultHPPinPrnt: False + +*HPPinPrnt True/On: "%%" +*ru.HPPinPrnt True/Установлен: "" +*da.HPPinPrnt True/På: "" +*de.HPPinPrnt True/Ein: "" +*es.HPPinPrnt True/Activado: "" +*fi.HPPinPrnt True/Käytössä: "" +*fr.HPPinPrnt True/Activé: "" +*it.HPPinPrnt True/Attiva: "" +*ja.HPPinPrnt True/オン: "" +*ko.HPPinPrnt True/켜짐: "" +*nl.HPPinPrnt True/Aan: "" +*nb.HPPinPrnt True/På: "" +*pt.HPPinPrnt True/Ativado: "" +*sv.HPPinPrnt True/På: "" +*zh_CN.HPPinPrnt True/开: "" +*zh_TW.HPPinPrnt True/開啟: "" + +*HPPinPrnt False/Off: "%%" +*ru.HPPinPrnt False/Нет: "" +*da.HPPinPrnt False/Fra: "" +*de.HPPinPrnt False/Aus: "" +*es.HPPinPrnt False/Desactivado: "" +*fi.HPPinPrnt False/Ei käytössä: "" +*fr.HPPinPrnt False/Désactivé: "" +*it.HPPinPrnt False/Disattivata: "" +*ja.HPPinPrnt False/オフ: "" +*ko.HPPinPrnt False/꺼짐: "" +*nl.HPPinPrnt False/Uit: "" +*nb.HPPinPrnt False/Av: "" +*pt.HPPinPrnt False/Desativado: "" +*sv.HPPinPrnt False/Av: "" +*zh_CN.HPPinPrnt False/关: "" +*zh_TW.HPPinPrnt False/關閉: "" + +*CloseUI: *HPPinPrnt + +*OpenUI *HPFIDigit/First Digit: PickOne +*OrderDependency: 50 AnySetup *HPFIDigit +*DefaultHPFIDigit: 0 + +*HPFIDigit 0/0: "%%" +*HPFIDigit 1/1: "%%" +*HPFIDigit 2/2: "%%" +*HPFIDigit 3/3: "%%" +*HPFIDigit 4/4: "%%" +*HPFIDigit 5/5: "%%" +*HPFIDigit 6/6: "%%" +*HPFIDigit 7/7: "%%" +*HPFIDigit 8/8: "%%" +*HPFIDigit 9/9: "%%" + +*CloseUI: *HPFIDigit + +*OpenUI *HPSEDigit/Second Digit: PickOne +*OrderDependency: 50 AnySetup *HPSEDigit +*DefaultHPSEDigit: 0 + +*HPSEDigit 0/0: "%%" +*HPSEDigit 1/1: "%%" +*HPSEDigit 2/2: "%%" +*HPSEDigit 3/3: "%%" +*HPSEDigit 4/4: "%%" +*HPSEDigit 5/5: "%%" +*HPSEDigit 6/6: "%%" +*HPSEDigit 7/7: "%%" +*HPSEDigit 8/8: "%%" +*HPSEDigit 9/9: "%%" + +*CloseUI: *HPSEDigit + +*OpenUI *HPTHDigit/Third Digit: PickOne +*OrderDependency: 50 AnySetup *HPTHDigit +*DefaultHPTHDigit: 0 + +*HPTHDigit 0/0: "%%" +*HPTHDigit 1/1: "%%" +*HPTHDigit 2/2: "%%" +*HPTHDigit 3/3: "%%" +*HPTHDigit 4/4: "%%" +*HPTHDigit 5/5: "%%" +*HPTHDigit 6/6: "%%" +*HPTHDigit 7/7: "%%" +*HPTHDigit 8/8: "%%" +*HPTHDigit 9/9: "%%" + +*CloseUI: *HPTHDigit + +*OpenUI *HPFTDigit/Fourth Digit: PickOne +*OrderDependency: 50 AnySetup *HPFTDigit +*DefaultHPFTDigit: 0 + +*HPFTDigit 0/0: "%%" +*HPFTDigit 1/1: "%%" +*HPFTDigit 2/2: "%%" +*HPFTDigit 3/3: "%%" +*HPFTDigit 4/4: "%%" +*HPFTDigit 5/5: "%%" +*HPFTDigit 6/6: "%%" +*HPFTDigit 7/7: "%%" +*HPFTDigit 8/8: "%%" +*HPFTDigit 9/9: "%%" + +*CloseUI: *HPFTDigit + +*ru.Translation HPPinPrnt/HPPinPrnt: "" +*ru.Translation HPFIDigit/HPFIDigit: "" +*ru.Translation HPSEDigit/HPSEDigit: "" +*ru.Translation HPTHDigit/HPTHDigit: "" +*ru.Translation HPFTDigit/HPFTDigit: "" + +*da.Translation HPPinPrnt/HPPinPrnt: "" +*da.Translation HPFIDigit/HPFIDigit: "" +*da.Translation HPSEDigit/HPSEDigit: "" +*da.Translation HPTHDigit/HPTHDigit: "" +*da.Translation HPFTDigit/HPFTDigit: "" + +*de.Translation HPPinPrnt/HPPinPrnt: "" +*de.Translation HPFIDigit/HPFIDigit: "" +*de.Translation HPSEDigit/HPSEDigit: "" +*de.Translation HPTHDigit/HPTHDigit: "" +*de.Translation HPFTDigit/HPFTDigit: "" + +*es.Translation HPPinPrnt/HPPinPrnt: "" +*es.Translation HPFIDigit/HPFIDigit: "" +*es.Translation HPSEDigit/HPSEDigit: "" +*es.Translation HPTHDigit/HPTHDigit: "" +*es.Translation HPFTDigit/HPFTDigit: "" + +*fi.Translation HPPinPrnt/HPPinPrnt: "" +*fi.Translation HPFIDigit/HPFIDigit: "" +*fi.Translation HPSEDigit/HPSEDigit: "" +*fi.Translation HPTHDigit/HPTHDigit: "" +*fi.Translation HPFTDigit/HPFTDigit: "" + +*fr.Translation HPPinPrnt/HPPinPrnt: "" +*fr.Translation HPFIDigit/HPFIDigit: "" +*fr.Translation HPSEDigit/HPSEDigit: "" +*fr.Translation HPTHDigit/HPTHDigit: "" +*fr.Translation HPFTDigit/HPFTDigit: "" + +*it.Translation HPPinPrnt/HPPinPrnt: "" +*it.Translation HPFIDigit/HPFIDigit: "" +*it.Translation HPSEDigit/HPSEDigit: "" +*it.Translation HPTHDigit/HPTHDigit: "" +*it.Translation HPFTDigit/HPFTDigit: "" + +*ja.Translation HPPinPrnt/HPPinPrnt: "" +*ja.Translation HPFIDigit/HPFIDigit: "" +*ja.Translation HPSEDigit/HPSEDigit: "" +*ja.Translation HPTHDigit/HPTHDigit: "" +*ja.Translation HPFTDigit/HPFTDigit: "" + +*ko.Translation HPPinPrnt/HPPinPrnt: "" +*ko.Translation HPFIDigit/HPFIDigit: "" +*ko.Translation HPSEDigit/HPSEDigit: "" +*ko.Translation HPTHDigit/HPTHDigit: "" +*ko.Translation HPFTDigit/HPFTDigit: "" + +*nl.Translation HPPinPrnt/HPPinPrnt: "" +*nl.Translation HPFIDigit/HPFIDigit: "" +*nl.Translation HPSEDigit/HPSEDigit: "" +*nl.Translation HPTHDigit/HPTHDigit: "" +*nl.Translation HPFTDigit/HPFTDigit: "" + +*nb.Translation HPPinPrnt/HPPinPrnt: "" +*nb.Translation HPFIDigit/HPFIDigit: "" +*nb.Translation HPSEDigit/HPSEDigit: "" +*nb.Translation HPTHDigit/HPTHDigit: "" +*nb.Translation HPFTDigit/HPFTDigit: "" + +*pt.Translation HPPinPrnt/HPPinPrnt: "" +*pt.Translation HPFIDigit/HPFIDigit: "" +*pt.Translation HPSEDigit/HPSEDigit: "" +*pt.Translation HPTHDigit/HPTHDigit: "" +*pt.Translation HPFTDigit/HPFTDigit: "" + +*sv.Translation HPPinPrnt/HPPinPrnt: "" +*sv.Translation HPFIDigit/HPFIDigit: "" +*sv.Translation HPSEDigit/HPSEDigit: "" +*sv.Translation HPTHDigit/HPTHDigit: "" +*sv.Translation HPFTDigit/HPFTDigit: "" + +*zh_CN.Translation HPPinPrnt/HPPinPrnt: "" +*zh_CN.Translation HPFIDigit/HPFIDigit: "" +*zh_CN.Translation HPSEDigit/HPSEDigit: "" +*zh_CN.Translation HPTHDigit/HPTHDigit: "" +*zh_CN.Translation HPFTDigit/HPFTDigit: "" + +*zh_TW.Translation HPPinPrnt/HPPinPrnt: "" +*zh_TW.Translation HPFIDigit/HPFIDigit: "" +*zh_TW.Translation HPSEDigit/HPSEDigit: "" +*zh_TW.Translation HPTHDigit/HPTHDigit: "" +*zh_TW.Translation HPFTDigit/HPFTDigit: "" + + +*CloseGroup: SecPin + + +*% ================================= +*% Services Support +*% ================================= +*OpenGroup: Services/Services +*da.Translation Services/Service: "" +*de.Translation Services/Dienste: "" +*es.Translation Services/Servicios: "" +*fi.Translation Services/Huolto: "" +*fr.Translation Services/Services: "" +*it.Translation Services/Servizi: "" +*ja.Translation Services/サービス: "" +*ko.Translation Services/서비스: "" +*nl.Translation Services/Service: "" +*nb.Translation Services/Tjenester: "" +*pt.Translation Services/Serviços: "" +*sv.Translation Services/Tjänster: "" +*zh_CN.Translation Services/服务: "" +*zh_TW.Translation Services/維修: "" +*ru.Translation Services/Службы: "" + + +*OpenUI *HPServicesWeb/Services on the Web: PickOne +*OrderDependency: 50 AnySetup *HPServicesWeb +*DefaultHPServicesWeb: SupportAndTroubleshooting +*da.Translation HPServicesWeb/Tjenester på internet: "" +*de.Translation HPServicesWeb/Dienste im Internet: "" +*es.Translation HPServicesWeb/Servicios en Internet: "" +*fi.Translation HPServicesWeb/Internet-palvelut: "" +*fr.Translation HPServicesWeb/Services sur Internet: "" +*it.Translation HPServicesWeb/Servizi su Internet: "" +*ja.Translation HPServicesWeb/インターネットサービス: "" +*ko.Translation HPServicesWeb/인터넷 서비스: "" +*nl.Translation HPServicesWeb/Services op Internet: "" +*nb.Translation HPServicesWeb/Tjenester på Internett: "" +*pt.Translation HPServicesWeb/Serviços na Internet: "" +*ru.Translation HPServicesWeb/Службы в Интернете: "" +*sv.Translation HPServicesWeb/Tjänster på Internet: "" +*zh_CN.Translation HPServicesWeb/互联网上的服务: "" +*zh_TW.Translation HPServicesWeb/網際網路服務: "" + + +*HPServicesWeb SupportAndTroubleshooting/Support and Troubleshooting: "" +*da.HPServicesWeb SupportAndTroubleshooting/Support og fejlfinding: "" +*de.HPServicesWeb SupportAndTroubleshooting/Support und Problembehandlung: "" +*es.HPServicesWeb SupportAndTroubleshooting/Asistencia técnica y solución de problemas: "" +*fi.HPServicesWeb SupportAndTroubleshooting/Tuki ja vianmääritys: "" +*fr.HPServicesWeb SupportAndTroubleshooting/Support et dépannage: "" +*it.HPServicesWeb SupportAndTroubleshooting/Supporto e soluzione dei problemi: "" +*ja.HPServicesWeb SupportAndTroubleshooting/製品サポート: "" +*ko.HPServicesWeb SupportAndTroubleshooting/지원 및 문제해결: "" +*nl.HPServicesWeb SupportAndTroubleshooting/Support en Problemen oplossen: "" +*nb.HPServicesWeb SupportAndTroubleshooting/Støtte og problemløsing: "" +*pt.HPServicesWeb SupportAndTroubleshooting/Suporte e solução de problemas: "" +*sv.HPServicesWeb SupportAndTroubleshooting/Produktsupport: "" +*zh_CN.HPServicesWeb SupportAndTroubleshooting/支持和疑难排除: "" +*zh_TW.HPServicesWeb SupportAndTroubleshooting/支援與疑難排解: "" +*ru.HPServicesWeb SupportAndTroubleshooting/Тех. поддержка и устранение неполадок: "" + +*HPServicesWeb ProductManuals/Product Manuals: "" +*da.HPServicesWeb ProductManuals/Produktvejledninger: "" +*de.HPServicesWeb ProductManuals/Produkthandbücher: "" +*es.HPServicesWeb ProductManuals/Manuales de productos: "" +*fi.HPServicesWeb ProductManuals/Tuotteen käyttöoppaat: "" +*fr.HPServicesWeb ProductManuals/Manuels produits: "" +*it.HPServicesWeb ProductManuals/Manuali relativi al prodotto: "" +*ja.HPServicesWeb ProductManuals/製品マニュアル: "" +*ko.HPServicesWeb ProductManuals/제품 설명서: "" +*nl.HPServicesWeb ProductManuals/Productdocumentatie: "" +*nb.HPServicesWeb ProductManuals/Produkthåndbøker: "" +*pt.HPServicesWeb ProductManuals/Manuais de produto: "" +*sv.HPServicesWeb ProductManuals/Produkthandböcker: "" +*zh_CN.HPServicesWeb ProductManuals/产品手册: "" +*zh_TW.HPServicesWeb ProductManuals/產品手冊: "" +*ru.HPServicesWeb ProductManuals/Документация для продукта: "" + +*HPServicesWeb OrderSupplies/Shop for Supplies: "" +*da.HPServicesWeb OrderSupplies/Køb forbrugsvarer: "" +*de.HPServicesWeb OrderSupplies/Verbrauchsmaterialien einkaufen: "" +*es.HPServicesWeb OrderSupplies/Comprar suministros: "" +*fi.HPServicesWeb OrderSupplies/Osta tarvikkeita: "" +*fr.HPServicesWeb OrderSupplies/Acheter des fournitures: "" +*it.HPServicesWeb OrderSupplies/Ordini di forniture: "" +*ja.HPServicesWeb OrderSupplies/サプライ用品の販売: "" +*ko.HPServicesWeb OrderSupplies/소모품 샵: "" +*nl.HPServicesWeb OrderSupplies/Bestel benodigdheden: "" +*nb.HPServicesWeb OrderSupplies/Kjøp tilbehør: "" +*pt.HPServicesWeb OrderSupplies/Compra de suprimentos: "" +*sv.HPServicesWeb OrderSupplies/Köpa förbrukningsmaterial: "" +*zh_CN.HPServicesWeb OrderSupplies/购买耗材: "" +*zh_TW.HPServicesWeb OrderSupplies/購買耗材: "" +*ru.HPServicesWeb OrderSupplies/Купить расходные материалы: "" + +*CloseUI: *HPServicesWeb + +*OpenUI *HPServicesUtility/Device Maintenance: PickOne +*OrderDependency: 50 AnySetup *HPServicesUtility +*DefaultHPServicesUtility: DeviceAndSuppliesStatus +*da.Translation HPServicesUtility/Vedligeholdelse af enheden: "" +*de.Translation HPServicesUtility/Wartung: "" +*es.Translation HPServicesUtility/Mantenimiento del dispositivo: "" +*fi.Translation HPServicesUtility/Laitteen huolto: "" +*fr.Translation HPServicesUtility/Maintenance du périphérique: "" +*it.Translation HPServicesUtility/Manutenzione della periferica: "" +*ja.Translation HPServicesUtility/プリンタのメンテナンス: "" +*ko.Translation HPServicesUtility/장치 유지 보수: "" +*nl.Translation HPServicesUtility/Apparaatonderhoud: "" +*nb.Translation HPServicesUtility/Vedlikehold av enhet: "" +*pt.Translation HPServicesUtility/Manutenção do dispositivo: "" +*sv.Translation HPServicesUtility/Enhetsunderhåll: "" +*ru.Translation HPServicesUtility/Обслуживание устройства: "" +*zh_CN.Translation HPServicesUtility/设备维护: "" +*zh_TW.Translation HPServicesUtility/裝置維護: "" + + +*HPServicesUtility DeviceAndSuppliesStatus/Device and Supplies Status: "" +*da.HPServicesUtility DeviceAndSuppliesStatus/Status for enhed og forbrugsvarer: "" +*de.HPServicesUtility DeviceAndSuppliesStatus/Geräte- und Zubehörstatus: "" +*es.HPServicesUtility DeviceAndSuppliesStatus/Estado del dispositivo y de los suministros: "" +*fi.HPServicesUtility DeviceAndSuppliesStatus/Laitteen ja tarvikkeiden tila: "" +*fr.HPServicesUtility DeviceAndSuppliesStatus/Etat du périphérique et des fournitures: "" +*it.HPServicesUtility DeviceAndSuppliesStatus/Stato periferica e materiali di consumo: "" +*ja.HPServicesUtility DeviceAndSuppliesStatus/デバイスおよびサプライ品のステータス: "" +*ko.HPServicesUtility DeviceAndSuppliesStatus/장치 및 소모품 상태: "" +*nl.HPServicesUtility DeviceAndSuppliesStatus/Status apparaat en benodigdheden: "" +*nb.HPServicesUtility DeviceAndSuppliesStatus/Enhets- og rekvisitastatus: "" +*pt.HPServicesUtility DeviceAndSuppliesStatus/Status de suprimentos e do dispositivo: "" +*sv.HPServicesUtility DeviceAndSuppliesStatus/Status för enhet och förbrukningsmaterial: "" +*zh_CN.HPServicesUtility DeviceAndSuppliesStatus/设备和耗材状态: "" +*zh_TW.HPServicesUtility DeviceAndSuppliesStatus/裝置與耗材狀態: "" +*ru.HPServicesUtility DeviceAndSuppliesStatus/Состояние устройства и расх.материалов: "" + + +*CloseUI: *HPServicesUtility + +*CloseGroup: Services +*%Descriptions +*% ============== +*HPServicesWebDS SupportAndTroubleshooting/The product's main support page on hp.com: "" +*da.HPServicesWebDS SupportAndTroubleshooting/Produktets hovedsupportside på hp.com: "" +*de.HPServicesWebDS SupportAndTroubleshooting/Support-Webseite des Produkts auf hp.com: "" +*es.HPServicesWebDS SupportAndTroubleshooting/Página principal de asistencia técnica del producto en hp.com: "" +*fi.HPServicesWebDS SupportAndTroubleshooting/Tuotteen päätukisivu osoitteessa hp.com: "" +*fr.HPServicesWebDS SupportAndTroubleshooting/Page d'assistance principale sur le site hp.com: "" +*it.HPServicesWebDS SupportAndTroubleshooting/Pagina principale di assistenza per il prodotto su hp.com: "" +*ja.HPServicesWebDS SupportAndTroubleshooting/hp.com 上の製品のメインサポートページ: "" +*ko.HPServicesWebDS SupportAndTroubleshooting/HP 웹 사이트의 제품 지원 페이지: "" +*nl.HPServicesWebDS SupportAndTroubleshooting/De belangrijkste ondersteuningspagina van het product op hp.com: "" +*nb.HPServicesWebDS SupportAndTroubleshooting/Hovedsiden for støtte til produktet på hp.com: "" +*pt.HPServicesWebDS SupportAndTroubleshooting/A página principal de suporte do produto em hp.com: "" +*sv.HPServicesWebDS SupportAndTroubleshooting/Produktens huvudsupportsida på hp.com: "" +*zh_CN.HPServicesWebDS SupportAndTroubleshooting/hp.com 上的产品支持主页。: "" +*zh_TW.HPServicesWebDS SupportAndTroubleshooting/產品在 hp.com 上的主要支援網頁。: "" +*ru.HPServicesWebDS SupportAndTroubleshooting/Главная страница поддержки изделия на hp.com.: "" + +*HPServicesWebDS ProductManuals: HPSERVICEWEB_PRODUCTMANUALS_DS +*HPServicesWebDS OrderSupplies: HPSERVICEWEB_ORDERSUPPLIES_DS + +*%Actions +*% ============== + +*HPServicesWebAction SupportAndTroubleshooting: " +WEB;;http://h20180.www2.hp.com/apps/Nav?h_lang=H_LANG&lang=H_LANG&h_cc=H_CC&cc=H_CC&h_pagetype=s-001&h_product=0x8D17&h_page=hpcom&h_client=s-s-e003-1 +" +*End + +*HPServicesWebAction ProductManuals: " +WEB;;http://h20180.www2.hp.com/apps/Nav?h_lang=H_LANG&lang=H_LANG&h_cc=H_CC&cc=H_CC&h_pagetype=s-003&h_product=0x8D17&h_page=hpcom&h_client=s-s-e003-1 +" +*End + +*HPServicesWebAction OrderSupplies: " +WEB;;http://www.hp.com/post-embed/ordersupplies-na?AppName=Mac-PS-PDEs&Product_Name=HP LaserJet P3010 Series +" +*End + +*HPServicesUtilityAction DeviceAndSuppliesStatus: " +EWS;;http://%s/ +" +*End + + + +*% =================================== +*% User Interface Constraints +*% =================================== + +*% Constraints on Trays Can't have Tray 4 unless you have tray 3 +*%============================================================== + +*% ============================================ +*% Constraints speific for globalized PPD files +*% ============================================ +*HPConstraintsSchemeVersion: 2 + +*% Constraints on Custom User and Job Name per User and Job Name +*%------------------------------------------------------ + + + + + + + + + + +*% ============================================ +*% ================================================ + + + + + + +*UIConstraints: *HPOption_Tray3 False *HPOption_Tray4 True + +*% If option not installed then disable appropriate feature. +*%==================================================================== +*UIConstraints: *HPOption_Tray3 False *InputSlot Tray3 +*UIConstraints: *HPOption_Tray4 False *InputSlot Tray4 + +*UIConstraints: *HPOption_Duplexer False *Duplex DuplexTumble +*UIConstraints: *HPOption_Duplexer False *Duplex DuplexNoTumble + +*% Page Size Constraints +*%====================== +*% Tray2 +*%======== +*UIConstraints: *PageSize 3x5 *InputSlot Tray2 +*UIConstraints: *PageSize 4x6 *InputSlot Tray2 +*UIConstraints: *PageSize 5x7 *InputSlot Tray2 +*UIConstraints: *PageSize 5x8 *InputSlot Tray2 +*UIConstraints: *PageSize DoublePostcard *InputSlot Tray2 +*UIConstraints: *PageSize Env10 *InputSlot Tray2 +*UIConstraints: *PageSize EnvMonarch *InputSlot Tray2 +*UIConstraints: *PageSize EnvISOB5 *InputSlot Tray2 +*UIConstraints: *PageSize EnvC5 *InputSlot Tray2 +*UIConstraints: *PageSize EnvDL *InputSlot Tray2 +*UIConstraints: *PageSize w288h432 *InputSlot Tray2 + +*UIConstraints: *InputSlot Tray2 *PageSize 3x5 +*UIConstraints: *InputSlot Tray2 *PageSize 4x6 +*UIConstraints: *InputSlot Tray2 *PageSize 5x7 +*UIConstraints: *InputSlot Tray2 *PageSize 5x8 +*UIConstraints: *InputSlot Tray2 *PageSize DoublePostcard +*UIConstraints: *InputSlot Tray2 *PageSize Env10 +*UIConstraints: *InputSlot Tray2 *PageSize EnvMonarch +*UIConstraints: *InputSlot Tray2 *PageSize EnvISOB5 +*UIConstraints: *InputSlot Tray2 *PageSize EnvC5 +*UIConstraints: *InputSlot Tray2 *PageSize EnvDL +*UIConstraints: *InputSlot Tray2 *PageSize w288h432 + +*UIConstraints: *PageRegion 3x5 *InputSlot Tray2 +*UIConstraints: *PageRegion 4x6 *InputSlot Tray2 +*UIConstraints: *PageRegion 5x7 *InputSlot Tray2 +*UIConstraints: *PageRegion 5x8 *InputSlot Tray2 +*UIConstraints: *PageRegion DoublePostcard *InputSlot Tray2 +*UIConstraints: *PageRegion Env10 *InputSlot Tray2 +*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray2 +*UIConstraints: *PageRegion EnvISOB5 *InputSlot Tray2 +*UIConstraints: *PageRegion EnvC5 *InputSlot Tray2 +*UIConstraints: *PageRegion EnvDL *InputSlot Tray2 +*UIConstraints: *PageRegion w288h432 *InputSlot Tray2 + +*UIConstraints: *InputSlot Tray2 *PageRegion 3x5 +*UIConstraints: *InputSlot Tray2 *PageRegion 4x6 +*UIConstraints: *InputSlot Tray2 *PageRegion 5x7 +*UIConstraints: *InputSlot Tray2 *PageRegion 5x8 +*UIConstraints: *InputSlot Tray2 *PageRegion DoublePostcard +*UIConstraints: *InputSlot Tray2 *PageRegion Env10 +*UIConstraints: *InputSlot Tray2 *PageRegion EnvMonarch +*UIConstraints: *InputSlot Tray2 *PageRegion EnvISOB5 +*UIConstraints: *InputSlot Tray2 *PageRegion EnvC5 +*UIConstraints: *InputSlot Tray2 *PageRegion EnvDL +*UIConstraints: *InputSlot Tray2 *PageRegion w288h432 + +*% Tray3 +*%======== +*UIConstraints: *PageSize 3x5 *InputSlot Tray3 +*UIConstraints: *PageSize 4x6 *InputSlot Tray3 +*UIConstraints: *PageSize 5x7 *InputSlot Tray3 +*UIConstraints: *PageSize 5x8 *InputSlot Tray3 +*UIConstraints: *PageSize DoublePostcard *InputSlot Tray3 +*UIConstraints: *PageSize Env10 *InputSlot Tray3 +*UIConstraints: *PageSize EnvMonarch *InputSlot Tray3 +*UIConstraints: *PageSize EnvISOB5 *InputSlot Tray3 +*UIConstraints: *PageSize EnvC5 *InputSlot Tray3 +*UIConstraints: *PageSize EnvDL *InputSlot Tray3 +*UIConstraints: *PageSize w288h432 *InputSlot Tray3 + +*UIConstraints: *InputSlot Tray3 *PageSize 3x5 +*UIConstraints: *InputSlot Tray3 *PageSize 4x6 +*UIConstraints: *InputSlot Tray3 *PageSize 5x7 +*UIConstraints: *InputSlot Tray3 *PageSize 5x8 +*UIConstraints: *InputSlot Tray3 *PageSize DoublePostcard +*UIConstraints: *InputSlot Tray3 *PageSize Env10 +*UIConstraints: *InputSlot Tray3 *PageSize EnvMonarch +*UIConstraints: *InputSlot Tray3 *PageSize EnvISOB5 +*UIConstraints: *InputSlot Tray3 *PageSize EnvC5 +*UIConstraints: *InputSlot Tray3 *PageSize EnvDL +*UIConstraints: *InputSlot Tray3 *PageSize w288h432 + +*UIConstraints: *PageRegion 3x5 *InputSlot Tray3 +*UIConstraints: *PageRegion 4x6 *InputSlot Tray3 +*UIConstraints: *PageRegion 5x7 *InputSlot Tray3 +*UIConstraints: *PageRegion 5x8 *InputSlot Tray3 +*UIConstraints: *PageRegion DoublePostcard *InputSlot Tray3 +*UIConstraints: *PageRegion Env10 *InputSlot Tray3 +*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray3 +*UIConstraints: *PageRegion EnvISOB5 *InputSlot Tray3 +*UIConstraints: *PageRegion EnvC5 *InputSlot Tray3 +*UIConstraints: *PageRegion EnvDL *InputSlot Tray3 +*UIConstraints: *PageRegion w288h432 *InputSlot Tray3 + +*UIConstraints: *InputSlot Tray3 *PageRegion 3x5 +*UIConstraints: *InputSlot Tray3 *PageRegion 4x6 +*UIConstraints: *InputSlot Tray3 *PageRegion 5x7 +*UIConstraints: *InputSlot Tray3 *PageRegion 5x8 +*UIConstraints: *InputSlot Tray3 *PageRegion DoublePostcard +*UIConstraints: *InputSlot Tray3 *PageRegion Env10 +*UIConstraints: *InputSlot Tray3 *PageRegion EnvMonarch +*UIConstraints: *InputSlot Tray3 *PageRegion EnvISOB5 +*UIConstraints: *InputSlot Tray3 *PageRegion EnvC5 +*UIConstraints: *InputSlot Tray3 *PageRegion EnvDL +*UIConstraints: *InputSlot Tray3 *PageRegion w288h432 + +*% Tray4 +*%======== +*UIConstraints: *PageSize 3x5 *InputSlot Tray4 +*UIConstraints: *PageSize 4x6 *InputSlot Tray4 +*UIConstraints: *PageSize 5x7 *InputSlot Tray4 +*UIConstraints: *PageSize 5x8 *InputSlot Tray4 +*UIConstraints: *PageSize DoublePostcard *InputSlot Tray4 +*UIConstraints: *PageSize Env10 *InputSlot Tray4 +*UIConstraints: *PageSize EnvMonarch *InputSlot Tray4 +*UIConstraints: *PageSize EnvISOB5 *InputSlot Tray4 +*UIConstraints: *PageSize EnvC5 *InputSlot Tray4 +*UIConstraints: *PageSize EnvDL *InputSlot Tray4 +*UIConstraints: *PageSize w288h432 *InputSlot Tray4 + +*UIConstraints: *InputSlot Tray4 *PageSize 3x5 +*UIConstraints: *InputSlot Tray4 *PageSize 4x6 +*UIConstraints: *InputSlot Tray4 *PageSize 5x7 +*UIConstraints: *InputSlot Tray4 *PageSize 5x8 +*UIConstraints: *InputSlot Tray4 *PageSize DoublePostcard +*UIConstraints: *InputSlot Tray4 *PageSize Env10 +*UIConstraints: *InputSlot Tray4 *PageSize EnvMonarch +*UIConstraints: *InputSlot Tray4 *PageSize EnvISOB5 +*UIConstraints: *InputSlot Tray4 *PageSize EnvC5 +*UIConstraints: *InputSlot Tray4 *PageSize EnvDL +*UIConstraints: *InputSlot Tray4 *PageSize w288h432 + +*UIConstraints: *PageRegion 3x5 *InputSlot Tray4 +*UIConstraints: *PageRegion 4x6 *InputSlot Tray4 +*UIConstraints: *PageRegion 5x7 *InputSlot Tray4 +*UIConstraints: *PageRegion 5x8 *InputSlot Tray4 +*UIConstraints: *PageRegion DoublePostcard *InputSlot Tray4 +*UIConstraints: *PageRegion Env10 *InputSlot Tray4 +*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray4 +*UIConstraints: *PageRegion EnvISOB5 *InputSlot Tray4 +*UIConstraints: *PageRegion EnvC5 *InputSlot Tray4 +*UIConstraints: *PageRegion EnvDL *InputSlot Tray4 +*UIConstraints: *PageRegion w288h432 *InputSlot Tray4 + +*UIConstraints: *InputSlot Tray4 *PageRegion 3x5 +*UIConstraints: *InputSlot Tray4 *PageRegion 4x6 +*UIConstraints: *InputSlot Tray4 *PageRegion 5x7 +*UIConstraints: *InputSlot Tray4 *PageRegion 5x8 +*UIConstraints: *InputSlot Tray4 *PageRegion DoublePostcard +*UIConstraints: *InputSlot Tray4 *PageRegion Env10 +*UIConstraints: *InputSlot Tray4 *PageRegion EnvMonarch +*UIConstraints: *InputSlot Tray4 *PageRegion EnvISOB5 +*UIConstraints: *InputSlot Tray4 *PageRegion EnvC5 +*UIConstraints: *InputSlot Tray4 *PageRegion EnvDL +*UIConstraints: *InputSlot Tray4 *PageRegion w288h432 + +*% Duplex +*%======== +*UIConstraints: *PageSize Executive *Duplex DuplexNoTumble +*UIConstraints: *PageSize HalfLetter *Duplex DuplexNoTumble +*UIConstraints: *PageSize 3x5 *Duplex DuplexNoTumble +*UIConstraints: *PageSize 4x6 *Duplex DuplexNoTumble +*UIConstraints: *PageSize 5x7 *Duplex DuplexNoTumble +*UIConstraints: *PageSize 5x8 *Duplex DuplexNoTumble +*UIConstraints: *PageSize A5 *Duplex DuplexNoTumble +*UIConstraints: *PageSize A6 *Duplex DuplexNoTumble +*UIConstraints: *PageSize B5 *Duplex DuplexNoTumble +*UIConstraints: *PageSize B6 *Duplex DuplexNoTumble +*UIConstraints: *PageSize w288h432 *Duplex DuplexNoTumble +*UIConstraints: *PageSize w553h765 *Duplex DuplexNoTumble +*UIConstraints: *PageSize w522h737 *Duplex DuplexNoTumble +*UIConstraints: *PageSize w558h774 *Duplex DuplexNoTumble +*UIConstraints: *PageSize DoublePostcard *Duplex DuplexNoTumble +*UIConstraints: *PageSize Env10 *Duplex DuplexNoTumble +*UIConstraints: *PageSize EnvMonarch *Duplex DuplexNoTumble +*UIConstraints: *PageSize EnvISOB5 *Duplex DuplexNoTumble +*UIConstraints: *PageSize EnvC5 *Duplex DuplexNoTumble +*UIConstraints: *PageSize EnvDL *Duplex DuplexNoTumble + +*UIConstraints: *Duplex DuplexNoTumble *PageSize Executive +*UIConstraints: *Duplex DuplexNoTumble *PageSize HalfLetter +*UIConstraints: *Duplex DuplexNoTumble *PageSize 3x5 +*UIConstraints: *Duplex DuplexNoTumble *PageSize 4x6 +*UIConstraints: *Duplex DuplexNoTumble *PageSize 5x7 +*UIConstraints: *Duplex DuplexNoTumble *PageSize 5x8 +*UIConstraints: *Duplex DuplexNoTumble *PageSize A5 +*UIConstraints: *Duplex DuplexNoTumble *PageSize A6 +*UIConstraints: *Duplex DuplexNoTumble *PageSize B5 +*UIConstraints: *Duplex DuplexNoTumble *PageSize B6 +*UIConstraints: *Duplex DuplexNoTumble *PageSize w288h432 +*UIConstraints: *Duplex DuplexNoTumble *PageSize w553h765 +*UIConstraints: *Duplex DuplexNoTumble *PageSize w522h737 +*UIConstraints: *Duplex DuplexNoTumble *PageSize w558h774 +*UIConstraints: *Duplex DuplexNoTumble *PageSize DoublePostcard +*UIConstraints: *Duplex DuplexNoTumble *PageSize Env10 +*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvMonarch +*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvISOB5 +*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvC5 +*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvDL + +*UIConstraints: *PageRegion Executive *Duplex DuplexNoTumble +*UIConstraints: *PageRegion HalfLetter *Duplex DuplexNoTumble +*UIConstraints: *PageRegion 3x5 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion 4x6 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion 5x7 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion 5x8 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion A5 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion A6 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion B5 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion B6 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion w288h432 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion w553h765 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion w522h737 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion w558h774 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion DoublePostcard *Duplex DuplexNoTumble +*UIConstraints: *PageRegion Env10 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion EnvMonarch *Duplex DuplexNoTumble +*UIConstraints: *PageRegion EnvISOB5 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion EnvC5 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion EnvDL *Duplex DuplexNoTumble + +*UIConstraints: *Duplex DuplexNoTumble *PageRegion Executive +*UIConstraints: *Duplex DuplexNoTumble *PageRegion HalfLetter +*UIConstraints: *Duplex DuplexNoTumble *PageRegion 3x5 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion 4x6 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion 5x7 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion 5x8 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion A5 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion A6 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion B5 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion B6 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion w288h432 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion w553h765 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion w522h737 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion w558h774 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion DoublePostcard +*UIConstraints: *Duplex DuplexNoTumble *PageRegion Env10 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvMonarch +*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvISOB5 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvC5 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvDL + +*UIConstraints: *PageSize Executive *Duplex DuplexTumble +*UIConstraints: *PageSize HalfLetter *Duplex DuplexTumble +*UIConstraints: *PageSize 3x5 *Duplex DuplexTumble +*UIConstraints: *PageSize 4x6 *Duplex DuplexTumble +*UIConstraints: *PageSize 5x7 *Duplex DuplexTumble +*UIConstraints: *PageSize 5x8 *Duplex DuplexTumble +*UIConstraints: *PageSize A5 *Duplex DuplexTumble +*UIConstraints: *PageSize A6 *Duplex DuplexTumble +*UIConstraints: *PageSize B5 *Duplex DuplexTumble +*UIConstraints: *PageSize B6 *Duplex DuplexTumble +*UIConstraints: *PageSize w288h432 *Duplex DuplexTumble +*UIConstraints: *PageSize w553h765 *Duplex DuplexTumble +*UIConstraints: *PageSize w522h737 *Duplex DuplexTumble +*UIConstraints: *PageSize w558h774 *Duplex DuplexTumble +*UIConstraints: *PageSize DoublePostcard *Duplex DuplexTumble +*UIConstraints: *PageSize Env10 *Duplex DuplexTumble +*UIConstraints: *PageSize EnvMonarch *Duplex DuplexTumble +*UIConstraints: *PageSize EnvISOB5 *Duplex DuplexTumble +*UIConstraints: *PageSize EnvC5 *Duplex DuplexTumble +*UIConstraints: *PageSize EnvDL *Duplex DuplexTumble + +*UIConstraints: *Duplex DuplexTumble *PageSize Executive +*UIConstraints: *Duplex DuplexTumble *PageSize HalfLetter +*UIConstraints: *Duplex DuplexTumble *PageSize 3x5 +*UIConstraints: *Duplex DuplexTumble *PageSize 4x6 +*UIConstraints: *Duplex DuplexTumble *PageSize 5x7 +*UIConstraints: *Duplex DuplexTumble *PageSize 5x8 +*UIConstraints: *Duplex DuplexTumble *PageSize A5 +*UIConstraints: *Duplex DuplexTumble *PageSize A6 +*UIConstraints: *Duplex DuplexTumble *PageSize B5 +*UIConstraints: *Duplex DuplexTumble *PageSize B6 +*UIConstraints: *Duplex DuplexTumble *PageSize w288h432 +*UIConstraints: *Duplex DuplexTumble *PageSize w553h765 +*UIConstraints: *Duplex DuplexTumble *PageSize w522h737 +*UIConstraints: *Duplex DuplexTumble *PageSize w558h774 +*UIConstraints: *Duplex DuplexTumble *PageSize DoublePostcard +*UIConstraints: *Duplex DuplexTumble *PageSize Env10 +*UIConstraints: *Duplex DuplexTumble *PageSize EnvMonarch +*UIConstraints: *Duplex DuplexTumble *PageSize EnvISOB5 +*UIConstraints: *Duplex DuplexTumble *PageSize EnvC5 +*UIConstraints: *Duplex DuplexTumble *PageSize EnvDL + +*UIConstraints: *PageRegion Executive *Duplex DuplexTumble +*UIConstraints: *PageRegion HalfLetter *Duplex DuplexTumble +*UIConstraints: *PageRegion 3x5 *Duplex DuplexTumble +*UIConstraints: *PageRegion 4x6 *Duplex DuplexTumble +*UIConstraints: *PageRegion 5x7 *Duplex DuplexTumble +*UIConstraints: *PageRegion 5x8 *Duplex DuplexTumble +*UIConstraints: *PageRegion A5 *Duplex DuplexTumble +*UIConstraints: *PageRegion A6 *Duplex DuplexTumble +*UIConstraints: *PageRegion B5 *Duplex DuplexTumble +*UIConstraints: *PageRegion B6 *Duplex DuplexTumble +*UIConstraints: *PageRegion w288h432 *Duplex DuplexTumble +*UIConstraints: *PageRegion w553h765 *Duplex DuplexTumble +*UIConstraints: *PageRegion w522h737 *Duplex DuplexTumble +*UIConstraints: *PageRegion w558h774 *Duplex DuplexTumble +*UIConstraints: *PageRegion DoublePostcard *Duplex DuplexTumble +*UIConstraints: *PageRegion Env10 *Duplex DuplexTumble +*UIConstraints: *PageRegion EnvMonarch *Duplex DuplexTumble +*UIConstraints: *PageRegion EnvISOB5 *Duplex DuplexTumble +*UIConstraints: *PageRegion EnvC5 *Duplex DuplexTumble +*UIConstraints: *PageRegion EnvDL *Duplex DuplexTumble + +*UIConstraints: *Duplex DuplexTumble *PageRegion Executive +*UIConstraints: *Duplex DuplexTumble *PageRegion HalfLetter +*UIConstraints: *Duplex DuplexTumble *PageRegion 3x5 +*UIConstraints: *Duplex DuplexTumble *PageRegion 4x6 +*UIConstraints: *Duplex DuplexTumble *PageRegion 5x7 +*UIConstraints: *Duplex DuplexTumble *PageRegion 5x8 +*UIConstraints: *Duplex DuplexTumble *PageRegion A5 +*UIConstraints: *Duplex DuplexTumble *PageRegion A6 +*UIConstraints: *Duplex DuplexTumble *PageRegion B5 +*UIConstraints: *Duplex DuplexTumble *PageRegion B6 +*UIConstraints: *Duplex DuplexTumble *PageRegion w288h432 +*UIConstraints: *Duplex DuplexTumble *PageRegion w553h765 +*UIConstraints: *Duplex DuplexTumble *PageRegion w522h737 +*UIConstraints: *Duplex DuplexTumble *PageRegion w558h774 +*UIConstraints: *Duplex DuplexTumble *PageRegion DoublePostcard +*UIConstraints: *Duplex DuplexTumble *PageRegion Env10 +*UIConstraints: *Duplex DuplexTumble *PageRegion EnvMonarch +*UIConstraints: *Duplex DuplexTumble *PageRegion EnvISOB5 +*UIConstraints: *Duplex DuplexTumble *PageRegion EnvC5 +*UIConstraints: *Duplex DuplexTumble *PageRegion EnvDL + +*% Media Type Constraints +*%======================= +*% Tray2 +*%======== +*UIConstraints: *MediaType ExtraHeavy131175 *InputSlot Tray2 +*UIConstraints: *MediaType Cardstock *InputSlot Tray2 +*UIConstraints: *MediaType MonoTransparency *InputSlot Tray2 +*UIConstraints: *MediaType Labels *InputSlot Tray2 +*UIConstraints: *MediaType Envelope *InputSlot Tray2 + +*UIConstraints: *InputSlot Tray2 *MediaType ExtraHeavy131175 +*UIConstraints: *InputSlot Tray2 *MediaType Cardstock +*UIConstraints: *InputSlot Tray2 *MediaType MonoTransparency +*UIConstraints: *InputSlot Tray2 *MediaType Labels +*UIConstraints: *InputSlot Tray2 *MediaType Envelope + +*% Tray3 +*%======== +*UIConstraints: *MediaType ExtraHeavy131175 *InputSlot Tray3 +*UIConstraints: *MediaType Cardstock *InputSlot Tray3 +*UIConstraints: *MediaType MonoTransparency *InputSlot Tray3 +*UIConstraints: *MediaType Labels *InputSlot Tray3 +*UIConstraints: *MediaType Envelope *InputSlot Tray3 + +*UIConstraints: *InputSlot Tray3 *MediaType ExtraHeavy131175 +*UIConstraints: *InputSlot Tray3 *MediaType Cardstock +*UIConstraints: *InputSlot Tray3 *MediaType MonoTransparency +*UIConstraints: *InputSlot Tray3 *MediaType Labels +*UIConstraints: *InputSlot Tray3 *MediaType Envelope + +*% Tray4 +*%======== +*UIConstraints: *MediaType ExtraHeavy131175 *InputSlot Tray4 +*UIConstraints: *MediaType Cardstock *InputSlot Tray4 +*UIConstraints: *MediaType MonoTransparency *InputSlot Tray4 +*UIConstraints: *MediaType Labels *InputSlot Tray4 +*UIConstraints: *MediaType Envelope *InputSlot Tray4 + +*UIConstraints: *InputSlot Tray4 *MediaType ExtraHeavy131175 +*UIConstraints: *InputSlot Tray4 *MediaType Cardstock +*UIConstraints: *InputSlot Tray4 *MediaType MonoTransparency +*UIConstraints: *InputSlot Tray4 *MediaType Labels +*UIConstraints: *InputSlot Tray4 *MediaType Envelope + +*% Duplex +*%======== +*UIConstraints: *MediaType ExtraHeavy131175 *Duplex DuplexNoTumble +*UIConstraints: *MediaType Cardstock *Duplex DuplexNoTumble +*UIConstraints: *MediaType MonoTransparency *Duplex DuplexNoTumble +*UIConstraints: *MediaType Labels *Duplex DuplexNoTumble +*UIConstraints: *MediaType Envelope *Duplex DuplexNoTumble + +*UIConstraints: *Duplex DuplexNoTumble *MediaType ExtraHeavy131175 +*UIConstraints: *Duplex DuplexNoTumble *MediaType Cardstock +*UIConstraints: *Duplex DuplexNoTumble *MediaType MonoTransparency +*UIConstraints: *Duplex DuplexNoTumble *MediaType Labels +*UIConstraints: *Duplex DuplexNoTumble *MediaType Envelope + +*UIConstraints: *MediaType ExtraHeavy131175 *Duplex DuplexTumble +*UIConstraints: *MediaType Cardstock *Duplex DuplexTumble +*UIConstraints: *MediaType MonoTransparency *Duplex DuplexTumble +*UIConstraints: *MediaType Labels *Duplex DuplexTumble +*UIConstraints: *MediaType Envelope *Duplex DuplexTumble + +*UIConstraints: *Duplex DuplexTumble *MediaType ExtraHeavy131175 +*UIConstraints: *Duplex DuplexTumble *MediaType Cardstock +*UIConstraints: *Duplex DuplexTumble *MediaType MonoTransparency +*UIConstraints: *Duplex DuplexTumble *MediaType Labels +*UIConstraints: *Duplex DuplexTumble *MediaType Envelope + + +*% Job Storage constraints +*%============================ + + + + + + +*% =================================== +*% Supported unicode ranges +*% =================================== +*HPSupportedUnicodeRanges: " + *% 1 Base Latin + 0x0020 0x007f + *% 2 Latin 1 Supplement + 0x00A1 0x00ff + *% 3 Latin Extended A + 0x0100 0x017f + *% 4 Latin Extended B (*) + 0x0180 0x01f5, 0x01fa 0x0217 + *% 5 IPA Extensions (*) + 0x0250 0x02a8 + *% 6 Spacing Modifiers (*) + 0x02b0 0x02de, 0x02e0 0x02e9 + *% 7 Diacritical Marks + 0x0300 0x0345 + *% 8 Greek (*) + 0x0384 0x038a, 0x038c 0x038c, 0x038e 0x03a1, 0x03a3 0x03ce, 0x03d0 0x03d6, + 0x03da 0x03da, 0x03dc 0x03dc, 0x03de 0x03de, 0x03e0 0x03e0, 0x03e2 0x03f3 + *% 9 Cyrillic + 0x0401 0x040c, 0x040e 0x044f, 0x0451 0x045c, 0x045e 0x0486, 0x0490 0x04c4, + 0x04c7 0x04c8, 0x04cb 0x04cc, 0x04d0 0x04eb, 0x04ef 0x04f5, 0x04f8 0x04f9 + *% 10 Armenian + 0x0531 0x0556, 0x0559 0x0587, 0x0589 0x0589 + *% 11 Thai (*) + 0x0e01 0x0e3a, 0x0e3f 0x0e5b + *% 12 Lao (*) + 0x0e81 0x0e82, 0x0e84 0x0e84, 0x0e87 0x0e88, 0x0e8a 0x0e8a, 0x0e8d 0x0e8d, 0x0e94 0x0e97, + 0x0e99 0x0ea0, 0x0ea2 0x0ea3, 0x0ea5 0x0ea5, 0x0ea7 0x0ea7, 0x0eaa 0x0eab, 0x0ead 0x0eb9 + 0x0ebb 0x0ec4, 0x0ec6 0x0ec6, 0x0ec8 0x0ecd, 0x0ed0 0x0ed9, 0x0edc 0x0edd + *% 13 Tibetan (*) + 0x0f00 0x0f63, 0x0f65 0x0f69, 0x0f71 0x0f8b, 0x0f90 0x0f95, 0x0f97 0x0f97, 0x0f99 0x0fad + 0x0fb2 0x0fb7, 0x0fb9 0x0fb9 + *% 14 Georgian (*) + 0x10a0 0x10c5, 0x10d0 0x0f6, 0x10fb 0x10fb + *% 15 Hangul Jamo (*) + 0x1100 0x1159, 0x115f 0x11a2, 0x11a8 0x11f9 + *% 16 Latin Ext. Additional (*) + 0x1e00 0x1e9b, 0x1ea0 0x1ef9 + *% 17 Greek Extended (*) + 0x1f00 0x1f15, 0x1f18 0x1f1d, 0x1f20 0x1f45, 0x1f48 0x1f4d, 0x1f50 0x1f57, 0x1f59 0x1f59, + 0x1f5b 0x1f5b, 0x1f5d 0x1f5d, 0x1f5f 0x1f7d, 0x1f80 0x1fb4, 0x1fb6 0x1fc4, 0x1fc6 0x1fd3, + 0x1fd6 0x1fef, 0x1ff2 0x1ff4, 0x1ff6 0x1ffe + *% 18 General Puntuation + 0x2000 0x2046 + *% 19 Currency Symbols + 0x20a0 0x20ab + *% 20 Letterlike Symbols + 0x2100 0x2138 + *% 21 Number Forms + 0x2153 0x2182 + *% 22 Mathematical Operators + 0x2200 0x22f1 + *% 23 Hiragana(*) + 0x3041 0x3094, 0x3099 0x309e + *% 24 Katakana + 0x30a1 0x30fe + *% 25 Bopomofo + 0x3105 0x312c + *% 26 Hangul Jamo + 0x3131 0x318e + *% 27 Kanbun + 0x3190 0x319f + *% 28 CJK Compatibility (*) + 0x3300 0x3376, 0x337b 0x33dd, 0x33e0 0x33fe + *% 29 CJK Unified Ideographs (*) + 0x4e00 0x9fa5 + *% 30 Hangul Syllables (*) + 0xac00 0xd7a3 + *% 31 CJK Comp. Ideographs + 0xf900 0xfa2d + " +*End + + +*% ================================================ +*% ================================================ + +*HPGuidePageExtraTumble: False + + +*OpenGroup: HPFinishingPanel/Finishing Panel +*da.Translation HPFinishingPanel/Finisher-indstillinger: "" +*de.Translation HPFinishingPanel/Optionen zum Fertigstellen: "" +*es.Translation HPFinishingPanel/Acabado: "" +*fi.Translation HPFinishingPanel/Viimeistelyasetukset: "" +*fr.Translation HPFinishingPanel/Finition: "" +*it.Translation HPFinishingPanel/Finitura: "" +*ja.Translation HPFinishingPanel/仕上げオプション: "" +*ko.Translation HPFinishingPanel/마감장치 옵션: "" +*nl.Translation HPFinishingPanel/Afwerkingsopties: "" +*nb.Translation HPFinishingPanel/Etterbeh.alternativer: "" +*pt.Translation HPFinishingPanel/Acabamento: "" +*sv.Translation HPFinishingPanel/Efterbehandling: "" +*zh_CN.Translation HPFinishingPanel/完成选项: "" +*zh_TW.Translation HPFinishingPanel/外觀選項: "" +*ru.Translation HPFinishingPanel/Окончательная обработка: "" + + +*% ================================================ +*% ================================================ + + + + + + + +*% =========================================================== + + + + + + + + + + +*% ================================================ +*% ================================================ + + + + + + +*%============================================= + +*OpenUI *HPRotate180/Rotate Page 180 deg: Boolean +*OrderDependency: 48 AnySetup *HPRotate180 +*DefaultHPRotate180: False +*da.Translation HPRotate180/Roter 180°: "" +*de.Translation HPRotate180/Um 180 Grad drehen: "" +*es.Translation HPRotate180/Girar 180°: "" +*fi.Translation HPRotate180/Kierrä 180°: "" +*fr.Translation HPRotate180/Faire pivoter de 180˚: "" +*it.Translation HPRotate180/Ruota di 180°: "" +*ja.Translation HPRotate180/印刷の向きを 180°回転: "" +*ko.Translation HPRotate180/180도 회전된 방향: "" +*nl.Translation HPRotate180/Draaien met 180°: "" +*nb.Translation HPRotate180/Roter 180°: "" +*pt.Translation HPRotate180/Girar em 180°: "" +*sv.Translation HPRotate180/Rotera sedan 180°: "" +*zh_CN.Translation HPRotate180/方向旋转 180 度: "" +*zh_TW.Translation HPRotate180/旋轉 180 度: "" +*ru.Translation HPRotate180/Поворот на 180 градусов: "" + +*HPRotate180 False/Off: "" +*da.HPRotate180 False/Fra: "" +*de.HPRotate180 False/Aus: "" +*es.HPRotate180 False/Desactivado: "" +*fi.HPRotate180 False/Ei käytössä: "" +*fr.HPRotate180 False/Désactivé: "" +*it.HPRotate180 False/Disattivata: "" +*ja.HPRotate180 False/オフ: "" +*ko.HPRotate180 False/꺼짐: "" +*nl.HPRotate180 False/Uit: "" +*nb.HPRotate180 False/Av: "" +*pt.HPRotate180 False/Desativado: "" +*sv.HPRotate180 False/Av: "" +*zh_CN.HPRotate180 False/关: "" +*zh_TW.HPRotate180 False/關閉: "" +*ru.HPRotate180 False/Выкл.: "" + +*HPRotate180 True/On: " +<< /BeginPage + { userdict begin + pop + currentpagedevice /PageSize get dup 0 get exch 1 get translate + 0 0 moveto + 180 rotate + end } bind +>> setpagedevice" +*End +*da.HPRotate180 True/På: "" +*de.HPRotate180 True/Ein: "" +*es.HPRotate180 True/Activado: "" +*fi.HPRotate180 True/käytössä: "" +*fr.HPRotate180 True/Activé: "" +*it.HPRotate180 True/Attiva: "" +*ja.HPRotate180 True/オン: "" +*ko.HPRotate180 True/켜짐: "" +*nl.HPRotate180 True/Aan: "" +*nb.HPRotate180 True/På: "" +*pt.HPRotate180 True/Ativado: "" +*sv.HPRotate180 True/På: "" +*zh_CN.HPRotate180 True/开: "" +*zh_TW.HPRotate180 True/開啟: "" +*ru.HPRotate180 True/Вкл.: "" + +*CloseUI: *HPRotate180 + +*%ifdef MAC_OS_X_VERSION_10_5 +*%================================= +*% Mirror Image +*%================================= +*OpenUI *MirrorPrint/Mirror Image: Boolean +*OrderDependency: 50.0 AnySetup *MirrorPrint +*DefaultMirrorPrint: False +*da.Translation MirrorPrint/Spejlvend billede: "" +*de.Translation MirrorPrint/Spiegelverkehrt: "" +*es.Translation MirrorPrint/Imagen Reflejada: "" +*fi.Translation MirrorPrint/Peilikuva: "" +*fr.Translation MirrorPrint/Image Inversée: "" +*it.Translation MirrorPrint/Immagine speculare: "" +*ja.Translation MirrorPrint/左右反転: "" +*ko.Translation MirrorPrint/좌우대칭 이미지: "" +*nl.Translation MirrorPrint/Spiegelbeeld: "" +*nb.Translation MirrorPrint/Speilvendt Bilde: "" +*pt.Translation MirrorPrint/Imagens em Espelho: "" +*sv.Translation MirrorPrint/Spegelvänd Bild: "" +*zh_CN.Translation MirrorPrint/镜像图像: "" +*zh_TW.Translation MirrorPrint/鏡像: "" +*ru.Translation MirrorPrint/Зеркальное отображение: "" + +*MirrorPrint True/On: "<>setpagedevice" +*da.MirrorPrint True/På: "" +*de.MirrorPrint True/Ein: "" +*es.MirrorPrint True/Activado: "" +*fi.MirrorPrint True/Käytössä: "" +*fr.MirrorPrint True/Activé: "" +*it.MirrorPrint True/Attiva: "" +*ja.MirrorPrint True/オン: "" +*ko.MirrorPrint True/켜짐: "" +*nl.MirrorPrint True/Aan: "" +*nb.MirrorPrint True/På: "" +*pt.MirrorPrint True/Ativado: "" +*sv.MirrorPrint True/På: "" +*zh_CN.MirrorPrint True/开: "" +*zh_TW.MirrorPrint True/開啟: "" +*ru.MirrorPrint True/Вкл.: "" + +*MirrorPrint False/Off: "<>setpagedevice" +*da.MirrorPrint False/Fra: "" +*de.MirrorPrint False/Aus: "" +*es.MirrorPrint False/Desactivado: "" +*fi.MirrorPrint False/Ei käytössä: "" +*fr.MirrorPrint False/Désactivé: "" +*it.MirrorPrint False/Disattivata: "" +*ja.MirrorPrint False/オフ: "" +*ko.MirrorPrint False/꺼짐: "" +*nl.MirrorPrint False/Uit: "" +*nb.MirrorPrint False/Av: "" +*pt.MirrorPrint False/Desativado: "" +*sv.MirrorPrint False/Av: "" +*zh_CN.MirrorPrint False/关: "" +*zh_TW.MirrorPrint False/關閉: "" +*ru.MirrorPrint False/Выкл.: "" + +*?MirrorPrint: " + save + currentpagedevice /MirrorPrint get + {(True)}{(False)}ifelse = flush + restore" +*End +*CloseUI: *MirrorPrint +*%endif + +*%========================================== +*% Media Type +*%========================================= +*OpenUI *MediaType/Media Type: PickOne +*OrderDependency: 20 AnySetup *MediaType +*DefaultMediaType: Unspecified +*da.Translation MediaType/Medietype: "" +*de.Translation MediaType/Medientyp: "" +*es.Translation MediaType/Tipo de sustrato: "" +*fi.Translation MediaType/Tulostusmateriaali: "" +*fr.Translation MediaType/Type de support: "" +*it.Translation MediaType/Tipo di supporto: "" +*ja.Translation MediaType/用紙の種類: "" +*ko.Translation MediaType/용지 종류: "" +*nl.Translation MediaType/Type afdrukmateriaal: "" +*nb.Translation MediaType/Utskriftsmateriale: "" +*pt.Translation MediaType/Tipo de mídia: "" +*sv.Translation MediaType/Material: "" +*zh_CN.Translation MediaType/介质类型: "" +*zh_TW.Translation MediaType/媒體類型: "" +*ru.Translation MediaType/Тип носителя: "" + +*MediaType Unspecified/Unspecified: "" +*da.MediaType Unspecified/Uspecificeret: "" +*de.MediaType Unspecified/Nicht bestimmt: "" +*es.MediaType Unspecified/No especificado: "" +*fi.MediaType Unspecified/Määrittämätön: "" +*fr.MediaType Unspecified/Non spécifié: "" +*it.MediaType Unspecified/Non specificato: "" +*ja.MediaType Unspecified/指定なし: "" +*ko.MediaType Unspecified/지정되지 않음: "" +*nl.MediaType Unspecified/Onbekend: "" +*nb.MediaType Unspecified/Uspesifisert: "" +*pt.MediaType Unspecified/Não especificado: "" +*sv.MediaType Unspecified/Ospecificerad: "" +*zh_CN.MediaType Unspecified/未指定: "" +*zh_TW.MediaType Unspecified/未指定: "" +*ru.MediaType Unspecified/Не указано: "" + +*MediaType Plain/Plain: " + <> setpagedevice" +*End +*da.MediaType Plain/Almindeligt: "" +*de.MediaType Plain/Normalpapier: "" +*es.MediaType Plain/Estándar: "" +*fi.MediaType Plain/Tavallinen: "" +*fr.MediaType Plain/Ordinaire: "" +*it.MediaType Plain/Normale: "" +*ja.MediaType Plain/普通用紙: "" +*ko.MediaType Plain/일반용지: "" +*nl.MediaType Plain/Gewoon: "" +*nb.MediaType Plain/Vanlig: "" +*pt.MediaType Plain/Comum: "" +*sv.MediaType Plain/Vanligt: "" +*zh_CN.MediaType Plain/普通纸: "" +*zh_TW.MediaType Plain/素面紙: "" +*ru.MediaType Plain/Обычная бумага: "" + +*MediaType Light6074/Light 60-74g: " + <> setpagedevice" +*End +*da.MediaType Light6074/Let 60-74g: "" +*de.MediaType Light6074/Leicht 60-74g: "" +*es.MediaType Light6074/Ligero 60-74g: "" +*fi.MediaType Light6074/Kevyt 60-74g: "" +*fr.MediaType Light6074/Fin 60-74g: "" +*it.MediaType Light6074/Leggera 60-74g: "" +*ja.MediaType Light6074/軽い用紙 60-74g: "" +*ko.MediaType Light6074/경량지 60-74g: "" +*nl.MediaType Light6074/Licht 60-74 g: "" +*nb.MediaType Light6074/Lys 60-74g: "" +*pt.MediaType Light6074/Leve 60-74g: "" +*sv.MediaType Light6074/Lätt 60-74g: "" +*zh_CN.MediaType Light6074/轻磅 60-74g: "" +*zh_TW.MediaType Light6074/輕磅紙 60-74g: "" +*ru.MediaType Light6074/Легкая 60-74 г.: "" + +*MediaType MidWeight96110/Mid-Weight 96-110g: " + <> setpagedevice" +*End +*da.MediaType MidWeight96110/Mellemkraftigt 96-110 g: "" +*de.MediaType MidWeight96110/Mittleres Gewicht 96-110 g: "" +*es.MediaType MidWeight96110/Peso medio 96-110 g: "" +*fi.MediaType MidWeight96110/Keskipaksu 96-110 g: "" +*fr.MediaType MidWeight96110/Grammage moyen 96-110g: "" +*it.MediaType MidWeight96110/Medio spessore 96-110 g: "" +*ja.MediaType MidWeight96110/中厚手用紙 96-110g: "" +*ko.MediaType MidWeight96110/보통 중량지 96-110g: "" +*nl.MediaType MidWeight96110/Middengewicht 96-110g: "" +*nb.MediaType MidWeight96110/Mellomtungt, 96-110 g: "" +*pt.MediaType MidWeight96110/Semipesado 96-110g: "" +*sv.MediaType MidWeight96110/Mellanvikt 96-110 g: "" +*zh_CN.MediaType MidWeight96110/中等重量纸 96-110g: "" +*zh_TW.MediaType MidWeight96110/中磅紙 96-110g: "" +*ru.MediaType MidWeight96110/Среднеплотная 96-110 г: "" + +*MediaType Heavy111130/Heavy 111-130 g: " + <> setpagedevice" +*End +*da.MediaType Heavy111130/Kraftigt 111-130 g: "" +*de.MediaType Heavy111130/Schwer 111-130 g: "" +*es.MediaType Heavy111130/Pesado 111-130 g: "" +*fi.MediaType Heavy111130/Paksu 111-130 g: "" +*fr.MediaType Heavy111130/Epais 111-130 g: "" +*it.MediaType Heavy111130/Pesante 111-130 g: "" +*ja.MediaType Heavy111130/重い用紙 111-130 g: "" +*ko.MediaType Heavy111130/중량지 111-130 g: "" +*nl.MediaType Heavy111130/Zwaar 111-130 g: "" +*nb.MediaType Heavy111130/Tungt 111-130 g: "" +*pt.MediaType Heavy111130/Pesado 111-130 g: "" +*sv.MediaType Heavy111130/Tungt 111-130 g: "" +*zh_CN.MediaType Heavy111130/重磅 111-130 g: "" +*zh_TW.MediaType Heavy111130/重磅紙 111-130 g: "" +*ru.MediaType Heavy111130/Плотная 111-130 г.: "" + + +*MediaType ExtraHeavy131175/Extra Heavy 131-175 g: " + <> setpagedevice" +*End +*da.MediaType ExtraHeavy131175/Ekstra kraftigt 131-175 g: "" +*de.MediaType ExtraHeavy131175/Sehr schwer 131-175 g: "" +*es.MediaType ExtraHeavy131175/Pesado extra 131-175 g: "" +*fi.MediaType ExtraHeavy131175/Erittäin paksu 131-175 g: "" +*fr.MediaType ExtraHeavy131175/Trés épais 131-175 g: "" +*it.MediaType ExtraHeavy131175/Extra Pesante 131-175 g: "" +*ja.MediaType ExtraHeavy131175/重い用紙 131-175 g: "" +*ko.MediaType ExtraHeavy131175/초중량지 131-175 g: "" +*nl.MediaType ExtraHeavy131175/Extra Zwaar 131-175 g: "" +*nb.MediaType ExtraHeavy131175/Ekstra Tung 131-175 g: "" +*pt.MediaType ExtraHeavy131175/Extrapesado 131-175 g: "" +*sv.MediaType ExtraHeavy131175/Extra Tungt 131-175 g: "" +*zh_CN.MediaType ExtraHeavy131175/超级重磅纸 131-175 g: "" +*zh_TW.MediaType ExtraHeavy131175/超重磅紙 131-175 g: "" +*ru.MediaType ExtraHeavy131175/Сверхплотная 131-175 г.: "" + + +*MediaType Cardstock/Cardstock: " + <> setpagedevice" +*End +*da.MediaType Cardstock/Karton: "" +*de.MediaType Cardstock/Karton: "" +*es.MediaType Cardstock/Cartulina: "" +*fi.MediaType Cardstock/Korttipaperi: "" +*fr.MediaType Cardstock/Cartonné: "" +*it.MediaType Cardstock/Cartoncino: "" +*ja.MediaType Cardstock/カード ストック: "" +*ko.MediaType Cardstock/카드 용지: "" +*nl.MediaType Cardstock/Kartonkaart: "" +*nb.MediaType Cardstock/Kort: "" +*pt.MediaType Cardstock/Cartolina: "" +*sv.MediaType Cardstock/Kort: "" +*zh_CN.MediaType Cardstock/卡片纸: "" +*zh_TW.MediaType Cardstock/卡片紙: "" +*ru.MediaType Cardstock/Карточки: "" + +*MediaType MonoTransparency/Monochrome Laser Transparency: " + <> setpagedevice" +*End +*da.MediaType MonoTransparency/Monokrom lasertransparent: "" +*de.MediaType MonoTransparency/Einfarbige Laser-Transparentfolie: "" +*es.MediaType MonoTransparency/Transparencia para láser monocromo: "" +*fi.MediaType MonoTransparency/Mustavalkolaserkalvo: "" +*fr.MediaType MonoTransparency/Transparent laser monochrome: "" +*it.MediaType MonoTransparency/Lucido per stampanti laser in bianco e nero: "" +*ja.MediaType MonoTransparency/モノクロ レーザー OHP フィルム: "" +*ko.MediaType MonoTransparency/Monochrome Laser 투명: "" +*nl.MediaType MonoTransparency/Transparant voor monochroomlaser: "" +*nb.MediaType MonoTransparency/Transparent for svart-hvitt-laser: "" +*pt.MediaType MonoTransparency/Transparência monocrom. laser: "" +*sv.MediaType MonoTransparency/Enfärgad OH-film för laser: "" +*zh_CN.MediaType MonoTransparency/黑白激光投影胶片: "" +*zh_TW.MediaType MonoTransparency/單色雷射投影片: "" +*ru.MediaType MonoTransparency/Проз. пленка для монохр. лазер. печ.: "" + +*MediaType Labels/Labels: " + <> setpagedevice" +*End +*da.MediaType Labels/Etiketter: "" +*de.MediaType Labels/Etiketten: "" +*es.MediaType Labels/Etiquetas: "" +*fi.MediaType Labels/Tarrat: "" +*fr.MediaType Labels/Étiquettes: "" +*it.MediaType Labels/Etichette: "" +*ja.MediaType Labels/ラベル: "" +*ko.MediaType Labels/레이블: "" +*nl.MediaType Labels/Etiketten: "" +*nb.MediaType Labels/Etiketter: "" +*pt.MediaType Labels/Etiquetas: "" +*sv.MediaType Labels/Etiketter: "" +*zh_CN.MediaType Labels/标签: "" +*zh_TW.MediaType Labels/標籤: "" +*ru.MediaType Labels/Этикетки: "" + +*MediaType Letterhead/Letterhead: " + <> setpagedevice" +*End +*da.MediaType Letterhead/Brevpapir: "" +*de.MediaType Letterhead/Briefkopfpapier: "" +*es.MediaType Letterhead/Membrete: "" +*fi.MediaType Letterhead/Kirjelomake: "" +*fr.MediaType Letterhead/Papier à en-tête: "" +*it.MediaType Letterhead/Carta intestata: "" +*ja.MediaType Letterhead/レターヘッド付き: "" +*ko.MediaType Letterhead/레터헤드: "" +*nl.MediaType Letterhead/Briefpapier: "" +*nb.MediaType Letterhead/Brevhode: "" +*pt.MediaType Letterhead/Timbrado: "" +*sv.MediaType Letterhead/Brevpapper: "" +*zh_CN.MediaType Letterhead/信头纸: "" +*zh_TW.MediaType Letterhead/信頭紙: "" +*ru.MediaType Letterhead/Фирменный бланк: "" + +*MediaType Envelope/Envelope: " + <> setpagedevice" +*End +*da.MediaType Envelope/Konvolut: "" +*de.MediaType Envelope/Briefumschlag: "" +*es.MediaType Envelope/Sobre: "" +*fi.MediaType Envelope/Kirjekuori: "" +*fr.MediaType Envelope/Enveloppe: "" +*it.MediaType Envelope/Busta: "" +*ja.MediaType Envelope/封筒: "" +*ko.MediaType Envelope/봉투: "" +*nl.MediaType Envelope/Enveloppen: "" +*nb.MediaType Envelope/Konvolutt: "" +*pt.MediaType Envelope/Envelope: "" +*sv.MediaType Envelope/Kuvert: "" +*zh_CN.MediaType Envelope/信封: "" +*zh_TW.MediaType Envelope/信封: "" +*ru.MediaType Envelope/Конверт: "" + +*MediaType Preprinted/Preprinted: " + <> setpagedevice" +*End +*da.MediaType Preprinted/Fortrykt: "" +*de.MediaType Preprinted/Vordruckpapier: "" +*es.MediaType Preprinted/Preimpreso: "" +*fi.MediaType Preprinted/Esipainettu: "" +*fr.MediaType Preprinted/Préimprimé: "" +*it.MediaType Preprinted/Prestampata: "" +*ja.MediaType Preprinted/印刷フォーム: "" +*ko.MediaType Preprinted/미리 인쇄: "" +*nl.MediaType Preprinted/Voorbedrukt: "" +*nb.MediaType Preprinted/Forhåndstrykt: "" +*pt.MediaType Preprinted/Pré-impresso: "" +*sv.MediaType Preprinted/Förtryckt: "" +*zh_CN.MediaType Preprinted/预先打印纸: "" +*zh_TW.MediaType Preprinted/預印的: "" +*ru.MediaType Preprinted/Печатный бланк: "" + +*MediaType Prepunched/Prepunched: " + <> setpagedevice" +*End +*da.MediaType Prepunched/Hullet: "" +*de.MediaType Prepunched/Vorgelochtes Papier: "" +*es.MediaType Prepunched/Preperforado: "" +*fi.MediaType Prepunched/Rei’itetty: "" +*fr.MediaType Prepunched/Perforé: "" +*it.MediaType Prepunched/Perforata: "" +*ja.MediaType Prepunched/穴あき用紙: "" +*ko.MediaType Prepunched/천공 용지: "" +*nl.MediaType Prepunched/Geperforeerd: "" +*nb.MediaType Prepunched/Hullark: "" +*pt.MediaType Prepunched/Perfurado: "" +*sv.MediaType Prepunched/Hålat: "" +*zh_CN.MediaType Prepunched/预先打孔纸: "" +*zh_TW.MediaType Prepunched/打孔過的: "" +*ru.MediaType Prepunched/Перфорированная бумага: "" + +*MediaType Colored/Colored: " + <> setpagedevice" +*End +*da.MediaType Colored/Farvet: "" +*de.MediaType Colored/Farbig: "" +*es.MediaType Colored/Coloreado: "" +*fi.MediaType Colored/Värillinen: "" +*fr.MediaType Colored/Coloré: "" +*it.MediaType Colored/Colorata: "" +*ja.MediaType Colored/カラー: "" +*ko.MediaType Colored/색상지: "" +*nl.MediaType Colored/Gekleurd: "" +*nb.MediaType Colored/Farget: "" +*pt.MediaType Colored/Colorido: "" +*sv.MediaType Colored/Färgat: "" +*zh_CN.MediaType Colored/彩纸: "" +*zh_TW.MediaType Colored/彩紙: "" +*ru.MediaType Colored/Цветная: "" + +*MediaType Bond/Bond: " + <> setpagedevice" +*End +*da.MediaType Bond/Bankpost: "" +*de.MediaType Bond/Briefpapier: "" +*es.MediaType Bond/Bond: "" +*fi.MediaType Bond/Kova asiakirjapaperi: "" +*fr.MediaType Bond/Document: "" +*it.MediaType Bond/Carta fine: "" +*ja.MediaType Bond/ボンド紙: "" +*ko.MediaType Bond/본드지: "" +*nl.MediaType Bond/Bankpost: "" +*nb.MediaType Bond/Bond: "" +*pt.MediaType Bond/Superbond: "" +*sv.MediaType Bond/Finpapper: "" +*zh_CN.MediaType Bond/证券纸: "" +*zh_TW.MediaType Bond/雪銅紙: "" +*ru.MediaType Bond/Высокосортная: "" + +*MediaType Recycled/Recycled: " + <> setpagedevice" +*End +*da.MediaType Recycled/Genbrug: "" +*de.MediaType Recycled/Recyclingpapier: "" +*es.MediaType Recycled/Reciclado: "" +*fi.MediaType Recycled/Uusiopaperi: "" +*fr.MediaType Recycled/Recyclé: "" +*it.MediaType Recycled/Riciclata: "" +*ja.MediaType Recycled/再生紙: "" +*ko.MediaType Recycled/재활용지: "" +*nl.MediaType Recycled/Gerecycled: "" +*nb.MediaType Recycled/Resirkulert: "" +*pt.MediaType Recycled/Reciclado: "" +*sv.MediaType Recycled/Returpapper: "" +*zh_CN.MediaType Recycled/再生纸: "" +*zh_TW.MediaType Recycled/再生紙: "" +*ru.MediaType Recycled/Бумага из вторсырья: "" + +*MediaType Rough/Rough: " + <> setpagedevice" +*End +*da.MediaType Rough/Groft: "" +*de.MediaType Rough/Rauhpapier: "" +*es.MediaType Rough/Rugoso: "" +*fi.MediaType Rough/Karkea: "" +*fr.MediaType Rough/Rugueux: "" +*it.MediaType Rough/Ruvida: "" +*ja.MediaType Rough/ざら紙: "" +*ko.MediaType Rough/거친 용지: "" +*nl.MediaType Rough/Ruw: "" +*nb.MediaType Rough/Grovt: "" +*pt.MediaType Rough/Áspero: "" +*sv.MediaType Rough/Grovt: "" +*zh_CN.MediaType Rough/粗糙: "" +*zh_TW.MediaType Rough/粗糙紙: "" +*ru.MediaType Rough/Грубая бумага: "" + +*?MediaType: " + save + currentpagedevice /InputAttributes get dup + /Priority get + 0 get get + /MediaType get + (Card Stock) anchorsearch + {pop pop (Card_Stock)} if + = flush + restore +" +*End +*CloseUI: *MediaType + + +*OpenUI *HPStraightPaperPath/Use Straight Paper Path: Boolean +*DefaultHPStraightPaperPath: False +*da.Translation HPStraightPaperPath/Benyt lige papirgang: "" +*de.Translation HPStraightPaperPath/Geraden Papierpfad verwenden: "" +*es.Translation HPStraightPaperPath/Utilizar ruta de papel recta: "" +*fi.Translation HPStraightPaperPath/Käytä suoraa paperireittiä: "" +*fr.Translation HPStraightPaperPath/Insérer le papier droit: "" +*it.Translation HPStraightPaperPath/Usa percorso carta diretto: "" +*ja.Translation HPStraightPaperPath/直線用紙経路の使用: "" +*ko.Translation HPStraightPaperPath/곧은 용지 경로를 사용하십시오: "" +*nl.Translation HPStraightPaperPath/Recht papierpad gebruiken: "" +*nb.Translation HPStraightPaperPath/Bruk rett papirbane: "" +*pt.Translation HPStraightPaperPath/Usar caminho reto de papel: "" +*sv.Translation HPStraightPaperPath/Använd rak pappersbana: "" +*zh_CN.Translation HPStraightPaperPath/使用直线馈纸路径: "" +*zh_TW.Translation HPStraightPaperPath/使用直接出紙路徑: "" +*ru.Translation HPStraightPaperPath/Исп. прямое прохождение бумаги: "" + +*HPStraightPaperPath True/On: "" +*da.HPStraightPaperPath True/På: "" +*de.HPStraightPaperPath True/Ein: "" +*es.HPStraightPaperPath True/Activado: "" +*fi.HPStraightPaperPath True/Käytössä: "" +*fr.HPStraightPaperPath True/Activé: "" +*it.HPStraightPaperPath True/Attiva: "" +*ja.HPStraightPaperPath True/オン: "" +*ko.HPStraightPaperPath True/켜짐: "" +*nl.HPStraightPaperPath True/Aan: "" +*nb.HPStraightPaperPath True/På: "" +*pt.HPStraightPaperPath True/Ativado: "" +*sv.HPStraightPaperPath True/På: "" +*zh_CN.HPStraightPaperPath True/开: "" +*zh_TW.HPStraightPaperPath True/開啟: "" +*ru.HPStraightPaperPath True/Вкл.: "" + +*HPStraightPaperPath False/Off: "" +*da.HPStraightPaperPath False/Fra: "" +*de.HPStraightPaperPath False/Aus: "" +*es.HPStraightPaperPath False/Desactivado: "" +*fi.HPStraightPaperPath False/Ei käytössä: "" +*fr.HPStraightPaperPath False/Désactivé: "" +*it.HPStraightPaperPath False/Disattivata: "" +*ja.HPStraightPaperPath False/オフ: "" +*ko.HPStraightPaperPath False/꺼짐: "" +*nl.HPStraightPaperPath False/Uit: "" +*nb.HPStraightPaperPath False/Av: "" +*pt.HPStraightPaperPath False/Desativado: "" +*sv.HPStraightPaperPath False/Av: "" +*zh_CN.HPStraightPaperPath False/关: "" +*zh_TW.HPStraightPaperPath False/關閉: "" +*ru.HPStraightPaperPath False/Выкл.: "" + +*CloseUI: *HPStraightPaperPath +*HPStraightPaperPathDS True: "HPSTRAIGHTPAPERPATH_DS" +*HPStraightPaperPathDS False: "HPSTRAIGHTPAPERPATH_DS" + + + +*CloseGroup: HPFinishingPanel + +*%==================================== +*% Duplex +*%==================================== +*OpenUI *Duplex/2-Sided Printing: PickOne +*OrderDependency: 50 AnySetup *Duplex +*DefaultDuplex: None +*da.Translation Duplex/Dupleks: "" +*de.Translation Duplex/Beidseitiger Druck: "" +*es.Translation Duplex/Dúplex: "" +*fi.Translation Duplex/Kaksipuolinen tulostus: "" +*fr.Translation Duplex/Impression des deux côtés: "" +*it.Translation Duplex/Duplex: "" +*ja.Translation Duplex/両面印刷: "" +*ko.Translation Duplex/양면인쇄: "" +*nl.Translation Duplex/Duplex: "" +*nb.Translation Duplex/Tosidig: "" +*pt.Translation Duplex/Dúplex: "" +*sv.Translation Duplex/Dubbelsidig: "" +*zh_CN.Translation Duplex/双面打印: "" +*zh_TW.Translation Duplex/雙面列印: "" +*ru.Translation Duplex/2-сторонняя печать: "" + +*Duplex None/Off: " + <> setpagedevice" +*End +*da.Duplex None/Fra (1-sidet): "" +*de.Duplex None/Aus (einseitig): "" +*es.Duplex None/Des (por un solo lado): "" +*fi.Duplex None/Ei käytössä: "" +*fr.Duplex None/Désactivé: "" +*it.Duplex None/Disattivato (facciata singola): "" +*ja.Duplex None/オフ (片面印刷): "" +*ko.Duplex None/끔 (한 면): "" +*nl.Duplex None/Uit (enkelzijdig): "" +*nb.Duplex None/Av (1-sidig): "" +*pt.Duplex None/Desligado (face única): "" +*sv.Duplex None/Av (enkelsidig): "" +*zh_CN.Duplex None/关 (1面): "" +*zh_TW.Duplex None/關( 單面): "" +*ru.Duplex None/Выкл.: "" + +*Duplex DuplexNoTumble/Long-Edge Binding: " + <> setpagedevice" +*End +*da.Duplex DuplexNoTumble/Vend på langs: "" +*de.Duplex DuplexNoTumble/Lange Kante spiegeln (Standard): "" +*es.Duplex DuplexNoTumble/Dar vuelta - borde largo (estándar): "" +*fi.Duplex DuplexNoTumble/Pitkän reunan sidonta: "" +*fr.Duplex DuplexNoTumble/Reliure sur bord long: "" +*it.Duplex DuplexNoTumble/Ruota sul lato lungo (Standard): "" +*ja.Duplex DuplexNoTumble/長辺綴じ (標準): "" +*ko.Duplex DuplexNoTumble/긴 가장자리로 뒤집기(표준): "" +*nl.Duplex DuplexNoTumble/Over lange zijde spiegelen (standaard): "" +*nb.Duplex DuplexNoTumble/Vend på langsiden (standard): "" +*pt.Duplex DuplexNoTumble/Inversão na margem longa (padrão): "" +*sv.Duplex DuplexNoTumble/Vänd längs långsidan (standard): "" +*zh_CN.Duplex DuplexNoTumble/长边翻转(标准): "" +*zh_TW.Duplex DuplexNoTumble/在長邊緣倒轉( 標準): "" +*ru.Duplex DuplexNoTumble/Развернуть вдоль длинного края: "" + +*Duplex DuplexTumble/Short-Edge Binding: " + <> setpagedevice" +*End +*da.Duplex DuplexTumble/Vend på tværs: "" +*de.Duplex DuplexTumble/Kurze Kante spiegeln: "" +*es.Duplex DuplexTumble/Dar vuelta - borde corto: "" +*fi.Duplex DuplexTumble/Lyhyen reunan sidonta: "" +*fr.Duplex DuplexTumble/Reliure sur bord court: "" +*it.Duplex DuplexTumble/Ruota sul lato corto: "" +*ja.Duplex DuplexTumble/短辺綴じ: "" +*ko.Duplex DuplexTumble/짧은 가장자리로 뒤집기: "" +*nl.Duplex DuplexTumble/Over korte zijde spiegelen: "" +*nb.Duplex DuplexTumble/Vend på kortsiden: "" +*pt.Duplex DuplexTumble/Inversão na margem curta: "" +*sv.Duplex DuplexTumble/Vänd längs kortsidan: "" +*zh_CN.Duplex DuplexTumble/短边翻转: "" +*zh_TW.Duplex DuplexTumble/在短邊緣倒轉: "" +*ru.Duplex DuplexTumble/Развернуть вдоль короткого края: "" + +*?Duplex: " + save + currentpagedevice /Duplex known + false ne + { currentpagedevice /Duplex get + { currentpagedevice /Tumble get + {(DuplexTumble)}{(DuplexNoTumble)}ifelse + } { (None)} ifelse + }{(None)} ifelse = flush + restore +" +*End +*CloseUI: *Duplex + +*%==================================== +*% Collation +*%==================================== +*OpenUI *Collate/Collate: Boolean +*OrderDependency: 12 AnySetup *Collate +*DefaultCollate: True +*da.Translation Collate/Sætvis: "" +*de.Translation Collate/Sortieren: "" +*es.Translation Collate/Clasificar: "" +*fi.Translation Collate/Lajittele: "" +*fr.Translation Collate/Assembler: "" +*it.Translation Collate/Fascicola: "" +*ja.Translation Collate/照合: "" +*ko.Translation Collate/한 부씩 인쇄: "" +*nl.Translation Collate/Sorteren: "" +*nb.Translation Collate/Sorter: "" +*pt.Translation Collate/Intercalar: "" +*sv.Translation Collate/Sortera: "" +*zh_CN.Translation Collate/分页: "" +*zh_TW.Translation Collate/自動分頁: "" +*ru.Translation Collate/Разбор: "" + +*Collate True/On (turn off in application): " + <> setpagedevice" +*End +*da.Collate True/Til (deaktiver i programmet): "" +*de.Collate True/Ein (in der Anwendung deaktivieren): "" +*es.Collate True/Activado (desactivar en la aplicación): "" +*fi.Collate True/Kyllä (poista valinta sovelluksesta): "" +*fr.Collate True/Activé (désactiver dans l’applic.): "" +*it.Collate True/Attivata (disattivare in applicazione): "" +*ja.Collate True/オン (アプリケーションではオフに): "" +*ko.Collate True/켬(응용 프로그램에서 마치기): "" +*nl.Collate True/Aan (uitzetten in toepassingsprogramma): "" +*nb.Collate True/På (slå av i programmet): "" +*pt.Collate True/Ligado (desligar no aplicativo): "" +*sv.Collate True/På (stäng av i programmet): "" +*zh_CN.Collate True/开 (在应用程序关闭): "" +*zh_TW.Collate True/開 (從應用程式關閉): "" +*ru.Collate True/Вкл. (выкл. в приложении): "" + +*Collate False/Off: " + <> setpagedevice" +*End +*da.Collate False/Fra: "" +*de.Collate False/Aus: "" +*es.Collate False/Desactivado: "" +*fi.Collate False/Ei: "" +*fr.Collate False/Désactivé: "" +*it.Collate False/Disattivata: "" +*ja.Collate False/オフ: "" +*ko.Collate False/끔: "" +*nl.Collate False/Uit: "" +*nb.Collate False/Av: "" +*pt.Collate False/Desligado: "" +*sv.Collate False/Av: "" +*zh_CN.Collate False/关: "" +*zh_TW.Collate False/關: "" +*ru.Collate False/Выкл.: "" + +*?Collate: " + save + currentpagedevice /Collate get + {(True)}{(False)}ifelse = flush + restore +" +*End +*CloseUI: *Collate + + +*% =================================== +*% Paper Sizes +*% =================================== +*OpenUI *PageSize/Page Size: PickOne +*OrderDependency: 30 AnySetup *PageSize +*DefaultPageSize: A4 +*da.Translation PageSize/Page Size: "" +*de.Translation PageSize/Papierformat: "" +*es.Translation PageSize/Tamaño del papel: "" +*fi.Translation PageSize/Sivukoko: "" +*fr.Translation PageSize/Format de page: "" +*it.Translation PageSize/Dimensioni pagina: "" +*ja.Translation PageSize/ページサイズ: "" +*ko.Translation PageSize/용지 크기: "" +*nl.Translation PageSize/Papierformaat: "" +*nb.Translation PageSize/Papirformat: "" +*pt.Translation PageSize/Tamanho do papel: "" +*sv.Translation PageSize/Sidstorlek: "" +*zh_CN.Translation PageSize/页面大小: "" +*zh_TW.Translation PageSize/頁面尺寸: "" +*ru.Translation PageSize/Формат страницы: "" + +*PageSize Letter/Letter: " + <> setpagedevice" +*End +*da.PageSize Letter/Letter: "" +*de.PageSize Letter/Letter: "" +*es.PageSize Letter/Carta: "" +*fi.PageSize Letter/Letter: "" +*fr.PageSize Letter/Lettre: "" +*it.PageSize Letter/Lettera: "" +*ja.PageSize Letter/レター: "" +*ko.PageSize Letter/레터: "" +*nl.PageSize Letter/Letter: "" +*nb.PageSize Letter/Letter: "" +*pt.PageSize Letter/Carta: "" +*sv.PageSize Letter/Letter: "" +*zh_CN.PageSize Letter/信纸: "" +*zh_TW.PageSize Letter/Letter: "" +*ru.PageSize Letter/Letter: "" + +*PageSize Legal/Legal: " + <> setpagedevice" +*End +*da.PageSize Legal/Legal: "" +*de.PageSize Legal/Legal: "" +*es.PageSize Legal/Legal: "" +*fi.PageSize Legal/Legal: "" +*fr.PageSize Legal/Légal: "" +*it.PageSize Legal/Legale: "" +*ja.PageSize Legal/リーガル: "" +*ko.PageSize Legal/리갈: "" +*nl.PageSize Legal/Legal: "" +*nb.PageSize Legal/Legal: "" +*pt.PageSize Legal/Ofício: "" +*sv.PageSize Legal/Legal: "" +*zh_CN.PageSize Legal/Legal: "" +*zh_TW.PageSize Legal/Legal: "" +*ru.PageSize Legal/Legal: "" + +*PageSize Executive/Executive: " + <> setpagedevice" +*End +*da.PageSize Executive/Executive: "" +*de.PageSize Executive/Executive: "" +*es.PageSize Executive/Ejecutivo: "" +*fi.PageSize Executive/Executive: "" +*fr.PageSize Executive/Exécutif: "" +*it.PageSize Executive/Executive: "" +*ja.PageSize Executive/エグゼクティブ: "" +*ko.PageSize Executive/Executive: "" +*nl.PageSize Executive/Executive: "" +*nb.PageSize Executive/Executive: "" +*pt.PageSize Executive/Executivo: "" +*sv.PageSize Executive/Executive: "" +*zh_CN.PageSize Executive/Executive: "" +*zh_TW.PageSize Executive/Executive: "" +*ru.PageSize Executive/Executive: "" + +*PageSize HalfLetter/Statement: " + << /DeferredMediaSelection true /PageSize [396 612] /ImagingBBox null /MediaClass null>> setpagedevice" +*End +*da.PageSize HalfLetter/Statement: "" +*de.PageSize HalfLetter/Statement: "" +*es.PageSize HalfLetter/Declaración: "" +*fi.PageSize HalfLetter/Statement: "" +*fr.PageSize HalfLetter/Relevé: "" +*it.PageSize HalfLetter/Dichiarazione: "" +*ja.PageSize HalfLetter/Statement: "" +*ko.PageSize HalfLetter/2절 레터: "" +*nl.PageSize HalfLetter/1/2 Letter : "" +*nb.PageSize HalfLetter/1/2 Letter: "" +*pt.PageSize HalfLetter/Statement: "" +*sv.PageSize HalfLetter/Statement: "" +*zh_CN.PageSize HalfLetter/结算单: "" +*zh_TW.PageSize HalfLetter/Statement: "" +*ru.PageSize HalfLetter/Statement: "" + +*PageSize w612h936/8.5x13: " + <> setpagedevice" +*End +*da.PageSize w612h936/8.5x13: "" +*de.PageSize w612h936/8.5x13: "" +*es.PageSize w612h936/8.5x13: "" +*fi.PageSize w612h936/8.5x13: "" +*fr.PageSize w612h936/8.5x13: "" +*it.PageSize w612h936/8.5x13: "" +*ja.PageSize w612h936/8.5x13: "" +*ko.PageSize w612h936/8.5x13: "" +*nl.PageSize w612h936/8.5x13: "" +*nb.PageSize w612h936/8.5x13: "" +*pt.PageSize w612h936/8.5x13: "" +*sv.PageSize w612h936/8.5x13: "" +*zh_CN.PageSize w612h936/8.5x13: "" +*zh_TW.PageSize w612h936/8.5x13: "" +*ru.PageSize w612h936/8.5X13: "" + +*PageSize 3x5/3 X 5: " + <> setpagedevice" +*End +*da.PageSize 3x5/3 X 5: "" +*de.PageSize 3x5/3 X 5: "" +*es.PageSize 3x5/3 X 5: "" +*fi.PageSize 3x5/3 X 5: "" +*fr.PageSize 3x5/3 X 5: "" +*it.PageSize 3x5/3 X 5: "" +*ja.PageSize 3x5/3 X 5: "" +*ko.PageSize 3x5/3 X 5: "" +*nl.PageSize 3x5/3 X 5: "" +*nb.PageSize 3x5/3 X 5: "" +*pt.PageSize 3x5/3 X 5: "" +*sv.PageSize 3x5/3 X 5: "" +*zh_CN.PageSize 3x5/3 X 5: "" +*zh_TW.PageSize 3x5/3 X 5: "" +*ru.PageSize 3x5/3 X 5: "" + + +*PageSize 4x6/4x6: " + <> setpagedevice" +*End +*da.PageSize 4x6/4x6: "" +*de.PageSize 4x6/4x6: "" +*es.PageSize 4x6/4x6: "" +*fi.PageSize 4x6/4x6: "" +*fr.PageSize 4x6/4x6: "" +*it.PageSize 4x6/4x6: "" +*ja.PageSize 4x6/4x6: "" +*ko.PageSize 4x6/4x6: "" +*nl.PageSize 4x6/4x6: "" +*nb.PageSize 4x6/4x6: "" +*pt.PageSize 4x6/4x6: "" +*sv.PageSize 4x6/4x6: "" +*zh_CN.PageSize 4x6/4x6: "" +*zh_TW.PageSize 4x6/4x6: "" +*ru.PageSize 4x6/4 x 6: "" + +*PageSize 5x7/5x7: " + <> setpagedevice" +*End +*da.PageSize 5x7/5x7: "" +*de.PageSize 5x7/5x7: "" +*es.PageSize 5x7/5x7: "" +*fi.PageSize 5x7/5x7: "" +*fr.PageSize 5x7/5x7: "" +*it.PageSize 5x7/5x7: "" +*ja.PageSize 5x7/5x7: "" +*ko.PageSize 5x7/5x7: "" +*nl.PageSize 5x7/5x7: "" +*nb.PageSize 5x7/5x7: "" +*pt.PageSize 5x7/5x7: "" +*sv.PageSize 5x7/5x7: "" +*zh_CN.PageSize 5x7/5x7: "" +*zh_TW.PageSize 5x7/5x7: "" +*ru.PageSize 5x7/5 x 7: "" + +*PageSize 5x8/5x8: " + <> setpagedevice" +*End +*da.PageSize 5x8/5x8: "" +*de.PageSize 5x8/5x8: "" +*es.PageSize 5x8/5x8: "" +*fi.PageSize 5x8/5x8: "" +*fr.PageSize 5x8/5x8: "" +*it.PageSize 5x8/5x8: "" +*ja.PageSize 5x8/5x8: "" +*ko.PageSize 5x8/5x8: "" +*nl.PageSize 5x8/5x8: "" +*nb.PageSize 5x8/5x8: "" +*pt.PageSize 5x8/5x8: "" +*sv.PageSize 5x8/5x8: "" +*zh_CN.PageSize 5x8/5x8: "" +*zh_TW.PageSize 5x8/5x8: "" +*ru.PageSize 5x8/5 x 8: "" + + +*PageSize A4/A4: " + <> setpagedevice" +*End +*da.PageSize A4/A4: "" +*de.PageSize A4/A4: "" +*es.PageSize A4/A4: "" +*fi.PageSize A4/A4: "" +*fr.PageSize A4/A4: "" +*it.PageSize A4/A4: "" +*ja.PageSize A4/A4: "" +*ko.PageSize A4/A4: "" +*nl.PageSize A4/A4: "" +*nb.PageSize A4/A4: "" +*pt.PageSize A4/A4: "" +*sv.PageSize A4/A4: "" +*zh_CN.PageSize A4/A4: "" +*zh_TW.PageSize A4/A4: "" +*ru.PageSize A4/A4: "" + +*PageSize A5/A5: " + <> setpagedevice" +*End +*da.PageSize A5/A5: "" +*de.PageSize A5/A5: "" +*es.PageSize A5/A5: "" +*fi.PageSize A5/A5: "" +*fr.PageSize A5/A5: "" +*it.PageSize A5/A5: "" +*ja.PageSize A5/A5: "" +*ko.PageSize A5/A5: "" +*nl.PageSize A5/A5: "" +*nb.PageSize A5/A5: "" +*pt.PageSize A5/A5: "" +*sv.PageSize A5/A5: "" +*zh_CN.PageSize A5/A5: "" +*zh_TW.PageSize A5/A5: "" +*ru.PageSize A5/A5: "" + +*PageSize A6/A6: " + <> setpagedevice" +*End +*da.PageSize A6/A6: "" +*de.PageSize A6/A6: "" +*es.PageSize A6/A6: "" +*fi.PageSize A6/A6: "" +*fr.PageSize A6/A6: "" +*it.PageSize A6/A6: "" +*ja.PageSize A6/A6: "" +*ko.PageSize A6/A6: "" +*nl.PageSize A6/A6: "" +*nb.PageSize A6/A6: "" +*pt.PageSize A6/A6: "" +*sv.PageSize A6/A6: "" +*zh_CN.PageSize A6/A6: "" +*zh_TW.PageSize A6/A6: "" +*ru.PageSize A6/A6: "" + +*PageSize B5/B5 (JIS): " + <> setpagedevice" +*End +*da.PageSize B5/JIS B5: "" +*de.PageSize B5/B5 (JIS): "" +*es.PageSize B5/JIS B5: "" +*fi.PageSize B5/JIS B5: "" +*fr.PageSize B5/JIS B5: "" +*it.PageSize B5/JIS B5: "" +*ja.PageSize B5/B5 (JIS): "" +*ko.PageSize B5/JIS B5: "" +*nl.PageSize B5/JIS B5: "" +*nb.PageSize B5/JIS B5: "" +*pt.PageSize B5/B5 JIS: "" +*sv.PageSize B5/JIS B5: "" +*zh_CN.PageSize B5/JIS B5: "" +*zh_TW.PageSize B5/JIS B5: "" +*ru.PageSize B5/B5 (JIS): "" + +*PageSize B6/B6 (JIS): " + <> setpagedevice" +*End +*da.PageSize B6/JIS B6: "" +*de.PageSize B6/B6 (JIS): "" +*es.PageSize B6/JIS B6: "" +*fi.PageSize B6/JIS B6: "" +*fr.PageSize B6/JIS B6: "" +*it.PageSize B6/JIS B6: "" +*ja.PageSize B6/B6 (JIS): "" +*ko.PageSize B6/JIS B6: "" +*nl.PageSize B6/JIS B6: "" +*nb.PageSize B6/JIS B6: "" +*pt.PageSize B6/B6 JIS: "" +*sv.PageSize B6/JIS B6: "" +*zh_CN.PageSize B6/JIS B6: "" +*zh_TW.PageSize B6/JIS B6: "" +*ru.PageSize B6/B6 (JIS): "" + +*PageSize w288h432/10x15cm: " + <> setpagedevice" +*End +*da.PageSize w288h432/10x15cm: "" +*de.PageSize w288h432/10x15cm: "" +*es.PageSize w288h432/10x15cm: "" +*fi.PageSize w288h432/10x15cm: "" +*fr.PageSize w288h432/10x15cm: "" +*it.PageSize w288h432/10x15cm: "" +*ja.PageSize w288h432/10x15cm: "" +*ko.PageSize w288h432/10x15cm: "" +*nl.PageSize w288h432/10x15cm: "" +*nb.PageSize w288h432/10x15cm: "" +*pt.PageSize w288h432/10x15cm: "" +*sv.PageSize w288h432/10x15cm: "" +*zh_CN.PageSize w288h432/10x15cm: "" +*zh_TW.PageSize w288h432/10x15cm: "" +*ru.PageSize w288h432/10 x 15 см: "" + +*PageSize w553h765/16K 195x270 mm: " + <> setpagedevice" +*End +*da.PageSize w553h765/16K 195x270 mm: "" +*de.PageSize w553h765/16K 195x270 mm: "" +*es.PageSize w553h765/16K 195x270 mm: "" +*fi.PageSize w553h765/16K 195x270 mm: "" +*fr.PageSize w553h765/16K 195x270 mm: "" +*it.PageSize w553h765/16K 195x270 mm: "" +*ja.PageSize w553h765/16K 195x270 mm: "" +*ko.PageSize w553h765/16K 195x270 mm: "" +*nl.PageSize w553h765/16K 195x270 mm: "" +*nb.PageSize w553h765/16K 195x270 mm: "" +*pt.PageSize w553h765/16K 195x270 mm: "" +*sv.PageSize w553h765/16K 195x270 mm: "" +*zh_CN.PageSize w553h765/16K 195x270 毫米: "" +*zh_TW.PageSize w553h765/16K 195x270 公釐: "" +*ru.PageSize w553h765/16K 195 x 270 мм: "" + +*PageSize w522h737/16K 184x260 mm: " + <> setpagedevice" +*End +*da.PageSize w522h737/16K 184x260 mm: "" +*de.PageSize w522h737/16K 184x260 mm: "" +*es.PageSize w522h737/16K 184x260 mm: "" +*fi.PageSize w522h737/16K 184x260 mm: "" +*fr.PageSize w522h737/16K 184x260 mm: "" +*it.PageSize w522h737/16K 184x260 mm: "" +*ja.PageSize w522h737/16K 184x260 mm: "" +*ko.PageSize w522h737/16K 184x260 mm: "" +*nl.PageSize w522h737/16K 184x260 mm: "" +*nb.PageSize w522h737/16K 184x260 mm: "" +*pt.PageSize w522h737/16K 184x260 mm: "" +*sv.PageSize w522h737/16K 184x260 mm: "" +*zh_CN.PageSize w522h737/16K 184x260 毫米: "" +*zh_TW.PageSize w522h737/16K 184x260 公釐: "" +*ru.PageSize w522h737/16K 184 x 260 мм: "" + +*PageSize w558h774/16K 197x273 mm: " + <> setpagedevice" +*End +*da.PageSize w558h774/16K 197x273 mm: "" +*de.PageSize w558h774/16K 197x273 mm: "" +*es.PageSize w558h774/16K 197x273 mm: "" +*fi.PageSize w558h774/16K 197x273 mm: "" +*fr.PageSize w558h774/16K 197x273 mm: "" +*it.PageSize w558h774/16K 197x273 mm: "" +*ja.PageSize w558h774/16K 197x273 mm: "" +*ko.PageSize w558h774/16K 197x273 mm: "" +*nl.PageSize w558h774/16K 197x273 mm: "" +*nb.PageSize w558h774/16K 197x273 mm: "" +*pt.PageSize w558h774/16K 197x273 mm: "" +*sv.PageSize w558h774/16K 197x273 mm: "" +*zh_CN.PageSize w558h774/16K 197x273 毫米: "" +*zh_TW.PageSize w558h774/16K 197x273 公釐: "" +*ru.PageSize w558h774/16K 197 x 273 мм: "" + +*PageSize DoublePostcard/Double Postcard (JIS): " + <> setpagedevice" +*End +*da.PageSize DoublePostcard/Dobbelt postkort (JIS): "" +*de.PageSize DoublePostcard/Doppelte Postkarte (JIS): "" +*es.PageSize DoublePostcard/Tarjeta postal doble (JIS): "" +*fi.PageSize DoublePostcard/Kaksinkert. postikortti (JIS): "" +*fr.PageSize DoublePostcard/Carte postale double (JIS): "" +*it.PageSize DoublePostcard/Cartolina doppia (JIS): "" +*ja.PageSize DoublePostcard/往復はがき (JIS): "" +*ko.PageSize DoublePostcard/양면 엽서 (JIS): "" +*nl.PageSize DoublePostcard/Dubbele briefkaart (JIS): "" +*nb.PageSize DoublePostcard/Dobbelt postkort (JIS): "" +*pt.PageSize DoublePostcard/Postal duplo (JIS): "" +*sv.PageSize DoublePostcard/Dubbelt brevkort (JIS): "" +*zh_CN.PageSize DoublePostcard/大号明信片 (JIS): "" +*zh_TW.PageSize DoublePostcard/雙面明信片 (JIS): "" +*ru.PageSize DoublePostcard/Двойная почтовая карточка (JIS): "" + +*PageSize Env10/Env Comm10: " + <> setpagedevice" +*End +*da.PageSize Env10/Konv Comm10: "" +*de.PageSize Env10/Umschlag Comm10: "" +*es.PageSize Env10/Sobre Comm10: "" +*fi.PageSize Env10/Kirjekuori Comm10: "" +*fr.PageSize Env10/Enveloppe Comm10: "" +*it.PageSize Env10/Busta Comm10: "" +*ja.PageSize Env10/封筒 Comm10: "" +*ko.PageSize Env10/Comm10 봉투: "" +*nl.PageSize Env10/Comm10-envelop: "" +*nb.PageSize Env10/Comm10-konvolutt: "" +*pt.PageSize Env10/Envelope Comm10: "" +*sv.PageSize Env10/Comm10-kuvert: "" +*zh_CN.PageSize Env10/信封 Comm10: "" +*zh_TW.PageSize Env10/Comm10 信封: "" +*ru.PageSize Env10/Конверт Comm10: "" + +*PageSize EnvMonarch/Env Monarch: " + <> setpagedevice" +*End +*da.PageSize EnvMonarch/Konv Monarch: "" +*de.PageSize EnvMonarch/Umschlag Monarch: "" +*es.PageSize EnvMonarch/Sobre Monarch: "" +*fi.PageSize EnvMonarch/Kirjekuori Monarch: "" +*fr.PageSize EnvMonarch/Enveloppe Monarch: "" +*it.PageSize EnvMonarch/Busta Monarch: "" +*ja.PageSize EnvMonarch/封筒 Monarch: "" +*ko.PageSize EnvMonarch/Monarch 봉투: "" +*nl.PageSize EnvMonarch/Monarch-envelop: "" +*nb.PageSize EnvMonarch/Monarch-konvolutt: "" +*pt.PageSize EnvMonarch/Envelope Monarch: "" +*sv.PageSize EnvMonarch/Monarch-kuvert: "" +*zh_CN.PageSize EnvMonarch/信封 Monarch: "" +*zh_TW.PageSize EnvMonarch/Monarch 信封: "" +*ru.PageSize EnvMonarch/Конверт Monarch: "" + +*PageSize EnvISOB5/Env ISO B5: " + <> setpagedevice" +*End +*da.PageSize EnvISOB5/Konv ISO B5: "" +*de.PageSize EnvISOB5/Umschlag ISO B5: "" +*es.PageSize EnvISOB5/Sobre ISO B5: "" +*fi.PageSize EnvISOB5/Kirjekuori ISO B5: "" +*fr.PageSize EnvISOB5/Enveloppe ISO B5: "" +*it.PageSize EnvISOB5/Busta ISO B5: "" +*ja.PageSize EnvISOB5/封筒 ISO B5: "" +*ko.PageSize EnvISOB5/ISO B5 봉투: "" +*nl.PageSize EnvISOB5/ISO B5-envelop: "" +*nb.PageSize EnvISOB5/B5-konvolutt: "" +*pt.PageSize EnvISOB5/Envelope B5: "" +*sv.PageSize EnvISOB5/ISO B5-kuvert: "" +*zh_CN.PageSize EnvISOB5/信封 ISO B5: "" +*zh_TW.PageSize EnvISOB5/ISO B5 信封: "" +*ru.PageSize EnvISOB5/Конверт B5: "" + +*PageSize EnvC5/Env C5: " + <> setpagedevice" +*End +*da.PageSize EnvC5/Konv C5: "" +*de.PageSize EnvC5/Umschlag C5: "" +*es.PageSize EnvC5/Sobre C5: "" +*fi.PageSize EnvC5/Kirjekuori C5: "" +*fr.PageSize EnvC5/Enveloppe C5: "" +*it.PageSize EnvC5/Busta C5: "" +*ja.PageSize EnvC5/封筒 C5: "" +*ko.PageSize EnvC5/C5 봉투: "" +*nl.PageSize EnvC5/C5-envelop: "" +*nb.PageSize EnvC5/C5-konvolutt: "" +*pt.PageSize EnvC5/Envelope C5: "" +*sv.PageSize EnvC5/C5-kuvert: "" +*zh_CN.PageSize EnvC5/信封 C5: "" +*zh_TW.PageSize EnvC5/C5 信封: "" +*ru.PageSize EnvC5/Конверт C5: "" + +*PageSize EnvDL/Env DL: " + <> setpagedevice" +*End +*da.PageSize EnvDL/Konv DL: "" +*de.PageSize EnvDL/Umschlag DL: "" +*es.PageSize EnvDL/Sobre DL: "" +*fi.PageSize EnvDL/Kirjekuori DL: "" +*fr.PageSize EnvDL/Enveloppe DL: "" +*it.PageSize EnvDL/Busta DL: "" +*ja.PageSize EnvDL/封筒 DL: "" +*ko.PageSize EnvDL/DL 봉투: "" +*nl.PageSize EnvDL/DL-envelop: "" +*nb.PageSize EnvDL/DL-konvolutt: "" +*pt.PageSize EnvDL/Envelope DL: "" +*sv.PageSize EnvDL/DL-kuvert: "" +*zh_CN.PageSize EnvDL/信封 DL: "" +*zh_TW.PageSize EnvDL/DL 信封: "" +*ru.PageSize EnvDL/Конверт DL: "" + +*?PageSize: " + save + currentpagedevice /DeferredMediaSelection true /PageSize get aload pop + 2 copy gt {exch} if + (Unknown) + + 24 dict + dup [612 792] (Letter) put + dup [612 1008] (Legal) put + dup [522 756] (Executive) put + dup [396 792] (HalfLetter) put + dup [612 936] (w612h936) put + dup [216 360] (3x5) put + dup [288 432] (4x6) put + dup [360 504] (5x7) put + dup [360 576] (5x8) put + dup [595 842] (A4) put + dup [420 595] (A5) put + dup [298 420] (A6) put + dup [516 729] (B5) put + dup [363 516] (B6) put + dup [288 432] (w288h432) put + dup [553 765] (w553h765) put + dup [522 737] (w522h737) put + dup [558 774] (w558h774) put + dup [419 567] (DoublePostcard) put + dup [297 684] (Env10) put + dup [279 540] (EnvMonarch) put + dup [499 709] (EnvISOB5) put + dup [459 649] (EnvC5) put + dup [312 624] (EnvDL) put +{ exch aload pop 4 index sub abs 5 le exch + 5 index sub abs 5 le and + {exch pop exit} {pop} ifelse + } bind forall + = flush pop pop + restore +" +*End +*CloseUI: *PageSize + +*OpenUI *PageRegion/Page Region: PickOne +*OrderDependency: 40 AnySetup *PageRegion +*DefaultPageRegion: A4 +*da.Translation PageRegion/Page Region: "" +*de.Translation PageRegion/Papier Region: "" +*es.Translation PageRegion/Dimensión de papel: "" +*fi.Translation PageRegion/Sivuseutu: "" +*fr.Translation PageRegion/Région de page: "" +*it.Translation PageRegion/Dimensioni regione: "" +*ja.Translation PageRegion/Page Region: "" +*ko.Translation PageRegion/Page Region: "" +*nl.Translation PageRegion/Page Region: "" +*nb.Translation PageRegion/Page Region: "" +*pt.Translation PageRegion/Região do papel: "" +*sv.Translation PageRegion/Page Region: "" +*zh_CN.Translation PageRegion/Page Region: "" +*zh_TW.Translation PageRegion/Page Region: "" +*ru.Translation PageRegion/Page Region: "" + +*PageRegion Letter/Letter: " + <> setpagedevice" +*End +*da.PageRegion Letter/Letter: "" +*de.PageRegion Letter/Letter: "" +*es.PageRegion Letter/Carta: "" +*fi.PageRegion Letter/Letter: "" +*fr.PageRegion Letter/Lettre: "" +*it.PageRegion Letter/Lettera: "" +*ja.PageRegion Letter/レター: "" +*ko.PageRegion Letter/레터: "" +*nl.PageRegion Letter/Letter: "" +*nb.PageRegion Letter/Letter: "" +*pt.PageRegion Letter/Carta: "" +*sv.PageRegion Letter/Letter: "" +*zh_CN.PageRegion Letter/信纸: "" +*zh_TW.PageRegion Letter/Letter: "" +*ru.PageRegion Letter/Letter: "" + +*PageRegion Legal/Legal: " + <> setpagedevice" +*End +*da.PageRegion Legal/Legal: "" +*de.PageRegion Legal/Legal: "" +*es.PageRegion Legal/Legal: "" +*fi.PageRegion Legal/Legal: "" +*fr.PageRegion Legal/Légal: "" +*it.PageRegion Legal/Legale: "" +*ja.PageRegion Legal/リーガル: "" +*ko.PageRegion Legal/리갈: "" +*nl.PageRegion Legal/Legal: "" +*nb.PageRegion Legal/Legal: "" +*pt.PageRegion Legal/Ofício: "" +*sv.PageRegion Legal/Legal: "" +*zh_CN.PageRegion Legal/Legal: "" +*zh_TW.PageRegion Legal/Legal: "" +*ru.PageRegion Legal/Legal: "" + +*PageRegion Executive/Executive: " + <> setpagedevice" +*End +*da.PageRegion Executive/Executive: "" +*de.PageRegion Executive/Executive: "" +*es.PageRegion Executive/Executive: "" +*fi.PageRegion Executive/Executive: "" +*fr.PageRegion Executive/Exécutif: "" +*it.PageRegion Executive/Executive: "" +*ja.PageRegion Executive/エグゼクティブ: "" +*ko.PageRegion Executive/Executive: "" +*nl.PageRegion Executive/Executive: "" +*nb.PageRegion Executive/Executive: "" +*pt.PageRegion Executive/Executivo: "" +*sv.PageRegion Executive/Executive: "" +*zh_CN.PageRegion Executive/Executive: "" +*zh_TW.PageRegion Executive/Executive: "" +*ru.PageRegion Executive/Executive: "" + +*PageRegion HalfLetter/Statement: " + << /DeferredMediaSelection true /PageSize [396 612] /ImagingBBox null /MediaClass null>> setpagedevice" +*End +*da.PageRegion HalfLetter/Statement: "" +*de.PageRegion HalfLetter/Statement: "" +*es.PageRegion HalfLetter/Declaración: "" +*fi.PageRegion HalfLetter/Statement: "" +*fr.PageRegion HalfLetter/Relevé: "" +*it.PageRegion HalfLetter/Dichiarazione: "" +*ja.PageRegion HalfLetter/Statement: "" +*ko.PageRegion HalfLetter/2절 레터: "" +*nl.PageRegion HalfLetter/1/2 Letter : "" +*nb.PageRegion HalfLetter/1/2 Letter: "" +*pt.PageRegion HalfLetter/Statement: "" +*sv.PageRegion HalfLetter/Statement: "" +*zh_CN.PageRegion HalfLetter/结算单: "" +*zh_TW.PageRegion HalfLetter/Statement: "" +*ru.PageRegion HalfLetter/Statement: "" + +*PageRegion w612h936/8.5x13: " + <> setpagedevice" +*End +*da.PageRegion w612h936/8.5x13: "" +*de.PageRegion w612h936/8.5x13: "" +*es.PageRegion w612h936/8.5x13: "" +*fi.PageRegion w612h936/8.5x13: "" +*fr.PageRegion w612h936/8.5x13: "" +*it.PageRegion w612h936/8.5x13: "" +*ja.PageRegion w612h936/8.5x13: "" +*ko.PageRegion w612h936/8.5x13: "" +*nl.PageRegion w612h936/8.5x13: "" +*nb.PageRegion w612h936/8.5x13: "" +*pt.PageRegion w612h936/8.5x13: "" +*sv.PageRegion w612h936/8.5x13: "" +*zh_CN.PageRegion w612h936/8.5x13: "" +*zh_TW.PageRegion w612h936/8.5x13: "" +*ru.PageRegion w612h936/8.5X13: "" + +*PageRegion 3x5/3 X 5: " + <> setpagedevice" +*End +*da.PageRegion 3x5/3 X 5: "" +*de.PageRegion 3x5/3 X 5: "" +*es.PageRegion 3x5/3 X 5: "" +*fi.PageRegion 3x5/3 X 5: "" +*fr.PageRegion 3x5/3 X 5: "" +*it.PageRegion 3x5/3 X 5: "" +*ja.PageRegion 3x5/3 X 5: "" +*ko.PageRegion 3x5/3 X 5: "" +*nl.PageRegion 3x5/3 X 5: "" +*nb.PageRegion 3x5/3 X 5: "" +*pt.PageRegion 3x5/3 X 5: "" +*sv.PageRegion 3x5/3 X 5: "" +*zh_CN.PageRegion 3x5/3 X 5: "" +*zh_TW.PageRegion 3x5/3 X 5: "" +*ru.PageRegion 3x5/3 X 5: "" + + +*PageRegion 4x6/4x6: " + <> setpagedevice" +*End +*da.PageRegion 4x6/4x6: "" +*de.PageRegion 4x6/4x6: "" +*es.PageRegion 4x6/4x6: "" +*fi.PageRegion 4x6/4x6: "" +*fr.PageRegion 4x6/4x6: "" +*it.PageRegion 4x6/4x6: "" +*ja.PageRegion 4x6/4x6: "" +*ko.PageRegion 4x6/4x6: "" +*nl.PageRegion 4x6/4x6: "" +*nb.PageRegion 4x6/4x6: "" +*pt.PageRegion 4x6/4x6: "" +*sv.PageRegion 4x6/4x6: "" +*zh_CN.PageRegion 4x6/4x6: "" +*zh_TW.PageRegion 4x6/4x6: "" +*ru.PageRegion 4x6/4 x 6: "" + +*PageRegion 5x7/5x7: " + <> setpagedevice" +*End +*da.PageRegion 5x7/5x7: "" +*de.PageRegion 5x7/5x7: "" +*es.PageRegion 5x7/5x7: "" +*fi.PageRegion 5x7/5x7: "" +*fr.PageRegion 5x7/5x7: "" +*it.PageRegion 5x7/5x7: "" +*ja.PageRegion 5x7/5x7: "" +*ko.PageRegion 5x7/5x7: "" +*nl.PageRegion 5x7/5x7: "" +*nb.PageRegion 5x7/5x7: "" +*pt.PageRegion 5x7/5x7: "" +*sv.PageRegion 5x7/5x7: "" +*zh_CN.PageRegion 5x7/5x7: "" +*zh_TW.PageRegion 5x7/5x7: "" +*ru.PageRegion 5x7/5 x 7: "" + +*PageRegion 5x8/5x8: " + <> setpagedevice" +*End +*da.PageRegion 5x8/5x8: "" +*de.PageRegion 5x8/5x8: "" +*es.PageRegion 5x8/5x8: "" +*fi.PageRegion 5x8/5x8: "" +*fr.PageRegion 5x8/5x8: "" +*it.PageRegion 5x8/5x8: "" +*ja.PageRegion 5x8/5x8: "" +*ko.PageRegion 5x8/5x8: "" +*nl.PageRegion 5x8/5x8: "" +*nb.PageRegion 5x8/5x8: "" +*pt.PageRegion 5x8/5x8: "" +*sv.PageRegion 5x8/5x8: "" +*zh_CN.PageRegion 5x8/5x8: "" +*zh_TW.PageRegion 5x8/5x8: "" +*ru.PageRegion 5x8/5 x 8: "" + +*PageRegion A4/A4: " + <> setpagedevice" +*End +*da.PageRegion A4/A4: "" +*de.PageRegion A4/A4: "" +*es.PageRegion A4/A4: "" +*fi.PageRegion A4/A4: "" +*fr.PageRegion A4/A4: "" +*it.PageRegion A4/A4: "" +*ja.PageRegion A4/A4: "" +*ko.PageRegion A4/A4: "" +*nl.PageRegion A4/A4: "" +*nb.PageRegion A4/A4: "" +*pt.PageRegion A4/A4: "" +*sv.PageRegion A4/A4: "" +*zh_CN.PageRegion A4/A4: "" +*zh_TW.PageRegion A4/A4: "" +*ru.PageRegion A4/A4: "" + +*PageRegion A5/A5: " + <> setpagedevice" +*End +*da.PageRegion A5/A5: "" +*de.PageRegion A5/A5: "" +*es.PageRegion A5/A5: "" +*fi.PageRegion A5/A5: "" +*fr.PageRegion A5/A5: "" +*it.PageRegion A5/A5: "" +*ja.PageRegion A5/A5: "" +*ko.PageRegion A5/A5: "" +*nl.PageRegion A5/A5: "" +*nb.PageRegion A5/A5: "" +*pt.PageRegion A5/A5: "" +*sv.PageRegion A5/A5: "" +*zh_CN.PageRegion A5/A5: "" +*zh_TW.PageRegion A5/A5: "" +*ru.PageRegion A5/A5: "" + +*PageRegion A6/A6: " + <> setpagedevice" +*End +*da.PageRegion A6/A6: "" +*de.PageRegion A6/A6 Card: "" +*es.PageRegion A6/A6: "" +*fi.PageRegion A6/A6: "" +*fr.PageRegion A6/A6 Card: "" +*it.PageRegion A6/A6 Card: "" +*ja.PageRegion A6/A6: "" +*ko.PageRegion A6/A6: "" +*nl.PageRegion A6/A6: "" +*nb.PageRegion A6/A6: "" +*pt.PageRegion A6/A6: "" +*sv.PageRegion A6/A6: "" +*zh_CN.PageRegion A6/A6: "" +*zh_TW.PageRegion A6/A6: "" +*ru.PageRegion A6/A6: "" + +*PageRegion B5/B5 (JIS): " + <> setpagedevice" +*End +*da.PageRegion B5/JIS B5: "" +*de.PageRegion B5/B5 (JIS): "" +*es.PageRegion B5/JIS B5: "" +*fi.PageRegion B5/JIS B5: "" +*fr.PageRegion B5/JIS B5: "" +*it.PageRegion B5/JIS B5: "" +*ja.PageRegion B5/B5 (JIS): "" +*ko.PageRegion B5/JIS B5: "" +*nl.PageRegion B5/JIS B5: "" +*nb.PageRegion B5/JIS B5: "" +*pt.PageRegion B5/B5 JIS: "" +*sv.PageRegion B5/JIS B5: "" +*zh_CN.PageRegion B5/JIS B5: "" +*zh_TW.PageRegion B5/JIS B5: "" +*ru.PageRegion B5/B5 (JIS): "" + +*PageRegion B6/B6 (JIS): " + <> setpagedevice" +*End +*da.PageRegion B6/JIS B6: "" +*de.PageRegion B6/B6 (JIS): "" +*es.PageRegion B6/JIS B6: "" +*fi.PageRegion B6/JIS B6: "" +*fr.PageRegion B6/JIS B6: "" +*it.PageRegion B6/JIS B6: "" +*ja.PageRegion B6/B6 (JIS): "" +*ko.PageRegion B6/JIS B6: "" +*nl.PageRegion B6/JIS B6: "" +*nb.PageRegion B6/JIS B6: "" +*pt.PageRegion B6/B6 JIS: "" +*sv.PageRegion B6/JIS B6: "" +*zh_CN.PageRegion B6/JIS B6: "" +*zh_TW.PageRegion B6/JIS B6: "" +*ru.PageRegion B6/B6 (JIS): "" + +*PageRegion w288h432/10x15cm: " + <> setpagedevice" +*End +*da.PageRegion w288h432/10x15cm: "" +*de.PageRegion w288h432/10x15cm: "" +*es.PageRegion w288h432/10x15cm: "" +*fi.PageRegion w288h432/10x15cm: "" +*fr.PageRegion w288h432/10x15cm: "" +*it.PageRegion w288h432/10x15cm: "" +*ja.PageRegion w288h432/10x15cm: "" +*ko.PageRegion w288h432/10x15cm: "" +*nl.PageRegion w288h432/10x15cm: "" +*nb.PageRegion w288h432/10x15cm: "" +*pt.PageRegion w288h432/10x15cm: "" +*sv.PageRegion w288h432/10x15cm: "" +*zh_CN.PageRegion w288h432/10x15cm: "" +*zh_TW.PageRegion w288h432/10x15cm: "" +*ru.PageRegion w288h432/10 x 15 см: "" + +*PageRegion w553h765/16K 195x270 mm: " + <> setpagedevice" +*End +*da.PageRegion w553h765/16K 195x270 mm: "" +*de.PageRegion w553h765/16K 195x270 mm: "" +*es.PageRegion w553h765/16K 195x270 mm: "" +*fi.PageRegion w553h765/16K 195x270 mm: "" +*fr.PageRegion w553h765/16K 195x270 mm: "" +*it.PageRegion w553h765/16K 195x270 mm: "" +*ja.PageRegion w553h765/16K 195x270 mm: "" +*ko.PageRegion w553h765/16K 195x270 mm: "" +*nl.PageRegion w553h765/16K 195x270 mm: "" +*nb.PageRegion w553h765/16K 195x270 mm: "" +*pt.PageRegion w553h765/16K 195x270 mm: "" +*sv.PageRegion w553h765/16K 195x270 mm: "" +*zh_CN.PageRegion w553h765/16K 195x270 毫米: "" +*zh_TW.PageRegion w553h765/16K 195x270 公釐: "" +*ru.PageRegion w553h765/16K 195 x 270 мм: "" + +*PageRegion w522h737/16K 184x260 mm: " + <> setpagedevice" +*End +*da.PageRegion w522h737/16K 184x260 mm: "" +*de.PageRegion w522h737/16K 184x260 mm: "" +*es.PageRegion w522h737/16K 184x260 mm: "" +*fi.PageRegion w522h737/16K 184x260 mm: "" +*fr.PageRegion w522h737/16K 184x260 mm: "" +*it.PageRegion w522h737/16K 184x260 mm: "" +*ja.PageRegion w522h737/16K 184x260 mm: "" +*ko.PageRegion w522h737/16K 184x260 mm: "" +*nl.PageRegion w522h737/16K 184x260 mm: "" +*nb.PageRegion w522h737/16K 184x260 mm: "" +*pt.PageRegion w522h737/16K 184x260 mm: "" +*sv.PageRegion w522h737/16K 184x260 mm: "" +*zh_CN.PageRegion w522h737/16K 184x260 毫米: "" +*zh_TW.PageRegion w522h737/16K 184x260 公釐: "" +*ru.PageRegion w522h737/16K 184 x 260 мм: "" + +*PageRegion w558h774/16K 197x273 mm: " + <> setpagedevice" +*End +*da.PageRegion w558h774/16K 197x273 mm: "" +*de.PageRegion w558h774/16K 197x273 mm: "" +*es.PageRegion w558h774/16K 197x273 mm: "" +*fi.PageRegion w558h774/16K 197x273 mm: "" +*fr.PageRegion w558h774/16K 197x273 mm: "" +*it.PageRegion w558h774/16K 197x273 mm: "" +*ja.PageRegion w558h774/16K 197x273 mm: "" +*ko.PageRegion w558h774/16K 197x273 mm: "" +*nl.PageRegion w558h774/16K 197x273 mm: "" +*nb.PageRegion w558h774/16K 197x273 mm: "" +*pt.PageRegion w558h774/16K 197x273 mm: "" +*sv.PageRegion w558h774/16K 197x273 mm: "" +*zh_CN.PageRegion w558h774/16K 197x273 毫米: "" +*zh_TW.PageRegion w558h774/16K 197x273 公釐: "" +*ru.PageRegion w558h774/16K 197 x 273 мм: "" + +*PageRegion DoublePostcard/Double Postcard (JIS): " + <> setpagedevice" +*End +*da.PageRegion DoublePostcard/Dobbelt postkort (JIS): "" +*de.PageRegion DoublePostcard/Doppelte Postkarte (JIS): "" +*es.PageRegion DoublePostcard/Tarjeta postal doble (JIS): "" +*fi.PageRegion DoublePostcard/Kaksinkert. postikortti (JIS): "" +*fr.PageRegion DoublePostcard/Carte postale double (JIS): "" +*it.PageRegion DoublePostcard/Cartolina doppia (JIS): "" +*ja.PageRegion DoublePostcard/往復はがき (JIS): "" +*ko.PageRegion DoublePostcard/양면 엽서 (JIS): "" +*nl.PageRegion DoublePostcard/Dubbele briefkaart (JIS): "" +*nb.PageRegion DoublePostcard/Dobbelt postkort (JIS): "" +*pt.PageRegion DoublePostcard/Postal duplo (JIS): "" +*sv.PageRegion DoublePostcard/Dubbelt brevkort (JIS): "" +*zh_CN.PageRegion DoublePostcard/大号明信片 (JIS): "" +*zh_TW.PageRegion DoublePostcard/雙面明信片 (JIS): "" +*ru.PageRegion DoublePostcard/Двойная почтовая карточка (JIS): "" + +*PageRegion Env10/Env Comm10: " + <> setpagedevice" +*End +*da.PageRegion Env10/Konv Comm10: "" +*de.PageRegion Env10/Umschlag Comm10: "" +*es.PageRegion Env10/Sobre Comm10: "" +*fi.PageRegion Env10/Kirjekuori Comm10: "" +*fr.PageRegion Env10/Enveloppe Comm10: "" +*it.PageRegion Env10/Busta Comm10: "" +*ja.PageRegion Env10/封筒 Comm10: "" +*ko.PageRegion Env10/Comm10 봉투: "" +*nl.PageRegion Env10/Comm10-envelop: "" +*nb.PageRegion Env10/Comm10-konvolutt: "" +*pt.PageRegion Env10/Envelope Comm10: "" +*sv.PageRegion Env10/Comm10-kuvert: "" +*zh_CN.PageRegion Env10/信封 Comm10: "" +*zh_TW.PageRegion Env10/Comm10 信封: "" +*ru.PageRegion Env10/Конверт Comm10: "" + +*PageRegion EnvMonarch/Env Monarch: " + <> setpagedevice" +*End +*da.PageRegion EnvMonarch/Konv Monarch: "" +*de.PageRegion EnvMonarch/Umschlag Monarch: "" +*es.PageRegion EnvMonarch/Sobre Monarch: "" +*fi.PageRegion EnvMonarch/Kirjekuori Monarch: "" +*fr.PageRegion EnvMonarch/Enveloppe Monarch: "" +*it.PageRegion EnvMonarch/Busta Monarch: "" +*ja.PageRegion EnvMonarch/封筒 Monarch: "" +*ko.PageRegion EnvMonarch/Monarch 봉투: "" +*nl.PageRegion EnvMonarch/Monarch-envelop: "" +*nb.PageRegion EnvMonarch/Monarch-konvolutt: "" +*pt.PageRegion EnvMonarch/Envelope Monarch: "" +*sv.PageRegion EnvMonarch/Monarch-kuvert: "" +*zh_CN.PageRegion EnvMonarch/信封 Monarch: "" +*zh_TW.PageRegion EnvMonarch/Monarch 信封: "" +*ru.PageRegion EnvMonarch/Конверт Monarch: "" + +*PageRegion EnvISOB5/Env ISO B5: " + <> setpagedevice" +*End +*da.PageRegion EnvISOB5/Konv ISO B5: "" +*de.PageRegion EnvISOB5/Umschlag ISO B5: "" +*es.PageRegion EnvISOB5/Sobre ISO B5: "" +*fi.PageRegion EnvISOB5/Kirjekuori ISO B5: "" +*fr.PageRegion EnvISOB5/Enveloppe ISO B5: "" +*it.PageRegion EnvISOB5/Busta ISO B5: "" +*ja.PageRegion EnvISOB5/封筒 B5 (ISO): "" +*ko.PageRegion EnvISOB5/ISO B5 봉투: "" +*nl.PageRegion EnvISOB5/ISO B5-envelop: "" +*nb.PageRegion EnvISOB5/B5-konvolutt: "" +*pt.PageRegion EnvISOB5/Envelope B5: "" +*sv.PageRegion EnvISOB5/ISO B5-kuvert: "" +*zh_CN.PageRegion EnvISOB5/信封 ISO B5: "" +*zh_TW.PageRegion EnvISOB5/ISO B5 信封: "" +*ru.PageRegion EnvISOB5/Конверт B5: "" + +*PageRegion EnvC5/Env C5: " + <> setpagedevice" +*End +*da.PageRegion EnvC5/Konv C5: "" +*de.PageRegion EnvC5/Umschlag C5: "" +*es.PageRegion EnvC5/Sobre C5: "" +*fi.PageRegion EnvC5/Kirjekuori C5: "" +*fr.PageRegion EnvC5/Enveloppe C5: "" +*it.PageRegion EnvC5/Busta C5: "" +*ja.PageRegion EnvC5/封筒 C5: "" +*ko.PageRegion EnvC5/C5 봉투: "" +*nl.PageRegion EnvC5/C5-envelop: "" +*nb.PageRegion EnvC5/C5-konvolutt: "" +*pt.PageRegion EnvC5/Envelope C5: "" +*sv.PageRegion EnvC5/C5-kuvert: "" +*zh_CN.PageRegion EnvC5/信封 C5: "" +*zh_TW.PageRegion EnvC5/C5 信封: "" +*ru.PageRegion EnvC5/Конверт C5: "" + +*PageRegion EnvDL/Env DL: " + <> setpagedevice" +*End +*da.PageRegion EnvDL/Konv DL: "" +*de.PageRegion EnvDL/Umschlag DL: "" +*es.PageRegion EnvDL/Sobre DL: "" +*fi.PageRegion EnvDL/Kirjekuori DL: "" +*fr.PageRegion EnvDL/Enveloppe DL: "" +*it.PageRegion EnvDL/Busta DL: "" +*ja.PageRegion EnvDL/封筒 DL: "" +*ko.PageRegion EnvDL/DL 봉투: "" +*nl.PageRegion EnvDL/DL-envelop: "" +*nb.PageRegion EnvDL/DL-konvolutt: "" +*pt.PageRegion EnvDL/Envelope DL: "" +*sv.PageRegion EnvDL/DL-kuvert: "" +*zh_CN.PageRegion EnvDL/信封 DL: "" +*zh_TW.PageRegion EnvDL/DL 信封: "" +*ru.PageRegion EnvDL/Конверт DL: "" + +*CloseUI: *PageRegion + +*DefaultImageableArea: A4 +*ImageableArea Letter/Letter: "12.00 12.00 600.00 780.00" +*da.ImageableArea Letter/Letter: "" +*de.ImageableArea Letter/Letter: "" +*es.ImageableArea Letter/Carta: "" +*fi.ImageableArea Letter/Letter: "" +*fr.ImageableArea Letter/Lettre: "" +*it.ImageableArea Letter/Lettera: "" +*ja.ImageableArea Letter/レター: "" +*ko.ImageableArea Letter/레터: "" +*nl.ImageableArea Letter/Letter: "" +*nb.ImageableArea Letter/Letter: "" +*pt.ImageableArea Letter/Carta: "" +*sv.ImageableArea Letter/Letter: "" +*zh_CN.ImageableArea Letter/信纸: "" +*zh_TW.ImageableArea Letter/Letter: "" +*ru.ImageableArea Letter/Letter: "" + +*ImageableArea Legal/Legal: "12.00 12.00 600.00 996.00" +*da.ImageableArea Legal/Legal: "" +*de.ImageableArea Legal/Legal: "" +*es.ImageableArea Legal/Legal: "" +*fi.ImageableArea Legal/Legal: "" +*fr.ImageableArea Legal/Légal: "" +*it.ImageableArea Legal/Legale: "" +*ja.ImageableArea Legal/リーガル: "" +*ko.ImageableArea Legal/리갈: "" +*nl.ImageableArea Legal/Legal: "" +*nb.ImageableArea Legal/Legal: "" +*pt.ImageableArea Legal/Ofício: "" +*sv.ImageableArea Legal/Legal: "" +*zh_CN.ImageableArea Legal/Legal: "" +*zh_TW.ImageableArea Legal/Legal: "" +*ru.ImageableArea Legal/Legal: "" + +*ImageableArea Executive/Executive: "12.00 12.00 510.00 744.00" +*da.ImageableArea Executive/Executive: "" +*de.ImageableArea Executive/Executive: "" +*es.ImageableArea Executive/Executive: "" +*fi.ImageableArea Executive/Executive: "" +*fr.ImageableArea Executive/Exécutif: "" +*it.ImageableArea Executive/Executive: "" +*ja.ImageableArea Executive/エグゼクティブ: "" +*ko.ImageableArea Executive/Executive: "" +*nl.ImageableArea Executive/Executive: "" +*nb.ImageableArea Executive/Executive: "" +*pt.ImageableArea Executive/Executivo: "" +*sv.ImageableArea Executive/Executive: "" +*zh_CN.ImageableArea Executive/Executive: "" +*zh_TW.ImageableArea Executive/Executive: "" +*ru.ImageableArea Executive/Executive: "" + +*ImageableArea HalfLetter/Statement: "12.00 12.00 384.00 600.00" +*da.ImageableArea HalfLetter/Statement: "" +*de.ImageableArea HalfLetter/Statement: "" +*es.ImageableArea HalfLetter/Declaración: "" +*fi.ImageableArea HalfLetter/Statement: "" +*fr.ImageableArea HalfLetter/Relevé: "" +*it.ImageableArea HalfLetter/Dichiarazione: "" +*ja.ImageableArea HalfLetter/Statement: "" +*ko.ImageableArea HalfLetter/2절 레터: "" +*nl.ImageableArea HalfLetter/1/2 Letter : "" +*nb.ImageableArea HalfLetter/1/2 Letter: "" +*pt.ImageableArea HalfLetter/Statement: "" +*sv.ImageableArea HalfLetter/Statement: "" +*zh_CN.ImageableArea HalfLetter/结算单: "" +*zh_TW.ImageableArea HalfLetter/Statement: "" +*ru.ImageableArea HalfLetter/Statement: "" + +*ImageableArea w612h936/8.5x13: "12.00 12.00 600.00 924.00" +*da.ImageableArea w612h936/8.5x13: "" +*de.ImageableArea w612h936/8.5x13: "" +*es.ImageableArea w612h936/8.5x13: "" +*fi.ImageableArea w612h936/8.5x13: "" +*fr.ImageableArea w612h936/8.5x13: "" +*it.ImageableArea w612h936/8.5x13: "" +*ja.ImageableArea w612h936/8.5x13: "" +*ko.ImageableArea w612h936/8.5x13: "" +*nl.ImageableArea w612h936/8.5x13: "" +*nb.ImageableArea w612h936/8.5x13: "" +*pt.ImageableArea w612h936/8.5x13: "" +*sv.ImageableArea w612h936/8.5x13: "" +*zh_CN.ImageableArea w612h936/8.5x13: "" +*zh_TW.ImageableArea w612h936/8.5x13: "" +*ru.ImageableArea w612h936/8.5X13: "" + +*ImageableArea 3x5/3 X 5: "9.6 33.12 206.4 357" +*da.ImageableArea 3x5/3 X 5: "" +*de.ImageableArea 3x5/3 X 5: "" +*es.ImageableArea 3x5/3 X 5: "" +*fi.ImageableArea 3x5/3 X 5: "" +*fr.ImageableArea 3x5/3 X 5: "" +*it.ImageableArea 3x5/3 X 5: "" +*ja.ImageableArea 3x5/3 X 5: "" +*ko.ImageableArea 3x5/3 X 5: "" +*nl.ImageableArea 3x5/3 X 5: "" +*nb.ImageableArea 3x5/3 X 5: "" +*pt.ImageableArea 3x5/3 X 5: "" +*sv.ImageableArea 3x5/3 X 5: "" +*zh_CN.ImageableArea 3x5/3 X 5: "" +*zh_TW.ImageableArea 3x5/3 X 5: "" +*ru.ImageableArea 3x5/3 X 5: "" + +*ImageableArea 4x6/4x6: "9.6 33.12 278.4 429" +*da.ImageableArea 4x6/4x6: "" +*de.ImageableArea 4x6/4x6: "" +*es.ImageableArea 4x6/4x6: "" +*fi.ImageableArea 4x6/4x6: "" +*fr.ImageableArea 4x6/4x6: "" +*it.ImageableArea 4x6/4x6: "" +*ja.ImageableArea 4x6/4x6: "" +*ko.ImageableArea 4x6/4x6: "" +*nl.ImageableArea 4x6/4x6: "" +*nb.ImageableArea 4x6/4x6: "" +*pt.ImageableArea 4x6/4x6: "" +*sv.ImageableArea 4x6/4x6: "" +*zh_CN.ImageableArea 4x6/4x6: "" +*zh_TW.ImageableArea 4x6/4x6: "" +*ru.ImageableArea 4x6/4 x 6: "" + +*ImageableArea 5x7/5x7: "9.6 33.12 350.4 501" +*da.ImageableArea 5x7/5x7: "" +*de.ImageableArea 5x7/5x7: "" +*es.ImageableArea 5x7/5x7: "" +*fi.ImageableArea 5x7/5x7: "" +*fr.ImageableArea 5x7/5x7: "" +*it.ImageableArea 5x7/5x7: "" +*ja.ImageableArea 5x7/5x7: "" +*ko.ImageableArea 5x7/5x7: "" +*nl.ImageableArea 5x7/5x7: "" +*nb.ImageableArea 5x7/5x7: "" +*pt.ImageableArea 5x7/5x7: "" +*sv.ImageableArea 5x7/5x7: "" +*zh_CN.ImageableArea 5x7/5x7: "" +*zh_TW.ImageableArea 5x7/5x7: "" +*ru.ImageableArea 5x7/5 x 7: "" + +*ImageableArea 5x8/5x8: "9.6 33.12 350.4 573" +*da.ImageableArea 5x8/5x8: "" +*de.ImageableArea 5x8/5x8: "" +*es.ImageableArea 5x8/5x8: "" +*fi.ImageableArea 5x8/5x8: "" +*fr.ImageableArea 5x8/5x8: "" +*it.ImageableArea 5x8/5x8: "" +*ja.ImageableArea 5x8/5x8: "" +*ko.ImageableArea 5x8/5x8: "" +*nl.ImageableArea 5x8/5x8: "" +*nb.ImageableArea 5x8/5x8: "" +*pt.ImageableArea 5x8/5x8: "" +*sv.ImageableArea 5x8/5x8: "" +*zh_CN.ImageableArea 5x8/5x8: "" +*zh_TW.ImageableArea 5x8/5x8: "" +*ru.ImageableArea 5x8/5 x 8: "" + +*ImageableArea A4/A4: "12.00 12.00 583.00 830.00" +*da.ImageableArea A4/A4: "" +*de.ImageableArea A4/A4: "" +*es.ImageableArea A4/A4: "" +*fi.ImageableArea A4/A4: "" +*fr.ImageableArea A4/A4: "" +*it.ImageableArea A4/A4: "" +*ja.ImageableArea A4/A4: "" +*ko.ImageableArea A4/A4: "" +*nl.ImageableArea A4/A4: "" +*nb.ImageableArea A4/A4: "" +*pt.ImageableArea A4/A4: "" +*sv.ImageableArea A4/A4: "" +*zh_CN.ImageableArea A4/A4: "" +*zh_TW.ImageableArea A4/A4: "" +*ru.ImageableArea A4/A4: "" + +*ImageableArea A5/A5: "12.00 12.00 408.00 583.00" +*da.ImageableArea A5/A5: "" +*de.ImageableArea A5/A5: "" +*es.ImageableArea A5/A5: "" +*fi.ImageableArea A5/A5: "" +*fr.ImageableArea A5/A5: "" +*it.ImageableArea A5/A5: "" +*ja.ImageableArea A5/A5: "" +*ko.ImageableArea A5/A5: "" +*nl.ImageableArea A5/A5: "" +*nb.ImageableArea A5/A5: "" +*pt.ImageableArea A5/A5: "" +*sv.ImageableArea A5/A5: "" +*zh_CN.ImageableArea A5/A5: "" +*zh_TW.ImageableArea A5/A5: "" +*ru.ImageableArea A5/A5: "" + +*ImageableArea A6/A6: "12.00 12.00 286.00 408.00" +*da.ImageableArea A6/A6: "" +*de.ImageableArea A6/A6 Card: "" +*es.ImageableArea A6/A6: "" +*fi.ImageableArea A6/A6: "" +*fr.ImageableArea A6/A6 Card: "" +*it.ImageableArea A6/A6 Card: "" +*ja.ImageableArea A6/A6: "" +*ko.ImageableArea A6/A6: "" +*nl.ImageableArea A6/A6: "" +*nb.ImageableArea A6/A6: "" +*pt.ImageableArea A6/A6: "" +*sv.ImageableArea A6/A6: "" +*zh_CN.ImageableArea A6/A6: "" +*zh_TW.ImageableArea A6/A6: "" +*ru.ImageableArea A6/A6: "" + +*ImageableArea B5/B5 (JIS): "12.00 12.00 504.00 717.00" +*da.ImageableArea B5/JIS B5: "" +*de.ImageableArea B5/B5 (JIS): "" +*es.ImageableArea B5/JIS B5: "" +*fi.ImageableArea B5/JIS B5: "" +*fr.ImageableArea B5/JIS B5: "" +*it.ImageableArea B5/JIS B5: "" +*ja.ImageableArea B5/B5 (JIS): "" +*ko.ImageableArea B5/JIS B5: "" +*nl.ImageableArea B5/JIS B5: "" +*nb.ImageableArea B5/JIS B5: "" +*pt.ImageableArea B5/B5 JIS: "" +*sv.ImageableArea B5/JIS B5: "" +*zh_CN.ImageableArea B5/JIS B5: "" +*zh_TW.ImageableArea B5/JIS B5: "" +*ru.ImageableArea B5/B5 (JIS): "" + +*ImageableArea B6/B6 (JIS): "12.00 12.12 351.00 503.88" +*da.ImageableArea B6/JIS B6: "" +*de.ImageableArea B6/B6 (JIS): "" +*es.ImageableArea B6/JIS B6: "" +*fi.ImageableArea B6/JIS B6: "" +*fr.ImageableArea B6/JIS B6: "" +*it.ImageableArea B6/JIS B6: "" +*ja.ImageableArea B6/B6 (JIS): "" +*ko.ImageableArea B6/JIS B6: "" +*nl.ImageableArea B6/JIS B6: "" +*nb.ImageableArea B6/JIS B6: "" +*pt.ImageableArea B6/B6 JIS: "" +*sv.ImageableArea B6/JIS B6: "" +*zh_CN.ImageableArea B6/JIS B6: "" +*zh_TW.ImageableArea B6/JIS B6: "" +*ru.ImageableArea B6/B6 (JIS): "" + +*ImageableArea w288h432/10x15cm: "12.00 12.12 276.00 420.00" +*da.ImageableArea w288h432/10x15cm: "" +*de.ImageableArea w288h432/10x15cm: "" +*es.ImageableArea w288h432/10x15cm: "" +*fi.ImageableArea w288h432/10x15cm: "" +*fr.ImageableArea w288h432/10x15cm: "" +*it.ImageableArea w288h432/10x15cm: "" +*ja.ImageableArea w288h432/10x15cm: "" +*ko.ImageableArea w288h432/10x15cm: "" +*nl.ImageableArea w288h432/10x15cm: "" +*nb.ImageableArea w288h432/10x15cm: "" +*pt.ImageableArea w288h432/10x15cm: "" +*sv.ImageableArea w288h432/10x15cm: "" +*zh_CN.ImageableArea w288h432/10x15cm: "" +*zh_TW.ImageableArea w288h432/10x15cm: "" +*ru.ImageableArea w288h432/10 x 15 см: "" + +*ImageableArea w553h765/16K 195x270 mm: "12.00 12.00 541.00 753.00" +*da.ImageableArea w553h765/16K 195x270 mm: "" +*de.ImageableArea w553h765/16K 195x270 mm: "" +*es.ImageableArea w553h765/16K 195x270 mm: "" +*fi.ImageableArea w553h765/16K 195x270 mm: "" +*fr.ImageableArea w553h765/16K 195x270 mm: "" +*it.ImageableArea w553h765/16K 195x270 mm: "" +*ja.ImageableArea w553h765/16K 195x270 mm: "" +*ko.ImageableArea w553h765/16K 195x270 mm: "" +*nl.ImageableArea w553h765/16K 195x270 mm: "" +*nb.ImageableArea w553h765/16K 195x270 mm: "" +*pt.ImageableArea w553h765/16K 195x270 mm: "" +*sv.ImageableArea w553h765/16K 195x270 mm: "" +*zh_CN.ImageableArea w553h765/16K 195x270 毫米: "" +*zh_TW.ImageableArea w553h765/16K 195x270 公釐: "" +*ru.ImageableArea w553h765/16K 195 x 270 мм: "" + +*ImageableArea w522h737/16K 184x260 mm: "12.00 12.00 510.00 725.00" +*da.ImageableArea w522h737/16K 184x260 mm: "" +*de.ImageableArea w522h737/16K 184x260 mm: "" +*es.ImageableArea w522h737/16K 184x260 mm: "" +*fi.ImageableArea w522h737/16K 184x260 mm: "" +*fr.ImageableArea w522h737/16K 184x260 mm: "" +*it.ImageableArea w522h737/16K 184x260 mm: "" +*ja.ImageableArea w522h737/16K 184x260 mm: "" +*ko.ImageableArea w522h737/16K 184x260 mm: "" +*nl.ImageableArea w522h737/16K 184x260 mm: "" +*nb.ImageableArea w522h737/16K 184x260 mm: "" +*pt.ImageableArea w522h737/16K 184x260 mm: "" +*sv.ImageableArea w522h737/16K 184x260 mm: "" +*zh_CN.ImageableArea w522h737/16K 184x260 毫米: "" +*zh_TW.ImageableArea w522h737/16K 184x260 公釐: "" +*ru.ImageableArea w522h737/16K 184 x 260 мм: "" + +*ImageableArea w558h774/16K 197x273 mm: "12.00 12.00 546.00 762.00" +*da.ImageableArea w558h774/16K 197x273 mm: "" +*de.ImageableArea w558h774/16K 197x273 mm: "" +*es.ImageableArea w558h774/16K 197x273 mm: "" +*fi.ImageableArea w558h774/16K 197x273 mm: "" +*fr.ImageableArea w558h774/16K 197x273 mm: "" +*it.ImageableArea w558h774/16K 197x273 mm: "" +*ja.ImageableArea w558h774/16K 197x273 mm: "" +*ko.ImageableArea w558h774/16K 197x273 mm: "" +*nl.ImageableArea w558h774/16K 197x273 mm: "" +*nb.ImageableArea w558h774/16K 197x273 mm: "" +*pt.ImageableArea w558h774/16K 197x273 mm: "" +*sv.ImageableArea w558h774/16K 197x273 mm: "" +*zh_CN.ImageableArea w558h774/16K 197x273 毫米: "" +*zh_TW.ImageableArea w558h774/16K 197x273 公釐: "" +*ru.ImageableArea w558h774/16K 197 x 273 мм: "" + +*ImageableArea DoublePostcard/Double Postcard (JIS): "12.00 12.00 407.50 555.00" +*da.ImageableArea DoublePostcard/Dobbelt postkort (JIS): "" +*de.ImageableArea DoublePostcard/Doppelte Postkarte (JIS): "" +*es.ImageableArea DoublePostcard/Tarjeta postal doble (JIS): "" +*fi.ImageableArea DoublePostcard/Kaksinkert. postikortti (JIS): "" +*fr.ImageableArea DoublePostcard/Carte postale double (JIS): "" +*it.ImageableArea DoublePostcard/Cartolina doppia (JIS): "" +*ja.ImageableArea DoublePostcard/往復はがき (JIS): "" +*ko.ImageableArea DoublePostcard/양면 엽서 (JIS): "" +*nl.ImageableArea DoublePostcard/Dubbele briefkaart (JIS): "" +*nb.ImageableArea DoublePostcard/Dobbelt postkort (JIS): "" +*pt.ImageableArea DoublePostcard/Postal duplo (JIS): "" +*sv.ImageableArea DoublePostcard/Dubbelt brevkort (JIS): "" +*zh_CN.ImageableArea DoublePostcard/大号明信片 (JIS): "" +*zh_TW.ImageableArea DoublePostcard/雙面明信片 (JIS): "" +*ru.ImageableArea DoublePostcard/Двойная почтовая карточка (JIS): "" + +*ImageableArea Env10/Env Comm10: "12.00 12.00 285.00 672.00" +*da.ImageableArea Env10/Konv Comm10: "" +*de.ImageableArea Env10/Umschlag Comm10: "" +*es.ImageableArea Env10/Sobre Comm10: "" +*fi.ImageableArea Env10/Kirjekuori Comm10: "" +*fr.ImageableArea Env10/Enveloppe Comm10: "" +*it.ImageableArea Env10/Busta Comm10: "" +*ja.ImageableArea Env10/封筒 Comm10: "" +*ko.ImageableArea Env10/Comm10 봉투: "" +*nl.ImageableArea Env10/Comm10-envelop: "" +*nb.ImageableArea Env10/Comm10-konvolutt: "" +*pt.ImageableArea Env10/Envelope Comm10: "" +*sv.ImageableArea Env10/Comm10-kuvert: "" +*zh_CN.ImageableArea Env10/信封 Comm10: "" +*zh_TW.ImageableArea Env10/Comm10 信封: "" +*ru.ImageableArea Env10/Конверт Comm10: "" + +*ImageableArea EnvMonarch/Env Monarch: "12.00 12.00 267.00 528.00" +*da.ImageableArea EnvMonarch/Konv Monarch: "" +*de.ImageableArea EnvMonarch/Umschlag Monarch: "" +*es.ImageableArea EnvMonarch/Sobre Monarch: "" +*fi.ImageableArea EnvMonarch/Kirjekuori Monarch: "" +*fr.ImageableArea EnvMonarch/Enveloppe Monarch: "" +*it.ImageableArea EnvMonarch/Busta Monarch: "" +*ja.ImageableArea EnvMonarch/封筒 Monarch: "" +*ko.ImageableArea EnvMonarch/Monarch 봉투: "" +*nl.ImageableArea EnvMonarch/Monarch-envelop: "" +*nb.ImageableArea EnvMonarch/Monarch-konvolutt: "" +*pt.ImageableArea EnvMonarch/Envelope Monarch: "" +*sv.ImageableArea EnvMonarch/Monarch-kuvert: "" +*zh_CN.ImageableArea EnvMonarch/信封 Monarch: "" +*zh_TW.ImageableArea EnvMonarch/Monarch 信封: "" +*ru.ImageableArea EnvMonarch/Конверт Monarch: "" + +*ImageableArea EnvISOB5/Env ISO B5: "12.00 12.00 487.00 697.00" +*da.ImageableArea EnvISOB5/Konv ISO B5: "" +*de.ImageableArea EnvISOB5/Umschlag ISO B5: "" +*es.ImageableArea EnvISOB5/Sobre ISO B5: "" +*fi.ImageableArea EnvISOB5/Kirjekuori ISO B5: "" +*fr.ImageableArea EnvISOB5/Enveloppe ISO B5: "" +*it.ImageableArea EnvISOB5/Busta ISO B5: "" +*ja.ImageableArea EnvISOB5/封筒 ISO B5: "" +*ko.ImageableArea EnvISOB5/ISO B5 봉투: "" +*nl.ImageableArea EnvISOB5/ISO B5-envelop: "" +*nb.ImageableArea EnvISOB5/B5-konvolutt: "" +*pt.ImageableArea EnvISOB5/Envelope B5: "" +*sv.ImageableArea EnvISOB5/ISO B5-kuvert: "" +*zh_CN.ImageableArea EnvISOB5/信封 ISO B5: "" +*zh_TW.ImageableArea EnvISOB5/ISO B5 信封: "" +*ru.ImageableArea EnvISOB5/Конверт B5: "" + +*ImageableArea EnvC5/Env C5: "12.00 12.00 447.00 637.00" +*da.ImageableArea EnvC5/Konv C5: "" +*de.ImageableArea EnvC5/Umschlag C5: "" +*es.ImageableArea EnvC5/Sobre C5: "" +*fi.ImageableArea EnvC5/Kirjekuori C5: "" +*fr.ImageableArea EnvC5/Enveloppe C5: "" +*it.ImageableArea EnvC5/Busta C5: "" +*ja.ImageableArea EnvC5/封筒 C5: "" +*ko.ImageableArea EnvC5/C5 봉투: "" +*nl.ImageableArea EnvC5/C5-envelop: "" +*nb.ImageableArea EnvC5/C5-konvolutt: "" +*pt.ImageableArea EnvC5/Envelope C5: "" +*sv.ImageableArea EnvC5/C5-kuvert: "" +*zh_CN.ImageableArea EnvC5/信封 C5: "" +*zh_TW.ImageableArea EnvC5/C5 信封: "" +*ru.ImageableArea EnvC5/Конверт C5: "" + +*ImageableArea EnvDL/Env DL: "12.00 12.00 300.00 612.00" +*da.ImageableArea EnvDL/Konv DL: "" +*de.ImageableArea EnvDL/Umschlag DL: "" +*es.ImageableArea EnvDL/Sobre DL: "" +*fi.ImageableArea EnvDL/Kirjekuori DL: "" +*fr.ImageableArea EnvDL/Enveloppe DL: "" +*it.ImageableArea EnvDL/Busta DL: "" +*ja.ImageableArea EnvDL/封筒 DL: "" +*ko.ImageableArea EnvDL/DL 봉투: "" +*nl.ImageableArea EnvDL/DL-envelop: "" +*nb.ImageableArea EnvDL/DL-konvolutt: "" +*pt.ImageableArea EnvDL/Envelope DL: "" +*sv.ImageableArea EnvDL/DL-kuvert: "" +*zh_CN.ImageableArea EnvDL/信封 DL: "" +*zh_TW.ImageableArea EnvDL/DL 信封: "" +*ru.ImageableArea EnvDL/Конверт DL: "" + +*?ImageableArea: " + save + /cvp { ( ) cvs print ( ) print } bind def + /upperright {10000 mul floor 10000 div} bind def + /lowerleft {10000 mul ceiling 10000 div} bind def + newpath clippath pathbbox + 4 -2 roll exch 2 {lowerleft cvp} repeat + exch 2 {upperright cvp} repeat flush + restore +" +*End + +*DefaultPaperDimension: A4 +*PaperDimension Letter/Letter: "612 792" +*da.PaperDimension Letter/Letter: "" +*de.PaperDimension Letter/Letter: "" +*es.PaperDimension Letter/Carta: "" +*fi.PaperDimension Letter/Letter: "" +*fr.PaperDimension Letter/Lettre: "" +*it.PaperDimension Letter/Lettera: "" +*ja.PaperDimension Letter/レター: "" +*ko.PaperDimension Letter/레터: "" +*nl.PaperDimension Letter/Letter: "" +*nb.PaperDimension Letter/Letter: "" +*pt.PaperDimension Letter/Carta: "" +*sv.PaperDimension Letter/Letter: "" +*zh_CN.PaperDimension Letter/信纸: "" +*zh_TW.PaperDimension Letter/Letter: "" +*ru.PaperDimension Letter/Letter: "" + +*PaperDimension Legal/Legal: "612 1008" +*da.PaperDimension Legal/Legal: "" +*de.PaperDimension Legal/Legal: "" +*es.PaperDimension Legal/Legal: "" +*fi.PaperDimension Legal/Legal: "" +*fr.PaperDimension Legal/Légal: "" +*it.PaperDimension Legal/Legale: "" +*ja.PaperDimension Legal/リーガル: "" +*ko.PaperDimension Legal/리갈: "" +*nl.PaperDimension Legal/Legal: "" +*nb.PaperDimension Legal/Legal: "" +*pt.PaperDimension Legal/Ofício: "" +*sv.PaperDimension Legal/Legal: "" +*zh_CN.PaperDimension Legal/Legal: "" +*zh_TW.PaperDimension Legal/Legal: "" +*ru.PaperDimension Legal/Legal: "" + +*PaperDimension Executive/Executive: "522 756" +*da.PaperDimension Executive/Executive: "" +*de.PaperDimension Executive/Executive: "" +*es.PaperDimension Executive/Executive: "" +*fi.PaperDimension Executive/Executive: "" +*fr.PaperDimension Executive/Exécutif: "" +*it.PaperDimension Executive/Executive: "" +*ja.PaperDimension Executive/エグゼクティブ: "" +*ko.PaperDimension Executive/Executive: "" +*nl.PaperDimension Executive/Executive: "" +*nb.PaperDimension Executive/Executive: "" +*pt.PaperDimension Executive/Executivo: "" +*sv.PaperDimension Executive/Executive: "" +*zh_CN.PaperDimension Executive/Executive: "" +*zh_TW.PaperDimension Executive/Executive: "" +*ru.PaperDimension Executive/Executive: "" + +*PaperDimension HalfLetter/Statement: "396 612" +*da.PaperDimension HalfLetter/Statement: "" +*de.PaperDimension HalfLetter/Statement: "" +*es.PaperDimension HalfLetter/Declaración: "" +*fi.PaperDimension HalfLetter/Statement: "" +*fr.PaperDimension HalfLetter/Relevé: "" +*it.PaperDimension HalfLetter/Dichiarazione: "" +*ja.PaperDimension HalfLetter/Statement: "" +*ko.PaperDimension HalfLetter/2절 레터: "" +*nl.PaperDimension HalfLetter/1/2 Letter : "" +*nb.PaperDimension HalfLetter/1/2 Letter: "" +*pt.PaperDimension HalfLetter/Statement: "" +*sv.PaperDimension HalfLetter/Statement: "" +*zh_CN.PaperDimension HalfLetter/结算单: "" +*zh_TW.PaperDimension HalfLetter/Statement: "" +*ru.PaperDimension HalfLetter/Statement: "" + +*PaperDimension w612h936/8.5x13: "612 936" +*da.PaperDimension w612h936/8.5x13: "" +*de.PaperDimension w612h936/8.5x13: "" +*es.PaperDimension w612h936/8.5x13: "" +*fi.PaperDimension w612h936/8.5x13: "" +*fr.PaperDimension w612h936/8.5x13: "" +*it.PaperDimension w612h936/8.5x13: "" +*ja.PaperDimension w612h936/8.5x13: "" +*ko.PaperDimension w612h936/8.5x13: "" +*nl.PaperDimension w612h936/8.5x13: "" +*nb.PaperDimension w612h936/8.5x13: "" +*pt.PaperDimension w612h936/8.5x13: "" +*sv.PaperDimension w612h936/8.5x13: "" +*zh_CN.PaperDimension w612h936/8.5x13: "" +*zh_TW.PaperDimension w612h936/8.5x13: "" +*ru.PaperDimension w612h936/8.5X13: "" + +*PaperDimension 3x5/3 X 5: "216 360" +*da.PaperDimension 3x5/3 X 5: "" +*de.PaperDimension 3x5/3 X 5: "" +*es.PaperDimension 3x5/3 X 5: "" +*fi.PaperDimension 3x5/3 X 5: "" +*fr.PaperDimension 3x5/3 X 5: "" +*it.PaperDimension 3x5/3 X 5: "" +*ja.PaperDimension 3x5/3 X 5: "" +*ko.PaperDimension 3x5/3 X 5: "" +*nl.PaperDimension 3x5/3 X 5: "" +*nb.PaperDimension 3x5/3 X 5: "" +*pt.PaperDimension 3x5/3 X 5: "" +*sv.PaperDimension 3x5/3 X 5: "" +*zh_CN.PaperDimension 3x5/3 X 5: "" +*zh_TW.PaperDimension 3x5/3 X 5: "" +*ru.PaperDimension 3x5/3 X 5: "" + +*PaperDimension 4x6/4x6: "288 432" +*da.PaperDimension 4x6/4x6: "" +*de.PaperDimension 4x6/4x6: "" +*es.PaperDimension 4x6/4x6: "" +*fi.PaperDimension 4x6/4x6: "" +*fr.PaperDimension 4x6/4x6: "" +*it.PaperDimension 4x6/4x6: "" +*ja.PaperDimension 4x6/4x6: "" +*ko.PaperDimension 4x6/4x6: "" +*nl.PaperDimension 4x6/4x6: "" +*nb.PaperDimension 4x6/4x6: "" +*pt.PaperDimension 4x6/4x6: "" +*sv.PaperDimension 4x6/4x6: "" +*zh_CN.PaperDimension 4x6/4x6: "" +*zh_TW.PaperDimension 4x6/4x6: "" +*ru.PaperDimension 4x6/4 x 6: "" + +*PaperDimension 5x7/5x7: "360 504" +*da.PaperDimension 5x7/5x7: "" +*de.PaperDimension 5x7/5x7: "" +*es.PaperDimension 5x7/5x7: "" +*fi.PaperDimension 5x7/5x7: "" +*fr.PaperDimension 5x7/5x7: "" +*it.PaperDimension 5x7/5x7: "" +*ja.PaperDimension 5x7/5x7: "" +*ko.PaperDimension 5x7/5x7: "" +*nl.PaperDimension 5x7/5x7: "" +*nb.PaperDimension 5x7/5x7: "" +*pt.PaperDimension 5x7/5x7: "" +*sv.PaperDimension 5x7/5x7: "" +*zh_CN.PaperDimension 5x7/5x7: "" +*zh_TW.PaperDimension 5x7/5x7: "" +*ru.PaperDimension 5x7/5 x 7: "" + +*PaperDimension 5x8/5x8: "360 576" +*da.PaperDimension 5x8/5x8: "" +*de.PaperDimension 5x8/5x8: "" +*es.PaperDimension 5x8/5x8: "" +*fi.PaperDimension 5x8/5x8: "" +*fr.PaperDimension 5x8/5x8: "" +*it.PaperDimension 5x8/5x8: "" +*ja.PaperDimension 5x8/5x8: "" +*ko.PaperDimension 5x8/5x8: "" +*nl.PaperDimension 5x8/5x8: "" +*nb.PaperDimension 5x8/5x8: "" +*pt.PaperDimension 5x8/5x8: "" +*sv.PaperDimension 5x8/5x8: "" +*zh_CN.PaperDimension 5x8/5x8: "" +*zh_TW.PaperDimension 5x8/5x8: "" +*ru.PaperDimension 5x8/5 x 8: "" + +*PaperDimension A4/A4: "595 842" +*da.PaperDimension A4/A4: "" +*de.PaperDimension A4/A4: "" +*es.PaperDimension A4/A4: "" +*fi.PaperDimension A4/A4: "" +*fr.PaperDimension A4/A4: "" +*it.PaperDimension A4/A4: "" +*ja.PaperDimension A4/A4: "" +*ko.PaperDimension A4/A4: "" +*nl.PaperDimension A4/A4: "" +*nb.PaperDimension A4/A4: "" +*pt.PaperDimension A4/A4: "" +*sv.PaperDimension A4/A4: "" +*zh_CN.PaperDimension A4/A4: "" +*zh_TW.PaperDimension A4/A4: "" +*ru.PaperDimension A4/A4: "" + +*PaperDimension A5/A5: "420 595" +*da.PaperDimension A5/A5: "" +*de.PaperDimension A5/A5: "" +*es.PaperDimension A5/A5: "" +*fi.PaperDimension A5/A5: "" +*fr.PaperDimension A5/A5: "" +*it.PaperDimension A5/A5: "" +*ja.PaperDimension A5/A5: "" +*ko.PaperDimension A5/A5: "" +*nl.PaperDimension A5/A5: "" +*nb.PaperDimension A5/A5: "" +*pt.PaperDimension A5/A5: "" +*sv.PaperDimension A5/A5: "" +*zh_CN.PaperDimension A5/A5: "" +*zh_TW.PaperDimension A5/A5: "" +*ru.PaperDimension A5/A5: "" + +*PaperDimension A6/A6: "298 420" +*da.PaperDimension A6/A6: "" +*de.PaperDimension A6/A6 Card: "" +*es.PaperDimension A6/A6: "" +*fi.PaperDimension A6/A6: "" +*fr.PaperDimension A6/A6 Card: "" +*it.PaperDimension A6/A6 Card: "" +*ja.PaperDimension A6/A6: "" +*ko.PaperDimension A6/A6: "" +*nl.PaperDimension A6/A6: "" +*nb.PaperDimension A6/A6: "" +*pt.PaperDimension A6/A6: "" +*sv.PaperDimension A6/A6: "" +*zh_CN.PaperDimension A6/A6: "" +*zh_TW.PaperDimension A6/A6: "" +*ru.PaperDimension A6/A6: "" + +*PaperDimension B5/B5 (JIS): "516 729" +*da.PaperDimension B5/JIS B5: "" +*de.PaperDimension B5/B5 (JIS): "" +*es.PaperDimension B5/JIS B5: "" +*fi.PaperDimension B5/JIS B5: "" +*fr.PaperDimension B5/JIS B5: "" +*it.PaperDimension B5/B5 JIS: "" +*ja.PaperDimension B5/B5 (JIS): "" +*ko.PaperDimension B5/JIS B5: "" +*nl.PaperDimension B5/JIS B5: "" +*nb.PaperDimension B5/JIS B5: "" +*pt.PaperDimension B5/B5 JIS: "" +*sv.PaperDimension B5/JIS B5: "" +*zh_CN.PaperDimension B5/JIS B5: "" +*zh_TW.PaperDimension B5/JIS B5: "" +*ru.PaperDimension B5/B5 (JIS): "" + +*PaperDimension B6/B6 (JIS): "363 516" +*da.PaperDimension B6/JIS B6: "" +*de.PaperDimension B6/B6 (JIS): "" +*es.PaperDimension B6/JIS B6: "" +*fi.PaperDimension B6/JIS B6: "" +*fr.PaperDimension B6/JIS B6: "" +*it.PaperDimension B6/B6 JIS: "" +*ja.PaperDimension B6/B6 (JIS): "" +*ko.PaperDimension B6/JIS B6: "" +*nl.PaperDimension B6/JIS B6: "" +*nb.PaperDimension B6/JIS B6: "" +*pt.PaperDimension B6/B6 JIS: "" +*sv.PaperDimension B6/JIS B6: "" +*zh_CN.PaperDimension B6/JIS B6: "" +*zh_TW.PaperDimension B6/JIS B6: "" +*ru.PaperDimension B6/B6 (JIS): "" + +*PaperDimension w288h432/10x15cm: "288 432" +*da.PaperDimension w288h432/10x15cm: "" +*de.PaperDimension w288h432/10x15cm: "" +*es.PaperDimension w288h432/10x15cm: "" +*fi.PaperDimension w288h432/10x15cm: "" +*fr.PaperDimension w288h432/10x15cm: "" +*it.PaperDimension w288h432/10x15cm: "" +*ja.PaperDimension w288h432/10x15cm: "" +*ko.PaperDimension w288h432/10x15cm: "" +*nl.PaperDimension w288h432/10x15cm: "" +*nb.PaperDimension w288h432/10x15cm: "" +*pt.PaperDimension w288h432/10x15cm: "" +*sv.PaperDimension w288h432/10x15cm: "" +*zh_CN.PaperDimension w288h432/10x15cm: "" +*zh_TW.PaperDimension w288h432/10x15cm: "" +*ru.PaperDimension w288h432/10 x 15 см: "" + + +*PaperDimension w553h765/16K 195x270 mm: "553 765" +*da.PaperDimension w553h765/16K 195x270 mm: "" +*de.PaperDimension w553h765/16K 195x270 mm: "" +*es.PaperDimension w553h765/16K 195x270 mm: "" +*fi.PaperDimension w553h765/16K 195x270 mm: "" +*fr.PaperDimension w553h765/16K 195x270 mm: "" +*it.PaperDimension w553h765/16K 195x270 mm: "" +*ja.PaperDimension w553h765/16K 195x270 mm: "" +*ko.PaperDimension w553h765/16K 195x270 mm: "" +*nl.PaperDimension w553h765/16K 195x270 mm: "" +*nb.PaperDimension w553h765/16K 195x270 mm: "" +*pt.PaperDimension w553h765/16K 195x270 mm: "" +*sv.PaperDimension w553h765/16K 195x270 mm: "" +*zh_CN.PaperDimension w553h765/16K 195x270 毫米: "" +*zh_TW.PaperDimension w553h765/16K 195x270 公釐: "" +*ru.PaperDimension w553h765/16K 195 x 270 мм: "" + +*PaperDimension w522h737/16K 184x260 mm: "522 737" +*da.PaperDimension w522h737/16K 184x260 mm: "" +*de.PaperDimension w522h737/16K 184x260 mm: "" +*es.PaperDimension w522h737/16K 184x260 mm: "" +*fi.PaperDimension w522h737/16K 184x260 mm: "" +*fr.PaperDimension w522h737/16K 184x260 mm: "" +*it.PaperDimension w522h737/16K (184x260 mm: "" +*ja.PaperDimension w522h737/16K 184x260 mm: "" +*ko.PaperDimension w522h737/16K 184x260 mm: "" +*nl.PaperDimension w522h737/16K 184x260 mm: "" +*nb.PaperDimension w522h737/16K 184x260 mm: "" +*pt.PaperDimension w522h737/16K 184x260 mm: "" +*sv.PaperDimension w522h737/16K 184x260 mm: "" +*zh_CN.PaperDimension w522h737/16K 184x260 毫米: "" +*zh_TW.PaperDimension w522h737/16K 184x260 公釐: "" +*ru.PaperDimension w522h737/16K 184 x 260 мм: "" + +*PaperDimension w558h774/16K 197x273 mm: "558 774" +*da.PaperDimension w558h774/16K 197x273 mm: "" +*de.PaperDimension w558h774/16K 197x273 mm: "" +*es.PaperDimension w558h774/16K 197x273 mm: "" +*fi.PaperDimension w558h774/16K 197x273 mm: "" +*fr.PaperDimension w558h774/16K 197x273 mm: "" +*it.PaperDimension w558h774/16K 197x273 mm: "" +*ja.PaperDimension w558h774/16K 197x273 mm: "" +*ko.PaperDimension w558h774/16K 197x273 mm: "" +*nl.PaperDimension w558h774/16K 197x273 mm: "" +*nb.PaperDimension w558h774/16K 197x273 mm: "" +*pt.PaperDimension w558h774/16K 197x273 mm: "" +*sv.PaperDimension w558h774/16K 197x273 mm: "" +*zh_CN.PaperDimension w558h774/16K 197x273 mm: "" +*zh_TW.PaperDimension w558h774/16K 197x273 mm: "" +*ru.PaperDimension w558h774/16K 197 x 273 мм: "" + +*PaperDimension DoublePostcard/Double Postcard (JIS): "419.5 567" +*da.PaperDimension DoublePostcard/Dobbelt postkort (JIS): "" +*de.PaperDimension DoublePostcard/Doppelte Postkarte (JIS): "" +*es.PaperDimension DoublePostcard/Tarjeta postal doble (JIS): "" +*fi.PaperDimension DoublePostcard/Kaksinkert. postikortti (JIS): "" +*fr.PaperDimension DoublePostcard/Carte postale double (JIS): "" +*it.PaperDimension DoublePostcard/Cartolina doppia (JIS): "" +*ja.PaperDimension DoublePostcard/往復はがき (JIS): "" +*ko.PaperDimension DoublePostcard/양면 엽서 (JIS): "" +*nl.PaperDimension DoublePostcard/Dubbele briefkaart (JIS): "" +*nb.PaperDimension DoublePostcard/Dobbelt postkort (JIS): "" +*pt.PaperDimension DoublePostcard/Postal duplo (JIS): "" +*sv.PaperDimension DoublePostcard/Dubbelt brevkort (JIS): "" +*zh_CN.PaperDimension DoublePostcard/大号明信片 (JIS): "" +*zh_TW.PaperDimension DoublePostcard/雙面明信片 (JIS): "" +*ru.PaperDimension DoublePostcard/Двойная почтовая карточка (JIS): "" + +*PaperDimension Env10/Env Comm10: "297 684" +*da.PaperDimension Env10/Konv Comm10: "" +*de.PaperDimension Env10/Umschlag Comm10: "" +*es.PaperDimension Env10/Sobre Comm10: "" +*fi.PaperDimension Env10/Kirjekuori Comm10: "" +*fr.PaperDimension Env10/Enveloppe Comm10: "" +*it.PaperDimension Env10/Busta Comm10: "" +*ja.PaperDimension Env10/封筒 Comm10: "" +*ko.PaperDimension Env10/Comm10 봉투: "" +*nl.PaperDimension Env10/Comm10-envelop: "" +*nb.PaperDimension Env10/Comm10-konvolutt: "" +*pt.PaperDimension Env10/Envelope Comm10: "" +*sv.PaperDimension Env10/Comm10-kuvert: "" +*zh_CN.PaperDimension Env10/信封 Comm10: "" +*zh_TW.PaperDimension Env10/Comm10 信封: "" +*ru.PaperDimension Env10/Конверт Comm10: "" + +*PaperDimension EnvMonarch/Env Monarch: "279 540" +*da.PaperDimension EnvMonarch/Konv Monarch: "" +*de.PaperDimension EnvMonarch/Umschlag Monarch: "" +*es.PaperDimension EnvMonarch/Sobre Monarch: "" +*fi.PaperDimension EnvMonarch/Kirjekuori Monarch: "" +*fr.PaperDimension EnvMonarch/Enveloppe Monarch: "" +*it.PaperDimension EnvMonarch/Busta Monarch: "" +*ja.PaperDimension EnvMonarch/封筒 Monarch: "" +*ko.PaperDimension EnvMonarch/Monarch 봉투: "" +*nl.PaperDimension EnvMonarch/Monarch-envelop: "" +*nb.PaperDimension EnvMonarch/Monarch-konvolutt: "" +*pt.PaperDimension EnvMonarch/Envelope Monarch: "" +*sv.PaperDimension EnvMonarch/Monarch-kuvert: "" +*zh_CN.PaperDimension EnvMonarch/信封 Monarch: "" +*zh_TW.PaperDimension EnvMonarch/Monarch 信封: "" +*ru.PaperDimension EnvMonarch/Конверт Monarch: "" + +*PaperDimension EnvISOB5/Env ISO B5: "499 709" +*da.PaperDimension EnvISOB5/Konv ISO B5: "" +*de.PaperDimension EnvISOB5/Umschlag ISO B5: "" +*es.PaperDimension EnvISOB5/Sobre ISO B5: "" +*fi.PaperDimension EnvISOB5/Kirjekuori ISO B5: "" +*fr.PaperDimension EnvISOB5/Enveloppe ISO B5: "" +*it.PaperDimension EnvISOB5/Busta ISO B5: "" +*ja.PaperDimension EnvISOB5/封筒 ISO B5: "" +*ko.PaperDimension EnvISOB5/ISO B5 봉투: "" +*nl.PaperDimension EnvISOB5/ISO B5-envelop: "" +*nb.PaperDimension EnvISOB5/B5-konvolutt: "" +*pt.PaperDimension EnvISOB5/Envelope B5: "" +*sv.PaperDimension EnvISOB5/ISO B5-kuvert: "" +*zh_CN.PaperDimension EnvISOB5/信封 ISO B5: "" +*zh_TW.PaperDimension EnvISOB5/ISO B5 信封: "" +*ru.PaperDimension EnvISOB5/Конверт ISO B5: "" + +*PaperDimension EnvC5/Env C5: "459 649" +*da.PaperDimension EnvC5/Konv C5: "" +*de.PaperDimension EnvC5/Umschlag C5: "" +*es.PaperDimension EnvC5/Sobre C5: "" +*fi.PaperDimension EnvC5/Kirjekuori C5: "" +*fr.PaperDimension EnvC5/Enveloppe C5: "" +*it.PaperDimension EnvC5/Busta C5: "" +*ja.PaperDimension EnvC5/封筒 C5: "" +*ko.PaperDimension EnvC5/C5 봉투: "" +*nl.PaperDimension EnvC5/C5-envelop: "" +*nb.PaperDimension EnvC5/C5-konvolutt: "" +*pt.PaperDimension EnvC5/Envelope C5: "" +*sv.PaperDimension EnvC5/C5-kuvert: "" +*zh_CN.PaperDimension EnvC5/信封 C5: "" +*zh_TW.PaperDimension EnvC5/C5 信封: "" +*ru.PaperDimension EnvC5/Конверт C5: "" + +*PaperDimension EnvDL/Env DL: "312 624" +*da.PaperDimension EnvDL/Konv DL: "" +*de.PaperDimension EnvDL/Umschlag DL: "" +*es.PaperDimension EnvDL/Sobre DL: "" +*fi.PaperDimension EnvDL/Kirjekuori DL: "" +*fr.PaperDimension EnvDL/Enveloppe DL: "" +*it.PaperDimension EnvDL/Busta DL: "" +*ja.PaperDimension EnvDL/封筒 DL: "" +*ko.PaperDimension EnvDL/DL 봉투: "" +*nl.PaperDimension EnvDL/DL-envelop: "" +*nb.PaperDimension EnvDL/DL-konvolutt: "" +*pt.PaperDimension EnvDL/Envelope DL: "" +*sv.PaperDimension EnvDL/DL-kuvert: "" +*zh_CN.PaperDimension EnvDL/信封 DL: "" +*zh_TW.PaperDimension EnvDL/DL 信封: "" +*ru.PaperDimension EnvDL/Конверт DL: "" + + +*LandscapeOrientation: Plus90 + + +*%========================================= +*% Custom Paper Support +*%========================================= +*%Orientation and Margin (offsets) values are not utilized +*% Custom paper size range: from 3.00" x 5.00" to 17.00" x 23.39" + +*LeadingEdge Short: "" +*DefaultLeadingEdge: Short + +*MaxMediaWidth: "1224" +*MaxMediaHeight: "1684.08" +*HWMargins: 16 16 16 16 +*%CustomPageRegion True: "" +*CustomPageSize True: " + pop pop pop + <> + setpagedevice + " +*End + +*ParamCustomPageSize Width: 1 points 216 1224 +*ParamCustomPageSize Height: 2 points 360 1684.08 +*ParamCustomPageSize WidthOffset: 3 points 0 0 +*ParamCustomPageSize HeightOffset: 4 points 0 0 +*ParamCustomPageSize Orientation: 5 int 0 1 + +*RequiresPageRegion All: True + +*% ====================================== +*% Media Handling Features (Paper Sources) +*% ====================================== +*OpenUI *InputSlot/Paper Source: PickOne +*OrderDependency: 20 AnySetup *InputSlot +*DefaultInputSlot: Auto +*InputSlot Auto/Automatic: " + <> setpagedevice" +*End +*da.InputSlot Auto/Automatisk: "" +*de.InputSlot Auto/Automatisch: "" +*es.InputSlot Auto/Automático: "" +*fi.InputSlot Auto/Automaattinen: "" +*fr.InputSlot Auto/Automatique: "" +*it.InputSlot Auto/Automatico: "" +*ja.InputSlot Auto/自動: "" +*ko.InputSlot Auto/자동: "" +*nl.InputSlot Auto/Automatisch: "" +*nb.InputSlot Auto/Automatisk: "" +*pt.InputSlot Auto/Automático: "" +*ru.InputSlot Auto/Автоматически: "" +*sv.InputSlot Auto/Automatiskt: "" +*zh_CN.InputSlot Auto/自动: "" +*zh_TW.InputSlot Auto/自動: "" + +*da.Translation InputSlot/Papirkilde: "" +*de.Translation InputSlot/Papierquelle: "" +*es.Translation InputSlot/Alimentación de papel: "" +*fi.Translation InputSlot/Paperilähde: "" +*fr.Translation InputSlot/Source du papier: "" +*it.Translation InputSlot/Alimentazione della carta: "" +*ja.Translation InputSlot/給紙元: "" +*ko.Translation InputSlot/용지함: "" +*nl.Translation InputSlot/Papierbron: "" +*nb.Translation InputSlot/Arkmating: "" +*pt.Translation InputSlot/Fonte de papel: "" +*sv.Translation InputSlot/Papperskälla: "" +*zh_CN.Translation InputSlot/纸张来源: "" +*zh_TW.Translation InputSlot/紙張來源: "" +*ru.Translation InputSlot/Источник бумаги: "" + +*InputSlot Tray1/Tray 1: " + <> setpagedevice" +*End +*da.InputSlot Tray1/Bakke 1: "" +*de.InputSlot Tray1/Zufuhrfach 1: "" +*es.InputSlot Tray1/Bandeja 1: "" +*fi.InputSlot Tray1/Lokero 1: "" +*fr.InputSlot Tray1/Bac 1: "" +*it.InputSlot Tray1/Cassetto 1: "" +*ja.InputSlot Tray1/トレイ 1: "" +*ko.InputSlot Tray1/용지함 1: "" +*nl.InputSlot Tray1/Lade 1: "" +*nb.InputSlot Tray1/Skuff 1: "" +*pt.InputSlot Tray1/Bandeja 1: "" +*sv.InputSlot Tray1/Fack 1: "" +*zh_CN.InputSlot Tray1/纸盒 1: "" +*zh_TW.InputSlot Tray1/1 號紙匣: "" +*ru.InputSlot Tray1/Лоток 1: "" + +*InputSlot Tray2/Tray 2: " + <> setpagedevice" +*End +*da.InputSlot Tray2/Bakke 2: "" +*de.InputSlot Tray2/Zufuhrfach 2: "" +*es.InputSlot Tray2/Bandeja 2: "" +*fi.InputSlot Tray2/Lokero 2: "" +*fr.InputSlot Tray2/Bac 2: "" +*it.InputSlot Tray2/Cassetto 2: "" +*ja.InputSlot Tray2/トレイ 2: "" +*ko.InputSlot Tray2/용지함 2: "" +*nl.InputSlot Tray2/Lade 2: "" +*nb.InputSlot Tray2/Skuff 2: "" +*pt.InputSlot Tray2/Bandeja 2: "" +*sv.InputSlot Tray2/Fack 2: "" +*zh_CN.InputSlot Tray2/纸盒 2: "" +*zh_TW.InputSlot Tray2/2 號紙匣: "" +*ru.InputSlot Tray2/Лоток 2: "" + +*InputSlot Tray3/Tray 3: " + <> setpagedevice" +*End +*da.InputSlot Tray3/Bakke 3: "" +*de.InputSlot Tray3/Zufuhrfach 3: "" +*es.InputSlot Tray3/Bandeja 3: "" +*fi.InputSlot Tray3/Lokero 3: "" +*fr.InputSlot Tray3/Bac 3: "" +*it.InputSlot Tray3/Cassetto 3: "" +*ja.InputSlot Tray3/トレイ 3: "" +*ko.InputSlot Tray3/용지함 3: "" +*nl.InputSlot Tray3/Lade 3: "" +*nb.InputSlot Tray3/Skuff 3: "" +*pt.InputSlot Tray3/Bandeja 3: "" +*sv.InputSlot Tray3/Fack 3: "" +*zh_CN.InputSlot Tray3/纸盒 3: "" +*zh_TW.InputSlot Tray3/3 號紙匣: "" +*ru.InputSlot Tray3/Лоток 3: "" + +*InputSlot Tray4/Tray 4: " + <> setpagedevice" +*End +*da.InputSlot Tray4/Bakke 4: "" +*de.InputSlot Tray4/Zufuhrfach 4: "" +*es.InputSlot Tray4/Bandeja 4: "" +*fi.InputSlot Tray4/Lokero 4: "" +*fr.InputSlot Tray4/Bac 4: "" +*it.InputSlot Tray4/Cassetto 4: "" +*ja.InputSlot Tray4/トレイ 4: "" +*ko.InputSlot Tray4/용지함 4: "" +*nl.InputSlot Tray4/Lade 4: "" +*nb.InputSlot Tray4/Skuff 4: "" +*pt.InputSlot Tray4/Bandeja 4: "" +*sv.InputSlot Tray4/Fack 4: "" +*zh_CN.InputSlot Tray4/纸盒 4: "" +*zh_TW.InputSlot Tray4/4 號紙匣: "" +*ru.InputSlot Tray4/Лоток 4: "" + +*InputSlot Tray1_Man/Tray 1 (Manual): " + <> setpagedevice" +*End +*da.InputSlot Tray1_Man/Bakke 1 (Manuel): "" +*de.InputSlot Tray1_Man/Zufuhrfach 1 (Manuell): "" +*es.InputSlot Tray1_Man/Bandeja 1 (Manual): "" +*fi.InputSlot Tray1_Man/Lokero 1 (Käsinsyöttö): "" +*fr.InputSlot Tray1_Man/Bac 1 (Manuel): "" +*it.InputSlot Tray1_Man/Cassetto 1 (Manuale): "" +*ja.InputSlot Tray1_Man/トレイ 1 (手動): "" +*ko.InputSlot Tray1_Man/용지함 1(수동): "" +*nl.InputSlot Tray1_Man/Lade 1 (Handmatig): "" +*nb.InputSlot Tray1_Man/Skuff 1 (Manuell): "" +*pt.InputSlot Tray1_Man/Bandeja 1 (Manual): "" +*sv.InputSlot Tray1_Man/Fack 1 (Manuell): "" +*zh_CN.InputSlot Tray1_Man/纸盒 1(手动): "" +*zh_TW.InputSlot Tray1_Man/1 號紙匣 (手動): "" +*ru.InputSlot Tray1_Man/Лоток 1 (вручную): "" + + +*?InputSlot: " + save + currentpagedevice /InputAttributes get /Priority get + aload pop pop pop pop pop + [(Tray2) (Tray3) (Tray1) (Tray4) ] exch get = flush + restore +" +*End +*CloseUI: *InputSlot + + +*OpenGroup: HPImagingOptions/Image Quality +*da.Translation HPImagingOptions/Billedindstillinger: "" +*de.Translation HPImagingOptions/Abbildungsoptionen: "" +*es.Translation HPImagingOptions/Opciones de imagen: "" +*fi.Translation HPImagingOptions/Kuvanmuodostusasetukset: "" +*fr.Translation HPImagingOptions/Options d'image: "" +*it.Translation HPImagingOptions/Opzioni di immagine: "" +*ja.Translation HPImagingOptions/画質オプション: "" +*ko.Translation HPImagingOptions/이미지 옵션: "" +*nl.Translation HPImagingOptions/Afbeeldingen-opties: "" +*nb.Translation HPImagingOptions/Valg for bildebehandling: "" +*pt.Translation HPImagingOptions/Opções de imagem: "" +*sv.Translation HPImagingOptions/Alternativ för kvalitet: "" +*zh_CN.Translation HPImagingOptions/图象选项: "" +*zh_TW.Translation HPImagingOptions/影像選項: "" +*ru.Translation HPImagingOptions/Параметры изображения: "" + +*%=================================== +*% Resolution +*%=================================== +*% Select Printer Resolution +*OpenUI *Resolution/Printer Resolution: PickOne +*DefaultResolution: 600x600dpi +*da.Translation Resolution/Opløsning: "" +*de.Translation Resolution/Druckerauflösung: "" +*es.Translation Resolution/Resol. de la impresora: "" +*fi.Translation Resolution/Kirjoittimen tarkkuus: "" +*fr.Translation Resolution/Résolution d’imprimante: "" +*it.Translation Resolution/Risoluzione: "" +*ja.Translation Resolution/プリンタの解像度: "" +*ko.Translation Resolution/프린터 해상도: "" +*nl.Translation Resolution/Printer-resolutie: "" +*nb.Translation Resolution/Skriveroppløsning: "" +*pt.Translation Resolution/Resolução da impressora: "" +*sv.Translation Resolution/Skrivarupplösning: "" +*zh_CN.Translation Resolution/打印机分辨率: "" +*zh_TW.Translation Resolution/印表機解析度: "" +*ru.Translation Resolution/Разрешение принтера: "" + +*OrderDependency: 5 DocumentSetup *Resolution +*Resolution 1200x1200dpi/ProRes 1200: " + <> setpagedevice" +*End +*da.Resolution 1200x1200dpi/ProRes 1200: "" +*de.Resolution 1200x1200dpi/ProRes 1200: "" +*es.Resolution 1200x1200dpi/ProRes 1200: "" +*fi.Resolution 1200x1200dpi/ProRes 1200: "" +*fr.Resolution 1200x1200dpi/ProRes 1200: "" +*it.Resolution 1200x1200dpi/ProRes 1200: "" +*ja.Resolution 1200x1200dpi/ProRes 1200: "" +*ko.Resolution 1200x1200dpi/ProRes 1200: "" +*nl.Resolution 1200x1200dpi/ProRes 1200: "" +*nb.Resolution 1200x1200dpi/ProRes 1200: "" +*pt.Resolution 1200x1200dpi/ProRes 1200: "" +*sv.Resolution 1200x1200dpi/ProRes 1200: "" +*zh_CN.Resolution 1200x1200dpi/ProRes 1200: "" +*zh_TW.Resolution 1200x1200dpi/ProRes 1200: "" +*ru.Resolution 1200x1200dpi/ProRes 1200: "" + +*Resolution 1200dpi/FastRes 1200: " + <> setpagedevice" +*End +*da.Resolution 1200dpi/FastRes 1200: "" +*de.Resolution 1200dpi/FastRes 1200: "" +*es.Resolution 1200dpi/FastRes 1200: "" +*fi.Resolution 1200dpi/FastRes 1200: "" +*fr.Resolution 1200dpi/FastRes 1200: "" +*it.Resolution 1200dpi/FastRes 1200: "" +*ja.Resolution 1200dpi/FastRes 1200: "" +*ko.Resolution 1200dpi/FastRes 1200: "" +*nl.Resolution 1200dpi/FastRes 1200: "" +*nb.Resolution 1200dpi/FastRes 1200: "" +*pt.Resolution 1200dpi/FastRes 1200: "" +*sv.Resolution 1200dpi/FastRes 1200: "" +*zh_CN.Resolution 1200dpi/FastRes 1200: "" +*zh_TW.Resolution 1200dpi/FastRes 1200: "" +*ru.Resolution 1200dpi/FastRes 1200: "" + +*Resolution 600x600dpi/600 dpi: " + <> setpagedevice" +*End +*da.Resolution 600x600dpi/600 dpi: "" +*de.Resolution 600x600dpi/600 dpi: "" +*es.Resolution 600x600dpi/600 dpi: "" +*fi.Resolution 600x600dpi/600 dpi: "" +*fr.Resolution 600x600dpi/600 dpi: "" +*it.Resolution 600x600dpi/600 dpi: "" +*ja.Resolution 600x600dpi/600 dpi: "" +*ko.Resolution 600x600dpi/600 dpi: "" +*nl.Resolution 600x600dpi/600 dpi: "" +*nb.Resolution 600x600dpi/600 dpi: "" +*pt.Resolution 600x600dpi/600 dpi: "" +*sv.Resolution 600x600dpi/600 dpi: "" +*zh_CN.Resolution 600x600dpi/600 dpi: "" +*zh_TW.Resolution 600x600dpi/600 dpi: "" +*ru.Resolution 600x600dpi/600 dpi: "" + +*?Resolution: " + save + currentpagedevice /HWResolution get + 0 get + ( ) cvs print + (dpi) + = flush + restore +" +*End +*CloseUI: *Resolution + +*%================================== +*% HPEconoMode +*%================================== +*OpenUI *HPEconoMode/EconoMode: PickOne +*DefaultHPEconoMode: PrinterDefault +*da.Translation HPEconoMode/EconoMode: "" +*de.Translation HPEconoMode/EconoMode: "" +*es.Translation HPEconoMode/EconoMode: "" +*fi.Translation HPEconoMode/EconoMode: "" +*fr.Translation HPEconoMode/EconoMode: "" +*it.Translation HPEconoMode/EconoMode: "" +*ja.Translation HPEconoMode/EconoMode: "" +*ko.Translation HPEconoMode/EconoMode: "" +*nl.Translation HPEconoMode/EconoMode: "" +*nb.Translation HPEconoMode/EconoMode: "" +*pt.Translation HPEconoMode/EconoMode: "" +*sv.Translation HPEconoMode/EconoMode: "" +*zh_CN.Translation HPEconoMode/EconoMode: "" +*zh_TW.Translation HPEconoMode/EconoMode: "" +*ru.Translation HPEconoMode/EconoMode: "" + +*OrderDependency: 10 AnySetup *HPEconoMode +*HPEconoMode PrinterDefault/Printer's Current Setting: "" +*da.HPEconoMode PrinterDefault/Printerens aktuelle indstilling: "" +*de.HPEconoMode PrinterDefault/Aktuelle Druckereinstellung: "" +*es.HPEconoMode PrinterDefault/Configuración actual de la impresora: "" +*fi.HPEconoMode PrinterDefault/Kirjoittimen nykyinen asetus: "" +*fr.HPEconoMode PrinterDefault/Paramétrage actuel de l’imprimante: "" +*it.HPEconoMode PrinterDefault/Impostazioni correnti della stampante: "" +*ja.HPEconoMode PrinterDefault/プリンタの現在の設定: "" +*ko.HPEconoMode PrinterDefault/프린터 기본값: "" +*nl.HPEconoMode PrinterDefault/Huidige instelling van de printer: "" +*nb.HPEconoMode PrinterDefault/Skriverens gjeldende innstilling: "" +*pt.HPEconoMode PrinterDefault/Configuração atual da impressora: "" +*sv.HPEconoMode PrinterDefault/Skrivarens inställning: "" +*zh_CN.HPEconoMode PrinterDefault/打印机的当前设置: "" +*zh_TW.HPEconoMode PrinterDefault/印表機目前的設定值: "" +*ru.HPEconoMode PrinterDefault/Текущая настройка принтера: "" + +*HPEconoMode True/Save Toner: " + <> setpagedevice" +*End +*da.HPEconoMode True/Spar toner: "" +*de.HPEconoMode True/Toner sparen: "" +*es.HPEconoMode True/Ahorrar tóner: "" +*fi.HPEconoMode True/Säästä väriainetta: "" +*fr.HPEconoMode True/Economiser l’encre: "" +*it.HPEconoMode True/Salva toner: "" +*ja.HPEconoMode True/トナー節約: "" +*ko.HPEconoMode True/토너 절약: "" +*nl.HPEconoMode True/Toner besparen: "" +*nb.HPEconoMode True/Spar toner: "" +*pt.HPEconoMode True/Economizar toner: "" +*sv.HPEconoMode True/Spara toner: "" +*zh_CN.HPEconoMode True/节省碳粉: "" +*zh_TW.HPEconoMode True/節約碳粉: "" +*ru.HPEconoMode True/Экономия тонера: "" + +*HPEconoMode False/Highest Quality: " + <> setpagedevice" +*End +*da.HPEconoMode False/Højeste kvalitet: "" +*de.HPEconoMode False/Beste Qualität: "" +*es.HPEconoMode False/Calidad óptima: "" +*fi.HPEconoMode False/Korkein laatu: "" +*fr.HPEconoMode False/Meilleure qualité: "" +*it.HPEconoMode False/Qualità superiore: "" +*ja.HPEconoMode False/最品位: "" +*ko.HPEconoMode False/최고품질: "" +*nl.HPEconoMode False/Beste kwaliteit: "" +*nb.HPEconoMode False/Høyeste kvalitet: "" +*pt.HPEconoMode False/Melhor qualidade: "" +*sv.HPEconoMode False/Högsta kvalitet: "" +*zh_CN.HPEconoMode False/最高质量: "" +*zh_TW.HPEconoMode False/最高品質: "" +*ru.HPEconoMode False/Наивысшее качество: "" + +*?HPEconoMode: " + save + currentpagedevice /HPEconoMode get + {(True)}{(False)}ifelse = flush + restore +" +*End +*CloseUI: *HPEconoMode + +*% =================================== +*% Gray Levels and Halftoning +*% =================================== +*ScreenFreq: "106.0" +*ScreenAngle: "45.0" +*ResScreenFreq 600x600dpi/600 dpi: "106.0" +*da.ResScreenFreq 600x600dpi/600 dpi: "" +*de.ResScreenFreq 600x600dpi/600 dpi: "" +*es.ResScreenFreq 600x600dpi/600 dpi: "" +*fi.ResScreenFreq 600x600dpi/600 dpi: "" +*fr.ResScreenFreq 600x600dpi/600 dpi: "" +*it.ResScreenFreq 600x600dpi/600 dpi: "" +*ja.ResScreenFreq 600x600dpi/600 dpi: "" +*ko.ResScreenFreq 600x600dpi/600 dpi: "" +*nl.ResScreenFreq 600x600dpi/600 dpi: "" +*nb.ResScreenFreq 600x600dpi/600 dpi: "" +*pt.ResScreenFreq 600x600dpi/600 dpi: "" +*sv.ResScreenFreq 600x600dpi/600 dpi: "" +*zh_CN.ResScreenFreq 600x600dpi/600 dpi: "" +*zh_TW.ResScreenFreq 600x600dpi/600 dpi: "" +*ru.ResScreenFreq 600x600dpi/600 dpi: "" + +*ResScreenAngle 600x600dpi/600 dpi: "45.0" +*da.ResScreenAngle 600x600dpi/600 dpi: "" +*de.ResScreenAngle 600x600dpi/600 dpi: "" +*es.ResScreenAngle 600x600dpi/600 dpi: "" +*fi.ResScreenAngle 600x600dpi/600 dpi: "" +*fr.ResScreenAngle 600x600dpi/600 dpi: "" +*it.ResScreenAngle 600x600dpi/600 dpi: "" +*ja.ResScreenAngle 600x600dpi/600 dpi: "" +*ko.ResScreenAngle 600x600dpi/600 dpi: "" +*nl.ResScreenAngle 600x600dpi/600 dpi: "" +*nb.ResScreenAngle 600x600dpi/600 dpi: "" +*pt.ResScreenAngle 600x600dpi/600 dpi: "" +*sv.ResScreenAngle 600x600dpi/600 dpi: "" +*zh_CN.ResScreenAngle 600x600dpi/600 dpi: "" +*zh_TW.ResScreenAngle 600x600dpi/600 dpi: "" +*ru.ResScreenAngle 600x600dpi/600 dpi: "" + +*ResScreenFreq 1200x1200dpi/ProRes 1200: "180.0" +*da.ResScreenFreq 1200x1200dpi/ProRes 1200: "" +*de.ResScreenFreq 1200x1200dpi/ProRes 1200: "" +*es.ResScreenFreq 1200x1200dpi/ProRes 1200: "" +*fi.ResScreenFreq 1200x1200dpi/ProRes 1200: "" +*fr.ResScreenFreq 1200x1200dpi/ProRes 1200: "" +*it.ResScreenFreq 1200x1200dpi/ProRes 1200: "" +*ja.ResScreenFreq 1200x1200dpi/ProRes 1200: "" +*ko.ResScreenFreq 1200x1200dpi/ProRes 1200: "" +*nl.ResScreenFreq 1200x1200dpi/ProRes 1200: "" +*nb.ResScreenFreq 1200x1200dpi/ProRes 1200: "" +*pt.ResScreenFreq 1200x1200dpi/ProRes 1200: "" +*sv.ResScreenFreq 1200x1200dpi/ProRes 1200: "" +*zh_CN.ResScreenFreq 1200x1200dpi/ProRes 1200: "" +*zh_TW.ResScreenFreq 1200x1200dpi/ProRes 1200: "" +*ru.ResScreenFreq 1200x1200dpi/ProRes 1200: "" + +*ResScreenAngle 1200x1200dpi/ProRes 1200: "45.0" +*da.ResScreenAngle 1200x1200dpi/ProRes 1200: "" +*de.ResScreenAngle 1200x1200dpi/ProRes 1200: "" +*es.ResScreenAngle 1200x1200dpi/ProRes 1200: "" +*fi.ResScreenAngle 1200x1200dpi/ProRes 1200: "" +*fr.ResScreenAngle 1200x1200dpi/ProRes 1200: "" +*it.ResScreenAngle 1200x1200dpi/ProRes 1200: "" +*ja.ResScreenAngle 1200x1200dpi/ProRes 1200: "" +*ko.ResScreenAngle 1200x1200dpi/ProRes 1200: "" +*nl.ResScreenAngle 1200x1200dpi/ProRes 1200: "" +*nb.ResScreenAngle 1200x1200dpi/ProRes 1200: "" +*pt.ResScreenAngle 1200x1200dpi/ProRes 1200: "" +*sv.ResScreenAngle 1200x1200dpi/ProRes 1200: "" +*zh_CN.ResScreenAngle 1200x1200dpi/ProRes 1200: "" +*zh_TW.ResScreenAngle 1200x1200dpi/ProRes 1200: "" +*ru.ResScreenAngle 1200x1200dpi/ProRes 1200: "" + + +*DefaultScreenProc: Dot +*ScreenProc HPEnhanced: " + { /EnhancedHalftone /Halftone findresource }" +*End +*ScreenProc Dot: " + {abs exch abs 2 copy add 1 gt {1 sub dup mul exch 1 sub dup mul add 1 + sub }{dup mul exch dup mul add 1 exch sub }ifelse } +" +*End +*ScreenProc Line: "{ pop }" +*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }" + +*DefaultTransfer: Null +*Transfer Null: "{ }" +*Transfer Null.Inverse: "{ 1 exch sub }" + +*DefaultHalftoneType: 9 +*AccurateScreensSupport: False + +*CloseGroup: HPImagingOptions + +*% =================================== +*% Font Information +*% =================================== +*DefaultFont: Courier +*Font AlbertusMT-Italic: Standard "(001.000)" Standard ROM +*Font AlbertusMT-Light: Standard "(001.000)" Standard ROM +*Font AlbertusMT: Standard "(001.000)" Standard ROM +*Font AntiqueOlive-Bold: Standard "(501.009)" ExtendedRoman ROM +*Font AntiqueOlive-Compact: Standard "(501.008)" ExtendedRoman ROM +*Font AntiqueOlive-Italic: Standard "(501.010)" ExtendedRoman ROM +*Font AntiqueOlive-Roman: Standard "(501.008)" ExtendedRoman ROM +*Font AntiqueOliveCE-Bold: Win1250 "(501.009)" ExtendedRoman ROM +*Font AntiqueOliveCE-Compact: Win1250 "(501.008)" ExtendedRoman ROM +*Font AntiqueOliveCE-Italic: Win1250 "(501.010)" ExtendedRoman ROM +*Font AntiqueOliveCE-Roman: Win1250 "(501.008)" ExtendedRoman ROM +*Font Apple-Chancery: Standard "(001.001)" ExtendedRoman ROM +*Font Apple-ChanceryCE: Win1250 "(001.001)" ExtendedRoman ROM +*Font Arial-BoldItalicMT: Standard "(501.009)" ExtendedRoman ROM +*Font Arial-BoldMT: Standard "(501.009)" ExtendedRoman ROM +*Font Arial-ItalicMT: Standard "(501.012)" ExtendedRoman ROM +*Font ArialCE-Bold: Win1250 "(501.009)" ExtendedRoman ROM +*Font ArialCE-BoldItalic: Win1250 "(501.009)" ExtendedRoman ROM +*Font ArialCE-Italic: Win1250 "(501.012)" ExtendedRoman ROM +*Font ArialCE: Win1250 "(501.009)" ExtendedRoman ROM +*Font ArialMT: Standard "(501.009)" ExtendedRoman ROM +*Font AvantGarde-Book: Standard "(501.009)" ExtendedRoman ROM +*Font AvantGarde-BookOblique: Standard "(501.009)" ExtendedRoman ROM +*Font AvantGarde-Demi: Standard "(501.010)" ExtendedRoman ROM +*Font AvantGarde-DemiOblique: Standard "(501.010)" ExtendedRoman ROM +*Font AvantGardeCE-Book: Win1250 "(501.009)" ExtendedRoman ROM +*Font AvantGardeCE-BookOblique: Win1250 "(501.009)" ExtendedRoman ROM +*Font AvantGardeCE-Demi: Win1250 "(501.010)" ExtendedRoman ROM +*Font AvantGardeCE-DemiOblique: Win1250 "(501.010)" ExtendedRoman ROM +*Font Bodoni-Bold: Standard "(501.006)" ExtendedRoman ROM +*Font Bodoni-BoldItalic: Standard "(501.007)" ExtendedRoman ROM +*Font Bodoni-Italic: Standard "(501.007)" ExtendedRoman ROM +*Font Bodoni-Poster: Standard "(501.009)" ExtendedRoman ROM +*Font Bodoni-PosterCompressed: Standard "(501.007)" ExtendedRoman ROM +*Font Bodoni: Standard "(501.008)" ExtendedRoman ROM +*Font BodoniCE-Bold: Win1250 "(501.006)" ExtendedRoman ROM +*Font BodoniCE-BoldItalic: Win1250 "(501.007)" ExtendedRoman ROM +*Font BodoniCE-Italic: Win1250 "(501.007)" ExtendedRoman ROM +*Font BodoniCE-Poster: Win1250 "(501.009)" ExtendedRoman ROM +*Font BodoniCE-PosterCompressed: Win1250 "(501.007)" ExtendedRoman ROM +*Font BodoniCE: Win1250 "(501.008)" ExtendedRoman ROM +*Font Bookman-Demi: Standard "(501.007)" ExtendedRoman ROM +*Font Bookman-DemiItalic: Standard "(501.008)" ExtendedRoman ROM +*Font Bookman-Light: Standard "(501.006)" ExtendedRoman ROM +*Font Bookman-LightItalic: Standard "(501.007)" ExtendedRoman ROM +*Font BookmanCE-Demi: Win1250 "(501.007)" ExtendedRoman ROM +*Font BookmanCE-DemiItalic: Win1250 "(501.008)" ExtendedRoman ROM +*Font BookmanCE-Light: Win1250 "(501.006)" ExtendedRoman ROM +*Font BookmanCE-LightItalic: Win1250 "(501.007)" ExtendedRoman ROM +*Font Carta: Special "(001.001)" Special ROM +*Font Chicago: Standard "(501.011)" ExtendedRoman ROM +*Font ChicagoCE: Win1250 "(501.011)" ExtendedRoman ROM +*Font Clarendon-Bold: Standard "(501.008)" ExtendedRoman ROM +*Font Clarendon-Light: Standard "(501.009)" ExtendedRoman ROM +*Font Clarendon: Standard "(501.009)" ExtendedRoman ROM +*Font ClarendonCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM +*Font ClarendonCE-Light: Win1250 "(501.009)" ExtendedRoman ROM +*Font ClarendonCE: Win1250 "(501.009)" ExtendedRoman ROM +*Font CooperBlack-Italic: Standard "(001.003)" Standard ROM +*Font CooperBlack: Standard "(001.003)" Standard ROM +*Font Copperplate-ThirtyThreeBC: Standard "(001.002)" Standard ROM +*Font Copperplate-ThirtyTwoBC: Standard "(001.002)" Standard ROM +*Font Coronet-Regular: Standard "(001.000)" ExtendedRoman ROM +*Font CoronetCE-Regular: Win1250 "(001.000)" ExtendedRoman ROM +*Font Courier-Bold: Standard "(501.010)" ExtendedRoman ROM +*Font Courier-BoldOblique: Standard "(501.010)" ExtendedRoman ROM +*Font Courier-Oblique: Standard "(501.010)" ExtendedRoman ROM +*Font Courier: Standard "(501.010)" ExtendedRoman ROM +*Font CourierCE-Bold: Win1250 "(501.010)" ExtendedRoman ROM +*Font CourierCE-BoldOblique: Win1250 "(501.010)" ExtendedRoman ROM +*Font CourierCE-Oblique: Win1250 "(501.010)" ExtendedRoman ROM +*Font CourierCE: Win1250 "(501.010)" ExtendedRoman ROM +*Font Eurostile-Bold: Standard "(501.008)" ExtendedRoman ROM +*Font Eurostile-BoldExtendedTwo: Standard "(501.008)" ExtendedRoman ROM +*Font Eurostile-ExtendedTwo: Standard "(501.010)" ExtendedRoman ROM +*Font Eurostile: Standard "(501.008)" ExtendedRoman ROM +*Font EurostileCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM +*Font EurostileCE-BoldExtendedTwo: Win1250 "(501.008)" ExtendedRoman ROM +*Font EurostileCE-ExtendedTwo: Win1250 "(501.010)" ExtendedRoman ROM +*Font EurostileCE: Win1250 "(501.008)" ExtendedRoman ROM +*Font Geneva: Standard "(501.007)" ExtendedRoman ROM +*Font GenevaCE: Win1250 "(501.007)" ExtendedRoman ROM +*Font GillSans-Bold: Standard "(501.007)" ExtendedRoman ROM +*Font GillSans-BoldCondensed: Standard "(501.006)" ExtendedRoman ROM +*Font GillSans-BoldItalic: Standard "(501.008)" ExtendedRoman ROM +*Font GillSans-Condensed: Standard "(501.007)" ExtendedRoman ROM +*Font GillSans-ExtraBold: Standard "(501.008)" ExtendedRoman ROM +*Font GillSans-Italic: Standard "(501.008)" ExtendedRoman ROM +*Font GillSans-Light: Standard "(501.009)" ExtendedRoman ROM +*Font GillSans-LightItalic: Standard "(501.009)" ExtendedRoman ROM +*Font GillSans: Standard "(501.009)" ExtendedRoman ROM +*Font GillSansCE-Bold: Win1250 "(501.007)" ExtendedRoman ROM +*Font GillSansCE-BoldCondensed: Win1250 "(501.006)" ExtendedRoman ROM +*Font GillSansCE-BoldItalic: Win1250 "(501.008)" ExtendedRoman ROM +*Font GillSansCE-Condensed: Win1250 "(501.007)" ExtendedRoman ROM +*Font GillSansCE-ExtraBold: Win1250 "(501.008)" ExtendedRoman ROM +*Font GillSansCE-Italic: Win1250 "(501.008)" ExtendedRoman ROM +*Font GillSansCE-Light: Win1250 "(501.009)" ExtendedRoman ROM +*Font GillSansCE-LightItalic: Win1250 "(501.009)" ExtendedRoman ROM +*Font GillSansCE-Roman: Win1250 "(501.009)" ExtendedRoman ROM +*Font Goudy-Bold: Standard "(001.002)" Standard ROM +*Font Goudy-BoldItalic: Standard "(001.002)" Standard ROM +*Font Goudy-ExtraBold: Standard "(001.001)" Standard ROM +*Font Goudy-Italic: Standard "(001.002)" Standard ROM +*Font Goudy: Standard "(001.003)" Standard ROM +*Font Helvetica-Bold: Standard "(501.010)" ExtendedRoman ROM +*Font Helvetica-BoldOblique: Standard "(501.010)" ExtendedRoman ROM +*Font Helvetica-Condensed-Bold: Standard "(501.009)" ExtendedRoman ROM +*Font Helvetica-Condensed-BoldObl: Standard "(501.009)" ExtendedRoman ROM +*Font Helvetica-Condensed-Oblique: Standard "(501.010)" ExtendedRoman ROM +*Font Helvetica-Condensed: Standard "(501.010)" ExtendedRoman ROM +*Font Helvetica-Narrow-Bold: Standard "(501.010)" ExtendedRoman ROM +*Font Helvetica-Narrow-BoldOblique: Standard "(501.010)" ExtendedRoman ROM +*Font Helvetica-Narrow-Oblique: Standard "(501.008)" ExtendedRoman ROM +*Font Helvetica-Narrow: Standard "(501.008)" ExtendedRoman ROM +*Font Helvetica-Oblique: Standard "(501.008)" ExtendedRoman ROM +*Font Helvetica: Standard "(501.008)" ExtendedRoman ROM +*Font HelveticaCE-Bold: Win1250 "(501.010)" ExtendedRoman ROM +*Font HelveticaCE-BoldOblique: Win1250 "(501.010)" ExtendedRoman ROM +*Font HelveticaCE-Cond: Win1250 "(501.010)" ExtendedRoman ROM +*Font HelveticaCE-CondBold: Win1250 "(501.009)" ExtendedRoman ROM +*Font HelveticaCE-CondBoldObl: Win1250 "(501.009)" ExtendedRoman ROM +*Font HelveticaCE-CondObl: Win1250 "(501.010)" ExtendedRoman ROM +*Font HelveticaCE-Narrow: Win1250 "(501.008)" ExtendedRoman ROM +*Font HelveticaCE-NarrowBold: Win1250 "(501.010)" ExtendedRoman ROM +*Font HelveticaCE-NarrowBoldOblique: Win1250 "(501.010)" ExtendedRoman ROM +*Font HelveticaCE-NarrowOblique: Win1250 "(501.008)" ExtendedRoman ROM +*Font HelveticaCE-Oblique: Win1250 "(501.008)" ExtendedRoman ROM +*Font HelveticaCE: Win1250 "(501.008)" ExtendedRoman ROM +*Font HoeflerText-Black: Standard "(501.008)" ExtendedRoman ROM +*Font HoeflerText-BlackItalic: Standard "(501.009)" ExtendedRoman ROM +*Font HoeflerText-Italic: Standard "(501.010)" ExtendedRoman ROM +*Font HoeflerText-Ornaments: Special "(001.001)" Special ROM +*Font HoeflerText-Regular: Standard "(501.009)" ExtendedRoman ROM +*Font HoeflerTextCE-Black: Win1250 "(501.008)" ExtendedRoman ROM +*Font HoeflerTextCE-BlackItalic: Win1250 "(501.009)" ExtendedRoman ROM +*Font HoeflerTextCE-Italic: Win1250 "(501.010)" ExtendedRoman ROM +*Font HoeflerTextCE-Regular: Win1250 "(501.009)" ExtendedRoman ROM +*Font JoannaMT-Bold: Standard "(501.008)" ExtendedRoman ROM +*Font JoannaMT-BoldItalic: Standard "(501.008)" ExtendedRoman ROM +*Font JoannaMT-Italic: Standard "(501.008)" ExtendedRoman ROM +*Font JoannaMT: Standard "(501.009)" ExtendedRoman ROM +*Font JoannaMTCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM +*Font JoannaMTCE-BoldItalic: Win1250 "(501.008)" ExtendedRoman ROM +*Font JoannaMTCE-Italic: Win1250 "(501.008)" ExtendedRoman ROM +*Font JoannaMTCE: Win1250 "(501.009)" ExtendedRoman ROM +*Font LetterGothic-Bold: Standard "(501.010)" ExtendedRoman ROM +*Font LetterGothic-BoldSlanted: Standard "(501.010)" ExtendedRoman ROM +*Font LetterGothic-Slanted: Standard "(501.010)" ExtendedRoman ROM +*Font LetterGothic: Standard "(501.009)" ExtendedRoman ROM +*Font LetterGothicCE-Bold: Win1250 "(501.010)" ExtendedRoman ROM +*Font LetterGothicCE-BoldSlanted: Win1250 "(501.010)" ExtendedRoman ROM +*Font LetterGothicCE-Slanted: Win1250 "(501.010)" ExtendedRoman ROM +*Font LetterGothicCE: Win1250 "(501.009)" ExtendedRoman ROM +*Font LubalinGraph-Book: Standard "(501.009)" ExtendedRoman ROM +*Font LubalinGraph-BookOblique: Standard "(501.009)" ExtendedRoman ROM +*Font LubalinGraph-Demi: Standard "(501.009)" ExtendedRoman ROM +*Font LubalinGraph-DemiOblique: Standard "(501.009)" ExtendedRoman ROM +*Font LubalinGraphCE-Book: Win1250 "(501.009)" ExtendedRoman ROM +*Font LubalinGraphCE-BookOblique: Win1250 "(501.009)" ExtendedRoman ROM +*Font LubalinGraphCE-Demi: Win1250 "(501.009)" ExtendedRoman ROM +*Font LubalinGraphCE-DemiOblique: Win1250 "(501.009)" ExtendedRoman ROM +*Font Marigold: Standard "(001.000)" Standard ROM +*Font MonaLisa-Recut: Standard "(001.000)" Standard ROM +*Font Monaco: Standard "(501.012)" ExtendedRoman ROM +*Font MonacoCE: Win1250 "(501.012)" ExtendedRoman ROM +*Font NewCenturySchlbk-Bold: Standard "(501.008)" ExtendedRoman ROM +*Font NewCenturySchlbk-BoldItalic: Standard "(501.009)" ExtendedRoman ROM +*Font NewCenturySchlbk-Italic: Standard "(501.011)" ExtendedRoman ROM +*Font NewCenturySchlbk-Roman: Standard "(501.008)" ExtendedRoman ROM +*Font NewCenturySchlbkCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM +*Font NewCenturySchlbkCE-BoldItalic: Win1250 "(501.009)" ExtendedRoman ROM +*Font NewCenturySchlbkCE-Italic: Win1250 "(501.011)" ExtendedRoman ROM +*Font NewCenturySchlbkCE-Roman: Win1250 "(501.008)" ExtendedRoman ROM +*Font NewYork: Standard "(501.013)" ExtendedRoman ROM +*Font NewYorkCE: Win1250 "(501.013)" ExtendedRoman ROM +*Font Optima-Bold: Standard "(501.008)" ExtendedRoman ROM +*Font Optima-BoldItalic: Standard "(501.009)" ExtendedRoman ROM +*Font Optima-Italic: Standard "(501.010)" ExtendedRoman ROM +*Font Optima: Standard "(501.010)" ExtendedRoman ROM +*Font OptimaCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM +*Font OptimaCE-BoldItalic: Win1250 "(501.009)" ExtendedRoman ROM +*Font OptimaCE-Italic: Win1250 "(501.010)" ExtendedRoman ROM +*Font OptimaCE-Roman: Win1250 "(501.010)" ExtendedRoman ROM +*Font Oxford: Standard "(001.000)" Standard ROM +*Font Palatino-Bold: Standard "(501.008)" ExtendedRoman ROM +*Font Palatino-BoldItalic: Standard "(501.007)" ExtendedRoman ROM +*Font Palatino-Italic: Standard "(501.008)" ExtendedRoman ROM +*Font Palatino-Roman: Standard "(501.006)" ExtendedRoman ROM +*Font PalatinoCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM +*Font PalatinoCE-BoldItalic: Win1250 "(501.007)" ExtendedRoman ROM +*Font PalatinoCE-Italic: Win1250 "(501.008)" ExtendedRoman ROM +*Font PalatinoCE-Roman: Win1250 "(501.006)" ExtendedRoman ROM +*Font StempelGaramond-Bold: Standard "(501.007)" ExtendedRoman ROM +*Font StempelGaramond-BoldItalic: Standard "(501.012)" ExtendedRoman ROM +*Font StempelGaramond-Italic: Standard "(501.009)" ExtendedRoman ROM +*Font StempelGaramond-Roman: Standard "(501.011)" ExtendedRoman ROM +*Font StempelGaramondCE-Bold: Win1250 "(501.007)" ExtendedRoman ROM +*Font StempelGaramondCE-BoldItalic: Win1250 "(501.012)" ExtendedRoman ROM +*Font StempelGaramondCE-Italic: Win1250 "(501.009)" ExtendedRoman ROM +*Font StempelGaramondCE-Roman: Win1250 "(501.011)" ExtendedRoman ROM +*Font Symbol: Special "(001.008)" Special ROM +*Font Tekton: Standard "(001.001)" Standard ROM +*Font Times-Bold: Standard "(501.009)" ExtendedRoman ROM +*Font Times-BoldItalic: Standard "(501.009)" ExtendedRoman ROM +*Font Times-Italic: Standard "(501.010)" ExtendedRoman ROM +*Font Times-Roman: Standard "(501.010)" ExtendedRoman ROM +*Font TimesCE-Bold: Win1250 "(501.009)" ExtendedRoman ROM +*Font TimesCE-BoldItalic: Win1250 "(501.009)" ExtendedRoman ROM +*Font TimesCE-Italic: Win1250 "(501.010)" ExtendedRoman ROM +*Font TimesCE-Roman: Win1250 "(501.010)" ExtendedRoman ROM +*Font TimesNewRomanCE-Bold: Win1250 "(501.009)" ExtendedRoman ROM +*Font TimesNewRomanCE-BoldItalic: Win1250 "(501.011)" ExtendedRoman ROM +*Font TimesNewRomanCE-Italic: Win1250 "(501.011)" ExtendedRoman ROM +*Font TimesNewRomanCE: Win1250 "(501.010)" ExtendedRoman ROM +*Font TimesNewRomanPS-BoldItalicMT: Standard "(501.011)" ExtendedRoman ROM +*Font TimesNewRomanPS-BoldMT: Standard "(501.009)" ExtendedRoman ROM +*Font TimesNewRomanPS-ItalicMT: Standard "(501.011)" ExtendedRoman ROM +*Font TimesNewRomanPSMT: Standard "(501.010)" ExtendedRoman ROM +*Font Univers-Bold: Standard "(501.008)" ExtendedRoman ROM +*Font Univers-BoldExt: Standard "(501.010)" ExtendedRoman ROM +*Font Univers-BoldExtObl: Standard "(501.010)" ExtendedRoman ROM +*Font Univers-BoldOblique: Standard "(501.008)" ExtendedRoman ROM +*Font Univers-Condensed: Standard "(501.011)" ExtendedRoman ROM +*Font Univers-CondensedBold: Standard "(501.009)" ExtendedRoman ROM +*Font Univers-CondensedBoldOblique: Standard "(501.009)" ExtendedRoman ROM +*Font Univers-CondensedOblique: Standard "(501.011)" ExtendedRoman ROM +*Font Univers-Extended: Standard "(501.009)" ExtendedRoman ROM +*Font Univers-ExtendedObl: Standard "(501.009)" ExtendedRoman ROM +*Font Univers-Light: Standard "(501.009)" ExtendedRoman ROM +*Font Univers-LightOblique: Standard "(501.009)" ExtendedRoman ROM +*Font Univers-Oblique: Standard "(501.009)" ExtendedRoman ROM +*Font Univers: Standard "(501.009)" ExtendedRoman ROM +*Font UniversCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM +*Font UniversCE-BoldExt: Win1250 "(501.010)" ExtendedRoman ROM +*Font UniversCE-BoldExtObl: Win1250 "(501.010)" ExtendedRoman ROM +*Font UniversCE-BoldOblique: Win1250 "(501.008)" ExtendedRoman ROM +*Font UniversCE-Condensed: Win1250 "(501.011)" ExtendedRoman ROM +*Font UniversCE-CondensedBold: Win1250 "(501.009)" ExtendedRoman ROM +*Font UniversCE-CondensedBoldOblique: Win1250 "(501.009)" ExtendedRoman ROM +*Font UniversCE-CondensedOblique: Win1250 "(501.011)" ExtendedRoman ROM +*Font UniversCE-Extended: Win1250 "(501.009)" ExtendedRoman ROM +*Font UniversCE-ExtendedObl: Win1250 "(501.009)" ExtendedRoman ROM +*Font UniversCE-Light: Win1250 "(501.009)" ExtendedRoman ROM +*Font UniversCE-LightOblique: Win1250 "(501.009)" ExtendedRoman ROM +*Font UniversCE-Medium: Win1250 "(501.009)" ExtendedRoman ROM +*Font UniversCE-Oblique: Win1250 "(501.009)" ExtendedRoman ROM +*Font Wingdings-Regular: Special "(001.001)" Special ROM +*Font ZapfChancery-MediumItalic: Standard "(002.000)" ExtendedRoman ROM +*Font ZapfChanceryCE-MediumItalic: Win1250 "(002.000)" ExtendedRoman ROM +*Font ZapfDingbats: Special "(001.005S)" Special ROM +*?FontQuery: " + save + { count 1 gt + { exch dup 127 string cvs (/) print print (:) print + /Font resourcestatus {pop pop (Yes)} {(No)} ifelse = + } { exit } ifelse + } bind loop + (*) = flush + restore +" +*End + +*?FontList: " + save + (*) {cvn ==} 128 string /Font resourceforall + (*) = flush + restore +" +*End + +*% ================================= +*% ================================= + +*% ================================= +*% ================================= + + +*% =================================== +*% Printer Messages +*% =================================== +*Message: "%%[ exitserver: permanent state may be changed ]%%" +*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%" +*Message: "\FontName\ not found, using Courier" + +*% Status (format: %%[ status: ] %%) +*Status: "warming up"/warming up +*Status: "idle"/idle +*Status: "busy"/busy +*Status: "waiting"/waiting +*Status: "printing"/printing +*Status: "initializing"/initializing +*Status: "printing test page"/printing test page + +*Status: "PrinterError: cover open or no toner cartridge"/cover open or no toner cartridge +*Status: "PrinterError: cover open"/cover open +*Status: "PrinterError: needs attention"/needs attention +*Status: "PrinterError: no toner cartridge"/no toner cartridge +*Status: "PrinterError: warming up"/warming up +*Status: "PrinterError: manual feed"/manual feed +*Status: "PrinterError: out of paper"/out of paper +*Status: "PrinterError: Paper Jam"/Paper Jam +*Status: "PrinterError: paper jam"/paper jam +*Status: "PrinterError: page protect needed"/page protect needed +*Status: "PrinterError: out of memory"/out of memory +*Status: "PrinterError: output bin full"/output bin full +*Status: "PrinterError: resetting printer"/resetting printer +*Status: "PrinterError: toner is low"/toner is low +*Status: "PrinterError: off line"/off line + +*% Printer Error (format: %%[ PrinterError: ]%%) +*PrinterError: "cover open or no toner cartridge"/cover open or no toner cartridge +*PrinterError: "cover open"/cover open +*PrinterError: "needs attention"/needs attention +*PrinterError: "no toner cartridge"/no toner cartridge +*PrinterError: "warming up"/warming up +*PrinterError: "manual feed"/manual feed +*PrinterError: "out of paper"/out of paper +*PrinterError: "Paper Jam"/Paper Jam +*PrinterError: "paper jam"/paper jam +*PrinterError: "page protect needed"/page protect needed +*PrinterError: "out of memory"/out of memory +*PrinterError: "output bin full"/output bin full +*PrinterError: "resetting printer"/resetting printer +*PrinterError: "toner is low"/toner is low +*PrinterError: "off line"/off line + +*% Input Sources (format: %%[ status: ; source: ]%% ) +*Source: "BiTronics"/BiTronics +*Source: "other I/O"/other I/O +*Source: "AppleTalk"/AppleTalk +*Source: "APPLETALK"/AppleTalk +*Source: "ATALK"/AppleTalk +*Source: "LocalTalk"/LocalTalk +*Source: "Parallel"/Parallel +*Source: "EtherTalk"/EtherTalk +*Source: "NOVELL"/NOVELL +*Source: "DLC/LLC"/DLC/LLC +*Source: "ETALK"/EtherTalk +*Source: "TCP/IP"/TCP/IP + +*Password: "()" +*ExitServer: " + count 0 eq + { false } { true exch startjob } ifelse + not { + (WARNING: Cannot modify initial VM.) = + (Missing or invalid password.) = + (Please contact the author of this software.) = flush quit + } if +" +*End +*Reset: " + count 0 eq + { false } { true exch startjob } ifelse + not { + (WARNING: Cannot reset printer.) = + (Missing or invalid password.) = + (Please contact the author of this software.) = flush quit + } if + systemdict /quit get exec + (WARNING : Printer Reset Failed.) = flush +" +*End + +*% =================================== +*% QuarkXPress keywords +*% =================================== +*QRKDoNonLocalDCS: False + +*%QRKPatch sectionOption: " " + +*%QRKCustomHalftone sectionOption: " " + +*% =========================================== +*% For "hp LaserJet P3010 Series" +*% =========================================== diff --git a/configfiles/etc/cups/ppd/Virtual_PDF_Printer.ppd b/configfiles/etc/cups/ppd/Virtual_PDF_Printer.ppd new file mode 100644 index 0000000..dedee7d --- /dev/null +++ b/configfiles/etc/cups/ppd/Virtual_PDF_Printer.ppd @@ -0,0 +1,385 @@ +*PPD-Adobe: "4.3" +*% +*% "$Id: postscript.ppd,v 1.1.1.1 2000/08/24 19:23:13 goffioul Exp $" +*% +*% Sample Postscript driver PPD file for the Common UNIX Printing +*% System (CUPS). +*% +*% Michael Goffioul +*% +*% Changes to the original file by Volker Behr, Martin-Eric Racine, +*% Nickolay Kondrashov and other contributors: +*% added IEEE-1284 device id - 2008-03-24 +*% added custom page size - 2006-05-18 +*% replaced page descriptions - 2006-05-18 +*% InputSlot constraints removed - 2006-05-11 +*% maxed out imageable regions - 2006-05-11 +*% added pstitleiconv filter - 2006-05-11 +*% added ledger paper size - 2006-01-29 +*% match Adobe specifications - 2005-12-23 +*% additional paper formats - 2005-02-03 and 2005-02-07 +*% made A4 default paper size - 2005-02-03 +*% Color enabled - 2003-12-02 +*% +*FormatVersion: "4.3" +*FileVersion: "1.1" +*LanguageVersion: English +*LanguageEncoding: ISOLatin1 +*PCFileName: "CUPS-PDF.PPD" +*Manufacturer: "Generic" +*Product: "(CUPS v1.1)" +*ModelName: "Generic CUPS-PDF Printer" +*ShortNickName: "Generic CUPS-PDF Printer" +*NickName: "Generic CUPS-PDF Printer" +*1284DeviceID: "MFG:Generic;MDL:CUPS-PDF Printer;DES:Generic CUPS-PDF Printer;CLS:PRINTER;CMD:POSTSCRIPT;" +*% cupsFilter: "application/vnd.cups-postscript 0 pstitleiconv" +*PSVersion: "(2017.000) 0" +*LanguageLevel: "2" +*ColorDevice: True +*DefaultColorSpace: RGB +*FileSystem: False +*Throughput: "8" +*LandscapeOrientation: Plus90 +*TTRasterizer: Type42 + +*HWMargins: 0 0 0 0 +*VariablePaperSize: True +*MaxMediaWidth: 100000 +*MaxMediaHeight: 100000 +*NonUIOrderDependency: 100 AnySetup *CustomPageSize +*CustomPageSize True: "pop pop pop +<>setpagedevice" +*End +*ParamCustomPageSize Width: 1 points 36 100000 +*ParamCustomPageSize Height: 2 points 36 100000 +*ParamCustomPageSize Orientation: 3 int 0 3 +*ParamCustomPageSize WidthOffset: 4 points 0 0 +*ParamCustomPageSize HeightOffset: 5 points 0 0 + +*OpenGroup: General/General + +*OpenUI *PageSize/Page Size: PickOne +*OrderDependency: 100 AnySetup *PageSize +*DefaultPageSize: A4 +*PageSize 11x14/11x14: "<>setpagedevice" +*PageSize 11x17/11x17: "<>setpagedevice" +*PageSize 13x19/13x19: "<>setpagedevice" +*PageSize 16x20/16x20: "<>setpagedevice" +*PageSize 16x24/16x24: "<>setpagedevice" +*PageSize 2A/2A: "<>setpagedevice" +*PageSize 4A/4A: "<>setpagedevice" +*PageSize 8x10/8x10: "<>setpagedevice" +*PageSize 8x12/8x12: "<>setpagedevice" +*PageSize A0/A0: "<>setpagedevice" +*PageSize A1/A1: "<>setpagedevice" +*PageSize A2/A2: "<>setpagedevice" +*PageSize A3/A3: "<>setpagedevice" +*PageSize A4/A4: "<>setpagedevice" +*PageSize A5/A5: "<>setpagedevice" +*PageSize AnsiA/ANSI A: "<>setpagedevice" +*PageSize AnsiB/ANSI B: "<>setpagedevice" +*PageSize AnsiC/ANSI C: "<>setpagedevice" +*PageSize AnsiD/ANSI D: "<>setpagedevice" +*PageSize AnsiE/ANSI E: "<>setpagedevice" +*PageSize ArchA/Arch A: "<>setpagedevice" +*PageSize ArchB/Arch B: "<>setpagedevice" +*PageSize ArchC/Arch C: "<>setpagedevice" +*PageSize ArchD/Arch D: "<>setpagedevice" +*PageSize ArchE/Arch E: "<>setpagedevice" +*PageSize C0/C0: "<>setpagedevice" +*PageSize C1/C1: "<>setpagedevice" +*PageSize C2/C2: "<>setpagedevice" +*PageSize C3/C3: "<>setpagedevice" +*PageSize C4/C4: "<>setpagedevice" +*PageSize C5/C5: "<>setpagedevice" +*PageSize Env10/Envelope #10: "<>setpagedevice" +*PageSize EnvC5/Envelope C5: "<>setpagedevice" +*PageSize EnvDL/Envelope DL: "<>setpagedevice" +*PageSize EnvMonarch/Envelope Monarch: "<>setpagedevice" +*PageSize Executive/Executive: "<>setpagedevice" +*PageSize ISOB0/B0 (ISO): "<>setpagedevice" +*PageSize ISOB1/B1 (ISO): "<>setpagedevice" +*PageSize ISOB2/B2 (ISO): "<>setpagedevice" +*PageSize ISOB3/B3 (ISO): "<>setpagedevice" +*PageSize ISOB4/B4 (ISO): "<>setpagedevice" +*PageSize ISOB5/B5 (ISO): "<>setpagedevice" +*PageSize JISB0/B0 (JIS): "<>setpagedevice" +*PageSize JISB1/B1 (JIS): "<>setpagedevice" +*PageSize JISB2/B2 (JIS): "<>setpagedevice" +*PageSize JISB3/B3 (JIS): "<>setpagedevice" +*PageSize JISB4/B4 (JIS): "<>setpagedevice" +*PageSize JISB5/B5 (JIS): "<>setpagedevice" +*PageSize Ledger/Ledger: "<>setpagedevice" +*PageSize Legal/US Legal: "<>setpagedevice" +*PageSize Letter/US Letter: "<>setpagedevice" +*PageSize RA0/RA0: "<>setpagedevice" +*PageSize RA1/RA1: "<>setpagedevice" +*PageSize RA2/RA2: "<>setpagedevice" +*PageSize RA3/RA3: "<>setpagedevice" +*PageSize RA4/RA4: "<>setpagedevice" +*PageSize SRA0/SRA0: "<>setpagedevice" +*PageSize SRA1/SRA1: "<>setpagedevice" +*PageSize SRA2/SRA2: "<>setpagedevice" +*PageSize SRA3/SRA3: "<>setpagedevice" +*PageSize SRA4/SRA4: "<>setpagedevice" +*PageSize SuperA/Super A: "<>setpagedevice" +*PageSize SuperB/Super B: "<>setpagedevice" +*PageSize TabloidExtra/Tabloid Extra: "<>setpagedevice" +*PageSize Tabloid/Tabloid: "<>setpagedevice" +*CloseUI: *PageSize + +*OpenUI *PageRegion: PickOne +*OrderDependency: 100 AnySetup *PageRegion +*DefaultPageRegion: A4 +*PageRegion 11x14/11x14: "<>setpagedevice" +*PageRegion 11x17/11x17: "<>setpagedevice" +*PageRegion 13x19/13x19: "<>setpagedevice" +*PageRegion 16x20/16x20: "<>setpagedevice" +*PageRegion 16x24/16x24: "<>setpagedevice" +*PageRegion 2A/2A: "<>setpagedevice" +*PageRegion 4A/4A: "<>setpagedevice" +*PageRegion 8x10/8x10: "<>setpagedevice" +*PageRegion 8x12/8x12: "<>setpagedevice" +*PageRegion A0/A0: "<>setpagedevice" +*PageRegion A1/A1: "<>setpagedevice" +*PageRegion A2/A2: "<>setpagedevice" +*PageRegion A3/A3: "<>setpagedevice" +*PageRegion A4/A4: "<>setpagedevice" +*PageRegion A5/A5: "<>setpagedevice" +*PageRegion AnsiA/ANSI A: "<>setpagedevice" +*PageRegion AnsiB/ANSI B: "<>setpagedevice" +*PageRegion AnsiC/ANSI C: "<>setpagedevice" +*PageRegion AnsiD/ANSI D: "<>setpagedevice" +*PageRegion AnsiE/ANSI E: "<>setpagedevice" +*PageRegion ArchA/Arch A: "<>setpagedevice" +*PageRegion ArchB/Arch B: "<>setpagedevice" +*PageRegion ArchC/Arch C: "<>setpagedevice" +*PageRegion ArchD/Arch D: "<>setpagedevice" +*PageRegion ArchE/Arch E: "<>setpagedevice" +*PageRegion C0/C0: "<>setpagedevice" +*PageRegion C1/C1: "<>setpagedevice" +*PageRegion C2/C2: "<>setpagedevice" +*PageRegion C3/C3: "<>setpagedevice" +*PageRegion C4/C4: "<>setpagedevice" +*PageRegion C5/C5: "<>setpagedevice" +*PageRegion Env10/Envelope #10: "<>setpagedevice" +*PageRegion EnvC5/Envelope C5: "<>setpagedevice" +*PageRegion EnvDL/Envelope DL: "<>setpagedevice" +*PageRegion EnvMonarch/Envelope Monarch: "<>setpagedevice" +*PageRegion Executive/Executive: "<>setpagedevice" +*PageRegion ISOB0/B0 (ISO): "<>setpagedevice" +*PageRegion ISOB1/B1 (ISO): "<>setpagedevice" +*PageRegion ISOB2/B2 (ISO): "<>setpagedevice" +*PageRegion ISOB3/B3 (ISO): "<>setpagedevice" +*PageRegion ISOB4/B4 (ISO): "<>setpagedevice" +*PageRegion ISOB5/B5 (ISO): "<>setpagedevice" +*PageRegion JISB0/B0 (JIS): "<>setpagedevice" +*PageRegion JISB1/B1 (JIS): "<>setpagedevice" +*PageRegion JISB2/B2 (JIS): "<>setpagedevice" +*PageRegion JISB3/B3 (JIS): "<>setpagedevice" +*PageRegion JISB4/B4 (JIS): "<>setpagedevice" +*PageRegion JISB5/B5 (JIS): "<>setpagedevice" +*PageRegion Ledger/Ledger: "<>setpagedevice" +*PageRegion Legal/US Legal: "<>setpagedevice" +*PageRegion Letter/US Letter: "<>setpagedevice" +*PageRegion RA0/RA0: "<>setpagedevice" +*PageRegion RA1/RA1: "<>setpagedevice" +*PageRegion RA2/RA2: "<>setpagedevice" +*PageRegion RA3/RA3: "<>setpagedevice" +*PageRegion RA4/RA4: "<>setpagedevice" +*PageRegion SRA0/SRA0: "<>setpagedevice" +*PageRegion SRA1/SRA1: "<>setpagedevice" +*PageRegion SRA2/SRA2: "<>setpagedevice" +*PageRegion SRA3/SRA3: "<>setpagedevice" +*PageRegion SRA4/SRA4: "<>setpagedevice" +*PageRegion SuperA/Super A: "<>setpagedevice" +*PageRegion SuperB/Super B: "<>setpagedevice" +*PageRegion TabloidExtra/Tabloid Extra: "<>setpagedevice" +*PageRegion Tabloid/Tabloid: "<>setpagedevice" +*CloseUI: *PageRegion + +*DefaultImageableArea: A4 +*ImageableArea 11x14/11x14: "0 0 792 1008" +*ImageableArea 11x17/11x17: "0 0 792 1224" +*ImageableArea 13x19/13x19: "0 0 936 1368" +*ImageableArea 16x20/16x20: "0 0 1152 1440" +*ImageableArea 16x24/16x24: "0 0 1152 1728" +*ImageableArea 2A/2A: "0 0 3370 4768" +*ImageableArea 4A/4A: "0 0 4768 6749" +*ImageableArea 8x10/8x10: "0 0 576 720" +*ImageableArea 8x12/8x12: "0 0 576 864" +*ImageableArea A0/A0: "0 0 2384 3370" +*ImageableArea A1/A1: "0 0 1684 2384" +*ImageableArea A2/A2: "0 0 1191 1684" +*ImageableArea A3/A3: "0 0 842 1191" +*ImageableArea A4/A4: "0 0 595 842" +*ImageableArea A5/A5: "0 0 421 595" +*ImageableArea AnsiA/ANSI A: "0 0 612 792" +*ImageableArea AnsiB/ANSI B: "0 0 792 1224" +*ImageableArea AnsiC/ANSI C: "0 0 1224 1584" +*ImageableArea AnsiD/ANSI D: "0 0 1584 2448" +*ImageableArea AnsiE/ANSI E: "0 0 2448 3168" +*ImageableArea ArchA/Arch A: "0 0 648 864" +*ImageableArea ArchB/Arch B: "0 0 864 1296" +*ImageableArea ArchC/Arch C: "0 0 1296 1728" +*ImageableArea ArchD/Arch D: "0 0 1728 2592" +*ImageableArea ArchE/Arch E: "0 0 2592 3456" +*ImageableArea C0/C0: "0 0 2599 3676" +*ImageableArea C1/C1: "0 0 1836 2599" +*ImageableArea C2/C2: "0 0 1298 1836" +*ImageableArea C3/C3: "0 0 918 1298" +*ImageableArea C4/C4: "0 0 649 918" +*ImageableArea C5/C5: "0 0 459 649" +*ImageableArea Env10/Envelope #10: "0 0 297 684" +*ImageableArea EnvC5/Envelope C5: "0 0 459 649" +*ImageableArea EnvDL/Envelope DL: "0 0 312 624" +*ImageableArea EnvMonarch/Envelope Monarch: "0 0 279 540" +*ImageableArea Executive/Executive: "0 0 522 756" +*ImageableArea ISOB0/B0 (ISO): "0 0 2834 4008" +*ImageableArea ISOB1/B1 (ISO): "0 0 2004 2834" +*ImageableArea ISOB2/B2 (ISO): "0 0 1417 2004" +*ImageableArea ISOB3/B3 (ISO): "0 0 1000 1417" +*ImageableArea ISOB4/B4 (ISO): "0 0 708 1000" +*ImageableArea ISOB5/B5 (ISO): "0 0 498 708" +*ImageableArea JISB0/B0 (JIS): "0 0 2919 4127" +*ImageableArea JISB1/B1 (JIS): "0 0 2063 2919" +*ImageableArea JISB2/B2 (JIS): "0 0 1459 2063" +*ImageableArea JISB3/B3 (JIS): "0 0 1029 1459" +*ImageableArea JISB4/B4 (JIS): "0 0 727 1029" +*ImageableArea JISB5/B5 (JIS): "0 0 518 727" +*ImageableArea Ledger/Ledger: "0 0 1224 792" +*ImageableArea Legal/US Legal: "0 0 612 1008" +*ImageableArea Letter/US Letter: "0 0 612 792" +*ImageableArea RA0/RA0: "0 0 2437 3458" +*ImageableArea RA1/RA1: "0 0 1729 2437" +*ImageableArea RA2/RA2: "0 0 1218 1729" +*ImageableArea RA3/RA3: "0 0 864 1218" +*ImageableArea RA4/RA4: "0 0 609 864" +*ImageableArea SRA0/SRA0: "0 0 2551 3628" +*ImageableArea SRA1/SRA1: "0 0 1814 2551" +*ImageableArea SRA2/SRA2: "0 0 1275 1814" +*ImageableArea SRA3/SRA3: "0 0 907 1275" +*ImageableArea SRA4/SRA4: "0 0 637 907" +*ImageableArea SuperA/Super A: "0 0 644 1008" +*ImageableArea SuperB/Super B: "0 0 936 1368" +*ImageableArea TabloidExtra/Tabloid Extra: "0 0 864 1296" +*ImageableArea Tabloid/Tabloid: "0 0 792 1224" + +*DefaultPaperDimension: A4 +*PaperDimension 11x14/11x14: "792 1008" +*PaperDimension 11x17/11x17: "792 1224" +*PaperDimension 13x19/13x19: "936 1368" +*PaperDimension 16x20/16x20: "1152 1440" +*PaperDimension 16x24/16x24: "1152 1728" +*PaperDimension 2A/2A: "3370 4768" +*PaperDimension 4A/4A: "4768 6749" +*PaperDimension 8x10/8x10: "576 720" +*PaperDimension 8x12/8x12: "576 864" +*PaperDimension A0/A0: "2384 3370" +*PaperDimension A1/A1: "1684 2384" +*PaperDimension A2/A2: "1191 1684" +*PaperDimension A3/A3: "842 1191" +*PaperDimension A4/A4: "595 842" +*PaperDimension A5/A5: "421 595" +*PaperDimension AnsiA/ANSI A: "612 792" +*PaperDimension AnsiB/ANSI B: "792 1224" +*PaperDimension AnsiC/ANSI C: "1224 1584" +*PaperDimension AnsiD/ANSI D: "1584 2448" +*PaperDimension AnsiE/ANSI E: "2448 3168" +*PaperDimension ArchA/Arch A: "648 864" +*PaperDimension ArchB/Arch B: "864 1296" +*PaperDimension ArchC/Arch C: "1296 1728" +*PaperDimension ArchD/Arch D: "1728 2592" +*PaperDimension ArchE/Arch E: "2592 3456" +*PaperDimension C0/C0: "2599 3676" +*PaperDimension C1/C1: "1836 2599" +*PaperDimension C2/C2: "1298 1836" +*PaperDimension C3/C3: "918 1298" +*PaperDimension C4/C4: "649 918" +*PaperDimension C5/C5: "459 649" +*PaperDimension Env10/Envelope #10: "297 684" +*PaperDimension EnvC5/Envelope C5: "459 649" +*PaperDimension EnvDL/Envelope DL: "312 624" +*PaperDimension EnvMonarch/Envelope Monarch: "279 540" +*PaperDimension Executive/Executive: "522 756" +*PaperDimension ISOB0/B0 (ISO): "2834 4008" +*PaperDimension ISOB1/B1 (ISO): "2004 2834" +*PaperDimension ISOB2/B2 (ISO): "1417 2004" +*PaperDimension ISOB3/B3 (ISO): "1000 1417" +*PaperDimension ISOB4/B4 (ISO): "708 1000" +*PaperDimension ISOB5/B5 (ISO): "498 708" +*PaperDimension JISB0/B0 (JIS): "2919 4127" +*PaperDimension JISB1/B1 (JIS): "2063 2919" +*PaperDimension JISB2/B2 (JIS): "1459 2063" +*PaperDimension JISB3/B3 (JIS): "1029 1459" +*PaperDimension JISB4/B4 (JIS): "727 1029" +*PaperDimension JISB5/B5 (JIS): "518 727" +*PaperDimension Ledger/Ledger: "1224 792" +*PaperDimension Legal/US Legal: "612 1008" +*PaperDimension Letter/US Letter: "612 792" +*PaperDimension RA0/RA0: "2437 3458" +*PaperDimension RA1/RA1: "1729 2437" +*PaperDimension RA2/RA2: "1218 1729" +*PaperDimension RA3/RA3: "864 1218" +*PaperDimension RA4/RA4: "609 864" +*PaperDimension SRA0/SRA0: "2551 3628" +*PaperDimension SRA1/SRA1: "1814 2551" +*PaperDimension SRA2/SRA2: "1275 1814" +*PaperDimension SRA3/SRA3: "907 1275" +*PaperDimension SRA4/SRA4: "637 907" +*PaperDimension SuperA/Super A: "644 1008" +*PaperDimension SuperB/Super B: "936 1368" +*PaperDimension TabloidExtra/Tabloid Extra: "864 1296" +*PaperDimension Tabloid/Tabloid: "792 1224" + +*OpenUI *Resolution/Output Resolution: PickOne +*OrderDependency: 100 AnySetup *Resolution +*DefaultResolution: 600dpi +*Resolution 150dpi/150 DPI: "<>setpagedevice" +*Resolution 300dpi/300 DPI: "<>setpagedevice" +*Resolution 600dpi/600 DPI: "<>setpagedevice" +*Resolution 1200dpi/1200 DPI: "<>setpagedevice" +*Resolution 2400dpi/2400 DPI: "<>setpagedevice" +*CloseUI: *Resolution + +*CloseGroup: General + +*DefaultFont: Courier +*Font AvantGarde-Book: Standard "(001.006S)" Standard ROM +*Font AvantGarde-BookOblique: Standard "(001.006S)" Standard ROM +*Font AvantGarde-Demi: Standard "(001.007S)" Standard ROM +*Font AvantGarde-DemiOblique: Standard "(001.007S)" Standard ROM +*Font Bookman-Demi: Standard "(001.004S)" Standard ROM +*Font Bookman-DemiItalic: Standard "(001.004S)" Standard ROM +*Font Bookman-Light: Standard "(001.004S)" Standard ROM +*Font Bookman-LightItalic: Standard "(001.004S)" Standard ROM +*Font Courier: Standard "(002.004S)" Standard ROM +*Font Courier-Bold: Standard "(002.004S)" Standard ROM +*Font Courier-BoldOblique: Standard "(002.004S)" Standard ROM +*Font Courier-Oblique: Standard "(002.004S)" Standard ROM +*Font Helvetica: Standard "(001.006S)" Standard ROM +*Font Helvetica-Bold: Standard "(001.007S)" Standard ROM +*Font Helvetica-BoldOblique: Standard "(001.007S)" Standard ROM +*Font Helvetica-Narrow: Standard "(001.006S)" Standard ROM +*Font Helvetica-Narrow-Bold: Standard "(001.007S)" Standard ROM +*Font Helvetica-Narrow-BoldOblique: Standard "(001.007S)" Standard ROM +*Font Helvetica-Narrow-Oblique: Standard "(001.006S)" Standard ROM +*Font Helvetica-Oblique: Standard "(001.006S)" Standard ROM +*Font NewCenturySchlbk-Bold: Standard "(001.009S)" Standard ROM +*Font NewCenturySchlbk-BoldItalic: Standard "(001.007S)" Standard ROM +*Font NewCenturySchlbk-Italic: Standard "(001.006S)" Standard ROM +*Font NewCenturySchlbk-Roman: Standard "(001.007S)" Standard ROM +*Font Palatino-Bold: Standard "(001.005S)" Standard ROM +*Font Palatino-BoldItalic: Standard "(001.005S)" Standard ROM +*Font Palatino-Italic: Standard "(001.005S)" Standard ROM +*Font Palatino-Roman: Standard "(001.005S)" Standard ROM +*Font Symbol: Special "(001.007S)" Special ROM +*Font Times-Bold: Standard "(001.007S)" Standard ROM +*Font Times-BoldItalic: Standard "(001.009S)" Standard ROM +*Font Times-Italic: Standard "(001.007S)" Standard ROM +*Font Times-Roman: Standard "(001.007S)" Standard ROM +*Font ZapfChancery-MediumItalic: Standard "(001.007S)" Standard ROM +*Font ZapfDingbats: Special "(001.004S)" Standard ROM +*% +*% End of "$Id: postscript.ppd,v 1.1.1.1 2000/08/24 19:23:13 goffioul Exp $". +*% diff --git a/configfiles/etc/cups/ppd/salle231.ppd b/configfiles/etc/cups/ppd/salle231.ppd new file mode 100644 index 0000000..5cf5aef --- /dev/null +++ b/configfiles/etc/cups/ppd/salle231.ppd @@ -0,0 +1,2256 @@ +*PPD-Adobe: "4.3" +*% ================================= +*% Copyright 1992-2015 HP Company +*% Permission is hereby granted, free of charge, to any person obtaining +*% a copy of this software and associated documentation files (the +*% "Software"), to deal in the Software without restriction, including +*% without limitation the rights to use, copy, modify, merge, publish, +*% distribute, sublicense, and/or sell copies of the Software, and to +*% permit persons to whom the Software is furnished to do so, subject to +*% the following conditions: +*% +*% The above copyright notice and this permission notice shall be +*% included in all copies or substantial portions of the Software. +*% +*% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +*% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +*% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +*% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +*% LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +*% OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +*% WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +*% +*% [this is the MIT open source license -- please see www.opensource.org] +*% +*%%%% Created by the CUPS PPD Compiler CUPS v1.7.2. +*% Copyright (c) 2015 HP Development Company, L.P. +*FormatVersion: "4.3" +*FileVersion: "19.12" +*LanguageVersion: English +*LanguageEncoding: ISOLatin1 +*PCFileName: "HPP00052.PPD" +*Product: "(HP Color LaserJet Pro M252n)" +*Product: "(HP Color LaserJet Pro M252c1)" +*Product: "(HP Color LaserJet Pro M252c2)" +*Product: "(HP Color LaserJet Pro M252c3)" +*Product: "(HP Color LaserJet Pro M252c4)" +*Product: "(HP Color LaserJet Pro M252c5)" +*Product: "(HP Color LaserJet Pro M252dw)" +*Product: "(HP Color LaserJet Pro M252c6)" +*Product: "(HP Color LaserJet Pro M252c7)" +*Product: "(HP Color LaserJet Pro M252c8)" +*Product: "(HP Color LaserJet Pro M252c9)" +*Product: "(HP Color LaserJet Pro M252c10)" +*Manufacturer: "HP" +*ModelName: "HP Color LaserJet Pro M252" +*ShortNickName: "HP Color LaserJet Pro M252" +*1284DeviceID: "MFG:Hewlett-Packard;MDL:hp color laserjet pro m252;" +*NickName: "HP Color LaserJet Pro M252 Postscript (recommended)" +*PSVersion: "(3010.107) 3" +*LanguageLevel: "3" +*ColorDevice: True +*DefaultColorSpace: RGB +*FileSystem: False +*Throughput: "19" +*LandscapeOrientation: Plus90 +*TTRasterizer: Type42 +*% Driver-defined attributes... +*Protocols: TBCP +*cupsPJLCharset: "UTF-8" +*HPAccountingInfo: "4" +*HPBOD: "1" +*cupsUIResolver DuplexerVsDuplex: "*Duplex None" +*cupsUIConstraints DuplexerVsDuplex: "*HPOption_Duplexer False *Duplex" +*cupsCommands: "ReportLevels" +*cupsSNMPSupplies: False +*cupsIPPSupplies: False +*cupsMarkerName cyan/Cyan: "" +*cupsMarkerName magenta/Magenta: "" +*cupsMarkerName yellow/Yellow: "" +*cupsMarkerName black/Black: "" +*RequiresPageRegion All: True +*cupsUIResolver PageSizeVsDuplex: "*PageSize Letter *Duplex None" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize 4x6" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize 5x8" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize A6" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize B6" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize Env4x6" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize Postcard" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize DoublePostcardRotated" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize Env10" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize EnvMonarch" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize EnvISOB5" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize EnvC5" +*cupsUIConstraints PageSizeVsDuplex: " *Duplex *PageSize EnvDL" +*cupsMediaQualifier2: "Duplex" +*cupsMinSize .DuplexTumble.False: "419.00 595.00" +*cupsMinSize .DuplexNoTumble.False: "419.00 595.00" +*DefaultResolution: 600dpi +*cupsUIResolver MediaTypeVsDuplex: "*Duplex None *MediaType Unspecified" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType HPCoverMatte200" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType HPMattePhoto200" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType CardGlossy176220" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType ColorLaserTransparency" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType Labels" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType Envelope" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType HeavyEnvelope" +*cupsUIConstraints MediaTypeVsDuplex: "*Duplex *MediaType OpaqueFilm" +*FreeVM: "62914560" +*cupsVersion: 1.5 +*cupsModelNumber: 0 +*cupsManualCopies: True +*cupsLanguages: "en da de es fi fr it ja ko no nl pt ru sv zh_CN zh_TW" +*cupsFilter: "application/vnd.cups-postscript 0 hpps" +*OpenUI *PageSize/Media Size: PickOne +*OrderDependency: 10 AnySetup *PageSize +*DefaultPageSize: A4 +*PageSize Letter/US Letter: "<>setpagedevice" +*PageSize Legal/US Legal: "<>setpagedevice" +*PageSize Executive/Executive: "<>setpagedevice" +*PageSize FanFoldGermanLegal/Oficio 8.5x13: "<> setpagedevice" +*PageSize 4x6/4x6: "<>setpagedevice" +*PageSize 5x8/5x8: "<>setpagedevice" +*PageSize A4/A4: "<>setpagedevice" +*PageSize A5/A5: "<>setpagedevice" +*PageSize A6/A6: "<>setpagedevice" +*PageSize B5/JIS B5: "<>setpagedevice" +*PageSize B6/JIS B6: "<>setpagedevice" +*PageSize Env4x6/10x15 cm: "<> setpagedevice" +*PageSize Oficio/Oficio 216x340 mm: "<>setpagedevice" +*PageSize 195x270mm/16K 195x270 mm: "<>setpagedevice" +*PageSize 184x260mm/16K 184x260 mm: "<>setpagedevice" +*PageSize 7.75x10.75/16K 197x273 mm: "<>setpagedevice" +*PageSize Postcard/Postcard: "<>setpagedevice" +*PageSize DoublePostcardRotated/Postcard Double Long Edge: "<>setpagedevice" +*PageSize Env10/Envelope #10: "<>setpagedevice" +*PageSize EnvMonarch/Envelope Monarch: "<>setpagedevice" +*PageSize EnvISOB5/Envelope B5: "<>setpagedevice" +*PageSize EnvC5/Envelope C5: "<>setpagedevice" +*PageSize EnvDL/Envelope DL: "<>setpagedevice" +*CloseUI: *PageSize +*OpenUI *PageRegion/Media Size: PickOne +*OrderDependency: 10 AnySetup *PageRegion +*DefaultPageRegion: A4 +*PageRegion Letter/US Letter: "<>setpagedevice" +*PageRegion Legal/US Legal: "<>setpagedevice" +*PageRegion Executive/Executive: "<>setpagedevice" +*PageRegion FanFoldGermanLegal/Oficio 8.5x13: "<> setpagedevice" +*PageRegion 4x6/4x6: "<>setpagedevice" +*PageRegion 5x8/5x8: "<>setpagedevice" +*PageRegion A4/A4: "<>setpagedevice" +*PageRegion A5/A5: "<>setpagedevice" +*PageRegion A6/A6: "<>setpagedevice" +*PageRegion B5/JIS B5: "<>setpagedevice" +*PageRegion B6/JIS B6: "<>setpagedevice" +*PageRegion Env4x6/10x15 cm: "<> setpagedevice" +*PageRegion Oficio/Oficio 216x340 mm: "<>setpagedevice" +*PageRegion 195x270mm/16K 195x270 mm: "<>setpagedevice" +*PageRegion 184x260mm/16K 184x260 mm: "<>setpagedevice" +*PageRegion 7.75x10.75/16K 197x273 mm: "<>setpagedevice" +*PageRegion Postcard/Postcard: "<>setpagedevice" +*PageRegion DoublePostcardRotated/Postcard Double Long Edge: "<>setpagedevice" +*PageRegion Env10/Envelope #10: "<>setpagedevice" +*PageRegion EnvMonarch/Envelope Monarch: "<>setpagedevice" +*PageRegion EnvISOB5/Envelope B5: "<>setpagedevice" +*PageRegion EnvC5/Envelope C5: "<>setpagedevice" +*PageRegion EnvDL/Envelope DL: "<>setpagedevice" +*CloseUI: *PageRegion +*DefaultImageableArea: Letter +*ImageableArea Letter/US Letter: "12 12 600 780" +*ImageableArea Legal/US Legal: "12 12 600 996" +*ImageableArea Executive/Executive: "12 12 510 744" +*ImageableArea FanFoldGermanLegal/Oficio 8.5x13: "12 12 600 924" +*ImageableArea 4x6/4x6: "12 12 276 420" +*ImageableArea 5x8/5x8: "12 12 348 564" +*ImageableArea A4/A4: "12 12 583 830" +*ImageableArea A5/A5: "12 12 408 583" +*ImageableArea A6/A6: "12 12 285 408" +*ImageableArea B5/JIS B5: "12 12 504 717" +*ImageableArea B6/JIS B6: "12 12 351 504" +*ImageableArea Env4x6/10x15 cm: "12 12 276 419" +*ImageableArea Oficio/Oficio 216x340 mm: "12 12 600 952" +*ImageableArea 195x270mm/16K 195x270 mm: "12 12 541 753" +*ImageableArea 184x260mm/16K 184x260 mm: "12 12 510 725" +*ImageableArea 7.75x10.75/16K 197x273 mm: "12 12 546 762" +*ImageableArea Postcard/Postcard: "12 12 271 408" +*ImageableArea DoublePostcardRotated/Postcard Double Long Edge: "12 12 408 555" +*ImageableArea Env10/Envelope #10: "12 12 285 672" +*ImageableArea EnvMonarch/Envelope Monarch: "12 12 267 528" +*ImageableArea EnvISOB5/Envelope B5: "12 12 487 697" +*ImageableArea EnvC5/Envelope C5: "12 12 447 637" +*ImageableArea EnvDL/Envelope DL: "12 12 300 612" +*DefaultPaperDimension: Letter +*PaperDimension Letter/US Letter: "612 792" +*PaperDimension Legal/US Legal: "612 1008" +*PaperDimension Executive/Executive: "522 756" +*PaperDimension FanFoldGermanLegal/Oficio 8.5x13: "612 936" +*PaperDimension 4x6/4x6: "288 432" +*PaperDimension 5x8/5x8: "360 576" +*PaperDimension A4/A4: "595 842" +*PaperDimension A5/A5: "420 595" +*PaperDimension A6/A6: "297 420" +*PaperDimension B5/JIS B5: "516 729" +*PaperDimension B6/JIS B6: "363 516" +*PaperDimension Env4x6/10x15 cm: "288 431" +*PaperDimension Oficio/Oficio 216x340 mm: "612 964" +*PaperDimension 195x270mm/16K 195x270 mm: "553 765" +*PaperDimension 184x260mm/16K 184x260 mm: "522 737" +*PaperDimension 7.75x10.75/16K 197x273 mm: "558 774" +*PaperDimension Postcard/Postcard: "283 420" +*PaperDimension DoublePostcardRotated/Postcard Double Long Edge: "420 567" +*PaperDimension Env10/Envelope #10: "297 684" +*PaperDimension EnvMonarch/Envelope Monarch: "279 540" +*PaperDimension EnvISOB5/Envelope B5: "499 709" +*PaperDimension EnvC5/Envelope C5: "459 649" +*PaperDimension EnvDL/Envelope DL: "312 624" +*MaxMediaWidth: "612" +*MaxMediaHeight: "1008" +*HWMargins: 12 12 12 12 +*CustomPageSize True: "pop pop pop <>setpagedevice" +*ParamCustomPageSize Width: 1 points 216 612 +*ParamCustomPageSize Height: 2 points 360 1008 +*ParamCustomPageSize WidthOffset: 3 points 0 0 +*ParamCustomPageSize HeightOffset: 4 points 0 0 +*ParamCustomPageSize Orientation: 5 int 0 0 +*OpenUI *Duplex/Two-Sided: PickOne +*OrderDependency: 50 AnySetup *Duplex +*DefaultDuplex: None +*Duplex None/Off: "<> setpagedevice" +*Duplex DuplexNoTumble/Long-Edge Binding: "<> setpagedevice" +*Duplex DuplexTumble/Short-Edge Binding: "<> setpagedevice" +*CloseUI: *Duplex +*OpenUI *InputSlot/Paper Feed: PickOne +*OrderDependency: 40 AnySetup *InputSlot +*DefaultInputSlot: Auto +*InputSlot Auto/Automatic: " + <> setpagedevice" +*End +*da.InputSlot Auto/Automatisk: "" +*de.InputSlot Auto/Automatisch: "" +*es.InputSlot Auto/Automático: "" +*fi.InputSlot Auto/Automaattinen: "" +*fr.InputSlot Auto/Automatique: "" +*it.InputSlot Auto/Automatico: "" +*ja.InputSlot Auto/自動: "" +*ko.InputSlot Auto/자동: "" +*nl.InputSlot Auto/Automatisch: "" +*no.InputSlot Auto/Automatisk: "" +*pt.InputSlot Auto/Automático: "" +*ru.InputSlot Auto/Автоматически: "" +*sv.InputSlot Auto/Automatiskt: "" +*zh_CN.InputSlot Auto/自动: "" +*zh_TW.InputSlot Auto/自動: "" + +*InputSlot Tray1/Tray 1: "<> setpagedevice" +*InputSlot Tray2/Tray 2: "<> setpagedevice" +*InputSlot ManualFeed/Manual Feed: "<> setpagedevice" +*CloseUI: *InputSlot +*OpenGroup: InstallableOptions/Installable Options +*OpenUI *HPOption_Duplexer/Duplex Unit: Boolean +*OrderDependency: 0 AnySetup *HPOption_Duplexer +*DefaultHPOption_Duplexer: False +*HPOption_Duplexer True/On: "" +*HPOption_Duplexer False/Off: "" +*CloseUI: *HPOption_Duplexer +*CloseGroup: InstallableOptions +*OpenGroup: HPColorOptionsPanel/Color +*OpenUI *HPPJLColorAsGray/Print Color as Gray: PickOne +*OrderDependency: 20 AnySetup *HPPJLColorAsGray +*DefaultHPPJLColorAsGray: no +*HPPJLColorAsGray yes/On: " " +*HPPJLColorAsGray no/Off: " " +*CloseUI: *HPPJLColorAsGray +*OpenUI *HPRGBEmulation/RGB Color: PickOne +*OrderDependency: 57 AnySetup *HPRGBEmulation +*DefaultHPRGBEmulation: DefaultSRGB +*HPRGBEmulation DefaultSRGB/Default (sRGB): " + globaldict /ColorSmartColorMatching known { + MatchScreen ColorSmartImageAdjustment + } if + " +*End +*HPRGBEmulation PhotoSRGB/Photo (sRGB): " + globaldict /ColorSmartColorMatching known { + PhotoQuality ColorSmartImageAdjustment + } if + " +*End +*HPRGBEmulation Adobe/Photo (Adobe RGB 1998): " + globaldict /ColorSmartColorMatching known { + AdobeRGB ColorSmartImageAdjustment + } if + " +*End +*HPRGBEmulation VividSRGB/Vivid (sRGB): " + globaldict /ColorSmartColorMatching known { + Vivid ColorSmartImageAdjustment + } if + " +*End +*HPRGBEmulation HPRGBEmulationNone/None: " + globaldict /ColorSmartColorMatching known { + NoAdj ColorSmartImageAdjustment + } if + " +*End +*CloseUI: *HPRGBEmulation +*OpenUI *HPEdgeControl/Edge Control: PickOne +*OrderDependency: 57 AnySetup *HPEdgeControl +*DefaultHPEdgeControl: Normal +*HPEdgeControl HPEdgeControlOff/Off: " + globaldict /HPTextAdaptiveHalftoning known { + false HPTextAdaptiveHalftoning + false HPGraphicsAdaptiveHalftoning + false HPImageAdaptiveHalftoning + } if + globaldict /HPColorTrapping known { + Off HPColorTrapping + } if + " +*End +*HPEdgeControl Light/Light: " + globaldict /HPTextAdaptiveHalftoning known { + true HPTextAdaptiveHalftoning + true HPGraphicsAdaptiveHalftoning + true HPImageAdaptiveHalftoning + } if + globaldict /HPColorTrapping known { + Light HPColorTrapping + } if + " +*End +*HPEdgeControl Normal/Normal: " + globaldict /HPTextAdaptiveHalftoning known { + true HPTextAdaptiveHalftoning + true HPGraphicsAdaptiveHalftoning + true HPImageAdaptiveHalftoning + } if + globaldict /HPColorTrapping known { + Normal HPColorTrapping + } if + " +*End +*HPEdgeControl Max/Maximum: " + globaldict /HPTextAdaptiveHalftoning known { + true HPTextAdaptiveHalftoning + true HPGraphicsAdaptiveHalftoning + true HPImageAdaptiveHalftoning + } if + globaldict /HPColorTrapping known { + Max HPColorTrapping + } if + " +*End +*CloseUI: *HPEdgeControl +*OpenUI *HPGeneralHalftone/Halftone: PickOne +*OrderDependency: 57 AnySetup *HPGeneralHalftone +*DefaultHPGeneralHalftone: Smooth +*HPGeneralHalftone Smooth/Smooth: " + globaldict /ColorSmartColorMatching known { + Smooth ColorSmartGraphicsHalftone + Smooth ColorSmartImageHalftone + Smooth ColorSmartTextHalftone + } if + " +*End +*HPGeneralHalftone Detail/Detail: " + globaldict /ColorSmartColorMatching known { + Detail ColorSmartGraphicsHalftone + Detail ColorSmartImageHalftone + Detail ColorSmartTextHalftone + } if + " +*End +*CloseUI: *HPGeneralHalftone +*OpenUI *HPTextNeutralGrays/Text Neutral Grays: PickOne +*OrderDependency: 57 AnySetup *HPTextNeutralGrays +*DefaultHPTextNeutralGrays: Black +*HPTextNeutralGrays Black/Black Only: " + globaldict /HPTextNeutralAxis known { + TonerBlack HPTextNeutralAxis + } if + " +*End +*HPTextNeutralGrays ProcessBlack/4-Color: " + globaldict /HPTextNeutralAxis known { + ProcBlack HPTextNeutralAxis + } if + " +*End +*CloseUI: *HPTextNeutralGrays +*OpenUI *HPGraphicsNeutralGrays/Graphics Neutral Grays: PickOne +*OrderDependency: 57 AnySetup *HPGraphicsNeutralGrays +*DefaultHPGraphicsNeutralGrays: Black +*HPGraphicsNeutralGrays Black/Black Only: " + globaldict /HPGraphicsNeutralAxis known { + TonerBlack HPGraphicsNeutralAxis + } if + " +*End +*HPGraphicsNeutralGrays ProcessBlack/4-Color: " + globaldict /HPGraphicsNeutralAxis known { + ProcBlack HPGraphicsNeutralAxis + } if + " +*End +*CloseUI: *HPGraphicsNeutralGrays +*OpenUI *HPPhotoNeutralGrays/Photo Neutral Grays: PickOne +*OrderDependency: 57 AnySetup *HPPhotoNeutralGrays +*DefaultHPPhotoNeutralGrays: ProcessBlack +*HPPhotoNeutralGrays Black/Black Only: " + globaldict /HPImageNeutralAxis known { + TonerBlack HPImageNeutralAxis + } if + " +*End +*HPPhotoNeutralGrays ProcessBlack/4-Color: " + globaldict /HPImageNeutralAxis known { + ProcBlack HPImageNeutralAxis + } if + " +*End +*CloseUI: *HPPhotoNeutralGrays +*CloseGroup: HPColorOptionsPanel +*OpenGroup: HPPaperQualityPanel/Paper/Quality +*OpenUI *HPPJLEconoMode/EconoMode: Boolean +*OrderDependency: 20 AnySetup *HPPJLEconoMode +*DefaultHPPJLEconoMode: False +*HPPJLEconoMode True/On: " " +*HPPJLEconoMode False/Off: " " +*CloseUI: *HPPJLEconoMode +*OpenUI *MediaType/Media Type: PickOne +*OrderDependency: 20 AnySetup *MediaType +*DefaultMediaType: Unspecified +*MediaType Unspecified/Unspecified: "<> setpagedevice" +*MediaType Plain/Plain: "<> setpagedevice" +*MediaType HPEcoSMARTLite/HP EcoSMART Lite: "<> setpagedevice" +*MediaType HPLaserJet90/HP LaserJet 90g: "<> setpagedevice" +*MediaType HPColorLaserMatte105/HP Color Laser Matte 105g: "<> setpagedevice" +*MediaType HPPremiumChoiceMatte120/HP Premium Choice Matte 120g: "<> setpagedevice" +*MediaType HPBrochureMatte150/HP Brochure Matte 150g: "<> setpagedevice" +*MediaType HPCoverMatte200/HP Cover Matte 200g: "<> setpagedevice" +*MediaType HPMattePhoto200/HP Matte Photo 200g: "<> setpagedevice" +*MediaType HPPremiumPresentationGlossy120/HP Premium Presentation Glossy 120g: "<> setpagedevice" +*MediaType HPBrochureGlossy150/HP Brochure Glossy 150g: "<> setpagedevice" +*MediaType HPTrifoldBrochureGlossy150/HP Tri-fold Brochure Glossy 150g: "<> setpagedevice" +*MediaType HPBrochureGlossy200/HP Brochure Glossy 200g: "<> setpagedevice" +*MediaType Light6074/Light 60-74g: "<> setpagedevice" +*MediaType Intermediate8595/Intermediate 85-95g: "<> setpagedevice" +*MediaType MidWeight96110/Mid-Weight 96-110g: "<> setpagedevice" +*MediaType Heavy111130/Heavy 111-130g: "<> setpagedevice" +*MediaType ExtraHeavy131175/Extra Heavy 131-175g: "<> setpagedevice" +*MediaType HeavyGlossy111130/Heavy Glossy 111-130g: "<> setpagedevice" +*MediaType ExtraHeavyGlossy131175/Extra Heavy Glossy 131-175g: "<> setpagedevice" +*MediaType CardGlossy176220/Card Glossy 176-220g: "<> setpagedevice" +*MediaType ColorLaserTransparency/Color Laser Transparency: "<> setpagedevice" +*MediaType Labels/Labels: "<> setpagedevice" +*MediaType Letterhead/Letterhead: "<> setpagedevice" +*MediaType Envelope/Envelope: "<> setpagedevice" +*MediaType HeavyEnvelope/Heavy Envelope: "<> setpagedevice" +*MediaType Preprinted/Preprinted: "<> setpagedevice" +*MediaType Prepunched/Prepunched: "<> setpagedevice" +*MediaType Colored/Colored: "<> setpagedevice" +*MediaType Bond/Bond: "<> setpagedevice" +*MediaType Recycled/Recycled: "<> setpagedevice" +*MediaType Rough/Rough: "<> setpagedevice" +*MediaType HeavyRough/Heavy Rough: "<> setpagedevice" +*MediaType OpaqueFilm/Opaque Film: "<> setpagedevice" +*CloseUI: *MediaType +*CloseGroup: HPPaperQualityPanel +*da.Translation Manufacturer/HP: "" +*da.Translation ModelName/HP Color LaserJet Pro M252: "" +*da.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*da.Translation NickName/HP Color LaserJet Pro M252: "" +*da.Translation PageSize/Mediestørrelse: "" +*da.PageSize Letter/US Letter: "" +*da.PageSize Legal/US Legal: "" +*da.PageSize Executive/Executive: "" +*da.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*da.PageSize 4x6/4x6: "" +*da.PageSize 5x8/5x8: "" +*da.PageSize A4/A4: "" +*da.PageSize A5/A5: "" +*da.PageSize A6/A6: "" +*da.PageSize B5/JIS B5: "" +*da.PageSize B6/JIS B6: "" +*da.PageSize Env4x6/10x15 cm: "" +*da.PageSize Oficio/Oficio 216x340 mm: "" +*da.PageSize 195x270mm/16K 195x270 mm: "" +*da.PageSize 184x260mm/16K 184x260 mm: "" +*da.PageSize 7.75x10.75/16K 197x273 mm: "" +*da.PageSize Postcard/Postcard: "" +*da.PageSize DoublePostcardRotated/Postkort, dobbelt - lang kant: "" +*da.PageSize Env10/Konv Comm10: "" +*da.PageSize EnvMonarch/Konv Monarch: "" +*da.PageSize EnvISOB5/Konv ISO B5: "" +*da.PageSize EnvC5/Konv C5: "" +*da.PageSize EnvDL/Konv DL: "" +*da.Translation Duplex/Dupleks: "" +*da.Duplex None/Fra: "" +*da.Duplex DuplexNoTumble/Indbinding på den lange led: "" +*da.Duplex DuplexTumble/Indbinding på den korte led: "" +*da.Translation InputSlot/Papirforsyning: "" +*da.InputSlot Tray1/Bakke 1: "" +*da.InputSlot Tray2/Bakke 2: "" +*da.InputSlot ManualFeed/Manuel indføring: "" +*da.Translation InstallableOptions/Installable Options: "" +*da.Translation HPOption_Duplexer/Dupleksudskrivningsudstyr: "" +*da.HPOption_Duplexer True/Til: "" +*da.HPOption_Duplexer False/Fra: "" +*da.Translation HPColorOptionsPanel/Farve: "" +*da.Translation HPPJLColorAsGray/Udskriv farve som grå: "" +*da.HPPJLColorAsGray yes/Til: "" +*da.HPPJLColorAsGray no/Fra: "" +*da.Translation HPRGBEmulation/RGB-farve: "" +*da.HPRGBEmulation DefaultSRGB/Standard (sRGB): "" +*da.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*da.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*da.HPRGBEmulation VividSRGB/Livlig (sRGB): "" +*da.HPRGBEmulation HPRGBEmulationNone/Ingen: "" +*da.Translation HPEdgeControl/Kantstyring: "" +*da.HPEdgeControl HPEdgeControlOff/Fra: "" +*da.HPEdgeControl Light/Lys: "" +*da.HPEdgeControl Normal/Normal: "" +*da.HPEdgeControl Max/Maksimum: "" +*da.Translation HPGeneralHalftone/Halvtone: "" +*da.HPGeneralHalftone Smooth/Jævn: "" +*da.HPGeneralHalftone Detail/Detaljer: "" +*da.Translation HPTextNeutralGrays/Tekst i neutral grå: "" +*da.HPTextNeutralGrays Black/Kun sort: "" +*da.HPTextNeutralGrays ProcessBlack/4-farve: "" +*da.Translation HPGraphicsNeutralGrays/Grafik i neutral grå: "" +*da.HPGraphicsNeutralGrays Black/Kun sort: "" +*da.HPGraphicsNeutralGrays ProcessBlack/4-farve: "" +*da.Translation HPPhotoNeutralGrays/Fotografier i neutral grå: "" +*da.HPPhotoNeutralGrays Black/Kun sort: "" +*da.HPPhotoNeutralGrays ProcessBlack/4-farve: "" +*da.Translation HPPaperQualityPanel/Paper/Quality: "" +*da.Translation HPPJLEconoMode/EconoMode: "" +*da.HPPJLEconoMode True/Til: "" +*da.HPPJLEconoMode False/Fra: "" +*da.Translation MediaType/Medietype: "" +*da.MediaType Unspecified/Uspecificeret: "" +*da.MediaType Plain/Almindeligt: "" +*da.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*da.MediaType HPLaserJet90/HP LaserJet 90g: "" +*da.MediaType HPColorLaserMatte105/HP Color Laser, mat 105g: "" +*da.MediaType HPPremiumChoiceMatte120/HP Premium Choice, mat 120g: "" +*da.MediaType HPBrochureMatte150/HP brochurepapir, mat 150g: "" +*da.MediaType HPCoverMatte200/HP Omslag, mat 200g: "" +*da.MediaType HPMattePhoto200/HP Foto, mat 200g: "" +*da.MediaType HPPremiumPresentationGlossy120/HP Premium-præsentationspapir, Blankt 120g: "" +*da.MediaType HPBrochureGlossy150/HP brochurepapir, Blankt 150g: "" +*da.MediaType HPTrifoldBrochureGlossy150/HP brochurepapir foldet tre gange, Blankt, 150g: "" +*da.MediaType HPBrochureGlossy200/HP brochurepapir, Blankt 200g: "" +*da.MediaType Light6074/Let 60-74g: "" +*da.MediaType Intermediate8595/Mellem 85-95g: "" +*da.MediaType MidWeight96110/Mellemkraftigt 96-110g: "" +*da.MediaType Heavy111130/Kraftigt 111-130g: "" +*da.MediaType ExtraHeavy131175/Ekstra kraftigt 131-175g: "" +*da.MediaType HeavyGlossy111130/Kraftigt blankt 111-130g: "" +*da.MediaType ExtraHeavyGlossy131175/Ekstra tykt og blankt 131-175g: "" +*da.MediaType CardGlossy176220/Kort, blankt 176-220g: "" +*da.MediaType ColorLaserTransparency/Color Laser-transparent: "" +*da.MediaType Labels/Etiketter: "" +*da.MediaType Letterhead/Brevpapir: "" +*da.MediaType Envelope/Konvolut: "" +*da.MediaType HeavyEnvelope/Kraftig konvolut: "" +*da.MediaType Preprinted/Fortrykt: "" +*da.MediaType Prepunched/Hullet: "" +*da.MediaType Colored/Farvet: "" +*da.MediaType Bond/Bankpost: "" +*da.MediaType Recycled/Genbrug: "" +*da.MediaType Rough/Groft: "" +*da.MediaType HeavyRough/Kraftigt, groft: "" +*da.MediaType OpaqueFilm/Uigennemskinnelig film: "" +*da.APPrinterPreset ChartsAndGraphs/Diagrammer og grafik: "" +*da.cupsICCProfile RGB../sRGB Matching Profile: "" +*da.cupsICCProfile CMYK../CMYK Matching Profile: "" +*da.cupsICCProfile Gray../Gray Matching Profile: "" +*da.cupsMarkerName cyan/Cyan: "" +*da.cupsMarkerName magenta/Magenta: "" +*da.cupsMarkerName yellow/Gul: "" +*da.cupsMarkerName black/Sort: "" +*de.Translation Manufacturer/HP: "" +*de.Translation ModelName/HP Color LaserJet Pro M252: "" +*de.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*de.Translation NickName/HP Color LaserJet Pro M252: "" +*de.Translation PageSize/Mediengröße: "" +*de.PageSize Letter/US Letter: "" +*de.PageSize Legal/US Legal: "" +*de.PageSize Executive/Executive: "" +*de.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*de.PageSize 4x6/4x6: "" +*de.PageSize 5x8/5x8: "" +*de.PageSize A4/A4: "" +*de.PageSize A5/A5: "" +*de.PageSize A6/A6: "" +*de.PageSize B5/JIS B5: "" +*de.PageSize B6/JIS B6: "" +*de.PageSize Env4x6/10x15 cm: "" +*de.PageSize Oficio/Oficio 216x340 mm: "" +*de.PageSize 195x270mm/16K 195x270 mm: "" +*de.PageSize 184x260mm/16K 184x260 mm: "" +*de.PageSize 7.75x10.75/16K 197x273 mm: "" +*de.PageSize Postcard/Postcard: "" +*de.PageSize DoublePostcardRotated/Postkarte - Doppelt - breite Seite: "" +*de.PageSize Env10/Umschlag Comm10: "" +*de.PageSize EnvMonarch/Umschlag Monarch: "" +*de.PageSize EnvISOB5/Umschlag ISO B5: "" +*de.PageSize EnvC5/Umschlag C5: "" +*de.PageSize EnvDL/Umschlag DL: "" +*de.Translation Duplex/Beidseitig: "" +*de.Duplex None/Aus: "" +*de.Duplex DuplexNoTumble/Bindung an langer Kante: "" +*de.Duplex DuplexTumble/Bindung an kurzer Kante: "" +*de.Translation InputSlot/Papiereinzug: "" +*de.InputSlot Tray1/Zufuhrfach 1: "" +*de.InputSlot Tray2/Zufuhrfach 2: "" +*de.InputSlot ManualFeed/Manuelle Zufuhr: "" +*de.Translation InstallableOptions/Installable Options: "" +*de.Translation HPOption_Duplexer/Duplexdruck-Zubehör: "" +*de.HPOption_Duplexer True/Ein: "" +*de.HPOption_Duplexer False/Aus: "" +*de.Translation HPColorOptionsPanel/Farbe: "" +*de.Translation HPPJLColorAsGray/In Graustufen drucken: "" +*de.HPPJLColorAsGray yes/Ein: "" +*de.HPPJLColorAsGray no/Aus: "" +*de.Translation HPRGBEmulation/RGB-Farbe: "" +*de.HPRGBEmulation DefaultSRGB/Standard (sRGB): "" +*de.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*de.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*de.HPRGBEmulation VividSRGB/Leuchtend (sRGB): "" +*de.HPRGBEmulation HPRGBEmulationNone/Keine: "" +*de.Translation HPEdgeControl/Randsteuerung: "" +*de.HPEdgeControl HPEdgeControlOff/Aus: "" +*de.HPEdgeControl Light/Hell: "" +*de.HPEdgeControl Normal/Normal: "" +*de.HPEdgeControl Max/Maximal: "" +*de.Translation HPGeneralHalftone/Halbton: "" +*de.HPGeneralHalftone Smooth/Geglättet: "" +*de.HPGeneralHalftone Detail/Detailliert: "" +*de.Translation HPTextNeutralGrays/Text - neutrales Grau: "" +*de.HPTextNeutralGrays Black/Nur Schwarz: "" +*de.HPTextNeutralGrays ProcessBlack/4-Farbig: "" +*de.Translation HPGraphicsNeutralGrays/Grafik - neutrales Grau: "" +*de.HPGraphicsNeutralGrays Black/Nur Schwarz: "" +*de.HPGraphicsNeutralGrays ProcessBlack/4-Farbig: "" +*de.Translation HPPhotoNeutralGrays/Foto - neutrales Grau: "" +*de.HPPhotoNeutralGrays Black/Nur Schwarz: "" +*de.HPPhotoNeutralGrays ProcessBlack/4-Farbig: "" +*de.Translation HPPaperQualityPanel/Paper/Quality: "" +*de.Translation HPPJLEconoMode/EconoMode: "" +*de.HPPJLEconoMode True/Ein: "" +*de.HPPJLEconoMode False/Aus: "" +*de.Translation MediaType/Druckmedientyp: "" +*de.MediaType Unspecified/Nicht bestimmt: "" +*de.MediaType Plain/Normalpapier: "" +*de.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*de.MediaType HPLaserJet90/HP LaserJet, 90g: "" +*de.MediaType HPColorLaserMatte105/HP Color Laser 105g, matt: "" +*de.MediaType HPPremiumChoiceMatte120/HP Premium Choice 120g, matt: "" +*de.MediaType HPBrochureMatte150/HP Broschürenpapier, matt 150g: "" +*de.MediaType HPCoverMatte200/HP Deckblattpapier 200g, matt: "" +*de.MediaType HPMattePhoto200/HP Fotopapier, matt 200g: "" +*de.MediaType HPPremiumPresentationGlossy120/HP Premium Präsentationspapier, hochglänzend 120g: "" +*de.MediaType HPBrochureGlossy150/HP Broschürenpapier, hochglänzend 150g: "" +*de.MediaType HPTrifoldBrochureGlossy150/HP Broschürenpapier, dreifach gefaltet, hochglänzend 150g: "" +*de.MediaType HPBrochureGlossy200/HP Broschürenpapier, hochglänzend 200g: "" +*de.MediaType Light6074/Leicht 60-74g: "" +*de.MediaType Intermediate8595/Mittelschwer 85-95g: "" +*de.MediaType MidWeight96110/Mittleres Gewicht 96-110g: "" +*de.MediaType Heavy111130/Schwer 111-130g: "" +*de.MediaType ExtraHeavy131175/Sehr schwer 131-175g: "" +*de.MediaType HeavyGlossy111130/Hochglanz, schwer 111-130g: "" +*de.MediaType ExtraHeavyGlossy131175/Hochglanz, extraschwer 131-175g: "" +*de.MediaType CardGlossy176220/Karte 176-220g, hochglänzend: "" +*de.MediaType ColorLaserTransparency/Color Laser-Transparentfolie: "" +*de.MediaType Labels/Etiketten: "" +*de.MediaType Letterhead/Briefkopfpapier: "" +*de.MediaType Envelope/Briefumschlag: "" +*de.MediaType HeavyEnvelope/Schwerer Briefumschlag: "" +*de.MediaType Preprinted/Vordruckpapier: "" +*de.MediaType Prepunched/Vorgelochtes Papier: "" +*de.MediaType Colored/Farbig: "" +*de.MediaType Bond/Briefpapier: "" +*de.MediaType Recycled/Recyclingpapier: "" +*de.MediaType Rough/Rauhpapier: "" +*de.MediaType HeavyRough/Schwer Rau: "" +*de.MediaType OpaqueFilm/Folie, opak: "" +*de.APPrinterPreset ChartsAndGraphs/Diagramme & Grafiken: "" +*de.cupsICCProfile RGB../sRGB Matching Profile: "" +*de.cupsICCProfile CMYK../CMYK Matching Profile: "" +*de.cupsICCProfile Gray../Gray Matching Profile: "" +*de.cupsMarkerName cyan/Zyan: "" +*de.cupsMarkerName magenta/Magenta: "" +*de.cupsMarkerName yellow/Gelb: "" +*de.cupsMarkerName black/Schwarz: "" +*es.Translation Manufacturer/HP: "" +*es.Translation ModelName/HP Color LaserJet Pro M252: "" +*es.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*es.Translation NickName/HP Color LaserJet Pro M252: "" +*es.Translation PageSize/Tamaño de papel: "" +*es.PageSize Letter/US Letter: "" +*es.PageSize Legal/US Legal: "" +*es.PageSize Executive/Ejecutivo: "" +*es.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*es.PageSize 4x6/4x6: "" +*es.PageSize 5x8/5x8: "" +*es.PageSize A4/A4: "" +*es.PageSize A5/A5: "" +*es.PageSize A6/A6: "" +*es.PageSize B5/JIS B5: "" +*es.PageSize B6/JIS B6: "" +*es.PageSize Env4x6/10x15 cm: "" +*es.PageSize Oficio/Oficio 216x340 mm: "" +*es.PageSize 195x270mm/16K 195x270 mm: "" +*es.PageSize 184x260mm/16K 184x260 mm: "" +*es.PageSize 7.75x10.75/16K 197x273 mm: "" +*es.PageSize Postcard/Postcard: "" +*es.PageSize DoublePostcardRotated/Postal doble borde largo: "" +*es.PageSize Env10/Sobre Comm10: "" +*es.PageSize EnvMonarch/Sobre Monarch: "" +*es.PageSize EnvISOB5/Sobre ISO B5: "" +*es.PageSize EnvC5/Sobre C5: "" +*es.PageSize EnvDL/Sobre DL: "" +*es.Translation Duplex/A doble cara: "" +*es.Duplex None/Desactivado: "" +*es.Duplex DuplexNoTumble/Encuadernación de borde largo: "" +*es.Duplex DuplexTumble/Encuadernación de borde corto: "" +*es.Translation InputSlot/Alimentador de papel: "" +*es.InputSlot Tray1/Bandeja 1: "" +*es.InputSlot Tray2/Bandeja 2: "" +*es.InputSlot ManualFeed/Alimentación manual: "" +*es.Translation InstallableOptions/Installable Options: "" +*es.Translation HPOption_Duplexer/Accesorio para impresión dúplex: "" +*es.HPOption_Duplexer True/Activado: "" +*es.HPOption_Duplexer False/Desactivado: "" +*es.Translation HPColorOptionsPanel/Color: "" +*es.Translation HPPJLColorAsGray/Imprimir colores en gris: "" +*es.HPPJLColorAsGray yes/Activado: "" +*es.HPPJLColorAsGray no/Desactivado: "" +*es.Translation HPRGBEmulation/Color RGB: "" +*es.HPRGBEmulation DefaultSRGB/Predeterminado (sRGB): "" +*es.HPRGBEmulation PhotoSRGB/Fotografía (sRGB): "" +*es.HPRGBEmulation Adobe/Fotografía (Adobe RGB 1998): "" +*es.HPRGBEmulation VividSRGB/Intenso (sRGB): "" +*es.HPRGBEmulation HPRGBEmulationNone/Ninguno: "" +*es.Translation HPEdgeControl/Control de bordes: "" +*es.HPEdgeControl HPEdgeControlOff/Desactivado: "" +*es.HPEdgeControl Light/Claro: "" +*es.HPEdgeControl Normal/Normal: "" +*es.HPEdgeControl Max/Máximo: "" +*es.Translation HPGeneralHalftone/Medios tonos: "" +*es.HPGeneralHalftone Smooth/Uniforme: "" +*es.HPGeneralHalftone Detail/Detalle: "" +*es.Translation HPTextNeutralGrays/Gris neutro de texto: "" +*es.HPTextNeutralGrays Black/Sólo negro: "" +*es.HPTextNeutralGrays ProcessBlack/4 colores: "" +*es.Translation HPGraphicsNeutralGrays/Gris neutro de gráfico: "" +*es.HPGraphicsNeutralGrays Black/Sólo negro: "" +*es.HPGraphicsNeutralGrays ProcessBlack/4 colores: "" +*es.Translation HPPhotoNeutralGrays/Gris neutro de fotografías: "" +*es.HPPhotoNeutralGrays Black/Sólo negro: "" +*es.HPPhotoNeutralGrays ProcessBlack/4 colores: "" +*es.Translation HPPaperQualityPanel/Paper/Quality: "" +*es.Translation HPPJLEconoMode/EconoMode: "" +*es.HPPJLEconoMode True/Activado: "" +*es.HPPJLEconoMode False/Desactivado: "" +*es.Translation MediaType/Tipo de sustrato: "" +*es.MediaType Unspecified/No especificado: "" +*es.MediaType Plain/Estándar: "" +*es.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*es.MediaType HPLaserJet90/HP LaserJet 90g: "" +*es.MediaType HPColorLaserMatte105/Impresión láser color mate HP 105g: "" +*es.MediaType HPPremiumChoiceMatte120/HP Premium Choice satinado 120g: "" +*es.MediaType HPBrochureMatte150/Prospecto HP mate 150g: "" +*es.MediaType HPCoverMatte200/Portada mate HP 200g: "" +*es.MediaType HPMattePhoto200/Fotográfico mate HP 200g: "" +*es.MediaType HPPremiumPresentationGlossy120/Presentaciones HP Premium satinadas 120g: "" +*es.MediaType HPBrochureGlossy150/Prospecto HP satinado 150g: "" +*es.MediaType HPTrifoldBrochureGlossy150/Prospecto estilo tríptico HP satinado 150g: "" +*es.MediaType HPBrochureGlossy200/Prospecto HP satinado 200g: "" +*es.MediaType Light6074/Ligero 60-74g: "" +*es.MediaType Intermediate8595/Intermedio 85-95g: "" +*es.MediaType MidWeight96110/Peso medio 96-110g: "" +*es.MediaType Heavy111130/Pesado 111-130g: "" +*es.MediaType ExtraHeavy131175/Pesado extra 131-175g: "" +*es.MediaType HeavyGlossy111130/Satinado pesado 111-130g: "" +*es.MediaType ExtraHeavyGlossy131175/Extra grueso brillante 131-175g: "" +*es.MediaType CardGlossy176220/Tarjeta satinado 176-220g: "" +*es.MediaType ColorLaserTransparency/Transparencia impresión láser: "" +*es.MediaType Labels/Etiquetas: "" +*es.MediaType Letterhead/Membrete: "" +*es.MediaType Envelope/Sobre: "" +*es.MediaType HeavyEnvelope/Sobre pesado: "" +*es.MediaType Preprinted/Preimpreso: "" +*es.MediaType Prepunched/Preperforado: "" +*es.MediaType Colored/Coloreado: "" +*es.MediaType Bond/Bond: "" +*es.MediaType Recycled/Reciclado: "" +*es.MediaType Rough/Rugoso: "" +*es.MediaType HeavyRough/Pesado rugoso: "" +*es.MediaType OpaqueFilm/Película opaca: "" +*es.APPrinterPreset ChartsAndGraphs/Cuadros y gráficos: "" +*es.cupsICCProfile RGB../sRGB Matching Profile: "" +*es.cupsICCProfile CMYK../CMYK Matching Profile: "" +*es.cupsICCProfile Gray../Gray Matching Profile: "" +*es.cupsMarkerName cyan/Cian: "" +*es.cupsMarkerName magenta/Magenta: "" +*es.cupsMarkerName yellow/Amarillo: "" +*es.cupsMarkerName black/Negro: "" +*fi.Translation Manufacturer/HP: "" +*fi.Translation ModelName/HP Color LaserJet Pro M252: "" +*fi.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*fi.Translation NickName/HP Color LaserJet Pro M252: "" +*fi.Translation PageSize/Median koko: "" +*fi.PageSize Letter/US Letter: "" +*fi.PageSize Legal/US Legal: "" +*fi.PageSize Executive/Executive: "" +*fi.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*fi.PageSize 4x6/4x6: "" +*fi.PageSize 5x8/5x8: "" +*fi.PageSize A4/A4: "" +*fi.PageSize A5/A5: "" +*fi.PageSize A6/A6: "" +*fi.PageSize B5/JIS B5: "" +*fi.PageSize B6/JIS B6: "" +*fi.PageSize Env4x6/10x15 cm: "" +*fi.PageSize Oficio/Oficio 216x340 mm: "" +*fi.PageSize 195x270mm/16K 195x270 mm: "" +*fi.PageSize 184x260mm/16K 184x260 mm: "" +*fi.PageSize 7.75x10.75/16K 197x273 mm: "" +*fi.PageSize Postcard/Postcard: "" +*fi.PageSize DoublePostcardRotated/Kaksoispostikortti (pitkä reuna): "" +*fi.PageSize Env10/Kirjekuori Comm10: "" +*fi.PageSize EnvMonarch/Kirjekuori Monarch: "" +*fi.PageSize EnvISOB5/Kirjekuori ISO B5: "" +*fi.PageSize EnvC5/Kirjekuori C5: "" +*fi.PageSize EnvDL/Kirjekuori DL: "" +*fi.Translation Duplex/Kaksipuolinen: "" +*fi.Duplex None/Ei käytössä: "" +*fi.Duplex DuplexNoTumble/Sidonta-pitkäreuna: "" +*fi.Duplex DuplexTumble/Sidonta-lyhytreuna: "" +*fi.Translation InputSlot/Paperinsyöttö: "" +*fi.InputSlot Tray1/Lokero 1: "" +*fi.InputSlot Tray2/Lokero 2: "" +*fi.InputSlot ManualFeed/Käsinsyöttö: "" +*fi.Translation InstallableOptions/Installable Options: "" +*fi.Translation HPOption_Duplexer/Kaksipuolisen tulostuksen lisälaite: "" +*fi.HPOption_Duplexer True/Käytössä: "" +*fi.HPOption_Duplexer False/Ei käytössä: "" +*fi.Translation HPColorOptionsPanel/Väri: "" +*fi.Translation HPPJLColorAsGray/Tulosta värit harmaina: "" +*fi.HPPJLColorAsGray yes/Käytössä: "" +*fi.HPPJLColorAsGray no/Ei käytössä: "" +*fi.Translation HPRGBEmulation/RGB-väri: "" +*fi.HPRGBEmulation DefaultSRGB/Oletus (sRGB): "" +*fi.HPRGBEmulation PhotoSRGB/Valokuva (sRGB): "" +*fi.HPRGBEmulation Adobe/Valokuva (Adobe RGB 1998): "" +*fi.HPRGBEmulation VividSRGB/Kirkas (sRGB): "" +*fi.HPRGBEmulation HPRGBEmulationNone/Ei mitään: "" +*fi.Translation HPEdgeControl/Reunojen hallinta: "" +*fi.HPEdgeControl HPEdgeControlOff/Ei käytössä: "" +*fi.HPEdgeControl Light/Vaalea: "" +*fi.HPEdgeControl Normal/Normaali: "" +*fi.HPEdgeControl Max/Maksimi: "" +*fi.Translation HPGeneralHalftone/Puolisävy: "" +*fi.HPGeneralHalftone Smooth/Tasainen: "" +*fi.HPGeneralHalftone Detail/Yksityiskohtainen: "" +*fi.Translation HPTextNeutralGrays/Teksti, neutraali harmaa: "" +*fi.HPTextNeutralGrays Black/Vain musta: "" +*fi.HPTextNeutralGrays ProcessBlack/Neliväri: "" +*fi.Translation HPGraphicsNeutralGrays/Kuva, neutraali harmaa: "" +*fi.HPGraphicsNeutralGrays Black/Vain musta: "" +*fi.HPGraphicsNeutralGrays ProcessBlack/Neliväri: "" +*fi.Translation HPPhotoNeutralGrays/Val., neutraali harmaa: "" +*fi.HPPhotoNeutralGrays Black/Vain musta: "" +*fi.HPPhotoNeutralGrays ProcessBlack/Neliväri: "" +*fi.Translation HPPaperQualityPanel/Paper/Quality: "" +*fi.Translation HPPJLEconoMode/EconoMode: "" +*fi.HPPJLEconoMode True/Käytössä: "" +*fi.HPPJLEconoMode False/Ei käytössä: "" +*fi.Translation MediaType/Tulostusmateriaali: "" +*fi.MediaType Unspecified/Määrittämätön: "" +*fi.MediaType Plain/Tavallinen: "" +*fi.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*fi.MediaType HPLaserJet90/HP LaserJet, 90g: "" +*fi.MediaType HPColorLaserMatte105/HP<3A>n matta värilaser 105g: "" +*fi.MediaType HPPremiumChoiceMatte120/HP Premium Choice, matta 120g: "" +*fi.MediaType HPBrochureMatte150/HP<3A>n matta esite 150g: "" +*fi.MediaType HPCoverMatte200/HP<3A>n matta kansi 200g: "" +*fi.MediaType HPMattePhoto200/HP<3A>n matta valokuva 200g: "" +*fi.MediaType HPPremiumPresentationGlossy120/HP Premium -esitys, kiiltävä 120g: "" +*fi.MediaType HPBrochureGlossy150/HP<3A>n kiiltävä esite 150g: "" +*fi.MediaType HPTrifoldBrochureGlossy150/HP<3A>n kolminkertainen esite 150g: "" +*fi.MediaType HPBrochureGlossy200/HP<3A>n kiiltävä esite 200g: "" +*fi.MediaType Light6074/Kevyt 60-74g: "" +*fi.MediaType Intermediate8595/Keskikoko 85-95g: "" +*fi.MediaType MidWeight96110/Keskipaksu 96-110g: "" +*fi.MediaType Heavy111130/Paksu 111-130g: "" +*fi.MediaType ExtraHeavy131175/Erittäin paksu 131-175g: "" +*fi.MediaType HeavyGlossy111130/Raskas kiiltävä 111-130g: "" +*fi.MediaType ExtraHeavyGlossy131175/Er. raskas kiiltävä 131-175g: "" +*fi.MediaType CardGlossy176220/Kiiltävä kortti 176-220g: "" +*fi.MediaType ColorLaserTransparency/Värilaserkalvo: "" +*fi.MediaType Labels/Tarrat: "" +*fi.MediaType Letterhead/Kirjelomake: "" +*fi.MediaType Envelope/Kirjekuori: "" +*fi.MediaType HeavyEnvelope/Paksu kirjekuori: "" +*fi.MediaType Preprinted/Esipainettu: "" +*fi.MediaType Prepunched/Rei’itetty: "" +*fi.MediaType Colored/Värillinen: "" +*fi.MediaType Bond/Kova asiakirjapaperi: "" +*fi.MediaType Recycled/Uusiopaperi: "" +*fi.MediaType Rough/Karkea: "" +*fi.MediaType HeavyRough/Paksu karkea: "" +*fi.MediaType OpaqueFilm/Läpikuultamaton kalvo: "" +*fi.APPrinterPreset ChartsAndGraphs/Kaaviot ja grafiikka: "" +*fi.cupsICCProfile RGB../sRGB Matching Profile: "" +*fi.cupsICCProfile CMYK../CMYK Matching Profile: "" +*fi.cupsICCProfile Gray../Gray Matching Profile: "" +*fi.cupsMarkerName cyan/Syaani: "" +*fi.cupsMarkerName magenta/Magenta: "" +*fi.cupsMarkerName yellow/Keltainen: "" +*fi.cupsMarkerName black/Musta: "" +*fr.Translation Manufacturer/HP: "" +*fr.Translation ModelName/HP Color LaserJet Pro M252: "" +*fr.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*fr.Translation NickName/HP Color LaserJet Pro M252: "" +*fr.Translation PageSize/Taille du papier: "" +*fr.PageSize Letter/US Letter: "" +*fr.PageSize Legal/US Legal: "" +*fr.PageSize Executive/Exécutif: "" +*fr.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*fr.PageSize 4x6/4x6: "" +*fr.PageSize 5x8/5x8: "" +*fr.PageSize A4/A4: "" +*fr.PageSize A5/A5: "" +*fr.PageSize A6/A6: "" +*fr.PageSize B5/JIS B5: "" +*fr.PageSize B6/JIS B6: "" +*fr.PageSize Env4x6/10x15 cm: "" +*fr.PageSize Oficio/Oficio 216x340 mm: "" +*fr.PageSize 195x270mm/16K 195x270 mm: "" +*fr.PageSize 184x260mm/16K 184x260 mm: "" +*fr.PageSize 7.75x10.75/16K 197x273 mm: "" +*fr.PageSize Postcard/Postcard: "" +*fr.PageSize DoublePostcardRotated/Carte postale double - Long bord: "" +*fr.PageSize Env10/Enveloppe Comm10: "" +*fr.PageSize EnvMonarch/Enveloppe Monarch: "" +*fr.PageSize EnvISOB5/Enveloppe ISO B5: "" +*fr.PageSize EnvC5/Enveloppe C5: "" +*fr.PageSize EnvDL/Enveloppe DL: "" +*fr.Translation Duplex/Recto verso: "" +*fr.Duplex None/Désactivé: "" +*fr.Duplex DuplexNoTumble/Reliure côté long: "" +*fr.Duplex DuplexTumble/Reliure côté court: "" +*fr.Translation InputSlot/Alimentation: "" +*fr.InputSlot Tray1/Bac 1: "" +*fr.InputSlot Tray2/Bac 2: "" +*fr.InputSlot ManualFeed/Alimentation manuelle: "" +*fr.Translation InstallableOptions/Installable Options: "" +*fr.Translation HPOption_Duplexer/Unité recto verso: "" +*fr.HPOption_Duplexer True/Activé: "" +*fr.HPOption_Duplexer False/Désactivé: "" +*fr.Translation HPColorOptionsPanel/Couleur: "" +*fr.Translation HPPJLColorAsGray/Imprimer couleur en gris: "" +*fr.HPPJLColorAsGray yes/Activé: "" +*fr.HPPJLColorAsGray no/Désactivé: "" +*fr.Translation HPRGBEmulation/Couleur RGB: "" +*fr.HPRGBEmulation DefaultSRGB/Par défaut (sRGB): "" +*fr.HPRGBEmulation PhotoSRGB/Photo (sRGB): "" +*fr.HPRGBEmulation Adobe/Photo (Adobe RGB 1998): "" +*fr.HPRGBEmulation VividSRGB/Vive (sRGB): "" +*fr.HPRGBEmulation HPRGBEmulationNone/Aucun: "" +*fr.Translation HPEdgeControl/Contrôle du bord: "" +*fr.HPEdgeControl HPEdgeControlOff/Désactivé: "" +*fr.HPEdgeControl Light/Clair: "" +*fr.HPEdgeControl Normal/Normal: "" +*fr.HPEdgeControl Max/Maximum: "" +*fr.Translation HPGeneralHalftone/Demi-teinte: "" +*fr.HPGeneralHalftone Smooth/Lisse: "" +*fr.HPGeneralHalftone Detail/Détaillées: "" +*fr.Translation HPTextNeutralGrays/Texte gris neutre: "" +*fr.HPTextNeutralGrays Black/Noir uniquement: "" +*fr.HPTextNeutralGrays ProcessBlack/4 couleurs: "" +*fr.Translation HPGraphicsNeutralGrays/Graphiques gris neutre: "" +*fr.HPGraphicsNeutralGrays Black/Noir uniquement: "" +*fr.HPGraphicsNeutralGrays ProcessBlack/4 couleurs: "" +*fr.Translation HPPhotoNeutralGrays/Photo gris neutre: "" +*fr.HPPhotoNeutralGrays Black/Noir uniquement: "" +*fr.HPPhotoNeutralGrays ProcessBlack/4 couleurs: "" +*fr.Translation HPPaperQualityPanel/Paper/Quality: "" +*fr.Translation HPPJLEconoMode/EconoMode: "" +*fr.HPPJLEconoMode True/Activé: "" +*fr.HPPJLEconoMode False/Désactivé: "" +*fr.Translation MediaType/Type de support: "" +*fr.MediaType Unspecified/Non spécifié: "" +*fr.MediaType Plain/Ordinaire: "" +*fr.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*fr.MediaType HPLaserJet90/HP LaserJet 90g: "" +*fr.MediaType HPColorLaserMatte105/Papier couleur laser mat 105g HP: "" +*fr.MediaType HPPremiumChoiceMatte120/Papier 120g mat HP Premium Choice: "" +*fr.MediaType HPBrochureMatte150/HP Brochure Mat 150g: "" +*fr.MediaType HPCoverMatte200/Couverture mate 200g HP: "" +*fr.MediaType HPMattePhoto200/Papier photo mat HP 200g: "" +*fr.MediaType HPPremiumPresentationGlossy120/Papier brillant pour présentation HP Premium 120g: "" +*fr.MediaType HPBrochureGlossy150/HP Brochure Brillant 150g: "" +*fr.MediaType HPTrifoldBrochureGlossy150/Papier pour brochure plié en trois HP, brillant, 150g: "" +*fr.MediaType HPBrochureGlossy200/HP Brochure Brillant 200g: "" +*fr.MediaType Light6074/Fin 60-74g: "" +*fr.MediaType Intermediate8595/Intermédiaire 85-95g: "" +*fr.MediaType MidWeight96110/Grammage moyen 96-110g: "" +*fr.MediaType Heavy111130/Epais 111-130g: "" +*fr.MediaType ExtraHeavy131175/Très épais 131-175g: "" +*fr.MediaType HeavyGlossy111130/Glacé et épais 111-130g: "" +*fr.MediaType ExtraHeavyGlossy131175/Papier glacé extra fort 131-175g: "" +*fr.MediaType CardGlossy176220/Carte brillante 176-220g: "" +*fr.MediaType ColorLaserTransparency/Transpar. laser couleur: "" +*fr.MediaType Labels/Étiquettes: "" +*fr.MediaType Letterhead/Papier à en-tête: "" +*fr.MediaType Envelope/Enveloppe: "" +*fr.MediaType HeavyEnvelope/Enveloppe à fort grammage: "" +*fr.MediaType Preprinted/Préimprimé: "" +*fr.MediaType Prepunched/Perforé: "" +*fr.MediaType Colored/Coloré: "" +*fr.MediaType Bond/Document: "" +*fr.MediaType Recycled/Recyclé: "" +*fr.MediaType Rough/Rugueux: "" +*fr.MediaType HeavyRough/Epais rugueux: "" +*fr.MediaType OpaqueFilm/Film opaque: "" +*fr.APPrinterPreset ChartsAndGraphs/Diagrammes et graphiques: "" +*fr.cupsICCProfile RGB../sRGB Matching Profile: "" +*fr.cupsICCProfile CMYK../CMYK Matching Profile: "" +*fr.cupsICCProfile Gray../Gray Matching Profile: "" +*fr.cupsMarkerName cyan/Cyan: "" +*fr.cupsMarkerName magenta/Magenta: "" +*fr.cupsMarkerName yellow/Jaune: "" +*fr.cupsMarkerName black/Noir: "" +*it.Translation Manufacturer/HP: "" +*it.Translation ModelName/HP Color LaserJet Pro M252: "" +*it.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*it.Translation NickName/HP Color LaserJet Pro M252: "" +*it.Translation PageSize/Dimensione media: "" +*it.PageSize Letter/US Letter: "" +*it.PageSize Legal/US Legal: "" +*it.PageSize Executive/Executive: "" +*it.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*it.PageSize 4x6/4x6: "" +*it.PageSize 5x8/5x8: "" +*it.PageSize A4/A4: "" +*it.PageSize A5/A5: "" +*it.PageSize A6/A6: "" +*it.PageSize B5/JIS B5: "" +*it.PageSize B6/JIS B6: "" +*it.PageSize Env4x6/10x15 cm: "" +*it.PageSize Oficio/Oficio 216x340 mm: "" +*it.PageSize 195x270mm/16K 195x270 mm: "" +*it.PageSize 184x260mm/16K 184x260 mm: "" +*it.PageSize 7.75x10.75/16K 197x273 mm: "" +*it.PageSize Postcard/Postcard: "" +*it.PageSize DoublePostcardRotated/Cartolina doppia Bordo lungo: "" +*it.PageSize Env10/Busta Comm10: "" +*it.PageSize EnvMonarch/Busta Monarch: "" +*it.PageSize EnvISOB5/Busta ISO B5: "" +*it.PageSize EnvC5/Busta C5: "" +*it.PageSize EnvDL/Busta DL: "" +*it.Translation Duplex/Fronte-retro: "" +*it.Duplex None/Disattivato: "" +*it.Duplex DuplexNoTumble/Rilegatura con taglio largo: "" +*it.Duplex DuplexTumble/Rilegatura con taglio stretto: "" +*it.Translation InputSlot/Alimentazione carta: "" +*it.InputSlot Tray1/Vassoio 1: "" +*it.InputSlot Tray2/Vassoio 2: "" +*it.InputSlot ManualFeed/Alimentazione manuale: "" +*it.Translation InstallableOptions/Installable Options: "" +*it.Translation HPOption_Duplexer/Accessorio per stampa duplex: "" +*it.HPOption_Duplexer True/Attivato: "" +*it.HPOption_Duplexer False/Disattivato: "" +*it.Translation HPColorOptionsPanel/Colore: "" +*it.Translation HPPJLColorAsGray/Stampa colore in grigio: "" +*it.HPPJLColorAsGray yes/Attivato: "" +*it.HPPJLColorAsGray no/Disattivato: "" +*it.Translation HPRGBEmulation/Colore RGB: "" +*it.HPRGBEmulation DefaultSRGB/Predefinito (sRGB): "" +*it.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*it.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*it.HPRGBEmulation VividSRGB/Brillante (sRGB): "" +*it.HPRGBEmulation HPRGBEmulationNone/Nessuna: "" +*it.Translation HPEdgeControl/Controllo margine: "" +*it.HPEdgeControl HPEdgeControlOff/Disattivato: "" +*it.HPEdgeControl Light/Chiaro: "" +*it.HPEdgeControl Normal/Normale: "" +*it.HPEdgeControl Max/Massimo: "" +*it.Translation HPGeneralHalftone/Mezzitoni: "" +*it.HPGeneralHalftone Smooth/Uniformi: "" +*it.HPGeneralHalftone Detail/Dettagli: "" +*it.Translation HPTextNeutralGrays/Grigi neutri testo: "" +*it.HPTextNeutralGrays Black/Solo nero: "" +*it.HPTextNeutralGrays ProcessBlack/Quadricromia: "" +*it.Translation HPGraphicsNeutralGrays/Grigi neutri grafici: "" +*it.HPGraphicsNeutralGrays Black/Solo nero: "" +*it.HPGraphicsNeutralGrays ProcessBlack/Quadricromia: "" +*it.Translation HPPhotoNeutralGrays/Grigi neutri fotografie: "" +*it.HPPhotoNeutralGrays Black/Solo nero: "" +*it.HPPhotoNeutralGrays ProcessBlack/Quadricromia: "" +*it.Translation HPPaperQualityPanel/Paper/Quality: "" +*it.Translation HPPJLEconoMode/EconoMode: "" +*it.HPPJLEconoMode True/Attivato: "" +*it.HPPJLEconoMode False/Disattivato: "" +*it.Translation MediaType/Tipo di supporto: "" +*it.MediaType Unspecified/Non specificato: "" +*it.MediaType Plain/Normale: "" +*it.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*it.MediaType HPLaserJet90/HP LaserJet 90g: "" +*it.MediaType HPColorLaserMatte105/Opaca a colori per stampanti laser HP 105g: "" +*it.MediaType HPPremiumChoiceMatte120/Opaca HP alta qualità 120g: "" +*it.MediaType HPBrochureMatte150/Brochure opaca 150g HP: "" +*it.MediaType HPCoverMatte200/Copertina opaca HP 200g: "" +*it.MediaType HPMattePhoto200/Fotografica opaca HP 200g: "" +*it.MediaType HPPremiumPresentationGlossy120/Presentazione lucida ad alta qualità 120g HP: "" +*it.MediaType HPBrochureGlossy150/Brochure lucida 150g HP: "" +*it.MediaType HPTrifoldBrochureGlossy150/Brochure lucida piegata in tre 150g HP: "" +*it.MediaType HPBrochureGlossy200/Brochure lucida 200g HP: "" +*it.MediaType Light6074/Leggera 60-74g: "" +*it.MediaType Intermediate8595/Intermedia 85-95g: "" +*it.MediaType MidWeight96110/Medio spessore 96-110g: "" +*it.MediaType Heavy111130/Pesante 111-130g: "" +*it.MediaType ExtraHeavy131175/Extra Pesante 131-175g: "" +*it.MediaType HeavyGlossy111130/Carta patinata pesante 111-130g: "" +*it.MediaType ExtraHeavyGlossy131175/Lucida pesante extra 131-175g: "" +*it.MediaType CardGlossy176220/Scheda lucida 176-220g: "" +*it.MediaType ColorLaserTransparency/Lucido per stampanti laser a colori: "" +*it.MediaType Labels/Etichette: "" +*it.MediaType Letterhead/Carta intestata: "" +*it.MediaType Envelope/Busta: "" +*it.MediaType HeavyEnvelope/Busta pesante: "" +*it.MediaType Preprinted/Prestampata: "" +*it.MediaType Prepunched/Perforata: "" +*it.MediaType Colored/Colorata: "" +*it.MediaType Bond/Carta fine: "" +*it.MediaType Recycled/Riciclata: "" +*it.MediaType Rough/Ruvida: "" +*it.MediaType HeavyRough/Ruvida pesante: "" +*it.MediaType OpaqueFilm/Pellicola opaca: "" +*it.APPrinterPreset ChartsAndGraphs/Diagrammi e grafici: "" +*it.cupsICCProfile RGB../sRGB Matching Profile: "" +*it.cupsICCProfile CMYK../CMYK Matching Profile: "" +*it.cupsICCProfile Gray../Gray Matching Profile: "" +*it.cupsMarkerName cyan/Ciano: "" +*it.cupsMarkerName magenta/Magenta: "" +*it.cupsMarkerName yellow/Giallo: "" +*it.cupsMarkerName black/Nero: "" +*ja.Translation Manufacturer/HP: "" +*ja.Translation ModelName/HP Color LaserJet Pro M252: "" +*ja.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*ja.Translation NickName/HP Color LaserJet Pro M252: "" +*ja.Translation PageSize/メディアサイズ: "" +*ja.PageSize Letter/US Letter: "" +*ja.PageSize Legal/US Legal: "" +*ja.PageSize Executive/エグゼクティブ: "" +*ja.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*ja.PageSize 4x6/4x6: "" +*ja.PageSize 5x8/5x8: "" +*ja.PageSize A4/A4: "" +*ja.PageSize A5/A5: "" +*ja.PageSize A6/A6: "" +*ja.PageSize B5/JIS B5: "" +*ja.PageSize B6/JIS B6: "" +*ja.PageSize Env4x6/10x15 cm: "" +*ja.PageSize Oficio/Oficio 216x340 mm: "" +*ja.PageSize 195x270mm/16K 195x270 mm: "" +*ja.PageSize 184x260mm/16K 184x260 mm: "" +*ja.PageSize 7.75x10.75/16K 197x273 mm: "" +*ja.PageSize Postcard/Postcard: "" +*ja.PageSize DoublePostcardRotated/往復はがき 横: "" +*ja.PageSize Env10/封筒 Comm10: "" +*ja.PageSize EnvMonarch/封筒 Monarch: "" +*ja.PageSize EnvISOB5/封筒 ISO B5: "" +*ja.PageSize EnvC5/封筒 C5: "" +*ja.PageSize EnvDL/封筒 DL: "" +*ja.Translation Duplex/両面: "" +*ja.Duplex None/オフ: "" +*ja.Duplex DuplexNoTumble/長辺とじ: "" +*ja.Duplex DuplexTumble/短辺とじ: "" +*ja.Translation InputSlot/給紙: "" +*ja.InputSlot Tray1/トレイ 1: "" +*ja.InputSlot Tray2/トレイ 2: "" +*ja.InputSlot ManualFeed/手差し: "" +*ja.Translation InstallableOptions/Installable Options: "" +*ja.Translation HPOption_Duplexer/両面印刷アクセサリ: "" +*ja.HPOption_Duplexer True/オン: "" +*ja.HPOption_Duplexer False/オフ: "" +*ja.Translation HPColorOptionsPanel/カラー: "" +*ja.Translation HPPJLColorAsGray/グレー印刷: "" +*ja.HPPJLColorAsGray yes/オン: "" +*ja.HPPJLColorAsGray no/オフ: "" +*ja.Translation HPRGBEmulation/RGB カラー: "" +*ja.HPRGBEmulation DefaultSRGB/デフォルト (sRGB): "" +*ja.HPRGBEmulation PhotoSRGB/フォト (sRGB): "" +*ja.HPRGBEmulation Adobe/フォト (Adobe RGB 1998): "" +*ja.HPRGBEmulation VividSRGB/鮮明 (sRGB): "" +*ja.HPRGBEmulation HPRGBEmulationNone/なし: "" +*ja.Translation HPEdgeControl/輪郭コントロール: "" +*ja.HPEdgeControl HPEdgeControlOff/オフ: "" +*ja.HPEdgeControl Light/薄い: "" +*ja.HPEdgeControl Normal/標準: "" +*ja.HPEdgeControl Max/最大: "" +*ja.Translation HPGeneralHalftone/ハーフトーン: "" +*ja.HPGeneralHalftone Smooth/テキスト: "" +*ja.HPGeneralHalftone Detail/詳細: "" +*ja.Translation HPTextNeutralGrays/テキスト グレー中間色: "" +*ja.HPTextNeutralGrays Black/黒のみ: "" +*ja.HPTextNeutralGrays ProcessBlack/4 色: "" +*ja.Translation HPGraphicsNeutralGrays/グラフィック グレー中間色: "" +*ja.HPGraphicsNeutralGrays Black/黒のみ: "" +*ja.HPGraphicsNeutralGrays ProcessBlack/4 色: "" +*ja.Translation HPPhotoNeutralGrays/写真グレー中間色: "" +*ja.HPPhotoNeutralGrays Black/黒のみ: "" +*ja.HPPhotoNeutralGrays ProcessBlack/4 色: "" +*ja.Translation HPPaperQualityPanel/Paper/Quality: "" +*ja.Translation HPPJLEconoMode/EconoMode: "" +*ja.HPPJLEconoMode True/オン: "" +*ja.HPPJLEconoMode False/オフ: "" +*ja.Translation MediaType/用紙の種類: "" +*ja.MediaType Unspecified/指定なし: "" +*ja.MediaType Plain/普通用紙: "" +*ja.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*ja.MediaType HPLaserJet90/HP レーザージェット用紙 90g: "" +*ja.MediaType HPColorLaserMatte105/HP カラーレーザー用紙 (つや消し) 105g: "" +*ja.MediaType HPPremiumChoiceMatte120/HP プレミアムチョイス (つや消し) 120g: "" +*ja.MediaType HPBrochureMatte150/HP ブローシャ用紙 (つや消し) 150g: "" +*ja.MediaType HPCoverMatte200/HP つや消し表紙用紙 200g: "" +*ja.MediaType HPMattePhoto200/HP つや消しフォト用紙 200g: "" +*ja.MediaType HPPremiumPresentationGlossy120/HP プレミアムプレゼンテーション用紙 (つや消し) 120g: "" +*ja.MediaType HPBrochureGlossy150/HP ブローシャ用紙 (光沢) 150g: "" +*ja.MediaType HPTrifoldBrochureGlossy150/HP 3 つ折りブローシャ用紙 (光沢) 150g: "" +*ja.MediaType HPBrochureGlossy200/HP ブローシャ用紙 (光沢) 200g: "" +*ja.MediaType Light6074/軽い用紙 60-74g: "" +*ja.MediaType Intermediate8595/中間 85-95g: "" +*ja.MediaType MidWeight96110/中厚手用紙 96-110g: "" +*ja.MediaType Heavy111130/重い用紙 111-130g: "" +*ja.MediaType ExtraHeavy131175/重い用紙 131-175g: "" +*ja.MediaType HeavyGlossy111130/厚手光沢紙 111-130g: "" +*ja.MediaType ExtraHeavyGlossy131175/超厚手光沢紙 131-175g: "" +*ja.MediaType CardGlossy176220/カード光沢紙 176-220g: "" +*ja.MediaType ColorLaserTransparency/カラーレーザー OHP フィルム: "" +*ja.MediaType Labels/ラベル: "" +*ja.MediaType Letterhead/レターヘッド付き: "" +*ja.MediaType Envelope/封筒: "" +*ja.MediaType HeavyEnvelope/厚手封筒: "" +*ja.MediaType Preprinted/印刷フォーム: "" +*ja.MediaType Prepunched/穴あき用紙: "" +*ja.MediaType Colored/カラー: "" +*ja.MediaType Bond/ボンド紙: "" +*ja.MediaType Recycled/再生紙: "" +*ja.MediaType Rough/ざら紙: "" +*ja.MediaType HeavyRough/厚手粗め用紙: "" +*ja.MediaType OpaqueFilm/不透明なフィルム: "" +*ja.APPrinterPreset ChartsAndGraphs/グラフと図: "" +*ja.cupsICCProfile RGB../sRGB Matching Profile: "" +*ja.cupsICCProfile CMYK../CMYK Matching Profile: "" +*ja.cupsICCProfile Gray../Gray Matching Profile: "" +*ja.cupsMarkerName cyan/シアン: "" +*ja.cupsMarkerName magenta/マゼンタ: "" +*ja.cupsMarkerName yellow/イエロー: "" +*ja.cupsMarkerName black/黒: "" +*ko.Translation Manufacturer/HP: "" +*ko.Translation ModelName/HP Color LaserJet Pro M252: "" +*ko.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*ko.Translation NickName/HP Color LaserJet Pro M252: "" +*ko.Translation PageSize/미디어 크기: "" +*ko.PageSize Letter/US Letter: "" +*ko.PageSize Legal/US Legal: "" +*ko.PageSize Executive/Executive: "" +*ko.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*ko.PageSize 4x6/4x6: "" +*ko.PageSize 5x8/5x8: "" +*ko.PageSize A4/A4: "" +*ko.PageSize A5/A5: "" +*ko.PageSize A6/A6: "" +*ko.PageSize B5/JIS B5: "" +*ko.PageSize B6/JIS B6: "" +*ko.PageSize Env4x6/10x15 cm: "" +*ko.PageSize Oficio/Oficio 216x340 mm: "" +*ko.PageSize 195x270mm/16K 195x270 mm: "" +*ko.PageSize 184x260mm/16K 184x260 mm: "" +*ko.PageSize 7.75x10.75/16K 197x273 mm: "" +*ko.PageSize Postcard/Postcard: "" +*ko.PageSize DoublePostcardRotated/엽서 Long Edge(양면): "" +*ko.PageSize Env10/Comm10 봉투: "" +*ko.PageSize EnvMonarch/Monarch 봉투: "" +*ko.PageSize EnvISOB5/ISO B5 봉투: "" +*ko.PageSize EnvC5/C5 봉투: "" +*ko.PageSize EnvDL/DL 봉투: "" +*ko.Translation Duplex/양면: "" +*ko.Duplex None/꺼짐: "" +*ko.Duplex DuplexNoTumble/긴-가장자리 제본선: "" +*ko.Duplex DuplexTumble/짧은-가장자리 제본선: "" +*ko.Translation InputSlot/용지 공급: "" +*ko.InputSlot Tray1/용지함 1: "" +*ko.InputSlot Tray2/용지함 2: "" +*ko.InputSlot ManualFeed/수동 급지: "" +*ko.Translation InstallableOptions/Installable Options: "" +*ko.Translation HPOption_Duplexer/양면 인쇄 부속품: "" +*ko.HPOption_Duplexer True/켜짐: "" +*ko.HPOption_Duplexer False/꺼짐: "" +*ko.Translation HPColorOptionsPanel/색상: "" +*ko.Translation HPPJLColorAsGray/컬러를 흑백음영으로 인쇄: "" +*ko.HPPJLColorAsGray yes/켜짐: "" +*ko.HPPJLColorAsGray no/꺼짐: "" +*ko.Translation HPRGBEmulation/RGB 색상: "" +*ko.HPRGBEmulation DefaultSRGB/기본값(sRGB): "" +*ko.HPRGBEmulation PhotoSRGB/사진(sRGB): "" +*ko.HPRGBEmulation Adobe/사진(Adobe RGB 1998): "" +*ko.HPRGBEmulation VividSRGB/선명하게 (sRGB): "" +*ko.HPRGBEmulation HPRGBEmulationNone/없음: "" +*ko.Translation HPEdgeControl/가장자리 제어: "" +*ko.HPEdgeControl HPEdgeControlOff/꺼짐: "" +*ko.HPEdgeControl Light/밝게: "" +*ko.HPEdgeControl Normal/보통: "" +*ko.HPEdgeControl Max/최대: "" +*ko.Translation HPGeneralHalftone/중간 색조: "" +*ko.HPGeneralHalftone Smooth/문장: "" +*ko.HPGeneralHalftone Detail/자세히: "" +*ko.Translation HPTextNeutralGrays/문장 순 회색: "" +*ko.HPTextNeutralGrays Black/흑색 전용: "" +*ko.HPTextNeutralGrays ProcessBlack/4색: "" +*ko.Translation HPGraphicsNeutralGrays/그래픽 순 회색: "" +*ko.HPGraphicsNeutralGrays Black/흑색 전용: "" +*ko.HPGraphicsNeutralGrays ProcessBlack/4색: "" +*ko.Translation HPPhotoNeutralGrays/사진 순말: "" +*ko.HPPhotoNeutralGrays Black/흑색 전용: "" +*ko.HPPhotoNeutralGrays ProcessBlack/4색: "" +*ko.Translation HPPaperQualityPanel/Paper/Quality: "" +*ko.Translation HPPJLEconoMode/EconoMode: "" +*ko.HPPJLEconoMode True/켜짐: "" +*ko.HPPJLEconoMode False/꺼짐: "" +*ko.Translation MediaType/용지 종류: "" +*ko.MediaType Unspecified/지정되지 않음: "" +*ko.MediaType Plain/일반용지: "" +*ko.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*ko.MediaType HPLaserJet90/HP LaserJet 90g: "" +*ko.MediaType HPColorLaserMatte105/HP Color Laser 무광 105g: "" +*ko.MediaType HPPremiumChoiceMatte120/HP 프리미엄 초이스 무광 120g: "" +*ko.MediaType HPBrochureMatte150/HP 무광택 브로셔 150g: "" +*ko.MediaType HPCoverMatte200/HP 표지 무광 200g: "" +*ko.MediaType HPMattePhoto200/HP 무광택 사진 200g: "" +*ko.MediaType HPPremiumPresentationGlossy120/HP 프리미엄 프리젠테이션 광택 120g: "" +*ko.MediaType HPBrochureGlossy150/HP 광택 브로셔 150g: "" +*ko.MediaType HPTrifoldBrochureGlossy150/HP 3중 접기 광택 브로셔 150g: "" +*ko.MediaType HPBrochureGlossy200/HP 광택 브로셔 200g: "" +*ko.MediaType Light6074/경량지 60-74g: "" +*ko.MediaType Intermediate8595/보통지 85-95g: "" +*ko.MediaType MidWeight96110/보통 중량지 96-110g: "" +*ko.MediaType Heavy111130/중량지 111-130g: "" +*ko.MediaType ExtraHeavy131175/초중량지 131-175g: "" +*ko.MediaType HeavyGlossy111130/광택 중량지 111-130g: "" +*ko.MediaType ExtraHeavyGlossy131175/고광택 용지 131-175g: "" +*ko.MediaType CardGlossy176220/인사장 유광 176-220g: "" +*ko.MediaType ColorLaserTransparency/Color Laser 투명 필름: "" +*ko.MediaType Labels/레이블: "" +*ko.MediaType Letterhead/레터헤드: "" +*ko.MediaType Envelope/봉투: "" +*ko.MediaType HeavyEnvelope/중량 봉투: "" +*ko.MediaType Preprinted/미리 인쇄: "" +*ko.MediaType Prepunched/천공 용지: "" +*ko.MediaType Colored/색상지: "" +*ko.MediaType Bond/본드지: "" +*ko.MediaType Recycled/재활용지: "" +*ko.MediaType Rough/거친 용지: "" +*ko.MediaType HeavyRough/중량 거친 용지: "" +*ko.MediaType OpaqueFilm/오파크 필름: "" +*ko.APPrinterPreset ChartsAndGraphs/차트 및 그래픽: "" +*ko.cupsICCProfile RGB../sRGB Matching Profile: "" +*ko.cupsICCProfile CMYK../CMYK Matching Profile: "" +*ko.cupsICCProfile Gray../Gray Matching Profile: "" +*ko.cupsMarkerName cyan/시안색: "" +*ko.cupsMarkerName magenta/마젠타색: "" +*ko.cupsMarkerName yellow/노랑색: "" +*ko.cupsMarkerName black/검정색: "" +*no.Translation Manufacturer/HP: "" +*no.Translation ModelName/HP Color LaserJet Pro M252: "" +*no.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*no.Translation NickName/HP Color LaserJet Pro M252: "" +*no.Translation PageSize/Papirstørrelse: "" +*no.PageSize Letter/US Letter: "" +*no.PageSize Legal/US Legal: "" +*no.PageSize Executive/Executive: "" +*no.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*no.PageSize 4x6/4x6: "" +*no.PageSize 5x8/5x8: "" +*no.PageSize A4/A4: "" +*no.PageSize A5/A5: "" +*no.PageSize A6/A6: "" +*no.PageSize B5/JIS B5: "" +*no.PageSize B6/JIS B6: "" +*no.PageSize Env4x6/10x15 cm: "" +*no.PageSize Oficio/Oficio 216x340 mm: "" +*no.PageSize 195x270mm/16K 195x270 mm: "" +*no.PageSize 184x260mm/16K 184x260 mm: "" +*no.PageSize 7.75x10.75/16K 197x273 mm: "" +*no.PageSize Postcard/Postcard: "" +*no.PageSize DoublePostcardRotated/Dobbelt postkort langside: "" +*no.PageSize Env10/Comm10-konvolutt: "" +*no.PageSize EnvMonarch/Monarch-konvolutt: "" +*no.PageSize EnvISOB5/B5-konvolutt: "" +*no.PageSize EnvC5/C5-konvolutt: "" +*no.PageSize EnvDL/DL-konvolutt: "" +*no.Translation Duplex/Tosidig: "" +*no.Duplex None/Av: "" +*no.Duplex DuplexNoTumble/Innbinding på langsiden: "" +*no.Duplex DuplexTumble/Innbinding på kortsiden: "" +*no.Translation InputSlot/Papirmating: "" +*no.InputSlot Tray1/Skuff 1: "" +*no.InputSlot Tray2/Skuff 2: "" +*no.InputSlot ManualFeed/Manuell mater: "" +*no.Translation InstallableOptions/Installable Options: "" +*no.Translation HPOption_Duplexer/Tosidig-enhet: "" +*no.HPOption_Duplexer True/På: "" +*no.HPOption_Duplexer False/Av: "" +*no.Translation HPColorOptionsPanel/Farge: "" +*no.Translation HPPJLColorAsGray/Skriv ut farger i grått: "" +*no.HPPJLColorAsGray yes/På: "" +*no.HPPJLColorAsGray no/Av: "" +*no.Translation HPRGBEmulation/RGB-farge: "" +*no.HPRGBEmulation DefaultSRGB/Standard (sRGB): "" +*no.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*no.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*no.HPRGBEmulation VividSRGB/Sterk (sRGB): "" +*no.HPRGBEmulation HPRGBEmulationNone/Ingen: "" +*no.Translation HPEdgeControl/Kantkontroll: "" +*no.HPEdgeControl HPEdgeControlOff/Av: "" +*no.HPEdgeControl Light/Lys: "" +*no.HPEdgeControl Normal/Normal: "" +*no.HPEdgeControl Max/Maksimum: "" +*no.Translation HPGeneralHalftone/Halvtone: "" +*no.HPGeneralHalftone Smooth/Jevn: "" +*no.HPGeneralHalftone Detail/Detaljert: "" +*no.Translation HPTextNeutralGrays/Tekst, nøytrale gråtoner: "" +*no.HPTextNeutralGrays Black/Bare svart: "" +*no.HPTextNeutralGrays ProcessBlack/4-fargers: "" +*no.Translation HPGraphicsNeutralGrays/Grafikk, nøytrale gråtoner: "" +*no.HPGraphicsNeutralGrays Black/Bare svart: "" +*no.HPGraphicsNeutralGrays ProcessBlack/4-fargers: "" +*no.Translation HPPhotoNeutralGrays/Foto, nøytrale gråtoner: "" +*no.HPPhotoNeutralGrays Black/Bare svart: "" +*no.HPPhotoNeutralGrays ProcessBlack/4-fargers: "" +*no.Translation HPPaperQualityPanel/Paper/Quality: "" +*no.Translation HPPJLEconoMode/EconoMode: "" +*no.HPPJLEconoMode True/På: "" +*no.HPPJLEconoMode False/Av: "" +*no.Translation MediaType/Utskriftsmateriale: "" +*no.MediaType Unspecified/Uspesifisert: "" +*no.MediaType Plain/Vanlig: "" +*no.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*no.MediaType HPLaserJet90/HP LaserJet 90g: "" +*no.MediaType HPColorLaserMatte105/HP Fargelaser matt, 105g: "" +*no.MediaType HPPremiumChoiceMatte120/HP Premium Choice matt, 120g: "" +*no.MediaType HPBrochureMatte150/HP-brosjyre, matt, 150g: "" +*no.MediaType HPCoverMatte200/HP Omslag matt, 200g: "" +*no.MediaType HPMattePhoto200/HP Matt foto 200g: "" +*no.MediaType HPPremiumPresentationGlossy120/HP Premium-presentasjon, glanset, 120g: "" +*no.MediaType HPBrochureGlossy150/HP-brosjyre, glanset, 150g: "" +*no.MediaType HPTrifoldBrochureGlossy150/HP-brosjyre, glanset, brettet i tre, 150g: "" +*no.MediaType HPBrochureGlossy200/HP-brosjyre, glanset, 200g: "" +*no.MediaType Light6074/Lys 60-74g: "" +*no.MediaType Intermediate8595/Middels 85-95g: "" +*no.MediaType MidWeight96110/Mellomtungt, 96-110g: "" +*no.MediaType Heavy111130/Tungt 111-130g: "" +*no.MediaType ExtraHeavy131175/Ekstra Tung 131-175g: "" +*no.MediaType HeavyGlossy111130/Tungt, glanset 111-130g: "" +*no.MediaType ExtraHeavyGlossy131175/Ekstra tykt og blankt 131-175g: "" +*no.MediaType CardGlossy176220/Kort glanset, 176-220g: "" +*no.MediaType ColorLaserTransparency/Transpar. for fargelaser: "" +*no.MediaType Labels/Etiketter: "" +*no.MediaType Letterhead/Brevhode: "" +*no.MediaType Envelope/Konvolutt: "" +*no.MediaType HeavyEnvelope/Tung konvolutt: "" +*no.MediaType Preprinted/Forhåndstrykt: "" +*no.MediaType Prepunched/Hullark: "" +*no.MediaType Colored/Farget: "" +*no.MediaType Bond/Brevpapir: "" +*no.MediaType Recycled/Resirkulert: "" +*no.MediaType Rough/Grovt: "" +*no.MediaType HeavyRough/Tungt grovt: "" +*no.MediaType OpaqueFilm/Opak film: "" +*no.APPrinterPreset ChartsAndGraphs/Diagrammer og grafikk: "" +*no.cupsICCProfile RGB../sRGB Matching Profile: "" +*no.cupsICCProfile CMYK../CMYK Matching Profile: "" +*no.cupsICCProfile Gray../Gray Matching Profile: "" +*no.cupsMarkerName cyan/Cyan: "" +*no.cupsMarkerName magenta/Magenta: "" +*no.cupsMarkerName yellow/Gul: "" +*no.cupsMarkerName black/Svart: "" +*nl.Translation Manufacturer/HP: "" +*nl.Translation ModelName/HP Color LaserJet Pro M252: "" +*nl.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*nl.Translation NickName/HP Color LaserJet Pro M252: "" +*nl.Translation PageSize/Materiaalgrootte: "" +*nl.PageSize Letter/US Letter: "" +*nl.PageSize Legal/US Legal: "" +*nl.PageSize Executive/Executive: "" +*nl.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*nl.PageSize 4x6/4x6: "" +*nl.PageSize 5x8/5x8: "" +*nl.PageSize A4/A4: "" +*nl.PageSize A5/A5: "" +*nl.PageSize A6/A6: "" +*nl.PageSize B5/JIS B5: "" +*nl.PageSize B6/JIS B6: "" +*nl.PageSize Env4x6/10x15 cm: "" +*nl.PageSize Oficio/Oficio 216x340 mm: "" +*nl.PageSize 195x270mm/16K 195x270 mm: "" +*nl.PageSize 184x260mm/16K 184x260 mm: "" +*nl.PageSize 7.75x10.75/16K 197x273 mm: "" +*nl.PageSize Postcard/Postcard: "" +*nl.PageSize DoublePostcardRotated/Briefkaart (dubbel) lange kant: "" +*nl.PageSize Env10/Comm10-envelop: "" +*nl.PageSize EnvMonarch/Monarch-envelop: "" +*nl.PageSize EnvISOB5/ISO B5-envelop: "" +*nl.PageSize EnvC5/C5-envelop: "" +*nl.PageSize EnvDL/DL-envelop: "" +*nl.Translation Duplex/Dubbelzijdig: "" +*nl.Duplex None/Uit: "" +*nl.Duplex DuplexNoTumble/Lange kant binden: "" +*nl.Duplex DuplexTumble/Korte kant binden: "" +*nl.Translation InputSlot/Papierinvoer: "" +*nl.InputSlot Tray1/Lade 1: "" +*nl.InputSlot Tray2/Lade 2: "" +*nl.InputSlot ManualFeed/Handinvoer: "" +*nl.Translation InstallableOptions/Installable Options: "" +*nl.Translation HPOption_Duplexer/Duplexeenheid: "" +*nl.HPOption_Duplexer True/Aan: "" +*nl.HPOption_Duplexer False/Uit: "" +*nl.Translation HPColorOptionsPanel/Kleur: "" +*nl.Translation HPPJLColorAsGray/Kleuren afdr. in grijs: "" +*nl.HPPJLColorAsGray yes/Aan: "" +*nl.HPPJLColorAsGray no/Uit: "" +*nl.Translation HPRGBEmulation/RGB-kleur: "" +*nl.HPRGBEmulation DefaultSRGB/Standaard (sRGB): "" +*nl.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*nl.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*nl.HPRGBEmulation VividSRGB/Levendig (sRGB): "" +*nl.HPRGBEmulation HPRGBEmulationNone/Geen: "" +*nl.Translation HPEdgeControl/Randverbetering: "" +*nl.HPEdgeControl HPEdgeControlOff/Uit: "" +*nl.HPEdgeControl Light/Licht: "" +*nl.HPEdgeControl Normal/Normaal: "" +*nl.HPEdgeControl Max/Maximaal: "" +*nl.Translation HPGeneralHalftone/Halftonen: "" +*nl.HPGeneralHalftone Smooth/Gelijkmatig: "" +*nl.HPGeneralHalftone Detail/Gedetailleerd: "" +*nl.Translation HPTextNeutralGrays/Tekst in neutraal grijs: "" +*nl.HPTextNeutralGrays Black/Alleen zwart: "" +*nl.HPTextNeutralGrays ProcessBlack/4-kleuren: "" +*nl.Translation HPGraphicsNeutralGrays/Afbeeld. in neutraal grijs: "" +*nl.HPGraphicsNeutralGrays Black/Alleen zwart: "" +*nl.HPGraphicsNeutralGrays ProcessBlack/4-kleuren: "" +*nl.Translation HPPhotoNeutralGrays/Foto's in neutraal grijs: "" +*nl.HPPhotoNeutralGrays Black/Alleen zwart: "" +*nl.HPPhotoNeutralGrays ProcessBlack/4-kleuren: "" +*nl.Translation HPPaperQualityPanel/Paper/Quality: "" +*nl.Translation HPPJLEconoMode/EconoMode: "" +*nl.HPPJLEconoMode True/Aan: "" +*nl.HPPJLEconoMode False/Uit: "" +*nl.Translation MediaType/Type afdrukmateriaal: "" +*nl.MediaType Unspecified/Onbekend: "" +*nl.MediaType Plain/Gewoon: "" +*nl.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*nl.MediaType HPLaserJet90/HP LaserJet 90g: "" +*nl.MediaType HPColorLaserMatte105/HP Color Laser, Mat 105g: "" +*nl.MediaType HPPremiumChoiceMatte120/HP Premium Choice, Mat 120g: "" +*nl.MediaType HPBrochureMatte150/HP mat brochurepapier 150g: "" +*nl.MediaType HPCoverMatte200/HP Omslagpapier, Mat 200g: "" +*nl.MediaType HPMattePhoto200/HP Fotopapier, Mat 200g: "" +*nl.MediaType HPPremiumPresentationGlossy120/HP Premium glanzend presentatiepapier 120g: "" +*nl.MediaType HPBrochureGlossy150/HP glanzend brochurepapier 150g: "" +*nl.MediaType HPTrifoldBrochureGlossy150/HP in drieën gevouwen glanzend brochurepapier 150g: "" +*nl.MediaType HPBrochureGlossy200/HP glanzend brochurepapier 200g: "" +*nl.MediaType Light6074/Licht 60-74g: "" +*nl.MediaType Intermediate8595/Intermediate 85-95g: "" +*nl.MediaType MidWeight96110/Middengewicht 96-110g: "" +*nl.MediaType Heavy111130/Zwaar 111-130g: "" +*nl.MediaType ExtraHeavy131175/Extra Zwaar 131-175g: "" +*nl.MediaType HeavyGlossy111130/Zwaarglanzend 111-130g: "" +*nl.MediaType ExtraHeavyGlossy131175/Extra zwaar glanzend 131-175g: "" +*nl.MediaType CardGlossy176220/Karton, Glanzend 176-220g: "" +*nl.MediaType ColorLaserTransparency/Transparant voor kleurenlaser: "" +*nl.MediaType Labels/Etiketten: "" +*nl.MediaType Letterhead/Briefpapier: "" +*nl.MediaType Envelope/Enveloppen: "" +*nl.MediaType HeavyEnvelope/Zware envelop: "" +*nl.MediaType Preprinted/Voorbedrukt: "" +*nl.MediaType Prepunched/Geperforeerd: "" +*nl.MediaType Colored/Gekleurd: "" +*nl.MediaType Bond/Bankpost: "" +*nl.MediaType Recycled/Gerecycled: "" +*nl.MediaType Rough/Ruw: "" +*nl.MediaType HeavyRough/Zwaar ruw: "" +*nl.MediaType OpaqueFilm/Ondoorzichtige film: "" +*nl.APPrinterPreset ChartsAndGraphs/Tabellen en grafieken: "" +*nl.cupsICCProfile RGB../sRGB Matching Profile: "" +*nl.cupsICCProfile CMYK../CMYK Matching Profile: "" +*nl.cupsICCProfile Gray../Gray Matching Profile: "" +*nl.cupsMarkerName cyan/Cyaan: "" +*nl.cupsMarkerName magenta/Magenta: "" +*nl.cupsMarkerName yellow/Geel: "" +*nl.cupsMarkerName black/Zwart: "" +*pt.Translation Manufacturer/HP: "" +*pt.Translation ModelName/HP Color LaserJet Pro M252: "" +*pt.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*pt.Translation NickName/HP Color LaserJet Pro M252: "" +*pt.Translation PageSize/Tamanho de Mídia: "" +*pt.PageSize Letter/US Letter: "" +*pt.PageSize Legal/US Legal: "" +*pt.PageSize Executive/Executivo: "" +*pt.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*pt.PageSize 4x6/4x6: "" +*pt.PageSize 5x8/5x8: "" +*pt.PageSize A4/A4: "" +*pt.PageSize A5/A5: "" +*pt.PageSize A6/A6: "" +*pt.PageSize B5/JIS B5: "" +*pt.PageSize B6/JIS B6: "" +*pt.PageSize Env4x6/10x15 cm: "" +*pt.PageSize Oficio/Oficio 216x340 mm: "" +*pt.PageSize 195x270mm/16K 195x270 mm: "" +*pt.PageSize 184x260mm/16K 184x260 mm: "" +*pt.PageSize 7.75x10.75/16K 197x273 mm: "" +*pt.PageSize Postcard/Postcard: "" +*pt.PageSize DoublePostcardRotated/Cartão-Postal Duplo Margem Longa: "" +*pt.PageSize Env10/Envelope Comm10: "" +*pt.PageSize EnvMonarch/Envelope Monarch: "" +*pt.PageSize EnvISOB5/Envelope B5: "" +*pt.PageSize EnvC5/Envelope C5: "" +*pt.PageSize EnvDL/Envelope DL: "" +*pt.Translation Duplex/Frente e verso: "" +*pt.Duplex None/Desativado: "" +*pt.Duplex DuplexNoTumble/Encadernação com Margem Longa: "" +*pt.Duplex DuplexTumble/Encadernação com Margem Curta: "" +*pt.Translation InputSlot/Alimentação de Papel: "" +*pt.InputSlot Tray1/Bandeja 1: "" +*pt.InputSlot Tray2/Bandeja 2: "" +*pt.InputSlot ManualFeed/Alimentação manual: "" +*pt.Translation InstallableOptions/Installable Options: "" +*pt.Translation HPOption_Duplexer/Unidade dúplex: "" +*pt.HPOption_Duplexer True/Ativado: "" +*pt.HPOption_Duplexer False/Desativado: "" +*pt.Translation HPColorOptionsPanel/Cor: "" +*pt.Translation HPPJLColorAsGray/Imprimir cor como cinza: "" +*pt.HPPJLColorAsGray yes/Ativado: "" +*pt.HPPJLColorAsGray no/Desativado: "" +*pt.Translation HPRGBEmulation/Cor RGB: "" +*pt.HPRGBEmulation DefaultSRGB/Padrão (sRGB): "" +*pt.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*pt.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*pt.HPRGBEmulation VividSRGB/Víva (sRGB): "" +*pt.HPRGBEmulation HPRGBEmulationNone/Nenhum: "" +*pt.Translation HPEdgeControl/Controle de margem: "" +*pt.HPEdgeControl HPEdgeControlOff/Desativado: "" +*pt.HPEdgeControl Light/Claro: "" +*pt.HPEdgeControl Normal/Normal: "" +*pt.HPEdgeControl Max/Máximo: "" +*pt.Translation HPGeneralHalftone/Meio-tom: "" +*pt.HPGeneralHalftone Smooth/Nivelado: "" +*pt.HPGeneralHalftone Detail/Detalhes: "" +*pt.Translation HPTextNeutralGrays/Texto em cinzas neutros: "" +*pt.HPTextNeutralGrays Black/Somente em preto: "" +*pt.HPTextNeutralGrays ProcessBlack/4 cores: "" +*pt.Translation HPGraphicsNeutralGrays/Gráfico em cinzas neutros: "" +*pt.HPGraphicsNeutralGrays Black/Somente em preto: "" +*pt.HPGraphicsNeutralGrays ProcessBlack/4 cores: "" +*pt.Translation HPPhotoNeutralGrays/Foto em cinzas neutros: "" +*pt.HPPhotoNeutralGrays Black/Somente em preto: "" +*pt.HPPhotoNeutralGrays ProcessBlack/4 cores: "" +*pt.Translation HPPaperQualityPanel/Paper/Quality: "" +*pt.Translation HPPJLEconoMode/EconoMode: "" +*pt.HPPJLEconoMode True/Ativado: "" +*pt.HPPJLEconoMode False/Desativado: "" +*pt.Translation MediaType/Tipo de mídia: "" +*pt.MediaType Unspecified/Não especificado: "" +*pt.MediaType Plain/Comum: "" +*pt.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*pt.MediaType HPLaserJet90/HP LaserJet 90g: "" +*pt.MediaType HPColorLaserMatte105/HP Color Laser 105g, fosco: "" +*pt.MediaType HPPremiumChoiceMatte120/HP Premium Choice fosco, 120g: "" +*pt.MediaType HPBrochureMatte150/Brochura HP fosco, 150g: "" +*pt.MediaType HPCoverMatte200/HP Cover 200g, fosco: "" +*pt.MediaType HPMattePhoto200/Fotogr. HP fosco, 200g: "" +*pt.MediaType HPPremiumPresentationGlossy120/Apresentação Premium brilhante HP 120g: "" +*pt.MediaType HPBrochureGlossy150/Brochura HP brilhante, 150g: "" +*pt.MediaType HPTrifoldBrochureGlossy150/Brochura HP brilhante com três dobras, 150g: "" +*pt.MediaType HPBrochureGlossy200/Brochura HP brilhante, 200g: "" +*pt.MediaType Light6074/Leve 60-74g: "" +*pt.MediaType Intermediate8595/Intermedio 85-95g: "" +*pt.MediaType MidWeight96110/Semipesado 96-110g: "" +*pt.MediaType Heavy111130/Pesado 111-130g: "" +*pt.MediaType ExtraHeavy131175/Extrapesado 131-175g: "" +*pt.MediaType HeavyGlossy111130/Espesso brilhante 111-130g: "" +*pt.MediaType ExtraHeavyGlossy131175/Brilhante com gramatura extra 131-175g: "" +*pt.MediaType CardGlossy176220/Cartão brilhante, 176-220g: "" +*pt.MediaType ColorLaserTransparency/Transpar. laser a cores: "" +*pt.MediaType Labels/Etiquetas: "" +*pt.MediaType Letterhead/Timbrado: "" +*pt.MediaType Envelope/Envelope: "" +*pt.MediaType HeavyEnvelope/Envelope pesado: "" +*pt.MediaType Preprinted/Pré-impresso: "" +*pt.MediaType Prepunched/Perfurado: "" +*pt.MediaType Colored/Colorido: "" +*pt.MediaType Bond/Superbond: "" +*pt.MediaType Recycled/Reciclado: "" +*pt.MediaType Rough/Áspero: "" +*pt.MediaType HeavyRough/Áspero pesado: "" +*pt.MediaType OpaqueFilm/Filme opaco: "" +*pt.APPrinterPreset ChartsAndGraphs/Tabelas e gráficos: "" +*pt.cupsICCProfile RGB../sRGB Matching Profile: "" +*pt.cupsICCProfile CMYK../CMYK Matching Profile: "" +*pt.cupsICCProfile Gray../Gray Matching Profile: "" +*pt.cupsMarkerName cyan/Ciano: "" +*pt.cupsMarkerName magenta/Magenta: "" +*pt.cupsMarkerName yellow/Amarelo: "" +*pt.cupsMarkerName black/Preto: "" +*ru.Translation Manufacturer/HP: "" +*ru.Translation ModelName/HP Color LaserJet Pro M252: "" +*ru.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*ru.Translation NickName/HP Color LaserJet Pro M252: "" +*ru.Translation PageSize/Размер бумаги: "" +*ru.PageSize Letter/US Letter: "" +*ru.PageSize Legal/US Legal: "" +*ru.PageSize Executive/Executive: "" +*ru.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*ru.PageSize 4x6/4 x 6: "" +*ru.PageSize 5x8/5 x 8: "" +*ru.PageSize A4/A4: "" +*ru.PageSize A5/A5: "" +*ru.PageSize A6/A6: "" +*ru.PageSize B5/JIS B5: "" +*ru.PageSize B6/JIS B6: "" +*ru.PageSize Env4x6/10 x 15 см: "" +*ru.PageSize Oficio/Oficio 216x340 mm: "" +*ru.PageSize 195x270mm/16K 195 x 270 мм: "" +*ru.PageSize 184x260mm/16K 184 x 260 мм: "" +*ru.PageSize 7.75x10.75/16K 197 x 273 мм: "" +*ru.PageSize Postcard/Postcard: "" +*ru.PageSize DoublePostcardRotated/Postcard Double Long Edge: "" +*ru.PageSize Env10/Конверт Comm10: "" +*ru.PageSize EnvMonarch/Конверт Monarch: "" +*ru.PageSize EnvISOB5/Конверт B5: "" +*ru.PageSize EnvC5/Конверт C5: "" +*ru.PageSize EnvDL/Конверт DL: "" +*ru.Translation Duplex/Двусторонняя: "" +*ru.Duplex None/Выкл.: "" +*ru.Duplex DuplexNoTumble/Прошивка вдоль длинного края: "" +*ru.Duplex DuplexTumble/Прошивка вдоль короткого края: "" +*ru.Translation InputSlot/Подача бумаги: "" +*ru.InputSlot Tray1/Лоток 1: "" +*ru.InputSlot Tray2/Лоток 2: "" +*ru.InputSlot ManualFeed/Ручная подача: "" +*ru.Translation InstallableOptions/Installable Options: "" +*ru.Translation HPOption_Duplexer/Модуль дуплекса: "" +*ru.HPOption_Duplexer True/Вкл.: "" +*ru.HPOption_Duplexer False/Выкл.: "" +*ru.Translation HPColorOptionsPanel/Цвет: "" +*ru.Translation HPPJLColorAsGray/Печать цвета серым: "" +*ru.HPPJLColorAsGray yes/Вкл.: "" +*ru.HPPJLColorAsGray no/Выкл.: "" +*ru.Translation HPRGBEmulation/Цвет RGB: "" +*ru.HPRGBEmulation DefaultSRGB/По умолчанию (sRGB): "" +*ru.HPRGBEmulation PhotoSRGB/Фото (sRGB): "" +*ru.HPRGBEmulation Adobe/Фото (Adobe RGB 1998): "" +*ru.HPRGBEmulation VividSRGB/Яркое (sRGB): "" +*ru.HPRGBEmulation HPRGBEmulationNone/Нет: "" +*ru.Translation HPEdgeControl/Контроль края: "" +*ru.HPEdgeControl HPEdgeControlOff/Выкл.: "" +*ru.HPEdgeControl Light/Светлый: "" +*ru.HPEdgeControl Normal/Обычное: "" +*ru.HPEdgeControl Max/Максимум: "" +*ru.Translation HPGeneralHalftone/Полутона: "" +*ru.HPGeneralHalftone Smooth/Гладкое: "" +*ru.HPGeneralHalftone Detail/Детальное: "" +*ru.Translation HPTextNeutralGrays/Нейтр. серый (текст): "" +*ru.HPTextNeutralGrays Black/Только черный: "" +*ru.HPTextNeutralGrays ProcessBlack/Четырехцветный: "" +*ru.Translation HPGraphicsNeutralGrays/Нейтр. серый (граф.): "" +*ru.HPGraphicsNeutralGrays Black/Только черный: "" +*ru.HPGraphicsNeutralGrays ProcessBlack/Четырехцветный: "" +*ru.Translation HPPhotoNeutralGrays/Нейтр. серый (фото): "" +*ru.HPPhotoNeutralGrays Black/Только черный: "" +*ru.HPPhotoNeutralGrays ProcessBlack/Четырехцветный: "" +*ru.Translation HPPaperQualityPanel/Paper/Quality: "" +*ru.Translation HPPJLEconoMode/EconoMode: "" +*ru.HPPJLEconoMode True/Вкл.: "" +*ru.HPPJLEconoMode False/Выкл.: "" +*ru.Translation MediaType/Тип носителя: "" +*ru.MediaType Unspecified/Не указано: "" +*ru.MediaType Plain/Обычная бумага: "" +*ru.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*ru.MediaType HPLaserJet90/HP LaserJet 90г: "" +*ru.MediaType HPColorLaserMatte105/HP для цветной лазерной печати, матовая 105г: "" +*ru.MediaType HPPremiumChoiceMatte120/HP повышенного качества, матовая 120г: "" +*ru.MediaType HPBrochureMatte150/Бумага HP для брошюр, матовая, 150г: "" +*ru.MediaType HPCoverMatte200/Бумага HP для обложек, матовая 200г: "" +*ru.MediaType HPMattePhoto200/Матовая фотобумага HP 200г: "" +*ru.MediaType HPPremiumPresentationGlossy120/Бум. HP повыш. кач. для презентаций, глянц. 120г: "" +*ru.MediaType HPBrochureGlossy150/Бумага HP для брошюр, глянцевая, 150г: "" +*ru.MediaType HPTrifoldBrochureGlossy150/Бум. HP для склад-х в 3 слоя брошюр, глянц. 150г: "" +*ru.MediaType HPBrochureGlossy200/Бумага HP для брошюр, глянцевая, 200г: "" +*ru.MediaType Light6074/Легкая 60-74г: "" +*ru.MediaType Intermediate8595/Прокладка 85-95г: "" +*ru.MediaType MidWeight96110/Среднеплотная 96-110г: "" +*ru.MediaType Heavy111130/Плотная 111-130г: "" +*ru.MediaType ExtraHeavy131175/Сверхплотная 131-175г: "" +*ru.MediaType HeavyGlossy111130/Плотная глянцевая 111-130г: "" +*ru.MediaType ExtraHeavyGlossy131175/Сверхплотная глянцевая 131-175г: "" +*ru.MediaType CardGlossy176220/Бумага для открыток, глянцевая 176-220г: "" +*ru.MediaType ColorLaserTransparency/Прозрачная пленка для цветн. лазер. печати: "" +*ru.MediaType Labels/Этикетки: "" +*ru.MediaType Letterhead/Фирменный бланк: "" +*ru.MediaType Envelope/Конверт: "" +*ru.MediaType HeavyEnvelope/Плотный конверт: "" +*ru.MediaType Preprinted/Печатный бланк: "" +*ru.MediaType Prepunched/Перфорированная бумага: "" +*ru.MediaType Colored/Цветная: "" +*ru.MediaType Bond/Высокосортная: "" +*ru.MediaType Recycled/Бумага из вторсырья: "" +*ru.MediaType Rough/Грубая бумага: "" +*ru.MediaType HeavyRough/Плотная грубая: "" +*ru.MediaType OpaqueFilm/Непрозрачный диапозитив: "" +*ru.APPrinterPreset ChartsAndGraphs/Диаграммы и графики: "" +*ru.cupsICCProfile RGB../sRGB Matching Profile: "" +*ru.cupsICCProfile CMYK../CMYK Matching Profile: "" +*ru.cupsICCProfile Gray../Gray Matching Profile: "" +*ru.cupsMarkerName cyan/Голубой: "" +*ru.cupsMarkerName magenta/Пурпурный: "" +*ru.cupsMarkerName yellow/Желтый: "" +*ru.cupsMarkerName black/Черный: "" +*sv.Translation Manufacturer/HP: "" +*sv.Translation ModelName/HP Color LaserJet Pro M252: "" +*sv.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*sv.Translation NickName/HP Color LaserJet Pro M252: "" +*sv.Translation PageSize/Mediestorlek: "" +*sv.PageSize Letter/US Letter: "" +*sv.PageSize Legal/US Legal: "" +*sv.PageSize Executive/Executive: "" +*sv.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*sv.PageSize 4x6/4x6: "" +*sv.PageSize 5x8/5x8: "" +*sv.PageSize A4/A4: "" +*sv.PageSize A5/A5: "" +*sv.PageSize A6/A6: "" +*sv.PageSize B5/JIS B5: "" +*sv.PageSize B6/JIS B6: "" +*sv.PageSize Env4x6/10x15 cm: "" +*sv.PageSize Oficio/Oficio 216x340 mm: "" +*sv.PageSize 195x270mm/16K 195x270 mm: "" +*sv.PageSize 184x260mm/16K 184x260 mm: "" +*sv.PageSize 7.75x10.75/16K 197x273 mm: "" +*sv.PageSize Postcard/Postcard: "" +*sv.PageSize DoublePostcardRotated/Vykort - dubbel med lång kant: "" +*sv.PageSize Env10/Comm10-kuvert: "" +*sv.PageSize EnvMonarch/Monarch-kuvert: "" +*sv.PageSize EnvISOB5/ISO B5-kuvert: "" +*sv.PageSize EnvC5/C5-kuvert: "" +*sv.PageSize EnvDL/DL-kuvert: "" +*sv.Translation Duplex/Dubbelsidig: "" +*sv.Duplex None/Av: "" +*sv.Duplex DuplexNoTumble/Häftning långsida: "" +*sv.Duplex DuplexTumble/Häftning kortsida: "" +*sv.Translation InputSlot/Pappersmatare: "" +*sv.InputSlot Tray1/Fack 1: "" +*sv.InputSlot Tray2/Fack 2: "" +*sv.InputSlot ManualFeed/Manuell matning: "" +*sv.Translation InstallableOptions/Installable Options: "" +*sv.Translation HPOption_Duplexer/Tillbehör för dubbelsidig utskrift: "" +*sv.HPOption_Duplexer True/På: "" +*sv.HPOption_Duplexer False/Av: "" +*sv.Translation HPColorOptionsPanel/Färg: "" +*sv.Translation HPPJLColorAsGray/Skriv ut färg i grått: "" +*sv.HPPJLColorAsGray yes/På: "" +*sv.HPPJLColorAsGray no/Av: "" +*sv.Translation HPRGBEmulation/RGB-färg: "" +*sv.HPRGBEmulation DefaultSRGB/Standard (sRGB): "" +*sv.HPRGBEmulation PhotoSRGB/Foto (sRGB): "" +*sv.HPRGBEmulation Adobe/Foto (Adobe RGB 1998): "" +*sv.HPRGBEmulation VividSRGB/Stark (sRGB): "" +*sv.HPRGBEmulation HPRGBEmulationNone/Inget: "" +*sv.Translation HPEdgeControl/Kantkontroll: "" +*sv.HPEdgeControl HPEdgeControlOff/Av: "" +*sv.HPEdgeControl Light/Ljus: "" +*sv.HPEdgeControl Normal/Normal: "" +*sv.HPEdgeControl Max/Högst: "" +*sv.Translation HPGeneralHalftone/Halvton: "" +*sv.HPGeneralHalftone Smooth/Jämnt: "" +*sv.HPGeneralHalftone Detail/Detalj: "" +*sv.Translation HPTextNeutralGrays/Text neutral grå: "" +*sv.HPTextNeutralGrays Black/Endast svart: "" +*sv.HPTextNeutralGrays ProcessBlack/4-färg: "" +*sv.Translation HPGraphicsNeutralGrays/Bilder neutral grå: "" +*sv.HPGraphicsNeutralGrays Black/Endast svart: "" +*sv.HPGraphicsNeutralGrays ProcessBlack/4-färg: "" +*sv.Translation HPPhotoNeutralGrays/Foto neutral grå: "" +*sv.HPPhotoNeutralGrays Black/Endast svart: "" +*sv.HPPhotoNeutralGrays ProcessBlack/4-färg: "" +*sv.Translation HPPaperQualityPanel/Paper/Quality: "" +*sv.Translation HPPJLEconoMode/EconoMode: "" +*sv.HPPJLEconoMode True/På: "" +*sv.HPPJLEconoMode False/Av: "" +*sv.Translation MediaType/Material: "" +*sv.MediaType Unspecified/Ospecificerad: "" +*sv.MediaType Plain/Vanligt: "" +*sv.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*sv.MediaType HPLaserJet90/HP LaserJet 90g: "" +*sv.MediaType HPColorLaserMatte105/HP Color Laser, matt 105g: "" +*sv.MediaType HPPremiumChoiceMatte120/HP Premium Choice, matt 120g: "" +*sv.MediaType HPBrochureMatte150/HP-broschyr, matt 150g: "" +*sv.MediaType HPCoverMatte200/HP omslag, matt 200g: "" +*sv.MediaType HPMattePhoto200/HP matt foto 200g: "" +*sv.MediaType HPPremiumPresentationGlossy120/HP Premium presentation, glättat, 120g: "" +*sv.MediaType HPBrochureGlossy150/HP-broschyr, glättat, 150g: "" +*sv.MediaType HPTrifoldBrochureGlossy150/HP trippelvikt broschyr, glättat, 150g: "" +*sv.MediaType HPBrochureGlossy200/HP-broschyr, glättat, 200g: "" +*sv.MediaType Light6074/Lätt 60-74g: "" +*sv.MediaType Intermediate8595/Medelvikt 85-95g: "" +*sv.MediaType MidWeight96110/Mellanvikt 96-110g: "" +*sv.MediaType Heavy111130/Tungt 111-130g: "" +*sv.MediaType ExtraHeavy131175/Extra Tungt 131-175g: "" +*sv.MediaType HeavyGlossy111130/Tungt glättat 111-130g: "" +*sv.MediaType ExtraHeavyGlossy131175/Extra tungt glättat 131-175g: "" +*sv.MediaType CardGlossy176220/Kort, glättat 176-220g: "" +*sv.MediaType ColorLaserTransparency/Färglaser OH-film: "" +*sv.MediaType Labels/Etiketter: "" +*sv.MediaType Letterhead/Brevpapper: "" +*sv.MediaType Envelope/Kuvert: "" +*sv.MediaType HeavyEnvelope/Tungt kuvert: "" +*sv.MediaType Preprinted/Förtryckt: "" +*sv.MediaType Prepunched/Hålat: "" +*sv.MediaType Colored/Färgat: "" +*sv.MediaType Bond/Finpapper: "" +*sv.MediaType Recycled/Returpapper: "" +*sv.MediaType Rough/Grovt: "" +*sv.MediaType HeavyRough/Tungt grovt: "" +*sv.MediaType OpaqueFilm/Ej genomskinlig film: "" +*sv.APPrinterPreset ChartsAndGraphs/Diagram och grafik: "" +*sv.cupsICCProfile RGB../sRGB Matching Profile: "" +*sv.cupsICCProfile CMYK../CMYK Matching Profile: "" +*sv.cupsICCProfile Gray../Gray Matching Profile: "" +*sv.cupsMarkerName cyan/Cyan: "" +*sv.cupsMarkerName magenta/Magenta: "" +*sv.cupsMarkerName yellow/Gul: "" +*sv.cupsMarkerName black/Svart: "" +*zh_CN.Translation Manufacturer/HP: "" +*zh_CN.Translation ModelName/HP Color LaserJet Pro M252: "" +*zh_CN.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*zh_CN.Translation NickName/HP Color LaserJet Pro M252: "" +*zh_CN.Translation PageSize/介质大小: "" +*zh_CN.PageSize Letter/US Letter: "" +*zh_CN.PageSize Legal/US Legal: "" +*zh_CN.PageSize Executive/Executive: "" +*zh_CN.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*zh_CN.PageSize 4x6/4x6: "" +*zh_CN.PageSize 5x8/5x8: "" +*zh_CN.PageSize A4/A4: "" +*zh_CN.PageSize A5/A5: "" +*zh_CN.PageSize A6/A6: "" +*zh_CN.PageSize B5/JIS B5: "" +*zh_CN.PageSize B6/JIS B6: "" +*zh_CN.PageSize Env4x6/10x15 厘米: "" +*zh_CN.PageSize Oficio/Oficio 216x340 mm: "" +*zh_CN.PageSize 195x270mm/16K 195x270 毫米: "" +*zh_CN.PageSize 184x260mm/16K 184x260 毫米: "" +*zh_CN.PageSize 7.75x10.75/16K 197x273 毫米: "" +*zh_CN.PageSize Postcard/Postcard: "" +*zh_CN.PageSize DoublePostcardRotated/明信片-双面长边: "" +*zh_CN.PageSize Env10/信封 Comm10: "" +*zh_CN.PageSize EnvMonarch/信封 Monarch: "" +*zh_CN.PageSize EnvISOB5/信封 ISO B5: "" +*zh_CN.PageSize EnvC5/信封 C5: "" +*zh_CN.PageSize EnvDL/信封 DL: "" +*zh_CN.Translation Duplex/双面打印: "" +*zh_CN.Duplex None/关: "" +*zh_CN.Duplex DuplexNoTumble/长边装订: "" +*zh_CN.Duplex DuplexTumble/短边装订: "" +*zh_CN.Translation InputSlot/送纸: "" +*zh_CN.InputSlot Tray1/纸盒 1: "" +*zh_CN.InputSlot Tray2/纸盒 2: "" +*zh_CN.InputSlot ManualFeed/手动进纸: "" +*zh_CN.Translation InstallableOptions/Installable Options: "" +*zh_CN.Translation HPOption_Duplexer/双面打印附件: "" +*zh_CN.HPOption_Duplexer True/开: "" +*zh_CN.HPOption_Duplexer False/关: "" +*zh_CN.Translation HPColorOptionsPanel/颜色: "" +*zh_CN.Translation HPPJLColorAsGray/打印颜色为灰色: "" +*zh_CN.HPPJLColorAsGray yes/开: "" +*zh_CN.HPPJLColorAsGray no/关: "" +*zh_CN.Translation HPRGBEmulation/RGB 颜色: "" +*zh_CN.HPRGBEmulation DefaultSRGB/默认 (sRGB): "" +*zh_CN.HPRGBEmulation PhotoSRGB/照片 (sRGB): "" +*zh_CN.HPRGBEmulation Adobe/照片 (Adobe RGB 1998): "" +*zh_CN.HPRGBEmulation VividSRGB/鲜明 (sRGB): "" +*zh_CN.HPRGBEmulation HPRGBEmulationNone/无: "" +*zh_CN.Translation HPEdgeControl/边缘控制: "" +*zh_CN.HPEdgeControl HPEdgeControlOff/关: "" +*zh_CN.HPEdgeControl Light/淡: "" +*zh_CN.HPEdgeControl Normal/正常: "" +*zh_CN.HPEdgeControl Max/最大: "" +*zh_CN.Translation HPGeneralHalftone/半色调: "" +*zh_CN.HPGeneralHalftone Smooth/文本: "" +*zh_CN.HPGeneralHalftone Detail/细节: "" +*zh_CN.Translation HPTextNeutralGrays/文本中性灰色: "" +*zh_CN.HPTextNeutralGrays Black/仅限黑色: "" +*zh_CN.HPTextNeutralGrays ProcessBlack/4 色: "" +*zh_CN.Translation HPGraphicsNeutralGrays/图形中性灰色: "" +*zh_CN.HPGraphicsNeutralGrays Black/仅限黑色: "" +*zh_CN.HPGraphicsNeutralGrays ProcessBlack/4 色: "" +*zh_CN.Translation HPPhotoNeutralGrays/照片中性灰色: "" +*zh_CN.HPPhotoNeutralGrays Black/仅限黑色: "" +*zh_CN.HPPhotoNeutralGrays ProcessBlack/4 色: "" +*zh_CN.Translation HPPaperQualityPanel/Paper/Quality: "" +*zh_CN.Translation HPPJLEconoMode/EconoMode: "" +*zh_CN.HPPJLEconoMode True/开: "" +*zh_CN.HPPJLEconoMode False/关: "" +*zh_CN.Translation MediaType/介质类型: "" +*zh_CN.MediaType Unspecified/未指定: "" +*zh_CN.MediaType Plain/普通纸: "" +*zh_CN.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*zh_CN.MediaType HPLaserJet90/HP LaserJet 90 克纸: "" +*zh_CN.MediaType HPColorLaserMatte105/HP 彩色激光无光泽纸 105g: "" +*zh_CN.MediaType HPPremiumChoiceMatte120/HP 优选无光泽纸 120g: "" +*zh_CN.MediaType HPBrochureMatte150/HP 小册子磨砂纸 150g: "" +*zh_CN.MediaType HPCoverMatte200/HP 无光泽封面纸 200g: "" +*zh_CN.MediaType HPMattePhoto200/HP 无光泽照片纸 200g: "" +*zh_CN.MediaType HPPremiumPresentationGlossy120/HP 高级演示用光泽纸 120g: "" +*zh_CN.MediaType HPBrochureGlossy150/HP 小册子光泽纸 150g: "" +*zh_CN.MediaType HPTrifoldBrochureGlossy150/HP 三折小册子光泽纸 150g: "" +*zh_CN.MediaType HPBrochureGlossy200/HP 小册子光泽纸 200g: "" +*zh_CN.MediaType Light6074/轻磅 60-74g: "" +*zh_CN.MediaType Intermediate8595/光面纸 85-95g: "" +*zh_CN.MediaType MidWeight96110/中等重量纸 96-110g: "" +*zh_CN.MediaType Heavy111130/重磅 111-130g: "" +*zh_CN.MediaType ExtraHeavy131175/超级重磅纸 131-175g: "" +*zh_CN.MediaType HeavyGlossy111130/重磅光泽纸 111-130g: "" +*zh_CN.MediaType ExtraHeavyGlossy131175/超重磅光泽纸 131-175g: "" +*zh_CN.MediaType CardGlossy176220/光泽卡片 176-220g: "" +*zh_CN.MediaType ColorLaserTransparency/彩色激光投影胶片: "" +*zh_CN.MediaType Labels/标签: "" +*zh_CN.MediaType Letterhead/信头纸: "" +*zh_CN.MediaType Envelope/信封: "" +*zh_CN.MediaType HeavyEnvelope/重磅信封: "" +*zh_CN.MediaType Preprinted/预先打印纸: "" +*zh_CN.MediaType Prepunched/预先打孔纸: "" +*zh_CN.MediaType Colored/彩纸: "" +*zh_CN.MediaType Bond/证券纸: "" +*zh_CN.MediaType Recycled/再生纸: "" +*zh_CN.MediaType Rough/粗糙: "" +*zh_CN.MediaType HeavyRough/重磅粗糙纸: "" +*zh_CN.MediaType OpaqueFilm/不透明胶片: "" +*zh_CN.APPrinterPreset ChartsAndGraphs/图表和图形: "" +*zh_CN.cupsICCProfile RGB../sRGB Matching Profile: "" +*zh_CN.cupsICCProfile CMYK../CMYK Matching Profile: "" +*zh_CN.cupsICCProfile Gray../Gray Matching Profile: "" +*zh_CN.cupsMarkerName cyan/青色: "" +*zh_CN.cupsMarkerName magenta/品红色: "" +*zh_CN.cupsMarkerName yellow/黄色: "" +*zh_CN.cupsMarkerName black/黑色: "" +*zh_TW.Translation Manufacturer/HP: "" +*zh_TW.Translation ModelName/HP Color LaserJet Pro M252: "" +*zh_TW.Translation ShortNickName/HP Color LaserJet Pro M252: "" +*zh_TW.Translation NickName/HP Color LaserJet Pro M252: "" +*zh_TW.Translation PageSize/媒體大小: "" +*zh_TW.PageSize Letter/US Letter: "" +*zh_TW.PageSize Legal/US Legal: "" +*zh_TW.PageSize Executive/Executive: "" +*zh_TW.PageSize FanFoldGermanLegal/Oficio 8.5x13: "" +*zh_TW.PageSize 4x6/4x6: "" +*zh_TW.PageSize 5x8/5x8: "" +*zh_TW.PageSize A4/A4: "" +*zh_TW.PageSize A5/A5: "" +*zh_TW.PageSize A6/A6: "" +*zh_TW.PageSize B5/JIS B5: "" +*zh_TW.PageSize B6/JIS B6: "" +*zh_TW.PageSize Env4x6/10x15 厘米: "" +*zh_TW.PageSize Oficio/Oficio 216x340 mm: "" +*zh_TW.PageSize 195x270mm/16K 195x270 公釐: "" +*zh_TW.PageSize 184x260mm/16K 184x260 公釐: "" +*zh_TW.PageSize 7.75x10.75/16K 197x273 公釐: "" +*zh_TW.PageSize Postcard/Postcard: "" +*zh_TW.PageSize DoublePostcardRotated/雙倍大小明信片長邊: "" +*zh_TW.PageSize Env10/Comm10 信封: "" +*zh_TW.PageSize EnvMonarch/Monarch 信封: "" +*zh_TW.PageSize EnvISOB5/ISO B5 信封: "" +*zh_TW.PageSize EnvC5/C5 信封: "" +*zh_TW.PageSize EnvDL/DL 信封: "" +*zh_TW.Translation Duplex/雙面: "" +*zh_TW.Duplex None/關閉: "" +*zh_TW.Duplex DuplexNoTumble/沿長邊裝訂: "" +*zh_TW.Duplex DuplexTumble/沿短邊裝訂: "" +*zh_TW.Translation InputSlot/送紙匣: "" +*zh_TW.InputSlot Tray1/1 號紙匣: "" +*zh_TW.InputSlot Tray2/2 號紙匣: "" +*zh_TW.InputSlot ManualFeed/手動進紙: "" +*zh_TW.Translation InstallableOptions/Installable Options: "" +*zh_TW.Translation HPOption_Duplexer/雙面列印裝置: "" +*zh_TW.HPOption_Duplexer True/開啟: "" +*zh_TW.HPOption_Duplexer False/關閉: "" +*zh_TW.Translation HPColorOptionsPanel/色彩: "" +*zh_TW.Translation HPPJLColorAsGray/用灰色列印彩色: "" +*zh_TW.HPPJLColorAsGray yes/開啟: "" +*zh_TW.HPPJLColorAsGray no/關閉: "" +*zh_TW.Translation HPRGBEmulation/RGB 色彩: "" +*zh_TW.HPRGBEmulation DefaultSRGB/預設 (sRGB): "" +*zh_TW.HPRGBEmulation PhotoSRGB/相紙 (sRGB): "" +*zh_TW.HPRGBEmulation Adobe/相紙 (Adobe RGB 1998): "" +*zh_TW.HPRGBEmulation VividSRGB/鮮明 (sRGB): "" +*zh_TW.HPRGBEmulation HPRGBEmulationNone/無: "" +*zh_TW.Translation HPEdgeControl/邊緣控制: "" +*zh_TW.HPEdgeControl HPEdgeControlOff/關閉: "" +*zh_TW.HPEdgeControl Light/淡: "" +*zh_TW.HPEdgeControl Normal/正常: "" +*zh_TW.HPEdgeControl Max/最大: "" +*zh_TW.Translation HPGeneralHalftone/半色調: "" +*zh_TW.HPGeneralHalftone Smooth/文字: "" +*zh_TW.HPGeneralHalftone Detail/細節: "" +*zh_TW.Translation HPTextNeutralGrays/文字中性灰色: "" +*zh_TW.HPTextNeutralGrays Black/純黑色: "" +*zh_TW.HPTextNeutralGrays ProcessBlack/4 色: "" +*zh_TW.Translation HPGraphicsNeutralGrays/圖形中性灰色: "" +*zh_TW.HPGraphicsNeutralGrays Black/純黑色: "" +*zh_TW.HPGraphicsNeutralGrays ProcessBlack/4 色: "" +*zh_TW.Translation HPPhotoNeutralGrays/照片中性灰色: "" +*zh_TW.HPPhotoNeutralGrays Black/純黑色: "" +*zh_TW.HPPhotoNeutralGrays ProcessBlack/4 色: "" +*zh_TW.Translation HPPaperQualityPanel/Paper/Quality: "" +*zh_TW.Translation HPPJLEconoMode/EconoMode: "" +*zh_TW.HPPJLEconoMode True/開啟: "" +*zh_TW.HPPJLEconoMode False/關閉: "" +*zh_TW.Translation MediaType/媒體類型: "" +*zh_TW.MediaType Unspecified/未指定: "" +*zh_TW.MediaType Plain/素面紙: "" +*zh_TW.MediaType HPEcoSMARTLite/HP EcoSMART Lite: "" +*zh_TW.MediaType HPLaserJet90/HP LaserJet 90 克紙: "" +*zh_TW.MediaType HPColorLaserMatte105/HP 彩色雷射霧面紙 105g: "" +*zh_TW.MediaType HPPremiumChoiceMatte120/HP 高級霧面紙 120g: "" +*zh_TW.MediaType HPBrochureMatte150/HP 霧面型錄紙 150g: "" +*zh_TW.MediaType HPCoverMatte200/HP 霧面封面紙 200g: "" +*zh_TW.MediaType HPMattePhoto200/HP 霧面相紙 200g: "" +*zh_TW.MediaType HPPremiumPresentationGlossy120/HP 高級光面簡報紙 120g: "" +*zh_TW.MediaType HPBrochureGlossy150/HP 光面型錄紙 150g: "" +*zh_TW.MediaType HPTrifoldBrochureGlossy150/HP 光面三摺型錄紙 150g: "" +*zh_TW.MediaType HPBrochureGlossy200/HP 光面型錄紙 200g: "" +*zh_TW.MediaType Light6074/輕磅紙 60-74g: "" +*zh_TW.MediaType Intermediate8595/嫖醱祧 85-95g: "" +*zh_TW.MediaType MidWeight96110/中磅紙 96-110g: "" +*zh_TW.MediaType Heavy111130/重磅紙 111-130g: "" +*zh_TW.MediaType ExtraHeavy131175/超重磅紙 131-175g: "" +*zh_TW.MediaType HeavyGlossy111130/重磅光面紙 111-130g: "" +*zh_TW.MediaType ExtraHeavyGlossy131175/超厚光滑紙 131-175g: "" +*zh_TW.MediaType CardGlossy176220/光面賀卡紙 176-220g: "" +*zh_TW.MediaType ColorLaserTransparency/彩色雷射投影片: "" +*zh_TW.MediaType Labels/標籤: "" +*zh_TW.MediaType Letterhead/信頭紙: "" +*zh_TW.MediaType Envelope/信封: "" +*zh_TW.MediaType HeavyEnvelope/重磅信封: "" +*zh_TW.MediaType Preprinted/預印的: "" +*zh_TW.MediaType Prepunched/打孔過的: "" +*zh_TW.MediaType Colored/彩紙: "" +*zh_TW.MediaType Bond/雪銅紙: "" +*zh_TW.MediaType Recycled/再生紙: "" +*zh_TW.MediaType Rough/粗糙紙: "" +*zh_TW.MediaType HeavyRough/重磅粗糙紙: "" +*zh_TW.MediaType OpaqueFilm/不透明膠片: "" +*zh_TW.APPrinterPreset ChartsAndGraphs/圖表和圖形: "" +*zh_TW.cupsICCProfile RGB../sRGB Matching Profile: "" +*zh_TW.cupsICCProfile CMYK../CMYK Matching Profile: "" +*zh_TW.cupsICCProfile Gray../Gray Matching Profile: "" +*zh_TW.cupsMarkerName cyan/青藍色: "" +*zh_TW.cupsMarkerName magenta/洋紅色: "" +*zh_TW.cupsMarkerName yellow/黃色: "" +*zh_TW.cupsMarkerName black/黑色: "" +*DefaultFont: Courier +*Font Albertus-ExtraBold: Standard "(001.001)" Standard ROM +*Font Albertus-Medium: Standard "(001.001)" Standard ROM +*Font AntiqueOlive: Standard "(001.001)" Standard ROM +*Font AntiqueOlive-Bold: Standard "(001.001)" Standard ROM +*Font AntiqueOlive-Italic: Standard "(001.001)" Standard ROM +*Font Arial: Standard "(001.001)" Standard ROM +*Font Arial-Bold: Standard "(001.001)" Standard ROM +*Font Arial-BoldItalic: Standard "(001.001)" Standard ROM +*Font Arial-Italic: Standard "(001.001)" Standard ROM +*Font AvantGarde-Book: Standard "(001.001)" Standard ROM +*Font AvantGarde-BookOblique: Standard "(001.001)" Standard ROM +*Font AvantGarde-Demi: Standard "(001.001)" Standard ROM +*Font AvantGarde-DemiOblique: Standard "(001.001)" Standard ROM +*Font Bookman-Demi: Standard "(001.001)" Standard ROM +*Font Bookman-DemiItalic: Standard "(001.001)" Standard ROM +*Font Bookman-Light: Standard "(001.001)" Standard ROM +*Font Bookman-LightItalic: Standard "(001.001)" Standard ROM +*Font BookmanCE-Demi: Win1250 "(001.001)" ExtendedRoman ROM +*Font BookmanCE-DemiItalic: Win1250 "(001.001)" ExtendedRoman ROM +*Font BookmanCE-Light: Win1250 "(001.001)" ExtendedRoman ROM +*Font BookmanCE-LightItalic: Win1250 "(001.001)" ExtendedRoman ROM +*Font CGOmega: Standard "(001.001)" Standard ROM +*Font CGOmega-Bold: Standard "(001.001)" Standard ROM +*Font CGOmega-BoldItalic: Standard "(001.001)" Standard ROM +*Font CGOmega-Italic: Standard "(001.001)" Standard ROM +*Font CGTimes: Standard "(001.001)" Standard ROM +*Font CGTimes-Bold: Standard "(001.001)" Standard ROM +*Font CGTimes-BoldItalic: Standard "(001.001)" Standard ROM +*Font CGTimes-Italic: Standard "(001.001)" Standard ROM +*Font Clarendon-Condensed-Bold: Standard "(001.001)" Standard ROM +*Font Coronet: Standard "(001.001)" Standard ROM +*Font Courier: Standard "(001.001)" Standard ROM +*Font Courier-Bold: Standard "(001.001)" Standard ROM +*Font Courier-BoldOblique: Standard "(001.001)" Standard ROM +*Font Courier-Oblique: Standard "(001.001)" Standard ROM +*Font CourierHP: Standard "(001.001)" Standard ROM +*Font CourierHP-Bold: Standard "(001.001)" Standard ROM +*Font CourierHP-BoldItalic: Standard "(001.001)" Standard ROM +*Font CourierHP-Italic: Standard "(001.001)" Standard ROM +*Font Garamond-Antiqua: Standard "(001.001)" Standard ROM +*Font Garamond-Halbfett: Standard "(001.001)" Standard ROM +*Font Garamond-Kursiv: Standard "(001.001)" Standard ROM +*Font Garamond-KursivHalbfett: Standard "(001.001)" Standard ROM +*Font Helvetica: Standard "(001.001)" Standard ROM +*Font Helvetica-Bold: Standard "(001.001)" Standard ROM +*Font Helvetica-BoldOblique: Standard "(001.001)" Standard ROM +*Font Helvetica-Narrow: Standard "(001.001)" Standard ROM +*Font Helvetica-Narrow-Bold: Standard "(001.001)" Standard ROM +*Font Helvetica-Narrow-BoldOblique: Standard "(001.001)" Standard ROM +*Font Helvetica-Narrow-Oblique: Standard "(001.001)" Standard ROM +*Font Helvetica-Oblique: Standard "(001.001)" Standard ROM +*Font LetterGothic: Standard "(001.001)" Standard ROM +*Font LetterGothic-Bold: Standard "(001.001)" Standard ROM +*Font LetterGothic-Italic: Standard "(001.001)" Standard ROM +*Font Marigold: Standard "(001.001)" Standard ROM +*Font NewCenturySchlbk-Bold: Standard "(001.001)" Standard ROM +*Font NewCenturySchlbk-BoldItalic: Standard "(001.001)" Standard ROM +*Font NewCenturySchlbk-Italic: Standard "(001.001)" Standard ROM +*Font NewCenturySchlbk-Roman: Standard "(001.001)" Standard ROM +*Font Palatino-Bold: Standard "(001.001)" Standard ROM +*Font Palatino-BoldItalic: Standard "(001.001)" Standard ROM +*Font Palatino-Italic: Standard "(001.001)" Standard ROM +*Font Palatino-Roman: Standard "(001.001)" Standard ROM +*Font Symbol: Special "(001.001)" Special ROM +*Font SymbolMT: Standard "(001.001)" Standard ROM +*Font Times-Bold: Standard "(001.001)" Standard ROM +*Font Times-BoldItalic: Standard "(001.001)" Standard ROM +*Font Times-Italic: Standard "(001.001)" Standard ROM +*Font Times-Roman: Standard "(001.001)" Standard ROM +*Font TimesNewRoman: Standard "(001.001)" Standard ROM +*Font TimesNewRoman-Bold: Standard "(001.001)" Standard ROM +*Font TimesNewRoman-BoldItalic: Standard "(001.001)" Standard ROM +*Font TimesNewRoman-Italic: Standard "(001.001)" Standard ROM +*Font Univers-Bold: Standard "(001.001)" Standard ROM +*Font Univers-BoldItalic: Standard "(001.001)" Standard ROM +*Font Univers-Condensed-Bold: Standard "(001.001)" Standard ROM +*Font Univers-Condensed-BoldItalic: Standard "(001.001)" Standard ROM +*Font Univers-Condensed-Medium: Standard "(001.001)" Standard ROM +*Font Univers-Condensed-MediumItalic: Standard "(001.001)" Standard ROM +*Font Univers-Medium: Standard "(001.001)" Standard ROM +*Font Univers-MediumItalic: Standard "(001.001)" Standard ROM +*Font Wingdings-Regular: Special "(001.001)" Special ROM +*Font Wingdings-Regular: Standard "(001.001)" Standard ROM +*Font ZapfChancery-MediumItalic: Standard "(001.001)" Standard ROM +*Font ZapfDingbats: Special "(001.001)" Special ROM +*% End of HPP00052.PPD, 211422 bytes. diff --git a/configfiles/etc/cups/ppd/salle231.ppd.O b/configfiles/etc/cups/ppd/salle231.ppd.O new file mode 100644 index 0000000..2cdb07d --- /dev/null +++ b/configfiles/etc/cups/ppd/salle231.ppd.O @@ -0,0 +1,3555 @@ +*PPD-Adobe: "4.3" +*% ================================= +*% Copyright 1992-2009 Hewlett-Packard Company +*% Permission is hereby granted, free of charge, to any person obtaining +*% a copy of this software and associated documentation files (the +*% "Software"), to deal in the Software without restriction, including +*% without limitation the rights to use, copy, modify, merge, publish, +*% distribute, sublicense, and/or sell copies of the Software, and to +*% permit persons to whom the Software is furnished to do so, subject to +*% the following conditions: +*% +*% The above copyright notice and this permission notice shall be +*% included in all copies or substantial portions of the Software. +*% +*% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +*% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +*% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +*% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +*% LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +*% OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +*% WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +*% +*% [this is the MIT open source license -- please see www.opensource.org] +*% +*% Disclaimer: The above statement indicates +*% that this PPD was written using the Adobe PPD +*% File Format Specification 4.3, but does not +*% intend to imply approval and acceptance by +*% Adobe Systems, Inc. +*% ======================================================= +*% Printer Description File +*% (c) Copyright 2004-2009 Hewlett-Packard Development Company, L.P. +*% PPD for HP LaserJet 1320 Series +*% For Macintosh only +*%======================================================== +*%================================================= +*% PPD File Version Information +*%================================================= +*FileVersion: "1.1" +*FormatVersion: "4.3" +*LanguageEncoding: ISOLatin1 +*LanguageVersion: English +*cupsLanguages: "da de es fi fr it ja ko nl nb pt sv zh_CN zh_TW" +*PCFileName: "HP1300_6.PPD" + + + +*%================================================= +*% Product Version Information +*%================================================= +*ModelName: "HP LaserJet 1320 series" +*ShortNickName: "HP LaserJet 1320 series" +*NickName: "HP LaserJet 1320 series Postscript (recommended)" +*Product: "(hp LaserJet 1320 series)" +*Product: "(Hewlett-Packard hp LaserJet 1320 series)" +*Product: "(HP LaserJet 1320 series)" +*Manufacturer: "HP" +*PSVersion: "(2014.116) 0" + +*%================================================= +*% Device Capabilities +*%================================================= +*ColorDevice: False +*DefaultColorSpace: Gray +*FileSystem: False + +*LanguageLevel: "2" +*Throughput: "22" +*TTRasterizer: Type42 +*?TTRasterizer: " + save + 42 /FontType resourcestatus + { pop pop (Type42)} {pop pop (None)} ifelse = flush + restore +" +*End + +*%================================================= +*% Emulations and Protocols +*%================================================= +*Protocols: TBCP + +*SuggestedJobTimeout: "0" +*SuggestedWaitTimeout: "120" +*PrintPSErrors: True + +*%============================================== +*% Installable Options +*%============================================== +*OpenGroup: InstallableOptions/Installed Options +*da.Translation InstallableOptions/Installeret tilbehør: "" +*de.Translation InstallableOptions/Installierte Optionen: "" +*es.Translation InstallableOptions/Opciones instaladas: "" +*fi.Translation InstallableOptions/Asennetut lisävarusteet: "" +*fr.Translation InstallableOptions/Options installées: "" +*it.Translation InstallableOptions/Installed Options: "" +*ja.Translation InstallableOptions/インストール済オプション: "" +*ko.Translation InstallableOptions/설치된 선택사양: "" +*nl.Translation InstallableOptions/Geïnstalleerde opties: "" +*nb.Translation InstallableOptions/Installerte alternativer: "" +*pt.Translation InstallableOptions/Versıes Instaladas: "" +*sv.Translation InstallableOptions/Installerade tillbehör: "" +*zh_CN.Translation InstallableOptions/已安装的选项: "" +*zh_TW.Translation InstallableOptions/安裝的選項: "" + + +*OpenUI *HPOption_Tray2/Tray 2: Boolean +*DefaultHPOption_Tray2: False +*da.Translation HPOption_Tray2/Bakke 2: "" +*de.Translation HPOption_Tray2/Zufuhrfach 2: "" +*es.Translation HPOption_Tray2/Bandeja 2: "" +*fi.Translation HPOption_Tray2/Lokero 2: "" +*fr.Translation HPOption_Tray2/Bac 2: "" +*it.Translation HPOption_Tray2/Vassoio 2: "" +*ja.Translation HPOption_Tray2/トレイ 2: "" +*ko.Translation HPOption_Tray2/용지함 2: "" +*nl.Translation HPOption_Tray2/Lade 2: "" +*nb.Translation HPOption_Tray2/Skuff 2: "" +*pt.Translation HPOption_Tray2/Bandeja 2: "" +*sv.Translation HPOption_Tray2/Fack 2: "" +*zh_CN.Translation HPOption_Tray2/纸盒2: "" +*zh_TW.Translation HPOption_Tray2/紙匣2: "" + +*HPOption_Tray2 True/Installed: "" +*da.HPOption_Tray2 True/Installeret: "" +*de.HPOption_Tray2 True/Installiert: "" +*es.HPOption_Tray2 True/Instalado: "" +*fi.HPOption_Tray2 True/Asennettu: "" +*fr.HPOption_Tray2 True/Installé: "" +*it.HPOption_Tray2 True/Installato: "" +*ja.HPOption_Tray2 True/インストール済: "" +*ko.HPOption_Tray2 True/설치됨: "" +*nl.HPOption_Tray2 True/Geïnstalleerd: "" +*nb.HPOption_Tray2 True/Installert: "" +*pt.HPOption_Tray2 True/Instalada: "" +*sv.HPOption_Tray2 True/Installerat: "" +*zh_CN.HPOption_Tray2 True/已安装: "" +*zh_TW.HPOption_Tray2 True/已安裝: "" + +*HPOption_Tray2 False/Not Installed: "" +*da.HPOption_Tray2 False/Ikke installeret: "" +*de.HPOption_Tray2 False/Nicht installiert: "" +*es.HPOption_Tray2 False/No Instalado: "" +*fi.HPOption_Tray2 False/Ei asennettu: "" +*fr.HPOption_Tray2 False/Non installé: "" +*it.HPOption_Tray2 False/Non installato: "" +*ja.HPOption_Tray2 False/インストールされていない: "" +*ko.HPOption_Tray2 False/설치되지 않음: "" +*nl.HPOption_Tray2 False/Niet geïnstalleerd: "" +*nb.HPOption_Tray2 False/Ikke installert: "" +*pt.HPOption_Tray2 False/Não instalada: "" +*sv.HPOption_Tray2 False/Ej installerat: "" +*zh_CN.HPOption_Tray2 False/未安装: "" +*zh_TW.HPOption_Tray2 False/尚未安裝: "" + +*?HPOption_Tray2: " + save + currentpagedevice /InputAttributes get 0 known + {(True)}{(False)} ifelse = flush + restore " +*End +*CloseUI: *HPOption_Tray2 + +*OpenUI *HPOption_Tray3/Tray 3: Boolean +*DefaultHPOption_Tray3: False +*da.Translation HPOption_Tray3/Bakke 3: "" +*de.Translation HPOption_Tray3/Zufuhrfach 3: "" +*es.Translation HPOption_Tray3/Bandeja 3: "" +*fi.Translation HPOption_Tray3/Lokero 3: "" +*fr.Translation HPOption_Tray3/Bac 3: "" +*it.Translation HPOption_Tray3/Vassoio 3: "" +*ja.Translation HPOption_Tray3/トレイ 3: "" +*ko.Translation HPOption_Tray3/용지함 3: "" +*nl.Translation HPOption_Tray3/Lade 3: "" +*nb.Translation HPOption_Tray3/Skuff 3: "" +*pt.Translation HPOption_Tray3/Bandeja 3: "" +*sv.Translation HPOption_Tray3/Fack 3: "" +*zh_CN.Translation HPOption_Tray3/纸盒3: "" +*zh_TW.Translation HPOption_Tray3/紙匣3: "" + +*HPOption_Tray3 True/Installed: "" +*da.HPOption_Tray3 True/Installeret: "" +*de.HPOption_Tray3 True/Installiert: "" +*es.HPOption_Tray3 True/Instalado: "" +*fi.HPOption_Tray3 True/Asennettu: "" +*fr.HPOption_Tray3 True/Installé: "" +*it.HPOption_Tray3 True/Installato: "" +*ja.HPOption_Tray3 True/インストール済: "" +*ko.HPOption_Tray3 True/설치됨: "" +*nl.HPOption_Tray3 True/Geïnstalleerd: "" +*nb.HPOption_Tray3 True/Installert: "" +*pt.HPOption_Tray3 True/Instalada: "" +*sv.HPOption_Tray3 True/Installerat: "" +*zh_CN.HPOption_Tray3 True/已安装: "" +*zh_TW.HPOption_Tray3 True/已安裝: "" + +*HPOption_Tray3 False/Not Installed: "" +*da.HPOption_Tray3 False/Ikke installeret: "" +*de.HPOption_Tray3 False/Nicht installiert: "" +*es.HPOption_Tray3 False/No Instalado: "" +*fi.HPOption_Tray3 False/Ei asennettu: "" +*fr.HPOption_Tray3 False/Non installé: "" +*it.HPOption_Tray3 False/Non installato: "" +*ja.HPOption_Tray3 False/インストールされていない: "" +*ko.HPOption_Tray3 False/설치되지 않음: "" +*nl.HPOption_Tray3 False/Niet geïnstalleerd: "" +*nb.HPOption_Tray3 False/Ikke installert: "" +*pt.HPOption_Tray3 False/Não instalada: "" +*sv.HPOption_Tray3 False/Ej installerat: "" +*zh_CN.HPOption_Tray3 False/未安装: "" +*zh_TW.HPOption_Tray3 False/尚未安裝: "" + +*?HPOption_Tray3: " + save + currentpagedevice /InputAttributes get 1 known + {(True)}{(False)} ifelse = flush + restore " +*End +*CloseUI: *HPOption_Tray3 + +*%==================================== +*% Fit to Page +*%==================================== +*OpenUI *HPOption_PaperPolicy/Fit to Page: PickOne +*OrderDependency: 10 AnySetup *HPOption_PaperPolicy +*DefaultHPOption_PaperPolicy: PromptUser +*da.Translation HPOption_PaperPolicy/Tilpas til siden: "" +*de.Translation HPOption_PaperPolicy/An Seite anpassen: "" +*es.Translation HPOption_PaperPolicy/Hacer que quepa en la hoja: "" +*fi.Translation HPOption_PaperPolicy/Sovita sivulle: "" +*fr.Translation HPOption_PaperPolicy/Ajuster à la page: "" +*it.Translation HPOption_PaperPolicy/Adatta alle dimensioni della pagina: "" +*ja.Translation HPOption_PaperPolicy/用紙のマッチング: "" +*ko.Translation HPOption_PaperPolicy/용지 일치: "" +*nl.Translation HPOption_PaperPolicy/Papieraanpassing: "" +*nb.Translation HPOption_PaperPolicy/Papirtilpasning: "" +*pt.Translation HPOption_PaperPolicy/Correspondência de papel: "" +*sv.Translation HPOption_PaperPolicy/Pappersmatchning: "" +*zh_CN.Translation HPOption_PaperPolicy/纸张匹配: "" +*zh_TW.Translation HPOption_PaperPolicy/紙張相符: "" + +*HPOption_PaperPolicy PromptUser/Prompt User: " + <> setpagedevice" +*End +*da.HPOption_PaperPolicy PromptUser/Spørg brugeren: "" +*de.HPOption_PaperPolicy PromptUser/Benutzer auffordern: "" +*es.HPOption_PaperPolicy PromptUser/Informar al usuario: "" +*fi.HPOption_PaperPolicy PromptUser/Kysy käyttäjältä: "" +*fr.HPOption_PaperPolicy PromptUser/Demander à l’utilisateur: "" +*it.HPOption_PaperPolicy PromptUser/Avvisa utente: "" +*ja.HPOption_PaperPolicy PromptUser/正しいサイズを入力するように要求: "" +*ko.HPOption_PaperPolicy PromptUser/프롬프트 사용자: "" +*nl.HPOption_PaperPolicy PromptUser/Gebruiker waarschuwen: "" +*nb.HPOption_PaperPolicy PromptUser/Gi beskjed til bruker: "" +*pt.HPOption_PaperPolicy PromptUser/Avisar usuário: "" +*sv.HPOption_PaperPolicy PromptUser/Meddela användaren: "" +*zh_CN.HPOption_PaperPolicy PromptUser/提示用户: "" +*zh_TW.HPOption_PaperPolicy PromptUser/提示使用者: "" + +*HPOption_PaperPolicy NearestSizeAdjust/Nearest Size and Scale: " + <> setpagedevice + <> >> setpagedevice" +*End +*da.HPOption_PaperPolicy NearestSizeAdjust/Nærmeste størrelse og skalering: "" +*de.HPOption_PaperPolicy NearestSizeAdjust/Nächstkleineres/größeres Format mit Skalierung: "" +*es.HPOption_PaperPolicy NearestSizeAdjust/Usar tamaño más parecido y cambiar a escala: "" +*fi.HPOption_PaperPolicy NearestSizeAdjust/Lähin koko ja skaalaus: "" +*fr.HPOption_PaperPolicy NearestSizeAdjust/Format et échelle les plus proches: "" +*it.HPOption_PaperPolicy NearestSizeAdjust/Usa le dimensioni più vicine e adatta: "" +*ja.HPOption_PaperPolicy NearestSizeAdjust/近似サイズに拡大/縮小: "" +*ko.HPOption_PaperPolicy NearestSizeAdjust/근사 크기와 축소/확대: "" +*nl.HPOption_PaperPolicy NearestSizeAdjust/Dichtst benaderende afmeting en schaal: "" +*nb.HPOption_PaperPolicy NearestSizeAdjust/Nærmeste størrelse og skala: "" +*pt.HPOption_PaperPolicy NearestSizeAdjust/Tamanho mais próximo e ajusta a escala: "" +*sv.HPOption_PaperPolicy NearestSizeAdjust/Närmaste storlek och skala: "" +*zh_CN.HPOption_PaperPolicy NearestSizeAdjust/最接近之尺寸和缩放度: "" +*zh_TW.HPOption_PaperPolicy NearestSizeAdjust/最接近的尺寸並按比例縮放: "" + +*HPOption_PaperPolicy NearestSizeNoAdjust/Nearest Size and Crop: " + <> setpagedevice + <> >> setpagedevice" +*End +*da.HPOption_PaperPolicy NearestSizeNoAdjust/Nærmeste størrelse og beskæring: "" +*de.HPOption_PaperPolicy NearestSizeNoAdjust/Nächstkleineres/größeres Format mit Beschnitt: "" +*es.HPOption_PaperPolicy NearestSizeNoAdjust/Usar tamaño más parecido y recortar: "" +*fi.HPOption_PaperPolicy NearestSizeNoAdjust/Lähin koko ja rajaus: "" +*fr.HPOption_PaperPolicy NearestSizeNoAdjust/Format et coupe les plus proches: "" +*it.HPOption_PaperPolicy NearestSizeNoAdjust/Usa le dimensioni più vicine e taglia: "" +*ja.HPOption_PaperPolicy NearestSizeNoAdjust/近似サイズにトリミング: "" +*ko.HPOption_PaperPolicy NearestSizeNoAdjust/근사 크기와 자르기: "" +*nl.HPOption_PaperPolicy NearestSizeNoAdjust/Dichtst benaderende grootte en trim: "" +*nb.HPOption_PaperPolicy NearestSizeNoAdjust/Nærmeste størrelse og beskjæring: "" +*pt.HPOption_PaperPolicy NearestSizeNoAdjust/Tamanho mais próximo e corta: "" +*sv.HPOption_PaperPolicy NearestSizeNoAdjust/Närmaste storlek och beskär: "" +*zh_CN.HPOption_PaperPolicy NearestSizeNoAdjust/最接近之尺寸和剪裁: "" +*zh_TW.HPOption_PaperPolicy NearestSizeNoAdjust/最接近的尺寸並裁剪: "" + +*?HPOption_PaperPolicy: "(PromptUser) = flush" +*CloseUI: *HPOption_PaperPolicy + + +*OpenUI *InstalledMemory/Total Printer Memory: PickOne +*DefaultInstalledMemory: 16_31MB +*da.Translation InstalledMemory/Printerhukommelse i alt: "" +*de.Translation InstalledMemory/Druckerspeicher insgesamt: "" +*es.Translation InstalledMemory/Memoria total de la impresora: "" +*fi.Translation InstalledMemory/Kirjoittimen kokonaismuisti: "" +*fr.Translation InstalledMemory/Mémoire totale de l’imprimante: "" +*it.Translation InstalledMemory/Configurazione della memoria: "" +*ja.Translation InstalledMemory/プリンタ総メモリ容量: "" +*ko.Translation InstalledMemory/메모리 구성: "" +*nl.Translation InstalledMemory/Geheugenconfiguratie: "" +*nb.Translation InstalledMemory/Total skriverhukommelse: "" +*pt.Translation InstalledMemory/Configuração de memória: "" +*sv.Translation InstalledMemory/Minneskonfiguration: "" +*zh_CN.Translation InstalledMemory/内存配置: "" +*zh_TW.Translation InstalledMemory/記憶體設定: "" + +*InstalledMemory 16_31MB/16 - 31 MB: "" +*da.InstalledMemory 16_31MB/16 - 31 MB: "" +*de.InstalledMemory 16_31MB/16 - 31 MB: "" +*es.InstalledMemory 16_31MB/16 - 31 MB de RAM: "" +*fi.InstalledMemory 16_31MB/16 - 31 megatavua: "" +*fr.InstalledMemory 16_31MB/16 à 31 Mo de RAM: "" +*it.InstalledMemory 16_31MB/16 - 31 MB: "" +*ja.InstalledMemory 16_31MB/16 〜 31 MB RAM: "" +*ko.InstalledMemory 16_31MB/16 - 31 MB: "" +*nl.InstalledMemory 16_31MB/16 - 31 MB: "" +*nb.InstalledMemory 16_31MB/16 - 31 MB: "" +*pt.InstalledMemory 16_31MB/16 - 31 MB: "" +*sv.InstalledMemory 16_31MB/16 - 31 MB: "" +*zh_CN.InstalledMemory 16_31MB/16 - 31 MB: "" +*zh_TW.InstalledMemory 16_31MB/16 - 31 MB: "" + +*InstalledMemory 32_47MB/32 - 47 MB: "" +*da.InstalledMemory 32_47MB/32 - 47 MB: "" +*de.InstalledMemory 32_47MB/32 - 47 MB: "" +*es.InstalledMemory 32_47MB/32 - 47 MB de RAM: "" +*fi.InstalledMemory 32_47MB/32 - 47 megatavua: "" +*fr.InstalledMemory 32_47MB/32 à 47 Mo de RAM: "" +*it.InstalledMemory 32_47MB/32 - 47 MB: "" +*ja.InstalledMemory 32_47MB/32 〜 47 MB RAM: "" +*ko.InstalledMemory 32_47MB/32 - 47 MB: "" +*nl.InstalledMemory 32_47MB/32 - 47 MB: "" +*nb.InstalledMemory 32_47MB/32 - 47 MB: "" +*pt.InstalledMemory 32_47MB/32 - 47 MB: "" +*sv.InstalledMemory 32_47MB/32 - 47 MB: "" +*zh_CN.InstalledMemory 32_47MB/32 - 47 MB: "" +*zh_TW.InstalledMemory 32_47MB/32 - 47 MB: "" + +*InstalledMemory 48_79MB/48 - 79 MB: "" +*da.InstalledMemory 48_79MB/48 - 79 MB: "" +*de.InstalledMemory 48_79MB/48 - 79 MB: "" +*es.InstalledMemory 48_79MB/48 - 79 MB de RAM: "" +*fi.InstalledMemory 48_79MB/48 - 79 megatavua: "" +*fr.InstalledMemory 48_79MB/48 à 79 Mo de RAM: "" +*it.InstalledMemory 48_79MB/48 - 79 MB: "" +*ja.InstalledMemory 48_79MB/48 〜 79 MB RAM: "" +*ko.InstalledMemory 48_79MB/48 - 79 MB: "" +*nl.InstalledMemory 48_79MB/48 - 79 MB: "" +*nb.InstalledMemory 48_79MB/48 - 79 MB: "" +*pt.InstalledMemory 48_79MB/48 - 79 MB: "" +*sv.InstalledMemory 48_79MB/48 - 79 MB: "" +*zh_CN.InstalledMemory 48_79MB/48 - 79 MB: "" +*zh_TW.InstalledMemory 48_79MB/48 - 79 MB: "" + +*InstalledMemory 80_143MB/80 - 143 MB: "" +*da.InstalledMemory 80_143MB/80 - 143 MB: "" +*de.InstalledMemory 80_143MB/80 - 143 MB: "" +*es.InstalledMemory 80_143MB/80 - 143 MB de RAM: "" +*fi.InstalledMemory 80_143MB/80 - 143 megatavua: "" +*fr.InstalledMemory 80_143MB/80 à 143 Mo de RAM: "" +*it.InstalledMemory 80_143MB/80 - 143 MB: "" +*ja.InstalledMemory 80_143MB/80 〜 143 MB RAM: "" +*ko.InstalledMemory 80_143MB/80 - 143 MB: "" +*nl.InstalledMemory 80_143MB/80 - 143 MB: "" +*nb.InstalledMemory 80_143MB/80 - 143 MB: "" +*pt.InstalledMemory 80_143MB/80 - 143 MB: "" +*sv.InstalledMemory 80_143MB/80 - 143 MB: "" +*zh_CN.InstalledMemory 80_143MB/80 - 143 MB: "" +*zh_TW.InstalledMemory 80_143MB/80 - 143 MB: "" + +*InstalledMemory 144MB/144 or more MB: "" +*da.InstalledMemory 144MB/144 MB: "" +*de.InstalledMemory 144MB/144 MB: "" +*es.InstalledMemory 144MB/144 MB de RAM: "" +*fi.InstalledMemory 144MB/144 megatavua: "" +*fr.InstalledMemory 144MB/144 Mo de RAM: "" +*it.InstalledMemory 144MB/144 MB: "" +*ja.InstalledMemory 144MB/144 MB RAM: "" +*ko.InstalledMemory 144MB/144 MB: "" +*nl.InstalledMemory 144MB/144 MB: "" +*nb.InstalledMemory 144MB/144 MB: "" +*pt.InstalledMemory 144MB/144 MB: "" +*sv.InstalledMemory 144MB/144 MB: "" +*zh_CN.InstalledMemory 144MB/144 MB: "" +*zh_TW.InstalledMemory 144MB/144 MB: "" + +*?InstalledMemory: " + save + currentsystemparams /RamSize get + 524288 div ceiling cvi 2 div + /size exch def + size 144 ge + {(144MB)} + {size 80 ge + {(80_143MB)} + {size 48 ge + {(48_79MB)} + {size 32 ge + {(32_47MB)} + {(16_31MB)} ifelse + } ifelse + } ifelse + } ifelse = flush + restore +" +*End +*CloseUI: *InstalledMemory + +*CloseGroup: InstallableOptions + +*OpenUI *HPStraightPaperPath/Use Straight Paper Path: Boolean +*DefaultHPStraightPaperPath: False +*da.Translation HPStraightPaperPath/Benyt lige papirgang: "" +*de.Translation HPStraightPaperPath/Geraden Papierpfad verwenden: "" +*es.Translation HPStraightPaperPath/Utilizar ruta de papel recta: "" +*fi.Translation HPStraightPaperPath/Käytä suoraa paperireittiä: "" +*fr.Translation HPStraightPaperPath/Insérer le papier droit: "" +*it.Translation HPStraightPaperPath/Usa percorso carta diretto: "" +*ja.Translation HPStraightPaperPath/直線用紙経路の使用: "" +*ko.Translation HPStraightPaperPath/곧은 용지 경로를 사용하십시오: "" +*nl.Translation HPStraightPaperPath/Recht papierpad gebruiken: "" +*nb.Translation HPStraightPaperPath/Bruk rett papirbane: "" +*pt.Translation HPStraightPaperPath/Usar caminho reto de papel: "" +*sv.Translation HPStraightPaperPath/Använd rak pappersbana: "" +*zh_CN.Translation HPStraightPaperPath/使用直线馈纸路径: "" +*zh_TW.Translation HPStraightPaperPath/使用直接出紙路徑: "" + +*HPStraightPaperPath True/On: "" +*da.HPStraightPaperPath True/På: "" +*de.HPStraightPaperPath True/Ein: "" +*es.HPStraightPaperPath True/Activado: "" +*fi.HPStraightPaperPath True/Käytössä: "" +*fr.HPStraightPaperPath True/Activé: "" +*it.HPStraightPaperPath True/Attiva: "" +*ja.HPStraightPaperPath True/オン: "" +*ko.HPStraightPaperPath True/켜짐: "" +*nl.HPStraightPaperPath True/Aan: "" +*nb.HPStraightPaperPath True/På: "" +*pt.HPStraightPaperPath True/Ativado: "" +*sv.HPStraightPaperPath True/På: "" +*zh_CN.HPStraightPaperPath True/开: "" +*zh_TW.HPStraightPaperPath True/開啟: "" + +*HPStraightPaperPath False/Off: "" +*da.HPStraightPaperPath False/Fra: "" +*de.HPStraightPaperPath False/Aus: "" +*es.HPStraightPaperPath False/Desactivado: "" +*fi.HPStraightPaperPath False/Ei käytössä: "" +*fr.HPStraightPaperPath False/Désactivé: "" +*it.HPStraightPaperPath False/Disattivata: "" +*ja.HPStraightPaperPath False/オフ: "" +*ko.HPStraightPaperPath False/꺼짐: "" +*nl.HPStraightPaperPath False/Uit: "" +*nb.HPStraightPaperPath False/Av: "" +*pt.HPStraightPaperPath False/Desativado: "" +*sv.HPStraightPaperPath False/Av: "" +*zh_CN.HPStraightPaperPath False/关: "" +*zh_TW.HPStraightPaperPath False/關閉: "" + +*CloseUI: *HPStraightPaperPath +*HPStraightPaperPathDS True: "HPSTRAIGHTPAPERPATH_DS" +*HPStraightPaperPathDS False: "HPSTRAIGHTPAPERPATH_DS" + + +*% ================================= +*% ================================= + +*OpenGroup: HPImagingOptions/Image Quality +*da.Translation HPImagingOptions/Billedindstillinger: "" +*de.Translation HPImagingOptions/Abbildungsoptionen: "" +*es.Translation HPImagingOptions/Opciones de imagen: "" +*fi.Translation HPImagingOptions/Kuvanmuodostusasetukset: "" +*fr.Translation HPImagingOptions/Options d'image: "" +*it.Translation HPImagingOptions/Opzioni di immagine: "" +*ja.Translation HPImagingOptions/画質オプション: "" +*ko.Translation HPImagingOptions/이미지 옵션: "" +*nl.Translation HPImagingOptions/Afbeeldingen-opties: "" +*nb.Translation HPImagingOptions/Valg for bildebehandling: "" +*pt.Translation HPImagingOptions/Opções de imagem: "" +*sv.Translation HPImagingOptions/Alternativ för kvalitet: "" +*zh_CN.Translation HPImagingOptions/图象选项: "" +*zh_TW.Translation HPImagingOptions/影像選項: "" + + +*%=================================== +*% Resolution +*%=================================== +*% Select Printer Resolution +*OpenUI *Resolution/Printer Resolution: PickOne +*DefaultResolution: 1200dpi +*da.Translation Resolution/Opløsning: "" +*de.Translation Resolution/Druckerauflösung: "" +*es.Translation Resolution/Resol. de la impresora: "" +*fi.Translation Resolution/Kirjoittimen tarkkuus: "" +*fr.Translation Resolution/Résolution d’imprimante: "" +*it.Translation Resolution/Risoluzione: "" +*ja.Translation Resolution/プリンタの解像度: "" +*ko.Translation Resolution/프린터 해상도: "" +*nl.Translation Resolution/Printer-resolutie: "" +*nb.Translation Resolution/Skriveroppløsning: "" +*pt.Translation Resolution/Resolução da impressora: "" +*sv.Translation Resolution/Skrivarupplösning: "" +*zh_CN.Translation Resolution/打印机分辨率: "" +*zh_TW.Translation Resolution/印表機解析度: "" + +*OrderDependency: 5 DocumentSetup *Resolution +*Resolution 1200x1200dpi/ProRes 1200: " + <> setpagedevice" +*End +*da.Resolution 1200x1200dpi/ProRes 1200: "" +*de.Resolution 1200x1200dpi/ProRes 1200: "" +*es.Resolution 1200x1200dpi/ProRes 1200: "" +*fi.Resolution 1200x1200dpi/ProRes 1200: "" +*fr.Resolution 1200x1200dpi/ProRes 1200: "" +*it.Resolution 1200x1200dpi/ProRes 1200: "" +*ja.Resolution 1200x1200dpi/ProRes 1200: "" +*ko.Resolution 1200x1200dpi/ProRes 1200: "" +*nl.Resolution 1200x1200dpi/ProRes 1200: "" +*nb.Resolution 1200x1200dpi/ProRes 1200: "" +*pt.Resolution 1200x1200dpi/ProRes 1200: "" +*sv.Resolution 1200x1200dpi/ProRes 1200: "" +*zh_CN.Resolution 1200x1200dpi/ProRes 1200: "" +*zh_TW.Resolution 1200x1200dpi/ProRes 1200: "" + +*Resolution 1200dpi/FastRes 1200: " + <> setpagedevice" +*End +*da.Resolution 1200dpi/FastRes 1200: "" +*de.Resolution 1200dpi/FastRes 1200: "" +*es.Resolution 1200dpi/FastRes 1200: "" +*fi.Resolution 1200dpi/FastRes 1200: "" +*fr.Resolution 1200dpi/FastRes 1200: "" +*it.Resolution 1200dpi/FastRes 1200: "" +*ja.Resolution 1200dpi/FastRes 1200: "" +*ko.Resolution 1200dpi/FastRes 1200: "" +*nl.Resolution 1200dpi/FastRes 1200: "" +*nb.Resolution 1200dpi/FastRes 1200: "" +*pt.Resolution 1200dpi/FastRes 1200: "" +*sv.Resolution 1200dpi/FastRes 1200: "" +*zh_CN.Resolution 1200dpi/FastRes 1200: "" +*zh_TW.Resolution 1200dpi/FastRes 1200: "" + +*Resolution 600x600dpi/600 dpi: " + <> setpagedevice" +*End +*da.Resolution 600x600dpi/600 dpi: "" +*de.Resolution 600x600dpi/600 dpi: "" +*es.Resolution 600x600dpi/600 dpi: "" +*fi.Resolution 600x600dpi/600 dpi: "" +*fr.Resolution 600x600dpi/600 dpi: "" +*it.Resolution 600x600dpi/600 dpi: "" +*ja.Resolution 600x600dpi/600 dpi: "" +*ko.Resolution 600x600dpi/600 dpi: "" +*nl.Resolution 600x600dpi/600 dpi: "" +*nb.Resolution 600x600dpi/600 dpi: "" +*pt.Resolution 600x600dpi/600 dpi: "" +*sv.Resolution 600x600dpi/600 dpi: "" +*zh_CN.Resolution 600x600dpi/600 dpi: "" +*zh_TW.Resolution 600x600dpi/600 dpi: "" + +*?Resolution: " + save + currentpagedevice /HWResolution get + 0 get + ( ) cvs print + (dpi) + = flush + restore +" +*End +*CloseUI: *Resolution + +*%================================================= +*% Resolution Enhancement +*%================================================= +*OpenUI *Smoothing/Resolution Enhancement: PickOne +*OrderDependency: 20 DocumentSetup *Smoothing +*DefaultSmoothing: PrinterDefault +*da.Translation Smoothing/Opløsningsforbedring: "" +*de.Translation Smoothing/Auflösungsoptimierung: "" +*es.Translation Smoothing/Resolución Enhancement: "" +*fi.Translation Smoothing/Tarkkuuden parannus: "" +*fr.Translation Smoothing/Amélioration résolution: "" +*it.Translation Smoothing/Miglioramento risoluzione: "" +*ja.Translation Smoothing/解像度エンハンスメント: "" +*ko.Translation Smoothing/해상도 향상: "" +*nl.Translation Smoothing/Resolutieverbetering: "" +*nb.Translation Smoothing/Oppløsningsfremheving: "" +*pt.Translation Smoothing/Resolução avançada: "" +*sv.Translation Smoothing/Förbättring av upplösning: "" +*zh_CN.Translation Smoothing/分辨率增强: "" +*zh_TW.Translation Smoothing/解析度增強: "" + +*Smoothing PrinterDefault/Printer's Current Setting: "" +*da.Smoothing PrinterDefault/Aktuelle Druckereinstellung: "" +*de.Smoothing PrinterDefault/Aktuelle Druckereinstellung: "" +*es.Smoothing PrinterDefault/Configuración actual de la impresora: "" +*fi.Smoothing PrinterDefault/Kirjoittimen nykyinen asetus: "" +*fr.Smoothing PrinterDefault/Paramétrage actuel de l'imprimante: "" +*it.Smoothing PrinterDefault/Impostazioni correnti della stampante: "" +*ja.Smoothing PrinterDefault/プリンタの現在の設定: "" +*ko.Smoothing PrinterDefault/프린터 기본값: "" +*nl.Smoothing PrinterDefault/Huidige instelling van de printer: "" +*nb.Smoothing PrinterDefault/Skriverens gjeldende innstilling: "" +*pt.Smoothing PrinterDefault/Configuração atual da impressora: "" +*sv.Smoothing PrinterDefault/Skrivarens inställning: "" +*zh_CN.Smoothing PrinterDefault/打印机的当前设置: "" +*zh_TW.Smoothing PrinterDefault/印表機目前的設定值: "" + +*Smoothing On/On: " +<< /PostRenderingEnhance true + /PostRenderingEnhanceDetails << /REValue 2 /Type 8 >> +>> setpagedevice" +*End +*da.Smoothing On/Ein: "" +*de.Smoothing On/Ein: "" +*es.Smoothing On/Activado: "" +*fi.Smoothing On/Kyllä: "" +*fr.Smoothing On/Activé: "" +*it.Smoothing On/Attivata: "" +*ja.Smoothing On/オン: "" +*ko.Smoothing On/켜짐: "" +*nl.Smoothing On/Aan: "" +*nb.Smoothing On/På: "" +*pt.Smoothing On/Ativado: "" +*sv.Smoothing On/På: "" +*zh_CN.Smoothing On/开: "" +*zh_TW.Smoothing On/開啟: "" + +*Smoothing Off/Off: " +<< /PostRenderingEnhance true + /PostRenderingEnhanceDetails << /REValue 0 /Type 8 >> +>> setpagedevice" +*End +*da.Smoothing Off/Aus: "" +*de.Smoothing Off/Aus: "" +*es.Smoothing Off/Desactivado: "" +*fi.Smoothing Off/Ei: "" +*fr.Smoothing Off/Désactivé: "" +*it.Smoothing Off/Disattivata: "" +*ja.Smoothing Off/オフ: "" +*ko.Smoothing Off/끔: "" +*nl.Smoothing Off/Uit: "" +*nb.Smoothing Off/Av: "" +*pt.Smoothing Off/Desativado: "" +*sv.Smoothing Off/Av: "" +*zh_CN.Smoothing Off/关: "" +*zh_TW.Smoothing Off/關閉: "" + +*?Smoothing: " + save + currentpagedevice /PostRenderingEnhanceDetails get /REValue get + [(Off) (On) (On) (On)] exch get print + restore +" +*End +*CloseUI: *Smoothing + +*%================================== +*% HPEconoMode +*%================================== +*OpenUI *HPEconoMode/EconoMode: PickOne +*DefaultHPEconoMode: PrinterDefault +*da.Translation HPEconoMode/EconoMode: "" +*de.Translation HPEconoMode/EconoMode: "" +*es.Translation HPEconoMode/EconoMode: "" +*fi.Translation HPEconoMode/EconoMode: "" +*fr.Translation HPEconoMode/EconoMode: "" +*it.Translation HPEconoMode/EconoMode: "" +*ja.Translation HPEconoMode/EconoMode: "" +*ko.Translation HPEconoMode/EconoMode: "" +*nl.Translation HPEconoMode/EconoMode: "" +*nb.Translation HPEconoMode/EconoMode: "" +*pt.Translation HPEconoMode/EconoMode: "" +*sv.Translation HPEconoMode/EconoMode: "" +*zh_CN.Translation HPEconoMode/EconoMode: "" +*zh_TW.Translation HPEconoMode/EconoMode: "" + +*OrderDependency: 10 AnySetup *HPEconoMode +*HPEconoMode PrinterDefault/Printer's Current Setting: "" +*da.HPEconoMode PrinterDefault/Printerens aktuelle indstilling: "" +*de.HPEconoMode PrinterDefault/Aktuelle Druckereinstellung: "" +*es.HPEconoMode PrinterDefault/Configuración actual de la impresora: "" +*fi.HPEconoMode PrinterDefault/Kirjoittimen nykyinen asetus: "" +*fr.HPEconoMode PrinterDefault/Paramétrage actuel de l’imprimante: "" +*it.HPEconoMode PrinterDefault/Impostazioni correnti della stampante: "" +*ja.HPEconoMode PrinterDefault/プリンタの現在の設定: "" +*ko.HPEconoMode PrinterDefault/프린터의 현재 설정: "" +*nl.HPEconoMode PrinterDefault/Huidige instelling van de printer: "" +*nb.HPEconoMode PrinterDefault/Skriverens gjeldende innstilling: "" +*pt.HPEconoMode PrinterDefault/Configuração atual da impressora: "" +*sv.HPEconoMode PrinterDefault/Skrivarens inställning: "" +*zh_CN.HPEconoMode PrinterDefault/打印机的当前设置: "" +*zh_TW.HPEconoMode PrinterDefault/印表機目前的設定值: "" + +*HPEconoMode True/Save Toner: " + <> setpagedevice" +*End +*da.HPEconoMode True/Spar toner: "" +*de.HPEconoMode True/Toner sparen: "" +*es.HPEconoMode True/Ahorrar tóner: "" +*fi.HPEconoMode True/Säästä väriainetta: "" +*fr.HPEconoMode True/Economiser l’encre: "" +*it.HPEconoMode True/Salva toner: "" +*ja.HPEconoMode True/トナー節約: "" +*ko.HPEconoMode True/토너 절약: "" +*nl.HPEconoMode True/Toner besparen: "" +*nb.HPEconoMode True/Spar toner: "" +*pt.HPEconoMode True/Economizar toner: "" +*sv.HPEconoMode True/Spara toner: "" +*zh_CN.HPEconoMode True/节省碳粉: "" +*zh_TW.HPEconoMode True/節約碳粉: "" + +*HPEconoMode False/Highest Quality: " + <> setpagedevice" +*End +*da.HPEconoMode False/Højeste kvalitet: "" +*de.HPEconoMode False/Beste Qualität: "" +*es.HPEconoMode False/Calidad óptima: "" +*fi.HPEconoMode False/Korkein laatu: "" +*fr.HPEconoMode False/Meilleure qualité: "" +*it.HPEconoMode False/Qualità superiore: "" +*ja.HPEconoMode False/最品位: "" +*ko.HPEconoMode False/최고품질: "" +*nl.HPEconoMode False/Beste kwaliteit: "" +*nb.HPEconoMode False/Høyeste kvalitet: "" +*pt.HPEconoMode False/Melhor qualidade: "" +*sv.HPEconoMode False/Högsta kvalitet: "" +*zh_CN.HPEconoMode False/最高质量: "" +*zh_TW.HPEconoMode False/最高品質: "" + +*?HPEconoMode: " + save + currentpagedevice /EconoMode get + {(True)}{(False)}ifelse = flush + restore +" +*End +*CloseUI: *HPEconoMode + +*CloseGroup: HPImagingOptions + + +*FreeVM: "4000000" +*VMOption 16_31MB/16 - 61 MB: "4000000" +*da.VMOption 16_31MB/16 - 61 MB: "" +*de.VMOption 16_31MB/16 - 61 MB: "" +*es.VMOption 16_31MB/16 - 61 MB: "" +*fi.VMOption 16_31MB/16 - 61 MB: "" +*fr.VMOption 16_31MB/16 - 61 MB: "" +*it.VMOption 16_31MB/16 - 61 MB: "" +*ja.VMOption 16_31MB/16 - 61 MB: "" +*ko.VMOption 16_31MB/16 - 61 MB: "" +*nl.VMOption 16_31MB/16 - 61 MB: "" +*nb.VMOption 16_31MB/16 - 61 MB: "" +*pt.VMOption 16_31MB/16 - 61 MB: "" +*sv.VMOption 16_31MB/16 - 61 MB: "" +*zh_CN.VMOption 16_31MB/16 - 61 MB: "" +*zh_TW.VMOption 16_31MB/16 - 61 MB: "" + +*VMOption 32_47MB/32 - 47 MB: "11000000" +*da.VMOption 32_47MB/32 - 47 MB: "" +*de.VMOption 32_47MB/32 - 47 MB: "" +*es.VMOption 32_47MB/32 - 47 MB: "" +*fi.VMOption 32_47MB/32 - 47 MB: "" +*fr.VMOption 32_47MB/32 - 47 MB: "" +*it.VMOption 32_47MB/32 - 47 MB: "" +*ja.VMOption 32_47MB/32 - 47 MB: "" +*ko.VMOption 32_47MB/32 - 47 MB: "" +*nl.VMOption 32_47MB/32 - 47 MB: "" +*nb.VMOption 32_47MB/32 - 47 MB: "" +*pt.VMOption 32_47MB/32 - 47 MB: "" +*sv.VMOption 32_47MB/32 - 47 MB: "" +*zh_CN.VMOption 32_47MB/32 - 47 MB: "" +*zh_TW.VMOption 32_47MB/32 - 47 MB: "" + +*VMOption 48_79MB/48 - 71 MB: "18000000" +*da.VMOption 48_79MB/48 - 71 MB: "" +*de.VMOption 48_79MB/48 - 71 MB: "" +*es.VMOption 48_79MB/48 - 71 MB: "" +*fi.VMOption 48_79MB/48 - 71 MB: "" +*fr.VMOption 48_79MB/48 - 71 MB: "" +*it.VMOption 48_79MB/48 - 71 MB: "" +*ja.VMOption 48_79MB/48 - 71 MB: "" +*ko.VMOption 48_79MB/48 - 71 MB: "" +*nl.VMOption 48_79MB/48 - 71 MB: "" +*nb.VMOption 48_79MB/48 - 71 MB: "" +*pt.VMOption 48_79MB/48 - 71 MB: "" +*sv.VMOption 48_79MB/48 - 71 MB: "" +*zh_CN.VMOption 48_79MB/48 - 71 MB: "" +*zh_TW.VMOption 48_79MB/48 - 71 MB: "" + +*VMOption 80_143MB/80-143 MB: "25000000" +*da.VMOption 80_143MB/80-143 MB: "" +*de.VMOption 80_143MB/80-143 MB: "" +*es.VMOption 80_143MB/80-143 MB: "" +*fi.VMOption 80_143MB/80-143 MB: "" +*fr.VMOption 80_143MB/80-143 MB: "" +*it.VMOption 80_143MB/80-143 MB: "" +*ja.VMOption 80_143MB/80-143 MB: "" +*ko.VMOption 80_143MB/80-143 MB: "" +*nl.VMOption 80_143MB/80-143 MB: "" +*nb.VMOption 80_143MB/80-143 MB: "" +*pt.VMOption 80_143MB/80-143 MB: "" +*sv.VMOption 80_143MB/80-143 MB: "" +*zh_CN.VMOption 80_143MB/80-143 MB: "" +*zh_TW.VMOption 80_143MB/80-143 MB: "" + +*VMOption 144MB/144 or more MB: "25000000" +*da.VMOption 144MB/144 or more MB: "" +*de.VMOption 144MB/144 or more MB: "" +*es.VMOption 144MB/144 or more MB: "" +*fi.VMOption 144MB/144 or more MB: "" +*fr.VMOption 144MB/144 or more MB: "" +*it.VMOption 144MB/144 or more MB: "" +*ja.VMOption 144MB/144 or more MB: "" +*ko.VMOption 144MB/144 or more MB: "" +*nl.VMOption 144MB/144 or more MB: "" +*nb.VMOption 144MB/144 or more MB: "" +*pt.VMOption 144MB/144 or more MB: "" +*sv.VMOption 144MB/144 or more MB: "" +*zh_CN.VMOption 144MB/144 or more MB: "" +*zh_TW.VMOption 144MB/144 or more MB: "" + + +*%================================================= +*% UI Constraints +*%================================================= +*% If A than not B (Also include the reverse constraints if appropriate) +*% + +*% No 1200 dpi HPEconoMode. +*UIConstraints: *Resolution 1200x1200dpi *HPEconoMode True +*UIConstraints: *HPEconoMode True *Resolution 1200x1200dpi + +*% If an optional 250 sheet tray is not installed, disable access to Tray2 +*UIConstraints: *HPOption_Tray2 False *InputSlot Tray2 +*UIConstraints: *InputSlot Tray2 *HPOption_Tray2 False + +*UIConstraints: *HPOption_Tray3 False *InputSlot Tray3 +*UIConstraints: *InputSlot Tray3 *HPOption_Tray3 False + +*% If selected page size is an envelope, Postcard or double postcard +*% disable access to paper trays 2 and 3 +*UIConstraints: *PageSize Env10 *InputSlot Tray2 +*UIConstraints: *PageSize EnvMonarch *InputSlot Tray2 +*UIConstraints: *PageSize EnvDL *InputSlot Tray2 +*UIConstraints: *PageSize EnvC5 *InputSlot Tray2 +*UIConstraints: *PageSize EnvISOB5 *InputSlot Tray2 +*UIConstraints: *PageSize w558h774 *InputSlot Tray2 +*UIConstraints: *PageSize Postcard *InputSlot Tray2 +*UIConstraints: *PageSize DoublePostcard *InputSlot Tray2 +*UIConstraints: *PageSize A6 *InputSlot Tray2 +*UIConstraints: *PageSize B6 *InputSlot Tray2 +*NonUIConstraints: *CustomPageSize True *InputSlot Tray2 + +*UIConstraints: *PageSize Env10 *InputSlot Tray3 +*UIConstraints: *PageSize EnvMonarch *InputSlot Tray3 +*UIConstraints: *PageSize EnvDL *InputSlot Tray3 +*UIConstraints: *PageSize EnvC5 *InputSlot Tray3 +*UIConstraints: *PageSize EnvISOB5 *InputSlot Tray3 +*UIConstraints: *PageSize w558h774 *InputSlot Tray3 +*UIConstraints: *PageSize Postcard *InputSlot Tray3 +*UIConstraints: *PageSize DoublePostcard *InputSlot Tray3 +*UIConstraints: *PageSize A6 *InputSlot Tray3 +*UIConstraints: *PageSize B6 *InputSlot Tray3 +*NonUIConstraints: *CustomPageSize True *InputSlot Tray3 + +*UIConstraints: *InputSlot Tray2 *PageSize Env10 +*UIConstraints: *InputSlot Tray2 *PageSize EnvMonarch +*UIConstraints: *InputSlot Tray2 *PageSize EnvDL +*UIConstraints: *InputSlot Tray2 *PageSize EnvC5 +*UIConstraints: *InputSlot Tray2 *PageSize EnvISOB5 +*UIConstraints: *InputSlot Tray2 *PageSize w558h774 +*UIConstraints: *InputSlot Tray2 *PageSize Postcard +*UIConstraints: *InputSlot Tray2 *PageSize DoublePostcard +*UIConstraints: *InputSlot Tray2 *PageSize A6 +*UIConstraints: *InputSlot Tray2 *PageSize B6 + +*UIConstraints: *InputSlot Tray3 *PageSize Env10 +*UIConstraints: *InputSlot Tray3 *PageSize EnvMonarch +*UIConstraints: *InputSlot Tray3 *PageSize EnvDL +*UIConstraints: *InputSlot Tray3 *PageSize EnvC5 +*UIConstraints: *InputSlot Tray3 *PageSize EnvISOB5 +*UIConstraints: *InputSlot Tray3 *PageSize w558h774 +*UIConstraints: *InputSlot Tray3 *PageSize Postcard +*UIConstraints: *InputSlot Tray3 *PageSize DoublePostcard +*UIConstraints: *InputSlot Tray3 *PageSize A6 +*UIConstraints: *InputSlot Tray3 *PageSize B6 + +*UIConstraints: *PageRegion Env10 *InputSlot Tray2 +*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray2 +*UIConstraints: *PageRegion EnvDL *InputSlot Tray2 +*UIConstraints: *PageRegion EnvC5 *InputSlot Tray2 +*UIConstraints: *PageRegion EnvISOB5 *InputSlot Tray2 +*UIConstraints: *PageRegion w558h774 *InputSlot Tray2 +*UIConstraints: *PageRegion Postcard *InputSlot Tray2 +*UIConstraints: *PageRegion DoublePostcard *InputSlot Tray2 +*UIConstraints: *PageRegion A6 *InputSlot Tray2 +*UIConstraints: *PageRegion B6 *InputSlot Tray2 +*%NonUIConstraints: *CustomPageRegion True *InputSlot Tray2 + +*UIConstraints: *PageRegion Env10 *InputSlot Tray3 +*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray3 +*UIConstraints: *PageRegion EnvDL *InputSlot Tray3 +*UIConstraints: *PageRegion EnvC5 *InputSlot Tray3 +*UIConstraints: *PageRegion EnvISOB5 *InputSlot Tray3 +*UIConstraints: *PageRegion w558h774 *InputSlot Tray3 +*UIConstraints: *PageRegion Postcard *InputSlot Tray3 +*UIConstraints: *PageRegion DoublePostcard *InputSlot Tray3 +*UIConstraints: *PageRegion A6 *InputSlot Tray3 +*UIConstraints: *PageRegion B6 *InputSlot Tray3 +*%NonUIConstraints: *CustomPageRegion True *InputSlot Tray3 + +*UIConstraints: *InputSlot Tray2 *PageRegion Env10 +*UIConstraints: *InputSlot Tray2 *PageRegion EnvMonarch +*UIConstraints: *InputSlot Tray2 *PageRegion EnvDL +*UIConstraints: *InputSlot Tray2 *PageRegion EnvC5 +*UIConstraints: *InputSlot Tray2 *PageRegion EnvISOB5 +*UIConstraints: *InputSlot Tray2 *PageRegion w558h774 +*UIConstraints: *InputSlot Tray2 *PageRegion Postcard +*UIConstraints: *InputSlot Tray2 *PageRegion DoublePostcard +*UIConstraints: *InputSlot Tray2 *PageRegion A6 +*UIConstraints: *InputSlot Tray2 *PageRegion B6 + +*UIConstraints: *InputSlot Tray3 *PageRegion Env10 +*UIConstraints: *InputSlot Tray3 *PageRegion EnvMonarch +*UIConstraints: *InputSlot Tray3 *PageRegion EnvDL +*UIConstraints: *InputSlot Tray3 *PageRegion EnvC5 +*UIConstraints: *InputSlot Tray3 *PageRegion EnvISOB5 +*UIConstraints: *InputSlot Tray3 *PageRegion w558h774 +*UIConstraints: *InputSlot Tray3 *PageRegion Postcard +*UIConstraints: *InputSlot Tray3 *PageRegion DoublePostcard +*UIConstraints: *InputSlot Tray3 *PageRegion A6 +*UIConstraints: *InputSlot Tray3 *PageRegion B6 + +*% Duplex Constraints +*%------------------------------------------------------------ +*UIConstraints: *PageSize Executive *Duplex DuplexNoTumble +*UIConstraints: *PageSize Executive *Duplex DuplexTumble +*UIConstraints: *PageSize A5 *Duplex DuplexNoTumble +*UIConstraints: *PageSize A5 *Duplex DuplexTumble +*UIConstraints: *PageSize A6 *Duplex DuplexNoTumble +*UIConstraints: *PageSize A6 *Duplex DuplexTumble +*UIConstraints: *PageSize B6 *Duplex DuplexNoTumble +*UIConstraints: *PageSize B6 *Duplex DuplexTumble +*UIConstraints: *PageSize ISOB5 *Duplex DuplexNoTumble +*UIConstraints: *PageSize ISOB5 *Duplex DuplexTumble +*UIConstraints: *PageSize B5 *Duplex DuplexNoTumble +*UIConstraints: *PageSize B5 *Duplex DuplexTumble +*UIConstraints: *PageSize Postcard *Duplex DuplexNoTumble +*UIConstraints: *PageSize Postcard *Duplex DuplexTumble +*UIConstraints: *PageSize DoublePostcard *Duplex DuplexNoTumble +*UIConstraints: *PageSize DoublePostcard *Duplex DuplexTumble +*UIConstraints: *PageSize w558h774 *Duplex DuplexNoTumble +*UIConstraints: *PageSize w558h774 *Duplex DuplexTumble +*UIConstraints: *PageSize EnvISOB5 *Duplex DuplexNoTumble +*UIConstraints: *PageSize EnvISOB5 *Duplex DuplexTumble +*UIConstraints: *PageSize Env10 *Duplex DuplexNoTumble +*UIConstraints: *PageSize Env10 *Duplex DuplexTumble +*UIConstraints: *PageSize EnvC5 *Duplex DuplexNoTumble +*UIConstraints: *PageSize EnvC5 *Duplex DuplexTumble +*UIConstraints: *PageSize EnvDL *Duplex DuplexNoTumble +*UIConstraints: *PageSize EnvDL *Duplex DuplexTumble +*UIConstraints: *PageSize EnvMonarch *Duplex DuplexNoTumble +*UIConstraints: *PageSize EnvMonarch *Duplex DuplexTumble +*NonUIConstraints: *CustomPageSize True *Duplex DuplexNoTumble +*NonUIConstraints: *CustomPageSize True *Duplex DuplexTumble + +*UIConstraints: *Duplex DuplexNoTumble *PageSize Executive +*UIConstraints: *Duplex DuplexTumble *PageSize Executive +*UIConstraints: *Duplex DuplexNoTumble *PageSize A5 +*UIConstraints: *Duplex DuplexTumble *PageSize A5 +*UIConstraints: *Duplex DuplexNoTumble *PageSize A6 +*UIConstraints: *Duplex DuplexTumble *PageSize A6 +*UIConstraints: *Duplex DuplexNoTumble *PageSize B6 +*UIConstraints: *Duplex DuplexTumble *PageSize B6 +*UIConstraints: *Duplex DuplexNoTumble *PageSize ISOB5 +*UIConstraints: *Duplex DuplexTumble *PageSize ISOB5 +*UIConstraints: *Duplex DuplexNoTumble *PageSize B5 +*UIConstraints: *Duplex DuplexTumble *PageSize B5 +*UIConstraints: *Duplex DuplexNoTumble *PageSize Postcard +*UIConstraints: *Duplex DuplexTumble *PageSize Postcard +*UIConstraints: *Duplex DuplexNoTumble *PageSize DoublePostcard +*UIConstraints: *Duplex DuplexTumble *PageSize DoublePostcard +*UIConstraints: *Duplex DuplexNoTumble *PageSize w558h774 +*UIConstraints: *Duplex DuplexTumble *PageSize w558h774 +*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvISOB5 +*UIConstraints: *Duplex DuplexTumble *PageSize EnvISOB5 +*UIConstraints: *Duplex DuplexNoTumble *PageSize Env10 +*UIConstraints: *Duplex DuplexTumble *PageSize Env10 +*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvC5 +*UIConstraints: *Duplex DuplexTumble *PageSize EnvC5 +*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvDL +*UIConstraints: *Duplex DuplexTumble *PageSize EnvDL +*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvMonarch +*UIConstraints: *Duplex DuplexTumble *PageSize EnvMonarch +*NonUIConstraints: *Duplex DuplexNoTumble *CustomPageSize True +*NonUIConstraints: *Duplex DuplexTumble *CustomPageSize True + +*UIConstraints: *PageRegion Executive *Duplex DuplexNoTumble +*UIConstraints: *PageRegion Executive *Duplex DuplexTumble +*UIConstraints: *PageRegion A5 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion A5 *Duplex DuplexTumble +*UIConstraints: *PageRegion A6 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion A6 *Duplex DuplexTumble +*UIConstraints: *PageRegion B6 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion B6 *Duplex DuplexTumble +*UIConstraints: *PageRegion ISOB5 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion ISOB5 *Duplex DuplexTumble +*UIConstraints: *PageRegion B5 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion B5 *Duplex DuplexTumble +*UIConstraints: *PageRegion Postcard *Duplex DuplexNoTumble +*UIConstraints: *PageRegion Postcard *Duplex DuplexTumble +*UIConstraints: *PageRegion DoublePostcard *Duplex DuplexNoTumble +*UIConstraints: *PageRegion DoublePostcard *Duplex DuplexTumble +*UIConstraints: *PageRegion w558h774 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion w558h774 *Duplex DuplexTumble +*UIConstraints: *PageRegion EnvISOB5 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion EnvISOB5 *Duplex DuplexTumble +*UIConstraints: *PageRegion Env10 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion Env10 *Duplex DuplexTumble +*UIConstraints: *PageRegion EnvC5 *Duplex DuplexNoTumble +*UIConstraints: *PageRegion EnvC5 *Duplex DuplexTumble +*UIConstraints: *PageRegion EnvDL *Duplex DuplexNoTumble +*UIConstraints: *PageRegion EnvDL *Duplex DuplexTumble +*UIConstraints: *PageRegion EnvMonarch *Duplex DuplexNoTumble +*UIConstraints: *PageRegion EnvMonarch *Duplex DuplexTumble +*%NonUIConstraints: *CustomPageRegion True *Duplex DuplexNoTumble +*%NonUIConstraints: *CustomPageRegion True *Duplex DuplexTumble + +*UIConstraints: *Duplex DuplexNoTumble *PageRegion Executive +*UIConstraints: *Duplex DuplexTumble *PageRegion Executive +*UIConstraints: *Duplex DuplexNoTumble *PageRegion A5 +*UIConstraints: *Duplex DuplexTumble *PageRegion A5 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion A6 +*UIConstraints: *Duplex DuplexTumble *PageRegion A6 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion B6 +*UIConstraints: *Duplex DuplexTumble *PageRegion B6 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion ISOB5 +*UIConstraints: *Duplex DuplexTumble *PageRegion ISOB5 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion B5 +*UIConstraints: *Duplex DuplexTumble *PageRegion B5 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion Postcard +*UIConstraints: *Duplex DuplexTumble *PageRegion Postcard +*UIConstraints: *Duplex DuplexNoTumble *PageRegion DoublePostcard +*UIConstraints: *Duplex DuplexTumble *PageRegion DoublePostcard +*UIConstraints: *Duplex DuplexNoTumble *PageRegion w558h774 +*UIConstraints: *Duplex DuplexTumble *PageRegion w558h774 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvISOB5 +*UIConstraints: *Duplex DuplexTumble *PageRegion EnvISOB5 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion Env10 +*UIConstraints: *Duplex DuplexTumble *PageRegion Env10 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvC5 +*UIConstraints: *Duplex DuplexTumble *PageRegion EnvC5 +*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvDL +*UIConstraints: *Duplex DuplexTumble *PageRegion EnvDL +*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvMonarch +*UIConstraints: *Duplex DuplexTumble *PageRegion EnvMonarch +*%NonUIConstraints: *Duplex DuplexNoTumble *CustomPageRegion True +*%NonUIConstraints: *Duplex DuplexTumble *CustomPageRegion True + +*% Media Type constraints +*%---------------------------------------------------------------- +*UIConstraints: *MediaType Labels *InputSlot Tray2 +*UIConstraints: *MediaType Labels *InputSlot Tray3 +*UIConstraints: *MediaType Transparency *InputSlot Tray2 +*UIConstraints: *MediaType Transparency *InputSlot Tray3 +*UIConstraints: *MediaType Heavy91105 *InputSlot Tray2 +*UIConstraints: *MediaType Heavy91105 *InputSlot Tray3 +*UIConstraints: *MediaType Cardstock105176 *InputSlot Tray2 +*UIConstraints: *MediaType Cardstock105176 *InputSlot Tray3 +*UIConstraints: *MediaType Envelope *InputSlot Tray2 +*UIConstraints: *MediaType Envelope *InputSlot Tray3 + +*UIConstraints: *InputSlot Tray2 *MediaType Labels +*UIConstraints: *InputSlot Tray3 *MediaType Labels +*UIConstraints: *InputSlot Tray2 *MediaType Transparency +*UIConstraints: *InputSlot Tray3 *MediaType Transparency +*UIConstraints: *InputSlot Tray2 *MediaType Heavy91105 +*UIConstraints: *InputSlot Tray3 *MediaType Heavy91105 +*UIConstraints: *InputSlot Tray2 *MediaType Cardstock105176 +*UIConstraints: *InputSlot Tray3 *MediaType Cardstock105176 +*UIConstraints: *InputSlot Tray2 *MediaType Envelope +*UIConstraints: *InputSlot Tray3 *MediaType Envelope + +*UIConstraints: *MediaType Transparency *Duplex DuplexNoTumble +*UIConstraints: *MediaType Transparency *Duplex DuplexTumble +*UIConstraints: *MediaType Labels *Duplex DuplexNoTumble +*UIConstraints: *MediaType Labels *Duplex DuplexTumble +*UIConstraints: *MediaType Cardstock105176 *Duplex DuplexNoTumble +*UIConstraints: *MediaType Cardstock105176 *Duplex DuplexTumble +*UIConstraints: *MediaType Heavy91105 *Duplex DuplexNoTumble +*UIConstraints: *MediaType Heavy91105 *Duplex DuplexTumble +*UIConstraints: *MediaType Envelope *Duplex DuplexNoTumble +*UIConstraints: *MediaType Envelope *Duplex DuplexTumble + +*UIConstraints: *Duplex DuplexNoTumble *MediaType Transparency +*UIConstraints: *Duplex DuplexTumble *MediaType Transparency +*UIConstraints: *Duplex DuplexNoTumble *MediaType Labels +*UIConstraints: *Duplex DuplexTumble *MediaType Labels +*UIConstraints: *Duplex DuplexNoTumble *MediaType Cardstock105176 +*UIConstraints: *Duplex DuplexTumble *MediaType Cardstock105176 +*UIConstraints: *Duplex DuplexNoTumble *MediaType Heavy91105 +*UIConstraints: *Duplex DuplexTumble *MediaType Heavy91105 +*UIConstraints: *Duplex DuplexNoTumble *MediaType Envelope +*UIConstraints: *Duplex DuplexTumble *MediaType Envelope + + +*% Fills not allowed with overlays +*%------------------------------------------------------------ + +*%------------------------------------------------------------ + +*%================================================= +*% Paper Sizes +*%================================================= +*OpenUI *PageSize/Page Size: PickOne +*OrderDependency: 30 AnySetup *PageSize +*DefaultPageSize: A4 +*da.Translation PageSize/Page Size: "" +*de.Translation PageSize/Papierformat: "" +*es.Translation PageSize/Tamaño del papel: "" +*fi.Translation PageSize/Sivukoko: "" +*fr.Translation PageSize/Format de page: "" +*it.Translation PageSize/Dimensioni pagina: "" +*ja.Translation PageSize/ページサイズ: "" +*ko.Translation PageSize/용지 크기: "" +*nl.Translation PageSize/Papierformaat: "" +*nb.Translation PageSize/Papirformat: "" +*pt.Translation PageSize/Tamanho do papel: "" +*sv.Translation PageSize/Sidstorlek: "" +*zh_CN.Translation PageSize/页面大小: "" +*zh_TW.Translation PageSize/頁面尺寸: "" + +*PageSize Letter/Letter: " + <> setpagedevice" +*End +*da.PageSize Letter/Letter: "" +*de.PageSize Letter/Letter: "" +*es.PageSize Letter/Letter: "" +*fi.PageSize Letter/Letter: "" +*fr.PageSize Letter/Lettre: "" +*it.PageSize Letter/Letter: "" +*ja.PageSize Letter/レター: "" +*ko.PageSize Letter/레터: "" +*nl.PageSize Letter/Letter: "" +*nb.PageSize Letter/Letter: "" +*pt.PageSize Letter/Carta: "" +*sv.PageSize Letter/Letter: "" +*zh_CN.PageSize Letter/信纸: "" +*zh_TW.PageSize Letter/Letter: "" + +*PageSize LetterSmall/Letter (Small): " + <> setpagedevice" +*End +*da.PageSize LetterSmall/Letter (lille): "" +*de.PageSize LetterSmall/Letter (Klein): "" +*es.PageSize LetterSmall/Letter (pequeño): "" +*fi.PageSize LetterSmall/Letter (pieni): "" +*fr.PageSize LetterSmall/Lettre (petit): "" +*it.PageSize LetterSmall/Letter (ridotta): "" +*ja.PageSize LetterSmall/レター (小): "" +*ko.PageSize LetterSmall/레터 (소): "" +*nl.PageSize LetterSmall/Letter (klein): "" +*nb.PageSize LetterSmall/Letter (lite): "" +*pt.PageSize LetterSmall/Carta (pequeno): "" +*sv.PageSize LetterSmall/Letter (litet): "" +*zh_CN.PageSize LetterSmall/信纸 (小): "" +*zh_TW.PageSize LetterSmall/Letter (小): "" + +*PageSize Executive/Executive: " + <> setpagedevice" +*End +*da.PageSize Executive/Executive: "" +*de.PageSize Executive/Executive: "" +*es.PageSize Executive/Ejecutivo: "" +*fi.PageSize Executive/Executive: "" +*fr.PageSize Executive/Exécutif: "" +*it.PageSize Executive/Executive: "" +*ja.PageSize Executive/エグゼクティブ: "" +*ko.PageSize Executive/Executive: "" +*nl.PageSize Executive/Executive: "" +*nb.PageSize Executive/Executive: "" +*pt.PageSize Executive/Executivo: "" +*sv.PageSize Executive/Executive: "" +*zh_CN.PageSize Executive/Executive: "" +*zh_TW.PageSize Executive/Executive: "" + +*PageSize Legal/Legal: " + <> setpagedevice" +*End +*da.PageSize Legal/Legal: "" +*de.PageSize Legal/Legal: "" +*es.PageSize Legal/Legal: "" +*fi.PageSize Legal/Legal: "" +*fr.PageSize Legal/Légal: "" +*it.PageSize Legal/Legal: "" +*ja.PageSize Legal/リーガル: "" +*ko.PageSize Legal/리갈: "" +*nl.PageSize Legal/Legal: "" +*nb.PageSize Legal/Legal: "" +*pt.PageSize Legal/Legal: "" +*sv.PageSize Legal/Legal: "" +*zh_CN.PageSize Legal/Legal: "" +*zh_TW.PageSize Legal/Legal: "" + +*PageSize LegalSmall/Legal (Small): " + <> setpagedevice" +*End +*da.PageSize LegalSmall/Legal (lille): "" +*de.PageSize LegalSmall/Legal (Klein): "" +*es.PageSize LegalSmall/Legal (pequeño): "" +*fi.PageSize LegalSmall/Legal (pieni): "" +*fr.PageSize LegalSmall/Légal (petit): "" +*it.PageSize LegalSmall/Legal (ridotto): "" +*ja.PageSize LegalSmall/リーガル (小): "" +*ko.PageSize LegalSmall/리갈 (소): "" +*nl.PageSize LegalSmall/Legal (klein): "" +*nb.PageSize LegalSmall/Legal (lite): "" +*pt.PageSize LegalSmall/Legal (pequeno): "" +*sv.PageSize LegalSmall/Legal (litet): "" +*zh_CN.PageSize LegalSmall/Legal (小): "" +*zh_TW.PageSize LegalSmall/Legal (小): "" + +*PageSize A4/A4: " + <> setpagedevice" +*End +*da.PageSize A4/A4: "" +*de.PageSize A4/A4: "" +*es.PageSize A4/A4: "" +*fi.PageSize A4/A4: "" +*fr.PageSize A4/A4: "" +*it.PageSize A4/A4: "" +*ja.PageSize A4/A4: "" +*ko.PageSize A4/A4: "" +*nl.PageSize A4/A4: "" +*nb.PageSize A4/A4: "" +*pt.PageSize A4/A4: "" +*sv.PageSize A4/A4: "" +*zh_CN.PageSize A4/A4: "" +*zh_TW.PageSize A4/A4: "" + +*PageSize A4Small/A4 (Small): " + <> setpagedevice" +*End +*da.PageSize A4Small/A4 (lille): "" +*de.PageSize A4Small/A4 (Klein): "" +*es.PageSize A4Small/A4 (pequeño): "" +*fi.PageSize A4Small/A4 (pieni): "" +*fr.PageSize A4Small/A4 (petit): "" +*it.PageSize A4Small/A4 (ridotta): "" +*ja.PageSize A4Small/A4 (小): "" +*ko.PageSize A4Small/A4 (소): "" +*nl.PageSize A4Small/A4 (klein): "" +*nb.PageSize A4Small/A4 (lite): "" +*pt.PageSize A4Small/A4 (pequeno): "" +*sv.PageSize A4Small/A4 (litet): "" +*zh_CN.PageSize A4Small/A4 (小): "" +*zh_TW.PageSize A4Small/A4 (小): "" + +*PageSize A5/A5: " + <> setpagedevice" +*End +*da.PageSize A5/A5: "" +*de.PageSize A5/A5: "" +*es.PageSize A5/A5: "" +*fi.PageSize A5/A5: "" +*fr.PageSize A5/A5: "" +*it.PageSize A5/A5: "" +*ja.PageSize A5/A5: "" +*ko.PageSize A5/A5: "" +*nl.PageSize A5/A5: "" +*nb.PageSize A5/A5: "" +*pt.PageSize A5/A5: "" +*sv.PageSize A5/A5: "" +*zh_CN.PageSize A5/A5: "" +*zh_TW.PageSize A5/A5: "" + +*PageSize A6/A6: " + <> setpagedevice" +*End +*da.PageSize A6/A6: "" +*de.PageSize A6/A6: "" +*es.PageSize A6/A6: "" +*fi.PageSize A6/A6: "" +*fr.PageSize A6/A6: "" +*it.PageSize A6/A6: "" +*ja.PageSize A6/A6: "" +*ko.PageSize A6/A6: "" +*nl.PageSize A6/A6: "" +*nb.PageSize A6/A6: "" +*pt.PageSize A6/A6: "" +*sv.PageSize A6/A6: "" +*zh_CN.PageSize A6/A6: "" +*zh_TW.PageSize A6/A6: "" + +*PageSize B6/JIS B6: " + <> setpagedevice" +*End +*da.PageSize B6/JIS B6: "" +*de.PageSize B6/B6 (JIS): "" +*es.PageSize B6/JIS B6: "" +*fi.PageSize B6/JIS B6: "" +*fr.PageSize B6/JIS B6: "" +*it.PageSize B6/JIS B6: "" +*ja.PageSize B6/B6 (JIS): "" +*ko.PageSize B6/JIS B6: "" +*nl.PageSize B6/JIS B6: "" +*nb.PageSize B6/JIS B6: "" +*pt.PageSize B6/B6 JIS: "" +*sv.PageSize B6/JIS B6: "" +*zh_CN.PageSize B6/JIS B6: "" +*zh_TW.PageSize B6/JIS B6: "" + +*PageSize ISOB5/B5 (ISO): " + <> setpagedevice" +*End +*da.PageSize ISOB5/B5 (ISO): "" +*de.PageSize ISOB5/B5 (ISO): "" +*es.PageSize ISOB5/B5 (ISO): "" +*fi.PageSize ISOB5/B5 (ISO): "" +*fr.PageSize ISOB5/B5 (ISO): "" +*it.PageSize ISOB5/B5 (ISO): "" +*ja.PageSize ISOB5/B5 (ISO): "" +*ko.PageSize ISOB5/B5 (ISO): "" +*nl.PageSize ISOB5/B5 (ISO): "" +*nb.PageSize ISOB5/B5 (ISO): "" +*pt.PageSize ISOB5/B5 (ISO): "" +*sv.PageSize ISOB5/B5 (ISO): "" +*zh_CN.PageSize ISOB5/B5 (ISO): "" +*zh_TW.PageSize ISOB5/B5 (ISO): "" + +*PageSize B5/JIS B5: " + <> setpagedevice" +*End +*da.PageSize B5/JIS B5: "" +*de.PageSize B5/B5 (JIS): "" +*es.PageSize B5/JIS B5: "" +*fi.PageSize B5/JIS B5: "" +*fr.PageSize B5/JIS B5: "" +*it.PageSize B5/JIS B5: "" +*ja.PageSize B5/B5 (JIS): "" +*ko.PageSize B5/JIS B5: "" +*nl.PageSize B5/JIS B5: "" +*nb.PageSize B5/JIS B5: "" +*pt.PageSize B5/B5 JIS: "" +*sv.PageSize B5/JIS B5: "" +*zh_CN.PageSize B5/JIS B5: "" +*zh_TW.PageSize B5/JIS B5: "" + +*PageSize Postcard/Postcard (JIS): " + <> setpagedevice" +*End +*da.PageSize Postcard/Postkort (JIS): "" +*de.PageSize Postcard/Postkarte (JIS): "" +*es.PageSize Postcard/Tarjeta postal (JIS): "" +*fi.PageSize Postcard/Postikortti (JIS): "" +*fr.PageSize Postcard/Carte postale (JIS): "" +*it.PageSize Postcard/Cartolina (JIS): "" +*ja.PageSize Postcard/はがき (JIS): "" +*ko.PageSize Postcard/우편엽서 (JIS): "" +*nl.PageSize Postcard/Briefkaart (JIS): "" +*nb.PageSize Postcard/Postkort (JIS): "" +*pt.PageSize Postcard/Postal (JIS): "" +*sv.PageSize Postcard/Brevkort (JIS): "" +*zh_CN.PageSize Postcard/明信片 (JIS): "" +*zh_TW.PageSize Postcard/明信片(JIS): "" + +*PageSize DoublePostcard/Double Postcard (JIS): " + <> setpagedevice" +*End +*da.PageSize DoublePostcard/Dobbelt postkort (JIS): "" +*de.PageSize DoublePostcard/Doppelte Postkarte (JIS): "" +*es.PageSize DoublePostcard/Tarjeta postal doble (JIS): "" +*fi.PageSize DoublePostcard/Kaksinkert. postikortti (JIS): "" +*fr.PageSize DoublePostcard/Carte postale double (JIS): "" +*it.PageSize DoublePostcard/Cartolina doppia (JIS): "" +*ja.PageSize DoublePostcard/往復はがき (JIS): "" +*ko.PageSize DoublePostcard/양면 엽서 (JIS): "" +*nl.PageSize DoublePostcard/Dubbele briefkaart (JIS): "" +*nb.PageSize DoublePostcard/Dobbelt postkort (JIS): "" +*pt.PageSize DoublePostcard/Postal duplo (JIS): "" +*sv.PageSize DoublePostcard/Dubbelt brevkort (JIS): "" +*zh_CN.PageSize DoublePostcard/大号明信片 (JIS): "" +*zh_TW.PageSize DoublePostcard/雙面明信片 (JIS): "" + +*PageSize w558h774/16K: " + <> setpagedevice" +*End +*da.PageSize w558h774/16K: "" +*de.PageSize w558h774/16K: "" +*es.PageSize w558h774/16K: "" +*fi.PageSize w558h774/16K: "" +*fr.PageSize w558h774/16K: "" +*it.PageSize w558h774/16K: "" +*ja.PageSize w558h774/16K: "" +*ko.PageSize w558h774/16K: "" +*nl.PageSize w558h774/16K: "" +*nb.PageSize w558h774/16K: "" +*pt.PageSize w558h774/16K: "" +*sv.PageSize w558h774/16K: "" +*zh_CN.PageSize w558h774/16K: "" +*zh_TW.PageSize w558h774/16K: "" + +*PageSize Env10/Env Comm10: " + <> setpagedevice" +*End +*da.PageSize Env10/Konv Comm10: "" +*de.PageSize Env10/Umschlag Comm10: "" +*es.PageSize Env10/Sobre Comm10: "" +*fi.PageSize Env10/Kirjekuori Comm10: "" +*fr.PageSize Env10/Enveloppe Comm10: "" +*it.PageSize Env10/Busta Comm10: "" +*ja.PageSize Env10/封筒 Comm10: "" +*ko.PageSize Env10/Comm10 봉투: "" +*nl.PageSize Env10/Comm10-envelop: "" +*nb.PageSize Env10/Comm10-konvolutt: "" +*pt.PageSize Env10/Envelope Comm10: "" +*sv.PageSize Env10/Comm10-kuvert: "" +*zh_CN.PageSize Env10/信封 Comm10: "" +*zh_TW.PageSize Env10/Comm10 信封: "" + +*PageSize EnvMonarch/Env Monarch: " + <> setpagedevice" +*End +*da.PageSize EnvMonarch/Konv Monarch: "" +*de.PageSize EnvMonarch/Umschlag Monarch: "" +*es.PageSize EnvMonarch/Sobre Monarch: "" +*fi.PageSize EnvMonarch/Kirjekuori Monarch: "" +*fr.PageSize EnvMonarch/Enveloppe Monarch: "" +*it.PageSize EnvMonarch/Busta Monarch: "" +*ja.PageSize EnvMonarch/封筒 Monarch: "" +*ko.PageSize EnvMonarch/Monarch 봉투: "" +*nl.PageSize EnvMonarch/Monarch-envelop: "" +*nb.PageSize EnvMonarch/Monarch-konvolutt: "" +*pt.PageSize EnvMonarch/Envelope Monarch: "" +*sv.PageSize EnvMonarch/Monarch-kuvert: "" +*zh_CN.PageSize EnvMonarch/信封 Monarch: "" +*zh_TW.PageSize EnvMonarch/Monarch 信封: "" + +*PageSize EnvDL/Env DL: " + <> setpagedevice" +*End +*da.PageSize EnvDL/Konv DL: "" +*de.PageSize EnvDL/Umschlag DL: "" +*es.PageSize EnvDL/Sobre DL: "" +*fi.PageSize EnvDL/Kirjekuori DL: "" +*fr.PageSize EnvDL/Enveloppe DL: "" +*it.PageSize EnvDL/Busta DL: "" +*ja.PageSize EnvDL/封筒 DL: "" +*ko.PageSize EnvDL/DL 봉투: "" +*nl.PageSize EnvDL/DL-envelop: "" +*nb.PageSize EnvDL/DL-konvolutt: "" +*pt.PageSize EnvDL/Envelope DL: "" +*sv.PageSize EnvDL/DL-kuvert: "" +*zh_CN.PageSize EnvDL/信封 DL: "" +*zh_TW.PageSize EnvDL/DL 信封: "" + +*PageSize EnvC5/Env C5: " + <> setpagedevice" +*End +*da.PageSize EnvC5/Konv C5: "" +*de.PageSize EnvC5/Umschlag C5: "" +*es.PageSize EnvC5/Sobre C5: "" +*fi.PageSize EnvC5/Kirjekuori C5: "" +*fr.PageSize EnvC5/Enveloppe C5: "" +*it.PageSize EnvC5/Busta C5: "" +*ja.PageSize EnvC5/封筒 C5: "" +*ko.PageSize EnvC5/C5 봉투: "" +*nl.PageSize EnvC5/C5-envelop: "" +*nb.PageSize EnvC5/C5-konvolutt: "" +*pt.PageSize EnvC5/Envelope C5: "" +*sv.PageSize EnvC5/C5-kuvert: "" +*zh_CN.PageSize EnvC5/信封 C5: "" +*zh_TW.PageSize EnvC5/C5 信封: "" + +*PageSize EnvISOB5/Env ISO B5: " + <> setpagedevice" +*End +*da.PageSize EnvISOB5/Konv ISO B5: "" +*de.PageSize EnvISOB5/Umschlag ISO B5: "" +*es.PageSize EnvISOB5/Sobre ISO B5: "" +*fi.PageSize EnvISOB5/Kirjekuori ISO B5: "" +*fr.PageSize EnvISOB5/Enveloppe ISO B5: "" +*it.PageSize EnvISOB5/Busta B5: "" +*ja.PageSize EnvISOB5/封筒 ISO B5: "" +*ko.PageSize EnvISOB5/ISO B5 봉투: "" +*nl.PageSize EnvISOB5/ISO B5-envelop: "" +*nb.PageSize EnvISOB5/B5-konvolutt: "" +*pt.PageSize EnvISOB5/Envelope B5: "" +*sv.PageSize EnvISOB5/ISO B5-kuvert: "" +*zh_CN.PageSize EnvISOB5/信封 ISO B5: "" +*zh_TW.PageSize EnvISOB5/ISO B5 信封: "" + +*?PageSize: " + save + currentpagedevice /PageSize get aload pop + 2 copy gt {exch} if + (Unknown) + 16 dict + dup [612 792] (Letter) put + dup [522 756] (Executive) put + dup [612 1008] (Legal) put + dup [595 842] (A4) put + dup [420 595] (A5) put + dup [297 420] (A6) put + dup [499 709] (ISOB5) put + dup [516 729] (B5) put + dup [284 419] (Postcard) put + dup [419.5 567] (DoublePostcard) put + dup [558 774] (w558h774) put + dup [297 684] (Env10) put + dup [279 540] (EnvMonarch) put + dup [312 624] (EnvDL) put + dup [459 649] (EnvC5) put + dup [499 709] (EnvISOB5) put + { exch aload pop 4 index sub abs 5 le exch + 5 index sub abs 5 le and + {exch pop exit} {pop} ifelse + } bind forall + = flush pop pop + restore +" +*End +*CloseUI: *PageSize + +*OpenUI *PageRegion/Page Region: PickOne +*OrderDependency: 40 AnySetup *PageRegion +*DefaultPageRegion: A4 +*da.Translation PageRegion/Page Region: "" +*de.Translation PageRegion/Seitenbereich: "" +*es.Translation PageRegion/Dimensión de papel: "" +*fi.Translation PageRegion/Sivuseutu: "" +*fr.Translation PageRegion/Région de page: "" +*it.Translation PageRegion/Dimensioni regione: "" +*ja.Translation PageRegion/Page Region: "" +*ko.Translation PageRegion/Page Region: "" +*nl.Translation PageRegion/Page Region: "" +*nb.Translation PageRegion/Page Region: "" +*pt.Translation PageRegion/Região do papel: "" +*sv.Translation PageRegion/Page Region: "" +*zh_CN.Translation PageRegion/Page Region: "" +*zh_TW.Translation PageRegion/Page Region: "" + +*PageRegion Letter/Letter: " + <> setpagedevice" +*End +*da.PageRegion Letter/Letter: "" +*de.PageRegion Letter/Letter: "" +*es.PageRegion Letter/Letter: "" +*fi.PageRegion Letter/Letter: "" +*fr.PageRegion Letter/Lettre: "" +*it.PageRegion Letter/Letter: "" +*ja.PageRegion Letter/レター: "" +*ko.PageRegion Letter/레터: "" +*nl.PageRegion Letter/Letter: "" +*nb.PageRegion Letter/Letter: "" +*pt.PageRegion Letter/Carta: "" +*sv.PageRegion Letter/Letter: "" +*zh_CN.PageRegion Letter/信纸: "" +*zh_TW.PageRegion Letter/Letter: "" + +*PageRegion LetterSmall/Letter (Small): " + <> setpagedevice" +*End +*da.PageRegion LetterSmall/Letter (lille): "" +*de.PageRegion LetterSmall/Letter (Klein): "" +*es.PageRegion LetterSmall/Letter (pequeño): "" +*fi.PageRegion LetterSmall/Letter (pieni): "" +*fr.PageRegion LetterSmall/Lettre (petit): "" +*it.PageRegion LetterSmall/Letter (ridotta): "" +*ja.PageRegion LetterSmall/レター (小): "" +*ko.PageRegion LetterSmall/레터 (소): "" +*nl.PageRegion LetterSmall/Letter (klein): "" +*nb.PageRegion LetterSmall/Letter (lite): "" +*pt.PageRegion LetterSmall/Carta (pequeno): "" +*sv.PageRegion LetterSmall/Letter (litet): "" +*zh_CN.PageRegion LetterSmall/信纸 (小): "" +*zh_TW.PageRegion LetterSmall/Letter (小): "" + +*PageRegion Executive/Executive: " + <> setpagedevice" +*End +*da.PageRegion Executive/Executive: "" +*de.PageRegion Executive/Executive: "" +*es.PageRegion Executive/Ejecutivo: "" +*fi.PageRegion Executive/Executive: "" +*fr.PageRegion Executive/Exécutif: "" +*it.PageRegion Executive/Executive: "" +*ja.PageRegion Executive/エグゼクティブ: "" +*ko.PageRegion Executive/Executive: "" +*nl.PageRegion Executive/Executive: "" +*nb.PageRegion Executive/Executive: "" +*pt.PageRegion Executive/Executivo: "" +*sv.PageRegion Executive/Executive: "" +*zh_CN.PageRegion Executive/Executive: "" +*zh_TW.PageRegion Executive/Executive: "" + +*PageRegion Legal/Legal: " + <> setpagedevice" +*End +*da.PageRegion Legal/Legal: "" +*de.PageRegion Legal/Legal: "" +*es.PageRegion Legal/Legal: "" +*fi.PageRegion Legal/Legal: "" +*fr.PageRegion Legal/Légal: "" +*it.PageRegion Legal/Legal: "" +*ja.PageRegion Legal/リーガル: "" +*ko.PageRegion Legal/리갈: "" +*nl.PageRegion Legal/Legal: "" +*nb.PageRegion Legal/Legal: "" +*pt.PageRegion Legal/Legal: "" +*sv.PageRegion Legal/Legal: "" +*zh_CN.PageRegion Legal/Legal: "" +*zh_TW.PageRegion Legal/Legal: "" + +*PageRegion LegalSmall/Legal (Small): " + <> setpagedevice" +*End +*da.PageRegion LegalSmall/Legal (lille): "" +*de.PageRegion LegalSmall/Legal (Klein): "" +*es.PageRegion LegalSmall/Legal (pequeño): "" +*fi.PageRegion LegalSmall/Legal (pieni): "" +*fr.PageRegion LegalSmall/Légal (petit): "" +*it.PageRegion LegalSmall/Legal (ridotto): "" +*ja.PageRegion LegalSmall/リーガル (小): "" +*ko.PageRegion LegalSmall/리갈 (소): "" +*nl.PageRegion LegalSmall/Legal (klein): "" +*nb.PageRegion LegalSmall/Legal (lite): "" +*pt.PageRegion LegalSmall/Legal (pequeno): "" +*sv.PageRegion LegalSmall/Legal (litet): "" +*zh_CN.PageRegion LegalSmall/Legal (小): "" +*zh_TW.PageRegion LegalSmall/Legal (小): "" + +*PageRegion A4/A4: " + <> setpagedevice" +*End +*da.PageRegion A4/A4: "" +*de.PageRegion A4/A4: "" +*es.PageRegion A4/A4: "" +*fi.PageRegion A4/A4: "" +*fr.PageRegion A4/A4: "" +*it.PageRegion A4/A4: "" +*ja.PageRegion A4/A4: "" +*ko.PageRegion A4/A4: "" +*nl.PageRegion A4/A4: "" +*nb.PageRegion A4/A4: "" +*pt.PageRegion A4/A4: "" +*sv.PageRegion A4/A4: "" +*zh_CN.PageRegion A4/A4: "" +*zh_TW.PageRegion A4/A4: "" + +*PageRegion A4Small/A4 (Small): " + <> setpagedevice" +*End +*da.PageRegion A4Small/A4 (lille): "" +*de.PageRegion A4Small/A4 (Klein): "" +*es.PageRegion A4Small/A4 (pequeño): "" +*fi.PageRegion A4Small/A4 (pieni): "" +*fr.PageRegion A4Small/A4 (petit): "" +*it.PageRegion A4Small/A4 (ridotta): "" +*ja.PageRegion A4Small/A4 (小): "" +*ko.PageRegion A4Small/A4 (소): "" +*nl.PageRegion A4Small/A4 (klein): "" +*nb.PageRegion A4Small/A4 (lite): "" +*pt.PageRegion A4Small/A4 (pequeno): "" +*sv.PageRegion A4Small/A4 (litet): "" +*zh_CN.PageRegion A4Small/A4 (小): "" +*zh_TW.PageRegion A4Small/A4 (小): "" + +*PageRegion A5/A5: " + <> setpagedevice" +*End +*da.PageRegion A5/A5: "" +*de.PageRegion A5/A5: "" +*es.PageRegion A5/A5: "" +*fi.PageRegion A5/A5: "" +*fr.PageRegion A5/A5: "" +*it.PageRegion A5/A5: "" +*ja.PageRegion A5/A5: "" +*ko.PageRegion A5/A5: "" +*nl.PageRegion A5/A5: "" +*nb.PageRegion A5/A5: "" +*pt.PageRegion A5/A5: "" +*sv.PageRegion A5/A5: "" +*zh_CN.PageRegion A5/A5: "" +*zh_TW.PageRegion A5/A5: "" + +*PageRegion A6/A6: " + <> setpagedevice" +*End +*da.PageRegion A6/A6: "" +*de.PageRegion A6/A6 Card: "" +*es.PageRegion A6/A6: "" +*fi.PageRegion A6/A6: "" +*fr.PageRegion A6/A6 Card: "" +*it.PageRegion A6/A6 Card: "" +*ja.PageRegion A6/A6: "" +*ko.PageRegion A6/A6: "" +*nl.PageRegion A6/A6: "" +*nb.PageRegion A6/A6: "" +*pt.PageRegion A6/A6: "" +*sv.PageRegion A6/A6: "" +*zh_CN.PageRegion A6/A6: "" +*zh_TW.PageRegion A6/A6: "" + +*PageRegion B6/JIS B6: " + <> setpagedevice" +*End +*da.PageRegion B6/JIS B6: "" +*de.PageRegion B6/B6 (JIS): "" +*es.PageRegion B6/JIS B6: "" +*fi.PageRegion B6/JIS B6: "" +*fr.PageRegion B6/JIS B6: "" +*it.PageRegion B6/JIS B6: "" +*ja.PageRegion B6/B6 (JIS): "" +*ko.PageRegion B6/JIS B6: "" +*nl.PageRegion B6/JIS B6: "" +*nb.PageRegion B6/JIS B6: "" +*pt.PageRegion B6/B6 JIS: "" +*sv.PageRegion B6/JIS B6: "" +*zh_CN.PageRegion B6/JIS B6: "" +*zh_TW.PageRegion B6/JIS B6: "" + +*PageRegion ISOB5/B5 (ISO): " + <> setpagedevice" +*End +*da.PageRegion ISOB5/B5 (ISO): "" +*de.PageRegion ISOB5/B5 (ISO): "" +*es.PageRegion ISOB5/B5 (ISO): "" +*fi.PageRegion ISOB5/B5 (ISO): "" +*fr.PageRegion ISOB5/B5 (ISO): "" +*it.PageRegion ISOB5/B5 (ISO): "" +*ja.PageRegion ISOB5/B5 (ISO): "" +*ko.PageRegion ISOB5/B5 (ISO): "" +*nl.PageRegion ISOB5/B5 (ISO): "" +*nb.PageRegion ISOB5/B5 (ISO): "" +*pt.PageRegion ISOB5/B5 (ISO): "" +*sv.PageRegion ISOB5/B5 (ISO): "" +*zh_CN.PageRegion ISOB5/B5 (ISO): "" +*zh_TW.PageRegion ISOB5/B5 (ISO): "" + +*PageRegion B5/JIS B5: " + <> setpagedevice" +*End +*da.PageRegion B5/JIS B5: "" +*de.PageRegion B5/B5 (JIS): "" +*es.PageRegion B5/JIS B5: "" +*fi.PageRegion B5/JIS B5: "" +*fr.PageRegion B5/JIS B5: "" +*it.PageRegion B5/JIS B5: "" +*ja.PageRegion B5/B5 (JIS): "" +*ko.PageRegion B5/JIS B5: "" +*nl.PageRegion B5/JIS B5: "" +*nb.PageRegion B5/JIS B5: "" +*pt.PageRegion B5/B5 JIS: "" +*sv.PageRegion B5/JIS B5: "" +*zh_CN.PageRegion B5/JIS B5: "" +*zh_TW.PageRegion B5/JIS B5: "" + +*PageRegion Postcard/Postcard (JIS): " + <> setpagedevice" +*End +*da.PageRegion Postcard/Postkort (JIS): "" +*de.PageRegion Postcard/Postkarte (JIS): "" +*es.PageRegion Postcard/Tarjeta postal (JIS): "" +*fi.PageRegion Postcard/Postikortti (JIS): "" +*fr.PageRegion Postcard/Carte postale (JIS): "" +*it.PageRegion Postcard/Cartolina (JIS): "" +*ja.PageRegion Postcard/はがき (JIS): "" +*ko.PageRegion Postcard/우편엽서 (JIS): "" +*nl.PageRegion Postcard/Briefkaart (JIS): "" +*nb.PageRegion Postcard/Postkort (JIS): "" +*pt.PageRegion Postcard/Postal (JIS): "" +*sv.PageRegion Postcard/Brevkort (JIS): "" +*zh_CN.PageRegion Postcard/明信片 (JIS): "" +*zh_TW.PageRegion Postcard/明信片(JIS): "" + +*PageRegion DoublePostcard/Double Postcard (JIS): " + <> setpagedevice" +*End +*da.PageRegion DoublePostcard/Dobbelt postkort (JIS): "" +*de.PageRegion DoublePostcard/Doppelte Postkarte (JIS): "" +*es.PageRegion DoublePostcard/Tarjeta postal doble (JIS): "" +*fi.PageRegion DoublePostcard/Kaksinkert. postikortti (JIS): "" +*fr.PageRegion DoublePostcard/Carte postale double (JIS): "" +*it.PageRegion DoublePostcard/Cartolina doppia (JIS): "" +*ja.PageRegion DoublePostcard/往復はがき (JIS): "" +*ko.PageRegion DoublePostcard/양면 엽서 (JIS): "" +*nl.PageRegion DoublePostcard/Dubbele briefkaart (JIS): "" +*nb.PageRegion DoublePostcard/Dobbelt postkort (JIS): "" +*pt.PageRegion DoublePostcard/Postal duplo (JIS): "" +*sv.PageRegion DoublePostcard/Dubbelt brevkort (JIS): "" +*zh_CN.PageRegion DoublePostcard/大号明信片 (JIS): "" +*zh_TW.PageRegion DoublePostcard/雙面明信片 (JIS): "" + +*PageRegion w558h774/16K: " + <> setpagedevice" +*End +*da.PageRegion w558h774/16K: "" +*de.PageRegion w558h774/16K: "" +*es.PageRegion w558h774/16K: "" +*fi.PageRegion w558h774/16K: "" +*fr.PageRegion w558h774/16K: "" +*it.PageRegion w558h774/16K: "" +*ja.PageRegion w558h774/16K: "" +*ko.PageRegion w558h774/16K: "" +*nl.PageRegion w558h774/16K: "" +*nb.PageRegion w558h774/16K: "" +*pt.PageRegion w558h774/16K: "" +*sv.PageRegion w558h774/16K: "" +*zh_CN.PageRegion w558h774/16K: "" +*zh_TW.PageRegion w558h774/16K: "" + +*PageRegion Env10/Env Comm10: " + <> setpagedevice" +*End +*da.PageRegion Env10/Konv Comm10: "" +*de.PageRegion Env10/Umschlag Comm10: "" +*es.PageRegion Env10/Sobre Comm10: "" +*fi.PageRegion Env10/Kirjekuori Comm10: "" +*fr.PageRegion Env10/Enveloppe Comm10: "" +*it.PageRegion Env10/Busta Comm10: "" +*ja.PageRegion Env10/封筒 Comm10: "" +*ko.PageRegion Env10/Comm10 봉투: "" +*nl.PageRegion Env10/Comm10-envelop: "" +*nb.PageRegion Env10/Comm10-konvolutt: "" +*pt.PageRegion Env10/Envelope Comm10: "" +*sv.PageRegion Env10/Comm10-kuvert: "" +*zh_CN.PageRegion Env10/信封 Comm10: "" +*zh_TW.PageRegion Env10/Comm10 信封: "" + +*PageRegion EnvMonarch/Env Monarch: " + <> setpagedevice" +*End +*da.PageRegion EnvMonarch/Konv Monarch: "" +*de.PageRegion EnvMonarch/Umschlag Monarch: "" +*es.PageRegion EnvMonarch/Sobre Monarch: "" +*fi.PageRegion EnvMonarch/Kirjekuori Monarch: "" +*fr.PageRegion EnvMonarch/Enveloppe Monarch: "" +*it.PageRegion EnvMonarch/Busta Monarch: "" +*ja.PageRegion EnvMonarch/封筒 Monarch: "" +*ko.PageRegion EnvMonarch/Monarch 봉투: "" +*nl.PageRegion EnvMonarch/Monarch-envelop: "" +*nb.PageRegion EnvMonarch/Monarch-konvolutt: "" +*pt.PageRegion EnvMonarch/Envelope Monarch: "" +*sv.PageRegion EnvMonarch/Monarch-kuvert: "" +*zh_CN.PageRegion EnvMonarch/信封 Monarch: "" +*zh_TW.PageRegion EnvMonarch/Monarch 信封: "" + +*PageRegion EnvDL/Env DL: " + <> setpagedevice" +*End +*da.PageRegion EnvDL/Konv DL: "" +*de.PageRegion EnvDL/Umschlag DL: "" +*es.PageRegion EnvDL/Sobre DL: "" +*fi.PageRegion EnvDL/Kirjekuori DL: "" +*fr.PageRegion EnvDL/Enveloppe DL: "" +*it.PageRegion EnvDL/Busta DL: "" +*ja.PageRegion EnvDL/封筒 DL: "" +*ko.PageRegion EnvDL/DL 봉투: "" +*nl.PageRegion EnvDL/DL-envelop: "" +*nb.PageRegion EnvDL/DL-konvolutt: "" +*pt.PageRegion EnvDL/Envelope DL: "" +*sv.PageRegion EnvDL/DL-kuvert: "" +*zh_CN.PageRegion EnvDL/信封 DL: "" +*zh_TW.PageRegion EnvDL/DL 信封: "" + +*PageRegion EnvC5/Env C5: " + <> setpagedevice" +*End +*da.PageRegion EnvC5/Konv C5: "" +*de.PageRegion EnvC5/Umschlag C5: "" +*es.PageRegion EnvC5/Sobre C5: "" +*fi.PageRegion EnvC5/Kirjekuori C5: "" +*fr.PageRegion EnvC5/Enveloppe C5: "" +*it.PageRegion EnvC5/Busta C5: "" +*ja.PageRegion EnvC5/封筒 C5: "" +*ko.PageRegion EnvC5/C5 봉투: "" +*nl.PageRegion EnvC5/C5-envelop: "" +*nb.PageRegion EnvC5/C5-konvolutt: "" +*pt.PageRegion EnvC5/Envelope C5: "" +*sv.PageRegion EnvC5/C5-kuvert: "" +*zh_CN.PageRegion EnvC5/信封 C5: "" +*zh_TW.PageRegion EnvC5/C5 信封: "" + +*PageRegion EnvISOB5/Env ISO B5: " + <> setpagedevice" +*End +*da.PageRegion EnvISOB5/Konv ISO B5: "" +*de.PageRegion EnvISOB5/Umschlag ISO B5: "" +*es.PageRegion EnvISOB5/Sobre ISO B5: "" +*fi.PageRegion EnvISOB5/Kirjekuori ISO B5: "" +*fr.PageRegion EnvISOB5/Enveloppe ISO B5: "" +*it.PageRegion EnvISOB5/Busta ISO B5: "" +*ja.PageRegion EnvISOB5/封筒 B5 (ISO): "" +*ko.PageRegion EnvISOB5/ISO B5 봉투: "" +*nl.PageRegion EnvISOB5/ISO B5-envelop: "" +*nb.PageRegion EnvISOB5/B5-konvolutt: "" +*pt.PageRegion EnvISOB5/Envelope B5: "" +*sv.PageRegion EnvISOB5/ISO B5-kuvert: "" +*zh_CN.PageRegion EnvISOB5/信封 ISO B5: "" +*zh_TW.PageRegion EnvISOB5/ISO B5 信封: "" + +*CloseUI: *PageRegion + +*DefaultImageableArea: A4 +*ImageableArea Letter/Letter: "12.00 12.00 599.76 779.76" +*da.ImageableArea Letter/Letter: "" +*de.ImageableArea Letter/Letter: "" +*es.ImageableArea Letter/Letter: "" +*fi.ImageableArea Letter/Letter: "" +*fr.ImageableArea Letter/Lettre: "" +*it.ImageableArea Letter/Letter: "" +*ja.ImageableArea Letter/レター: "" +*ko.ImageableArea Letter/레터: "" +*nl.ImageableArea Letter/Letter: "" +*nb.ImageableArea Letter/Letter: "" +*pt.ImageableArea Letter/Carta: "" +*sv.ImageableArea Letter/Letter: "" +*zh_CN.ImageableArea Letter/信纸: "" +*zh_TW.ImageableArea Letter/Letter: "" + +*ImageableArea LetterSmall/Letter (Small): "30.00 31.00 582.00 761.00" +*da.ImageableArea LetterSmall/Letter (lille): "" +*de.ImageableArea LetterSmall/Letter (Klein): "" +*es.ImageableArea LetterSmall/Letter (pequeño): "" +*fi.ImageableArea LetterSmall/Letter (pieni): "" +*fr.ImageableArea LetterSmall/Lettre (petit): "" +*it.ImageableArea LetterSmall/Letter (ridotta): "" +*ja.ImageableArea LetterSmall/レター (小): "" +*ko.ImageableArea LetterSmall/레터 (소): "" +*nl.ImageableArea LetterSmall/Letter (klein): "" +*nb.ImageableArea LetterSmall/Letter (lite): "" +*pt.ImageableArea LetterSmall/Carta (pequeno): "" +*sv.ImageableArea LetterSmall/Letter (litet): "" +*zh_CN.ImageableArea LetterSmall/信纸 (小): "" +*zh_TW.ImageableArea LetterSmall/Letter (小): "" + +*ImageableArea Executive/Executive: "12.00 12.00 509.76 743.76" +*da.ImageableArea Executive/Executive: "" +*de.ImageableArea Executive/Executive: "" +*es.ImageableArea Executive/Ejecutivo: "" +*fi.ImageableArea Executive/Executive: "" +*fr.ImageableArea Executive/Exécutif: "" +*it.ImageableArea Executive/Executive: "" +*ja.ImageableArea Executive/エグゼクティブ: "" +*ko.ImageableArea Executive/Executive: "" +*nl.ImageableArea Executive/Executive: "" +*nb.ImageableArea Executive/Executive: "" +*pt.ImageableArea Executive/Executivo: "" +*sv.ImageableArea Executive/Executive: "" +*zh_CN.ImageableArea Executive/Executive: "" +*zh_TW.ImageableArea Executive/Executive: "" + +*ImageableArea Legal/Legal: "12.00 12.00 599.76 995.76" +*da.ImageableArea Legal/Legal: "" +*de.ImageableArea Legal/Legal: "" +*es.ImageableArea Legal/Legal: "" +*fi.ImageableArea Legal/Legal: "" +*fr.ImageableArea Legal/Légal: "" +*it.ImageableArea Legal/Legal: "" +*ja.ImageableArea Legal/リーガル: "" +*ko.ImageableArea Legal/리갈: "" +*nl.ImageableArea Legal/Legal: "" +*nb.ImageableArea Legal/Legal: "" +*pt.ImageableArea Legal/Legal: "" +*sv.ImageableArea Legal/Legal: "" +*zh_CN.ImageableArea Legal/Legal: "" +*zh_TW.ImageableArea Legal/Legal: "" + +*ImageableArea LegalSmall/Legal (Small): "64.00 54.00 548.00 954.00" +*da.ImageableArea LegalSmall/Legal (lille): "" +*de.ImageableArea LegalSmall/Legal (Klein): "" +*es.ImageableArea LegalSmall/Legal (pequeño): "" +*fi.ImageableArea LegalSmall/Legal (pieni): "" +*fr.ImageableArea LegalSmall/Légal (petit): "" +*it.ImageableArea LegalSmall/Legal (ridotto): "" +*ja.ImageableArea LegalSmall/リーガル (小): "" +*ko.ImageableArea LegalSmall/리갈 (소): "" +*nl.ImageableArea LegalSmall/Legal (klein): "" +*nb.ImageableArea LegalSmall/Legal (lite): "" +*pt.ImageableArea LegalSmall/Legal (pequeno): "" +*sv.ImageableArea LegalSmall/Legal (litet): "" +*zh_CN.ImageableArea LegalSmall/Legal (小): "" +*zh_TW.ImageableArea LegalSmall/Legal (小): "" + +*ImageableArea A4/A4: "12.00 12.00 582.96 829.44" +*da.ImageableArea A4/A4: "" +*de.ImageableArea A4/A4: "" +*es.ImageableArea A4/A4: "" +*fi.ImageableArea A4/A4: "" +*fr.ImageableArea A4/A4: "" +*it.ImageableArea A4/A4: "" +*ja.ImageableArea A4/A4: "" +*ko.ImageableArea A4/A4: "" +*nl.ImageableArea A4/A4: "" +*nb.ImageableArea A4/A4: "" +*pt.ImageableArea A4/A4: "" +*sv.ImageableArea A4/A4: "" +*zh_CN.ImageableArea A4/A4: "" +*zh_TW.ImageableArea A4/A4: "" + +*ImageableArea A4Small/A4 (Small): "28.00 30.00 566.00 811.00" +*da.ImageableArea A4Small/A4 (lille): "" +*de.ImageableArea A4Small/A4 (Klein): "" +*es.ImageableArea A4Small/A4 (pequeño): "" +*fi.ImageableArea A4Small/A4 (pieni): "" +*fr.ImageableArea A4Small/A4 (petit): "" +*it.ImageableArea A4Small/A4 (ridotta): "" +*ja.ImageableArea A4Small/A4 (小): "" +*ko.ImageableArea A4Small/A4 (소): "" +*nl.ImageableArea A4Small/A4 (klein): "" +*nb.ImageableArea A4Small/A4 (lite): "" +*pt.ImageableArea A4Small/A4 (pequeno): "" +*sv.ImageableArea A4Small/A4 (litet): "" +*zh_CN.ImageableArea A4Small/A4 (小): "" +*zh_TW.ImageableArea A4Small/A4 (小): "" + +*ImageableArea A5/A5: "12.00 12.00 407.28 582.96" +*da.ImageableArea A5/A5: "" +*de.ImageableArea A5/A5: "" +*es.ImageableArea A5/A5: "" +*fi.ImageableArea A5/A5: "" +*fr.ImageableArea A5/A5: "" +*it.ImageableArea A5/A5: "" +*ja.ImageableArea A5/A5: "" +*ko.ImageableArea A5/A5: "" +*nl.ImageableArea A5/A5: "" +*nb.ImageableArea A5/A5: "" +*pt.ImageableArea A5/A5: "" +*sv.ImageableArea A5/A5: "" +*zh_CN.ImageableArea A5/A5: "" +*zh_TW.ImageableArea A5/A5: "" + +*ImageableArea A6/A6: "12.00 12.00 284.76 407.76" +*da.ImageableArea A6/A6: "" +*de.ImageableArea A6/A6 Card: "" +*es.ImageableArea A6/A6: "" +*fi.ImageableArea A6/A6: "" +*fr.ImageableArea A6/A6 Card: "" +*it.ImageableArea A6/A6 Card: "" +*ja.ImageableArea A6/A6: "" +*ko.ImageableArea A6/A6: "" +*nl.ImageableArea A6/A6: "" +*nb.ImageableArea A6/A6: "" +*pt.ImageableArea A6/A6: "" +*sv.ImageableArea A6/A6: "" +*zh_CN.ImageableArea A6/A6: "" +*zh_TW.ImageableArea A6/A6: "" + +*ImageableArea B6/JIS B6: "12.00 12.00 350.50 503.50" +*da.ImageableArea B6/JIS B6: "" +*de.ImageableArea B6/B6 (JIS): "" +*es.ImageableArea B6/JIS B6: "" +*fi.ImageableArea B6/JIS B6: "" +*fr.ImageableArea B6/JIS B6: "" +*it.ImageableArea B6/JIS B6: "" +*ja.ImageableArea B6/B6 (JIS): "" +*ko.ImageableArea B6/JIS B6: "" +*nl.ImageableArea B6/JIS B6: "" +*nb.ImageableArea B6/JIS B6: "" +*pt.ImageableArea B6/B6 JIS: "" +*sv.ImageableArea B6/JIS B6: "" +*zh_CN.ImageableArea B6/JIS B6: "" +*zh_TW.ImageableArea B6/JIS B6: "" + +*ImageableArea ISOB5/B5 (ISO): "12.00 12.00 488.00 698.00" +*da.ImageableArea ISOB5/B5 (ISO): "" +*de.ImageableArea ISOB5/B5 (ISO): "" +*es.ImageableArea ISOB5/B5 (ISO): "" +*fi.ImageableArea ISOB5/B5 (ISO): "" +*fr.ImageableArea ISOB5/B5 (ISO): "" +*it.ImageableArea ISOB5/B5 (ISO): "" +*ja.ImageableArea ISOB5/B5 (ISO): "" +*ko.ImageableArea ISOB5/B5 (ISO): "" +*nl.ImageableArea ISOB5/B5 (ISO): "" +*nb.ImageableArea ISOB5/B5 (ISO): "" +*pt.ImageableArea ISOB5/B5 (ISO): "" +*sv.ImageableArea ISOB5/B5 (ISO): "" +*zh_CN.ImageableArea ISOB5/B5 (ISO): "" +*zh_TW.ImageableArea ISOB5/B5 (ISO): "" + +*ImageableArea B5/JIS B5: "12.00 12.00 503.52 716.16" +*da.ImageableArea B5/JIS B5: "" +*de.ImageableArea B5/B5 (JIS): "" +*es.ImageableArea B5/JIS B5: "" +*fi.ImageableArea B5/JIS B5: "" +*fr.ImageableArea B5/JIS B5: "" +*it.ImageableArea B5/JIS B5: "" +*ja.ImageableArea B5/B5 (JIS): "" +*ko.ImageableArea B5/JIS B5: "" +*nl.ImageableArea B5/JIS B5: "" +*nb.ImageableArea B5/JIS B5: "" +*pt.ImageableArea B5/B5 JIS: "" +*sv.ImageableArea B5/JIS B5: "" +*zh_CN.ImageableArea B5/JIS B5: "" +*zh_TW.ImageableArea B5/JIS B5: "" + +*ImageableArea Postcard/Postcard (JIS): "12.00 12.00 271.20 407.28" +*da.ImageableArea Postcard/Postkort (JIS): "" +*de.ImageableArea Postcard/Postkarte (JIS): "" +*es.ImageableArea Postcard/Tarjeta postal (JIS): "" +*fi.ImageableArea Postcard/Postikortti (JIS): "" +*fr.ImageableArea Postcard/Carte postale (JIS): "" +*it.ImageableArea Postcard/Cartolina (JIS): "" +*ja.ImageableArea Postcard/はがき (JIS): "" +*ko.ImageableArea Postcard/우편엽서 (JIS): "" +*nl.ImageableArea Postcard/Briefkaart (JIS): "" +*nb.ImageableArea Postcard/Postkort (JIS): "" +*pt.ImageableArea Postcard/Postal (JIS): "" +*sv.ImageableArea Postcard/Brevkort (JIS): "" +*zh_CN.ImageableArea Postcard/明信片 (JIS): "" +*zh_TW.ImageableArea Postcard/明信片(JIS): "" + +*ImageableArea DoublePostcard/Double Postcard (JIS): "12.00 12.00 407.28 554.64" +*da.ImageableArea DoublePostcard/Dobbelt postkort (JIS): "" +*de.ImageableArea DoublePostcard/Doppelte Postkarte (JIS): "" +*es.ImageableArea DoublePostcard/Tarjeta postal doble (JIS): "" +*fi.ImageableArea DoublePostcard/Kaksinkert. postikortti (JIS): "" +*fr.ImageableArea DoublePostcard/Carte postale double (JIS): "" +*it.ImageableArea DoublePostcard/Cartolina doppia (JIS): "" +*ja.ImageableArea DoublePostcard/往復はがき (JIS): "" +*ko.ImageableArea DoublePostcard/양면 엽서 (JIS): "" +*nl.ImageableArea DoublePostcard/Dubbele briefkaart (JIS): "" +*nb.ImageableArea DoublePostcard/Dobbelt postkort (JIS): "" +*pt.ImageableArea DoublePostcard/Postal duplo (JIS): "" +*sv.ImageableArea DoublePostcard/Dubbelt brevkort (JIS): "" +*zh_CN.ImageableArea DoublePostcard/大号明信片 (JIS): "" +*zh_TW.ImageableArea DoublePostcard/雙面明信片 (JIS): "" + +*ImageableArea w558h774/16K: "12.00 12.00 545.76 761.76" +*da.ImageableArea w558h774/16K: "" +*de.ImageableArea w558h774/16K: "" +*es.ImageableArea w558h774/16K: "" +*fi.ImageableArea w558h774/16K: "" +*fr.ImageableArea w558h774/16K: "" +*it.ImageableArea w558h774/16K: "" +*ja.ImageableArea w558h774/16K: "" +*ko.ImageableArea w558h774/16K: "" +*nl.ImageableArea w558h774/16K: "" +*nb.ImageableArea w558h774/16K: "" +*pt.ImageableArea w558h774/16K: "" +*sv.ImageableArea w558h774/16K: "" +*zh_CN.ImageableArea w558h774/16K: "" +*zh_TW.ImageableArea w558h774/16K: "" + +*ImageableArea Env10/Env Comm10: "12.00 12.00 284.64 671.76" +*da.ImageableArea Env10/Konv Comm10: "" +*de.ImageableArea Env10/Umschlag Comm10: "" +*es.ImageableArea Env10/Sobre Comm10: "" +*fi.ImageableArea Env10/Kirjekuori Comm10: "" +*fr.ImageableArea Env10/Enveloppe Comm10: "" +*it.ImageableArea Env10/Busta Comm10: "" +*ja.ImageableArea Env10/封筒 Comm10: "" +*ko.ImageableArea Env10/Comm10 봉투: "" +*nl.ImageableArea Env10/Comm10-envelop: "" +*nb.ImageableArea Env10/Comm10-konvolutt: "" +*pt.ImageableArea Env10/Envelope Comm10: "" +*sv.ImageableArea Env10/Comm10-kuvert: "" +*zh_CN.ImageableArea Env10/信封 Comm10: "" +*zh_TW.ImageableArea Env10/Comm10 信封: "" + +*ImageableArea EnvMonarch/Env Monarch: "12.00 12.00 266.64 527.76" +*da.ImageableArea EnvMonarch/Konv Monarch: "" +*de.ImageableArea EnvMonarch/Umschlag Monarch: "" +*es.ImageableArea EnvMonarch/Sobre Monarch: "" +*fi.ImageableArea EnvMonarch/Kirjekuori Monarch: "" +*fr.ImageableArea EnvMonarch/Enveloppe Monarch: "" +*it.ImageableArea EnvMonarch/Busta Monarch: "" +*ja.ImageableArea EnvMonarch/封筒 Monarch: "" +*ko.ImageableArea EnvMonarch/Monarch 봉투: "" +*nl.ImageableArea EnvMonarch/Monarch-envelop: "" +*nb.ImageableArea EnvMonarch/Monarch-konvolutt: "" +*pt.ImageableArea EnvMonarch/Envelope Monarch: "" +*sv.ImageableArea EnvMonarch/Monarch-kuvert: "" +*zh_CN.ImageableArea EnvMonarch/信封 Monarch: "" +*zh_TW.ImageableArea EnvMonarch/Monarch 信封: "" + +*ImageableArea EnvDL/Env DL: "12.00 12.00 299.52 611.28" +*da.ImageableArea EnvDL/Konv DL: "" +*de.ImageableArea EnvDL/Umschlag DL: "" +*es.ImageableArea EnvDL/Sobre DL: "" +*fi.ImageableArea EnvDL/Kirjekuori DL: "" +*fr.ImageableArea EnvDL/Enveloppe DL: "" +*it.ImageableArea EnvDL/Busta DL: "" +*ja.ImageableArea EnvDL/封筒 DL: "" +*ko.ImageableArea EnvDL/DL 봉투: "" +*nl.ImageableArea EnvDL/DL-envelop: "" +*nb.ImageableArea EnvDL/DL-konvolutt: "" +*pt.ImageableArea EnvDL/Envelope DL: "" +*sv.ImageableArea EnvDL/DL-kuvert: "" +*zh_CN.ImageableArea EnvDL/信封 DL: "" +*zh_TW.ImageableArea EnvDL/DL 信封: "" + +*ImageableArea EnvC5/Env C5: "12.00 12.00 446.88 636.72" +*da.ImageableArea EnvC5/Konv C5: "" +*de.ImageableArea EnvC5/Umschlag C5: "" +*es.ImageableArea EnvC5/Sobre C5: "" +*fi.ImageableArea EnvC5/Kirjekuori C5: "" +*fr.ImageableArea EnvC5/Enveloppe C5: "" +*it.ImageableArea EnvC5/Busta C5: "" +*ja.ImageableArea EnvC5/封筒 C5: "" +*ko.ImageableArea EnvC5/C5 봉투: "" +*nl.ImageableArea EnvC5/C5-envelop: "" +*nb.ImageableArea EnvC5/C5-konvolutt: "" +*pt.ImageableArea EnvC5/Envelope C5: "" +*sv.ImageableArea EnvC5/C5-kuvert: "" +*zh_CN.ImageableArea EnvC5/信封 C5: "" +*zh_TW.ImageableArea EnvC5/C5 信封: "" + +*ImageableArea EnvISOB5/Env ISO B5: "12.00 12.00 486.48 696.24" +*da.ImageableArea EnvISOB5/Konv ISO B5: "" +*de.ImageableArea EnvISOB5/Umschlag ISO B5: "" +*es.ImageableArea EnvISOB5/Sobre ISO B5: "" +*fi.ImageableArea EnvISOB5/Kirjekuori ISO B5: "" +*fr.ImageableArea EnvISOB5/Enveloppe ISO B5: "" +*it.ImageableArea EnvISOB5/Busta ISO B5: "" +*ja.ImageableArea EnvISOB5/封筒 ISO B5: "" +*ko.ImageableArea EnvISOB5/ISO B5 봉투: "" +*nl.ImageableArea EnvISOB5/ISO B5-envelop: "" +*nb.ImageableArea EnvISOB5/B5-konvolutt: "" +*pt.ImageableArea EnvISOB5/Envelope B5: "" +*sv.ImageableArea EnvISOB5/ISO B5-kuvert: "" +*zh_CN.ImageableArea EnvISOB5/信封 ISO B5: "" +*zh_TW.ImageableArea EnvISOB5/ISO B5 信封: "" + +*?ImageableArea: " + save + /cvp { ( ) cvs print ( ) print } bind def + /upperright {10000 mul floor 10000 div} bind def + /lowerleft {10000 mul ceiling 10000 div} bind def + newpath clippath pathbbox + 4 -2 roll exch 2 {lowerleft cvp} repeat + exch 2 {upperright cvp} repeat flush + restore +" +*End + +*DefaultPaperDimension: A4 +*PaperDimension Letter/Letter: "612 792" +*da.PaperDimension Letter/Letter: "" +*de.PaperDimension Letter/Letter: "" +*es.PaperDimension Letter/Letter: "" +*fi.PaperDimension Letter/Letter: "" +*fr.PaperDimension Letter/Lettre: "" +*it.PaperDimension Letter/Letter: "" +*ja.PaperDimension Letter/レター: "" +*ko.PaperDimension Letter/레터: "" +*nl.PaperDimension Letter/Letter: "" +*nb.PaperDimension Letter/Letter: "" +*pt.PaperDimension Letter/Carta: "" +*sv.PaperDimension Letter/Letter: "" +*zh_CN.PaperDimension Letter/信纸: "" +*zh_TW.PaperDimension Letter/Letter: "" + +*PaperDimension LetterSmall/Letter (Small): "612 792" +*da.PaperDimension LetterSmall/Letter (lille): "" +*de.PaperDimension LetterSmall/Letter (Klein): "" +*es.PaperDimension LetterSmall/Letter (pequeño): "" +*fi.PaperDimension LetterSmall/Letter (pieni): "" +*fr.PaperDimension LetterSmall/Lettre (petit): "" +*it.PaperDimension LetterSmall/Letter (ridotto): "" +*ja.PaperDimension LetterSmall/レター (小): "" +*ko.PaperDimension LetterSmall/레터 (소): "" +*nl.PaperDimension LetterSmall/Letter (klein): "" +*nb.PaperDimension LetterSmall/Letter (lite): "" +*pt.PaperDimension LetterSmall/Carta (pequeno): "" +*sv.PaperDimension LetterSmall/Letter (litet): "" +*zh_CN.PaperDimension LetterSmall/信纸 (小): "" +*zh_TW.PaperDimension LetterSmall/Letter (小): "" + +*PaperDimension Executive/Executive: "522 756" +*da.PaperDimension Executive/Executive: "" +*de.PaperDimension Executive/Executive: "" +*es.PaperDimension Executive/Ejecutivo: "" +*fi.PaperDimension Executive/Executive: "" +*fr.PaperDimension Executive/Exécutif: "" +*it.PaperDimension Executive/Executive: "" +*ja.PaperDimension Executive/エグゼクティブ: "" +*ko.PaperDimension Executive/Executive: "" +*nl.PaperDimension Executive/Executive: "" +*nb.PaperDimension Executive/Executive: "" +*pt.PaperDimension Executive/Executivo: "" +*sv.PaperDimension Executive/Executive: "" +*zh_CN.PaperDimension Executive/Executive: "" +*zh_TW.PaperDimension Executive/Executive: "" + +*PaperDimension Legal/Legal: "612 1008" +*da.PaperDimension Legal/Legal: "" +*de.PaperDimension Legal/Legal: "" +*es.PaperDimension Legal/Legal: "" +*fi.PaperDimension Legal/Legal: "" +*fr.PaperDimension Legal/Légal: "" +*it.PaperDimension Legal/Legal: "" +*ja.PaperDimension Legal/リーガル: "" +*ko.PaperDimension Legal/리갈: "" +*nl.PaperDimension Legal/Legal: "" +*nb.PaperDimension Legal/Legal: "" +*pt.PaperDimension Legal/Legal: "" +*sv.PaperDimension Legal/Legal: "" +*zh_CN.PaperDimension Legal/Legal: "" +*zh_TW.PaperDimension Legal/Legal: "" + +*PaperDimension LegalSmall/Legal (Small): "612 1008" +*da.PaperDimension LegalSmall/Legal (lille): "" +*de.PaperDimension LegalSmall/Legal (Klein): "" +*es.PaperDimension LegalSmall/Legal (pequeño): "" +*fi.PaperDimension LegalSmall/Legal (pieni): "" +*fr.PaperDimension LegalSmall/Légal (petit): "" +*it.PaperDimension LegalSmall/Legal (ridotto): "" +*ja.PaperDimension LegalSmall/リーガル (小): "" +*ko.PaperDimension LegalSmall/리갈 (소): "" +*nl.PaperDimension LegalSmall/Legal (klein): "" +*nb.PaperDimension LegalSmall/Legal (lite): "" +*pt.PaperDimension LegalSmall/Legal (pequeno): "" +*sv.PaperDimension LegalSmall/Legal (litet): "" +*zh_CN.PaperDimension LegalSmall/Legal (小): "" +*zh_TW.PaperDimension LegalSmall/Legal (小): "" + +*PaperDimension A4/A4: "595 842" +*da.PaperDimension A4/A4: "" +*de.PaperDimension A4/A4: "" +*es.PaperDimension A4/A4: "" +*fi.PaperDimension A4/A4: "" +*fr.PaperDimension A4/A4: "" +*it.PaperDimension A4/A4: "" +*ja.PaperDimension A4/A4: "" +*ko.PaperDimension A4/A4: "" +*nl.PaperDimension A4/A4: "" +*nb.PaperDimension A4/A4: "" +*pt.PaperDimension A4/A4: "" +*sv.PaperDimension A4/A4: "" +*zh_CN.PaperDimension A4/A4: "" +*zh_TW.PaperDimension A4/A4: "" + +*PaperDimension A4Small/A4 (Small): "595 842" +*da.PaperDimension A4Small/A4 (lille): "" +*de.PaperDimension A4Small/A4 (Klein): "" +*es.PaperDimension A4Small/A4 (pequeño): "" +*fi.PaperDimension A4Small/A4 (pieni): "" +*fr.PaperDimension A4Small/A4 (petit): "" +*it.PaperDimension A4Small/A4 (ridotta): "" +*ja.PaperDimension A4Small/A4 (小): "" +*ko.PaperDimension A4Small/A4 (소): "" +*nl.PaperDimension A4Small/A4 (klein): "" +*nb.PaperDimension A4Small/A4 (lite): "" +*pt.PaperDimension A4Small/A4 (pequeno): "" +*sv.PaperDimension A4Small/A4 (litet): "" +*zh_CN.PaperDimension A4Small/A4 (小): "" +*zh_TW.PaperDimension A4Small/A4 (小): "" + +*PaperDimension A5/A5: "420 595" +*da.PaperDimension A5/A5: "" +*de.PaperDimension A5/A5: "" +*es.PaperDimension A5/A5: "" +*fi.PaperDimension A5/A5: "" +*fr.PaperDimension A5/A5: "" +*it.PaperDimension A5/A5: "" +*ja.PaperDimension A5/A5: "" +*ko.PaperDimension A5/A5: "" +*nl.PaperDimension A5/A5: "" +*nb.PaperDimension A5/A5: "" +*pt.PaperDimension A5/A5: "" +*sv.PaperDimension A5/A5: "" +*zh_CN.PaperDimension A5/A5: "" +*zh_TW.PaperDimension A5/A5: "" + +*PaperDimension ISOB5/B5 (ISO): "499 709" +*da.PaperDimension ISOB5/B5 (ISO): "" +*de.PaperDimension ISOB5/B5 (ISO): "" +*es.PaperDimension ISOB5/B5 (ISO): "" +*fi.PaperDimension ISOB5/B5 (ISO): "" +*fr.PaperDimension ISOB5/B5 (ISO): "" +*it.PaperDimension ISOB5/B5 (ISO): "" +*ja.PaperDimension ISOB5/B5 (ISO): "" +*ko.PaperDimension ISOB5/B5 (ISO): "" +*nl.PaperDimension ISOB5/B5 (ISO): "" +*nb.PaperDimension ISOB5/B5 (ISO): "" +*pt.PaperDimension ISOB5/B5 (ISO): "" +*sv.PaperDimension ISOB5/B5 (ISO): "" +*zh_CN.PaperDimension ISOB5/B5 (ISO): "" +*zh_TW.PaperDimension ISOB5/B5 (ISO): "" + +*PaperDimension A6/A6: "297 420" +*da.PaperDimension A6/A6: "" +*de.PaperDimension A6/A6 Card: "" +*es.PaperDimension A6/A6: "" +*fi.PaperDimension A6/A6: "" +*fr.PaperDimension A6/A6 Card: "" +*it.PaperDimension A6/A6 Card: "" +*ja.PaperDimension A6/A6: "" +*ko.PaperDimension A6/A6: "" +*nl.PaperDimension A6/A6: "" +*nb.PaperDimension A6/A6: "" +*pt.PaperDimension A6/A6: "" +*sv.PaperDimension A6/A6: "" +*zh_CN.PaperDimension A6/A6: "" +*zh_TW.PaperDimension A6/A6: "" + +*PaperDimension B6/JIS B6: "363 516" +*da.PaperDimension B6/JIS B6: "" +*de.PaperDimension B6/B6 (JIS): "" +*es.PaperDimension B6/JIS B6: "" +*fi.PaperDimension B6/JIS B6: "" +*fr.PaperDimension B6/JIS B6: "" +*it.PaperDimension B6/B6 JIS: "" +*ja.PaperDimension B6/B6 (JIS): "" +*ko.PaperDimension B6/JIS B6: "" +*nl.PaperDimension B6/JIS B6: "" +*nb.PaperDimension B6/JIS B6: "" +*pt.PaperDimension B6/B6 JIS: "" +*sv.PaperDimension B6/JIS B6: "" +*zh_CN.PaperDimension B6/JIS B6: "" +*zh_TW.PaperDimension B6/JIS B6: "" + +*PaperDimension B5/JIS B5: "516 729" +*da.PaperDimension B5/JIS B5: "" +*de.PaperDimension B5/B5 (JIS): "" +*es.PaperDimension B5/JIS B5: "" +*fi.PaperDimension B5/JIS B5: "" +*fr.PaperDimension B5/JIS B5: "" +*it.PaperDimension B5/B5 JIS: "" +*ja.PaperDimension B5/B5 (JIS): "" +*ko.PaperDimension B5/JIS B5: "" +*nl.PaperDimension B5/JIS B5: "" +*nb.PaperDimension B5/JIS B5: "" +*pt.PaperDimension B5/B5 JIS: "" +*sv.PaperDimension B5/JIS B5: "" +*zh_CN.PaperDimension B5/JIS B5: "" +*zh_TW.PaperDimension B5/JIS B5: "" + +*PaperDimension Postcard/Postcard (JIS): "284 419" +*da.PaperDimension Postcard/Postkort (JIS): "" +*de.PaperDimension Postcard/Postkarte (JIS): "" +*es.PaperDimension Postcard/Tarjeta postal (JIS): "" +*fi.PaperDimension Postcard/Postikortti (JIS): "" +*fr.PaperDimension Postcard/Carte postale (JIS): "" +*it.PaperDimension Postcard/Cartolina (JIS): "" +*ja.PaperDimension Postcard/はがき (JIS): "" +*ko.PaperDimension Postcard/우편엽서 (JIS): "" +*nl.PaperDimension Postcard/Briefkaart (JIS): "" +*nb.PaperDimension Postcard/Postkort (JIS): "" +*pt.PaperDimension Postcard/Postal (JIS): "" +*sv.PaperDimension Postcard/Brevkort (JIS): "" +*zh_CN.PaperDimension Postcard/明信片 (JIS): "" +*zh_TW.PaperDimension Postcard/明信片(JIS): "" + +*PaperDimension DoublePostcard/Double Postcard (JIS): "419.5 567" +*da.PaperDimension DoublePostcard/Dobbelt postkort (JIS): "" +*de.PaperDimension DoublePostcard/Doppelte Postkarte (JIS): "" +*es.PaperDimension DoublePostcard/Tarjeta postal doble (JIS): "" +*fi.PaperDimension DoublePostcard/Kaksinkert. postikortti (JIS): "" +*fr.PaperDimension DoublePostcard/Carte postale double (JIS): "" +*it.PaperDimension DoublePostcard/Cartolina doppia (JIS): "" +*ja.PaperDimension DoublePostcard/往復はがき (JIS): "" +*ko.PaperDimension DoublePostcard/양면 엽서 (JIS): "" +*nl.PaperDimension DoublePostcard/Dubbele briefkaart (JIS): "" +*nb.PaperDimension DoublePostcard/Dobbelt postkort (JIS): "" +*pt.PaperDimension DoublePostcard/Postal duplo (JIS): "" +*sv.PaperDimension DoublePostcard/Dubbelt brevkort (JIS): "" +*zh_CN.PaperDimension DoublePostcard/大号明信片 (JIS): "" +*zh_TW.PaperDimension DoublePostcard/雙面明信片 (JIS): "" + +*PaperDimension w558h774/16K: "558 774" +*da.PaperDimension w558h774/16K: "" +*de.PaperDimension w558h774/16K: "" +*es.PaperDimension w558h774/16K: "" +*fi.PaperDimension w558h774/16 K: "" +*fr.PaperDimension w558h774/16K: "" +*it.PaperDimension w558h774/16K: "" +*ja.PaperDimension w558h774/16K: "" +*ko.PaperDimension w558h774/16K: "" +*nl.PaperDimension w558h774/16K: "" +*nb.PaperDimension w558h774/16K: "" +*pt.PaperDimension w558h774/16K: "" +*sv.PaperDimension w558h774/16K: "" +*zh_CN.PaperDimension w558h774/16K: "" +*zh_TW.PaperDimension w558h774/16K: "" + +*PaperDimension Env10/Env Comm10: "297 684" +*da.PaperDimension Env10/Konv Comm10: "" +*de.PaperDimension Env10/Umschlag Comm10: "" +*es.PaperDimension Env10/Sobre Comm10: "" +*fi.PaperDimension Env10/Kirjekuori Comm10: "" +*fr.PaperDimension Env10/Enveloppe Comm10: "" +*it.PaperDimension Env10/Busta Comm10: "" +*ja.PaperDimension Env10/封筒 Comm10: "" +*ko.PaperDimension Env10/Comm10 봉투: "" +*nl.PaperDimension Env10/Comm10-envelop: "" +*nb.PaperDimension Env10/Comm10-konvolutt: "" +*pt.PaperDimension Env10/Envelope Comm10: "" +*sv.PaperDimension Env10/Comm10-kuvert: "" +*zh_CN.PaperDimension Env10/信封 Comm10: "" +*zh_TW.PaperDimension Env10/Comm10 信封: "" + +*PaperDimension EnvMonarch/Env Monarch: "279 540" +*da.PaperDimension EnvMonarch/Konv Monarch: "" +*de.PaperDimension EnvMonarch/Umschlag Monarch: "" +*es.PaperDimension EnvMonarch/Sobre Monarch: "" +*fi.PaperDimension EnvMonarch/Kirjekuori Monarch: "" +*fr.PaperDimension EnvMonarch/Enveloppe Monarch: "" +*it.PaperDimension EnvMonarch/Busta Monarch: "" +*ja.PaperDimension EnvMonarch/封筒 Monarch: "" +*ko.PaperDimension EnvMonarch/Monarch 봉투: "" +*nl.PaperDimension EnvMonarch/Monarch-envelop: "" +*nb.PaperDimension EnvMonarch/Monarch-konvolutt: "" +*pt.PaperDimension EnvMonarch/Envelope Monarch: "" +*sv.PaperDimension EnvMonarch/Monarch-kuvert: "" +*zh_CN.PaperDimension EnvMonarch/信封 Monarch: "" +*zh_TW.PaperDimension EnvMonarch/Monarch 信封: "" + +*PaperDimension EnvDL/Env DL: "312 624" +*da.PaperDimension EnvDL/Konv DL: "" +*de.PaperDimension EnvDL/Umschlag DL: "" +*es.PaperDimension EnvDL/Sobre DL: "" +*fi.PaperDimension EnvDL/Kirjekuori DL: "" +*fr.PaperDimension EnvDL/Enveloppe DL: "" +*it.PaperDimension EnvDL/Busta DL: "" +*ja.PaperDimension EnvDL/封筒 DL: "" +*ko.PaperDimension EnvDL/DL 봉투: "" +*nl.PaperDimension EnvDL/DL-envelop: "" +*nb.PaperDimension EnvDL/DL-konvolutt: "" +*pt.PaperDimension EnvDL/Envelope DL: "" +*sv.PaperDimension EnvDL/DL-kuvert: "" +*zh_CN.PaperDimension EnvDL/信封 DL: "" +*zh_TW.PaperDimension EnvDL/DL 信封: "" + +*PaperDimension EnvC5/Env C5: "459 649" +*da.PaperDimension EnvC5/Konv C5: "" +*de.PaperDimension EnvC5/Umschlag C5: "" +*es.PaperDimension EnvC5/Sobre C5: "" +*fi.PaperDimension EnvC5/Kirjekuori C5: "" +*fr.PaperDimension EnvC5/Enveloppe C5: "" +*it.PaperDimension EnvC5/Busta C5: "" +*ja.PaperDimension EnvC5/封筒 C5: "" +*ko.PaperDimension EnvC5/C5 봉투: "" +*nl.PaperDimension EnvC5/C5-envelop: "" +*nb.PaperDimension EnvC5/C5-konvolutt: "" +*pt.PaperDimension EnvC5/Envelope C5: "" +*sv.PaperDimension EnvC5/C5-kuvert: "" +*zh_CN.PaperDimension EnvC5/信封 C5: "" +*zh_TW.PaperDimension EnvC5/C5 信封: "" + +*PaperDimension EnvISOB5/Env ISO B5: "499 709" +*da.PaperDimension EnvISOB5/Konv ISO B5: "" +*de.PaperDimension EnvISOB5/Umschlag ISO B5: "" +*es.PaperDimension EnvISOB5/Sobre ISO B5: "" +*fi.PaperDimension EnvISOB5/Kirjekuori ISO B5: "" +*fr.PaperDimension EnvISOB5/Enveloppe ISO B5: "" +*it.PaperDimension EnvISOB5/Busta ISO B5: "" +*ja.PaperDimension EnvISOB5/封筒 ISO B5: "" +*ko.PaperDimension EnvISOB5/ISO B5 봉투: "" +*nl.PaperDimension EnvISOB5/ISO B5-envelop: "" +*nb.PaperDimension EnvISOB5/B5-konvolutt: "" +*pt.PaperDimension EnvISOB5/Envelope B5: "" +*sv.PaperDimension EnvISOB5/ISO B5-kuvert: "" +*zh_CN.PaperDimension EnvISOB5/信封 ISO B5: "" +*zh_TW.PaperDimension EnvISOB5/ISO B5 信封: "" + + +*LandscapeOrientation: Plus90 + +*%================================================= +*% Custom Paper Support +*%================================================= +*%Orientation and Margin (offsets) values are not utilized + +*VariablePaperSize: True + +*LeadingEdge PreferLong: "" +*DefaultLeadingEdge: PreferLong + +*% Smallest = 3x5, Largest = 8.5 x 14 +*MaxMediaWidth: "612" +*MaxMediaHeight: "1008" +*HWMargins: 12 12 12 12 +*%CustomPageRegion True: "" +*CustomPageSize True: " + pop pop pop + <> + setpagedevice +" +*End + + +*ParamCustomPageSize Width: 1 points 216 612 +*ParamCustomPageSize Height: 2 points 360 1008 +*ParamCustomPageSize WidthOffset: 3 points 0 0 +*ParamCustomPageSize HeightOffset: 4 points 0 0 +*ParamCustomPageSize Orientation: 5 int 0 0 + +*RequiresPageRegion All: True + +*%========================================== +*% Media Type +*%========================================= +*OpenUI *MediaType/Media Type: PickOne +*OrderDependency: 20 AnySetup *MediaType +*DefaultMediaType: Unspecified +*da.Translation MediaType/Medietype: "" +*de.Translation MediaType/Medientyp: "" +*es.Translation MediaType/Tipo de sustrato: "" +*fi.Translation MediaType/Tulostusmateriaali: "" +*fr.Translation MediaType/Type de support: "" +*it.Translation MediaType/Tipo di supporto: "" +*ja.Translation MediaType/用紙の種類: "" +*ko.Translation MediaType/용지 종류: "" +*nl.Translation MediaType/Type afdrukmateriaal: "" +*nb.Translation MediaType/Utskriftsmateriale: "" +*pt.Translation MediaType/Tipo de mídia: "" +*sv.Translation MediaType/Material: "" +*zh_CN.Translation MediaType/介质类型: "" +*zh_TW.Translation MediaType/媒體類型: "" + +*MediaType Unspecified/Unspecified: " + <> setpagedevice" +*End +*da.MediaType Unspecified/Uspecificeret: "" +*de.MediaType Unspecified/Nicht bestimmt: "" +*es.MediaType Unspecified/No especificado: "" +*fi.MediaType Unspecified/Määrittämätön: "" +*fr.MediaType Unspecified/Non spécifié: "" +*it.MediaType Unspecified/Non specificato: "" +*ja.MediaType Unspecified/指定なし: "" +*ko.MediaType Unspecified/지정되지 않음: "" +*nl.MediaType Unspecified/Onbekend: "" +*nb.MediaType Unspecified/Uspesifisert: "" +*pt.MediaType Unspecified/Não especificado: "" +*sv.MediaType Unspecified/Ospecificerad: "" +*zh_CN.MediaType Unspecified/未指定: "" +*zh_TW.MediaType Unspecified/未指定: "" + +*MediaType Plain/Plain: " + <> setpagedevice" +*End +*da.MediaType Plain/Almindeligt: "" +*de.MediaType Plain/Normalpapier: "" +*es.MediaType Plain/Estándar: "" +*fi.MediaType Plain/Tavallinen: "" +*fr.MediaType Plain/Ordinaire: "" +*it.MediaType Plain/Normale: "" +*ja.MediaType Plain/普通用紙: "" +*ko.MediaType Plain/일반용지: "" +*nl.MediaType Plain/Gewoon: "" +*nb.MediaType Plain/Vanlig: "" +*pt.MediaType Plain/Comum: "" +*sv.MediaType Plain/Vanligt: "" +*zh_CN.MediaType Plain/普通纸: "" +*zh_TW.MediaType Plain/素面紙: "" + +*MediaType HPMultipurposePaper/HP Multipurpose Paper (71-89 g/m2): " + <> setpagedevice" +*End +*da.MediaType HPMultipurposePaper/HP Universalpapir (71-89 g/m2): "" +*de.MediaType HPMultipurposePaper/HP Mehrzweckpapier (71-89 g/m2): "" +*es.MediaType HPMultipurposePaper/Papel multipropósito HP (71-89 g/m2): "" +*fi.MediaType HPMultipurposePaper/HP monikäyttöpaperi (71-89 g/m2): "" +*fr.MediaType HPMultipurposePaper/Papier universel HP (71-89 g/m2): "" +*it.MediaType HPMultipurposePaper/Carta multiuso HP (71-89 g/m2): "" +*ja.MediaType HPMultipurposePaper/HP 多目的用紙 (71-89 g/m2): "" +*ko.MediaType HPMultipurposePaper/hp 다목적 용지 (71-89 g/m2): "" +*nl.MediaType HPMultipurposePaper/HP Multi-purpose Papier (71-89 g/m2): "" +*nb.MediaType HPMultipurposePaper/HP Multipurpose Paper (71-89 g/m2): "" +*pt.MediaType HPMultipurposePaper/Papel Multipropósito HP (71-89 g/m2): "" +*sv.MediaType HPMultipurposePaper/HP allround-papper (71-89 g/m2): "" +*zh_CN.MediaType HPMultipurposePaper/HP 多用途纸 (71-89 g/m2): "" +*zh_TW.MediaType HPMultipurposePaper/HP 多用途紙張 (71-89 g/m2): "" + +*MediaType HPOfficePaper/HP Office Paper: " + <> setpagedevice" +*End +*da.MediaType HPOfficePaper/HP Kontorpapir: "" +*de.MediaType HPOfficePaper/HP Office-Papier: "" +*es.MediaType HPOfficePaper/Papel de oficina HP: "" +*fi.MediaType HPOfficePaper/HP toimistopaperi: "" +*fr.MediaType HPOfficePaper/Papier pour application bureautique HP: "" +*it.MediaType HPOfficePaper/Carta per ufficio HP: "" +*ja.MediaType HPOfficePaper/HP オフィス用紙: "" +*ko.MediaType HPOfficePaper/hp 사무용 용지: "" +*nl.MediaType HPOfficePaper/HP Office Papier: "" +*nb.MediaType HPOfficePaper/HP Office Paper: "" +*pt.MediaType HPOfficePaper/Papel Para Escritório HP: "" +*sv.MediaType HPOfficePaper/HP kontorspapper: "" +*zh_CN.MediaType HPOfficePaper/HP 办公纸: "" +*zh_TW.MediaType HPOfficePaper/HP 辦公用紙張: "" + +*MediaType HPAllinOnePaper/HP All-in-one Printing Paper: " + <> setpagedevice" +*End +*da.MediaType HPAllinOnePaper/HP All-in-one-Printerpapir: "" +*de.MediaType HPAllinOnePaper/HP Druckerpapier für All-in-One-Geräte: "" +*es.MediaType HPAllinOnePaper/Papel de impresión para HP All-in-one: "" +*fi.MediaType HPAllinOnePaper/HP yhdistelmälaitteen tulostuspaperi: "" +*fr.MediaType HPAllinOnePaper/Papier d'impression HP tout-en-un: "" +*it.MediaType HPAllinOnePaper/Carta per stampa per HP all-in-one: "" +*ja.MediaType HPAllinOnePaper/HP オールインワン印刷用紙: "" +*ko.MediaType HPAllinOnePaper/HP all-in-one 인쇄 용지: "" +*nl.MediaType HPAllinOnePaper/HP All-in-one Afdrukpapier: "" +*nb.MediaType HPAllinOnePaper/HP All-in-one-utskriftspapir: "" +*pt.MediaType HPAllinOnePaper/Papel para impressão HP All-in-one: "" +*sv.MediaType HPAllinOnePaper/HP All-in-one-utskriftspapper: "" +*zh_CN.MediaType HPAllinOnePaper/HP All-in-one 打印纸: "" +*zh_TW.MediaType HPAllinOnePaper/HP All-in-one 列印紙張: "" + +*MediaType HPLJPaper/HP LaserJet Paper: " + <> setpagedevice" +*End +*da.MediaType HPLJPaper/HP LaserJet-papir: "" +*de.MediaType HPLJPaper/HP LaserJet-Papier: "" +*es.MediaType HPLJPaper/Papel para HP LaserJet: "" +*fi.MediaType HPLJPaper/HP LaserJet -paperi: "" +*fr.MediaType HPLJPaper/Papier HP LaserJet: "" +*it.MediaType HPLJPaper/Carta per HP LaserJet: "" +*ja.MediaType HPLJPaper/HP LaserJet 用紙: "" +*ko.MediaType HPLJPaper/HP LaserJet 용지: "" +*nl.MediaType HPLJPaper/HP LaserJet Papier: "" +*nb.MediaType HPLJPaper/HP LaserJet-papir: "" +*pt.MediaType HPLJPaper/Papel para HP LaserJet: "" +*sv.MediaType HPLJPaper/HP LaserJet-papper: "" +*zh_CN.MediaType HPLJPaper/HP LaserJet 纸: "" +*zh_TW.MediaType HPLJPaper/HP LaserJet 紙張: "" + +*MediaType HPPremChoiceLJPaper/HP Premium Choice LaserJet Paper: " + <> setpagedevice" +*End +*da.MediaType HPPremChoiceLJPaper/HP Premium Choice LaserJet-papir: "" +*de.MediaType HPPremChoiceLJPaper/HP Premium Choice LaserJet-Papier: "" +*es.MediaType HPPremChoiceLJPaper/Papel para HP Premium Choice LaserJet: "" +*fi.MediaType HPPremChoiceLJPaper/HP Premium Choice LaserJet -paperi: "" +*fr.MediaType HPPremChoiceLJPaper/Papier LaserJet HP Premium Choice: "" +*it.MediaType HPPremChoiceLJPaper/Carta alta qualità per HP LaserJet: "" +*ja.MediaType HPPremChoiceLJPaper/HP プレミアムチョイス LaserJet 用紙: "" +*ko.MediaType HPPremChoiceLJPaper/HP LaserJet 고급 용지: "" +*nl.MediaType HPPremChoiceLJPaper/HP Premium Choice LaserJet Papier: "" +*nb.MediaType HPPremChoiceLJPaper/HP Premium Choice LaserJet-papir: "" +*pt.MediaType HPPremChoiceLJPaper/Papel HP Premium Choice para HP LaserJet: "" +*sv.MediaType HPPremChoiceLJPaper/HP Premium Choice LaserJet-papper: "" +*zh_CN.MediaType HPPremChoiceLJPaper/HP 优选 LaserJet 纸: "" +*zh_TW.MediaType HPPremChoiceLJPaper/HP 頂級 LaserJet 紙張: "" + +*MediaType Preprinted/Preprinted: " + <> setpagedevice" +*End +*da.MediaType Preprinted/Fortrykt: "" +*de.MediaType Preprinted/Vordruckpapier: "" +*es.MediaType Preprinted/Preimpreso: "" +*fi.MediaType Preprinted/Esipainettu: "" +*fr.MediaType Preprinted/Préimprimé: "" +*it.MediaType Preprinted/Prestampata: "" +*ja.MediaType Preprinted/印刷フォーム: "" +*ko.MediaType Preprinted/미리 인쇄: "" +*nl.MediaType Preprinted/Voorbedrukt: "" +*nb.MediaType Preprinted/Forhåndstrykt: "" +*pt.MediaType Preprinted/Pré-impresso: "" +*sv.MediaType Preprinted/Förtryckt: "" +*zh_CN.MediaType Preprinted/预先打印纸: "" +*zh_TW.MediaType Preprinted/預印的: "" + +*MediaType Letterhead/Letterhead: " + <> setpagedevice" +*End +*da.MediaType Letterhead/Brevpapir: "" +*de.MediaType Letterhead/Briefkopfpapier: "" +*es.MediaType Letterhead/Membrete: "" +*fi.MediaType Letterhead/Kirjelomake: "" +*fr.MediaType Letterhead/Papier à en-tête: "" +*it.MediaType Letterhead/Carta intestata: "" +*ja.MediaType Letterhead/レターヘッド付き: "" +*ko.MediaType Letterhead/레터헤드: "" +*nl.MediaType Letterhead/Briefpapier: "" +*nb.MediaType Letterhead/Brevhode: "" +*pt.MediaType Letterhead/Timbrado: "" +*sv.MediaType Letterhead/Brevpapper: "" +*zh_CN.MediaType Letterhead/信头纸: "" +*zh_TW.MediaType Letterhead/信頭紙: "" + +*MediaType Transparency/Transparency: " + <> setpagedevice" +*End +*da.MediaType Transparency/Transparent: "" +*de.MediaType Transparency/Transparentfolie: "" +*es.MediaType Transparency/Transparencia: "" +*fi.MediaType Transparency/Kalvo: "" +*fr.MediaType Transparency/Transparent: "" +*it.MediaType Transparency/Lucido: "" +*ja.MediaType Transparency/OHP フィルム: "" +*ko.MediaType Transparency/투명 용지: "" +*nl.MediaType Transparency/Transparant: "" +*nb.MediaType Transparency/Transparent: "" +*pt.MediaType Transparency/Transparência: "" +*sv.MediaType Transparency/OH-film: "" +*zh_CN.MediaType Transparency/透明胶片: "" +*zh_TW.MediaType Transparency/投影片: "" + +*MediaType Prepunched/Prepunched: " + <> setpagedevice" +*End +*da.MediaType Prepunched/Hullet: "" +*de.MediaType Prepunched/Vorgelochtes Papier: "" +*es.MediaType Prepunched/Preperforado: "" +*fi.MediaType Prepunched/Rei’itetty: "" +*fr.MediaType Prepunched/Perforé: "" +*it.MediaType Prepunched/Perforata: "" +*ja.MediaType Prepunched/穴あき用紙: "" +*ko.MediaType Prepunched/천공 용지: "" +*nl.MediaType Prepunched/Geperforeerd: "" +*nb.MediaType Prepunched/Hullark: "" +*pt.MediaType Prepunched/Perfurado: "" +*sv.MediaType Prepunched/Hålat: "" +*zh_CN.MediaType Prepunched/预先打孔纸: "" +*zh_TW.MediaType Prepunched/打孔過的: "" + +*MediaType Labels/Labels: " + <> setpagedevice" +*End +*da.MediaType Labels/Etiketter: "" +*de.MediaType Labels/Etiketten: "" +*es.MediaType Labels/Etiquetas: "" +*fi.MediaType Labels/Tarrat: "" +*fr.MediaType Labels/Étiquettes: "" +*it.MediaType Labels/Etichette: "" +*ja.MediaType Labels/ラベル: "" +*ko.MediaType Labels/레이블: "" +*nl.MediaType Labels/Etiketten: "" +*nb.MediaType Labels/Etiketter: "" +*pt.MediaType Labels/Etiquetas: "" +*sv.MediaType Labels/Etiketter: "" +*zh_CN.MediaType Labels/标签: "" +*zh_TW.MediaType Labels/標籤: "" + +*MediaType Bond/Bond: " + <> setpagedevice" +*End +*da.MediaType Bond/Bond: "" +*de.MediaType Bond/Briefpapier: "" +*es.MediaType Bond/Bond: "" +*fi.MediaType Bond/Kova asiakirjapaperi: "" +*fr.MediaType Bond/Document: "" +*it.MediaType Bond/Carta fine: "" +*ja.MediaType Bond/ボンド紙: "" +*ko.MediaType Bond/본드지: "" +*nl.MediaType Bond/Bankpost: "" +*nb.MediaType Bond/Bond: "" +*pt.MediaType Bond/Superbond: "" +*sv.MediaType Bond/Finpapper: "" +*zh_CN.MediaType Bond/证券纸: "" +*zh_TW.MediaType Bond/雪銅紙: "" + +*MediaType Recycled/Recycled: " + <> setpagedevice" +*End +*da.MediaType Recycled/Genbrug: "" +*de.MediaType Recycled/Recyclingpapier: "" +*es.MediaType Recycled/Reciclado: "" +*fi.MediaType Recycled/Uusiopaperi: "" +*fr.MediaType Recycled/Recyclé: "" +*it.MediaType Recycled/Riciclata: "" +*ja.MediaType Recycled/再生紙: "" +*ko.MediaType Recycled/재활용지: "" +*nl.MediaType Recycled/Gerecycled: "" +*nb.MediaType Recycled/Resirkulert: "" +*pt.MediaType Recycled/Reciclado: "" +*sv.MediaType Recycled/Returpapper: "" +*zh_CN.MediaType Recycled/再生纸: "" +*zh_TW.MediaType Recycled/再生紙: "" + +*MediaType Color/Color: " + <> setpagedevice" +*End +*da.MediaType Color/Farvet: "" +*de.MediaType Color/Farbpapier: "" +*es.MediaType Color/Color: "" +*fi.MediaType Color/Väri: "" +*fr.MediaType Color/Couleur: "" +*it.MediaType Color/Colorata: "" +*ja.MediaType Color/カラー: "" +*ko.MediaType Color/색: "" +*nl.MediaType Color/Kleur: "" +*nb.MediaType Color/Farge: "" +*pt.MediaType Color/Colorido: "" +*sv.MediaType Color/Färgat: "" +*zh_CN.MediaType Color/颜色: "" +*zh_TW.MediaType Color/顏色: "" + +*MediaType Light75/Light (<3c>75 g/m2): " + <> setpagedevice" +*End +*da.MediaType Light75/Let (<3c>75 g/m2): "" +*de.MediaType Light75/Leicht (<3c>75 g/m2): "" +*es.MediaType Light75/Ligero (<3c>75 g/m2): "" +*fi.MediaType Light75/Kevyt (<3c>75 g/m2): "" +*fr.MediaType Light75/Fin (<3c>75 g/m2): "" +*it.MediaType Light75/Leggera (<3c>75 g/m2): "" +*ja.MediaType Light75/軽い用紙 (<3c>75 g/m2): "" +*ko.MediaType Light75/경량지 (<3c>75 g/m2): "" +*nl.MediaType Light75/Licht (<3c>75 g/m2): "" +*nb.MediaType Light75/Lys (<3c>75 g/m2): "" +*pt.MediaType Light75/Leve (<3c>75 g/m2): "" +*sv.MediaType Light75/Lätt (<3c>75 g/m2): "" +*zh_CN.MediaType Light75/轻磅 (<3c>75 g/m2): "" +*zh_TW.MediaType Light75/輕磅紙 (<3c>75 g/m2): "" + +*MediaType Heavy91105/Heavy (90-104 g/m2): " + <> setpagedevice" +*End +*da.MediaType Heavy91105/Kraftigt (91-105 g/m2): "" +*de.MediaType Heavy91105/Schwer (91-105 g/m2): "" +*es.MediaType Heavy91105/Pesado (91-105 g/m2): "" +*fi.MediaType Heavy91105/Paksu (91-105 g/m2): "" +*fr.MediaType Heavy91105/Epais (91-105 g/m2): "" +*it.MediaType Heavy91105/Pesante (91-105 g/m2): "" +*ja.MediaType Heavy91105/重い用紙 (91-105 g/m2): "" +*ko.MediaType Heavy91105/중량지 (91-105 g/m2): "" +*nl.MediaType Heavy91105/Zwaar (91-105 g/m2): "" +*nb.MediaType Heavy91105/Tungt (91-105 g/m2): "" +*pt.MediaType Heavy91105/Pesado (91-105 g/m2): "" +*sv.MediaType Heavy91105/Tungt (91-105 g/m2): "" +*zh_CN.MediaType Heavy91105/重磅 (91-105 g/m2): "" +*zh_TW.MediaType Heavy91105/重磅紙 (91-105 g/m2): "" + +*MediaType Cardstock105176/Card Stock (105-176 g/m2): " + <> setpagedevice" +*End +*da.MediaType Cardstock105176/Karton (105-176 g/m2): "" +*de.MediaType Cardstock105176/Karton (105-176 g/m2): "" +*es.MediaType Cardstock105176/Cartulina (105-176 g/m2): "" +*fi.MediaType Cardstock105176/Korttipaperi (105-176 g/m2): "" +*fr.MediaType Cardstock105176/Cartonné (105-176 g/m2): "" +*it.MediaType Cardstock105176/Cartoncino (105-176 g/m2): "" +*ja.MediaType Cardstock105176/カード ストック (105-176 g/m2): "" +*ko.MediaType Cardstock105176/카드 용지 (105-176 g/m2): "" +*nl.MediaType Cardstock105176/Kartonkaart (105-176 g/m2): "" +*nb.MediaType Cardstock105176/Kort (105-176 g/m2): "" +*pt.MediaType Cardstock105176/Cartolina (105-176 g/m2): "" +*sv.MediaType Cardstock105176/Kort (105-176 g/m2): "" +*zh_CN.MediaType Cardstock105176/卡片纸 (105-176 g/m2): "" +*zh_TW.MediaType Cardstock105176/卡片紙 (105-176 g/m2): "" + +*MediaType Envelope/Envelope: " + <> setpagedevice" +*End +*da.MediaType Envelope/Konvolut: "" +*de.MediaType Envelope/Briefumschlag: "" +*es.MediaType Envelope/Sobre: "" +*fi.MediaType Envelope/Kirjekuori: "" +*fr.MediaType Envelope/Enveloppe: "" +*it.MediaType Envelope/Busta: "" +*ja.MediaType Envelope/封筒: "" +*ko.MediaType Envelope/봉투: "" +*nl.MediaType Envelope/Enveloppen: "" +*nb.MediaType Envelope/Konvolutt: "" +*pt.MediaType Envelope/Envelope: "" +*sv.MediaType Envelope/Kuvert: "" +*zh_CN.MediaType Envelope/信封: "" +*zh_TW.MediaType Envelope/信封: "" + +*MediaType Rough/Rough: " + <> setpagedevice" +*End +*da.MediaType Rough/Groft (90-105 g/m2): "" +*de.MediaType Rough/Rauhpapier: "" +*es.MediaType Rough/Rugoso: "" +*fi.MediaType Rough/Karkea: "" +*fr.MediaType Rough/Rugueux: "" +*it.MediaType Rough/Ruvida: "" +*ja.MediaType Rough/ざら紙: "" +*ko.MediaType Rough/거친 용지: "" +*nl.MediaType Rough/Ruw: "" +*nb.MediaType Rough/Grovt: "" +*pt.MediaType Rough/Áspero: "" +*sv.MediaType Rough/Grovt: "" +*zh_CN.MediaType Rough/粗糙: "" +*zh_TW.MediaType Rough/粗糙紙: "" + +*?MediaType: " + save + currentpagedevice /MediaType get + dup null eq {pop (Unknown)} if + = flush + restore +" +*End +*CloseUI: *MediaType +*% ================================================ +*% ================================================ + +*% ================================================ +*% ================================================ + + + + +*% These values are set of PageSize settings so we need find +*% the way to refer on to PageSize values + + + +*%============================================= +*%================================================= +*% Paper Sources +*%================================================= +*OpenUI *InputSlot/Paper Source: PickOne +*OrderDependency: 20 AnySetup *InputSlot +*DefaultInputSlot: Auto +*InputSlot Auto/Automatic: " + <> setpagedevice" +*End +*da.InputSlot Auto/Automatisk: "" +*de.InputSlot Auto/Automatisch: "" +*es.InputSlot Auto/Automático: "" +*fi.InputSlot Auto/Automaattinen: "" +*fr.InputSlot Auto/Automatique: "" +*it.InputSlot Auto/Automatico: "" +*ja.InputSlot Auto/自動: "" +*ko.InputSlot Auto/자동: "" +*nl.InputSlot Auto/Automatisch: "" +*nb.InputSlot Auto/Automatisk: "" +*pt.InputSlot Auto/Automático: "" +*sv.InputSlot Auto/Automatiskt: "" +*zh_CN.InputSlot Auto/自动: "" +*zh_TW.InputSlot Auto/自動: "" + +*da.Translation InputSlot/Papirkilde: "" +*de.Translation InputSlot/Papierquelle: "" +*es.Translation InputSlot/Alimentación de papel: "" +*fi.Translation InputSlot/Paperilähde: "" +*fr.Translation InputSlot/Source du papier: "" +*it.Translation InputSlot/Alimentazione della carta: "" +*ja.Translation InputSlot/給紙元: "" +*ko.Translation InputSlot/용지함: "" +*nl.Translation InputSlot/Papierbron: "" +*nb.Translation InputSlot/Arkmating: "" +*pt.Translation InputSlot/Fonte de papel: "" +*sv.Translation InputSlot/Papperskälla: "" +*zh_CN.Translation InputSlot/纸张来源: "" +*zh_TW.Translation InputSlot/紙張來源: "" + +*InputSlot Tray1/Tray 1: "<> setpagedevice" +*da.InputSlot Tray1/Bakke 1: "" +*de.InputSlot Tray1/Zufuhrfach 1: "" +*es.InputSlot Tray1/Bandeja 1: "" +*fi.InputSlot Tray1/Lokero 1: "" +*fr.InputSlot Tray1/Bac 1: "" +*it.InputSlot Tray1/Cassetto 1: "" +*ja.InputSlot Tray1/トレイ 1: "" +*ko.InputSlot Tray1/용지함 1: "" +*nl.InputSlot Tray1/Lade 1: "" +*nb.InputSlot Tray1/Skuff 1: "" +*pt.InputSlot Tray1/Bandeja 1: "" +*sv.InputSlot Tray1/Fack 1: "" +*zh_CN.InputSlot Tray1/纸盒 1: "" +*zh_TW.InputSlot Tray1/1 號紙匣: "" + +*InputSlot Tray2/Tray 2: "<> setpagedevice" +*da.InputSlot Tray2/Bakke 2: "" +*de.InputSlot Tray2/Zufuhrfach 2: "" +*es.InputSlot Tray2/Bandeja 2: "" +*fi.InputSlot Tray2/Lokero 2: "" +*fr.InputSlot Tray2/Bac 2: "" +*it.InputSlot Tray2/Cassetto 2: "" +*ja.InputSlot Tray2/トレイ 2: "" +*ko.InputSlot Tray2/용지함 2: "" +*nl.InputSlot Tray2/Lade 2: "" +*nb.InputSlot Tray2/Skuff 2: "" +*pt.InputSlot Tray2/Bandeja 2: "" +*sv.InputSlot Tray2/Fack 2: "" +*zh_CN.InputSlot Tray2/纸盒 2: "" +*zh_TW.InputSlot Tray2/2 號紙匣: "" + +*InputSlot Tray3/Tray 3: "<> setpagedevice" +*da.InputSlot Tray3/Bakke 3: "" +*de.InputSlot Tray3/Zufuhrfach 3: "" +*es.InputSlot Tray3/Bandeja 3: "" +*fi.InputSlot Tray3/Lokero 3: "" +*fr.InputSlot Tray3/Bac 3: "" +*it.InputSlot Tray3/Cassetto 3: "" +*ja.InputSlot Tray3/トレイ 3: "" +*ko.InputSlot Tray3/용지함 3: "" +*nl.InputSlot Tray3/Lade 3: "" +*nb.InputSlot Tray3/Skuff 3: "" +*pt.InputSlot Tray3/Bandeja 3: "" +*sv.InputSlot Tray3/Fack 3: "" +*zh_CN.InputSlot Tray3/纸盒 3: "" +*zh_TW.InputSlot Tray3/3 號紙匣: "" + +*?InputSlot: " + save + [(Tray2) (None) (Tray1) (Tray2)] + statusdict /papertray get exec + {get exec} stopped { pop pop (unknown) } if = flush + restore +" +*End +*CloseUI: *InputSlot + +*% Enable/Disable Manual Feed +*OpenUI *ManualFeed/Tray 1 (Manual): Boolean +*OrderDependency: 20 AnySetup *ManualFeed +*DefaultManualFeed: False +*da.Translation ManualFeed/Bakke 1 (manuel): "" +*de.Translation ManualFeed/Zufuhrfach 1 (Manuell): "" +*es.Translation ManualFeed/Bandeja 1 (manual): "" +*fi.Translation ManualFeed/Lokero 1 (Käsinsyöttö): "" +*fr.Translation ManualFeed/Bac 1 (manuel): "" +*it.Translation ManualFeed/Cassetto 1 (Manuale): "" +*ja.Translation ManualFeed/トレイ 1 (手動): "" +*ko.Translation ManualFeed/용지함 1(수동): "" +*nl.Translation ManualFeed/Lade 1 (handmatig): "" +*nb.Translation ManualFeed/Skuff 1 (manuell): "" +*pt.Translation ManualFeed/Bandeja 1 (manual): "" +*sv.Translation ManualFeed/Fack 1 (manuell): "" +*zh_CN.Translation ManualFeed/纸盒1 (手工): "" +*zh_TW.Translation ManualFeed/紙匣1 ( 手動): "" + +*ManualFeed True/True: " + <> setpagedevice" +*End +*da.ManualFeed True/Sand: "" +*de.ManualFeed True/Ja: "" +*es.ManualFeed True/Verdadero: "" +*fi.ManualFeed True/Käytössä: "" +*fr.ManualFeed True/Vrai: "" +*it.ManualFeed True/Vero: "" +*ja.ManualFeed True/はい: "" +*ko.ManualFeed True/참: "" +*nl.ManualFeed True/Waar: "" +*nb.ManualFeed True/Sann: "" +*pt.ManualFeed True/Verdadeiro: "" +*sv.ManualFeed True/Sant: "" +*zh_CN.ManualFeed True/真: "" +*zh_TW.ManualFeed True/真: "" + +*ManualFeed False/False: " + <> setpagedevice" +*End +*da.ManualFeed False/Falsk: "" +*de.ManualFeed False/Nein: "" +*es.ManualFeed False/Falso: "" +*fi.ManualFeed False/Ei käytössä: "" +*fr.ManualFeed False/Faux: "" +*it.ManualFeed False/Falso: "" +*ja.ManualFeed False/いいえ: "" +*ko.ManualFeed False/거짓: "" +*nl.ManualFeed False/Onwaar: "" +*nb.ManualFeed False/Usann: "" +*pt.ManualFeed False/Falso: "" +*sv.ManualFeed False/Falskt: "" +*zh_CN.ManualFeed False/伪: "" +*zh_TW.ManualFeed False/假: "" + +*?ManualFeed: " + save + currentpagedevice /ManualFeed get + {(True)}{(False)}ifelse = flush + restore +" +*End +*CloseUI: *ManualFeed + +*HPManualFeedPrintsOnBottom: True +*HPManDupTumbleFirstSides: True +*HPGuidePageExtraTumble: " +userdict /hpManDupSettings known + { userdict /hpManDupSettings get dup + /manualFeedPrintsOnBottom known + {/manualFeedPrintsOnBottom get} + {pop true}ifelse + } + {true} +ifelse +" +*End + +*%================================================= +*% Duplex +*%================================================= +*OpenUI *Duplex/Duplex: PickOne +*OrderDependency: 50 AnySetup *Duplex +*DefaultDuplex: None +*da.Translation Duplex/Dupleks: "" +*de.Translation Duplex/Beidseitiger Druck: "" +*es.Translation Duplex/Dúplex: "" +*fi.Translation Duplex/Kaksipuolinen tulostus: "" +*fr.Translation Duplex/Impression des deux côtés: "" +*it.Translation Duplex/Duplex: "" +*ja.Translation Duplex/両面印刷: "" +*ko.Translation Duplex/양면인쇄: "" +*nl.Translation Duplex/Duplex: "" +*nb.Translation Duplex/Tosidig: "" +*pt.Translation Duplex/Dúplex: "" +*sv.Translation Duplex/Dubbelsidig: "" +*zh_CN.Translation Duplex/双面打印: "" +*zh_TW.Translation Duplex/雙面列印: "" + +*Duplex None/Off (1-Sided): " + <> setpagedevice" +*End +*da.Duplex None/Fra (1-sidet): "" +*de.Duplex None/Aus (einseitig): "" +*es.Duplex None/Des (por un solo lado): "" +*fi.Duplex None/Ei käytössä: "" +*fr.Duplex None/Désactivé: "" +*it.Duplex None/Disattivato (facciata singola): "" +*ja.Duplex None/オフ (片面印刷): "" +*ko.Duplex None/끔 (한 면): "" +*nl.Duplex None/Uit (enkelzijdig): "" +*nb.Duplex None/Av (1-sidig): "" +*pt.Duplex None/Desligado (face única): "" +*sv.Duplex None/Av (enkelsidig): "" +*zh_CN.Duplex None/关 (1面): "" +*zh_TW.Duplex None/關( 單面): "" + +*Duplex DuplexNoTumble/Flip on Long Edge (Standard): " + <> setpagedevice" +*End +*da.Duplex DuplexNoTumble/Vend på langs: "" +*de.Duplex DuplexNoTumble/Lange Kante spiegeln (Standard): "" +*es.Duplex DuplexNoTumble/Dar vuelta - borde largo (estándar): "" +*fi.Duplex DuplexNoTumble/Pitkän reunan sidonta: "" +*fr.Duplex DuplexNoTumble/Reliure sur bord long: "" +*it.Duplex DuplexNoTumble/Ruota sul lato lungo (Standard): "" +*ja.Duplex DuplexNoTumble/長辺綴じ (標準): "" +*ko.Duplex DuplexNoTumble/긴 가장자리로 뒤집기(표준): "" +*nl.Duplex DuplexNoTumble/Over lange zijde spiegelen (standaard): "" +*nb.Duplex DuplexNoTumble/Vend på langsiden (standard): "" +*pt.Duplex DuplexNoTumble/Inversão na margem longa (padrão): "" +*sv.Duplex DuplexNoTumble/Vänd längs långsidan (standard): "" +*zh_CN.Duplex DuplexNoTumble/长边翻转(标准): "" +*zh_TW.Duplex DuplexNoTumble/在長邊緣倒轉( 標準): "" + +*Duplex DuplexTumble/Flip on Short Edge: " + <> setpagedevice" +*End +*da.Duplex DuplexTumble/Vend på tværs: "" +*de.Duplex DuplexTumble/Kurze Kante spiegeln: "" +*es.Duplex DuplexTumble/Dar vuelta - borde corto: "" +*fi.Duplex DuplexTumble/Lyhyen reunan sidonta: "" +*fr.Duplex DuplexTumble/Reliure sur bord court: "" +*it.Duplex DuplexTumble/Ruota sul lato corto: "" +*ja.Duplex DuplexTumble/短辺綴じ: "" +*ko.Duplex DuplexTumble/짧은 가장자리로 뒤집기: "" +*nl.Duplex DuplexTumble/Over korte zijde spiegelen: "" +*nb.Duplex DuplexTumble/Vend på kortsiden: "" +*pt.Duplex DuplexTumble/Inversão na margem curta: "" +*sv.Duplex DuplexTumble/Vänd längs kortsidan: "" +*zh_CN.Duplex DuplexTumble/短边翻转: "" +*zh_TW.Duplex DuplexTumble/在短邊緣倒轉: "" + +*?Duplex: " + save + currentpagedevice /Duplex known + false ne + { currentpagedevice /Duplex get + { currentpagedevice /Tumble get + {(DuplexTumble)}{(DuplexNoTumble)}ifelse + } { (None)} ifelse + }{(None)} ifelse = flush + restore +" +*End +*CloseUI: *Duplex + +*%================================================= +*% Color Control +*%================================================= +*DefaultColorSep: ProcessBlack.212lpi.1200dpi/212 lpi / 1200 dpi +*InkName: ProcessBlack/Process Black +*InkName: CustomColor/Custom Color +*InkName: ProcessCyan/Process Cyan +*InkName: ProcessMagenta/Process Magenta +*InkName: ProcessYellow/Process Yellow + +*% For 60 lpi / 300 dpi ========================= +*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45" + +*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45" + +*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15" + +*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75" + +*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0" + + +*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60" + +*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60" + +*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60" + +*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60" + +*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60" + + +*% For 85 lpi / 600 dpi (5,5,2,6,6,2,20/3,0) ==== +*ColorSepScreenAngle ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "45.0" + +*ColorSepScreenAngle CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "45.0" + +*ColorSepScreenAngle ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "71.5651" + +*ColorSepScreenAngle ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "18.4349" + +*ColorSepScreenAngle ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "0.0" + + +*ColorSepScreenFreq ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "84.8528" + +*ColorSepScreenFreq CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "84.8528" + +*ColorSepScreenFreq ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "94.8683" + +*ColorSepScreenFreq ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "94.8683" + +*ColorSepScreenFreq ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "30.0" + +*ColorSepScreenProc ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: " +{1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch +1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch +abs exch abs 2 copy add 1 gt {1 sub dup mul exch 1 sub dup mul add 1 +sub }{dup mul exch dup mul add 1 exch sub }ifelse }" +*End + + +*% For 106 lpi / 300 dpi ========================= +*ColorSepScreenAngle ProcessBlack.106lpi.300dpi/106 lpi / 300 dpi: "45.0" + +*ColorSepScreenAngle CustomColor.106lpi.300dpi/106 lpi / 300 dpi: "45.0" + +*ColorSepScreenAngle ProcessCyan.106lpi.300dpi/106 lpi / 300 dpi: "71.5651" + +*ColorSepScreenAngle ProcessMagenta.106lpi.300dpi/106 lpi / 300 dpi: "18.4349" + +*ColorSepScreenAngle ProcessYellow.106lpi.300dpi/106 lpi / 300 dpi: "0.0" + + +*ColorSepScreenFreq ProcessBlack.106lpi.300dpi/106 lpi / 300 dpi: "106.066" + +*ColorSepScreenFreq CustomColor.106lpi.300dpi/106 lpi / 300 dpi: "106.066" + +*ColorSepScreenFreq ProcessCyan.106lpi.300dpi/106 lpi / 300 dpi: "94.8683" + +*ColorSepScreenFreq ProcessMagenta.106lpi.300dpi/106 lpi / 300 dpi: "94.8683" + +*ColorSepScreenFreq ProcessYellow.106lpi.300dpi/106 lpi / 300 dpi: "100.0" + + +*% For 106 lpi / 600 dpi ========================= +*ColorSepScreenAngle ProcessBlack.106lpi.600dpi/106 lpi / 600 dpi: "45.0" + +*ColorSepScreenAngle CustomColor.106lpi.600dpi/106 lpi / 600 dpi: "45.0" + +*ColorSepScreenAngle ProcessCyan.106lpi.600dpi/106 lpi / 600 dpi: "71.5651" + +*ColorSepScreenAngle ProcessMagenta.106lpi.600dpi/106 lpi / 600 dpi: "18.4349" + +*ColorSepScreenAngle ProcessYellow.106lpi.600dpi/106 lpi / 600 dpi: "0.0" + + +*ColorSepScreenFreq ProcessBlack.106lpi.600dpi/106 lpi / 600 dpi: "106.066" + +*ColorSepScreenFreq CustomColor.106lpi.600dpi/106 lpi / 600 dpi: "106.066" + +*ColorSepScreenFreq ProcessCyan.106lpi.600dpi/106 lpi / 600 dpi: "94.8683" + +*ColorSepScreenFreq ProcessMagenta.106lpi.600dpi/106 lpi / 600 dpi: "94.8683" + +*ColorSepScreenFreq ProcessYellow.106lpi.600dpi/106 lpi / 600 dpi: "100.0" + + +*% For 212 lpi / 1200 dpi ========================= +*ColorSepScreenAngle ProcessBlack.212lpi.1200dpi/212 lpi / 1200 dpi: "45.0" + +*ColorSepScreenAngle CustomColor.212lpi.1200dpi/212 lpi / 1200 dpi: "45.0" + +*ColorSepScreenAngle ProcessCyan.212lpi.1200dpi/212 lpi / 1200 dpi: "71.5651" + +*ColorSepScreenAngle ProcessMagenta.212lpi.1200dpi/212 lpi / 1200 dpi: "18.4349" + +*ColorSepScreenAngle ProcessYellow.212lpi.1200dpi/212 lpi / 1200 dpi: "0.0" + + +*ColorSepScreenFreq ProcessBlack.212lpi.1200dpi/212 lpi / 1200 dpi: "212" + +*ColorSepScreenFreq CustomColor.212lpi.1200dpi/212 lpi / 1200 dpi: "212" + +*ColorSepScreenFreq ProcessCyan.212lpi.1200dpi/212 lpi / 1200 dpi: "190" + +*ColorSepScreenFreq ProcessMagenta.212lpi.1200dpi/212 lpi / 1200 dpi: "190" + +*ColorSepScreenFreq ProcessYellow.212lpi.1200dpi/212 lpi / 1200 dpi: "200" + + +*%================================================= +*% Font Information +*%================================================= +*DefaultFont: Courier +*Font AvantGarde-Book: Standard "(001.006S)" Standard ROM +*Font AvantGarde-BookOblique: Standard "(001.006S)" Standard ROM +*Font AvantGarde-Demi: Standard "(001.007S)" Standard ROM +*Font AvantGarde-DemiOblique: Standard "(001.007S)" Standard ROM +*Font Bookman-Demi: Standard "(001.004S)" Standard ROM +*Font Bookman-DemiItalic: Standard "(001.004S)" Standard ROM +*Font Bookman-Light: Standard "(001.004S)" Standard ROM +*Font Bookman-LightItalic: Standard "(001.004S)" Standard ROM +*Font Courier: Standard "(002.004S)" Standard ROM +*Font Courier-Bold: Standard "(002.004S)" Standard ROM +*Font Courier-BoldOblique: Standard "(002.004S)" Standard ROM +*Font Courier-Oblique: Standard "(002.004S)" Standard ROM +*Font Helvetica: Standard "(001.006S)" Standard ROM +*Font Helvetica-Bold: Standard "(001.007S)" Standard ROM +*Font Helvetica-BoldOblique: Standard "(001.007S)" Standard ROM +*Font Helvetica-Narrow: Standard "(001.006S)" Standard ROM +*Font Helvetica-Narrow-Bold: Standard "(001.007S)" Standard ROM +*Font Helvetica-Narrow-BoldOblique: Standard "(001.007S)" Standard ROM +*Font Helvetica-Narrow-Oblique: Standard "(001.006S)" Standard ROM +*Font Helvetica-Oblique: Standard "(001.006S)" Standard ROM +*Font NewCenturySchlbk-Bold: Standard "(001.009S)" Standard ROM +*Font NewCenturySchlbk-BoldItalic: Standard "(001.007S)" Standard ROM +*Font NewCenturySchlbk-Italic: Standard "(001.006S)" Standard ROM +*Font NewCenturySchlbk-Roman: Standard "(001.007S)" Standard ROM +*Font Palatino-Bold: Standard "(001.005S)" Standard ROM +*Font Palatino-BoldItalic: Standard "(001.005S)" Standard ROM +*Font Palatino-Italic: Standard "(001.005S)" Standard ROM +*Font Palatino-Roman: Standard "(001.005S)" Standard ROM +*Font Symbol: Special "(001.007S)" Special ROM +*Font Times-Bold: Standard "(001.007S)" Standard ROM +*Font Times-BoldItalic: Standard "(001.009S)" Standard ROM +*Font Times-Italic: Standard "(001.007S)" Standard ROM +*Font Times-Roman: Standard "(001.007S)" Standard ROM +*Font ZapfChancery-MediumItalic: Standard "(001.007S)" Standard ROM +*Font ZapfDingbats: Special "(001.004S)" Special ROM +*?FontQuery: " + save + { count 1 gt + { exch dup 127 string cvs (/) print print (:) print + /Font resourcestatus {pop pop (Yes)} {(No)} ifelse = + } { exit } ifelse + } bind loop + (*) = flush + restore +" +*End + +*?FontList: " + save + (*) {cvn ==} 128 string /Font resourceforall + (*) = flush + restore +" +*End + +*%================================================= +*% Printer Messages (verbatim from printer): +*%================================================= +*Message: "%%[ exitserver: permanent state may be changed ]%%" +*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%" +*Message: "\FontName\ not found, using Courier" + +*% Status (format: %%[ status: ] %%) +*Status: "warming up"/warming up +*Status: "idle"/idle +*Status: "busy"/busy +*Status: "waiting"/waiting +*Status: "printing"/printing +*Status: "initializing"/initializing +*Status: "printing test page"/printing test page +*Status: "PrinterError: cover open or no toner cartridge"/cover open or no toner cartridge +*Status: "PrinterError: cover open"/cover open +*Status: "PrinterError: needs attention"/needs attention +*Status: "PrinterError: no toner cartridge"/no toner cartridge +*Status: "PrinterError: warming up"/warming up +*Status: "PrinterError: manual feed"/manual feed +*Status: "PrinterError: out of paper"/out of paper +*Status: "PrinterError: Paper Jam"/Paper Jam +*Status: "PrinterError: paper jam"/paper jam +*Status: "PrinterError: page protect needed"/page protect needed +*Status: "PrinterError: out of memory"/out of memory +*Status: "PrinterError: output bin full"/output bin full +*Status: "PrinterError: resetting printer"/resetting printer +*Status: "PrinterError: toner is low"/toner is low +*Status: "PrinterError: off line"/off line + +*% Printer Error (format: %%[ PrinterError: ]%%) +*PrinterError: "cover open or no toner cartridge"/cover open or no toner cartridge +*PrinterError: "cover open"/cover open +*PrinterError: "needs attention"/needs attention +*PrinterError: "no toner cartridge"/no toner cartridge +*PrinterError: "warming up"/warming up +*PrinterError: "manual feed"/manual feed +*PrinterError: "out of paper"/out of paper +*PrinterError: "Paper Jam"/Paper Jam +*PrinterError: "paper jam"/paper jam +*PrinterError: "page protect needed"/page protect needed +*PrinterError: "out of memory"/out of memory +*PrinterError: "output bin full"/output bin full +*PrinterError: "resetting printer"/resetting printer +*PrinterError: "toner is low"/toner is low +*PrinterError: "off line"/off line + +*% Input Sources (format: %%[ status: ; source: ]%% ) +*Source: "BiTronics"/BiTronics +*Source: "other I/O"/other I/O +*Source: "AppleTalk"/AppleTalk +*Source: "APPLETALK"/AppleTalk +*Source: "ATALK"/AppleTalk +*Source: "LocalTalk"/LocalTalk +*Source: "Parallel"/Parallel +*Source: "EtherTalk"/EtherTalk +*Source: "NOVELL"/NOVELL +*Source: "DLC/LLC"/DLC/LLC +*Source: "ETALK"/EtherTalk +*Source: "TCP/IP"/TCP/IP + +*Password: "()" +*ExitServer: " + count 0 eq + { false } { true exch startjob } ifelse + not { + (WARNING: Cannot modify initial VM.) = + (Missing or invalid password.) = + (Please contact the author of this software.) = flush quit + } if +" +*End +*Reset: " + count 0 eq { false } { true exch startjob } ifelse + not { + (WARNING: Cannot reset printer.) = + (Missing or invalid password.) = + (Please contact the author of this software.) = flush quit + } if + systemdict /quit get exec + (WARNING : Printer Reset Failed.) = flush +" +*End + +*% ======================================= +*% For "HP LaserJet 1320 Series" +*% ======================================= diff --git a/configfiles/etc/cups/printers.conf b/configfiles/etc/cups/printers.conf new file mode 100644 index 0000000..a65b3ff --- /dev/null +++ b/configfiles/etc/cups/printers.conf @@ -0,0 +1,160 @@ +# Printer configuration file for CUPS v2.2.3 +# Written by cupsd on 2017-07-05 12:30 +# DO NOT EDIT THIS FILE WHEN CUPSD IS RUNNING + +UUID urn:uuid:de74a517-e986-3a91-5a7d-8c0ccc8e47c5 +Info Salle221 +Location Salle221 +MakeModel HP Color LaserJet Pro M252 Postscript (recommended) +DeviceURI socket://172.16.1.11 +State Idle +StateTime 1370942339 +ConfigTime 1499257069 +Type 8425484 +Accepting Yes +Shared No +JobSheets none none +QuotaPeriod 0 +PageLimit 0 +KLimit 0 +OpPolicy default +ErrorPolicy stop-printer + + +UUID urn:uuid:6553a527-69cc-3480-6f6f-9fc1bec4fa4a +Info Salle222 +Location Salle222 +MakeModel HP Color LaserJet Pro M252 Postscript (recommended) +DeviceURI socket://172.16.1.14 +State Idle +StateTime 1370942554 +ConfigTime 1499257138 +Type 8425484 +Accepting Yes +Shared No +JobSheets none none +QuotaPeriod 0 +PageLimit 0 +KLimit 0 +OpPolicy default +ErrorPolicy stop-printer + + +UUID urn:uuid:e8acef75-970f-31ec-50ce-8884ddd107f1 +Info Salle224 +Location Salle224 +MakeModel HP Color LaserJet Pro M252 Postscript (recommended) +DeviceURI socket://172.16.1.13 +State Idle +StateTime 1370941866 +ConfigTime 1499257494 +Type 8425500 +Accepting Yes +Shared No +JobSheets none none +QuotaPeriod 0 +PageLimit 0 +KLimit 0 +OpPolicy default +ErrorPolicy stop-printer +Attribute marker-colors none +Attribute marker-levels 0 +Attribute marker-names Black Cartridge +Attribute marker-types toner +Attribute marker-change-time 1370941866 + + +UUID urn:uuid:21755468-8306-3c58-5569-12d20e077633 +Info Salle225 +Location Salle225 +MakeModel HP Color LaserJet Pro M252 Postscript (recommended) +DeviceURI socket://172.16.1.15 +State Idle +StateTime 1370943381 +ConfigTime 1499257535 +Type 8425484 +Accepting Yes +Shared No +JobSheets none none +QuotaPeriod 0 +PageLimit 0 +KLimit 0 +OpPolicy default +ErrorPolicy stop-printer + + +UUID urn:uuid:f8fd941d-2825-3314-48ba-00586af49bae +Info Salle229 +Location Salle229 +MakeModel HP Color LaserJet Pro M252 Postscript (recommended) +DeviceURI socket://172.16.1.16 +State Idle +StateTime 1370941983 +ConfigTime 1499257686 +Type 8425484 +Accepting Yes +Shared No +JobSheets none none +QuotaPeriod 0 +PageLimit 0 +KLimit 0 +OpPolicy default +ErrorPolicy stop-printer + + +UUID urn:uuid:4a99ce3f-fcbe-3ca8-7e41-c615bb428274 +Info Salle231 +Location salle231 +MakeModel HP Color LaserJet Pro M252 Postscript (recommended) +DeviceURI socket://172.16.1.17 +State Idle +StateTime 1370942106 +ConfigTime 1499257725 +Type 8425484 +Accepting Yes +Shared No +JobSheets none none +QuotaPeriod 0 +PageLimit 0 +KLimit 0 +OpPolicy default +ErrorPolicy stop-printer + + +UUID urn:uuid:c3bae065-6c80-3a5a-5c8d-f3a2e1873d9f +Info Salle235 +Location Salle235 +MakeModel HP Color LaserJet Pro M252 Postscript (recommended) +DeviceURI socket://172.16.1.19 +State Idle +StateTime 1370943665 +ConfigTime 1499257773 +Type 8425500 +Accepting Yes +Shared No +JobSheets none none +QuotaPeriod 0 +PageLimit 0 +KLimit 0 +OpPolicy default +ErrorPolicy stop-printer + + +UUID urn:uuid:63f532cd-05a9-372d-5228-19c0252c952f +Info Virtual PDF Printer +MakeModel Generic CUPS-PDF Printer +DeviceURI cups-pdf:/ +State Stopped +StateMessage Backend /usr/lib/cups/backend/cups-pdf does not exist! +StateTime 1370942185 +ConfigTime 1499256922 +Type 8450124 +Accepting Yes +Shared No +JobSheets none none +QuotaPeriod 0 +PageLimit 0 +KLimit 0 +OpPolicy default +ErrorPolicy stop-printer + diff --git a/configfiles/etc/cups/printers.conf.O b/configfiles/etc/cups/printers.conf.O new file mode 100644 index 0000000..e6aea7d --- /dev/null +++ b/configfiles/etc/cups/printers.conf.O @@ -0,0 +1,160 @@ +# Printer configuration file for CUPS v2.2.3 +# Written by cupsd on 2017-07-05 12:29 +# DO NOT EDIT THIS FILE WHEN CUPSD IS RUNNING + +UUID urn:uuid:de74a517-e986-3a91-5a7d-8c0ccc8e47c5 +Info Salle221 +Location Salle221 +MakeModel HP Color LaserJet Pro M252 Postscript (recommended) +DeviceURI socket://172.16.1.12 +State Idle +StateTime 1370942339 +ConfigTime 1499257069 +Type 8425484 +Accepting Yes +Shared No +JobSheets none none +QuotaPeriod 0 +PageLimit 0 +KLimit 0 +OpPolicy default +ErrorPolicy stop-printer + + +UUID urn:uuid:6553a527-69cc-3480-6f6f-9fc1bec4fa4a +Info Salle222 +Location Salle222 +MakeModel HP Color LaserJet Pro M252 Postscript (recommended) +DeviceURI socket://172.16.1.12 +State Idle +StateTime 1370942554 +ConfigTime 1499257138 +Type 8425484 +Accepting Yes +Shared No +JobSheets none none +QuotaPeriod 0 +PageLimit 0 +KLimit 0 +OpPolicy default +ErrorPolicy stop-printer + + +UUID urn:uuid:e8acef75-970f-31ec-50ce-8884ddd107f1 +Info Salle224 +Location Salle224 +MakeModel HP Color LaserJet Pro M252 Postscript (recommended) +DeviceURI socket://172.16.1.13 +State Idle +StateTime 1370941866 +ConfigTime 1499257494 +Type 8425500 +Accepting Yes +Shared No +JobSheets none none +QuotaPeriod 0 +PageLimit 0 +KLimit 0 +OpPolicy default +ErrorPolicy stop-printer +Attribute marker-colors none +Attribute marker-levels 0 +Attribute marker-names Black Cartridge +Attribute marker-types toner +Attribute marker-change-time 1370941866 + + +UUID urn:uuid:21755468-8306-3c58-5569-12d20e077633 +Info Salle225 +Location Salle225 +MakeModel HP Color LaserJet Pro M252 Postscript (recommended) +DeviceURI socket://172.16.1.15 +State Idle +StateTime 1370943381 +ConfigTime 1499257535 +Type 8425484 +Accepting Yes +Shared No +JobSheets none none +QuotaPeriod 0 +PageLimit 0 +KLimit 0 +OpPolicy default +ErrorPolicy stop-printer + + +UUID urn:uuid:f8fd941d-2825-3314-48ba-00586af49bae +Info Salle229 +Location Salle229 +MakeModel HP Color LaserJet Pro M252 Postscript (recommended) +DeviceURI socket://172.16.1.16 +State Idle +StateTime 1370941983 +ConfigTime 1499257686 +Type 8425484 +Accepting Yes +Shared No +JobSheets none none +QuotaPeriod 0 +PageLimit 0 +KLimit 0 +OpPolicy default +ErrorPolicy stop-printer + + +UUID urn:uuid:4a99ce3f-fcbe-3ca8-7e41-c615bb428274 +Info Salle231 +Location salle231 +MakeModel HP Color LaserJet Pro M252 Postscript (recommended) +DeviceURI socket://172.16.1.17 +State Idle +StateTime 1370942106 +ConfigTime 1499257725 +Type 8425484 +Accepting Yes +Shared No +JobSheets none none +QuotaPeriod 0 +PageLimit 0 +KLimit 0 +OpPolicy default +ErrorPolicy stop-printer + + +UUID urn:uuid:c3bae065-6c80-3a5a-5c8d-f3a2e1873d9f +Info Salle235 +Location Salle235 +MakeModel HP LaserJet P3010 Series Postscript (recommended) +DeviceURI socket://172.16.1.19 +State Idle +StateTime 1370943665 +ConfigTime 1499256922 +Type 8425684 +Accepting Yes +Shared No +JobSheets none none +QuotaPeriod 0 +PageLimit 0 +KLimit 0 +OpPolicy default +ErrorPolicy stop-printer + + +UUID urn:uuid:63f532cd-05a9-372d-5228-19c0252c952f +Info Virtual PDF Printer +MakeModel Generic CUPS-PDF Printer +DeviceURI cups-pdf:/ +State Stopped +StateMessage Backend /usr/lib/cups/backend/cups-pdf does not exist! +StateTime 1370942185 +ConfigTime 1499256922 +Type 8450124 +Accepting Yes +Shared No +JobSheets none none +QuotaPeriod 0 +PageLimit 0 +KLimit 0 +OpPolicy default +ErrorPolicy stop-printer + diff --git a/configfiles/etc/cups/snmp.conf b/configfiles/etc/cups/snmp.conf new file mode 100644 index 0000000..5539d50 --- /dev/null +++ b/configfiles/etc/cups/snmp.conf @@ -0,0 +1,13 @@ +# +# "$Id: snmp.conf.in 9045 2010-03-24 07:48:42Z mike $" +# +# Sample SNMP configuration file for CUPS. See "man cups-snmp.conf" for a +# complete description of this file. +# + +Address @LOCAL +Community public + +# +# End of "$Id: snmp.conf.in 9045 2010-03-24 07:48:42Z mike $". +# diff --git a/configfiles/etc/cups/snmp.conf.default b/configfiles/etc/cups/snmp.conf.default new file mode 100644 index 0000000..a7d1e3b --- /dev/null +++ b/configfiles/etc/cups/snmp.conf.default @@ -0,0 +1,7 @@ +# +# SNMP configuration file for CUPS. See "man cups-snmp.conf" for a complete +# description of this file. +# + +Address @LOCAL +Community public diff --git a/configfiles/etc/cups/subscriptions.conf b/configfiles/etc/cups/subscriptions.conf new file mode 100644 index 0000000..e69de29 diff --git a/configfiles/etc/krb5.conf b/configfiles/etc/krb5.conf new file mode 100644 index 0000000..da08706 --- /dev/null +++ b/configfiles/etc/krb5.conf @@ -0,0 +1,21 @@ +[libdefaults] + default_realm = ARDA.LAN + dns_lookup_realm = true + dns_lookup_kdc = true + default_ccache_name = /run/user/%{uid}/krb5cc + +[realms] + ARDA.LAN = { + default_domain = ARDA.LAN + } + +[domain_realm] + .arda.lan = ARDA.LAN + +[appdefaults] + pam = { + ticket_lifetime = 1d + renew_lifetime = 1d + forwardable = true + proxiable = false + } diff --git a/configfiles/etc/lightdm/Xsession b/configfiles/etc/lightdm/Xsession new file mode 100644 index 0000000..4a2a25e --- /dev/null +++ b/configfiles/etc/lightdm/Xsession @@ -0,0 +1,64 @@ +#!/bin/sh +# +# LightDM wrapper to run around X sessions. + +echo "Running X session wrapper" + +# Load profile +for file in "/etc/profile" "$HOME/.profile" "/etc/xprofile" "$HOME/.xprofile"; do + if [ -f "$file" ]; then + echo "Loading profile from $file"; + . "$file" + fi +done + +# Load resources +for file in "/etc/X11/Xresources" "$HOME/.Xresources"; do + if [ -f "$file" ]; then + echo "Loading resource: $file" + xrdb -merge "$file" + fi +done + +# Load keymaps +for file in "/etc/X11/Xkbmap" "$HOME/.Xkbmap"; do + if [ -f "$file" ]; then + echo "Loading keymap: $file" + setxkbmap `cat "$file"` + XKB_IN_USE=yes + fi +done + +# Load xmodmap if not using XKB +if [ -z "$XKB_IN_USE" ]; then + for file in "/etc/X11/Xmodmap" "$HOME/.Xmodmap"; do + if [ -f "$file" ]; then + echo "Loading modmap: $file" + xmodmap "$file" + fi + done +fi + +unset XKB_IN_USE + +# Run all system xinitrc shell scripts +xinitdir="/etc/X11/xinit/xinitrc.d" +if [ -d "$xinitdir" ]; then + for script in $xinitdir/*; do + echo "Loading xinit script $script" + if [ -x "$script" -a ! -d "$script" ]; then + . "$script" + fi + done +fi + +# Run user xsession shell script +script="$HOME/.xsession" +if [ -x "$script" -a ! -d "$script" ]; then + echo "Loading xsession script $script" + . "$script" +fi + +echo "X session wrapper complete, running session $@" + +exec $@ diff --git a/configfiles/etc/lightdm/keys.conf b/configfiles/etc/lightdm/keys.conf new file mode 100644 index 0000000..d7fb9c2 --- /dev/null +++ b/configfiles/etc/lightdm/keys.conf @@ -0,0 +1,3 @@ +[keyring] +#a=0x0123456789ABCD +#b=secret diff --git a/configfiles/etc/lightdm/lightdm-gtk-greeter.conf b/configfiles/etc/lightdm/lightdm-gtk-greeter.conf new file mode 100644 index 0000000..f7a4cc4 --- /dev/null +++ b/configfiles/etc/lightdm/lightdm-gtk-greeter.conf @@ -0,0 +1,8 @@ +[greeter] +allow-debugging = true +theme-name = Adwaita-dark +background = /usr/share/pixmaps/iut.png +user-background = false +hide-user-image = true +indicators = ~clock;~spacer;~host;~spacer;~language;~a11y;~power + diff --git a/configfiles/etc/lightdm/lightdm-gtk-greeter.conf.default b/configfiles/etc/lightdm/lightdm-gtk-greeter.conf.default new file mode 100644 index 0000000..a661c28 --- /dev/null +++ b/configfiles/etc/lightdm/lightdm-gtk-greeter.conf.default @@ -0,0 +1,65 @@ +# LightDM GTK+ Configuration +# Available configuration options listed below. +# +# Appearance: +# theme-name = GTK+ theme to use +# icon-theme-name = Icon theme to use +# cursor-theme-name = Cursor theme to use +# cursor-theme-size = Cursor size to use +# background = Background file to use, either an image path or a color (e.g. #772953) +# user-background = false|true ("true" by default) Display user background (if available) +# transition-duration = Length of time (in milliseconds) to transition between background images ("500" by default) +# transition-type = ease-in-out|linear|none ("ease-in-out" by default) +# +# Fonts: +# font-name = Font to use +# xft-antialias = false|true Whether to antialias Xft fonts +# xft-dpi = Resolution for Xft in dots per inch (e.g. 96) +# xft-hintstyle = none|slight|medium|hintfull What degree of hinting to use +# xft-rgba = none|rgb|bgr|vrgb|vbgr Type of subpixel antialiasing +# +# Login window: +# active-monitor = Monitor to display greeter window (name or number). Use #cursor value to display greeter at monitor with cursor. Can be a semicolon separated list +# position = x y ("50% 50%" by default) Login window position +# default-user-image = Image used as default user icon, path or #icon-name +# hide-user-image = false|true ("false" by default) +# +# Panel: +# panel-position = top|bottom ("top" by default) +# clock-format = strftime-format string, e.g. %H:%M +# indicators = semi-colon ";" separated list of allowed indicator modules. Built-in indicators include "~a11y", "~language", "~session", "~power", "~clock", "~host", "~spacer". Unity indicators can be represented by short name (e.g. "sound", "power"), service file name, or absolute path +# +# Accessibility: +# a11y-states = states of accessibility features: "name" - save state on exit, "-name" - disabled at start (default value for unlisted), "+name" - enabled at start. Allowed names: contrast, font, keyboard, reader. +# keyboard = command to launch on-screen keyboard (e.g. "onboard") +# keyboard-position = x y[;width height] ("50%,center -0;50% 25%" by default) Works only for "onboard" +# reader = command to launch screen reader (e.g. "orca") +# at-spi-enabled = false|true ("true" by default) Enables accessibility at-spi-command if the greeter is built with it enabled +# +# Security: +# allow-debugging = false|true ("false" by default) +# screensaver-timeout = Timeout (in seconds) until the screen blanks when the greeter is called as lockscreen +# +# Template for per-monitor configuration: +# [monitor: name] +# background = overrides default value +# user-background = overrides default value +# laptop = false|true ("false" by default) Marks monitor as laptop display +# transition-duration = overrides default value +# +[greeter] +#background= +#user-background= +#theme-name= +#icon-theme-name= +#font-name= +#xft-antialias= +#xft-dpi= +#xft-hintstyle= +#xft-rgba= +#indicators= +#clock-format= +#keyboard= +#reader= +#position= +#screensaver-timeout= diff --git a/configfiles/etc/lightdm/lightdm.conf b/configfiles/etc/lightdm/lightdm.conf new file mode 100644 index 0000000..343f655 --- /dev/null +++ b/configfiles/etc/lightdm/lightdm.conf @@ -0,0 +1,163 @@ +# +# General configuration +# +# start-default-seat = True to always start one seat if none are defined in the configuration +# greeter-user = User to run greeter as +# minimum-display-number = Minimum display number to use for X servers +# minimum-vt = First VT to run displays on +# lock-memory = True to prevent memory from being paged to disk +# user-authority-in-system-dir = True if session authority should be in the system location +# guest-account-script = Script to be run to setup guest account +# logind-check-graphical = True to on start seats that are marked as graphical by logind +# log-directory = Directory to log information to +# run-directory = Directory to put running state in +# cache-directory = Directory to cache to +# sessions-directory = Directory to find sessions +# remote-sessions-directory = Directory to find remote sessions +# greeters-directory = Directory to find greeters +# backup-logs = True to move add a .old suffix to old log files when opening new ones +# dbus-service = True if LightDM provides a D-Bus service to control it +# +[LightDM] +#start-default-seat=true +#greeter-user=lightdm +#minimum-display-number=0 +#minimum-vt=7 # Setting this to a value < 7 implies security issues, see FS#46799 +#lock-memory=true +#user-authority-in-system-dir=false +#guest-account-script=guest-account +#logind-check-graphical=false +#log-directory=/var/log/lightdm +run-directory=/run/lightdm +#cache-directory=/var/cache/lightdm +#sessions-directory=/usr/share/lightdm/sessions:/usr/share/xsessions:/usr/share/wayland-sessions +#remote-sessions-directory=/usr/share/lightdm/remote-sessions +#greeters-directory=$XDG_DATA_DIRS/lightdm/greeters:$XDG_DATA_DIRS/xgreeters +#backup-logs=true +#dbus-service=true + +# +# Seat configuration +# +# Seat configuration is matched against the seat name glob in the section, for example: +# [Seat:*] matches all seats and is applied first. +# [Seat:seat0] matches the seat named "seat0". +# [Seat:seat-thin-client*] matches all seats that have names that start with "seat-thin-client". +# +# type = Seat type (local, xremote) +# pam-service = PAM service to use for login +# pam-autologin-service = PAM service to use for autologin +# pam-greeter-service = PAM service to use for greeters +# xserver-command = X server command to run (can also contain arguments e.g. X -special-option) +# xmir-command = Xmir server command to run (can also contain arguments e.g. Xmir -special-option) +# xserver-config = Config file to pass to X server +# xserver-layout = Layout to pass to X server +# xserver-allow-tcp = True if TCP/IP connections are allowed to this X server +# xserver-share = True if the X server is shared for both greeter and session +# xserver-hostname = Hostname of X server (only for type=xremote) +# xserver-display-number = Display number of X server (only for type=xremote) +# xdmcp-manager = XDMCP manager to connect to (implies xserver-allow-tcp=true) +# xdmcp-port = XDMCP UDP/IP port to communicate on +# xdmcp-key = Authentication key to use for XDM-AUTHENTICATION-1 (stored in keys.conf) +# greeter-session = Session to load for greeter +# greeter-hide-users = True to hide the user list +# greeter-allow-guest = True if the greeter should show a guest login option +# greeter-show-manual-login = True if the greeter should offer a manual login option +# greeter-show-remote-login = True if the greeter should offer a remote login option +# user-session = Session to load for users +# allow-user-switching = True if allowed to switch users +# allow-guest = True if guest login is allowed +# guest-session = Session to load for guests (overrides user-session) +# session-wrapper = Wrapper script to run session with +# greeter-wrapper = Wrapper script to run greeter with +# guest-wrapper = Wrapper script to run guest sessions with +# display-setup-script = Script to run when starting a greeter session (runs as root) +# display-stopped-script = Script to run after stopping the display server (runs as root) +# greeter-setup-script = Script to run when starting a greeter (runs as root) +# session-setup-script = Script to run when starting a user session (runs as root) +# session-cleanup-script = Script to run when quitting a user session (runs as root) +# autologin-guest = True to log in as guest by default +# autologin-user = User to log in with by default (overrides autologin-guest) +# autologin-user-timeout = Number of seconds to wait before loading default user +# autologin-session = Session to load for automatic login (overrides user-session) +# autologin-in-background = True if autologin session should not be immediately activated +# exit-on-failure = True if the daemon should exit if this seat fails +# +[Seat:*] +#type=local +#pam-service=lightdm +#pam-autologin-service=lightdm-autologin +#pam-greeter-service=lightdm-greeter +#xserver-command=X +#xmir-command=Xmir +#xserver-config= +#xserver-layout= +#xserver-allow-tcp=false +#xserver-share=true +#xserver-hostname= +#xserver-display-number= +#xdmcp-manager= +#xdmcp-port=177 +#xdmcp-key= +greeter-session=lightdm-gtk-greeter +greeter-hide-users=true +#greeter-allow-guest=true +#greeter-show-manual-login=false +#greeter-show-remote-login=true +#user-session=default +#allow-user-switching=true +#allow-guest=true +#guest-session= +session-wrapper=/etc/lightdm/Xsession +#greeter-wrapper= +#guest-wrapper= +#display-setup-script= +#display-stopped-script= +#greeter-setup-script=/usr/bin/numlockx on +#session-setup-script= +#session-cleanup-script= +#autologin-guest=false +#autologin-user= +#autologin-user-timeout=0 +#autologin-in-background=false +#autologin-session= +#exit-on-failure=false + +# +# XDMCP Server configuration +# +# enabled = True if XDMCP connections should be allowed +# port = UDP/IP port to listen for connections on +# listen-address = Host/address to listen for XDMCP connections (use all addresses if not present) +# key = Authentication key to use for XDM-AUTHENTICATION-1 or blank to not use authentication (stored in keys.conf) +# hostname = Hostname to report to XDMCP clients (defaults to system hostname if unset) +# +# The authentication key is a 56 bit DES key specified in hex as 0xnnnnnnnnnnnnnn. Alternatively +# it can be a word and the first 7 characters are used as the key. +# +[XDMCPServer] +#enabled=false +#port=177 +#listen-address= +#key= +#hostname= + +# +# VNC Server configuration +# +# enabled = True if VNC connections should be allowed +# command = Command to run Xvnc server with +# port = TCP/IP port to listen for connections on +# listen-address = Host/address to listen for VNC connections (use all addresses if not present) +# width = Width of display to use +# height = Height of display to use +# depth = Color depth of display to use +# +[VNCServer] +#enabled=false +#command=Xvnc +#port=5900 +#listen-address= +#width=1024 +#height=768 +#depth=8 diff --git a/configfiles/etc/lightdm/lightdm.conf.default b/configfiles/etc/lightdm/lightdm.conf.default new file mode 100644 index 0000000..9c820eb --- /dev/null +++ b/configfiles/etc/lightdm/lightdm.conf.default @@ -0,0 +1,163 @@ +# +# General configuration +# +# start-default-seat = True to always start one seat if none are defined in the configuration +# greeter-user = User to run greeter as +# minimum-display-number = Minimum display number to use for X servers +# minimum-vt = First VT to run displays on +# lock-memory = True to prevent memory from being paged to disk +# user-authority-in-system-dir = True if session authority should be in the system location +# guest-account-script = Script to be run to setup guest account +# logind-check-graphical = True to on start seats that are marked as graphical by logind +# log-directory = Directory to log information to +# run-directory = Directory to put running state in +# cache-directory = Directory to cache to +# sessions-directory = Directory to find sessions +# remote-sessions-directory = Directory to find remote sessions +# greeters-directory = Directory to find greeters +# backup-logs = True to move add a .old suffix to old log files when opening new ones +# dbus-service = True if LightDM provides a D-Bus service to control it +# +[LightDM] +#start-default-seat=true +#greeter-user=lightdm +#minimum-display-number=0 +#minimum-vt=7 # Setting this to a value < 7 implies security issues, see FS#46799 +#lock-memory=true +#user-authority-in-system-dir=false +#guest-account-script=guest-account +#logind-check-graphical=false +#log-directory=/var/log/lightdm +run-directory=/run/lightdm +#cache-directory=/var/cache/lightdm +#sessions-directory=/usr/share/lightdm/sessions:/usr/share/xsessions:/usr/share/wayland-sessions +#remote-sessions-directory=/usr/share/lightdm/remote-sessions +#greeters-directory=$XDG_DATA_DIRS/lightdm/greeters:$XDG_DATA_DIRS/xgreeters +#backup-logs=true +#dbus-service=true + +# +# Seat configuration +# +# Seat configuration is matched against the seat name glob in the section, for example: +# [Seat:*] matches all seats and is applied first. +# [Seat:seat0] matches the seat named "seat0". +# [Seat:seat-thin-client*] matches all seats that have names that start with "seat-thin-client". +# +# type = Seat type (local, xremote) +# pam-service = PAM service to use for login +# pam-autologin-service = PAM service to use for autologin +# pam-greeter-service = PAM service to use for greeters +# xserver-command = X server command to run (can also contain arguments e.g. X -special-option) +# xmir-command = Xmir server command to run (can also contain arguments e.g. Xmir -special-option) +# xserver-config = Config file to pass to X server +# xserver-layout = Layout to pass to X server +# xserver-allow-tcp = True if TCP/IP connections are allowed to this X server +# xserver-share = True if the X server is shared for both greeter and session +# xserver-hostname = Hostname of X server (only for type=xremote) +# xserver-display-number = Display number of X server (only for type=xremote) +# xdmcp-manager = XDMCP manager to connect to (implies xserver-allow-tcp=true) +# xdmcp-port = XDMCP UDP/IP port to communicate on +# xdmcp-key = Authentication key to use for XDM-AUTHENTICATION-1 (stored in keys.conf) +# greeter-session = Session to load for greeter +# greeter-hide-users = True to hide the user list +# greeter-allow-guest = True if the greeter should show a guest login option +# greeter-show-manual-login = True if the greeter should offer a manual login option +# greeter-show-remote-login = True if the greeter should offer a remote login option +# user-session = Session to load for users +# allow-user-switching = True if allowed to switch users +# allow-guest = True if guest login is allowed +# guest-session = Session to load for guests (overrides user-session) +# session-wrapper = Wrapper script to run session with +# greeter-wrapper = Wrapper script to run greeter with +# guest-wrapper = Wrapper script to run guest sessions with +# display-setup-script = Script to run when starting a greeter session (runs as root) +# display-stopped-script = Script to run after stopping the display server (runs as root) +# greeter-setup-script = Script to run when starting a greeter (runs as root) +# session-setup-script = Script to run when starting a user session (runs as root) +# session-cleanup-script = Script to run when quitting a user session (runs as root) +# autologin-guest = True to log in as guest by default +# autologin-user = User to log in with by default (overrides autologin-guest) +# autologin-user-timeout = Number of seconds to wait before loading default user +# autologin-session = Session to load for automatic login (overrides user-session) +# autologin-in-background = True if autologin session should not be immediately activated +# exit-on-failure = True if the daemon should exit if this seat fails +# +[Seat:*] +#type=local +#pam-service=lightdm +#pam-autologin-service=lightdm-autologin +#pam-greeter-service=lightdm-greeter +#xserver-command=X +#xmir-command=Xmir +#xserver-config= +#xserver-layout= +#xserver-allow-tcp=false +#xserver-share=true +#xserver-hostname= +#xserver-display-number= +#xdmcp-manager= +#xdmcp-port=177 +#xdmcp-key= +#greeter-session=example-gtk-gnome +#greeter-hide-users=false +#greeter-allow-guest=true +#greeter-show-manual-login=false +#greeter-show-remote-login=true +#user-session=default +#allow-user-switching=true +#allow-guest=true +#guest-session= +session-wrapper=/etc/lightdm/Xsession +#greeter-wrapper= +#guest-wrapper= +#display-setup-script= +#display-stopped-script= +#greeter-setup-script= +#session-setup-script= +#session-cleanup-script= +#autologin-guest=false +#autologin-user= +#autologin-user-timeout=0 +#autologin-in-background=false +#autologin-session= +#exit-on-failure=false + +# +# XDMCP Server configuration +# +# enabled = True if XDMCP connections should be allowed +# port = UDP/IP port to listen for connections on +# listen-address = Host/address to listen for XDMCP connections (use all addresses if not present) +# key = Authentication key to use for XDM-AUTHENTICATION-1 or blank to not use authentication (stored in keys.conf) +# hostname = Hostname to report to XDMCP clients (defaults to system hostname if unset) +# +# The authentication key is a 56 bit DES key specified in hex as 0xnnnnnnnnnnnnnn. Alternatively +# it can be a word and the first 7 characters are used as the key. +# +[XDMCPServer] +#enabled=false +#port=177 +#listen-address= +#key= +#hostname= + +# +# VNC Server configuration +# +# enabled = True if VNC connections should be allowed +# command = Command to run Xvnc server with +# port = TCP/IP port to listen for connections on +# listen-address = Host/address to listen for VNC connections (use all addresses if not present) +# width = Width of display to use +# height = Height of display to use +# depth = Color depth of display to use +# +[VNCServer] +#enabled=false +#command=Xvnc +#port=5900 +#listen-address= +#width=1024 +#height=768 +#depth=8 diff --git a/configfiles/etc/lightdm/users.conf b/configfiles/etc/lightdm/users.conf new file mode 100644 index 0000000..5257f87 --- /dev/null +++ b/configfiles/etc/lightdm/users.conf @@ -0,0 +1,14 @@ +# +# User accounts configuration +# +# NOTE: If you have AccountsService installed on your system, then LightDM will +# use this instead and these settings will be ignored +# +# minimum-uid = Minimum UID required to be shown in greeter +# hidden-users = Users that are not shown to the user +# hidden-shells = Shells that indicate a user cannot login +# +[UserList] +minimum-uid=1000 +hidden-users=nobody nobody4 noaccess +hidden-shells=/bin/false /usr/bin/nologin /bin/nologin diff --git a/configfiles/etc/modprobe.d/snd-blacklist.conf b/configfiles/etc/modprobe.d/snd-blacklist.conf new file mode 100644 index 0000000..fc6899d --- /dev/null +++ b/configfiles/etc/modprobe.d/snd-blacklist.conf @@ -0,0 +1,2 @@ +blacklist pcspkr +blacklist snd diff --git a/configfiles/etc/nsswitch.conf b/configfiles/etc/nsswitch.conf new file mode 100644 index 0000000..2c5b2bc --- /dev/null +++ b/configfiles/etc/nsswitch.conf @@ -0,0 +1,18 @@ +# Name Service Switch configuration file. +# See nsswitch.conf(5) for details. + +passwd: files winbind systemd +group: files [SUCCESS=merge] winbind systemd +shadow: files systemd + +publickey: files + +hosts: mymachines resolve [!UNAVAIL=return] files myhostname dns +networks: files + +protocols: files +services: files +ethers: files +rpc: files + +netgroup: files diff --git a/configfiles/etc/pam.d/chfn b/configfiles/etc/pam.d/chfn new file mode 100644 index 0000000..066186e --- /dev/null +++ b/configfiles/etc/pam.d/chfn @@ -0,0 +1,6 @@ +#%PAM-1.0 +auth sufficient pam_rootok.so +auth required pam_unix.so +account required pam_unix.so +session required pam_unix.so +password required pam_permit.so diff --git a/configfiles/etc/pam.d/chpasswd b/configfiles/etc/pam.d/chpasswd new file mode 100644 index 0000000..8f49f5c --- /dev/null +++ b/configfiles/etc/pam.d/chpasswd @@ -0,0 +1,4 @@ +#%PAM-1.0 +auth sufficient pam_rootok.so +account required pam_permit.so +password include system-auth diff --git a/configfiles/etc/pam.d/chsh b/configfiles/etc/pam.d/chsh new file mode 100644 index 0000000..066186e --- /dev/null +++ b/configfiles/etc/pam.d/chsh @@ -0,0 +1,6 @@ +#%PAM-1.0 +auth sufficient pam_rootok.so +auth required pam_unix.so +account required pam_unix.so +session required pam_unix.so +password required pam_permit.so diff --git a/configfiles/etc/pam.d/groupmems b/configfiles/etc/pam.d/groupmems new file mode 100644 index 0000000..8f49f5c --- /dev/null +++ b/configfiles/etc/pam.d/groupmems @@ -0,0 +1,4 @@ +#%PAM-1.0 +auth sufficient pam_rootok.so +account required pam_permit.so +password include system-auth diff --git a/configfiles/etc/pam.d/login b/configfiles/etc/pam.d/login new file mode 100644 index 0000000..28f6fc5 --- /dev/null +++ b/configfiles/etc/pam.d/login @@ -0,0 +1,7 @@ +#%PAM-1.0 + +auth requisite pam_nologin.so +auth include system-local-login +account include system-local-login +session include system-local-login +password include system-local-login diff --git a/configfiles/etc/pam.d/newusers b/configfiles/etc/pam.d/newusers new file mode 100644 index 0000000..8f49f5c --- /dev/null +++ b/configfiles/etc/pam.d/newusers @@ -0,0 +1,4 @@ +#%PAM-1.0 +auth sufficient pam_rootok.so +account required pam_permit.so +password include system-auth diff --git a/configfiles/etc/pam.d/other b/configfiles/etc/pam.d/other new file mode 100644 index 0000000..3f50bd1 --- /dev/null +++ b/configfiles/etc/pam.d/other @@ -0,0 +1,9 @@ +#%PAM-1.0 +auth required pam_deny.so +auth required pam_warn.so +account required pam_deny.so +account required pam_warn.so +password required pam_deny.so +password required pam_warn.so +session required pam_deny.so +session required pam_warn.so diff --git a/configfiles/etc/pam.d/passwd b/configfiles/etc/pam.d/passwd new file mode 100644 index 0000000..731c0d3 --- /dev/null +++ b/configfiles/etc/pam.d/passwd @@ -0,0 +1,4 @@ +#%PAM-1.0 +auth include system-auth +account include system-auth +password include system-auth diff --git a/configfiles/etc/pam.d/remote b/configfiles/etc/pam.d/remote new file mode 100644 index 0000000..7fce079 --- /dev/null +++ b/configfiles/etc/pam.d/remote @@ -0,0 +1,8 @@ +#%PAM-1.0 + +auth required pam_securetty.so +auth requisite pam_nologin.so +auth include system-remote-login +account include system-remote-login +session include system-remote-login +password include system-remote-login diff --git a/configfiles/etc/pam.d/rlogin b/configfiles/etc/pam.d/rlogin new file mode 100644 index 0000000..d92a5da --- /dev/null +++ b/configfiles/etc/pam.d/rlogin @@ -0,0 +1,13 @@ +#%PAM-1.0 +# For root login to succeed here with pam_securetty, "rlogin" must be +# listed in /etc/securetty. +auth required pam_nologin.so +auth required pam_securetty.so +auth required pam_env.so +auth sufficient pam_rhosts.so +auth include system-auth +account include system-auth +password include system-auth +session optional pam_keyinit.so force revoke +session required pam_loginuid.so +session include system-auth diff --git a/configfiles/etc/pam.d/rsh b/configfiles/etc/pam.d/rsh new file mode 100644 index 0000000..3c04bc7 --- /dev/null +++ b/configfiles/etc/pam.d/rsh @@ -0,0 +1,11 @@ +#%PAM-1.0 +# For root login to succeed here with pam_securetty, "rsh" must be +# listed in /etc/securetty. +auth required pam_nologin.so +auth required pam_securetty.so +auth required pam_env.so +auth required pam_rhosts.so +account include system-auth +session optional pam_keyinit.so force revoke +session required pam_loginuid.so +session include system-auth diff --git a/configfiles/etc/pam.d/runuser b/configfiles/etc/pam.d/runuser new file mode 100644 index 0000000..26b59d5 --- /dev/null +++ b/configfiles/etc/pam.d/runuser @@ -0,0 +1,4 @@ +#%PAM-1.0 + +auth sufficient pam_rootok.so +session include system-login diff --git a/configfiles/etc/pam.d/runuser-l b/configfiles/etc/pam.d/runuser-l new file mode 100644 index 0000000..26b59d5 --- /dev/null +++ b/configfiles/etc/pam.d/runuser-l @@ -0,0 +1,4 @@ +#%PAM-1.0 + +auth sufficient pam_rootok.so +session include system-login diff --git a/configfiles/etc/pam.d/samba b/configfiles/etc/pam.d/samba new file mode 100644 index 0000000..53724d1 --- /dev/null +++ b/configfiles/etc/pam.d/samba @@ -0,0 +1,3 @@ +auth required pam_unix.so +account required pam_unix.so +session required pam_unix.so diff --git a/configfiles/etc/pam.d/sshd b/configfiles/etc/pam.d/sshd new file mode 100644 index 0000000..4efc1ee --- /dev/null +++ b/configfiles/etc/pam.d/sshd @@ -0,0 +1,6 @@ +#%PAM-1.0 + +auth include system-remote-login +account include system-remote-login +password include system-remote-login +session include system-remote-login diff --git a/configfiles/etc/pam.d/su b/configfiles/etc/pam.d/su new file mode 100644 index 0000000..0e10e87 --- /dev/null +++ b/configfiles/etc/pam.d/su @@ -0,0 +1,13 @@ +#%PAM-1.0 +auth sufficient pam_rootok.so +# Uncomment the following line to implicitly trust users in the "wheel" group. +#auth sufficient pam_wheel.so trust use_uid +# Uncomment the following line to require a user to be in the "wheel" group. +#auth required pam_wheel.so use_uid +auth sufficient pam_winbind.so +auth required pam_unix.so +account sufficient pam_winbind.so +account required pam_unix.so +session sufficient pam_winbind.so +session required pam_unix.so +password include system-auth diff --git a/configfiles/etc/pam.d/su-l b/configfiles/etc/pam.d/su-l new file mode 100644 index 0000000..cb5aa84 --- /dev/null +++ b/configfiles/etc/pam.d/su-l @@ -0,0 +1,10 @@ +#%PAM-1.0 +auth sufficient pam_rootok.so +# Uncomment the following line to implicitly trust users in the "wheel" group. +#auth sufficient pam_wheel.so trust use_uid +# Uncomment the following line to require a user to be in the "wheel" group. +#auth required pam_wheel.so use_uid +auth required pam_unix.so +account required pam_unix.so +session required pam_unix.so +password include system-auth diff --git a/configfiles/etc/pam.d/sudo b/configfiles/etc/pam.d/sudo new file mode 100644 index 0000000..ab053c5 --- /dev/null +++ b/configfiles/etc/pam.d/sudo @@ -0,0 +1,4 @@ +#%PAM-1.0 +auth include system-auth +account include system-auth +session include system-auth diff --git a/configfiles/etc/pam.d/system-auth b/configfiles/etc/pam.d/system-auth new file mode 100644 index 0000000..80640f1 --- /dev/null +++ b/configfiles/etc/pam.d/system-auth @@ -0,0 +1,32 @@ +#%PAM-1.0 + +auth required pam_faillock.so preauth +# Optionally use requisite above if you do not want to prompt for the password +# on locked accounts. +-auth [success=3 default=ignore] pam_systemd_home.so +auth [success=2 default=ignore] pam_winbind.so +auth [success=1 default=bad] pam_unix.so try_first_pass nullok +auth [default=die] pam_faillock.so authfail +auth optional pam_permit.so +auth required pam_env.so +auth required pam_faillock.so authsucc +# If you drop the above call to pam_faillock.so the lock will be done also +# on non-consecutive authentication failures. + +-account [success=2 default=ignore] pam_systemd_home.so +account [success=1 default=ignore] pam_winbind.so +account required pam_unix.so +account optional pam_permit.so +account required pam_time.so + +-password [success=2 default=ignore] pam_systemd_home.so +password [success=1 default=ignore] pam_winbind.so +password required pam_unix.so try_first_pass nullok shadow +password optional pam_permit.so + +-session optional pam_systemd_home.so +session required pam_limits.so +session required pam_winbind.so +session required pam_unix.so +session optional pam_permit.so + diff --git a/configfiles/etc/pam.d/system-local-login b/configfiles/etc/pam.d/system-local-login new file mode 100644 index 0000000..347b815 --- /dev/null +++ b/configfiles/etc/pam.d/system-local-login @@ -0,0 +1,6 @@ +#%PAM-1.0 + +auth include system-login +account include system-login +password include system-login +session include system-login diff --git a/configfiles/etc/pam.d/system-login b/configfiles/etc/pam.d/system-login new file mode 100644 index 0000000..e48136d --- /dev/null +++ b/configfiles/etc/pam.d/system-login @@ -0,0 +1,20 @@ +#%PAM-1.0 + +auth required pam_shells.so +auth requisite pam_nologin.so +auth include system-auth + +account required pam_access.so +account required pam_nologin.so +account include system-auth + +password include system-auth + +session optional pam_loginuid.so +session optional pam_keyinit.so force revoke +session include system-auth +session optional pam_motd.so +session optional pam_mail.so dir=/var/spool/mail standard quiet +session optional pam_umask.so +-session optional pam_systemd.so +session required pam_env.so diff --git a/configfiles/etc/pam.d/system-remote-login b/configfiles/etc/pam.d/system-remote-login new file mode 100644 index 0000000..347b815 --- /dev/null +++ b/configfiles/etc/pam.d/system-remote-login @@ -0,0 +1,6 @@ +#%PAM-1.0 + +auth include system-login +account include system-login +password include system-login +session include system-login diff --git a/configfiles/etc/pam.d/system-services b/configfiles/etc/pam.d/system-services new file mode 100644 index 0000000..6ed9bdc --- /dev/null +++ b/configfiles/etc/pam.d/system-services @@ -0,0 +1,11 @@ +#%PAM-1.0 + +auth sufficient pam_permit.so + +account include system-auth + +session optional pam_loginuid.so +session required pam_limits.so +session required pam_unix.so +session optional pam_permit.so +session required pam_env.so diff --git a/configfiles/etc/pam.d/systemd-user b/configfiles/etc/pam.d/systemd-user new file mode 100644 index 0000000..83f7626 --- /dev/null +++ b/configfiles/etc/pam.d/systemd-user @@ -0,0 +1,5 @@ +# Used by systemd --user instances. + +account include system-login +session required pam_loginuid.so +session include system-login diff --git a/configfiles/etc/pam.d/vlock b/configfiles/etc/pam.d/vlock new file mode 100644 index 0000000..dbda833 --- /dev/null +++ b/configfiles/etc/pam.d/vlock @@ -0,0 +1,5 @@ +#%PAM-1.0 +auth required pam_unix.so +account required pam_unix.so +password required pam_unix.so +session required pam_unix.so diff --git a/configfiles/etc/samba/smb.conf b/configfiles/etc/samba/smb.conf new file mode 100644 index 0000000..7703af2 --- /dev/null +++ b/configfiles/etc/samba/smb.conf @@ -0,0 +1,21 @@ +[global] + workgroup = ARDA + security = ADS + realm = ARDA.LAN + winbind refresh tickets = Yes + vfs objects = acl_xattr + map acl inherit = Yes + store dos attributes = Yes + dedicated keytab file = /etc/krb5.keytab + kerberos method = secrets and keytab + winbind use default domain = Yes + idmap config * : backend = tdb + idmap config * : range = 100000-110000 + idmap config ARDA : backend = ad + idmap config ARDA : schema_mode = rfc2307 + idmap config ARDA : range = 10000-99999 + idmap config ARDA : unix_nss_info = yes + idmap config ARDA : unix_primary_group = yes + + template shell = /bin/bash + template homedir = /home/%U diff --git a/configfiles/etc/security/pam_winbind.conf b/configfiles/etc/security/pam_winbind.conf new file mode 100644 index 0000000..ded5fe4 --- /dev/null +++ b/configfiles/etc/security/pam_winbind.conf @@ -0,0 +1,9 @@ +[Global] + debug = no + debug_state = no + try_first_pass = yes + krb5_auth = yes + krb5_ccache_type = FILE:/run/user/%u/krb5cc + cached_login = yes + silent = no + mkhomedir = no diff --git a/configfiles/etc/sudoers.d/imunes b/configfiles/etc/sudoers.d/imunes new file mode 100644 index 0000000..03b46a6 --- /dev/null +++ b/configfiles/etc/sudoers.d/imunes @@ -0,0 +1,2 @@ +Cmnd_Alias IMUNES = /usr/bin/imunes, /usr/bin/cleanupAll, /usr/bin/himage +ALL ALL = (root) NOPASSWD: IMUNES diff --git a/configfiles/etc/sudoers.d/shutdown b/configfiles/etc/sudoers.d/shutdown new file mode 100644 index 0000000..f77b460 --- /dev/null +++ b/configfiles/etc/sudoers.d/shutdown @@ -0,0 +1,3 @@ +User_Alias XFCE_SHUTDOWN_USERS = ALL +Cmnd_Alias XFCE_SHUTDOWN_COMMAND = /usr/lib/xfce4/session/xfsm-shutdown-helper +XFCE_SHUTDOWN_USERS ALL = NOPASSWD: XFCE_SHUTDOWN_COMMAND diff --git a/configfiles/etc/sudoers.d/util b/configfiles/etc/sudoers.d/util new file mode 100644 index 0000000..729d60b --- /dev/null +++ b/configfiles/etc/sudoers.d/util @@ -0,0 +1,2 @@ +util ALL=(ALL) ALL +user1 ALL = (root) NOPASSWD: IMUNES diff --git a/configfiles/etc/udev/rules.d/51-android.rules b/configfiles/etc/udev/rules.d/51-android.rules new file mode 100644 index 0000000..f0da61a --- /dev/null +++ b/configfiles/etc/udev/rules.d/51-android.rules @@ -0,0 +1,460 @@ +# These rules refer: http://developer.android.com/guide/developing/device.html +# and include many suggestions from Archlinux, Github and other Communities. +# Latest version can be found at: https://github.com/M0Rf30/android-udev-rules + +# Skip this section below if this device is not connected by USB +SUBSYSTEM!="usb", GOTO="android_usb_rules_end" + +LABEL="android_usb_rules_begin" +# Devices listed here in android_usb_rules_{begin...end} are connected by USB + +# Ajout perso +ATTR{idVendor}="2a70", ATTR{idProduct}=="9011",ENV{adb_user}="yes" + +# Acer +ATTR{idVendor}!="0502", GOTO="not_Acer" +ENV{adb_user}="yes" +# Iconia Tab A1-830 +ATTR{idProduct}=="3604", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Iconia Tab A500 +ATTR{idProduct}=="3325", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Liquid +ATTR{idProduct}=="3202" +ATTR{idProduct}=="3203", SYMLINK+="android_adb" +GOTO="android_usb_rule_match" +LABEL="not_Acer" + +# ADVANCE +ATTR{idVendor}=="0a5c", ENV{adb_user}="yes" +# S5 +ATTR{idProduct}=="e681", SYMLINK+="android_adb" + +# Archos +ATTR{idVendor}!="0e79", GOTO="not_Archos" +ENV{adb_user}="yes" +# 43 +ATTR{idProduct}=="1417", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# 101 +ATTR{idProduct}=="1411", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# 101 xs +ATTR{idProduct}=="1549", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +GOTO="android_usb_rule_match" +LABEL="not_Archos" + +# Asus +ATTR{idVendor}=="0b05", ENV{adb_user}="yes" +# Zenphone 5 +# normal +ATTR{idProduct}=="4c90" +# USB Debugging +ATTR{idProduct}=="4c91", SYMLINK+="android_adb" +# Fastboot +ATTR{idProduct}=="4daf", SYMLINK+="android_fastboot" +# Tegra APX +ATTR{idProduct}=="7030" + +# Azpen Onda +ATTR{idVendor}=="1f3a", ENV{adb_user}="yes" + +# BQ +ATTR{idVendor}!="2a47", GOTO="not_BQ" +ENV{adb_user}="yes" +# Aquaris 4.5 +ATTR{idProduct}=="0c02", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +ATTR{idProduct}=="2008", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +GOTO="android_usb_rule_match" +LABEL="not_BQ" + +# Dell +ATTR{idVendor}=="413c", ENV{adb_user}="yes" + +# Foxconn +ATTR{idVendor}=="0489", ENV{adb_user}="yes" +# Commtiva Z71, Geeksphone One +ATTR{idVendor}=="0489", ATTR{idProduct}=="c001", SYMLINK+="android_adb" + +# Fujitsu/Fujitsu Toshiba +ATTR{idVendor}=="04c5", ENV{adb_user}="yes" + +# Fuzhou Rockchip Electronics +ATTR{idVendor}=="2207", ENV{adb_user}="yes" +# Mediacom Smartpad 715i +ATTR{idVendor}=="2207", ATTR{idProduct}=="0000", SYMLINK+="android_adb" +# Ubislate 7Ci +ATTR{idVendor}=="2207", ATTR{idProduct}=="0010", SYMLINK+="android_adb" + +# Garmin-Asus +ATTR{idVendor}=="091e", ENV{adb_user}="yes" + +# Google +ATTR{idVendor}!="18d1", GOTO="not_Google" +ENV{adb_user}="yes" +# Nexus 4, Nexus 7 2013 +ATTR{idProduct}=="4ee2", SYMLINK+="android_adb" +ATTR{idProduct}=="4ee0", SYMLINK+="android_fastboot" +# Nexus 7 +ATTR{idProduct}=="4e42", SYMLINK+="android_adb" +ATTR{idProduct}=="4e40", SYMLINK+="android_fastboot" +# Nexus 5, Nexus 10 +ATTR{idProduct}=="4ee1", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Nexus S +ATTR{idProduct}=="4e21" +ATTR{idProduct}=="4e22", SYMLINK+="android_adb" +ATTR{idProduct}=="4e20", SYMLINK+="android_fastboot" +# Galaxy Nexus +ATTR{idProduct}=="4e30", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Nexus One +ATTR{idProduct}=="4e11" +ATTR{idProduct}=="4e12", SYMLINK+="android_adb" +ATTR{idProduct}=="0fff", SYMLINK+="android_fastboot" +# Generic and unspecified debug interface +ATTR{idProduct}=="d00d", SYMLINK+="android_fastboot" +# Include: Samsung Galaxy Nexus (GSM) +ATTR{idProduct}=="4e30", SYMLINK+="android_fastboot" +# Include: Samsung Galaxy Nexus (Edit IUT) +ATTR{idProduct}=="d002", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Recovery adb entry for Nexus Family +ATTR{idProduct}=="d001", SYMLINK+="android_adb" +GOTO="android_usb_rule_match" +LABEL="not_Google" + +# Haier +ATTR{idVendor}=="201e", ENV{adb_user}="yes" + +# Hisense +ATTR{idVendor}=="109b", ENV{adb_user}="yes" + +# HTC +ATTR{idVendor}!="0bb4", GOTO="not_HTC" + +ENV{adb_user}="yes" +# fastboot mode enabled +ATTR{idProduct}=="0fff", SYMLINK+="android_fastboot", GOTO="android_usb_rule_match" + +# ChaCha +ATTR{idProduct}=="0cb2", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Desire (Bravo) +ATTR{idProduct}=="0c87", SYMLINK+="android_adb" +# Desire HD +ATTR{idProduct}=="0ca2", SYMLINK+="android_adb" +# Desire S (Saga) +ATTR{idProduct}=="0cab", SYMLINK+="android_adb" +# Desire Z +ATTR{idProduct}=="0c91", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Evo Shift +ATTR{idProduct}=="0ca5", SYMLINK+="android_adb" +# G1 +ATTR{idProduct}=="0c01", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# HD2 +ATTR{idProduct}=="0c02", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Hero H2000 +ATTR{idProduct}=="0001", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Hero (GSM), Desire +ATTR{idProduct}=="0c99", SYMLINK+="android_adb" +# Hero (CDMA) +ATTR{idProduct}=="0c9a", SYMLINK+="android_adb" +# Incredible +ATTR{idProduct}=="0c9e", SYMLINK+="android_adb" +# Incredible rev 0002 +ATTR{idProduct}=="0c8d", SYMLINK+="android_adb" +# MyTouch 4G +ATTR{idProduct}=="0c96", SYMLINK+="android_adb" +# One (m7) && One (m8) +ATTR{idProduct}=="0c93" +# Sensation +ATTR{idProduct}=="0f87", SYMLINK+="android_adb" +ATTR{idProduct}=="0ff0", SYMLINK+="android_fastboot" +# One V +ATTR{idProduct}=="0ce5", SYMLINK+="android_adb" +# Slide +ATTR{idProduct}=="0e03", SYMLINK+="android_adb" +# Tatoo, Dream, ADP1, G1, Magic +ATTR{idProduct}=="0c01" +ATTR{idProduct}=="0c02", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Vision +ATTR{idProduct}=="0c91", SYMLINK+="android_adb" +# Wildfire +ATTR{idProduct}=="0c8b", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Wildfire S +ATTR{idProduct}=="0c86", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Zopo ZP900, Fairphone +ATTR{idProduct}=="0c03", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Zopo C2 +ATTR{idProduct}=="2008", SYMLINK+="libmtp-%k", ENV{ID_MTP_DEVICE}="1", ENV{ID_MEDIA_PLAYER}="1" +GOTO="android_usb_rule_match" +LABEL="not_HTC" + +# Huawei +ATTR{idVendor}=="12d1", ENV{adb_user}="yes" +# IDEOS +ATTR{idProduct}=="1038", SYMLINK+="android_adb" +ATTR{idProduct}=="1038", SYMLINK+="android_fastboot" +# U8850 Vision +ATTR{idProduct}=="1021", SYMLINK+="android_adb" +ATTR{idProduct}=="1021", SYMLINK+="android_fastboot" + +# Intel +ATTR{idVendor}=="8087", ENV{adb_user}="yes" +# Geeksphone Revolution +ATTR{idVendor}=="8087", ATTR{idProduct}=="0a16", SYMLINK+="android_adb" + +# K-Touch +ATTR{idVendor}=="24e3", ENV{adb_user}="yes" + +# KT Tech +ATTR{idVendor}=="2116", ENV{adb_user}="yes" + +# Kyocera +ATTR{idVendor}=="0482", ENV{adb_user}="yes" + +# Lab126 +ATTR{idVendor}=="1949", ENV{adb_user}="yes" +# Amazon Kindle Fire +ATTR{idProduct}=="0006", SYMLINK+="android_adb" +ATTR{idProduct}=="0006", SYMLINK+="android_fastboot" + +# Lenovo +ATTR{idVendor}=="17ef", ENV{adb_user}="yes" + +# LG +ATTR{idVendor}!="1004", GOTO="not_LG" +ENV{adb_user}="yes" +# Ally, Vortex, P500, P500h +ATTR{idProduct}=="618f" +ATTR{idProduct}=="618e", SYMLINK+="android_adb" +# G2 D803 +ATTR{idProduct}=="618c", SYMLINK+="android_adb" +# G2 D803 rogers +ATTR{idProduct}=="631f", SYMLINK+="android_adb" +# G3 D855 +ATTR{idProduct}=="633e", SYMLINK+="android_adb" +# Optimus LTE +ATTR{idProduct}=="6315", SYMLINK+="android_adb" +ATTR{idProduct}=="61f9", SYMLINK+="libmtp-%k", ENV{ID_MTP_DEVICE}="1", ENV{ID_MEDIA_PLAYER}="1" +# Optimus One +ATTR{idProduct}=="61c5", SYMLINK+="android_adb" +# Swift GT540 +ATTR{idProduct}=="61b4", SYMLINK+="android_adb" +# P500 CM10 +ATTR{idProduct}=="61a6", SYMLINK+="android_adb" +# 4X HD P880 +ATTR{idProduct}=="61f9", SYMLINK+="android_adb" +GOTO="android_usb_rule_match" +LABEL="not_LG" + +# Motorola +ATTR{idVendor}!="22b8", GOTO="not_Motorola" +ENV{adb_user}="yes" +# CLIQ XT/Quench +ATTR{idProduct}=="2d66" +# Defy/MB525 +ATTR{idProduct}=="428c" +# Droid +ATTR{idProduct}=="41db" +# Xoom ID 1 +ATTR{idProduct}=="70a8", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Xoom ID 2 +ATTR{idProduct}=="70a9", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Razr XT912 +ATTR{idProduct}=="4362", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Moto XT1052 +ATTR{idProduct}=="2e83", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Moto E/G +ATTR{idProduct}=="2e76", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Moto E/G (Dual SIM) +ATTR{idProduct}=="2e80", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Moto E/G (Global GSM) +ATTR{idProduct}=="2e82", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +GOTO="android_usb_rule_match" +LABEL="not_Motorola" + +# MTK +ATTR{idVendor}=="0e8d", ENV{adb_user}="yes" + +# NEC +ATTR{idVendor}=="0409", ENV{adb_user}="yes" + +# Nook +ATTR{idVendor}=="2080", ENV{adb_user}="yes" + +# Nvidia +ATTR{idVendor}=="0955", ENV{adb_user}="yes" + +# Oppo +ATTR{idVendor}=="22d9", ENV{adb_user}="yes" +# Find 5 +ATTR{idProduct}=="2767", SYMLINK+="android_adb" +ATTR{idProduct}=="2764", SYMLINK+="libmtp-%k", ENV{ID_MTP_DEVICE}="1", ENV{ID_MEDIA_PLAYER}="1" + +# OTGV +ATTR{idVendor}=="2257", ENV{adb_user}="yes" + +# Pantech +ATTR{idVendor}=="10a9", ENV{adb_user}="yes" + +# Pegatron +ATTR{idVendor}=="1d4d", ENV{adb_user}="yes" + +# Philips +ATTR{idVendor}=="0471", ENV{adb_user}="yes" + +# PMC-Sierra +ATTR{idVendor}=="04da", ENV{adb_user}="yes" + +# Qualcomm +ATTR{idVendor}=="05c6", ENV{adb_user}="yes" +# Geeksphone Zero +ATTR{idProduct}=="9025", SYMLINK+="android_adb" +# OnePlus One +ATTR{idProduct}=="6769", SYMLINK+="android_adb" +ATTR{idProduct}=="6764", SYMLINK+="android_adb" +ATTR{idProduct}=="6765", SYMLINK+="android_adb" +# OnePlus Two +ATTR{idProduct}=="9011", SYMLINK+="android_adb" + +# SK Telesys +ATTR{idVendor}=="1f53", ENV{adb_user}="yes" + +# Samsung +ATTR{idVendor}!="04e8", GOTO="not_Samsung" +# False positive printer +ATTR{idProduct}=="3252", GOTO="android_usb_rules_end" +# False positive {non-phone devices} +ATTR{idProduct}!="6???", GOTO="android_usb_rules_end" + +ENV{adb_user}="yes" +# Galaxy i5700 +ATTR{idProduct}=="681c", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Galaxy i5800 +ATTR{idProduct}=="681c", SYMLINK+="android_adb" +ATTR{idProduct}=="6601", SYMLINK+="android_fastboot" +ATTR{idProduct}=="68a9", SYMLINK+="libmtp-%k", ENV{ID_MTP_DEVICE}="1", ENV{ID_MEDIA_PLAYER}="1" +# Galaxy i7500 +ATTR{idProduct}=="6640", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Galaxy i9000 S, i9300 S3 +ATTR{idProduct}=="6601", SYMLINK+="android_adb" +ATTR{idProduct}=="685d", MODE="0660" +ATTR{idProduct}=="68c3", MODE="0660" +# Galaxy Ace (S5830) "Cooper" +ATTR{idProduct}=="689e", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Galaxy Tab +ATTR{idProduct}=="6877", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Galaxy Nexus (GSM) +ATTR{idProduct}=="685c" +# Galaxy Core, Tab 10.1, i9100 S2, i9300 S3, N5100 Note (8.0), Galaxy S3 SHW-M440S 3G (Korea only) +ATTR{idProduct}=="6860", SYMLINK+="android_adb" +ATTR{idProduct}=="685e", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Galaxy i9300 S3 +ATTR{idProduct}=="6866", SYMLINK+="libmtp-%k", ENV{ID_MTP_DEVICE}="1", ENV{ID_MEDIA_PLAYER}="1" +# Galaxy S4 GT-I9500 +ATTR{idProduct}=="685d", SYMLINK+="android_adb" +GOTO="android_usb_rule_match" +LABEL="not_Samsung" + +# Sharp +ATTR{idVendor}=="04dd", ENV{adb_user}="yes" + +# Sony +ATTR{idVendor}=="054c", ENV{adb_user}="yes" + +# Sony Ericsson +ATTR{idVendor}!="0fce", GOTO="not_Sony_Ericsson" +ENV{adb_user}="yes" +# Xperia X10 mini +ATTR{idProduct}=="3137" +ATTR{idProduct}=="2137", SYMLINK+="android_adb" +# Xperia X10 mini pro +ATTR{idProduct}=="3138" +ATTR{idProduct}=="2138", SYMLINK+="android_adb" +# Xperia X8 +ATTR{idProduct}=="3149" +ATTR{idProduct}=="2149", SYMLINK+="android_adb" +# Xperia X12 +ATTR{idProduct}=="e14f" +ATTR{idProduct}=="614f", SYMLINK+="android_adb" +# Xperia Arc S +ATTR{idProduct}=="414f", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Xperia Neo V +ATTR{idProduct}=="6156", SYMLINK+="android_adb" +ATTR{idProduct}=="0dde", SYMLINK+="android_fastboot" +# Xperia S +ATTR{idProduct}=="5169", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Xperia SP +ATTR{idProduct}=="6195", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Xperia L +ATTR{idProduct}=="5192", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Xperia Mini Pro +ATTR{idProduct}=="0166", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Xperia V +ATTR{idProduct}=="0186", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Xperia Acro S +ATTR{idProduct}=="5176", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Xperia Z1 Compact +ATTR{idProduct}=="51a7", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Xperia Z3 Compact +ATTR{idProduct}=="01bb", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +# Xperia Z3+ Dual +ATTR{idProduct}=="51c9", SYMLINK+="android_adb", SYMLINK+="android_fastboot" +GOTO="android_usb_rule_match" +LABEL="not_Sony_Ericsson" + +# Spreadtrum +ATTR{idVendor}=="1782", ENV{adb_user}="yes" + +# T & A Mobile Phones +ATTR{idVendor}=="1bbb", ENV{adb_user}="yes" +# Alcatel OT991D +ATTR{idProduct}=="00f2", SYMLINK+="android_adb" + +# Teleepoch +ATTR{idVendor}=="2340", ENV{adb_user}="yes" + +# Texas Instruments UsbBoot +ATTR{idVendor}=="0451", ATTR{idProduct}=="d00f" +ATTR{idVendor}=="0451", ATTR{idProduct}=="d010" + +# Toshiba +ATTR{idVendor}=="0930", ENV{adb_user}="yes" + +# WEARNERS +ATTR{idVendor}=="05c6", ENV{adb_user}="yes" + +# ZTE +ATTR{idVendor}=="19d2", ENV{adb_user}="yes" +# Blade +ATTR{idProduct}=="1353" +ATTR{idProduct}=="1351", SYMLINK+="android_adb" +# Blade S (Crescent, Orange San Francisco 2) +ATTR{idProduct}=="1355" +ATTR{idProduct}=="1354", SYMLINK+="android_adb" + +# XiaoMi +ATTR{idVendor}=="2717", ENV{adb_user}="yes" +# Mi2A +ATTR{idProduct}=="904e", SYMLINK+="android_adb" +ATTR{idProduct}=="9039", SYMLINK+="android_adb" +# Mi3 +ATTR{idProduct}=="0368", SYMLINK+="android_adb" +# RedMi 1S WCDMA (MTP+Debug) +ATTR{idProduct}=="1268", SYMLINK+="android_adb" +# RedMi / RedMi Note WCDMA (MTP+Debug) +ATTR{idProduct}=="1248", SYMLINK+="android_adb" +# RedMi 1S / RedMi / RedMi Note WCDMA (PTP+Debug) +ATTR{idProduct}=="1218", SYMLINK+="android_adb" +# RedMi 1S /RedMi / RedMi Note WCDMA (Usb+Debug) +ATTR{idProduct}=="1228", SYMLINK+="android_adb" +# RedMi / RedMi Note 4G WCDMA (MTP+Debug) +ATTR{idProduct}=="1368", SYMLINK+="android_adb" +# RedMi / RedMi Note 4G WCDMA (PTP+Debug) +ATTR{idProduct}=="1318", SYMLINK+="android_adb" +# RedMi / RedMi Note 4G WCDMA (Usb+Debug) +ATTR{idProduct}=="1328", SYMLINK+="android_adb" + +# Skip other vendor tests +LABEL="android_usb_rule_match" + +# Enable device as a user device if found +ENV{adb_user}=="yes", MODE="0666", TAG+="uaccess" + +# Devices listed here {begin...end} are connected by USB +LABEL="android_usb_rules_end" diff --git a/configfiles/etc/udev/rules.d/65-kvm.rules b/configfiles/etc/udev/rules.d/65-kvm.rules new file mode 100644 index 0000000..24dce16 --- /dev/null +++ b/configfiles/etc/udev/rules.d/65-kvm.rules @@ -0,0 +1,5 @@ +# DRI video devices +SUBSYSTEM==\"drm\", KERNEL==\"card*|renderD*\", MODE=\"0666\" + +# Enable access to virtualization device to all users +SUBSYSTEM==\"misc\", KERNEL==\"kvm\", MODE=\"0666\" diff --git a/configfiles/usr/lib/imunes/gui/initgui.tcl b/configfiles/usr/lib/imunes/gui/initgui.tcl new file mode 100644 index 0000000..cafe735 --- /dev/null +++ b/configfiles/usr/lib/imunes/gui/initgui.tcl @@ -0,0 +1,1196 @@ +# +# Copyright 2004-2013 University of Zagreb. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +# SUCH DAMAGE. +# +# This work was supported in part by Croatian Ministry of Science +# and Technology through the research contract #IP-2003-143. +# + +# $Id: initgui.tcl 151 2015-03-27 17:14:57Z valter $ + + +#****h* imunes/initgui.tcl +# NAME +# initgui.tcl +# FUNCTION +# Initialize GUI. Not included when operating in batch mode. +#**** + + +# +# GUI-related global variables +# + +#****v* initgui.tcl/global variables +# NAME +# global variables +# FUNCTION +# GUI-related global varibles +# +# * newlink -- helps when creating a new link. If there is no +# link currently created, this value is set to an empty string. +# * selectbox -- the value of the box representing all the selected items +# * selected -- containes the list of node_id's of all selected nodes. +# * newCanvas -- +# +# * animatephase -- starting dashoffset. With this value the effect of +# rotating line around selected itme is achived. +# * undolevel -- control variable for undo. +# * redolevel -- control variable for redo. +# * undolog -- control variable for saving all the past configurations. +# * changed -- control variable for indicating that there something changed +# in active configuration. +# * badentry -- control variable indicating that there has been a bad entry +# in the text box. +# * cursorstate -- control variable for animating cursor. +# * clock_seconds -- control variable for animating cursor. +# * oper_mode -- control variable reresenting operating mode, possible +# values are edit and exec. +# * grid -- control variable representing grid distance. All new +# elements on the +# canvas are snaped to grid. Default value is 24. +# * sizex -- X size of the canvas. +# * sizey -- Y size of the canvas. +# * curcanvas -- the value of the current canvas. +# * autorearrange_enabled -- control variable indicating is +# autorearrange enabled. +# +# * defLinkColor -- defines the default link color +# * defLinkWidth -- defines the width of the link +# * defEthBandwidth -- defines the ethernet bandwidth +# * defSerBandwidth -- defines the serail link bandwidth +# * defSerDelay -- defines the serail link delay +# * showIfNames -- control variable for showing interface names +# * showIfIPaddrs -- control variable for showing interface IPv4 addresses +# * showIfIPv6addrs -- control variable for showing interface IPv6 addrs +# * showNodeLabels -- control variable for showing node labels +# * showLinkLabels -- control variable for showing link labels +# +# * supp_router_models -- supproted router models, currently xorp quagga +# and static. +# * def_router_model -- default router model +#**** + + +set newlink "" +set selectbox "" +set selected "" +set ns2srcfile "" +set animatephase 0 +set changed 0 +set badentry 0 +set cursorState 0 +set clock_seconds 0 +set grid 24 +set showGrid 1 +set autorearrange_enabled 0 +set activetool select + +# resize Oval/Rectangle, "false" or direction: north/west/east/... +set resizemode false + +# +# Initialize a few variables to default values +# +set defLinkColor Red +set defFillColor Gray +set defLinkWidth 2 +set defEthBandwidth 0 +set defSerBandwidth 0 +set defSerDelay 0 + +set newtext "" +set newoval "" +set defOvalColor #CFCFFF +set defOvalLabelFont "Arial 12" +set newrect "" +set newfree "" +set defRectColor #C0C0FF +set defRectLabelFont "Arial 12" +set defTextFont "Arial 12" +set defTextFontFamily "Arial" +set defTextFontSize 12 +set defTextColor #000000 + +set showIfNames 1 +set showIfIPaddrs 1 +set showIfIPv6addrs 1 +set showNodeLabels 1 +set showLinkLabels 1 +set showZFSsnapshots 0 + +set IPv4autoAssign 1 +set IPv6autoAssign 1 +set hostsAutoAssign 0 + +set showTree 0 + +set showBkgImage 0 +set showAnnotations 1 +set iconSize normal +set zoom_stops [list 0.2 0.4 0.5 0.6 0.8 1 \ + 1.25 1.5 1.75 2.0 3.0] +set canvasBkgMode "original" +set alignCanvasBkg "center" +set bgsrcfile "" + +set def_router_model quagga + +set model quagga +set router_model $model +set routerDefaultsModel $model +set ripEnable 1 +set ripngEnable 1 +set ospfEnable 0 +set ospf6Enable 0 +set routerRipEnable 1 +set routerRipngEnable 1 +set routerOspfEnable 0 +set routerOspf6Enable 0 +set rdconfig [list $routerRipEnable $routerRipngEnable $routerOspfEnable $routerOspf6Enable] +set brguielements {} +set selectedExperiment "" +set copypaste_nodes 0 +set cutNodes 0 +set iconsrcfile [lindex [glob -directory $ROOTDIR/$LIBDIR/icons/normal/ *.gif] 0] +#interface selected in the topology tree +set selectedIfc "" + +# bases for naming new nodes +array set nodeNamingBase { + pc pc + click_l2 cswitch + click_l3 crouter + ext ext + filter filter + router router + host host + hub hub + lanswitch switch + nat64 nat64- + packgen packgen + stpswitch stpswitch +} + +# Packets required for GUI +#package require Img + +# +# Window / canvas setup section +# + +wm minsize . 640 410 +wm geometry . 1016x716-20+0 + +set iconlist "" +foreach size "256 128 64" { + set path "$ROOTDIR/$LIBDIR/icons/imunes_icon$size.png" + if {[file exists $path]} { + set icon$size [image create photo -file $path] + append iconlist "\$icon$size " + } +} +if { $iconlist != "" } { + eval wm iconphoto . -default $iconlist +} + +ttk::style theme use imunes + +ttk::panedwindow .panwin -orient horizontal +ttk::frame .panwin.f1 +ttk::frame .panwin.f2 -width 200 +.panwin add .panwin.f1 -weight 5 +.panwin add .panwin.f2 -weight 0 +.panwin forget .panwin.f2 +pack .panwin -fill both -expand 1 +pack propagate .panwin.f2 0 + +set mf .panwin.f1 + +menu .menubar +. configure -menu .menubar + +.menubar add cascade -label File -underline 0 -menu .menubar.file +.menubar add cascade -label Edit -underline 0 -menu .menubar.edit +.menubar add cascade -label Canvas -underline 0 -menu .menubar.canvas +.menubar add cascade -label View -underline 0 -menu .menubar.view +.menubar add cascade -label Tools -underline 0 -menu .menubar.tools +.menubar add cascade -label TopoGen -underline 4 -menu .menubar.t_g +.menubar add cascade -label Widgets -underline 0 -menu .menubar.widgets +.menubar add cascade -label Events -underline 1 -menu .menubar.events +.menubar add cascade -label Experiment -underline 1 -menu .menubar.experiment +.menubar add cascade -label Help -underline 0 -menu .menubar.help + + +# +# File +# +menu .menubar.file -tearoff 0 + +.menubar.file add command -label New -underline 0 \ + -accelerator "Ctrl+N" -command { newProject } +bind . "newProject" + +.menubar.file add command -label Open -underline 0 \ + -accelerator "Ctrl+O" -command { fileOpenDialogBox } +bind . "fileOpenDialogBox" + +.menubar.file add command -label Save -underline 0 \ + -accelerator "Ctrl+S" -command { fileSaveDialogBox } +bind . "fileSaveDialogBox" + +.menubar.file add command -label "Save As" -underline 5 \ + -command { fileSaveAsDialogBox } + +.menubar.file add command -label "Close" -underline 0 -command { closeFile } + +#.menubar.file add separator +#.menubar.file add command -label "Print" -underline 0 \ +# -command { +# set w .entry1 +# catch {destroy $w} +# toplevel $w +# wm transient $w . +# wm resizable $w 0 0 +# wm title $w "Printing options" +# wm iconname $w "Printing options" +# +# #dodan glavni frame "printframe" +# ttk::frame $w.printframe +# pack $w.printframe -fill both -expand 1 +# +# ttk::label $w.printframe.msg -wraplength 5i -justify left -text "Print command:" +# pack $w.printframe.msg -side top +# +# ttk::frame $w.printframe.buttons +# pack $w.printframe.buttons -side bottom -fill x -pady 2m +# ttk::button $w.printframe.buttons.print -text Print -command "printCanvas $w" +# ttk::button $w.printframe.buttons.cancel -text "Cancel" -command "destroy $w" +# pack $w.printframe.buttons.print $w.printframe.buttons.cancel -side left -expand 1 +# +# ttk::entry $w.printframe.e1 +# $w.printframe.e1 insert 0 "lpr" +# pack $w.printframe.e1 -side top -pady 5 -padx 10 -fill x +#} + +set printFileType ps + +#.menubar.file add command -label "Print To File" -underline 9 \ +# -command { +# global winOS +# set w .entry1 +# catch {destroy $w} +# toplevel $w +# wm transient $w . +# wm resizable $w 0 0 +# wm title $w "Printing options" +# wm iconname $w "Printing options" +# +# #dodan glavni frame "printframe" +# ttk::frame $w.printframe +# pack $w.printframe -fill both -expand 1 +# +# ttk::label $w.printframe.msg -wraplength 5i -justify left -text "File:" +# +# ttk::frame $w.printframe.ftype +# ttk::radiobutton $w.printframe.ftype.ps -text "PostScript" \ +# -variable printFileType -value ps -state enabled +# ttk::radiobutton $w.printframe.ftype.pdf -text "PDF" \ +# -variable printFileType -value pdf -state enabled +# +# ttk::frame $w.printframe.path +# +# if {$winOS} { +# $w.printframe.pdf configure -state disabled +# } else { +# catch {exec ps2pdf} msg +# if { [string match *ps2pdfwr* $msg] != 1 } { +# $w.printframe.pdf configure -state disabled +# } +# } +# +# pack $w.printframe.msg -side top -fill x -padx 5 +# +# ttk::button $w.printframe.path.browse -text "Browse" -width 8 \ +# -command { +# global printFileType +# set printdest [tk_getSaveFile -initialfile print \ +# -defaultextension .$printFileType] +# $w.printframe.path.e1 insert 0 $printdest +# } +# +# ttk::frame $w.printframe.buttons +# pack $w.printframe.buttons -side bottom -fill x -pady 2m +# ttk::button $w.printframe.buttons.print -text Print -command "printCanvasToFile $w $w.printframe.path.e1" +# ttk::button $w.printframe.buttons.cancel -text "Cancel" -command "destroy $w" +# pack $w.printframe.buttons.print $w.printframe.buttons.cancel -side left -expand 1 +# +# ttk::entry $w.printframe.path.e1 +# pack $w.printframe.path -fill both +# pack $w.printframe.path.e1 -side left -pady 2 -padx 5 +# pack $w.printframe.path.browse -side left -pady 2 -padx 5 +# pack $w.printframe.ftype -anchor w +# pack $w.printframe.ftype.ps $w.printframe.ftype.pdf -side left -fill x -padx 10 +#} + +.menubar.file add separator +.menubar.file add command -label Quit -underline 0 -command { exit } +.menubar.file add separator + + +# +# Edit +# +menu .menubar.edit -tearoff 0 +.menubar.edit add command -label "Undo" -underline 0 \ + -accelerator "Ctrl+Z" -command undo -state disabled +bind . undo +.menubar.edit add command -label "Redo" -underline 0 \ + -accelerator "Ctrl+Y" -command redo -state disabled +bind . redo +.menubar.edit add separator +.menubar.edit add command -label "Cut" -underline 0 \ + -accelerator "Ctrl+X" -command cutSelection -state normal +bind . cutSelection +.menubar.edit add command -label "Copy" -underline 1 \ + -accelerator "Ctrl+C" -command copySelection -state normal +bind . copySelection +.menubar.edit add command -label "Paste" -underline 0 \ + -accelerator "Ctrl+V" -command paste -state normal +bind . paste +.menubar.edit add separator +.menubar.edit add command -label "Select all" \ + -accelerator "Ctrl+A" -underline 0 -command "selectAllObjects" +bind . selectAllObjects +.menubar.edit add command -label "Select adjacent" \ + -accelerator "Ctrl+D" -underline 7 -command selectAdjacent +bind . selectAdjacent + +# +# Canvas +# +menu .menubar.canvas -tearoff 0 +.menubar.canvas add command -label "New" -underline 0 -command { + newCanvas "" + switchCanvas last + set changed 1 + updateUndoLog +} +.menubar.canvas add command -label "Rename" -underline 0 \ +-command { renameCanvasPopup } +.menubar.canvas add command -label "Delete" -underline 0 -command { + upvar 0 ::cf::[set ::curcfg]::canvas_list canvas_list + upvar 0 ::cf::[set ::curcfg]::curcanvas curcanvas + + if { [llength $canvas_list] == 1 } { + return + } + foreach obj [.panwin.f1.c find withtag node] { + selectNode .panwin.f1.c $obj + } + deleteSelection + set i [lsearch $canvas_list $curcanvas] + set canvas_list [lreplace $canvas_list $i $i] + set curcanvas [lindex $canvas_list $i] + if { $curcanvas == "" } { + set curcanvas [lindex $canvas_list end] + } + switchCanvas none + set changed 1 + updateUndoLog +} +.menubar.canvas add separator +.menubar.canvas add command -label "Resize" -underline 2 -command resizeCanvasPopup +.menubar.canvas add command -label "Background image" -underline 0 \ + -command changeBkgPopup + +.menubar.canvas add separator +.menubar.canvas add command -label "Previous" -accelerator "PgUp" \ + -command { switchCanvas prev } +bind . { switchCanvas prev } +.menubar.canvas add command -label "Next" -accelerator "PgDown" \ + -command { switchCanvas next } +bind . { switchCanvas next } +.menubar.canvas add command -label "First" -accelerator "Home" \ + -command { switchCanvas first } +bind . { switchCanvas first } +.menubar.canvas add command -label "Last" -accelerator "End" \ + -command { switchCanvas last } +bind . { switchCanvas last } + + +# +# Tools +# +menu .menubar.tools -tearoff 0 +.menubar.tools add command -label "Auto rearrange all" -underline 0 \ + -command { rearrange all } +.menubar.tools add command -label "Auto rearrange selected" -underline 15 \ + -command { rearrange selected } +.menubar.tools add separator +.menubar.tools add command -label "Align to grid" -underline 9 \ + -command { align2grid } +.menubar.tools add separator +.menubar.tools add checkbutton -label "IPv4 auto-assign addresses/routes" \ + -variable IPv4autoAssign +.menubar.tools add checkbutton -label "IPv6 auto-assign addresses/routes" \ + -variable IPv6autoAssign +.menubar.tools add checkbutton -label "Auto-generate /etc/hosts file" \ + -variable hostsAutoAssign +.menubar.tools add separator +.menubar.tools add command -label "Randomize MAC bytes" -underline 10 \ + -command randomizeMACbytes +.menubar.tools add command -label "IPv4 address pool" -underline 3 \ + -command { + set w .entry1 + catch {destroy $w} + toplevel $w + wm transient $w . + #wm resizable $w 0 0 + wm title $w "IPv4 autonumbering address pool" + wm iconname $w "IPv4 address pool" + grab $w + + #dodan glavni frame "ipv4frame" + ttk::frame $w.ipv4frame + pack $w.ipv4frame -fill both -expand 1 + + ttk::label $w.ipv4frame.msg -text "IPv4 address range:" + pack $w.ipv4frame.msg -side top + + ttk::entry $w.ipv4frame.e1 -width 27 -validate focus -invalidcommand "focusAndFlash %W" + $w.ipv4frame.e1 insert 0 $ipv4 + pack $w.ipv4frame.e1 -side top -pady 5 -padx 10 -fill x + + $w.ipv4frame.e1 configure -invalidcommand {checkIPv4Net %P} + + ttk::frame $w.ipv4frame.buttons + pack $w.ipv4frame.buttons -side bottom -fill x -pady 2m + ttk::button $w.ipv4frame.buttons.apply -text "Apply" -command "IPv4AddrApply $w" + ttk::button $w.ipv4frame.buttons.cancel -text "Cancel" -command "destroy $w" + + bind $w "IPv4AddrApply $w" + bind $w "destroy $w" + + pack $w.ipv4frame.buttons.apply -side left -expand 1 -anchor e -padx 2 + pack $w.ipv4frame.buttons.cancel -side right -expand 1 -anchor w -padx 2 +} +.menubar.tools add command -label "IPv6 address pool" -underline 3 \ + -command { + set w .entry1 + catch {destroy $w} + toplevel $w + wm transient $w . + #wm resizable $w 0 0 + wm title $w "IPv6 autonumbering address pool" + wm iconname $w "IPv6 address pool" + grab $w + + ttk::frame $w.ipv6frame + pack $w.ipv6frame -fill both -expand 1 + + ttk::label $w.ipv6frame.msg -text "IPv6 address range:" + pack $w.ipv6frame.msg -side top + + ttk::entry $w.ipv6frame.e1 -width 27 -validate focus -invalidcommand "focusAndFlash %W" + $w.ipv6frame.e1 insert 0 $ipv6 + pack $w.ipv6frame.e1 -side top -pady 5 -padx 10 -fill x + + $w.ipv6frame.e1 configure -invalidcommand {checkIPv6Net %P} + + ttk::frame $w.ipv6frame.buttons + pack $w.ipv6frame.buttons -side bottom -fill x -pady 2m + ttk::button $w.ipv6frame.buttons.apply -text "Apply" -command "IPv6AddrApply $w" + ttk::button $w.ipv6frame.buttons.cancel -text "Cancel" -command "destroy $w" + + bind $w "IPv6AddrApply $w" + bind $w "destroy $w" + + pack $w.ipv6frame.buttons.apply -side left -expand 1 -anchor e -padx 2 + pack $w.ipv6frame.buttons.cancel -side right -expand 1 -anchor w -padx 2 +} +.menubar.tools add command -label "Routing protocol defaults" -underline 0 -command { + upvar 0 ::cf::[set ::curcfg]::curcanvas curcanvas + upvar 0 ::cf::[set ::curcfg]::oper_mode oper_mode + global router_model supp_router_models routerDefaultsModel + global routerRipEnable routerRipngEnable routerOspfEnable routerOspf6Enable + + set wi .popup + catch {destroy $wi} + toplevel $wi + wm transient $wi . + wm resizable $wi 0 0 + wm title $wi "Router Defaults" + grab $wi + + #dodan glavni frame "routerframe" + ttk::frame $wi.routerframe + pack $wi.routerframe -fill both -expand 1 + + set w $wi.routerframe + + ttk::labelframe $w.model -text "Model:" + ttk::labelframe $w.protocols -text "Protocols:" + + ttk::checkbutton $w.protocols.rip -text "rip" -variable routerRipEnable + ttk::checkbutton $w.protocols.ripng -text "ripng" -variable routerRipngEnable + ttk::checkbutton $w.protocols.ospf -text "ospfv2" -variable routerOspfEnable + ttk::checkbutton $w.protocols.ospf6 -text "ospfv3" -variable routerOspf6Enable + + ttk::radiobutton $w.model.quagga -text quagga -variable router_model \ + -value quagga -command { + $w.protocols.rip configure -state normal + $w.protocols.ripng configure -state normal + $w.protocols.ospf configure -state normal + $w.protocols.ospf6 configure -state normal + } + ttk::radiobutton $w.model.xorp -text xorp -variable router_model \ + -value xorp -command { + $w.protocols.rip configure -state normal + $w.protocols.ripng configure -state normal + $w.protocols.ospf configure -state normal + $w.protocols.ospf6 configure -state normal + } + ttk::radiobutton $w.model.static -text static -variable router_model \ + -value static -command { + $w.protocols.rip configure -state disabled + $w.protocols.ripng configure -state disabled + $w.protocols.ospf configure -state disabled + $w.protocols.ospf6 configure -state disabled + } + + if { $router_model == "static" || $oper_mode != "edit" } { + $w.protocols.rip configure -state disabled + $w.protocols.ripng configure -state disabled + $w.protocols.ospf configure -state disabled + $w.protocols.ospf6 configure -state disabled + } + + if { $oper_mode != "edit" } { + $w.model.quagga configure -state disabled + $w.model.xorp configure -state disabled + $w.model.static configure -state disabled + } + if {"xorp" ni $supp_router_models} { + $w.model.xorp configure -state disabled + } + + ttk::frame $w.buttons + ttk::button $w.buttons.b1 -text "Apply" -command { routerDefaultsApply $wi } + ttk::button $w.buttons.b2 -text "Cancel" -command { + set router_model $routerDefaultsModel + set routerRipEnable [lindex $rdconfig 0] + set routerRipngEnable [lindex $rdconfig 1] + set routerOspfEnable [lindex $rdconfig 2] + set routerOspf6Enable [lindex $rdconfig 3] + destroy $wi + } + + pack $w.model -side top -fill x -pady 5 + pack $w.model.quagga $w.model.xorp $w.model.static \ + -side left -expand 1 + pack $w.protocols -side top -pady 5 + pack $w.protocols.rip $w.protocols.ripng \ + $w.protocols.ospf $w.protocols.ospf6 -side left + pack $w.buttons -side bottom -fill x -pady 2 + pack $w.buttons.b1 -side left -expand 1 -anchor e -padx 2 + pack $w.buttons.b2 -side right -expand 1 -anchor w -padx 2 +} +#.menubar.tools add separator +#.menubar.tools add command -label "ns2imunes converter" \ +# -underline 0 -command { +# +# #dodana varijabla ns2imdialog, dodan glavni frame "ns2convframe" +# set ns2imdialog .ns2im-dialog +# catch {destroy $ns2imdialog} +# toplevel $ns2imdialog +# wm transient $ns2imdialog . +# wm resizable $ns2imdialog 0 0 +# wm title $ns2imdialog "ns2imunes converter" +# +# ttk::frame $ns2imdialog.ns2convframe +# pack $ns2imdialog.ns2convframe -fill both -expand 1 +# +# set f1 [ttk::frame $ns2imdialog.ns2convframe.entry1] +# set f2 [ttk::frame $ns2imdialog.ns2convframe.buttons] +# +# ttk::label $f1.l -text "ns2 file:" +# +# #entry $f1.e -width 25 -textvariable ns2srcfile +# ttk::entry $f1.e -width 25 -textvariable ns2srcfile +# ttk::button $f1.b -text "Browse" -width 8 \ +# -command { +# set srcfile [tk_getOpenFile -parent $ns2imdialog \ +# -initialfile $ns2srcfile] +# $f1.e delete 0 end +# $f1.e insert 0 "$srcfile" +# } +# ttk::button $f2.b1 -text "OK" -command { +# ns2im $srcfile +# destroy $ns2imdialog +# } +# ttk::button $f2.b2 -text "Cancel" -command { destroy $ns2imdialog} +# +# pack $f1.b $f1.e -side right +# pack $f1.l -side right -fill x -expand 1 +# pack $f2.b1 -side left -expand 1 -anchor e +# pack $f2.b2 -side right -expand 1 -anchor w +# pack $f1 $f2 -fill x +#} + + +# +# View +# +menu .menubar.view -tearoff 0 + +set m .menubar.view.iconsize +menu $m -tearoff 0 +.menubar.view add cascade -label "Icon size" -menu $m -underline 5 + $m add radiobutton -label "Small" -variable iconSize \ + -value small -command { updateIconSize; redrawAll } + $m add radiobutton -label "Normal" -variable iconSize \ + -value normal -command { updateIconSize; redrawAll } + +.menubar.view add separator + +.menubar.view add checkbutton -label "Show Interface Names" \ + -underline 5 -variable showIfNames \ + -command { redrawAllLinks } +.menubar.view add checkbutton -label "Show IPv4 Addresses " \ + -underline 8 -variable showIfIPaddrs \ + -command { redrawAllLinks } +.menubar.view add checkbutton -label "Show IPv6 Addresses " \ + -underline 8 -variable showIfIPv6addrs \ + -command { redrawAllLinks } +.menubar.view add checkbutton -label "Show Node Labels" \ + -underline 5 -variable showNodeLabels -command { + foreach object [.panwin.f1.c find withtag nodelabel] { + if { $showNodeLabels } { + .panwin.f1.c itemconfigure $object -state normal + } else { + .panwin.f1.c itemconfigure $object -state hidden + } + } +} +.menubar.view add checkbutton -label "Show Link Labels" \ + -underline 5 -variable showLinkLabels -command { + foreach object [.panwin.f1.c find withtag linklabel] { + if { $showLinkLabels } { + .panwin.f1.c itemconfigure $object -state normal + } else { + .panwin.f1.c itemconfigure $object -state hidden + } + } +} + +.menubar.view add command -label "Show All" \ + -underline 5 -command { + set showIfNames 1 + set showIfIPaddrs 1 + set showIfIPv6addrs 1 + set showNodeLabels 1 + set showLinkLabels 1 + redrawAllLinks + foreach object [.panwin.f1.c find withtag linklabel] { + .panwin.f1.c itemconfigure $object -state normal + } + } +.menubar.view add command -label "Show None" \ + -underline 6 -command { + set showIfNames 0 + set showIfIPaddrs 0 + set showIfIPv6addrs 0 + set showNodeLabels 0 + set showLinkLabels 0 + redrawAllLinks + foreach object [.panwin.f1.c find withtag linklabel] { + .panwin.f1.c itemconfigure $object -state hidden + } + } + +.menubar.view add separator + +#.menubar.view add checkbutton -label "Show ZFS snaphots" \ +# -variable showZFSsnapshots + +#.menubar.view add separator +.menubar.view add checkbutton -label "Show Topology Tree" \ + -variable showTree -underline 5 \ + -command { topologyElementsTree } + +.menubar.view add separator + +.menubar.view add checkbutton -label "Show Background Image" \ + -underline 5 -variable showBkgImage \ + -command { redrawAll } +.menubar.view add checkbutton -label "Show Annotations" \ + -underline 8 -variable showAnnotations \ + -command { redrawAll } +.menubar.view add checkbutton -label "Show Grid" \ + -underline 5 -variable showGrid \ + -command { redrawAll } + + +.menubar.view add separator +.menubar.view add command -label "Zoom In" -accelerator "+" \ + -command "zoom up" +bind . "+" "zoom up" +.menubar.view add command -label "Zoom Out" -accelerator "-" \ + -command "zoom down" +bind . "-" "zoom down" + + +#dodan element "Themes" +.menubar.view add separator +set m .menubar.view.themes +menu $m -tearoff 0 +set currentTheme imunes +.menubar.view add cascade -label "Themes" -menu $m + $m add radiobutton -label "alt" -variable currentTheme \ + -value alt -command "ttk::style theme use alt" + $m add radiobutton -label "classic" -variable currentTheme\ + -value classic -command "ttk::style theme use classic" + $m add radiobutton -label "default" -variable currentTheme\ + -value default -command "ttk::style theme use default" + $m add radiobutton -label "clam" -variable currentTheme\ + -value clam -command "ttk::style theme use clam" + $m add radiobutton -label "imunes" -variable currentTheme\ + -value imunes -command "ttk::style theme use imunes" + + +# +# Show +# +menu .menubar.widgets +global showConfig +set showConfig "None" +global lastObservedNode +set lastObservedNode "" +.menubar.widgets add radiobutton -label "None" \ + -variable showConfig -underline 0 -value "None" +.menubar.widgets add separator + +set widgetlist { \ + { "ifconfig" "ifconfig" } \ + { "IPv4 Routing table" "netstat -4 -rn" } \ + { "IPv6 Routing table" "netstat -6 -rn" } \ + { "RIP routes info" "vtysh -c \"show ip rip\"" } \ + { "RIPng routes info" "vtysh -c \"show ipv6 ripng\"" } \ + { "Process list" "ps ax" } \ + { "IPv4 sockets" "netstat -4 -an" } \ + { "IPv6 sockets" "netstat -6 -an" } \ + { "View startup script" "cat boot.conf" } \ + { "View startup log" "cat out.log" } \ + { "List files" "ls" } \ +} + +foreach widget $widgetlist { + .menubar.widgets add radiobutton -label [lindex $widget 0] \ + -variable showConfig -underline 0 -value [lindex $widget 1] +} + +.menubar.widgets add command -label "Custom..." \ + -underline 0 -command { + global showConfig + set w .entry1 + catch {destroy $w} + toplevel $w + wm transient $w . + wm resizable $w 0 0 + wm title $w "Custom widget" + wm iconname $w "Custom widget" + + ttk::frame $w.custom + pack $w.custom -fill both -expand 1 + + ttk::label $w.custom.label -wraplength 5i -justify left -text "Custom command:" + pack $w.custom.label -side top + + ttk::frame $w.custom.buttons + pack $w.custom.buttons -side bottom -fill x -pady 2m + ttk::button $w.custom.buttons.ok -text OK -command { + set w .entry1 + global showConfig + set showConfig [$w.custom.e1 get] + destroy $w + } + ttk::button $w.custom.buttons.cancel -text "Cancel" -command "destroy $w" + pack $w.custom.buttons.ok $w.custom.buttons.cancel -side left -expand 1 + + set commands {"ifconfig" "ps ax" "netstat -rnf inet" "netstat -rn" "ls" \ + "cat boot.conf"} + ttk::combobox $w.custom.e1 -width 30 -values $commands + if {$showConfig != "None"} { + $w.custom.e1 insert 0 $showConfig + } else { + $w.custom.e1 insert 0 [lindex $commands 0] + } + + pack $w.custom.e1 -side top -pady 5 -padx 10 -fill x + } + +if {0} { +.menubar.widgets add separator +.menubar.widgets add radiobutton -label "Route" \ + -variable showConfig -underline 0 -value "route" +} + +# +# Events +# +menu .menubar.events -tearoff 0 +.menubar.events add command -label "Start scheduling" -underline 0 \ + -state normal -command "startEventScheduling" +.menubar.events add command -label "Stop scheduling" -underline 1 \ + -state disabled -command "stopEventScheduling" +.menubar.events add separator +.menubar.events add command -label "Event editor" -underline 0 \ + -command "elementsEventsEditor" +# +# Experiment +# +menu .menubar.experiment -tearoff 0 +.menubar.experiment add command -label "Execute" -underline 0 \ + -command "setOperMode exec" +.menubar.experiment add command -label "Terminate" -underline 0 \ + -command "setOperMode edit" -state disabled +.menubar.experiment add command -label "Restart" -underline 0 \ + -command "setOperMode edit; setOperMode exec" -state disabled +.menubar.experiment add separator +.menubar.experiment add command -label "Attach to experiment" -underline 0 \ + -command "attachToExperimentPopup" + +# +# Help +# +menu .menubar.help -tearoff 0 +.menubar.help add command -label "About" -command { + toplevel .about + wm title .about "About IMUNES" + wm minsize .about 454 255 + + set mainFrame .about.main + + ttk::frame $mainFrame -padding 4 + grid $mainFrame -column 0 -row 0 -sticky n + grid columnconfigure .about 0 -weight 1 + grid rowconfigure .about 0 -weight 1 + + set image [image create photo -file $ROOTDIR/$LIBDIR/icons/imunes_logo128.png] + ttk::label $mainFrame.logoLabel + $mainFrame.logoLabel configure -image $image + + ttk::label $mainFrame.imunesLabel -text "IMUNES" -font "-size 12 -weight bold" + ttk::label $mainFrame.imunesVersion -text $imunesVersion -font "-size 10 -weight bold" + ttk::label $mainFrame.lastChanged -text $imunesChangedDate + ttk::label $mainFrame.imunesAdditions -text "$imunesAdditions" -font "-size 10 -weight bold" + ttk::label $mainFrame.imunesDesc -text "Integrated Multiprotocol Network Emulator/Simulator." + ttk::label $mainFrame.homepage -text "http://imunes.net/" -font "-underline 1 -size 10" + ttk::label $mainFrame.github -text "http://github.com/imunes/imunes" -font "-underline 1 -size 10" + ttk::label $mainFrame.copyright -text "Copyright (c) University of Zagreb 2004 - $imunesLastYear" -font "-size 8" + + grid $mainFrame.logoLabel -column 0 -row 0 -pady {10 5} -padx 5 + grid $mainFrame.imunesLabel -column 0 -row 1 -pady 5 -padx 5 + grid $mainFrame.imunesVersion -column 0 -row 2 -pady {5 1} -padx 5 + grid $mainFrame.lastChanged -column 0 -row 3 -pady {1 5} -padx 5 + if { $imunesAdditions != ""} { + grid $mainFrame.imunesAdditions -column 0 -row 4 -pady {0 1} -padx 5 + } + grid $mainFrame.imunesDesc -column 0 -row 5 -pady {5 10} -padx 5 + grid $mainFrame.homepage -column 0 -row 6 -pady 1 -padx 5 + grid $mainFrame.github -column 0 -row 7 -pady 1 -padx 5 + grid $mainFrame.copyright -column 0 -row 8 -pady {20 10} -padx 5 + + bind $mainFrame.homepage <1> { launchBrowser [%W cget -text] } + bind $mainFrame.homepage "%W configure -foreground blue; \ + $mainFrame config -cursor hand1" + bind $mainFrame.homepage "%W configure -foreground black; \ + $mainFrame config -cursor arrow" + + bind $mainFrame.github <1> { launchBrowser [%W cget -text] } + bind $mainFrame.github "%W configure -foreground blue; \ + $mainFrame config -cursor hand1" + bind $mainFrame.github "%W configure -foreground black; \ + $mainFrame config -cursor arrow" +} + + +# +# Left-side toolbar +# +ttk::frame $mf.left +pack $mf.left -side left -fill y + +foreach b {select link} { + + set image [image create photo -file $ROOTDIR/$LIBDIR/icons/tiny/$b.gif] + + ttk::button $mf.left.$b \ + -image $image -style Toolbutton \ + -command "setActiveTool $b" + pack $mf.left.$b -side top + + # hover status line + set msg "" + if { $b == "select" } { + set msg "Select tool" + } elseif { $b == "link" } { + set msg "Create link" + } + + bind $mf.left.$b ".bottom.textbox config -text {$msg}" + bind $mf.left.$b ".bottom.textbox config -text {}" +} + +menu $mf.left.link_nodes -title "Link layer nodes" +menu $mf.left.net_nodes -title "Network layer nodes" +foreach b $all_modules_list { + set image [image create photo -file [$b.icon toolbar]] + + if { [$b.layer] == "LINK" } { + $mf.left.link_nodes add command -image $image -hidemargin 1 \ + -compound left -label [string range [$b.toolbarIconDescr] 8 end] \ + -command "setActiveTool $b" + } elseif { [$b.layer] == "NETWORK" } { + $mf.left.net_nodes add command -image $image -hidemargin 1 \ + -compound left -label [string range [$b.toolbarIconDescr] 8 end] \ + -command "setActiveTool $b" + } +} + +set image [image create photo -file $ROOTDIR/$LIBDIR/icons/tiny/l2.gif] +ttk::menubutton $mf.left.link_layer -image $image -style Toolbutton \ + -menu $mf.left.link_nodes -direction right +bind $mf.left.link_layer ".bottom.textbox config -text {Add new link layer node}" +bind $mf.left.link_layer ".bottom.textbox config -text {}" +pack $mf.left.link_layer + +set image [image create photo -file $ROOTDIR/$LIBDIR/icons/tiny/l3.gif] +ttk::menubutton $mf.left.net_layer -image $image -style Toolbutton \ + -menu $mf.left.net_nodes -direction right +bind $mf.left.net_layer ".bottom.textbox config -text {Add new network layer node}" +bind $mf.left.net_layer ".bottom.textbox config -text {}" +pack $mf.left.net_layer + +foreach b {rectangle oval freeform text} { + set image [image create photo -file $ROOTDIR/$LIBDIR/icons/tiny/$b.gif] + + ttk::button $mf.left.$b \ + -image $image -style Toolbutton \ + -command "setActiveTool $b" + + pack $mf.left.$b -side bottom + # hover status line + switch -exact -- $b { + rectangle { set msg "Add a Rectangle" } + oval { set msg "Add an Oval" } + freeform { set msg "Add a Freeform" } + text { set msg "Add a Textbox" } + default { set msg "" } + } + bind $mf.left.$b ".bottom.textbox config -text {$msg}" + bind $mf.left.$b ".bottom.textbox config -text {}" +} + +foreach b $all_modules_list { + set $b [image create photo -file [$b.icon normal]] + set $b\_iconwidth [image width [set $b]] + set $b\_iconheight [image height [set $b]] +} +set pseudo [image create photo] +set pseudo_iconwidth 0 +set pseudo_iconheight 0 + +. configure -background #808080 +ttk::frame $mf.grid +ttk::frame $mf.hframe +ttk::frame $mf.vframe +set c [canvas $mf.c -bd 0 -relief sunken -highlightthickness 0\ + -background gray \ + -xscrollcommand "$mf.hframe.scroll set" \ + -yscrollcommand "$mf.vframe.scroll set"] + +canvas $mf.hframe.t -width 160 -height 18 -bd 0 -highlightthickness 0 \ + -background #d9d9d9 \ + -xscrollcommand "$mf.hframe.ts set" +bind $mf.hframe.t <1> { + upvar 0 ::cf::[set ::curcfg]::curcanvas curcanvas + + set canvas [lindex [$mf.hframe.t gettags current] 1] + if { $canvas != "" && $canvas != $curcanvas } { + set curcanvas $canvas + switchCanvas none + } +} +bind $mf.hframe.t { + upvar 0 ::cf::[set ::curcfg]::curcanvas curcanvas + + set canvas [lindex [$mf.hframe.t gettags current] 1] + if { $canvas != "" } { + if { $canvas != $curcanvas } { + set curcanvas $canvas + switchCanvas none + } else { + renameCanvasPopup + } + } else { + newCanvas "" + switchCanvas last + set changed 1 + updateUndoLog + } +} +#scrollbar $mf.hframe.scroll -orient horiz -command "$c xview" \ +# -bd 1 -width 14 +#scrollbar $mf.vframe.scroll -command "$c yview" \ +# -bd 1 -width 14 +#scrollbar $mf.hframe.ts -orient horiz -command "$mf.hframe.t xview" \ +# -bd 1 -width 14 + +ttk::scrollbar $mf.hframe.scroll -orient horiz -command "$c xview" +ttk::scrollbar $mf.vframe.scroll -command "$c yview" +ttk::scrollbar $mf.hframe.ts -orient horiz -command ".panwin.f1.hframe.t xview" +pack $mf.hframe.ts -side left -padx 0 -pady 0 +pack $mf.hframe.t -side left -padx 0 -pady 0 -fill both -expand true +pack $mf.hframe.scroll -side left -padx 0 -pady 0 -fill both -expand true +pack $mf.vframe.scroll -side top -padx 0 -pady 0 -fill both -expand true +pack $mf.grid -expand yes -fill both -padx 1 -pady 1 +grid rowconfig $mf.grid 0 -weight 1 -minsize 0 +grid columnconfig $mf.grid 0 -weight 1 -minsize 0 +grid $mf.c -in $mf.grid -row 0 -column 0 \ + -rowspan 1 -columnspan 1 -sticky news +grid $mf.vframe -in $mf.grid -row 0 -column 1 \ + -rowspan 1 -columnspan 1 -sticky news +grid $mf.hframe -in $mf.grid -row 1 -column 0 \ + -rowspan 1 -columnspan 1 -sticky news + +ttk::frame .bottom +pack .bottom -side bottom -fill x +pack propagate $mf 0 +ttk::label .bottom.textbox -relief sunken -anchor w -width 999 +ttk::label .bottom.zoom -relief sunken -anchor w -width 10 +bind .bottom.zoom "selectZoom %X %Y" +bind .bottom.zoom <3> "selectZoomPopupMenu %X %Y" +ttk::label .bottom.cpu_load -relief sunken -anchor e -width 9 +ttk::label .bottom.mbuf -relief sunken -anchor w -width 15 +ttk::label .bottom.oper_mode -relief sunken -anchor w -width 9 +ttk::label .bottom.experiment_id -relief sunken -anchor w -width 20 +pack .bottom.experiment_id .bottom.oper_mode .bottom.mbuf .bottom.cpu_load \ + .bottom.zoom .bottom.textbox -side right -padx 0 -fill both + +# +# Event bindings and procedures for main canvas: +# +$c bind node "nodeEnter $c" +$c bind nodelabel "nodeEnter $c" +$c bind link "linkEnter $c" +$c bind linklabel "linkEnter $c" +$c bind node "anyLeave $c" +$c bind nodelabel "anyLeave $c" +$c bind link "anyLeave $c" +$c bind linklabel "anyLeave $c" + +$c bind node "nodeConfigGUI $c {}" +$c bind nodelabel "nodeConfigGUI $c {}" + +$c bind grid "double1onGrid $c %x %y" + +$c bind link "linkConfigGUI $c {}" +$c bind linklabel "linkConfigGUI $c {}" + +$c bind oval "annotationConfigGUI $c" +$c bind rectangle "annotationConfigGUI $c" +$c bind text "annotationConfigGUI $c" +$c bind freeform "annotationConfigGUI $c" + +$c bind text "textInsert $c %A" +$c bind text "textInsert $c \\n" +$c bind node <3> "button3node $c %x %y" +$c bind nodelabel <3> "button3node $c %x %y" +$c bind link <3> "button3link $c %x %y" +$c bind linklabel <3> "button3link $c %x %y" + +$c bind route "anyLeave $c" +$c bind route "anyLeave $c" +$c bind showCfgPopup "anyLeave $c" +$c bind text "anyLeave $c" + +$c bind oval <3> "button3annotation oval $c %x %y" +$c bind rectangle <3> "button3annotation rectangle $c %x %y" +$c bind text <3> "button3annotation text $c %x %y" +$c bind freeform <3> "button3annotation freeform $c %x %y" + +$c bind selectmark "selectmarkEnter $c %x %y" +$c bind selectmark "selectmarkLeave $c %x %y" + +$c bind background <3> "button3background $c %x %y" +#$c bind grid <3> "button3background $c %x %y" + +bind $c <1> "button1 $c %x %y none" +bind $c "button1 $c %x %y ctrl" +bind $c "button1-motion $c %x %y" +bind $c "button1-release $c %x %y" +bind . deleteSelection + +# Scrolling and panning support +bind $c <2> "$c scan mark %x %y" +bind $c "$c scan dragto %x %y 1" +bind $c <4> "$c yview scroll 1 units" +bind $c <5> "$c yview scroll -1 units" +bind . "$mf.c xview scroll 1 units" +bind . "$mf.c xview scroll -1 units" +bind . "$mf.c yview scroll 1 units" +bind . "$mf.c yview scroll -1 units" + +# Escape to Select mode +bind . "setActiveTool select; selectNode $c none" +bind . "redrawAll" + +# +# Popup-menu hierarchy +# +menu .button3menu -tearoff 0 +menu .button3menu.connect -tearoff 0 +menu .button3menu.moveto -tearoff 0 +menu .button3menu.shell -tearoff 0 +menu .button3menu.wireshark -tearoff 0 +menu .button3menu.tcpdump -tearoff 0 +menu .button3menu.canvases -tearoff 0 +menu .button3menu.icon -tearoff 0 +menu .button3menu.transform -tearoff 0 +menu .button3menu.sett -tearoff 0 +menu .button3menu.services -tearoff 0 + +menu .button3logifc -tearoff 0 +# +# Invisible pseudo links +# +set invisible -1 +bind . { + global invisible + set invisible [expr $invisible * -1] + redrawAll +} + +focus -force . diff --git a/configfiles/usr/share/pixmaps/iut.png b/configfiles/usr/share/pixmaps/iut.png new file mode 100644 index 0000000..8e0bb63 Binary files /dev/null and b/configfiles/usr/share/pixmaps/iut.png differ diff --git a/scripts/sandbox-install b/install.sh similarity index 74% rename from scripts/sandbox-install rename to install.sh index fee8339..3248a59 100644 --- a/scripts/sandbox-install +++ b/install.sh @@ -1,24 +1,22 @@ #!/bin/bash -# This script is used to install and setup a sandbox. - PACKAGES=( - "linux-lts" "linux-firmware" "base" "base-devel" "syslinux" "vi" "emacs" "vim" "nano" + "linux-lts" "linux-firmware" "base" "base-devel" "grub" "vi" "emacs" "vim" "nano" "micro" "neovim" "bash-completion" "btop" "gdu" "git" "curl" "wget" "rsync" "unzip" "zip" "gdb" "jdk-openjdk" "openjdk-doc" "tcpdump" "openssh" "bind" "inetutils" "nmap" "firefox" "firefox-i18n-fr" "libreoffice" "libreoffice-fr" "rpcbind" "nfs-utils" "xfce4" "xfce4-goodies" "yakuake" "gimp" "xorg" "xf86-video-vesa" "xf86-video-dummy" "ttf-dejavu" "ttf-liberation" "ttf-bitstream-vera" "acpid" "sdl12-compat" "sdl_ttf" "sdl_gfx" "sdl_image" "sdl_mixer" "sdl_net" "sdl_sound" "sdl2_gfx" "sdl2_image" - "sdl2_mixer" "sdl2_net" "sdl2_ttf" "dosfstools" "ntfs-3g" "ntp" "subversion" "cvs" + "sdl2_mixer" "sdl2_net" "sdl2_ttf" "dosfstools" "ntfs-3g" "subversion" "cvs" "cifs-utils" "breezy" "python" "wireshark-qt" "wireshark-cli" "evince" "dbus" "mlocate" "gvfs" "strace" "net-tools" "postfix" "sudo" "gtksourceview3" "mplayer" "cronie" "optipng" "lib32-glibc" "libvirt" "qt5" "xterm" "graphviz" "vlc" "pulseaudio" "pulseaudio-alsa" - "tmux" "sleuthkit" "tk" "tcl" "junit" "lightdm" "samba" "bind" "krb5" "tree" + "tmux" "sleuthkit" "tk" "tcl" "junit" "lightdm" "samba" "bind" "krb5" "tree" "pam_mount" "time" "noto-fonts" "noto-fonts-cjk" "noto-fonts-emoji" "noto-fonts-extra" "numlockx" "lightdm-gtk-greeter" "tigervnc" "xfce4-pulseaudio-plugin" "docker" "docker-compose" "android-tools" "opam" "jdk17-openjdk" "vde2" "shellcheck" "man-db" "man-pages" - "man-pages-fr" "duf" "eza" "bat" "clang" "socat" "iputils" "termshark" + "man-pages-fr" "duf" "eza" "bat" "clang" "socat" "iputils" "termshark" "cups" "cups-pdf" ) PACKAGES_AUR=( @@ -32,30 +30,20 @@ PACKAGES_AUR=( SERVICES=( "systemd-networkd.service" "systemd-resolved.service" "systemd-timesyncd.service" - "docker.service" "ovs-vswitchd.service" + "docker.service" "ovs-vswitchd.service" "cups.service" "smb" "nmb" "winbind" ) # Enable time synchronization timedatectl set-ntp true -# Enable parallel downloads in pacman +# Increase parallel downloads in pacman sed -i "s/#ParallelDownloads = 5/ParallelDownloads = 16/" /etc/pacman.conf # Update the keyring pacman -Sy --noconfirm archlinux-keyring -# Install the base system -#pacstrap -K /mnt "${PACKAGES[@]}" pacman -S "${PACKAGES[@]}" -# Generate the fstab file -#genfstab -U /mnt >>/mnt/etc/fstab - -# Chroot into the new system -#arch-chroot /mnt /bin/bash < /etc/locale.conf # Set the keyboard layout echo "KEYMAP=fr-latin1" > /etc/vconsole.conf -# Set the hostname -echo "salle222-" > /etc/hostname +echo "template" > /etc/hostname -# Install syslinux -#syslinux-install_update -iam +mkdir /mnt/hd +echo " +iluvatar.iut-fbleau.fr:/export /export nfs rw,hard,intr,nodev,nosuid,proto=tcp,retrans=2 0 0 + +/dev/loop0 /mnt/hd ext3 user,noauto,loop 0 0 +/tmp/image.ext3 /mnt/hd ext3 user,noauto,loop 0 0 +" >> /etc/fstab + +# Droits sur tcpdump +chmod 4755 /usr/sbin/tcpdump + +# Droits d'accès à kpageflags et startx +chmod 444 /proc/kpageflags +chmod 700 /usr/bin/startx + +#on suid dumpcap pour wireshark +chmod 4755 /usr/bin/dumpcap + +chmod 700 /usr/bin/wall # Disable multicast DNS and LLMNR sed -i 's/#LLMNR=no/LLMNR=no/g' /etc/systemd/resolved.conf @@ -94,33 +98,13 @@ DHCP=yes # Enable case-insensitive completion echo 'set completion-ignore-case On' >> /etc/inputrc -# Install AUR packages -useradd --no-user-group -g users --create-home --home-dir /tmp/aur-install aur-install -echo "aur-install ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/aur-install -su aur-install -cd /tmp/aur-install -git clone https://aur.archlinux.org/yay.git -cd yay -makepkg --syncdeps --install --needed --noconfirm -yay -Syu --noconfirm "${PACKAGES_AUR[@]}" -exit -rm /etc/sudoers.d/aur-install -userdel --remove --force aur-install +# Create local users +useradd -d /home/user1 -g users -m -s /bin/bash -c "Utilisateur local" user1 +echo "user1:user1" | chpasswd -# Android Studio config -echo " -# DRI video devices -SUBSYSTEM==\"drm\", KERNEL==\"card*|renderD*\", MODE=\"0666\" - -# Enable access to virtualization device to all users -SUBSYSTEM==\"misc\", KERNEL==\"kvm\", MODE=\"0666\" -" >> /etc/udev/rules.d/65-kvm.rules -# ajouter le fichier /etc/X11/xorg.conf.d/20-radeon.conf -echo "Section \"DRI\" - Mode 0666 -EndSection" >> /etc/X11/xorg.conf.d/20-radeon.conf -chmod 1755 /opt/android-sdk/platform-tools/adb -chmod 1755 /opt/android-sdk/tools/emulator +useradd -d /home/util -g users -m -s /bin/bash -c "Utilisateur local 2" util +echo "mot de passe de util" +passwd util # Installation de la librairie graphique de Denis cd /tmp @@ -131,13 +115,28 @@ cd bibliotheque-graphique make make install +su - util <<'EOF' +cd /tmp +git clone https://aur.archlinux.org/yay.git +cd yay +makepkg --syncdeps --install --needed --noconfirm + +yay -Syu --noconfirm "${PACKAGES_AUR[@]}" +EOF + # Fix Oracle SQL Developer sed -i '/^#!\/bin\/bash/a export JAVA_HOME=\/usr\/lib\/jvm\/java-17-openjdk\nexport LD_LIBRARY_PATH=\/usr\/lib\/jvm\/java-17-openjdk\/lib\/server:\/usr\/lib\/jvm\/java-17-openjdk\/lib' /usr/bin/oracle-sqldeveloper +# Android Studio config +chmod 1755 /opt/android-sdk/platform-tools/adb +chmod 1755 /opt/android-sdk/tools/emulator + +# Patch Imunes +sed -i '/readConfigFile/s/^/#/' /usr/lib/imunes/imunes.tcl + # Enable the services systemctl enable "${SERVICES[@]}" - -EOF +cp -R configfiles/* / # DNS configuration ln -sf ../run/systemd/resolve/stub-resolv.conf /mnt/etc/resolv.conf diff --git a/src/auth.h b/src/auth.h deleted file mode 100644 index cbbb812..0000000 --- a/src/auth.h +++ /dev/null @@ -1,4 +0,0 @@ -#pragma once - -#include "utils.h" - diff --git a/src/cache.h b/src/cache.h deleted file mode 100644 index cbbb812..0000000 --- a/src/cache.h +++ /dev/null @@ -1,4 +0,0 @@ -#pragma once - -#include "utils.h" - diff --git a/src/config.c b/src/config.c deleted file mode 100644 index 11eddfc..0000000 --- a/src/config.c +++ /dev/null @@ -1,136 +0,0 @@ -#include "config.h" - -#include -#include -#include -#include -#include - -result_t init_config(config_t** _config) { - result_t result; - - // Allocate the configuration. - config_t* config = (config_t*)malloc(sizeof(config_t)); - if (config == NULL) { - result = failure("Failed to allocate memory for the configuration (%s).", strerror(errno)); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Read the configuration file. - char* config_json; - result = read_file(&config_json, NULL, CONFIGURATION_FILE); - if (result != success()) { - result = failure("Failed to read the configuration file '%s'.", CONFIGURATION_FILE); - verbose("Exception -> %s", last_error()); - - free(config); - - return result; - } - - // Parse the configuration JSON text. - json_object* root = json_tokener_parse(config_json); - if (root == NULL) { - result = failure("Failed to parse the configuration JSON."); - verbose("Exception -> %s", last_error()); - - free(config_json); - free(config); - - return result; - } - - // Free the configuration JSON text as it is no longer needed. - free(config_json); - - // Get the container pool path. - json_object* container_pool; - if (!json_object_object_get_ex(root, "container-pool", &container_pool)) { - result = failure("Failed to get the container pool path from the configuration JSON."); - verbose("Exception -> %s", last_error()); - - json_object_put(root); - free(config); - - return result; - } - - // Get the container pool path string. - const char* container_pool_string = json_object_get_string(container_pool); - if (container_pool_string == NULL) { - result = failure("Failed to parse the container pool path from the configuration JSON."); - verbose("Exception -> %s", last_error()); - - json_object_put(root); - free(config); - } - - // Get the image pool path. - json_object* image_pool; - if (!json_object_object_get_ex(root, "image-pool", &image_pool)) { - result = failure("Failed to get the image pool path from the configuration JSON."); - verbose("Exception -> %s", last_error()); - - json_object_put(root); - free(config); - - return result; - } - - // Get the image pool path string. - const char* image_pool_string = json_object_get_string(image_pool); - if (image_pool_string == NULL) { - result = failure("Failed to parse the image pool path from the configuration JSON."); - verbose("Exception -> %s", last_error()); - - json_object_put(root); - free(config); - } - - // Set the container pool path in the configuration. - config->container_pool = strdup(container_pool_string); - if (config->container_pool == NULL) { - result = failure("Failed to allocate memory for the container pool path."); - verbose("Exception -> %s", last_error()); - - json_object_put(root); - free(config); - - return result; - } - verbose("Configuration -> Container pool: %s", config->container_pool); - - // Set the image pool path in the configuration. - config->image_pool = strdup(image_pool_string); - if (config->image_pool == NULL) { - result = failure("Failed to allocate memory for the image pool path."); - verbose("Exception -> %s", last_error()); - - json_object_put(root); - free(config->container_pool); - free(config); - - return result; - } - verbose("Configuration -> image pool: %s", config->image_pool); - - // Set the configuration if requested. - if (_config != NULL) - *_config = config; - else - free_config(config); - - // Free the configuration JSON. - json_object_put(root); - - return success(); -} - -void free_config(config_t* config) { - free(config->container_pool); - free(config->image_pool); - - free(config); -} diff --git a/src/config.h b/src/config.h deleted file mode 100644 index 4f366c4..0000000 --- a/src/config.h +++ /dev/null @@ -1,22 +0,0 @@ -#pragma once - -#include "utils.h" - -#define CONFIGURATION_FILE "/etc/sandbox.d/config.json" - -/// @brief Structure used to store the program configuration. -typedef struct { - /// @brief The path of the directory where the containers are stored. - char* container_pool; - /// @brief The path of the directory where the images are stored. - char* image_pool; -} config_t; - -/// @brief Initializes the program configuration. -/// @param _config The pointer to where the configuration should be stored. -/// @return The result of the operation. -result_t init_config(config_t** _config); - -/// @brief Frees the program configuration. -/// @param config The configuration to free. -void free_config(config_t* config); diff --git a/src/container.c b/src/container.c deleted file mode 100644 index db28417..0000000 --- a/src/container.c +++ /dev/null @@ -1,650 +0,0 @@ -#include "container.h" -#include "image.h" -#include "disk.h" - -#include -#include -#include -#include -#include -#include -#include - -result_t check_container_identifier(const char* identifier) { - result_t result; - - // Check that the identifier is not null. - if (identifier == NULL) { - result = failure("The specified container identifier is null."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Check that the identifier is not empty. - size_t length = strlen(identifier); - if (length == 0) { - result = failure("The specified container identifier is empty."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Check that the identifier is not too long. - if (length > MAX_CONTAINER_IDENTIFIER_LENGTH) { - result = failure("The specified container identifier is too long (maximum length is %d).", MAX_CONTAINER_IDENTIFIER_LENGTH); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Check that the identifier contains only alphanumeric characters and underscores. - for (size_t i = 0; i < length; i++) { - if (isalnum(identifier[i])) - continue; - if ((identifier[i] == '_' || identifier[i] == '-' || identifier[i] == '.') && i > 0) - continue; - - result = failure("The specified container identifier contains an invalid character '%c' at index %zu.", identifier[i], i); - verbose("Exception -> %s", last_error()); - - return result; - } - - return success(); -} - -result_t check_container_exists(bool* _exists, const config_t* config, const char* identifier) { - result_t result; - - // Get the container path. - char* path; - result = get_container_path(&path, config, identifier); - if (result != success()) { - result = failure("Failed to get the container path."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Check that the container exists. - struct stat st; - if (stat(path, &st) == -1) { - if (errno == ENOENT) { - free(path); - - // The container does not exist. - *_exists = false; - - verbose("The container '%s' does not exist.", identifier); - - return success(); - } - - result = failure("Failed to check whether the container exists."); - verbose("Exception -> %s", last_error()); - - free(path); - - return result; - } - - free(path); - - // Check that the container is a regular file. - if (!S_ISREG(st.st_mode)) { - result = failure("The specified container path is not a regular file."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // The container exists and is a regular file. - *_exists = true; - - verbose("The container '%s' exists.", identifier); - - return success(); -} - -result_t get_container_pool_path(char** _path, const config_t* config) { - result_t result; - - // Check that the configuration is not null. - if (config == NULL) { - result = failure("The specified program configuration is null."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Create a copy of the container pool path. - char* path = strdup(config->container_pool); - if (path == NULL) { - result = failure("Failed to copy the container pool path."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Set the container pool path. - *_path = path; - - return success(); -} - -result_t get_container_path(char** _path, const config_t* config, const char* identifier) { - result_t result; - - // Check that the identifier is valid. - result = check_container_identifier(identifier); - if (result != success()) { - result = failure("The specified container identifier is invalid."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Get the container pool path. - char* container_pool; - result = get_container_pool_path(&container_pool, config); - if (result != success()) { - result = failure("Failed to get the container pool path."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Append the identifier to the container pool path. - char* path; - if (asprintf(&path, "%s/%s", container_pool, identifier) == -1) { - result = failure("Failed to allocate memory for the container path."); - verbose("Exception -> %s", last_error()); - - free(container_pool); - - return result; - } - - // Free the container pool path. - free(container_pool); - - // Set the container path. - *_path = path; - - return success(); -} - -result_t add_root_container(const config_t* config, const char* identifier, size_t size) { - result_t result; - - // Check that the container does not already exist. - bool exists; - result = check_container_exists(&exists, config, identifier); - if (result != success()) { - result = failure("Failed to check whether the container exists."); - verbose("Exception -> %s", last_error()); - - return result; - } - - if (exists) { - result = failure("The specified container already exists."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Get the container path. - char* path; - result = get_container_path(&path, config, identifier); - if (result != success()) { - result = failure("Failed to get the container path."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Create the container disk. - result = create_root_disk(path, size); - if (result != success()) { - result = failure("Failed to create the container disk."); - verbose("Exception -> %s", last_error()); - - free(path); - - return result; - } - - // Free the container path. - free(path); - - verbose("Successfully added root container '%s' to the container pool, with a size of %zu bytes.", identifier, size); - - return success(); -} - -result_t add_backed_container(const config_t* config, const char* identifier, const char* image) { - result_t result; - - // Check that the container does not already exist. - bool exists; - result = check_container_exists(&exists, config, identifier); - if (result != success()) { - result = failure("Failed to check whether the container exists."); - verbose("Exception -> %s", last_error()); - - return result; - } - - if (exists) { - result = failure("The specified container already exists."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Get the container path. - char* path; - result = get_container_path(&path, config, identifier); - if (result != success()) { - result = failure("Failed to get the container path."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Get the image path. - char* image_path; - result = get_image_path(&image_path, config, image); - if (result != success()) { - result = failure("Failed to get the image path."); - verbose("Exception -> %s", last_error()); - - free(path); - - return result; - } - - // Create the container disk. - result = create_backed_disk(path, image_path); - if (result != success()) { - result = failure("Failed to create the container disk."); - verbose("Exception -> %s", last_error()); - - free(image_path); - free(path); - - return result; - } - - // Free the image path. - free(image_path); - - // Free the container path. - free(path); - - verbose("Successfully added backed container '%s' to the container pool, backed by the image '%s'.", identifier, image); - - return success(); -} - -result_t remove_container(const config_t* config, const char* identifier) { - result_t result; - - // Check that the container exists. - bool exists; - result = check_container_exists(&exists, config, identifier); - if (result != success()) { - result = failure("Failed to check whether the container exists."); - verbose("Exception -> %s", last_error()); - - return result; - } - - if (!exists) { - result = failure("The specified container does not exist."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Get the container path. - char* path; - result = get_container_path(&path, config, identifier); - if (result != success()) { - result = failure("Failed to get the container path."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Remove the container disk. - if (remove(path) == -1) { - result = failure("Failed to remove the container disk (%s).", strerror(errno)); - verbose("Exception -> %s", last_error()); - - free(path); - - return result; - } - - // Free the container path. - free(path); - - verbose("Successfully removed the container '%s' from the container pool.", identifier); - - return success(); -} - -result_t reset_container(const config_t* config, const char* identifier) { - result_t result; - - // Check that the container exists. - bool exists; - result = check_container_exists(&exists, config, identifier); - if (result != success()) { - result = failure("Failed to check whether the container exists."); - verbose("Exception -> %s", last_error()); - - return result; - } - - if (!exists) { - result = failure("The specified container does not exist."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Get the container path. - char* path; - result = get_container_path(&path, config, identifier); - if (result != success()) { - result = failure("Failed to get the container path."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Reset the container disk. - result = reset_disk(path); - if (result != success()) { - result = failure("Failed to reset the container disk."); - verbose("Exception -> %s", last_error()); - - free(path); - - return result; - } - - // Free the container path. - free(path); - - verbose("Successfully reset the container '%s'.", identifier); - - return success(); -} - -result_t trim_container(const config_t* config, const char* identifier) { - result_t result; - - // Check that the container exists. - bool exists; - result = check_container_exists(&exists, config, identifier); - if (result != success()) { - result = failure("Failed to check whether the container exists."); - verbose("Exception -> %s", last_error()); - - return result; - } - - if (!exists) { - result = failure("The specified container does not exist."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Get the container path. - char* path; - result = get_container_path(&path, config, identifier); - if (result != success()) { - result = failure("Failed to get the container path."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Trim the container disk. - result = trim_disk(path); - if (result != success()) { - result = failure("Failed to trim the container disk."); - verbose("Exception -> %s", last_error()); - - free(path); - - return result; - } - - // Free the container path. - free(path); - - verbose("Successfully trimmed the container '%s'.", identifier); - - return success(); -} - -result_t list_containers(char*** _identifiers, size_t* _count, const config_t* config) { - result_t result; - - // Get the container pool path. - char* container_pool; - result = get_container_pool_path(&container_pool, config); - if (result != success()) { - result = failure("Failed to get the container pool path."); - verbose("Exception -> %s", last_error()); - - return result; - } - - char** identifiers; - size_t count; - result = list_files(&identifiers, &count, container_pool, check_container_identifier); - if (result != success()) { - result = failure("Failed to list the containers in the pool."); - verbose("Exception -> %s", last_error()); - - free(container_pool); - - return result; - } - - // Free the container pool path. - free(container_pool); - - // Set the list of identifiers. - if (_identifiers != NULL) - *_identifiers = identifiers; - else { - for (size_t i = 0; i < count; i++) - free(identifiers[i]); - free(identifiers); - } - - // Set the count of identifiers. - if (_count != NULL) - *_count = count; - - verbose("The container pool contains %zu containers.", count); - - return success(); -} - -result_t get_container_pool_space(size_t* _space, const config_t* config) { - result_t result; - - // Get the container pool path. - char* container_pool; - result = get_container_pool_path(&container_pool, config); - if (result != success()) { - result = failure("Failed to get the container pool path."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Get the available space in the container pool. - struct statvfs st; - if (statvfs(container_pool, &st) == -1) { - result = failure("Failed to get the available space in the container pool (%s).", strerror(errno)); - verbose("Exception -> %s", last_error()); - - free(container_pool); - - return result; - } - - // Free the container pool path. - free(container_pool); - - // Set the available space. - *_space = st.f_bsize * st.f_bavail; - - verbose("The available space in the container pool is %zu bytes.", st.f_bsize * st.f_bavail); - - return success(); -} - -result_t find_oldest_container(char** _identifier, const config_t* config) { - result_t result; - - // Get the list of containers. - char** identifiers; - size_t count; - result = list_containers(&identifiers, &count, config); - if (result != success()) { - result = failure("Failed to find the oldest container due to a failure to list the containers."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Find the oldest container. - time_t oldest_time = 0; - char* oldest_identifier = NULL; - - for (size_t i = 0; i < count; i++) { - // Get the container path. - char* path; - result = get_container_path(&path, config, identifiers[i]); - if (result != success()) { - verbose("Skipping the container '%s' due to an exception.", identifiers[i]); - - continue; - } - - // Get the last access time of the container. - struct stat st; - if (stat(path, &st) == -1) { - verbose("Skipping the container '%s' due to a failure to get the last access time.", identifiers[i]); - - free(path); - - continue; - } - - // Check if the container is the oldest. - if (oldest_identifier == NULL || st.st_mtime < oldest_time) { - oldest_time = st.st_mtime; - oldest_identifier = identifiers[i]; - } - - // Free the container path. - free(path); - } - - // Set the oldest container identifier. - if (oldest_identifier != NULL) { - oldest_identifier = strdup(oldest_identifier); - if (oldest_identifier == NULL) { - result = failure("Failed to allocate memory for the oldest container identifier."); - verbose("Exception -> %s", last_error()); - - for (size_t i = 0; i < count; i++) - free(identifiers[i]); - free(identifiers); - - return result; - } - } - - // Free the list of containers. - for (size_t i = 0; i < count; i++) - free(identifiers[i]); - free(identifiers); - - verbose("The oldest container in the pool is '%s'.", oldest_identifier); - - // Set the oldest container identifier. - *_identifier = oldest_identifier; - - return success(); -} - -result_t reserve_container_pool_space(const config_t* config, size_t space) { - result_t result; - - for (;;) { - // Get the available space in the container pool. - size_t available_space; - result = get_container_pool_space(&available_space, config); - if (result != success()) { - result = failure("Failed to reserve the container pool space due to a failure to get the available space."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Check if the available space is sufficient. - if (available_space >= space) { - verbose("Successfully reserved %zu bytes in the container pool.", space); - - return success(); - } - - verbose("Insufficient space in the container pool (Wanted: %zu bytes, Available: %zu bytes). Removing the oldest container.", space, available_space); - - // Find the oldest container. - char* oldest_identifier; - result = find_oldest_container(&oldest_identifier, config); - if (result != success()) { - result = failure("Failed to reserve the container pool space due to a failure to find the oldest container."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Check if there are no containers to remove. - if (oldest_identifier == NULL) { - result = failure("Insufficient space in the container pool (Wanted: %zu bytes, Available: %zu bytes), and no more containers to remove.", space, available_space); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Remove the oldest container. - result = remove_container(config, oldest_identifier); - if (result != success()) { - result = failure("Failed to reserve the container pool space due to a failure to remove the oldest container."); - verbose("Exception -> %s", last_error()); - - free(oldest_identifier); - - return result; - } - - // Free the oldest container identifier. - free(oldest_identifier); - } -} diff --git a/src/container.h b/src/container.h deleted file mode 100644 index 62bc7ec..0000000 --- a/src/container.h +++ /dev/null @@ -1,89 +0,0 @@ -#pragma once - -#include "utils.h" -#include "config.h" - -/// @brief The maximum length of a container identifier. -#define MAX_CONTAINER_IDENTIFIER_LENGTH 64 - -/// @brief Checks whether the specified container identifier is valid. This call will return an error with a message describing the problem if the identifier is invalid. -/// @param identifier The identifier to check. -/// @return The result of the operation. -result_t check_container_identifier(const char* identifier); - -/// @brief Checks whether the specified container exists. -/// @param _exists The pointer to where the result should be stored. -/// @param config The program configuration to use. -/// @param identifier The identifier of the container to check. -/// @return The result of the operation. -result_t check_container_exists(bool* _exists, const config_t* config, const char* identifier); - -/// @brief Returns the path of the container pool directory. -/// @param _path The pointer to where the path should be stored. The caller is responsible for freeing the memory. -/// @param config The program configuration to use. -/// @return The result of the operation. -result_t get_container_pool_path(char** _path, const config_t* config); - -/// @brief Returns the path of the specified container. -/// @param _path The pointer to where the path should be stored. The caller is responsible for freeing the memory. -/// @param config The program configuration to use. -/// @param identifier The identifier of the container. -/// @return The result of the operation. -result_t get_container_path(char** _path, const config_t* config, const char* identifier); - -/// @brief Adds a new root container to the pool, with the specified identifier and size. -/// @param config The program configuration to use. -/// @param identifier The identifier of the container to add. -/// @param size The size of the container to add, in bytes. -/// @return The result of the operation. -result_t add_root_container(const config_t* config, const char* identifier, size_t size); - -/// @brief Adds a new backed container to the pool, with the specified identifier and image. -/// @param config The program configuration to use. -/// @param identifier The identifier of the container to add. -/// @param image The identifier of the image to use. -/// @return The result of the operation. -result_t add_backed_container(const config_t* config, const char* identifier, const char* image); - -/// @brief Removes the specified container from the pool. -/// @param config The program configuration to use. -/// @param identifier The identifier of the container to remove. -/// @return The result of the operation. -result_t remove_container(const config_t* config, const char* identifier); - -/// @brief Resets the specified container to its original state. -/// @param config The program configuration to use. -/// @param identifier The identifier of the container to reset. -/// @return The result of the operation. -result_t reset_container(const config_t* config, const char* identifier); - -/// @brief Trims the specified container. -/// @param config The program configuration to use. -/// @param identifier The identifier of the container to trim. -/// @return The result of the operation. -result_t trim_container(const config_t* config, const char* identifier); - -/// @brief Lists the containers in the pool. -/// @param _identifiers The pointer to where the list of identifiers should be stored. The caller is responsible for freeing the strings and the array. -/// @param _count The pointer to where the count of identifiers should be stored. -/// @param config The program configuration to use. -/// @return The result of the operation. -result_t list_containers(char*** _identifiers, size_t* _count, const config_t* config); - -/// @brief Returns the available space in the pool. -/// @param _space The pointer to where the available space should be stored, in bytes. -/// @param config The program configuration to use. -/// @return The result of the operation. -result_t get_container_pool_space(size_t* _space, const config_t* config); - -/// @brief Find the oldest container in the pool. -/// @param _identifier The pointer to where the identifier of the oldest container should be stored. -/// @param config The program configuration to use. -/// @return The result of the operation. -result_t find_oldest_container(char** _identifier, const config_t* config); - -/// @brief Reserves the specified space in the pool by removing the oldest containers. -/// @param config The program configuration to use. -/// @param space The space to reserve, in bytes. -/// @return The result of the operation. -result_t reserve_container_pool_space(const config_t* config, size_t space); \ No newline at end of file diff --git a/src/disk.c b/src/disk.c deleted file mode 100644 index f0db756..0000000 --- a/src/disk.c +++ /dev/null @@ -1,450 +0,0 @@ -#include "disk.h" - -#include -#include -#include -#include - -result_t read_disk_info(disk_info_t** _info, const char* disk) { - result_t result; - - // Execute the qemu-img info to get the disk information in JSON format. - int exit_code; - char* stdout_buffer; - char* stderr_buffer; - - result = execute_file(&exit_code, &stdout_buffer, NULL, &stderr_buffer, NULL, NULL, "/usr/bin/qemu-img", "info", "--output", "json", disk, NULL); - - if (result != success()) { - result = failure("Failed to execute qemu-img info on the disk '%s'.", disk); - verbose("Exception -> %s", last_error()); - - return result; - } - - // If the exit code is not 0, return the standard error. - if (exit_code != 0) { - // Remove all newlines from the standard error. - for (size_t i = 0; stderr_buffer[i] != '\0'; i++) - if (stderr_buffer[i] == '\n') - stderr_buffer[i] = ' '; - char* error = trim(stderr_buffer); - - result = failure("Failed to get information about the disk '%s' (%s).", disk, error); - verbose("Exception -> %s", last_error()); - - free(error); - free(stdout_buffer); - free(stderr_buffer); - - return result; - } - - // Free the standard error buffer as it is no longer needed. - free(stderr_buffer); - - // Parse the JSON text. - json_object* root = json_tokener_parse(stdout_buffer); - if (root == NULL) { - result = failure("Failed to parse the JSON text."); - verbose("Exception -> %s", last_error()); - - free(stdout_buffer); - - return result; - } - - // Free the standard output buffer as it is no longer needed. - free(stdout_buffer); - - // Get the virtual size. - json_object* virtual_size_json; - if (!json_object_object_get_ex(root, "virtual-size", &virtual_size_json)) { - result = failure("Failed to get the virtual size from the JSON."); - verbose("Exception -> %s", last_error()); - - json_object_put(root); - - return result; - } - - // Get the virtual size as a uint64_t. - errno = 0; - uint64_t virtual_size = json_object_get_int64(virtual_size_json); - if (errno != 0) { - result = failure("Failed to parse the virtual size from the JSON (%s).", strerror(errno)); - verbose("Exception -> %s", last_error()); - - json_object_put(root); - - return result; - } - - // Get the actual size. - json_object* actual_size_json; - if (!json_object_object_get_ex(root, "actual-size", &actual_size_json)) { - result = failure("Failed to get the actual size from the JSON."); - verbose("Exception -> %s", last_error()); - - json_object_put(root); - - return result; - } - - // Get the actual size as a uint64_t. - errno = 0; - uint64_t actual_size = json_object_get_int64(actual_size_json); - if (errno != 0) { - result = failure("Failed to parse the actual size from the JSON (%s).", strerror(errno)); - verbose("Exception -> %s", last_error()); - - json_object_put(root); - - return result; - } - - // Get the backing path. - char* backing_path = NULL; - char* backing_name = NULL; - - json_object* backing_path_json; - if (json_object_object_get_ex(root, "backing-filename", &backing_path_json)) { - // Get the backing path string. - const char* backing_path_string = json_object_get_string(backing_path_json); - if (backing_path_string == NULL) { - result = failure("Failed to parse the backing path from the JSON."); - verbose("Exception -> %s", last_error()); - - json_object_put(root); - - return result; - } - - // Get the backing path. - backing_path = strdup(backing_path_string); - if (backing_path == NULL) { - result = failure("Failed to allocate memory for the backing path."); - verbose("Exception -> %s", last_error()); - - json_object_put(root); - - return result; - } - - // Get the backing name. - backing_name = file_name(backing_path); - if (backing_name == NULL) { - result = failure("Failed to allocate memory for the backing name."); - verbose("Exception -> %s", last_error()); - - free(backing_path); - json_object_put(root); - - return result; - } - } - - // Free the JSON object as it is no longer needed. - json_object_put(root); - - // Allocate the disk information. - disk_info_t* info = (disk_info_t*)malloc(sizeof(disk_info_t)); - if (info == NULL) { - result = failure("Failed to allocate memory for the disk information."); - verbose("Exception -> %s", last_error()); - - free(backing_path); - free(backing_name); - - return result; - } - - // Set the disk information. - info->virtual_size = virtual_size; - info->actual_size = actual_size; - - info->backing_path = backing_path; - info->backing_name = backing_name; - - // Set the disk information if requested. - if (_info != NULL) - *_info = info; - else - free_disk_info(info); - - verbose("Successfully read disk information from disk '%s':\n - Virtual size: %lu\n - Actual size: %lu\n - Backing path: %s\n - Backing name: %s", disk, virtual_size, actual_size, backing_path, backing_name); - - return success(); -} - -void free_disk_info(disk_info_t* info) { - free(info->backing_path); - free(info->backing_name); - - free(info); -} - -result_t create_root_disk(const char* disk, uint64_t size) { - result_t result; - - // Convert the size to a string. - char* size_string; - if (asprintf(&size_string, "%lu", size) == -1) { - result = failure("Failed to convert the size to a string."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Execute the qemu-img create to create the root disk. - int exit_code; - // char* stdout_buffer; - char* stderr_buffer; - - result = execute_file(&exit_code, NULL, NULL, &stderr_buffer, NULL, NULL, "/usr/bin/qemu-img", "create", "-f", "qcow2", disk, size_string, NULL); - - // Free the size string as it is no longer needed. - free(size_string); - - if (result != success()) { - result = failure("Failed to execute qemu-img create on the root disk '%s'.", disk); - verbose("Exception -> %s", last_error()); - - return result; - } - - // If the exit code is not 0, return the standard error. - if (exit_code != 0) { - // Remove all newlines from the standard error. - for (size_t i = 0; stderr_buffer[i] != '\0'; i++) - if (stderr_buffer[i] == '\n') - stderr_buffer[i] = ' '; - char* error = trim(stderr_buffer); - - result = failure("Failed to create the root disk '%s' (%s).", disk, error); - verbose("Exception -> %s", last_error()); - - free(error); - free(stderr_buffer); - - return result; - } - - // Free the standard error buffer as it is no longer needed. - free(stderr_buffer); - - verbose("Successfully created root disk '%s' with size of %lu bytes.", disk, size); - - return success(); -} - -result_t create_backed_disk(const char* disk, const char* backing) { - result_t result; - - // Execute the qemu-img create to create the backed disk. - int exit_code; - // char* stdout_buffer; - char* stderr_buffer; - - result = execute_file(&exit_code, NULL, NULL, &stderr_buffer, NULL, NULL, "/usr/bin/qemu-img", "create", "-f", "qcow2", "-F", "qcow2", "-b", backing, disk, NULL); - - if (result != success()) { - result = failure("Failed to execute qemu-img create on the backed disk '%s'.", disk); - verbose("Exception -> %s", last_error()); - - return result; - } - - // If the exit code is not 0, return the standard error. - if (exit_code != 0) { - // Remove all newlines from the standard error. - for (size_t i = 0; stderr_buffer[i] != '\0'; i++) - if (stderr_buffer[i] == '\n') - stderr_buffer[i] = ' '; - char* error = trim(stderr_buffer); - - result = failure("Failed to create the backed disk '%s' (%s).", disk, error); - verbose("Exception -> %s", last_error()); - - free(error); - free(stderr_buffer); - - return result; - } - - // Free the standard error buffer as it is no longer needed. - free(stderr_buffer); - - verbose("Successfully created backed disk '%s' with backing disk '%s'.", disk, backing); - - return success(); -} - -result_t reback_disk(const char* disk, const char* backing) { - result_t result; - - // Execute the qemu-img rebase to rebase the disk. - int exit_code; - // char* stdout_buffer; - char* stderr_buffer; - - result = execute_file(&exit_code, NULL, NULL, &stderr_buffer, NULL, NULL, "/usr/bin/qemu-img", "rebase", "-u", "-F", "qcow2", "-b", backing, disk, NULL); - - if (result != success()) { - result = failure("Failed to execute qemu-img rebase on the disk '%s'.", disk); - verbose("Exception -> %s", last_error()); - - return result; - } - - // If the exit code is not 0, return the standard error. - if (exit_code != 0) { - // Remove all newlines from the standard error. - for (size_t i = 0; stderr_buffer[i] != '\0'; i++) - if (stderr_buffer[i] == '\n') - stderr_buffer[i] = ' '; - char* error = trim(stderr_buffer); - - result = failure("Failed to rebase the disk '%s' to the backing disk '%s' (%s).", disk, backing, error); - verbose("Exception -> %s", last_error()); - - free(error); - free(stderr_buffer); - - return result; - } - - // Free the standard error buffer as it is no longer needed. - free(stderr_buffer); - - verbose("Successfully rebacked disk '%s' to backing disk '%s'.", disk, backing); - - return success(); -} - -result_t reset_disk(const char* disk) { - // Get information about the disk. - disk_info_t* info; - result_t result = read_disk_info(&info, disk); - if (result != success()) { - result = failure("Failed to get information about the disk '%s', meaning it cannot be reset.", disk); - verbose("Exception -> %s", last_error()); - - return result; - } - - if (info->backing_path == NULL) - // If the disk is a root disk, create a new root disk with the same size. - result = create_root_disk(disk, info->virtual_size); - else - // If the disk is a backed disk, create a new backed disk with the same backing disk. - result = create_backed_disk(disk, info->backing_path); - - // Free the disk information as it is no longer needed. - free_disk_info(info); - - if (result != success()) { - result = failure("Failed to reset the disk '%s'.", disk); - verbose("Exception -> %s", last_error()); - - return result; - } - - verbose("Successfully reset disk '%s'.", disk); - - return success(); -} - -result_t trim_disk(const char* disk) { - // Get a temporary file name for the trimmed disk. - char* trimmed_disk; - if (asprintf(&trimmed_disk, "%s.trimmed", disk) == -1) { - result_t result = failure("Failed to get a temporary file name for the trimmed disk."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Get information about the disk. - disk_info_t* info; - result_t result = read_disk_info(&info, disk); - if (result != success()) { - result = failure("Failed to get information about the disk '%s', meaning it cannot be trimmed.", disk); - verbose("Exception -> %s", last_error()); - - free(trimmed_disk); - - return result; - } - - // Execute the qemu-img convert to trim the disk. - int exit_code; - // char* stdout_buffer; - char* stderr_buffer; - - if (info->backing_path == NULL) - result = execute_file(&exit_code, NULL, NULL, &stderr_buffer, NULL, NULL, "/usr/bin/qemu-img", "convert", "-c", "-f", "qcow2", "-O", "qcow2", disk, trimmed_disk, NULL); - else - result = execute_file(&exit_code, NULL, NULL, &stderr_buffer, NULL, NULL, "/usr/bin/qemu-img", "convert", "-c", "-f", "qcow2", "-F", "qcow2", "-O", "qcow2", "-B", info->backing_path, disk, trimmed_disk, NULL); - - // Free the disk information as it is no longer needed. - free_disk_info(info); - - if (result != success()) { - result = failure("Failed to execute qemu-img convert on the disk '%s' to trim it.", disk); - verbose("Exception -> %s", last_error()); - - free(trimmed_disk); - - return result; - } - - // If the exit code is not 0, return the standard error. - if (exit_code != 0) { - // Remove all newlines from the standard error. - for (size_t i = 0; stderr_buffer[i] != '\0'; i++) - if (stderr_buffer[i] == '\n') - stderr_buffer[i] = ' '; - char* error = trim(stderr_buffer); - - result = failure("Failed to trim the disk '%s' (%s).", disk, error); - verbose("Exception -> %s", last_error()); - - free(error); - free(stderr_buffer); - free(trimmed_disk); - - return result; - } - - // Free the standard error buffer as it is no longer needed. - free(stderr_buffer); - - // Remove the original disk. - if (remove(disk) != 0) { - result = failure("Failed to remove the original disk '%s' after trimming it.", disk); - verbose("Exception -> %s", last_error()); - - remove(trimmed_disk); - free(trimmed_disk); - - return result; - } - - // Rename the trimmed disk to the original disk. - if (rename(trimmed_disk, disk) != 0) { - result = failure("Failed to rename the trimmed disk '%s' to the original disk '%s'.", trimmed_disk, disk); - verbose("Exception -> %s", last_error()); - - free(trimmed_disk); - - return result; - } - - // Free the temporary file name for the trimmed disk as it is no longer needed. - free(trimmed_disk); - - verbose("Successfully trimmed disk '%s'.", disk); - - return success(); -} diff --git a/src/disk.h b/src/disk.h deleted file mode 100644 index 827004e..0000000 --- a/src/disk.h +++ /dev/null @@ -1,53 +0,0 @@ -#pragma once - -#include "utils.h" - -/// @brief Structure used to store information about a qcow2 disk. -typedef struct { - /// @brief The virtual size of the disk, in bytes. - uint64_t virtual_size; - /// @brief The actual size of the disk, in bytes. - uint64_t actual_size; - /// @brief The path of the backing disk of this disk. If this disk is not a backing disk, this field is NULL. - char* backing_path; - /// @brief The name of the backing disk of this disk. If this disk is not a backing disk, this field is NULL. - char* backing_name; -} disk_info_t; - -/// @brief Reads the information of the specified qcow2 disk. -/// @param _info The pointer to where the disk information should be stored. The caller is responsible for freeing the disk information. -/// @param disk The disk to read the information of. -/// @return The result of the operation. -result_t read_disk_info(disk_info_t** _info, const char* disk); - -/// @brief Frees the specified disk information. -/// @param info The disk information to free. -void free_disk_info(disk_info_t* info); - -/// @brief Creates a new root (empty) qcow2 disk with the specified size. -/// @param disk The path of the disk to create. Any existing file at this path will be overwritten. -/// @param size The size of the disk to create, in bytes. -/// @return The result of the operation. -result_t create_root_disk(const char* disk, uint64_t size); - -/// @brief Creates a new backed qcow2 disk with the specified backing disk. -/// @param disk The path of the disk to create. Any existing file at this path will be overwritten. -/// @param backing The backing disk to use. -/// @return The result of the operation. -result_t create_backed_disk(const char* disk, const char* backing); - -/// @brief Rebacks the specified qcow2 disk to the specified backing disk. -/// @param disk The disk to reback. -/// @param backing The backing disk to use. -/// @return The result of the operation. -result_t reback_disk(const char* disk, const char* backing); - -/// @brief Resets the specified qcow2 disk to its original state. -/// @param disk The disk to reset. -/// @return The result of the operation. -result_t reset_disk(const char* disk); - -/// @brief Trims (removes unused sparse space) the specified qcow2 disk. -/// @param disk The disk to trim. -/// @return The result of the operation. -result_t trim_disk(const char* disk); diff --git a/src/image.c b/src/image.c deleted file mode 100644 index 7f1cd76..0000000 --- a/src/image.c +++ /dev/null @@ -1,554 +0,0 @@ -#include "image.h" -#include "container.h" -#include "disk.h" - -#include -#include -#include -#include -#include -#include - -result_t check_image_identifier(const char* identifier) { - result_t result; - - // Check that the identifier is not null. - if (identifier == NULL) { - result = failure("The specified image identifier is null."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Check that the identifier is the length of a md5 hash. - size_t length = strlen(identifier); - if (length != 32) { - result = failure("The specified image identifier is not the length of a md5 hash."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Check that the identifier contains only hexadecimal characters. - for (size_t i = 0; i < length; i++) { - if (isxdigit(identifier[i])) - continue; - - result = failure("The specified image identifier contains an invalid character '%c' at index %zu.", identifier[i], i); - verbose("Exception -> %s", last_error()); - - return result; - } - - return success(); -} - -result_t check_image_exists(bool* _exists, const config_t* config, const char* identifier) { - result_t result; - - // Get the image path. - char* path; - result = get_image_path(&path, config, identifier); - if (result != success()) { - result = failure("Failed to get the image path."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Check that the image exists. - struct stat st; - if (stat(path, &st) == -1) { - if (errno == ENOENT) { - free(path); - - // The image does not exist. - *_exists = false; - - verbose("The image '%s' does not exist.", identifier); - - return success(); - } - - result = failure("Failed to check whether the image exists."); - verbose("Exception -> %s", last_error()); - - free(path); - - return result; - } - - free(path); - - // Check that the image is a regular file. - if (!S_ISREG(st.st_mode)) { - result = failure("The specified image path is not a regular file."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // The image exists and is a regular file. - *_exists = true; - - verbose("The image '%s' exists.", identifier); - - return success(); -} - -result_t get_image_pool_path(char** _path, const config_t* config) { - result_t result; - - // Check that the configuration is not null. - if (config == NULL) { - result = failure("The specified program configuration is null."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Create a copy of the image pool path. - char* path = strdup(config->image_pool); - if (path == NULL) { - result = failure("Failed to copy the image pool path."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Set the image pool path. - *_path = path; - - return success(); -} - -result_t get_image_path(char** _path, const config_t* config, const char* identifier) { - result_t result; - - // Check that the identifier is valid. - result = check_image_identifier(identifier); - if (result != success()) { - result = failure("The specified image identifier is invalid."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Get the image pool path. - char* image_pool; - result = get_image_pool_path(&image_pool, config); - if (result != success()) { - result = failure("Failed to get the image pool path."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Append the identifier to the image pool path. - char* path; - if (asprintf(&path, "%s/%s", image_pool, identifier) == -1) { - result = failure("Failed to allocate memory for the image path."); - verbose("Exception -> %s", last_error()); - - free(image_pool); - - return result; - } - - // Free the image pool path. - free(image_pool); - - // Set the image path. - *_path = path; - - return success(); -} - -result_t get_default_image_path(char** _path, const config_t* config) { - result_t result; - - // Get the image pool path. - char* image_pool; - result = get_image_pool_path(&image_pool, config); - if (result != success()) { - result = failure("Failed to get the image pool path."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Append the default image identifier to the image pool path. - char* path; - if (asprintf(&path, "%s/default", image_pool) == -1) { - result = failure("Failed to allocate memory for the default image path."); - verbose("Exception -> %s", last_error()); - - free(image_pool); - - return result; - } - - // Free the image pool path. - free(image_pool); - - // Set the default image path. - *_path = path; - - return success(); -} - -result_t get_temporary_image_path(char** _path, const config_t* config) { - result_t result; - - // Get the image pool path. - char* image_pool; - result = get_image_pool_path(&image_pool, config); - if (result != success()) { - result = failure("Failed to get the image pool path."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Append the temporary image identifier to the image pool path. - char* path; - if (asprintf(&path, "%s/temporary", image_pool) == -1) { - result = failure("Failed to allocate memory for the temporary image path."); - verbose("Exception -> %s", last_error()); - - free(image_pool); - - return result; - } - - // Free the image pool path. - free(image_pool); - - // Set the temporary image path. - *_path = path; - - return success(); -} - -result_t get_default_image(char** _identifier, const config_t* config) { - result_t result; - - // Get the default image path. - char* path; - result = get_default_image_path(&path, config); - if (result != success()) { - result = failure("Failed to get the default image path."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Open the default image file. - char* identifier = NULL; - result = read_file(&identifier, NULL, path); - if (result != success()) { - result = failure("Failed to read the default image file."); - verbose("Exception -> %s", last_error()); - - free(path); - - return result; - } - - // Free the default image path. - free(path); - - // Check that the identifier is valid. - result = check_image_identifier(identifier); - if (result != success()) { - result = failure("The default image identifier is invalid. The default image file may be corrupted."); - verbose("Exception -> %s", last_error()); - - free(identifier); - - return result; - } - - // Set the default image identifier. - *_identifier = identifier; - - return result; -} - -result_t set_default_image(const config_t* config, const char* identifier) { - result_t result; - - // Check that the identifier is valid. - result = check_image_identifier(identifier); - if (result != success()) { - result = failure("The specified image identifier is invalid."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Get the default image path. - char* path; - result = get_default_image_path(&path, config); - if (result != success()) { - result = failure("Failed to get the default image path."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Write the identifier to the default image file. - result = write_file(path, identifier, strlen(identifier), 0644); - if (result != success()) { - result = failure("Failed to write the default image file."); - verbose("Exception -> %s", last_error()); - - free(path); - - return result; - } - - // Free the default image path. - free(path); - - return success(); -} - -result_t add_image(char** _identifier, const config_t* config, const char* container) { - result_t result; - - // Check that the container exists. - bool exists; - result = check_container_exists(&exists, config, container); - if (result != success()) { - result = failure("Failed to check whether the container exists."); - verbose("Exception -> %s", last_error()); - - return result; - } - - if (!exists) { - result = failure("The specified container does not exist."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Get the path of the container. - char* container_path; - result = get_container_path(&container_path, config, container); - if (result != success()) { - result = failure("Failed to get the path of the container."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Get the temporary image path. - char* temporary_path; - result = get_temporary_image_path(&temporary_path, config); - if (result != success()) { - result = failure("Failed to get the temporary image path."); - verbose("Exception -> %s", last_error()); - - free(container_path); - - return result; - } - - // Copy the container to the temporary image path. - if (copy_file(container_path, temporary_path, 0644) != 0) { - result = failure("Failed to copy the container to the temporary image path."); - verbose("Exception -> %s", last_error()); - - free(container_path); - free(temporary_path); - - return result; - } - - // Free the container path as it is no longer needed. - free(container_path); - - // Get disk information about the temporary image. - disk_info_t* info; - result = read_disk_info(&info, temporary_path); - if (result != success()) { - result = failure("Failed to read the disk information about the temporary image."); - verbose("Exception -> %s", last_error()); - - free(temporary_path); - - return result; - } - - // If the temporary image is a backed disk, then we need to reback it to a relative path. - if (info->backing_name != NULL) { - result = reback_disk(temporary_path, info->backing_name); - if (result != success()) { - result = failure("Failed to reback the temporary image."); - verbose("Exception -> %s", last_error()); - - remove(temporary_path); - free(temporary_path); - free_disk_info(info); - - return result; - } - } - - // Free the disk information as it is no longer needed. - free_disk_info(info); - - // Calculate the md5 hash of the temporary image, and use it as the identifier. - char* identifier; - result = md5_file(&identifier, temporary_path); - if (result != success()) { - result = failure("Failed to calculate the md5 hash of the temporary image."); - verbose("Exception -> %s", last_error()); - - remove(temporary_path); - free(temporary_path); - - return result; - } - - // Check if the image already exists. - bool image_exists; - result = check_image_exists(&image_exists, config, identifier); - if (result != success()) { - result = failure("Failed to check whether the image exists."); - verbose("Exception -> %s", last_error()); - - free(identifier); - remove(temporary_path); - free(temporary_path); - - return result; - } - - if (image_exists) { - result = failure("The image already exists."); - verbose("Exception -> %s", last_error()); - - free(identifier); - remove(temporary_path); - free(temporary_path); - - return result; - } - - // Get the image path. - char* image_path; - result = get_image_path(&image_path, config, identifier); - if (result != success()) { - result = failure("Failed to get the image path."); - verbose("Exception -> %s", last_error()); - - free(identifier); - remove(temporary_path); - free(temporary_path); - - return result; - } - - // Move the temporary image to the image pool. - if (rename(temporary_path, image_path) == -1) { - result = failure("Failed to move the temporary image to the image pool."); - verbose("Exception -> %s", last_error()); - - free(identifier); - free(image_path); - remove(temporary_path); - free(temporary_path); - - return result; - } - - // Free the temporary image path. - free(temporary_path); - - // Set the identifier of the image. - *_identifier = identifier; - - verbose("Successfully added the image '%s' from the container '%s'.", identifier, container); - - return success(); -} - -result_t remove_image(const config_t* config, const char* identifier) { - result_t result; - - // Get the image path. - char* path; - result = get_image_path(&path, config, identifier); - if (result != success()) { - result = failure("Failed to get the image path."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Remove the image. - if (remove(path) == -1) { - result = failure("Failed to remove the image."); - verbose("Exception -> %s", last_error()); - - free(path); - - return result; - } - - // Free the image path. - free(path); - - verbose("Successfully removed the image '%s'.", identifier); - - return success(); -} - -result_t list_images(char*** _identifiers, size_t* _count, const config_t* config) { - result_t result; - - // Get the image pool path. - char* image_pool; - result = get_image_pool_path(&image_pool, config); - if (result != success()) { - result = failure("Failed to get the image pool path."); - verbose("Exception -> %s", last_error()); - - return result; - } - - char** identifiers; - size_t count; - result = list_files(&identifiers, &count, image_pool, check_image_identifier); - if (result != success()) { - result = failure("Failed to list the images in the pool."); - verbose("Exception -> %s", last_error()); - - free(image_pool); - - return result; - } - - // Free the image pool path. - free(image_pool); - - // Set the list of identifiers. - if (_identifiers != NULL) - *_identifiers = identifiers; - else { - for (size_t i = 0; i < count; i++) - free(identifiers[i]); - free(identifiers); - } - - // Set the count of identifiers. - if (_count != NULL) - *_count = count; - - verbose("The image pool contains %zu images.", count); - - return success(); -} diff --git a/src/image.h b/src/image.h deleted file mode 100644 index e40971f..0000000 --- a/src/image.h +++ /dev/null @@ -1,73 +0,0 @@ -#pragma once - -#include "utils.h" -#include "config.h" - -/// @brief Checks whether the specified image identifier is valid. This call will return an error with a message describing the problem if the identifier is invalid. -/// @param identifier The identifier to check. -/// @return The result of the operation. -result_t check_image_identifier(const char* identifier); - -/// @brief Checks whether the specified image exists. -/// @param _exists The pointer to where the result should be stored. -/// @param config The program configuration to use. -/// @param identifier The identifier of the image to check. -/// @return The result of the operation. -result_t check_image_exists(bool* _exists, const config_t* config, const char* identifier); - -/// @brief Returns the path of the image pool directory. -/// @param _path The pointer to where the path should be stored. The caller is responsible for freeing the memory. -/// @param config The program configuration to use. -/// @return The result of the operation. -result_t get_image_pool_path(char** _path, const config_t* config); - -/// @brief Returns the path of the specified image. -/// @param _path The pointer to where the path should be stored. The caller is responsible for freeing the memory. -/// @param config The program configuration to use. -/// @param identifier The identifier of the image. -/// @return The result of the operation. -result_t get_image_path(char** _path, const config_t* config, const char* identifier); - -/// @brief Returns the path of the file containing the default image identifier. -/// @param _path The pointer to where the path should be stored. The caller is responsible for freeing the memory. -/// @param config The program configuration to use. -/// @return The result of the operation. -result_t get_default_image_path(char** _path, const config_t* config); - -/// @brief Returns the path of the temporary file used to store the disk before it is moved to the image pool. -/// @param _path The pointer to where the path should be stored. The caller is responsible for freeing the memory. -/// @param config The program configuration to use. -/// @return The result of the operation. -result_t get_temporary_image_path(char** _path, const config_t* config); - -/// @brief Returns the identifier of the default image. -/// @param _identifier The pointer to where the identifier should be stored. The caller is responsible for freeing the memory. -/// @param config The program configuration to use. -/// @return The result of the operation. -result_t get_default_image(char** _identifier, const config_t* config); - -/// @brief Sets the identifier of the default image. -/// @param config The program configuration to use. -/// @param identifier The identifier of the image to set as default. -/// @return The result of the operation. -result_t set_default_image(const config_t* config, const char* identifier); - -/// @brief Adds a new image to the pool, using the specified container as the source. -/// @param _identifier The pointer to where the identifier should be stored. The caller is responsible for freeing the memory. -/// @param config The program configuration to use. -/// @param container The identifier of the container to use as the source. -/// @return The result of the operation. -result_t add_image(char** _identifier, const config_t* config, const char* container); - -/// @brief Removes the specified image from the pool. -/// @param config The program configuration to use. -/// @param identifier The identifier of the image to remove. -/// @return The result of the operation. -result_t remove_image(const config_t* config, const char* identifier); - -/// @brief Lists the images in the pool. -/// @param _identifiers The pointer to where the list of identifiers should be stored. The caller is responsible for freeing the strings and the array. -/// @param _count The pointer to where the count of identifiers should be stored. -/// @param config The program configuration to use. -/// @return The result of the operation. -result_t list_images(char*** _identifiers, size_t* _count, const config_t* config); \ No newline at end of file diff --git a/src/sandbox.c b/src/sandbox.c deleted file mode 100644 index 1e1de23..0000000 --- a/src/sandbox.c +++ /dev/null @@ -1,28 +0,0 @@ -#include "utils.h" -#include "disk.h" -#include "config.h" -#include "container.h" -#include "image.h" - -#include -#include - -int main(int argc, char* argv[]) { - config_t* config; - result_t result = init_config(&config); - if (result != success()) - return -1; - - add_root_container(config, "test", 1024ULL); - - char* image; - add_image(&image, config, "test"); - - printf("Image: %s\n", image); - - add_backed_container(config, "test2", image); - - add_image(&image, config, "test2"); - - free_config(config); -} \ No newline at end of file diff --git a/src/sandbox.h b/src/sandbox.h deleted file mode 100644 index 30226fa..0000000 --- a/src/sandbox.h +++ /dev/null @@ -1,5 +0,0 @@ -#pragma once - -#include "utils.h" - -int main(int argc, char* argv[]); diff --git a/src/utils.c b/src/utils.c deleted file mode 100644 index 75cc7b6..0000000 --- a/src/utils.c +++ /dev/null @@ -1,802 +0,0 @@ -#include "utils.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -char ERROR_BUFFER[ERROR_BUFFER_SIZE] = {0}; - -bool VERBOSE = true; - -result_t success() { - return EXIT_SUCCESS; -} - -result_t failure(const char* format, ...) { - va_list args; - va_start(args, format); - - // Write the error message into a temporary buffer. - char buffer[ERROR_BUFFER_SIZE]; - vsnprintf(buffer, sizeof(buffer), format, args); - - // Copy the error message into the error buffer. - strncpy(ERROR_BUFFER, buffer, sizeof(ERROR_BUFFER) - 1); - ERROR_BUFFER[ERROR_BUFFER_SIZE - 1] = '\0'; - - va_end(args); - - return EXIT_FAILURE; -} - -const char* last_error() { - return ERROR_BUFFER; -} - -void verbose(const char* format, ...) { - // If verbose mode is not enabled, return. - if (!VERBOSE) - return; - - va_list args; - va_start(args, format); - - // Get the current time. - time_t now = time(NULL); - struct tm* time = localtime(&now); - - // Write the message to the standard error. - fprintf(stderr, "\033[90m[%02d:%02d:%02d] ", time->tm_hour, time->tm_min, time->tm_sec); - vfprintf(stderr, format, args); - fprintf(stderr, "\033[0m\n"); - - va_end(args); -} - -void set_verbose(bool verbose) { - VERBOSE = verbose; -} - -result_t execute_file(int* _exit_code, char** _stdout_buffer, size_t* _stdout_size, char** _stderr_buffer, size_t* _stderr_size, const char* working_directory, const char* file, ...) { - result_t result; - - // Count the number of arguments. - va_list args; - va_start(args, file); - - int argc = 1; // The first argument is the file itself. - while (va_arg(args, const char*) != NULL) - argc++; - - va_end(args); - - // Create the argument list. - const char** argv = (const char**)malloc((argc + 1) * sizeof(const char*)); // The last element is NULL. - if (argv == NULL) { - result = failure("Failed to allocate memory for the argument list (%s).", strerror(errno)); - verbose("Exception -> %s", last_error()); - - return result; - } - - va_start(args, file); - - argv[0] = file; - for (int i = 1; i < argc; i++) - argv[i] = va_arg(args, const char*); - argv[argc] = NULL; - - va_end(args); - - // Create the standard output pipe. - int stdout_pipe[2]; - if (pipe(stdout_pipe) == -1) { - result = failure("Failed to create the standard output pipe (%s).", strerror(errno)); - verbose("Exception -> %s", last_error()); - - free((void*)argv); - - return result; - } - - // Create the standard error pipe. - int stderr_pipe[2]; - if (pipe(stderr_pipe) == -1) { - result = failure("Failed to create the standard error pipe (%s).", strerror(errno)); - verbose("Exception -> %s", last_error()); - - close(stdout_pipe[0]); - close(stdout_pipe[1]); - free((void*)argv); - - return result; - } - - verbose("Opened standard output pipe (%d), and standard error pipe (%d).", stdout_pipe[0], stderr_pipe[0]); - - // Fork the process. - pid_t pid = fork(); - - if (pid == -1) { - result = failure("Failed to fork the process (%s).", strerror(errno)); - verbose("Exception -> %s", last_error()); - - close(stdout_pipe[0]); - close(stdout_pipe[1]); - close(stderr_pipe[0]); - close(stderr_pipe[1]); - free((void*)argv); - - return result; - } - - if (pid == 0) { - // Child process. - - // Redirect the standard output and error to the pipes. - dup2(stdout_pipe[1], STDOUT_FILENO); - dup2(stderr_pipe[1], STDERR_FILENO); - - // Close the pipe file descriptors. - close(stdout_pipe[0]); - close(stdout_pipe[1]); - close(stderr_pipe[0]); - close(stderr_pipe[1]); - - // Change the working directory if specified. - if (working_directory != NULL && chdir(working_directory) == -1) { - fprintf(stderr, "Failed to change the working directory to '%s': %s\n", working_directory, strerror(errno)); - exit(EXIT_FAILURE); - } - - // Execute the file. - execv(file, (char* const*)argv); - - // If the execvp call fails, write the error to the standard error. - fprintf(stderr, "Failed to execute the file '%s': %s\n", file, strerror(errno)); - - // Exit the child process. - exit(EXIT_FAILURE); - } - - // Parent process. - - // Free the argument list. - free((void*)argv); - - // Close the write end of the pipes. - close(stdout_pipe[1]); - close(stderr_pipe[1]); - - // Wait for the child process to exit. - int status; - if (waitpid(pid, &status, 0) == -1) { - result = failure("Failed to wait for the child process to exit (%s).", strerror(errno)); - verbose("Exception -> %s", last_error()); - - close(stdout_pipe[0]); - close(stderr_pipe[0]); - - return result; - } - - // Read the standard output into a buffer. - char* stdout_buffer; - size_t stdout_size; - result = read_fd(&stdout_buffer, &stdout_size, stdout_pipe[0]); - if (result != success()) { - result = failure("Failed to read the standard output of the process."); - verbose("Exception -> %s", last_error()); - - close(stdout_pipe[0]); - close(stderr_pipe[0]); - - return result; - } - - // Close the read end of the standard output pipe. - close(stdout_pipe[0]); - - // Read the standard error into a buffer. - char* stderr_buffer; - size_t stderr_size; - result = read_fd(&stderr_buffer, &stderr_size, stderr_pipe[0]); - if (result != success()) { - result = failure("Failed to read the standard error of the process."); - verbose("Exception -> %s", last_error()); - - close(stderr_pipe[0]); - free(stdout_buffer); - - return result; - } - - // Close the read end of the standard error pipe. - close(stderr_pipe[0]); - - // Set the exit code if requested. - if (_exit_code != NULL) - *_exit_code = WEXITSTATUS(status); - - // Set the standard output buffer if requested. - if (_stdout_buffer != NULL) - *_stdout_buffer = stdout_buffer; - else - free(stdout_buffer); - - // Set the standard output size if requested. - if (_stdout_size != NULL) - *_stdout_size = stdout_size; - - // Set the standard error buffer if requested. - if (_stderr_buffer != NULL) - *_stderr_buffer = stderr_buffer; - else - free(stderr_buffer); - - // Set the standard error size if requested. - if (_stderr_size != NULL) - *_stderr_size = stderr_size; - - verbose("Successfully executed file '%s' with exit code %d.", file, WEXITSTATUS(status)); - - return success(); -} - -result_t read_fd(char** _buffer, size_t* _size, int fd) { - result_t result; - - size_t size = 0; - size_t capacity = 4096; - - // Allocate the initial buffer. - char* buffer = (char*)malloc(capacity); - if (buffer == NULL) { - result = failure("Failed to allocate memory for the buffer (%s).", strerror(errno)); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Read the file descriptor into the buffer. - ssize_t bytes_read; - while ((bytes_read = read(fd, buffer + size, capacity - size)) > 0) { - size += bytes_read; - - // If the buffer is full, reallocate it. - if (size == capacity) { - capacity *= 2; - - char* new_buffer = (char*)realloc(buffer, capacity); - if (new_buffer == NULL) { - result = failure("Failed to reallocate memory for the buffer (%s).", strerror(errno)); - verbose("Exception -> %s", last_error()); - - free(buffer); - - return result; - } - - buffer = new_buffer; - } - } - - // If an error occurred, return it. - if (bytes_read == -1) { - result = failure("Failed to read the file descriptor %d (%s).", fd, strerror(errno)); - verbose("Exception -> %s", last_error()); - - free(buffer); - - return result; - } - - // Set the buffer if requested. - if (_buffer != NULL) - *_buffer = buffer; - else - free(buffer); - - // Set the size if requested. - if (_size != NULL) - *_size = size; - - verbose("Successfully read %zu bytes from file descriptor %d.", size, fd); - - return success(); -} - -result_t write_fd(int fd, const char* buffer, size_t size) { - result_t result; - - // Write the buffer to the file descriptor. - ssize_t bytes_written = write(fd, buffer, size); - if (bytes_written == -1) { - result = failure("Failed to write to the file descriptor %d (%s).", fd, strerror(errno)); - verbose("Exception -> %s", last_error()); - - return result; - } - - verbose("Successfully wrote %zu bytes to file descriptor %d.", size, fd); - - return success(); -} - -result_t read_file(char** _buffer, size_t* _size, const char* file) { - result_t result; - - // Open the file. - int fd = open(file, O_RDONLY); - if (fd == -1) { - result = failure("Failed to open the file '%s' for reading (%s).", file, strerror(errno)); - verbose("Exception -> %s", last_error()); - - return result; - } - - verbose("Opened file '%s' for reading with file descriptor %d.", file, fd); - - // Read the file into a buffer. - result = read_fd(_buffer, _size, fd); - if (result != success()) { - result = failure("Failed to read the file '%s'.", file); - verbose("Exception -> %s", last_error()); - - close(fd); - - return result; - } - - // Close the file. - close(fd); - - return success(); -} - -result_t write_file(const char* file, const char* buffer, size_t size, mode_t mode) { - result_t result; - - // Open the file. - int fd = open(file, O_WRONLY | O_CREAT | O_TRUNC, mode); - if (fd == -1) { - result = failure("Failed to open the file '%s' for writing (%s).", file, strerror(errno)); - verbose("Exception -> %s", last_error()); - - return result; - } - - verbose("Opened file '%s' for writing with file descriptor %d.", file, fd); - - // Write the buffer to the file. - result = write_fd(fd, buffer, size); - if (result != success()) { - result = failure("Failed to write to the file '%s'.", file); - verbose("Exception -> %s", last_error()); - - close(fd); - - return result; - } - - // Close the file. - close(fd); - - return success(); -} - -result_t copy_fd(int source_fd, int destination_fd) { - result_t result; - - // Read the source file descriptor into a buffer. - char buffer[4096]; - ssize_t bytes_read; - while ((bytes_read = read(source_fd, buffer, sizeof(buffer))) > 0) { - // Write the buffer to the destination file descriptor. - ssize_t bytes_written = 0; - while (bytes_written < bytes_read) { - ssize_t written = write(destination_fd, buffer + bytes_written, bytes_read - bytes_written); - if (written == -1) { - result = failure("Failed to write to the file descriptor %d (%s).", destination_fd, strerror(errno)); - verbose("Exception -> %s", last_error()); - - return result; - } - - bytes_written += written; - } - } - - // If an error occurred, return it. - if (bytes_read == -1) { - result = failure("Failed to read the file descriptor %d (%s).", source_fd, strerror(errno)); - verbose("Exception -> %s", last_error()); - - return result; - } - - verbose("Successfully copied contents from file descriptor %d to file descriptor %d.", source_fd, destination_fd); - - return success(); -} - -result_t copy_file(const char* source, const char* destination, mode_t mode) { - result_t result; - - // Open the source file. - int source_fd = open(source, O_RDONLY); - if (source_fd == -1) { - result = failure("Failed to open the source file '%s' for reading (%s).", source, strerror(errno)); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Open the destination file. - int destination_fd = open(destination, O_WRONLY | O_CREAT | O_TRUNC, mode); - if (destination_fd == -1) { - result = failure("Failed to open the destination file '%s' for writing (%s).", destination, strerror(errno)); - verbose("Exception -> %s", last_error()); - - close(source_fd); - - return result; - } - - verbose("Opened source file '%s' for reading (%d), and destination file '%s' for writing (%d).", source, source_fd, destination, destination_fd); - - // Copy the source file to the destination file. - result = copy_fd(source_fd, destination_fd); - if (result != success()) { - result = failure("Failed to copy the source file '%s' to the destination file '%s'.", source, destination); - verbose("Exception -> %s", last_error()); - - close(source_fd); - close(destination_fd); - - return result; - } - - // Close the source file. - close(source_fd); - - // Close the destination file. - close(destination_fd); - - return success(); -} - -char* trim(const char* string) { - // Check for null. - if (string == NULL) - return NULL; - - // Find the first non-whitespace character. - const char* start = string; - while (isspace(*start)) - start++; - - // Find the last non-whitespace character. - const char* end = start + strlen(start); - while (end > start && isspace(*(end - 1))) - end--; - - // Calculate the length of the trimmed string. - size_t length = end - start; - - // Allocate the trimmed string. - char* trimmed = (char*)malloc(length + 1); - if (trimmed == NULL) - return NULL; - - // Copy the trimmed string. - strncpy(trimmed, start, length); - trimmed[length] = '\0'; - - return trimmed; -} - -char* file_name(const char* path) { - // Find the last occurrence of the path separator. - const char* file = strrchr(path, '/'); - - // If the path separator was not found, return the path. - if (file == NULL) - return strdup(path); - - // Return the file name. - return strdup(file + 1); -} - -char* directory_name(const char* path) { - // Find the last occurrence of the path separator. - const char* directory = strrchr(path, '/'); - - // If the path separator was not found, return the current directory. - if (directory == NULL) - return strdup("."); - - // Calculate the length of the directory name. - size_t length = directory - path; - - // Allocate the directory name. - char* name = (char*)malloc(length + 1); - if (name == NULL) - return NULL; - - // Copy the directory name. - strncpy(name, path, length); - name[length] = '\0'; - - return name; -} - -result_t list_files(char*** _files, size_t* _count, const char* directory, result_t (*filter)(const char*)) { - result_t result; - - // Open the directory. - DIR* dir = opendir(directory); - if (dir == NULL) { - result = failure("Failed to open the directory '%s' (%s).", directory, strerror(errno)); - verbose("Exception -> %s", last_error()); - - return result; - } - - verbose("Opened directory '%s' for listing.", directory); - - size_t count = 0; - size_t capacity = 16; - - // Allocate the initial files array. - char** files = (char**)malloc(capacity * sizeof(char*)); - if (files == NULL) { - result = failure("Failed to allocate memory for the files array (%s).", strerror(errno)); - verbose("Exception -> %s", last_error()); - - closedir(dir); - - return result; - } - - // Read the directory entries. - struct dirent* entry; - for (;;) { - errno = 0; - entry = readdir(dir); - - // If there are no more entries, break. - if (entry == NULL) - break; - - // Skip the current and parent directory entries. - if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0) - continue; - - // Filter the entry if a filter function is provided. - if (filter != NULL && filter(entry->d_name) != success()) - continue; - - // If the files array is full, reallocate it. - if (count == capacity) { - capacity *= 2; - - char** new_files = (char**)realloc(files, capacity * sizeof(char*)); - if (new_files == NULL) { - result = failure("Failed to reallocate memory for the files array (%s).", strerror(errno)); - verbose("Exception -> %s", last_error()); - - for (size_t i = 0; i < count; i++) - free(files[i]); - free(files); - closedir(dir); - - return result; - } - files = new_files; - } - - // Add the file to the files array. - files[count] = strdup(entry->d_name); - if (files[count] == NULL) { - result = failure("Failed to allocate memory for the file name (%s).", strerror(errno)); - verbose("Exception -> %s", last_error()); - - for (size_t i = 0; i < count; i++) - free(files[i]); - free(files); - closedir(dir); - - return result; - } - - count++; - } - - // If an error occurred, return it. - if (entry == NULL && errno != 0) { - result = failure("Failed to read the contents of the directory '%s' (%s).", directory, strerror(errno)); - verbose("Exception -> %s", last_error()); - - for (size_t i = 0; i < count; i++) - free(files[i]); - free(files); - closedir(dir); - - return result; - } - - // Close the directory. - closedir(dir); - - // Reallocate the files array to the actual size. - char** new_files = (char**)realloc(files, (count + 1) * sizeof(char*)); // Add one for the null terminator. - if (new_files == NULL) { - result = failure("Failed to reallocate memory for the files array (%s).", strerror(errno)); - verbose("Exception -> %s", last_error()); - - for (size_t i = 0; i < count; i++) - free(files[i]); - free(files); - - return result; - } - files = new_files; - - // Null-terminate the files array. - files[count] = NULL; - - // Set the files array if requested. - if (_files != NULL) - *_files = files; - else { - for (size_t i = 0; i < count; i++) - free(files[i]); - free(files); - } - - // Set the count if requested. - if (_count != NULL) - *_count = count; - - verbose("Successfully listed %zu files in directory '%s'.", count, directory); - - return success(); -} - -result_t md5_fd(char** _hash, int fd) { - result_t result; - - // Create the MD5 context. - EVP_MD_CTX* context = EVP_MD_CTX_new(); - if (context == NULL) { - result = failure("Failed to create the MD5 context."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Initialize the MD5 algorithm. - const EVP_MD* algorithm = EVP_md5(); - if (algorithm == NULL) { - result = failure("Failed to get the MD5 algorithm."); - verbose("Exception -> %s", last_error()); - - EVP_MD_CTX_free(context); - - return result; - } - - // Initialize the MD5 digest. - if (EVP_DigestInit_ex(context, algorithm, NULL) != 1) { - result = failure("Failed to initialize the MD5 digest."); - verbose("Exception -> %s", last_error()); - - EVP_MD_CTX_free(context); - - return result; - } - - // Read the file descriptor into a buffer. - char buffer[4096]; - ssize_t bytes_read; - ssize_t total_bytes_read = 0; - while ((bytes_read = read(fd, buffer, sizeof(buffer))) > 0) { - // Update the MD5 digest with the buffer. - if (EVP_DigestUpdate(context, buffer, bytes_read) != 1) { - result = failure("Failed to update the MD5 digest."); - verbose("Exception -> %s", last_error()); - - EVP_MD_CTX_free(context); - - return result; - } - - total_bytes_read += bytes_read; - } - - // If an error occurred, return it. - if (bytes_read == -1) { - result = failure("Failed to read the file descriptor."); - verbose("Exception -> %s", last_error()); - - EVP_MD_CTX_free(context); - - return result; - } - - // Finalize the MD5 digest. - unsigned char hash[EVP_MAX_MD_SIZE]; - unsigned int length; - if (EVP_DigestFinal_ex(context, hash, &length) != 1) { - result = failure("Failed to finalize the MD5 digest."); - verbose("Exception -> %s", last_error()); - - EVP_MD_CTX_free(context); - - return result; - } - - // Free the MD5 context. - EVP_MD_CTX_free(context); - - // Allocate the hash. - char* md5 = (char*)malloc(length * 2 + 1); - if (md5 == NULL) { - result = failure("Failed to allocate memory for the MD5 hash."); - verbose("Exception -> %s", last_error()); - - return result; - } - - // Convert the hash to a string. - for (unsigned int i = 0; i < length; i++) - sprintf(md5 + i * 2, "%02x", hash[i]); - md5[length * 2] = '\0'; - - // Set the hash. - *_hash = md5; - - verbose("Successfully calculated MD5 hash '%s' from file descriptor %d (%zd bytes).", md5, fd, total_bytes_read); - - return success(); -} - -result_t md5_file(char** _hash, const char* file) { - result_t result; - - // Open the file. - int fd = open(file, O_RDONLY); - if (fd == -1) { - result = failure("Failed to open the file '%s' for reading (%s).", file, strerror(errno)); - verbose("Exception -> %s", last_error()); - - return result; - } - - verbose("Opened file '%s' for reading with file descriptor %d.", file, fd); - - // Calculate the MD5 hash of the file. - result = md5_fd(_hash, fd); - if (result != success()) { - result = failure("Failed to calculate the MD5 hash of the file '%s'.", file); - verbose("Exception -> %s", last_error()); - - close(fd); - - return result; - } - - // Close the file. - close(fd); - - return success(); -} diff --git a/src/utils.h b/src/utils.h deleted file mode 100644 index 1bfb49d..0000000 --- a/src/utils.h +++ /dev/null @@ -1,130 +0,0 @@ -#pragma once - -#include -#include -#include -#include -#include - -/// @brief Type representing a result of an operation, 0 for success, non-zero for failure. -typedef int result_t; - -/// @brief The size of the error buffer. -#define ERROR_BUFFER_SIZE 4096 - -/// @brief The error buffer, containing the last error message. -extern char ERROR_BUFFER[]; - -/// @brief The verbose mode, which controls whether verbose messages are logged to the console or not. -extern bool VERBOSE; - -/// @brief Returns a result_t representing a successful operation. -/// @return The successful result_t. -result_t success(); - -/// @brief Returns a result_t representing a failed operation, and writes the formatted error message to the error buffer, which can be accessed using last_error(). -/// @param format The format string for the error message. -/// @param ... The arguments for the format string. -/// @return The failed result_t. -result_t failure(const char* format, ...); - -/// @brief Returns the last error message. -/// @return The last error message. -const char* last_error(); - -/// @brief Logs a message if verbose mode is enabled. -/// @param format The format string for the message. -/// @param ... The arguments for the format string. -void verbose(const char* format, ...); - -/// @brief Enables or disables the verbose mode. -/// @param verbose The boolean value to set the verbose mode to. -void set_verbose(bool verbose); - -/// @brief Executes the specified file using the given arguments. The standard output and error streams are captured into buffers, as well as the exit code. -/// @param _exit_code The pointer to where the exit code should be stored. This output parameter is optional, and can be NULL. -/// @param _stdout_buffer The pointer to where the standard output buffer should be stored. This output parameter is optional, and can be NULL. The caller is responsible for freeing the buffer. -/// @param _stdout_size The pointer to where the size of the standard output buffer should be stored. This output parameter is optional, and can be NULL. -/// @param _stderr_buffer The pointer to where the standard error buffer should be stored. This output parameter is optional, and can be NULL. The caller is responsible for freeing the buffer. -/// @param _stderr_size The pointer to where the size of the standard error buffer should be stored. This output parameter is optional, and can be NULL. -/// @param working_directory The working directory for the process, or NULL to use the current working directory. -/// @param file The file to execute. -/// @param ... The null-terminated list of arguments for the file. -/// @return The result of the operation. -result_t execute_file(int* _exit_code, char** _stdout_buffer, size_t* _stdout_size, char** _stderr_buffer, size_t* _stderr_size, const char* working_directory, const char* file, ...); - -/// @brief Reads the specified file descriptor into a buffer. -/// @param _buffer The pointer to where the buffer should be stored. The caller is responsible for freeing the buffer. -/// @param _size The pointer to where the size of the buffer should be stored. This output parameter is optional, and can be NULL. -/// @param fd The file descriptor to read. -/// @return The result of the operation. -result_t read_fd(char** _buffer, size_t* _size, int fd); - -/// @brief Writes the specified buffer to the specified file descriptor. -/// @param fd The file descriptor to write to. -/// @param buffer The buffer to write. -/// @param size The size of the buffer. -/// @return The result of the operation. -result_t write_fd(int fd, const char* buffer, size_t size); - -/// @brief Reads the specified file into a buffer. -/// @param _buffer The pointer to where the buffer should be stored. The caller is responsible for freeing the buffer. -/// @param _size The pointer to where the size of the buffer should be stored. This output parameter is optional, and can be NULL. -/// @param file The file to read. -/// @return The result of the operation. -result_t read_file(char** _buffer, size_t* _size, const char* file); - -/// @brief Writes the specified buffer to the specified file. -/// @param file The file to write to. -/// @param buffer The buffer to write. -/// @param size The size of the buffer. -/// @param mode The permissions to set on the file. -/// @return The result of the operation. -result_t write_file(const char* file, const char* buffer, size_t size, mode_t mode); - -/// @brief Copies the contents of the specified source file descriptor to the specified destination file descriptor. -/// @param source_fd The source file descriptor to copy. -/// @param destination_fd The destination file descriptor to copy to. -/// @return The result of the operation. -result_t copy_fd(int source_fd, int destination_fd); - -/// @brief Copies the contents of the specified source file to the specified destination file. -/// @param source The source file to copy. -/// @param destination The destination to copy the file to. -/// @param mode The permissions to set on the destination file. -/// @return The result of the operation. -result_t copy_file(const char* source, const char* destination, mode_t mode); - -/// @brief Trims whitespace from the beginning and end of the specified string. -/// @param string The string to trim. -/// @return The trimmed string. The caller is responsible for freeing the string. -char* trim(const char* string); - -/// @brief Extracts the file name from the specified path. -/// @param path The path to extract the file name from. -/// @return The file name. The caller is responsible for freeing the string. -char* file_name(const char* path); - -/// @brief Extracts the directory name from the specified path. -/// @param path The path to extract the directory name from. -/// @return The directory name. The caller is responsible for freeing the string. -char* directory_name(const char* path); - -/// @brief Lists the files in the specified directory, and returns the result in a null-terminated array of strings. A filter function can be provided to filter the files. -/// @param _files The pointer to where the files should be stored. The caller is responsible for freeing the files. -/// @param directory The directory to list the files of. -/// @param filter The filter function to use, or NULL to list all files. The filter function should return a success result if the file should be included in the list. -/// @return The result of the operation. -result_t list_files(char*** _files, size_t* _count, const char* directory, result_t (*filter)(const char*)); - -/// @brief Reads the specified file descriptor, and calculates the MD5 hash of the contents. -/// @param _hash The pointer to where the hash should be stored. The caller is responsible for freeing the hash. -/// @param fd The file descriptor to read. -/// @return The result of the operation. -result_t md5_fd(char** _hash, int fd); - -/// @brief Reads the specified file, and calculates the MD5 hash of the contents. -/// @param _hash The pointer to where the hash should be stored. The caller is responsible for freeing the hash. -/// @param file The file to read. -/// @return The result of the operation. -result_t md5_file(char** _hash, const char* file); \ No newline at end of file