-
Notifications
You must be signed in to change notification settings - Fork 6
/
hp-laserjet-9050-Linux.ppd
6458 lines (5935 loc) · 266 KB
/
hp-laserjet-9050-Linux.ppd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
*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 9050
*% For Macintosh
*%========================================================
*%=================================================
*% PPD File Version Information
*%=================================================
*FileVersion: "PPD-VERSION-STRING"
*HPBuildNumber: "005"
*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: "HP9050_H.PPD"
*HPPDEPanel: "HPFinishingPanel"
*HPPDEPanel: "HPImagingOptions"
*%=================================================
*% Product Version Information
*%=================================================
*ModelName: "HP LaserJet 9050 "
*ShortNickName: "HP LaserJet 9050 "
*NickName: "HP LaserJet 9050 Postscript (recommended)"
*Product: "(hp LaserJet 9050)"
*Product: "(Hewlett-Packard hp LaserJet 9050)"
*Product: "(HP LaserJet 9050)"
*Manufacturer: "HP"
*PSVersion: "(3010.107) 0"
*%=================================================
*% Device Capabilities
*%=================================================
*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
*LanguageLevel: "3"
*Throughput: "50"
*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
*%=== Output Bin ======================
*PageStackOrder Upper: Normal
*PageStackOrder Left: Reverse
*PageStackOrder Stacker: Normal
*PageStackOrder StackerFaceUp: Reverse
*PageStackOrder UStapler: Normal
*PageStackOrder HPBooklet: Normal
*PageStackOrder HP8BinMB: Normal
*%=================================================
*% 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_Tray1/Tray 1: Boolean
*DefaultHPOption_Tray1: False
*da.Translation HPOption_Tray1/Bakke 1: ""
*de.Translation HPOption_Tray1/Zufuhrfach 1: ""
*es.Translation HPOption_Tray1/Bandeja 1: ""
*fi.Translation HPOption_Tray1/Lokero 1: ""
*fr.Translation HPOption_Tray1/Bac 1: ""
*it.Translation HPOption_Tray1/Vassoio 1: ""
*ja.Translation HPOption_Tray1/トレイ 1: ""
*ko.Translation HPOption_Tray1/용지함 1: ""
*nl.Translation HPOption_Tray1/Lade 1: ""
*nb.Translation HPOption_Tray1/Skuff 1: ""
*pt.Translation HPOption_Tray1/Bandeja 1: ""
*sv.Translation HPOption_Tray1/Fack 1: ""
*zh_CN.Translation HPOption_Tray1/纸盒1: ""
*zh_TW.Translation HPOption_Tray1/紙匣1: ""
*HPOption_Tray1 True/Installed: ""
*da.HPOption_Tray1 True/Installeret: ""
*de.HPOption_Tray1 True/Installiert: ""
*es.HPOption_Tray1 True/Instalado: ""
*fi.HPOption_Tray1 True/Asennettu: ""
*fr.HPOption_Tray1 True/Installé: ""
*it.HPOption_Tray1 True/Installato: ""
*ja.HPOption_Tray1 True/インストール済: ""
*ko.HPOption_Tray1 True/설치됨: ""
*nl.HPOption_Tray1 True/Geïnstalleerd: ""
*nb.HPOption_Tray1 True/Installert: ""
*pt.HPOption_Tray1 True/Instalada: ""
*sv.HPOption_Tray1 True/Installerat: ""
*zh_CN.HPOption_Tray1 True/已安装: ""
*zh_TW.HPOption_Tray1 True/已安裝: ""
*HPOption_Tray1 False/Not Installed: ""
*da.HPOption_Tray1 False/Ikke installeret: ""
*de.HPOption_Tray1 False/Nicht installiert: ""
*es.HPOption_Tray1 False/No Instalado: ""
*fi.HPOption_Tray1 False/Ei asennettu: ""
*fr.HPOption_Tray1 False/Non installé: ""
*it.HPOption_Tray1 False/Non installato: ""
*ja.HPOption_Tray1 False/インストールされていない: ""
*ko.HPOption_Tray1 False/설치되지 않음: ""
*nl.HPOption_Tray1 False/Niet geïnstalleerd: ""
*nb.HPOption_Tray1 False/Ikke installert: ""
*pt.HPOption_Tray1 False/Não instalada: ""
*sv.HPOption_Tray1 False/Ej installerat: ""
*zh_CN.HPOption_Tray1 False/未安装: ""
*zh_TW.HPOption_Tray1 False/尚未安裝: ""
*?HPOption_Tray1: "
save
currentpagedevice /InputAttributes get 3 known
{(True)}{(False)} ifelse = flush
restore
"
*End
*CloseUI: *HPOption_Tray1
*OpenUI *HPOption_2000_Sheet_Tray/2000-Sheet Input Tray (Tray 4): Boolean
*DefaultHPOption_2000_Sheet_Tray: False
*da.Translation HPOption_2000_Sheet_Tray/Bakke 4: ""
*de.Translation HPOption_2000_Sheet_Tray/2000-Blatt-Zufuhrfach (Fach 4): ""
*es.Translation HPOption_2000_Sheet_Tray/Bandeja de entrada para 2000 hojas (Bandeja 4): ""
*fi.Translation HPOption_2000_Sheet_Tray/2 000 arkin syöttölokero (lokero 4): ""
*fr.Translation HPOption_2000_Sheet_Tray/Bac d'alim. de 2 000 feuilles (bac 4): ""
*it.Translation HPOption_2000_Sheet_Tray/Vassoio da 2000 fogli (Vassoio 4): ""
*ja.Translation HPOption_2000_Sheet_Tray/2000 枚給紙トレイ (トレイ 4): ""
*ko.Translation HPOption_2000_Sheet_Tray/2,000매 입력 용지함(용지함 4): ""
*nl.Translation HPOption_2000_Sheet_Tray/Invoerlade voor 2.000 vel (Lade 4): ""
*nb.Translation HPOption_2000_Sheet_Tray/2000-arks innskuff (skuff 4): ""
*pt.Translation HPOption_2000_Sheet_Tray/Bandeja de entrada para 2000 folhas (bandeja 4): ""
*sv.Translation HPOption_2000_Sheet_Tray/Inmatningsfack för 2 000 ark (Fack 4): ""
*zh_CN.Translation HPOption_2000_Sheet_Tray/2000 页进纸盒(纸盒 4): ""
*zh_TW.Translation HPOption_2000_Sheet_Tray/可容納 2000 張紙的進紙匣 (4 號紙匣): ""
*HPOption_2000_Sheet_Tray True/Installed: ""
*da.HPOption_2000_Sheet_Tray True/Installeret: ""
*de.HPOption_2000_Sheet_Tray True/Installiert: ""
*es.HPOption_2000_Sheet_Tray True/Instalado: ""
*fi.HPOption_2000_Sheet_Tray True/Asennettu: ""
*fr.HPOption_2000_Sheet_Tray True/Installé: ""
*it.HPOption_2000_Sheet_Tray True/Installato: ""
*ja.HPOption_2000_Sheet_Tray True/インストール済み: ""
*ko.HPOption_2000_Sheet_Tray True/설치: ""
*nl.HPOption_2000_Sheet_Tray True/Geïnstalleerd: ""
*nb.HPOption_2000_Sheet_Tray True/Installert: ""
*pt.HPOption_2000_Sheet_Tray True/Instalada: ""
*sv.HPOption_2000_Sheet_Tray True/Installerat: ""
*zh_CN.HPOption_2000_Sheet_Tray True/已安装: ""
*zh_TW.HPOption_2000_Sheet_Tray True/已安裝: ""
*HPOption_2000_Sheet_Tray False/Not Installed: ""
*da.HPOption_2000_Sheet_Tray False/Ikke installeret: ""
*de.HPOption_2000_Sheet_Tray False/Nicht installiert: ""
*es.HPOption_2000_Sheet_Tray False/No instalado: ""
*fi.HPOption_2000_Sheet_Tray False/Ei asennettu: ""
*fr.HPOption_2000_Sheet_Tray False/Non installé: ""
*it.HPOption_2000_Sheet_Tray False/Non Installato: ""
*ja.HPOption_2000_Sheet_Tray False/インストールされていない: ""
*ko.HPOption_2000_Sheet_Tray False/미설치: ""
*nl.HPOption_2000_Sheet_Tray False/Geïnstalleerd: ""
*nb.HPOption_2000_Sheet_Tray False/Ikke installert: ""
*pt.HPOption_2000_Sheet_Tray False/Não Instalado: ""
*sv.HPOption_2000_Sheet_Tray False/Ej installerad: ""
*zh_CN.HPOption_2000_Sheet_Tray False/未安装: ""
*zh_TW.HPOption_2000_Sheet_Tray False/未安裝: ""
*?HPOption_2000_Sheet_Tray: "
save
currentpagedevice /InputAttributes get 5 known
{(True)}{(False)} ifelse = flush
restore
"
*End
*CloseUI: *HPOption_2000_Sheet_Tray
*OpenUI *HPOption_Duplexer/Duplex Unit: Boolean
*DefaultHPOption_Duplexer: False
*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
*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/印表機硬碟: ""
*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/無: ""
*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 磁碟: ""
*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/硬碟: ""
*?HPOption_Disk: "
save
/FWMax 2048 def /RAMMax 500000 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
*OpenUI *HPOption_MBM_Mixed/Accessory Output Bins: PickOne
*OrderDependency: 10 AnySetup *HPOption_MBM_Mixed
*DefaultHPOption_MBM_Mixed: Standard
*da.Translation HPOption_MBM_Mixed/Tilbehørudskriftsbakker: ""
*de.Translation HPOption_MBM_Mixed/Zusatzausgabefächer: ""
*es.Translation HPOption_MBM_Mixed/Bandejas de salida accesorias: ""
*fi.Translation HPOption_MBM_Mixed/Lisätulostelokerot: ""
*fr.Translation HPOption_MBM_Mixed/Bacs de sortie optionnels: ""
*it.Translation HPOption_MBM_Mixed/Scomparti di uscita accessori: ""
*ja.Translation HPOption_MBM_Mixed/アクセサリ排出ビン: ""
*ko.Translation HPOption_MBM_Mixed/부속품 출력함: ""
*nl.Translation HPOption_MBM_Mixed/Accessoire-uitvoerbakken: ""
*nb.Translation HPOption_MBM_Mixed/Ekstra utskuffer: ""
*pt.Translation HPOption_MBM_Mixed/Compartimentos acessórios de saída: ""
*sv.Translation HPOption_MBM_Mixed/Extra utmatningsfack: ""
*zh_CN.Translation HPOption_MBM_Mixed/附加出纸槽: ""
*zh_TW.Translation HPOption_MBM_Mixed/附件輸出紙槽: ""
*HPOption_MBM_Mixed Standard/Not Installed: ""
*da.HPOption_MBM_Mixed Standard/Ingen: ""
*de.HPOption_MBM_Mixed Standard/Nicht installiert: ""
*es.HPOption_MBM_Mixed Standard/Ninguna: ""
*fi.HPOption_MBM_Mixed Standard/Ei asennettu: ""
*fr.HPOption_MBM_Mixed Standard/Non installé: ""
*it.HPOption_MBM_Mixed Standard/Nessuno: ""
*ja.HPOption_MBM_Mixed Standard/インストールされていない: ""
*ko.HPOption_MBM_Mixed Standard/설치되지 않았음: ""
*nl.HPOption_MBM_Mixed Standard/Niet geïnstalleerd: ""
*nb.HPOption_MBM_Mixed Standard/Ikke installert: ""
*pt.HPOption_MBM_Mixed Standard/Nenhum: ""
*sv.HPOption_MBM_Mixed Standard/Inget: ""
*zh_CN.HPOption_MBM_Mixed Standard/未安装: ""
*zh_TW.HPOption_MBM_Mixed Standard/尚未安裝: ""
*HPOption_MBM_Mixed MBMStaplerStacker/HP 3000-Sheet Stapler-Stacker: "userdict /HPConfigurableStapler 0 put"
*da.HPOption_MBM_Mixed MBMStaplerStacker/hphæfter/stabler: ""
*de.HPOption_MBM_Mixed MBMStaplerStacker/hp 3000-Blatt-Hefter/Ablage: ""
*es.HPOption_MBM_Mixed MBMStaplerStacker/Grapadora y apilador de 3000 hojas de HP : ""
*fi.HPOption_MBM_Mixed MBMStaplerStacker/HP<3A>n 3000 arkin nitoja/pinoaja: ""
*fr.HPOption_MBM_Mixed MBMStaplerStacker/Agrafeuse-empileuse de 3000 feuilles HP: ""
*it.HPOption_MBM_Mixed MBMStaplerStacker/Cucitrice-Fascicolatrice HP da 3000 fogli: ""
*ja.HPOption_MBM_Mixed MBMStaplerStacker/hp 3000枚ホチキス/スタッカ: ""
*ko.HPOption_MBM_Mixed MBMStaplerStacker/hp 3000매 스테이플러-스택커: ""
*nl.HPOption_MBM_Mixed MBMStaplerStacker/hp-nietmachine/stapelaar voor 3000 vel: ""
*nb.HPOption_MBM_Mixed MBMStaplerStacker/hp 3000-arks stifteenhets-magasin: ""
*pt.HPOption_MBM_Mixed MBMStaplerStacker/Empilhador/Grampeador de 3000 Folhas HP: ""
*sv.HPOption_MBM_Mixed MBMStaplerStacker/hp Häftning och stapling för 3000 ark: ""
*zh_CN.HPOption_MBM_Mixed MBMStaplerStacker/hp 3000页装订堆栈器: ""
*zh_TW.HPOption_MBM_Mixed MBMStaplerStacker/hp 300紙頁裝訂機/堆疊機: ""
*HPOption_MBM_Mixed MBMStacker/HP 3000-Sheet Stacker: ""
*da.HPOption_MBM_Mixed MBMStacker/hp 3000-ark hphæfter: ""
*de.HPOption_MBM_Mixed MBMStacker/hp 3000-Blatt-Ablage: ""
*es.HPOption_MBM_Mixed MBMStacker/Apilador de 3000 hojas de hp: ""
*fi.HPOption_MBM_Mixed MBMStacker/hp<3A>n 3000 arkin pinoaja: ""
*fr.HPOption_MBM_Mixed MBMStacker/Empileuse de 3000 feuilles hp: ""
*it.HPOption_MBM_Mixed MBMStacker/Impilatrice HP da 3000 fogli: ""
*ja.HPOption_MBM_Mixed MBMStacker/hp 3000枚スタッカ: ""
*ko.HPOption_MBM_Mixed MBMStacker/hp 3000-스태커 용지함: ""
*nl.HPOption_MBM_Mixed MBMStacker/HP stapelaar: ""
*nb.HPOption_MBM_Mixed MBMStacker/hp 3000-arks magasin: ""
*pt.HPOption_MBM_Mixed MBMStacker/hp 3000 Folhas empilhador: ""
*sv.HPOption_MBM_Mixed MBMStacker/HP staplingsenhet för 3000 ark: ""
*zh_CN.HPOption_MBM_Mixed MBMStacker/HP 3000 页堆栈器: ""
*zh_TW.HPOption_MBM_Mixed MBMStacker/可容納 3000 張紙的 HP 堆疊器: ""
*HPOption_MBM_Mixed HPFinisher/HP Multifunction Finisher: ""
*da.HPOption_MBM_Mixed HPFinisher/hp-multifunktionsfinisher: ""
*de.HPOption_MBM_Mixed HPFinisher/hp Mehrzweck-Abschlussgerät: ""
*es.HPOption_MBM_Mixed HPFinisher/Dispositivo de acabados multifunción de hp: ""
*fi.HPOption_MBM_Mixed HPFinisher/hp monitoiminen viimeistelylaite: ""
*fr.HPOption_MBM_Mixed HPFinisher/Module de finition multifonction hp: ""
*it.HPOption_MBM_Mixed HPFinisher/Unità di finitura multifunzione hp: ""
*ja.HPOption_MBM_Mixed HPFinisher/hp 多目的仕上げデバイス: ""
*ko.HPOption_MBM_Mixed HPFinisher/hp 다기능 마감장치: ""
*nl.HPOption_MBM_Mixed HPFinisher/hp Multifunctioneel afwerkingsapparaat: ""
*nb.HPOption_MBM_Mixed HPFinisher/hp flerfunksjonsetterbeh: ""
*pt.HPOption_MBM_Mixed HPFinisher/Dispositivo de acabamento multifunção hp: ""
*sv.HPOption_MBM_Mixed HPFinisher/hp efterbehandlare med fler funktioner: ""
*zh_CN.HPOption_MBM_Mixed HPFinisher/hp 多功能装订器: ""
*zh_TW.HPOption_MBM_Mixed HPFinisher/hp 多功能處理機: ""
*HPOption_MBM_Mixed HPMultiBinMailbox/HP Multi-Bin Mailbox: ""
*da.HPOption_MBM_Mixed HPMultiBinMailbox/HP Postkasse med flere bakker: ""
*de.HPOption_MBM_Mixed HPMultiBinMailbox/hp Multifächer-Mailbox: ""
*es.HPOption_MBM_Mixed HPMultiBinMailbox/Buzón de bandejas múltiples: ""
*fi.HPOption_MBM_Mixed HPMultiBinMailbox/Monilokeroinen postilaatikko: ""
*fr.HPOption_MBM_Mixed HPMultiBinMailbox/Trieuse à bacs multiples: ""
*it.HPOption_MBM_Mixed HPMultiBinMailbox/Casella a più scomparti: ""
*ja.HPOption_MBM_Mixed HPMultiBinMailbox/マルチトレイメールボックス: ""
*ko.HPOption_MBM_Mixed HPMultiBinMailbox/hp 다단 우편함: ""
*nl.HPOption_MBM_Mixed HPMultiBinMailbox/Postbus met multibakken: ""
*nb.HPOption_MBM_Mixed HPMultiBinMailbox/Postkasse med flere skuffer: ""
*pt.HPOption_MBM_Mixed HPMultiBinMailbox/Caixa de correio com vários compartimentos: ""
*sv.HPOption_MBM_Mixed HPMultiBinMailbox/Extra utmatningsfack: ""
*zh_CN.HPOption_MBM_Mixed HPMultiBinMailbox/多槽信箱: ""
*zh_TW.HPOption_MBM_Mixed HPMultiBinMailbox/多槽式信箱: ""
*?HPOption_MBM_Mixed: "
currentpagedevice /OutputAttributes known{
currentpagedevice /MediaProcessingDetails known{
currentpagedevice /MediaProcessingDetails get /ModelID known{
currentpagedevice /MediaProcessingDetails get /ModelID get (C8088B) search
{pop pop pop (HPFinisher)}
{(C8085A) search
{pop pop pop (MBMStaplerStacker)}
{(C8084A) search
{pop pop pop (MBMStacker)}
{(Q5693A) search
{pop pop pop (HPMultiBinMailbox)} {pop (Standard)} ifelse}
ifelse}
ifelse}
ifelse}
{(Standard)}
ifelse}
{(Standard)}
ifelse}
{(Standard)}
ifelse = flush"
*End
*CloseUI: *HPOption_MBM_Mixed
*%=== 8 Bin MultiBin MailBox Modes =========================
*OpenUI *HPMailboxMode/Mailbox Mode: PickOne
*OrderDependency: 46 AnySetup *HPMailboxMode
*DefaultHPMailboxMode: PrintersDefault
*da.Translation HPMailboxMode/Postkasse-tilstand: ""
*de.Translation HPMailboxMode/Mailbox-Modus: ""
*es.Translation HPMailboxMode/Modo Buzón: ""
*fi.Translation HPMailboxMode/Postilaatikkotila: ""
*fr.Translation HPMailboxMode/Mode trieuse: ""
*it.Translation HPMailboxMode/Modalità Mailbox: ""
*ja.Translation HPMailboxMode/メールボックスモード: ""
*ko.Translation HPMailboxMode/우편함 모드: ""
*nl.Translation HPMailboxMode/Postbusmodus: ""
*nb.Translation HPMailboxMode/Postkassemodus: ""
*pt.Translation HPMailboxMode/Modo de caixa de correio: ""
*sv.Translation HPMailboxMode/Sorterarlåge: ""
*zh_CN.Translation HPMailboxMode/信箱模式: ""
*zh_TW.Translation HPMailboxMode/信箱模式: ""
*HPMailboxMode PrintersDefault/Printer's Current Setting: ""
*da.HPMailboxMode PrintersDefault/Ingen: ""
*de.HPMailboxMode PrintersDefault/Aktuelle Einstellung: ""
*es.HPMailboxMode PrintersDefault/Valor actual: ""
*fi.HPMailboxMode PrintersDefault/Nykyinen asetus: ""
*fr.HPMailboxMode PrintersDefault/Paramétre actuel: ""
*it.HPMailboxMode PrintersDefault/Impostazione corrente: ""
*ja.HPMailboxMode PrintersDefault/現在の設定: ""
*ko.HPMailboxMode PrintersDefault/현재 설정: ""
*nl.HPMailboxMode PrintersDefault/Huidige instelling: ""
*nb.HPMailboxMode PrintersDefault/Ingen: ""
*pt.HPMailboxMode PrintersDefault/Configuração atual: ""
*sv.HPMailboxMode PrintersDefault/Aktuell inställning: ""
*zh_CN.HPMailboxMode PrintersDefault/当前设置: ""
*zh_TW.HPMailboxMode PrintersDefault/目前設定值: ""
*HPMailboxMode Standard/Not Installed: ""
*da.HPMailboxMode Standard/Ikke installeret: ""
*de.HPMailboxMode Standard/Nicht installiert: ""
*es.HPMailboxMode Standard/No Instalado: ""
*fi.HPMailboxMode Standard/Ei asennettu: ""
*fr.HPMailboxMode Standard/Non installé: ""
*it.HPMailboxMode Standard/Non installato: ""
*ja.HPMailboxMode Standard/取り付けられていない: ""
*ko.HPMailboxMode Standard/설치되지 않음: ""
*nl.HPMailboxMode Standard/Niet geïnstalleerd: ""
*nb.HPMailboxMode Standard/Ikke installert: ""
*pt.HPMailboxMode Standard/Não instalada: ""
*sv.HPMailboxMode Standard/Ej installerat: ""
*zh_CN.HPMailboxMode Standard/未安装: ""
*zh_TW.HPMailboxMode Standard/未安裝: ""
*HPMailboxMode MBMode/Mailbox Mode: ""
*da.HPMailboxMode MBMode/Postkassetilstand: ""
*de.HPMailboxMode MBMode/Mailbox-Modus: ""
*es.HPMailboxMode MBMode/Modo buzón: ""
*fi.HPMailboxMode MBMode/Postilaatikkotila: ""
*fr.HPMailboxMode MBMode/Mode Trieuse: ""
*it.HPMailboxMode MBMode/modalità Cassetta postale: ""
*ja.HPMailboxMode MBMode/メールボックスモード: ""
*ko.HPMailboxMode MBMode/우편함 모드: ""
*nl.HPMailboxMode MBMode/Modus voor postbus: ""
*nb.HPMailboxMode MBMode/Postkassemodus: ""
*pt.HPMailboxMode MBMode/Modo de caixa de correio: ""
*sv.HPMailboxMode MBMode/Sorterarlåge: ""
*zh_CN.HPMailboxMode MBMode/邮箱模式: ""
*zh_TW.HPMailboxMode MBMode/信箱模式: ""
*HPMailboxMode StackerMode/Stacker Mode: ""
*da.HPMailboxMode StackerMode/Stablertilstand: ""
*de.HPMailboxMode StackerMode/Stapelmodus: ""
*es.HPMailboxMode StackerMode/Modo apilador: ""
*fi.HPMailboxMode StackerMode/Pinontatila: ""
*fr.HPMailboxMode StackerMode/Mode Réceptacle: ""
*it.HPMailboxMode StackerMode/modalità Raccoglitore: ""
*ja.HPMailboxMode StackerMode/排紙トレイモード: ""
*ko.HPMailboxMode StackerMode/스태커 모드: ""
*nl.HPMailboxMode StackerMode/Modus voor stapelaar: ""
*nb.HPMailboxMode StackerMode/Stablingsmodus: ""
*pt.HPMailboxMode StackerMode/Modo de empilhador: ""
*sv.HPMailboxMode StackerMode/Låget Stapling: ""
*zh_CN.HPMailboxMode StackerMode/堆栈器模式: ""
*zh_TW.HPMailboxMode StackerMode/堆疊器模式: ""
*HPMailboxMode SeparatorMode/Separator Mode: ""
*da.HPMailboxMode SeparatorMode/Jobadskillertilstand: ""
*de.HPMailboxMode SeparatorMode/Jobtrennmodus: ""
*es.HPMailboxMode SeparatorMode/Modo separador de trabajos: ""
*fi.HPMailboxMode SeparatorMode/Työn erottelutila: ""
*fr.HPMailboxMode SeparatorMode/Mode Séparateur de tâche: ""
*it.HPMailboxMode SeparatorMode/modalità Separatore processi: ""
*ja.HPMailboxMode SeparatorMode/ジョブ仕分けモード: ""
*ko.HPMailboxMode SeparatorMode/작업 분리기 모드: ""
*nl.HPMailboxMode SeparatorMode/Modus voor taakscheiding: ""
*nb.HPMailboxMode SeparatorMode/Jobbskillingsmodus: ""
*pt.HPMailboxMode SeparatorMode/Modo de separador de trabalhos: ""
*sv.HPMailboxMode SeparatorMode/Låget Dokumentseparation: ""
*zh_CN.HPMailboxMode SeparatorMode/作业分隔器模式: ""
*zh_TW.HPMailboxMode SeparatorMode/工作分隔器模式: ""
*HPMailboxMode SorterCollatorMode/Sorter Collator Mode: ""
*da.HPMailboxMode SorterCollatorMode/Sorteringsenhedstilstand: ""
*de.HPMailboxMode SorterCollatorMode/Sortiermodus: ""
*es.HPMailboxMode SorterCollatorMode/Modo clasificador/organizador: ""
*fi.HPMailboxMode SorterCollatorMode/Lajittelutila: ""
*fr.HPMailboxMode SorterCollatorMode/Mode Trieur/Classeur: ""
*it.HPMailboxMode SorterCollatorMode/modalità Fascicolatore: ""
*ja.HPMailboxMode SorterCollatorMode/分類/丁合いモード: ""
*ko.HPMailboxMode SorterCollatorMode/분류기/조합기 모드: ""
*nl.HPMailboxMode SorterCollatorMode/Modus voor sorteerder: ""
*nb.HPMailboxMode SorterCollatorMode/Stablings-/sorteringsmodus: ""
*pt.HPMailboxMode SorterCollatorMode/Modo de classificador/intercalador: ""
*sv.HPMailboxMode SorterCollatorMode/Låget Dokumentsorterare: ""
*zh_CN.HPMailboxMode SorterCollatorMode/排序器/分页器模式: ""
*zh_TW.HPMailboxMode SorterCollatorMode/分類器/分頁器模式: ""
*?HPMailboxMode: "
currentpagedevice /OutputAttributes known{
currentpagedevice /MediaProcessingDetails known{
currentpagedevice /MediaProcessingDetails get /DeviceID known{
currentpagedevice /MediaProcessingDetails get /DeviceID get (HP 8-BIN MAILBOX) search
{pop pop pop (MBMode)}
{(HP 8-BIN STACKER) search
{pop pop pop (StackerMode)}
{(HP 8-BIN JOB SEPARATOR) search
{pop pop pop (SeparatorMode)}
{(HP 8-BIN SORTER/COLLATOR) search
{pop pop pop (SorterCollatorMode)} {pop (Standard)} ifelse}
ifelse}
ifelse}
ifelse}
{(Standard)}
ifelse}
{(Standard)}
ifelse}
{(Standard)}
ifelse = flush"
*End
*CloseUI: *HPMailboxMode
*OpenUI *InstalledMemory/Total Printer Memory: PickOne
*DefaultInstalledMemory: 64-127MB
*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 64-127MB/64 - 127 MB: ""
*da.InstalledMemory 64-127MB/64 - 127 MB RAM: ""
*de.InstalledMemory 64-127MB/64 - 127 MB RAM: ""
*es.InstalledMemory 64-127MB/64 - 127 MB RAM: ""
*fi.InstalledMemory 64-127MB/64 - 127 megatavua: ""
*fr.InstalledMemory 64-127MB/64 - 127 Mo de RAM: ""
*it.InstalledMemory 64-127MB/64 - 127 MB RAM: ""
*ja.InstalledMemory 64-127MB/64 〜 127 MB RAM: ""
*ko.InstalledMemory 64-127MB/64 - 127 MB RAM: ""
*nl.InstalledMemory 64-127MB/64 - 127 MB RAM: ""
*nb.InstalledMemory 64-127MB/64 - 127 MB RAM: ""
*pt.InstalledMemory 64-127MB/64 - 127 MB RAM: ""
*sv.InstalledMemory 64-127MB/64 - 127 MB RAM: ""
*zh_CN.InstalledMemory 64-127MB/64 - 127 MB RAM: ""
*zh_TW.InstalledMemory 64-127MB/64 - 127 MB RAM: ""
*InstalledMemory 128-255MB/128 - 255 MB: ""
*da.InstalledMemory 128-255MB/128 - 255 MB RAM: ""
*de.InstalledMemory 128-255MB/128 - 255 MB RAM: ""
*es.InstalledMemory 128-255MB/128 - 255 MB RAM: ""
*fi.InstalledMemory 128-255MB/128 - 255 megatavua: ""
*fr.InstalledMemory 128-255MB/128 - 255 Mo de RAM: ""
*it.InstalledMemory 128-255MB/128 - 255 MB RAM: ""
*ja.InstalledMemory 128-255MB/128 〜 255 MB RAM: ""
*ko.InstalledMemory 128-255MB/128 - 255 MB RAM: ""
*nl.InstalledMemory 128-255MB/128 - 255 MB RAM: ""
*nb.InstalledMemory 128-255MB/128 - 255 MB RAM: ""
*pt.InstalledMemory 128-255MB/128 - 255 MB RAM: ""
*sv.InstalledMemory 128-255MB/128 - 255 MB RAM: ""
*zh_CN.InstalledMemory 128-255MB/128 - 255 MB RAM: ""
*zh_TW.InstalledMemory 128-255MB/128 - 255 MB RAM: ""
*InstalledMemory 256-383MB/256 - 383 MB: ""
*da.InstalledMemory 256-383MB/256 - 383 MB RAM: ""
*de.InstalledMemory 256-383MB/256 - 383 MB RAM: ""
*es.InstalledMemory 256-383MB/256 - 383 MB RAM: ""
*fi.InstalledMemory 256-383MB/256 - 383 megatavua: ""
*fr.InstalledMemory 256-383MB/256 - 383 Mo de RAM: ""
*it.InstalledMemory 256-383MB/256 - 383 MB RAM: ""
*ja.InstalledMemory 256-383MB/256 〜 383 MB RAM: ""
*ko.InstalledMemory 256-383MB/256 - 383 MB RAM: ""
*nl.InstalledMemory 256-383MB/256 - 383 MB RAM: ""
*nb.InstalledMemory 256-383MB/256 - 383 MB RAM: ""
*pt.InstalledMemory 256-383MB/256 - 383 MB RAM: ""
*sv.InstalledMemory 256-383MB/256 - 383 MB RAM: ""
*zh_CN.InstalledMemory 256-383MB/256 - 383 MB RAM: ""
*zh_TW.InstalledMemory 256-383MB/256 - 383 MB RAM: ""
*InstalledMemory 384-512MB/384 - 512 MB: ""
*da.InstalledMemory 384-512MB/384 - 512 MB RAM: ""
*de.InstalledMemory 384-512MB/384 - 512 MB RAM: ""
*es.InstalledMemory 384-512MB/384 - 512 MB RAM: ""
*fi.InstalledMemory 384-512MB/384 - 512 megatavua: ""
*fr.InstalledMemory 384-512MB/384 - 512 Mo de RAM: ""
*it.InstalledMemory 384-512MB/384 - 512 MB RAM: ""
*ja.InstalledMemory 384-512MB/384 〜 512 MB RAM: ""
*ko.InstalledMemory 384-512MB/384 - 512 MB RAM: ""
*nl.InstalledMemory 384-512MB/384 - 512 MB RAM: ""
*nb.InstalledMemory 384-512MB/384 - 512 MB RAM: ""
*pt.InstalledMemory 384-512MB/384 - 512 MB RAM: ""
*sv.InstalledMemory 384-512MB/384 - 512 MB RAM: ""
*zh_CN.InstalledMemory 384-512MB/384 - 512 MB RAM: ""
*zh_TW.InstalledMemory 384-512MB/384 - 512 MB RAM: ""
*?InstalledMemory: "
save
currentsystemparams /RamSize get
524288 div ceiling cvi 2 div
/size exch def
size 384 ge
{(384-512MB)}
{size 256 ge
{(256-383MB)}
{size 128 ge
{(128-255MB)}
{(64-127MB)} ifelse
} ifelse
} ifelse = flush
restore
"
*End
*CloseUI: *InstalledMemory
*%=================================================
*% 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: "
<</DeferredMediaSelection true>> 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: "
<</DeferredMediaSelection false /Policies << /PageSize 3 >> >> 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: "
<</DeferredMediaSelection false /Policies << /PageSize 5 >> >> 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
*CloseGroup: InstallableOptions
*%=================================================
*% UI Constraints
*%=================================================
*% If A than not B (Also include the reverse constraints if appropriate)
*%
*% Constraints against Installable Options
*%-------------------------------------------------------------------------
*UIConstraints: *HPOption_Tray1 False *InputSlot Tray1
*UIConstraints: *HPOption_Tray1 False *ManualFeed True
*UIConstraints: *HPOption_2000_Sheet_Tray False *InputSlot Tray4Optional
*UIConstraints: *InputSlot Tray1 *HPOption_Tray1 False
*UIConstraints: *ManualFeed True *HPOption_Tray1 False
*UIConstraints: *InputSlot Tray4Optional *HPOption_2000_Sheet_Tray False
*% Constraints on Output devices and the OutputBins
*%-------------------------------------------------------------------
*% Standard (Nothing Attaced)
*UIConstraints: *HPOption_MBM_Mixed Standard *OutputBin Stacker
*UIConstraints: *HPOption_MBM_Mixed Standard *OutputBin StackerFaceUp
*UIConstraints: *HPOption_MBM_Mixed Standard *OutputBin UStapler
*UIConstraints: *HPOption_MBM_Mixed Standard *OutputBin HPBooklet
*UIConstraints: *HPOption_MBM_Mixed Standard *OutputBin HP8BinMB
*UIConstraints: *OutputBin Stacker *HPOption_MBM_Mixed Standard
*UIConstraints: *OutputBin StackerFaceUp *HPOption_MBM_Mixed Standard
*UIConstraints: *OutputBin UStapler *HPOption_MBM_Mixed Standard
*UIConstraints: *OutputBin HPBooklet *HPOption_MBM_Mixed Standard
*UIConstraints: *OutputBin HP8BinMB *HPOption_MBM_Mixed Standard
*UIConstraints: *HPOption_MBM_Mixed Standard *HPMailboxMode MBMode
*UIConstraints: *HPOption_MBM_Mixed Standard *HPMailboxMode StackerMode
*UIConstraints: *HPOption_MBM_Mixed Standard *HPMailboxMode SeparatorMode
*UIConstraints: *HPOption_MBM_Mixed Standard *HPMailboxMode SorterCollatorMode
*UIConstraints: *HPMailboxMode MBMode *HPOption_MBM_Mixed Standard
*UIConstraints: *HPMailboxMode StackerMode *HPOption_MBM_Mixed Standard
*UIConstraints: *HPMailboxMode SeparatorMode *HPOption_MBM_Mixed Standard
*UIConstraints: *HPMailboxMode SorterCollatorMode *HPOption_MBM_Mixed Standard
*UIConstraints: *HPOption_MBM_Mixed Standard *HPMailboxOptions Bin1
*UIConstraints: *HPOption_MBM_Mixed Standard *HPMailboxOptions Bin2
*UIConstraints: *HPOption_MBM_Mixed Standard *HPMailboxOptions Bin3
*UIConstraints: *HPOption_MBM_Mixed Standard *HPMailboxOptions Bin4
*UIConstraints: *HPOption_MBM_Mixed Standard *HPMailboxOptions Bin5
*UIConstraints: *HPOption_MBM_Mixed Standard *HPMailboxOptions Bin6
*UIConstraints: *HPOption_MBM_Mixed Standard *HPMailboxOptions Bin7
*UIConstraints: *HPOption_MBM_Mixed Standard *HPMailboxOptions Bin8
*UIConstraints: *HPOption_MBM_Mixed Standard *HPMailboxOptions Bin1_8
*UIConstraints: *HPMailboxOptions Bin2 *HPOption_MBM_Mixed Standard
*UIConstraints: *HPMailboxOptions Bin1 *HPOption_MBM_Mixed Standard
*UIConstraints: *HPMailboxOptions Bin3 *HPOption_MBM_Mixed Standard
*UIConstraints: *HPMailboxOptions Bin4 *HPOption_MBM_Mixed Standard
*UIConstraints: *HPMailboxOptions Bin5 *HPOption_MBM_Mixed Standard
*UIConstraints: *HPMailboxOptions Bin6 *HPOption_MBM_Mixed Standard
*UIConstraints: *HPMailboxOptions Bin7 *HPOption_MBM_Mixed Standard
*UIConstraints: *HPMailboxOptions Bin8 *HPOption_MBM_Mixed Standard
*UIConstraints: *HPMailboxOptions Bin1_8 *HPOption_MBM_Mixed Standard
*UIConstraints: *HPOption_MBM_Mixed Standard *HPStaplerOptions 1diagonal
*UIConstraints: *HPOption_MBM_Mixed Standard *HPStaplerOptions 1parallel
*UIConstraints: *HPOption_MBM_Mixed Standard *HPStaplerOptions 2parallel
*UIConstraints: *HPOption_MBM_Mixed Standard *HPStaplerOptions 3parallel
*UIConstraints: *HPOption_MBM_Mixed Standard *HPStaplerOptions 6parallel
*UIConstraints: *HPStaplerOptions 1diagonal *HPOption_MBM_Mixed Standard
*UIConstraints: *HPStaplerOptions 1parallel *HPOption_MBM_Mixed Standard
*UIConstraints: *HPStaplerOptions 2parallel *HPOption_MBM_Mixed Standard
*UIConstraints: *HPStaplerOptions 3parallel *HPOption_MBM_Mixed Standard
*UIConstraints: *HPStaplerOptions 6parallel *HPOption_MBM_Mixed Standard
*% Stacker
*UIConstraints: *HPOption_MBM_Mixed MBMStacker *OutputBin UStapler
*UIConstraints: *HPOption_MBM_Mixed MBMStacker *OutputBin HP8BinMB
*UIConstraints: *HPOption_MBM_Mixed MBMStacker *OutputBin HPBooklet
*UIConstraints: *HPOption_MBM_Mixed MBMStacker *OutputBin StackerFaceUp
*UIConstraints: *OutputBin UStapler *HPOption_MBM_Mixed MBMStacker
*UIConstraints: *OutputBin HP8BinMB *HPOption_MBM_Mixed MBMStacker
*UIConstraints: *OutputBin HPBooklet *HPOption_MBM_Mixed MBMStacker
*UIConstraints: *OutputBin StackerFaceUp *HPOption_MBM_Mixed MBMStacker
*UIConstraints: *HPOption_MBM_Mixed MBMStacker *HPMailboxMode MBMode
*UIConstraints: *HPOption_MBM_Mixed MBMStacker *HPMailboxMode StackerMode
*UIConstraints: *HPOption_MBM_Mixed MBMStacker *HPMailboxMode SeparatorMode
*UIConstraints: *HPOption_MBM_Mixed MBMStacker *HPMailboxMode SorterCollatorMode
*UIConstraints: *HPMailboxMode MBMode *HPOption_MBM_Mixed MBMStacker
*UIConstraints: *HPMailboxMode StackerMode *HPOption_MBM_Mixed MBMStacker
*UIConstraints: *HPMailboxMode SeparatorMode *HPOption_MBM_Mixed MBMStacker
*UIConstraints: *HPMailboxMode SorterCollatorMode *HPOption_MBM_Mixed MBMStacker
*UIConstraints: *HPOption_MBM_Mixed MBMStacker *HPMailboxOptions Bin2
*UIConstraints: *HPOption_MBM_Mixed MBMStacker *HPMailboxOptions Bin1
*UIConstraints: *HPOption_MBM_Mixed MBMStacker *HPMailboxOptions Bin3
*UIConstraints: *HPOption_MBM_Mixed MBMStacker *HPMailboxOptions Bin4
*UIConstraints: *HPOption_MBM_Mixed MBMStacker *HPMailboxOptions Bin5
*UIConstraints: *HPOption_MBM_Mixed MBMStacker *HPMailboxOptions Bin6
*UIConstraints: *HPOption_MBM_Mixed MBMStacker *HPMailboxOptions Bin7
*UIConstraints: *HPOption_MBM_Mixed MBMStacker *HPMailboxOptions Bin8
*UIConstraints: *HPOption_MBM_Mixed MBMStacker *HPMailboxOptions Bin1_8
*UIConstraints: *HPMailboxOptions Bin1 *HPOption_MBM_Mixed MBMStacker
*UIConstraints: *HPMailboxOptions Bin2 *HPOption_MBM_Mixed MBMStacker
*UIConstraints: *HPMailboxOptions Bin3 *HPOption_MBM_Mixed MBMStacker
*UIConstraints: *HPMailboxOptions Bin4 *HPOption_MBM_Mixed MBMStacker
*UIConstraints: *HPMailboxOptions Bin5 *HPOption_MBM_Mixed MBMStacker
*UIConstraints: *HPMailboxOptions Bin6 *HPOption_MBM_Mixed MBMStacker
*UIConstraints: *HPMailboxOptions Bin7 *HPOption_MBM_Mixed MBMStacker
*UIConstraints: *HPMailboxOptions Bin8 *HPOption_MBM_Mixed MBMStacker
*UIConstraints: *HPMailboxOptions Bin1_8 *HPOption_MBM_Mixed MBMStacker
*UIConstraints: *HPOption_MBM_Mixed MBMStacker *HPStaplerOptions 1diagonal
*UIConstraints: *HPOption_MBM_Mixed MBMStacker *HPStaplerOptions 1parallel
*UIConstraints: *HPOption_MBM_Mixed MBMStacker *HPStaplerOptions 2parallel
*UIConstraints: *HPOption_MBM_Mixed MBMStacker *HPStaplerOptions 3parallel
*UIConstraints: *HPOption_MBM_Mixed MBMStacker *HPStaplerOptions 6parallel
*UIConstraints: *HPStaplerOptions 1diagonal *HPOption_MBM_Mixed MBMStacker
*UIConstraints: *HPStaplerOptions 1parallel *HPOption_MBM_Mixed MBMStacker
*UIConstraints: *HPStaplerOptions 2parallel *HPOption_MBM_Mixed MBMStacker
*UIConstraints: *HPStaplerOptions 3parallel *HPOption_MBM_Mixed MBMStacker
*UIConstraints: *HPStaplerOptions 6parallel *HPOption_MBM_Mixed MBMStacker
*% StaplerStacker
*UIConstraints: *HPOption_MBM_Mixed MBMStaplerStacker *OutputBin HP8BinMB
*UIConstraints: *HPOption_MBM_Mixed MBMStaplerStacker *OutputBin HPBooklet
*UIConstraints: *HPOption_MBM_Mixed MBMStaplerStacker *OutputBin StackerFaceUp
*UIConstraints: *OutputBin HP8BinMB *HPOption_MBM_Mixed MBMStaplerStacker
*UIConstraints: *OutputBin HPBooklet *HPOption_MBM_Mixed MBMStaplerStacker
*UIConstraints: *OutputBin StackerFaceUp *HPOption_MBM_Mixed MBMStaplerStacker
*UIConstraints: *HPOption_MBM_Mixed MBMStaplerStacker *HPMailboxMode MBMode
*UIConstraints: *HPOption_MBM_Mixed MBMStaplerStacker *HPMailboxMode StackerMode
*UIConstraints: *HPOption_MBM_Mixed MBMStaplerStacker *HPMailboxMode SeparatorMode
*UIConstraints: *HPOption_MBM_Mixed MBMStaplerStacker *HPMailboxMode SorterCollatorMode
*UIConstraints: *HPMailboxMode MBMode *HPOption_MBM_Mixed MBMStaplerStacker
*UIConstraints: *HPMailboxMode StackerMode *HPOption_MBM_Mixed MBMStaplerStacker
*UIConstraints: *HPMailboxMode SeparatorMode *HPOption_MBM_Mixed MBMStaplerStacker
*UIConstraints: *HPMailboxMode SorterCollatorMode *HPOption_MBM_Mixed MBMStaplerStacker
*UIConstraints: *HPOption_MBM_Mixed MBMStaplerStacker *HPMailboxOptions Bin1
*UIConstraints: *HPOption_MBM_Mixed MBMStaplerStacker *HPMailboxOptions Bin2
*UIConstraints: *HPOption_MBM_Mixed MBMStaplerStacker *HPMailboxOptions Bin3
*UIConstraints: *HPOption_MBM_Mixed MBMStaplerStacker *HPMailboxOptions Bin4
*UIConstraints: *HPOption_MBM_Mixed MBMStaplerStacker *HPMailboxOptions Bin5
*UIConstraints: *HPOption_MBM_Mixed MBMStaplerStacker *HPMailboxOptions Bin6
*UIConstraints: *HPOption_MBM_Mixed MBMStaplerStacker *HPMailboxOptions Bin7
*UIConstraints: *HPOption_MBM_Mixed MBMStaplerStacker *HPMailboxOptions Bin8
*UIConstraints: *HPOption_MBM_Mixed MBMStaplerStacker *HPMailboxOptions Bin1_8
*UIConstraints: *HPMailboxOptions Bin1 *HPOption_MBM_Mixed MBMStaplerStacker
*UIConstraints: *HPMailboxOptions Bin2 *HPOption_MBM_Mixed MBMStaplerStacker
*UIConstraints: *HPMailboxOptions Bin3 *HPOption_MBM_Mixed MBMStaplerStacker
*UIConstraints: *HPMailboxOptions Bin4 *HPOption_MBM_Mixed MBMStaplerStacker
*UIConstraints: *HPMailboxOptions Bin5 *HPOption_MBM_Mixed MBMStaplerStacker
*UIConstraints: *HPMailboxOptions Bin6 *HPOption_MBM_Mixed MBMStaplerStacker
*UIConstraints: *HPMailboxOptions Bin7 *HPOption_MBM_Mixed MBMStaplerStacker
*UIConstraints: *HPMailboxOptions Bin8 *HPOption_MBM_Mixed MBMStaplerStacker