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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223
|
<?xml version="1.0" encoding="utf-8"?>
<grit-part>
<if expr="enable_print_preview">
<if expr="is_win">
<message name="IDS_PRINT_PREVIEW_FRIENDLY_WIN_NETWORK_PRINTER_NAME" desc="Friendly name for a printer with a given name on a given server. This uses the same format as the Windows print dialog.">
<ph name="PRINTER_NAME">$1<ex>HP LaserJet</ex></ph> on <ph name="SERVER_NAME">$2<ex>printserver</ex></ph>
</message>
</if>
</if>
<message name="IDS_PRINT_COMPOSITOR_SERVICE_DISPLAY_NAME" desc="The display name (in the system task manager, etc) of the service process used for PDF compositing.">
Print Compositor Service
</message>
<if expr="is_chromeos">
<message name="IDS_PRINT_CHAMBER_HUMIDITY" desc="PWG5100.21 (8.1.1) chamber-humidity">
Chamber humidity
</message>
<message name="IDS_PRINT_CHAMBER_TEMPERATURE" desc="PWG5100.21 (8.1.2) chamber-temperature">
Chamber temperature
</message>
<message name="IDS_PRINT_CONFIRMATION_SHEET_PRINT" desc="PWG5100.15 (7.2.1) confirmation-sheet-print. 'Print' is a verb.">
Print confirmation sheet
</message>
<message name="IDS_PRINT_FEED_ORIENTATION" desc="PWG5100.11 (7.1) feed-orientation. 'Feed' is a verb.">
Feed orientation
</message>
<message name="IDS_PRINT_FONT_NAME_REQUESTED" desc="PWG5100.11 (7.2) font-name-requested">
Font requested
</message>
<message name="IDS_PRINT_FONT_SIZE_REQUESTED" desc="PWG5100.11 (7.3) font-size-requested">
Font size requested
</message>
<message name="IDS_PRINT_IMPOSITION_TEMPLATE" desc="PWG5100.3 (3.4) imposition-template">
Imposition template
</message>
<message name="IDS_PRINT_JOB_ACCOUNT_ID" desc="PWG5100.3 (3.6) job-account-id">
Job account ID
</message>
<message name="IDS_PRINT_JOB_ACCOUNT_TYPE" desc="PWG5100.16 (6.2.1) job-account-type">
Job account type
</message>
<message name="IDS_PRINT_JOB_ACCOUNTING_USER_ID" desc="PWG5100.3 (3.7) job-account-user-id">
Job accounting user ID
</message>
<message name="IDS_PRINT_JOB_DELAY_OUTPUT_UNTIL" desc="PWG5100.11 (7.4) job-delay-output-until">
Delay output until
</message>
<message name="IDS_PRINT_JOB_ERROR_ACTION" desc="PWG5100.13 (5.2.1) job-error-action">
Error action
</message>
<message name="IDS_PRINT_JOB_MESSAGE_TO_OPERATOR" desc="PWG5100.3 (3.10) job-message-to-operator. 'Message' is a noun.">
Message to operator
</message>
<message name="IDS_PRINT_JOB_PAGES_PER_SET" desc="PWG5100.1 (5.3) job-pages-per-set">
Pages per set
</message>
<message name="IDS_PRINT_JOB_PRIORITY" desc="RFC8011 (5.2.1) job-priority">
Priority
</message>
<message name="IDS_PRINT_JOB_RECIPIENT_NAME" desc="PWG5100.11 (7.8) job-recipient-name">
Recipient name
</message>
<message name="IDS_PRINT_JOB_SHEET_MESSAGE" desc="PWG5100.3 (3.12) job-sheet-message">
Job sheet message
</message>
<message name="IDS_PRINT_JOB_SHEETS" desc="RFC8011 (5.2.3) job-sheets">
Job sheets
</message>
<message name="IDS_PRINT_MEDIA_INPUT_TRAY_CHECK" desc="PWG5100.3 (3.14) media-input-tray-check">
Check input tray media
</message>
<message name="IDS_PRINT_MEDIA_SOURCE" desc="Option presented while a user is printing. The chosen option decides the tray from which the printer sources paper. Specified in PWG5100.7 (5.5.47) media-source-supported">
Input Tray
</message>
<message name="IDS_PRINT_MEDIA_TYPE" desc="Option presented while a user is printing. The chosen option specifies the type of paper loaded in the printer. Specified in PWG5100.7 (5.5.51) media-type-supported">
Paper type
</message>
<message name="IDS_PRINT_MULTIPLE_DOCUMENT_HANDLING" desc="RFC8011 (5.2.4) multiple-document-hand">
Multiple documents handling
</message>
<message name="IDS_PRINT_MULTIPLE_OBJECT_HANDLING" desc="PWG5100.21 (8.1.2) multiple-object-handling">
Multiple objects handling
</message>
<message name="IDS_PRINT_NUMBER_OF_RETRIES" desc="PWG5100.15 (7.2.4) number-of-retries">
Number of retries
</message>
<message name="IDS_PRINT_OUTPUT_BIN" desc="PWG5100.2 (2.1) output-bin">
Output bin
</message>
<message name="IDS_PRINT_OUTPUT_DEVICE" desc="PWG5100.7 (5.3.2) output-device">
Output device
</message>
<message name="IDS_PRINT_PAGE_DELIVERY" desc="PWG5100.3 (3.15) page-delivery">
Page delivery
</message>
<message name="IDS_PRINT_PAGE_ORDER_RECEIVED" desc="PWG5100.3 (3.16) page-order-received">
Page order received
</message>
<message name="IDS_PRINT_PLATFORM_TEMPERATURE" desc="PWG5100.21 (8.1.5) platform-temperature">
Platform temperature
</message>
<message name="IDS_PRINT_PRINT_BASE" desc="PWG5100.21 (8.1.7) print-base. 'Print' is an adjective.">
Print base
</message>
<message name="IDS_PRINT_PRINT_CONTENT_OPTIMIZE" desc="PWG5100.7 (5.3.3) print-content-optimize">
Optimize print content
</message>
<message name="IDS_PRINT_PRINT_QUALITY" desc="RFC8011 (5.2.13) print-quality">
Print quality
</message>
<message name="IDS_PRINT_PRINT_RENDERING_INTENT" desc="PWG5100.13 (5.2.4) print-rendering-intent">
Print rendering intent
</message>
<message name="IDS_PRINT_PRINT_SUPPORTS" desc="PWG5100.21 (8.1.9) print-supports. 'Supports' is a noun.">
Print supports
</message>
<message name="IDS_PRINT_RETRY_INTERVAL" desc="PWG5100.15 (7.2.5) retry-interval">
Retry interval
</message>
<message name="IDS_PRINT_RETRY_TIME_OUT" desc="PWG5100.15 (7.2.6) retry-time-out">
Retry time-out
</message>
<message name="IDS_PRINT_X_IMAGE_POSITION" desc="PWG5100.3 (3.19.2) x-image-position. 'Image' is an adjective.">
Image X position
</message>
<message name="IDS_PRINT_X_IMAGE_SHIFT" desc="PWG5100.3 (3.19.3) x-image-shift. 'Image' is an adjective.">
Image X shift
</message>
<message name="IDS_PRINT_X_SIDE1_IMAGE_SHIFT" desc="PWG5100.3 (3.19.4) x-side1-image-shift">
Side 1 image X shift
</message>
<message name="IDS_PRINT_X_SIDE2_IMAGE_SHIFT" desc="PWG5100.3 (3.19.5) x-side2-image-shift">
Side 2 image X shift
</message>
<message name="IDS_PRINT_Y_IMAGE_POSITION" desc="PWG5100.3 (3.19.6) y-image-position. 'Image' is an adjective.">
Image Y position
</message>
<message name="IDS_PRINT_Y_IMAGE_SHIFT" desc="PWG5100.3 (3.19.7) y-image-shift. 'Image' is an adjective.">
Image Y shift
</message>
<message name="IDS_PRINT_Y_SIDE1_IMAGE_SHIFT" desc="PWG5100.3 (3.19.8) y-side1-image-shift">
Side 1 image Y shift
</message>
<message name="IDS_PRINT_Y_SIDE2_IMAGE_SHIFT" desc="PWG5100.3 (3.19.9) y-side2-image-shift">
Side 2 image Y shift
</message>
<message name="IDS_PRINT_FEED_ORIENTATION_LONG_EDGE_FIRST" desc="PWG5100.11 (7.1) feed-orientation: long-edge-first">
Long edge first
</message>
<message name="IDS_PRINT_FEED_ORIENTATION_SHORT_EDGE_FIRST" desc="PWG5100.11 (7.1) feed-orientation: short-edge-first">
Short edge first
</message>
<message name="IDS_PRINT_IMPOSITION_TEMPLATE_NONE" desc="PWG5100.3 (3.4) imposition-template: none">
None
</message>
<message name="IDS_PRINT_IMPOSITION_TEMPLATE_SIGNATURE" desc="PWG5100.3 (3.4) imposition-template: signature">
Signature
</message>
<message name="IDS_PRINT_JOB_ACCOUNT_TYPE_GENERAL" desc="PWG5100.16 (6.2.1) job-account-type: general. 'General' means general-purpose.">
General
</message>
<message name="IDS_PRINT_JOB_ACCOUNT_TYPE_GROUP" desc="PWG5100.16 (6.2.1) job-account-type: group. 'Group' is a noun.">
Group
</message>
<message name="IDS_PRINT_JOB_ACCOUNT_TYPE_NONE" desc="PWG5100.16 (6.2.1) job-account-type: none">
None
</message>
<message name="IDS_PRINT_JOB_DELAY_OUTPUT_UNTIL_DAY_TIME" desc="PWG5100.11 (7.4) job-delay-output-until: day-time">
Day time
</message>
<message name="IDS_PRINT_JOB_DELAY_OUTPUT_UNTIL_EVENING" desc="PWG5100.11 (7.4) job-delay-output-until: evening">
Evening
</message>
<message name="IDS_PRINT_JOB_DELAY_OUTPUT_UNTIL_INDEFINITE" desc="PWG5100.11 (7.4) job-delay-output-until: indefinite">
Indefinite
</message>
<message name="IDS_PRINT_JOB_DELAY_OUTPUT_UNTIL_NIGHT" desc="PWG5100.11 (7.4) job-delay-output-until: night">
Night
</message>
<message name="IDS_PRINT_JOB_DELAY_OUTPUT_UNTIL_NO_DELAY_OUTPUT" desc="PWG5100.11 (7.4) job-delay-output-until: no-delay-output">
No delay
</message>
<message name="IDS_PRINT_JOB_DELAY_OUTPUT_UNTIL_SECOND_SHIFT" desc="PWG5100.11 (7.4) job-delay-output-until: second-shift. 'Shift' means work shift.">
Second shift
</message>
<message name="IDS_PRINT_JOB_DELAY_OUTPUT_UNTIL_THIRD_SHIFT" desc="PWG5100.11 (7.4) job-delay-output-until: third-shift. 'Shift means work shift.">
Third shift
</message>
<message name="IDS_PRINT_JOB_DELAY_OUTPUT_UNTIL_WEEKEND" desc="PWG5100.11 (7.4) job-delay-output-until: weekend">
Weekend
</message>
<message name="IDS_PRINT_JOB_ERROR_ACTION_ABORT_JOB" desc="PWG5100.13 (5.2.1) job-error-action: abort-job">
Abort
</message>
<message name="IDS_PRINT_JOB_ERROR_ACTION_CANCEL_JOB" desc="PWG5100.13 (5.2.1) job-error-action: cancel-job">
Cancel
</message>
<message name="IDS_PRINT_JOB_ERROR_ACTION_CONTINUE_JOB" desc="PWG5100.13 (5.2.1) job-error-action: continue-job">
Continue
</message>
<message name="IDS_PRINT_JOB_ERROR_ACTION_SUSPEND_JOB" desc="PWG5100.13 (5.2.1) job-error-action: suspend-job">
Suspend
</message>
<message name="IDS_PRINT_JOB_SHEETS_FIRST_PRINT_STREAM_PAGE" desc="PWG5100.3 (6.2) Additional values for the IPP 'job-sheets' Job Template Attribute: first-print-stream-page">
First print page
</message>
<message name="IDS_PRINT_JOB_SHEETS_JOB_BOTH_SHEET" desc="PWG5100.3 (6.2) Additional values for the IPP 'job-sheets' Job Template Attribute: job-both-sheet">
Both sheets
</message>
<message name="IDS_PRINT_JOB_SHEETS_JOB_END_SHEET" desc="PWG5100.3 (6.2) Additional values for the IPP 'job-sheets' Job Template Attribute: job-end-sheet. 'End' is an adjective.">
End sheet
</message>
<message name="IDS_PRINT_JOB_SHEETS_JOB_START_SHEET" desc="PWG5100.3 (6.2) Additional values for the IPP 'job-sheets' Job Template Attribute: job-start-sheet. 'Start' is an adjective.">
Start sheet
</message>
<message name="IDS_PRINT_JOB_SHEETS_NONE" desc="RFC8011 (5.2.3) job-sheets: none">
None
</message>
<message name="IDS_PRINT_JOB_SHEETS_STANDARD" desc="RFC8011 (5.2.3) job-sheets: standard">
Standard
</message>
<message name="IDS_PRINT_MULTIPLE_DOCUMENT_HANDLING_SEPARATE_DOCUMENTS_COLLATED_COPIES" desc="RFC8011 (5.2.4) multiple-document-handling: separate-documents-collated-copies. 'Separate' is an adjective.">
Separate documents/Collated copies
</message>
<message name="IDS_PRINT_MULTIPLE_DOCUMENT_HANDLING_SEPARATE_DOCUMENTS_UNCOLLATED_COPIES" desc="RFC8011 (5.2.4) multiple-document-handling: separate-documents-uncollated-copies. 'Separate' is an adjective.">
Separate documents/Uncollated copies
</message>
<message name="IDS_PRINT_MULTIPLE_DOCUMENT_HANDLING_SINGLE_DOCUMENT" desc="RFC8011 (5.2.4) multiple-document-handling: single-document">
Single document
</message>
<message name="IDS_PRINT_MULTIPLE_DOCUMENT_HANDLING_SINGLE_DOCUMENT_NEW_SHEET" desc="RFC8011 (5.2.4) multiple-document-handling: single-document-new-sheet">
Single document/New sheet
</message>
<message name="IDS_PRINT_MULTIPLE_OBJECT_HANDLING_AUTO" desc="PWG5100.21 (8.1.4) multiple-object-handling: auto">
Auto
</message>
<message name="IDS_PRINT_MULTIPLE_OBJECT_HANDLING_BEST_FIT" desc="PWG5100.21 (8.1.4) multiple-object-handling: best-fit">
Best fit
</message>
<message name="IDS_PRINT_MULTIPLE_OBJECT_HANDLING_BEST_QUALITY" desc="PWG5100.21 (8.1.4) multiple-object-handling: best-quality">
Best quality
</message>
<message name="IDS_PRINT_MULTIPLE_OBJECT_HANDLING_BEST_SPEED" desc="PWG5100.21 (8.1.4) multiple-object-handling: best-speed">
Best speed
</message>
<message name="IDS_PRINT_MULTIPLE_OBJECT_HANDLING_ONE_AT_A_TIME" desc="PWG5100.21 (8.1.4) multiple-object-handling: one-at-a-time">
One at a time
</message>
<message name="IDS_PRINT_OUTPUT_BIN_AUTO" desc="Automatically choose the correct output tray for the given Job Template attributes">
Auto
</message>
<message name="IDS_PRINT_OUTPUT_BIN_BOTTOM" desc="PWG5100.2 (2.1) output-bin: bottom">
Bottom
</message>
<message name="IDS_PRINT_OUTPUT_BIN_CENTER" desc="PWG5100.2 (2.1) output-bin: center">
Center
</message>
<message name="IDS_PRINT_OUTPUT_BIN_FACE_DOWN" desc="PWG5100.2 (2.1) output-bin: face-down">
Face down
</message>
<message name="IDS_PRINT_OUTPUT_BIN_FACE_UP" desc="PWG5100.2 (2.1) output-bin: face-up">
Face up
</message>
<message name="IDS_PRINT_OUTPUT_BIN_LARGE_CAPACITY" desc="PWG5100.2 (2.1) output-bin: large-capacity">
Large capacity
</message>
<message name="IDS_PRINT_OUTPUT_BIN_LEFT" desc="PWG5100.2 (2.1) output-bin: left">
Left
</message>
<message name="IDS_PRINT_OUTPUT_BIN_MAILBOX_1" desc="PWG5100.2 (2.1) output-bin: mailbox-N">
Mailbox 1
</message>
<message name="IDS_PRINT_OUTPUT_BIN_MAILBOX_2" desc="PWG5100.2 (2.1) output-bin: mailbox-N">
Mailbox 2
</message>
<message name="IDS_PRINT_OUTPUT_BIN_MAILBOX_3" desc="PWG5100.2 (2.1) output-bin: mailbox-N">
Mailbox 3
</message>
<message name="IDS_PRINT_OUTPUT_BIN_MAILBOX_4" desc="PWG5100.2 (2.1) output-bin: mailbox-N">
Mailbox 4
</message>
<message name="IDS_PRINT_OUTPUT_BIN_MAILBOX_5" desc="PWG5100.2 (2.1) output-bin: mailbox-N">
Mailbox 5
</message>
<message name="IDS_PRINT_OUTPUT_BIN_MAILBOX_6" desc="PWG5100.2 (2.1) output-bin: mailbox-N">
Mailbox 6
</message>
<message name="IDS_PRINT_OUTPUT_BIN_MAILBOX_7" desc="PWG5100.2 (2.1) output-bin: mailbox-N">
Mailbox 7
</message>
<message name="IDS_PRINT_OUTPUT_BIN_MAILBOX_8" desc="PWG5100.2 (2.1) output-bin: mailbox-N">
Mailbox 8
</message>
<message name="IDS_PRINT_OUTPUT_BIN_MAILBOX_9" desc="PWG5100.2 (2.1) output-bin: mailbox-N">
Mailbox 9
</message>
<message name="IDS_PRINT_OUTPUT_BIN_MAILBOX_10" desc="PWG5100.2 (2.1) output-bin: mailbox-N">
Mailbox 10
</message>
<message name="IDS_PRINT_OUTPUT_BIN_MIDDLE" desc="PWG5100.2 (2.1) output-bin: middle">
Middle
</message>
<message name="IDS_PRINT_OUTPUT_BIN_MY_MAILBOX" desc="PWG5100.2 (2.1) output-bin: my-mailbox">
My mailbox
</message>
<message name="IDS_PRINT_OUTPUT_BIN_REAR" desc="PWG5100.2 (2.1) output-bin: rear">
Rear
</message>
<message name="IDS_PRINT_OUTPUT_BIN_RIGHT" desc="PWG5100.2 (2.1) output-bin: right">
Right
</message>
<message name="IDS_PRINT_OUTPUT_BIN_SIDE" desc="PWG5100.2 (2.1) output-bin: side">
Side
</message>
<message name="IDS_PRINT_OUTPUT_BIN_STACKER_1" desc="PWG5100.2 (2.1) output-bin: stacker-N">
Stacker 1
</message>
<message name="IDS_PRINT_OUTPUT_BIN_STACKER_2" desc="PWG5100.2 (2.1) output-bin: stacker-N">
Stacker 2
</message>
<message name="IDS_PRINT_OUTPUT_BIN_STACKER_3" desc="PWG5100.2 (2.1) output-bin: stacker-N">
Stacker 3
</message>
<message name="IDS_PRINT_OUTPUT_BIN_STACKER_4" desc="PWG5100.2 (2.1) output-bin: stacker-N">
Stacker 4
</message>
<message name="IDS_PRINT_OUTPUT_BIN_STACKER_5" desc="PWG5100.2 (2.1) output-bin: stacker-N">
Stacker 5
</message>
<message name="IDS_PRINT_OUTPUT_BIN_STACKER_6" desc="PWG5100.2 (2.1) output-bin: stacker-N">
Stacker 6
</message>
<message name="IDS_PRINT_OUTPUT_BIN_STACKER_7" desc="PWG5100.2 (2.1) output-bin: stacker-N">
Stacker 7
</message>
<message name="IDS_PRINT_OUTPUT_BIN_STACKER_8" desc="PWG5100.2 (2.1) output-bin: stacker-N">
Stacker 8
</message>
<message name="IDS_PRINT_OUTPUT_BIN_STACKER_9" desc="PWG5100.2 (2.1) output-bin: stacker-N">
Stacker 9
</message>
<message name="IDS_PRINT_OUTPUT_BIN_STACKER_10" desc="PWG5100.2 (2.1) output-bin: stacker-N">
Stacker 10
</message>
<message name="IDS_PRINT_OUTPUT_BIN_TOP" desc="PWG5100.2 (2.1) output-bin: top">
Top
</message>
<message name="IDS_PRINT_OUTPUT_BIN_TRAY_1" desc="PWG5100.2 (2.1) output-bin: tray-N">
Tray 1
</message>
<message name="IDS_PRINT_OUTPUT_BIN_TRAY_2" desc="PWG5100.2 (2.1) output-bin: tray-N">
Tray 2
</message>
<message name="IDS_PRINT_OUTPUT_BIN_TRAY_3" desc="PWG5100.2 (2.1) output-bin: tray-N">
Tray 3
</message>
<message name="IDS_PRINT_OUTPUT_BIN_TRAY_4" desc="PWG5100.2 (2.1) output-bin: tray-N">
Tray 4
</message>
<message name="IDS_PRINT_OUTPUT_BIN_TRAY_5" desc="PWG5100.2 (2.1) output-bin: tray-N">
Tray 5
</message>
<message name="IDS_PRINT_OUTPUT_BIN_TRAY_6" desc="PWG5100.2 (2.1) output-bin: tray-N">
Tray 6
</message>
<message name="IDS_PRINT_OUTPUT_BIN_TRAY_7" desc="PWG5100.2 (2.1) output-bin: tray-N">
Tray 7
</message>
<message name="IDS_PRINT_OUTPUT_BIN_TRAY_8" desc="PWG5100.2 (2.1) output-bin: tray-N">
Tray 8
</message>
<message name="IDS_PRINT_OUTPUT_BIN_TRAY_9" desc="PWG5100.2 (2.1) output-bin: tray-N">
Tray 9
</message>
<message name="IDS_PRINT_OUTPUT_BIN_TRAY_10" desc="PWG5100.2 (2.1) output-bin: tray-N">
Tray 10
</message>
<message name="IDS_PRINT_PAGE_DELIVERY_REVERSE_ORDER_FACE_DOWN" desc="PWG5100.3 (3.15) print-page-delivery: reverse-order-face-down">
Reverse order face down
</message>
<message name="IDS_PRINT_PAGE_DELIVERY_REVERSE_ORDER_FACE_UP" desc="PWG5100.3 (3.15) print-page-delivery: reverse-order-face-up">
Reverse order face up
</message>
<message name="IDS_PRINT_PAGE_DELIVERY_SAME_ORDER_FACE_DOWN" desc="PWG5100.3 (3.15) print-page-delivery: same-order-face-down">
Same order face down
</message>
<message name="IDS_PRINT_PAGE_DELIVERY_SAME_ORDER_FACE_UP" desc="PWG5100.3 (3.15) print-page-delivery: same-order-face-up">
Same order face up
</message>
<message name="IDS_PRINT_PAGE_DELIVERY_SYSTEM_SPECIFIED" desc="PWG5100.3 (3.15) print-page-delivery: system-specified">
System specified
</message>
<message name="IDS_PRINT_PAGE_ORDER_RECEIVED_1_TO_N_ORDER" desc="PWG5100.3 (3.16) page-order-received: 1-to-n-order">
1-to-N order
</message>
<message name="IDS_PRINT_PAGE_ORDER_RECEIVED_N_TO_1_ORDER" desc="PWG5100.3 (3.16) page-order-received: n-to-1-order">
N-to-1 order
</message>
<message name="IDS_PRINT_PRINT_BASE_BRIM" desc="PWG5100.21 (8.1.7) print-base: brim">
Brim
</message>
<message name="IDS_PRINT_PRINT_BASE_NONE" desc="PWG5100.21 (8.1.7) print-base: none">
None
</message>
<message name="IDS_PRINT_PRINT_BASE_RAFT" desc="PWG5100.21 (8.1.7) print-base: raft">
Raft
</message>
<message name="IDS_PRINT_PRINT_BASE_SKIRT" desc="PWG5100.21 (8.1.7) print-base: skirt">
Skirt
</message>
<message name="IDS_PRINT_PRINT_BASE_STANDARD" desc="PWG5100.21 (8.1.7) print-base: standard">
Standard
</message>
<message name="IDS_PRINT_PRINT_CONTENT_OPTIMIZE_AUTO" desc="PWG5100.13 (7.4) print-content-optimize: auto">
Auto
</message>
<message name="IDS_PRINT_PRINT_CONTENT_OPTIMIZE_GRAPHIC" desc="PWG5100.7 (5.3.3) print-content-optimize: graphics">
Graphic
</message>
<message name="IDS_PRINT_PRINT_CONTENT_OPTIMIZE_PHOTO" desc="PWG5100.7 (5.3.3) print-content-optimize: photo">
Photo
</message>
<message name="IDS_PRINT_PRINT_CONTENT_OPTIMIZE_TEXT" desc="PWG5100.7 (5.3.3) print-content-optimize: text">
Text
</message>
<message name="IDS_PRINT_PRINT_CONTENT_OPTIMIZE_TEXT_AND_GRAPHIC" desc="PWG5100.7 (5.3.3) print-content-optimize: text-and-graphics">
Text and graphic
</message>
<message name="IDS_PRINT_PRINT_RENDERING_INTENT_ABSOLUTE" desc="PWG5100.13 (5.2.4) print-rendering-intent: absolute">
Absolute
</message>
<message name="IDS_PRINT_PRINT_RENDERING_INTENT_AUTO" desc="PWG5100.13 (5.2.4) print-rendering-intent: auto">
Auto
</message>
<message name="IDS_PRINT_PRINT_RENDERING_INTENT_PERCEPTUAL" desc="PWG5100.13 (5.2.4) print-rendering-intent: perceptual">
Perceptual
</message>
<message name="IDS_PRINT_PRINT_RENDERING_INTENT_RELATIVE" desc="PWG5100.13 (5.2.4) print-rendering-intent: relative">
Relative
</message>
<message name="IDS_PRINT_PRINT_RENDERING_INTENT_RELATIVE_BPC" desc="PWG5100.13 (5.2.4) print-rendering-intent: relative-bpc">
Relative with black point compression
</message>
<message name="IDS_PRINT_PRINT_RENDERING_INTENT_SATURATION" desc="PWG5100.13 (5.2.4) print-rendering-intent: saturation">
Saturation
</message>
<message name="IDS_PRINT_PRINT_SUPPORTS_MATERIAL" desc="PWG5100.21 (8.1.9) print-supports: material. 'Material' is a noun.">
Material
</message>
<message name="IDS_PRINT_PRINT_SUPPORTS_NONE" desc="PWG5100.21 (8.1.9) print-supports: none">
None
</message>
<message name="IDS_PRINT_PRINT_SUPPORTS_STANDARD" desc="PWG5100.21 (8.1.9) print-supports: standard">
Standard
</message>
<message name="IDS_PRINT_X_IMAGE_POSITION_CENTER" desc="PWG5100.3 (3.19.2) x-image-position: center">
Center
</message>
<message name="IDS_PRINT_X_IMAGE_POSITION_LEFT" desc="PWG5100.3 (3.19.2) x-image-position: left">
Left
</message>
<message name="IDS_PRINT_X_IMAGE_POSITION_NONE" desc="PWG5100.3 (3.19.2) x-image-position: none">
None
</message>
<message name="IDS_PRINT_X_IMAGE_POSITION_RIGHT" desc="PWG5100.3 (3.19.2) x-image-position: right">
Right
</message>
<message name="IDS_PRINT_Y_IMAGE_POSITION_BOTTOM" desc="PWG5100.3 (3.19.2) x-image-position: bottom">
Bottom
</message>
<message name="IDS_PRINT_Y_IMAGE_POSITION_CENTER" desc="PWG5100.3 (3.19.2) x-image-position: center">
Center
</message>
<message name="IDS_PRINT_Y_IMAGE_POSITION_NONE" desc="PWG5100.3 (3.19.2) x-image-position: none">
None
</message>
<message name="IDS_PRINT_Y_IMAGE_POSITION_TOP" desc="PWG5100.3 (3.19.2) x-image-position: top">
Top
</message>
<message name="IDS_PRINT_FINISHINGS_STAPLE" desc="RFC 8011 (5.2.6) finishings: staple. 'Staple' is a verb.">
Staple
</message>
<message name="IDS_PRINT_FINISHINGS_PUNCH" desc="RFC 8011 (5.2.6) finishings: punch. 'Punch' is a verb.">
Punch
</message>
<message name="IDS_PRINT_FINISHINGS_COVER" desc="RFC 8011 (5.2.6) finishings: cover. 'Cover' is a verb.">
Cover
</message>
<message name="IDS_PRINT_FINISHINGS_BIND" desc="RFC 8011 (5.2.6) finishings: bind">
Bind
</message>
<message name="IDS_PRINT_FINISHINGS_SADDLE_STITCH" desc="RFC 8011 (5.2.6) finishings: saddle-stitch">
Saddle stitch
</message>
<message name="IDS_PRINT_FINISHINGS_EDGE_STITCH" desc="RFC 8011 (5.2.6) finishings: edge-stitch">
Edge stitch
</message>
<message name="IDS_PRINT_FINISHINGS_FOLD" desc="PWG 5100.1 (5.1.2) PWG 5100.1-2001 'finishings' Values: fold">
Fold
</message>
<message name="IDS_PRINT_FINISHINGS_TRIM" desc="PWG 5100.1 (5.1.2) PWG 5100.1-2001 'finishings' Values: trim">
Trim
</message>
<message name="IDS_PRINT_FINISHINGS_BALE" desc="PWG 5100.1 (5.1.2) PWG 5100.1-2001 'finishings' Values: bale. 'Bale' is a verb.">
Bale
</message>
<message name="IDS_PRINT_FINISHINGS_BOOKLET_MAKER" desc="PWG 5100.1 (5.1.2) PWG 5100.1-2001 'finishings' Values: booklet-maker">
Booklet maker
</message>
<message name="IDS_PRINT_FINISHINGS_JOG_OFFSET" desc="PWG 5100.1 (5.1.2) PWG 5100.1-2001 'finishings' Values: jog-offset">
Jog offset
</message>
<message name="IDS_PRINT_FINISHINGS_COAT" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: coat. 'Coat' is a verb.">
Coat
</message>
<message name="IDS_PRINT_FINISHINGS_LAMINATE" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: laminate">
Laminate
</message>
<message name="IDS_PRINT_FINISHINGS_STAPLE_TOP_LEFT" desc="RFC 8011 (5.2.6) finishings: staple-top-left">
Staple top left
</message>
<message name="IDS_PRINT_FINISHINGS_STAPLE_BOTTOM_LEFT" desc="RFC 8011 (5.2.6) finishings: staple-bottom-left">
Staple bottom left
</message>
<message name="IDS_PRINT_FINISHINGS_STAPLE_TOP_RIGHT" desc="RFC 8011 (5.2.6) finishings: staple-top-right">
Staple top right
</message>
<message name="IDS_PRINT_FINISHINGS_STAPLE_BOTTOM_RIGHT" desc="RFC 8011 (5.2.6) finishings: staple-bottom-right">
Staple bottom right
</message>
<message name="IDS_PRINT_FINISHINGS_EDGE_STITCH_LEFT" desc="RFC 8011 (5.2.6) finishings: edge-stitch-left">
Edge stitch left
</message>
<message name="IDS_PRINT_FINISHINGS_EDGE_STITCH_TOP" desc="RFC 8011 (5.2.6) finishings: edge-stitch-top">
Edge stitch top
</message>
<message name="IDS_PRINT_FINISHINGS_EDGE_STITCH_RIGHT" desc="RFC 8011 (5.2.6) finishings: edge-stitch-right">
Edge stitch right
</message>
<message name="IDS_PRINT_FINISHINGS_EDGE_STITCH_BOTTOM" desc="RFC 8011 (5.2.6) finishings: edge-stitch-bottom">
Edge stitch bottom
</message>
<message name="IDS_PRINT_FINISHINGS_STAPLE_DUAL_LEFT" desc="RFC 8011 (5.2.6) finishings: staple-dual-left">
Dual staple left
</message>
<message name="IDS_PRINT_FINISHINGS_STAPLE_DUAL_TOP" desc="RFC 8011 (5.2.6) finishings: staple-dual-top">
Dual staple top
</message>
<message name="IDS_PRINT_FINISHINGS_STAPLE_DUAL_RIGHT" desc="RFC 8011 (5.2.6) finishings: staple-dual-right">
Dual staple right
</message>
<message name="IDS_PRINT_FINISHINGS_STAPLE_DUAL_BOTTOM" desc="RFC 8011 (5.2.6) finishings: staple-dual-bottom">
Dual staple bottom
</message>
<message name="IDS_PRINT_FINISHINGS_STAPLE_TRIPLE_LEFT" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: staple-triple-left">
Triple staple left
</message>
<message name="IDS_PRINT_FINISHINGS_STAPLE_TRIPLE_TOP" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: staple-triple-top">
Triple staple top
</message>
<message name="IDS_PRINT_FINISHINGS_STAPLE_TRIPLE_RIGHT" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: staple-triple-right">
Triple staple right
</message>
<message name="IDS_PRINT_FINISHINGS_STAPLE_TRIPLE_BOTTOM" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: staple-triple-bottom">
Triple staple bottom
</message>
<message name="IDS_PRINT_FINISHINGS_BIND_LEFT" desc="PWG 5100.1 (5.1.2) PWG 5100.1-2001 'finishings' Values: bind-left">
Bind left
</message>
<message name="IDS_PRINT_FINISHINGS_BIND_TOP" desc="PWG 5100.1 (5.1.2) PWG 5100.1-2001 'finishings' Values: bind-top">
Bind top
</message>
<message name="IDS_PRINT_FINISHINGS_BIND_RIGHT" desc="PWG 5100.1 (5.1.2) PWG 5100.1-2001 'finishings' Values: bind-right">
Bind right
</message>
<message name="IDS_PRINT_FINISHINGS_BIND_BOTTOM" desc="PWG 5100.1 (5.1.2) PWG 5100.1-2001 'finishings' Values: bind-bottom">
Bind bottom
</message>
<message name="IDS_PRINT_FINISHINGS_TRIM_AFTER_PAGES" desc="PWG 5100.13 (7.2) finishings: trim-after-pages">
Trim after each page
</message>
<message name="IDS_PRINT_FINISHINGS_TRIM_AFTER_DOCUMENTS" desc="PWG 5100.13 (7.2) finishings: trim-after-documents">
Trim after each document
</message>
<message name="IDS_PRINT_FINISHINGS_TRIM_AFTER_COPIES" desc="PWG 5100.13 (7.2) finishings: trim-after-copies">
Trim after each copy
</message>
<message name="IDS_PRINT_FINISHINGS_TRIM_AFTER_JOB" desc="PWG 5100.13 (7.2) finishings: trim-after-job">
Trim after job
</message>
<message name="IDS_PRINT_FINISHINGS_PUNCH_TOP_LEFT" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: punch-top-left">
Punch top left
</message>
<message name="IDS_PRINT_FINISHINGS_PUNCH_BOTTOM_LEFT" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: punch-bottom-left">
Punch bottom left
</message>
<message name="IDS_PRINT_FINISHINGS_PUNCH_TOP_RIGHT" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: punch-top-right">
Punch top right
</message>
<message name="IDS_PRINT_FINISHINGS_PUNCH_BOTTOM_RIGHT" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: punch-bottom-right">
Punch bottom right
</message>
<message name="IDS_PRINT_FINISHINGS_PUNCH_DUAL_LEFT" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: punch-dual-left">
Dual punch left
</message>
<message name="IDS_PRINT_FINISHINGS_PUNCH_DUAL_TOP" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: punch-dual-top">
Dual punch top
</message>
<message name="IDS_PRINT_FINISHINGS_PUNCH_DUAL_RIGHT" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: punch-dual-right">
Dual punch right
</message>
<message name="IDS_PRINT_FINISHINGS_PUNCH_DUAL_BOTTOM" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: punch-dual-bottom">
Dual punch bottom
</message>
<message name="IDS_PRINT_FINISHINGS_PUNCH_TRIPLE_LEFT" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: punch-triple-left">
Triple punch left
</message>
<message name="IDS_PRINT_FINISHINGS_PUNCH_TRIPLE_TOP" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: punch-triple-top">
Triple punch top
</message>
<message name="IDS_PRINT_FINISHINGS_PUNCH_TRIPLE_RIGHT" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: punch-triple-right">
Triple punch right
</message>
<message name="IDS_PRINT_FINISHINGS_PUNCH_TRIPLE_BOTTOM" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: punch-triple-bottom">
Triple punch bottom
</message>
<message name="IDS_PRINT_FINISHINGS_PUNCH_QUAD_LEFT" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: punch-quad-left">
Quad punch left
</message>
<message name="IDS_PRINT_FINISHINGS_PUNCH_QUAD_TOP" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: punch-quad-top">
Quad punch top
</message>
<message name="IDS_PRINT_FINISHINGS_PUNCH_QUAD_RIGHT" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: punch-quad-right">
Quad punch right
</message>
<message name="IDS_PRINT_FINISHINGS_PUNCH_QUAD_BOTTOM" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: punch-quad-bottom">
Quad punch bottom
</message>
<message name="IDS_PRINT_FINISHINGS_PUNCH_MULTIPLE_LEFT" desc="PWG 5100.1 (5.1.4) PWG 5100.1-2017 'finishings' Values: punch-multiple-left">
Multiple punch left
</message>
<message name="IDS_PRINT_FINISHINGS_PUNCH_MULTIPLE_TOP" desc="PWG 5100.1 (5.1.4) PWG 5100.1-2017 'finishings' Values: punch-multiple-top">
Multiple punch top
</message>
<message name="IDS_PRINT_FINISHINGS_PUNCH_MULTIPLE_RIGHT" desc="PWG 5100.1 (5.1.4) PWG 5100.1-2017 'finishings' Values: punch-multiple-right">
Multiple punch right
</message>
<message name="IDS_PRINT_FINISHINGS_PUNCH_MULTIPLE_BOTTOM" desc="PWG 5100.1 (5.1.4) PWG 5100.1-2017 'finishings' Values: punch-multiple-bottom">
Multiple punch bottom
</message>
<message name="IDS_PRINT_FINISHINGS_FOLD_ACCORDION" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: fold-accordion">
Accordion fold
</message>
<message name="IDS_PRINT_FINISHINGS_FOLD_DOUBLE_GATE" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: fold-double-gate">
Double-gate fold
</message>
<message name="IDS_PRINT_FINISHINGS_FOLD_GATE" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: fold-gate">
Gate fold
</message>
<message name="IDS_PRINT_FINISHINGS_FOLD_HALF" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: fold-half">
Fold half
</message>
<message name="IDS_PRINT_FINISHINGS_FOLD_HALF_Z" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: fold-half-z">
Z-fold half
</message>
<message name="IDS_PRINT_FINISHINGS_FOLD_LEFT_GATE" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: fold-left-gate">
Left gate fold
</message>
<message name="IDS_PRINT_FINISHINGS_FOLD_LETTER" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: fold-letter">
Letter fold
</message>
<message name="IDS_PRINT_FINISHINGS_FOLD_PARALLEL" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: fold-parallel">
Parallel fold
</message>
<message name="IDS_PRINT_FINISHINGS_FOLD_POSTER" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: fold-poster">
Poster fold
</message>
<message name="IDS_PRINT_FINISHINGS_FOLD_RIGHT_GATE" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: fold-right-gate">
Right gate fold
</message>
<message name="IDS_PRINT_FINISHINGS_FOLD_Z" desc="PWG 5100.1 (5.1.3) PWG 5100.1-2014 'finishings' Values: fold-z">
Z-fold
</message>
<message name="IDS_PRINT_FINISHINGS_FOLD_ENGINEERING_Z" desc="PWG 5100.1 (5.1.4) PWG 5100.1-2017 'finishings' Values: fold-engineering-z">
Engineering Z-fold
</message>
<message name="IDS_PRINT_PRINT_QUALITY_DRAFT" desc="RFC 8011 (5.2.13) print-quality: draft">
Draft
</message>
<message name="IDS_PRINT_PRINT_QUALITY_NORMAL" desc="RFC 8011 (5.2.13) print-quality: normal">
Normal
</message>
<message name="IDS_PRINT_PRINT_QUALITY_HIGH" desc="RFC 8011 (5.2.13) print-quality: high">
High
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_ALTERNATE" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: alternate">
Alternate
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_ALTERNATE_ROLL" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: alternate-roll">
Alternate Roll
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_AUTO" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: auto">
Auto
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_BOTTOM" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: bottom">
Bottom
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_BY_PASS_TRAY" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: by-pass-tray">
Multifunction Tray
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_CENTER" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: center">
Middle Tray
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_DISC" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: disc">
Disc
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_ENVELOPE" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: envelope">
Envelope
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_HAGAKI" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: hagaki">
Hagaki
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_LARGE_CAPACITY" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: large-capacity">
Large Capacity
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_LEFT" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: left">
Left Tray
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_MAIN" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: main">
Primary Tray
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_MAIN_ROLL" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: main-roll">
Primary Roll
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_MANUAL" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: manual">
Manual Slot
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_MIDDLE" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: middle">
Middle Tray
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_PHOTO" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: photo">
Photo Tray
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_REAR" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: rear">
Rear Tray
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_RIGHT" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: right">
Right Tray
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_ROLL_1" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: roll-1">
First Roll
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_ROLL_2" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: roll-2">
Second Roll
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_ROLL_3" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: roll-3">
Third Roll
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_ROLL_4" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: roll-4">
Fourth Roll
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_ROLL_5" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: roll-5">
Fifth Roll
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_ROLL_6" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: roll-6">
Sixth Roll
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_ROLL_7" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: roll-7">
Seventh Roll
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_ROLL_8" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: roll-8">
Eighth Roll
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_ROLL_9" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: roll-9">
Ninth Roll
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_ROLL_10" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: roll-10">
Tenth Roll
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_SIDE" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: side">
Side Tray
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_TOP" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: top">
Top Tray
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_TRAY_1" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: tray-1">
Tray 1
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_TRAY_2" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: tray-2">
Tray 2
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_TRAY_3" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: tray-3">
Tray 3
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_TRAY_4" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: tray-4">
Tray 4
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_TRAY_5" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: tray-5">
Tray 5
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_TRAY_6" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: tray-6">
Tray 6
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_TRAY_7" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: tray-7">
Tray 7
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_TRAY_8" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: tray-8">
Tray 8
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_TRAY_9" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: tray-9">
Tray 9
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_TRAY_10" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: tray-10">
Tray 10
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_TRAY_11" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: tray-11">
Tray 11
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_TRAY_12" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: tray-12">
Tray 12
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_TRAY_13" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: tray-13">
Tray 13
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_TRAY_14" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: tray-14">
Tray 14
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_TRAY_15" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: tray-15">
Tray 15
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_TRAY_16" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: tray-16">
Tray 16
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_TRAY_17" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: tray-17">
Tray 17
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_TRAY_18" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: tray-18">
Tray 18
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_TRAY_19" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: tray-19">
Tray 19
</message>
<message name="IDS_PRINT_MEDIA_SOURCE_TRAY_20" desc="Options for the Input Tray printing attribute as specified in PWG 5100.7-2019 media-source: tray-20">
Tray 20
</message>
</if>
<if expr="is_chromeos or is_macosx">
<message name="IDS_PRINT_MEDIA_TYPE_ALUMINUM" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: aluminum">
Aluminum
</message>
<message name="IDS_PRINT_MEDIA_TYPE_AUTO" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: auto">
Automatic
</message>
<message name="IDS_PRINT_MEDIA_TYPE_BACK_PRINT_FILM" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: back-print-film">
Back Print Film
</message>
<message name="IDS_PRINT_MEDIA_TYPE_CARDBOARD" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: cardboard">
Cardboard
</message>
<message name="IDS_PRINT_MEDIA_TYPE_CARDSTOCK" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: cardstock">
Card Stock
</message>
<message name="IDS_PRINT_MEDIA_TYPE_CD" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: cd">
Compact Disc
</message>
<message name="IDS_PRINT_MEDIA_TYPE_CONTINUOUS" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: continuous">
Continuous
</message>
<message name="IDS_PRINT_MEDIA_TYPE_CONTINUOUS_LONG" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: continuous-long">
Continuous (Long)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_CONTINUOUS_SHORT" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: continuous-short">
Continuous (Short)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_CORRUGATED_BOARD" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: corrugated-board">
Cardboard
</message>
<message name="IDS_PRINT_MEDIA_TYPE_DISC" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: disc">
Optical Disc
</message>
<message name="IDS_PRINT_MEDIA_TYPE_DISC_GLOSSY" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: disc-glossy">
Optical Disc (Glossy)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_DISC_HIGH_GLOSS" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: disc-high-gloss">
Optical Disc (High-Gloss)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_DISC_MATTE" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: disc-matte">
Optical Disc (Matte)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_DISC_SATIN" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: disc-satin">
Optical Disc (Satin)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_DISC_SEMI_GLOSS" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: disc-semi-gloss">
Optical Disc (Semi-Gloss)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_DOUBLE_WALL" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: double-wall">
Cardboard (Double Wall)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_DRY_FILM" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: dry-film">
Dry Film
</message>
<message name="IDS_PRINT_MEDIA_TYPE_DVD" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: dvd">
Digital Versatile Disc
</message>
<message name="IDS_PRINT_MEDIA_TYPE_EMBOSSING_FOIL" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: embossing-foil">
Embossing Foil
</message>
<message name="IDS_PRINT_MEDIA_TYPE_END_BOARD" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: end-board">
Cardboard (End)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_ENVELOPE" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: envelope">
Envelope
</message>
<message name="IDS_PRINT_MEDIA_TYPE_ENVELOPE_ARCHIVAL" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: envelope-archival">
Envelope (Archival)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_ENVELOPE_BOND" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: envelope-bond">
Envelope (Bond)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_ENVELOPE_COATED" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: envelope-coated">
Envelope (Coated)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_ENVELOPE_COTTON" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: envelope-cotton">
Envelope (Cotton)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_ENVELOPE_FINE" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: envelope-fine">
Envelope (Fine)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_ENVELOPE_HEAVYWEIGHT" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: envelope-heavyweight">
Envelope (Heavyweight)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_ENVELOPE_INKJET" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: envelope-inkjet">
Envelope (Inkjet)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_ENVELOPE_LIGHTWEIGHT" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: envelope-lightweight">
Envelope (Lightweight)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_ENVELOPE_PLAIN" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: envelope-plain">
Envelope (Plain)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_ENVELOPE_PREPRINTED" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: envelope-preprinted">
Envelope (Preprinted)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_ENVELOPE_WINDOW" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: envelope-window">
Envelope (Window)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_FABRIC" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: fabric">
Fabric
</message>
<message name="IDS_PRINT_MEDIA_TYPE_FABRIC_ARCHIVAL" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: fabric-archival">
Fabric (Archival)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_FABRIC_GLOSSY" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: fabric-glossy">
Fabric (Glossy)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_FABRIC_HIGH_GLOSS" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: fabric-high-gloss">
Fabric (High-Gloss)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_FABRIC_MATTE" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: fabric-matte">
Fabric (Matte)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_FABRIC_SEMI_GLOSS" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: fabric-semi-gloss">
Fabric (Semi-Gloss)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_FABRIC_WATERPROOF" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: fabric-waterproof">
Fabric (Waterproof)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_FILM" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: film">
Film
</message>
<message name="IDS_PRINT_MEDIA_TYPE_FLEXO_BASE" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: flexo-base">
Flexo Base
</message>
<message name="IDS_PRINT_MEDIA_TYPE_FLEXO_PHOTO_POLYMER" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: flexo-photo-polymer">
Flexo Photopolymer
</message>
<message name="IDS_PRINT_MEDIA_TYPE_FLUTE" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: flute">
Flute
</message>
<message name="IDS_PRINT_MEDIA_TYPE_FOIL" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: foil">
Foil
</message>
<message name="IDS_PRINT_MEDIA_TYPE_FULL_CUT_TABS" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: full-cut-tabs">
Full Cut Tabs
</message>
<message name="IDS_PRINT_MEDIA_TYPE_GLASS" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: glass">
Glass
</message>
<message name="IDS_PRINT_MEDIA_TYPE_GLASS_COLORED" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: glass-colored">
Glass (Colored)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_GLASS_OPAQUE" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: glass-opaque">
Glass (Opaque)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_GLASS_SURFACED" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: glass-surfaced">
Glass (Surfaced)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_GLASS_TEXTURED" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: glass-textured">
Glass (Textured)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_GRAVURE_CYLINDER" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: gravure-cylinder">
Gravure Cylinder
</message>
<message name="IDS_PRINT_MEDIA_TYPE_IMAGE_SETTER_PAPER" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: image-setter-paper">
Image Setter Paper
</message>
<message name="IDS_PRINT_MEDIA_TYPE_IMAGING_CYLINDER" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: imaging-cylinder">
Imaging Cylinder
</message>
<message name="IDS_PRINT_MEDIA_TYPE_LABELS" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: labels">
Labels
</message>
<message name="IDS_PRINT_MEDIA_TYPE_LABELS_COLORED" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: labels-colored">
Labels (Colored)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_LABELS_GLOSSY" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: labels-glossy">
Labels (Glossy)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_LABELS_HIGH_GLOSS" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: labels-high-gloss">
Labels (High-Gloss)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_LABELS_INKJET" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: labels-inkjet">
Labels (Inkjet)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_LABELS_MATTE" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: labels-matte">
Labels (Matte)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_LABELS_PERMANENT" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: labels-permanent">
Labels (Permanent)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_LABELS_SATIN" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: labels-satin">
Labels (Satin)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_LABELS_SECURITY" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: labels-security">
Labels (Security)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_LABELS_SEMI_GLOSS" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: labels-semi-gloss">
Labels (Semi-Gloss)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_LAMINATING_FOIL" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: laminating-foil">
Laminating Foil
</message>
<message name="IDS_PRINT_MEDIA_TYPE_LETTERHEAD" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: letterhead">
Stationery (Letterhead)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_METAL" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: metal">
Metal
</message>
<message name="IDS_PRINT_MEDIA_TYPE_METAL_GLOSSY" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: metal-glossy">
Metal (Glossy)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_METAL_HIGH_GLOSS" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: metal-high-gloss">
Metal (High-Gloss)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_METAL_MATTE" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: metal-matte">
Metal (Matte)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_METAL_SATIN" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: metal-satin">
Metal (Satin)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_METAL_SEMI_GLOSS" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: metal-semi-gloss">
Metal (Semi-Gloss)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_MOUNTING_TAPE" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: mounting-tape">
Mounting Tape
</message>
<message name="IDS_PRINT_MEDIA_TYPE_MULTI_LAYER" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: multi-layer">
Multi-Layer
</message>
<message name="IDS_PRINT_MEDIA_TYPE_MULTI_PART_FORM" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: multi-part-form">
Multi-Part Form
</message>
<message name="IDS_PRINT_MEDIA_TYPE_OTHER" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: other">
Other
</message>
<message name="IDS_PRINT_MEDIA_TYPE_PAPER" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: paper">
Stationery
</message>
<message name="IDS_PRINT_MEDIA_TYPE_PHOTOGRAPHIC" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: photographic">
Photo
</message>
<message name="IDS_PRINT_MEDIA_TYPE_PHOTOGRAPHIC_ARCHIVAL" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: photographic-archival">
Photo (Archival)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_PHOTOGRAPHIC_FILM" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: photographic-film">
Photo (Film)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_PHOTOGRAPHIC_GLOSSY" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: photographic-glossy">
Photo (Glossy)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_PHOTOGRAPHIC_HIGH_GLOSS" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: photographic-high-gloss">
Photo (High-Gloss)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_PHOTOGRAPHIC_MATTE" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: photographic-matte">
Photo (Matte)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_PHOTOGRAPHIC_SATIN" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: photographic-satin">
Photo (Satin)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_PHOTOGRAPHIC_SEMI_GLOSS" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: photographic-semi-gloss">
Photo (Semi-Gloss)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_PLASTIC" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: plastic">
Plastic
</message>
<message name="IDS_PRINT_MEDIA_TYPE_PLASTIC_ARCHIVAL" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: plastic-archival">
Plastic (Archival)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_PLASTIC_COLORED" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: plastic-colored">
Plastic (Colored)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_PLASTIC_GLOSSY" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: plastic-glossy">
Plastic (Glossy)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_PLASTIC_HIGH_GLOSS" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: plastic-high-gloss">
Plastic (High Gloss)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_PLASTIC_MATTE" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: plastic-matte">
Plastic (Matte)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_PLASTIC_SATIN" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: plastic-satin">
Plastic (Satin)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_PLASTIC_SEMI_GLOSS" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: plastic-semi-gloss">
Plastic (Semi-Gloss)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_PLATE" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: plate">
Plate
</message>
<message name="IDS_PRINT_MEDIA_TYPE_POLYESTER" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: polyester">
Polyester
</message>
<message name="IDS_PRINT_MEDIA_TYPE_PRE_CUT_TABS" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: pre-cut-tabs">
Pre-Cut Tabs
</message>
<message name="IDS_PRINT_MEDIA_TYPE_ROLL" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: roll">
Roll
</message>
<message name="IDS_PRINT_MEDIA_TYPE_SCREEN" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: screen">
Screen
</message>
<message name="IDS_PRINT_MEDIA_TYPE_SCREEN_PAGED" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: screen-paged">
Screen (Paged)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_SELF_ADHESIVE" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: self-adhesive">
Self-Adhesive Paper
</message>
<message name="IDS_PRINT_MEDIA_TYPE_SELF_ADHESIVE_FILM" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: self-adhesive-film">
Self-Adhesive Film
</message>
<message name="IDS_PRINT_MEDIA_TYPE_SHRINK_FOIL" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: shrink-foil">
Shrink Foil
</message>
<message name="IDS_PRINT_MEDIA_TYPE_SINGLE_FACE" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: single-face">
Single Face
</message>
<message name="IDS_PRINT_MEDIA_TYPE_SINGLE_WALL" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: single-wall">
Cardboard (Single Wall)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_SLEEVE" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: sleeve">
Sleeve
</message>
<message name="IDS_PRINT_MEDIA_TYPE_STATIONERY" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: stationery">
Paper (Plain)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_STATIONERY_ARCHIVAL" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: stationery-archival">
Paper (Archival)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_STATIONERY_BOND" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: stationery-bond">
Paper (Bond)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_STATIONERY_COATED" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: stationery-coated">
Paper (Coated)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_STATIONERY_COTTON" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: stationery-cotton">
Paper (Cotton)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_STATIONERY_FINE" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: stationery-fine">
Paper (Vellum)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_STATIONERY_HEAVYWEIGHT" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: stationery-heavyweight">
Paper (Heavyweight)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_STATIONERY_HEAVYWEIGHT_COATED" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: stationery-heavyweight-coated">
Paper (Heavyweight Coated)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_STATIONERY_INKJET" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: stationery-inkjet">
Paper (Inkjet)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_STATIONERY_LETTERHEAD" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: stationery-letterhead">
Paper (Letterhead)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_STATIONERY_LIGHTWEIGHT" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: stationery-lightweight">
Paper (Lightweight)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_STATIONERY_PREPRINTED" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: stationery-preprinted">
Paper (Preprinted)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_STATIONERY_PREPUNCHED" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: stationery-prepunched">
Paper (Prepunched)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_TAB_STOCK" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: tab-stock">
Tab Stock
</message>
<message name="IDS_PRINT_MEDIA_TYPE_TRACTOR" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: tractor">
Tractor Feed
</message>
<message name="IDS_PRINT_MEDIA_TYPE_TRANSFER" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: transfer">
Transfer
</message>
<message name="IDS_PRINT_MEDIA_TYPE_TRANSPARENCY" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: transparency">
Transparency
</message>
<message name="IDS_PRINT_MEDIA_TYPE_TRIPLE_WALL" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: triple-wall">
Cardboard (Triple Wall)
</message>
<message name="IDS_PRINT_MEDIA_TYPE_WET_FILM" desc="Options for the media-type printing attribute as specified in PWG 5101.1-2013 media-type: wet-film">
Wet Film
</message>
</if>
</grit-part>
|