]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Merge CUPS 1.4svn-r7493.
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
Thu, 24 Apr 2008 00:13:12 +0000 (00:13 +0000)
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
Thu, 24 Apr 2008 00:13:12 +0000 (00:13 +0000)
git-svn-id: svn+ssh://src.apple.com/svn/cups/easysw/current@723 a1ca3aef-8c08-0410-bb20-df032aa958be

33 files changed:
CHANGES-1.3.txt
CHANGES.txt
INSTALL.txt
Makefile
backend/testbackend.c
cups/emit.c
cups/file.c
cups/testfile.c
doc/help/spec-ppd.html
packaging/cups.list.in
packaging/cups.spec.in
ppd/Makefile [deleted file]
ppd/deskjet.ppd [deleted file]
ppd/dymo.ppd [deleted file]
ppd/epson24.ppd [deleted file]
ppd/epson9.ppd [deleted file]
ppd/generic.ppd [deleted file]
ppd/generpcl.ppd [deleted file]
ppd/intelbar.ppd [deleted file]
ppd/laserjet.ppd [deleted file]
ppd/okidat24.ppd [deleted file]
ppd/okidata9.ppd [deleted file]
ppd/stcolor.ppd [deleted file]
ppd/stcolor2.ppd [deleted file]
ppd/stphoto.ppd [deleted file]
ppd/stphoto2.ppd [deleted file]
ppd/zebra.ppd [deleted file]
ppd/zebracpl.ppd [deleted file]
ppd/zebraep1.ppd [deleted file]
ppd/zebraep2.ppd [deleted file]
ppdc/Makefile
ppdc/sample.drv [moved from ppd/sample.drv with 100% similarity]
test/run-stp-tests.sh

index f668b502fa78cb068dd70b4bf78481f429564553..d62d2d031fe7b5280776ae6cc6fc1d89f3ea8c94 100644 (file)
@@ -4,6 +4,8 @@ CHANGES-1.3.txt
 CHANGES IN CUPS V1.3.8
 
        - Documentation updates (STR #2785)
+       - cupsFileTell() did not work for log files opened in append
+         mode (STR #2810)
        - The scheduler did not set QUERY_STRING all of the time
          for CGI scripts (STR #2781)
        - The scheduler now returns an error for bad job-sheets
index 2e1f937a2f3ffe48edbc307b72df8a7c802532c5..6f6e3ed92321cb472aff0388f06081390fa26d5c 100644 (file)
@@ -1,8 +1,10 @@
-CHANGES.txt - 2008-04-21
+CHANGES.txt - 2008-04-23
 ------------------------
 
 CHANGES IN CUPS V1.4b1
 
+       - Added support for cupsPJLDisplay attribute to control what
+         PJL commands are used to display the job information.
        - Driver information files can now be installed in
          /Library/Printers/PPDs.drv on Mac OS X.
        - The CUPS image library now supports reading images larger
index ba785ed4d8731c7b4478b09c4e8d9a1bce9b78eb..46104948d883b8200f3c9893554e197ba1bfe526 100644 (file)
@@ -1,4 +1,4 @@
-INSTALL - CUPS v1.4svn - 2008-04-08
+INSTALL - CUPS v1.4svn - 2008-04-23
 -----------------------------------
 
 This file describes how to compile and install CUPS from source
@@ -14,10 +14,10 @@ code. For more information on CUPS see the file called
 
 BEFORE YOU BEGIN
 
-    You'll need an ANSI-compliant C compiler, plus a make program
-    and Bourne shell.  The GNU compiler tools work well - we've
-    tested the current CUPS code against several versions of GCC
-    with excellent results.
+    You'll need ANSI-compliant C and C++ compilers, plus a make
+    program and Bourne shell.  The GNU compiler tools work well -
+    we've tested the current CUPS code against several versions
+    of GCC with excellent results.
 
     The makefiles used by the project should work with most
     versions of make.  We've tested them with GNU make as well as
@@ -96,6 +96,10 @@ CONFIGURATION
        LDFLAGS="-L/some/directory" \
        ./configure ...
 
+    The "--enable-debug" option compiles CUPS with debugging enabled,
+    as well as support for debug logging via the CUPS_DEBUG_LOG
+    environment variable at run-time.
+
     Once you have configured things, just type:
 
        make ENTER
@@ -164,6 +168,15 @@ CREATING BINARY DISTRIBUTIONS WITH EPM
        tardist   - Builds an IRIX package (also inst)
 
 
+GETTING DEBUG LOGGING FROM CUPS
+
+    When configured with the "--enable-debug" option, CUPS compiles
+    in additional debug logging support in the scheduler, CUPS API,
+    and CUPS Imaging API.  Set the CUPS_DEBUG_LOG environment
+    variable to a filename to append logging information at run-time.
+    Use the name "-" to send the messages to stderr.
+
+
 REPORTING PROBLEMS
 
     If you have problems, READ THE DOCUMENTATION FIRST!  If the
index 2a6d27b9fc8a6b68cc8f3bc41d603a6c53666ed5..3b2c44eade67c24ab7610f1d41346e800f5c5dfa 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -22,7 +22,7 @@ include Makedefs
 DIRS   =       cups filter backend berkeley cgi-bin driver locale man monitor \
                notifier ppdc scheduler systemv test \
                $(PHPDIR) \
-               conf data doc $(FONTS) ppd templates
+               conf data doc $(FONTS) templates
 
 
 #
index 4835ac6f67d92bd16e61af62740bf085e77241bf..4868beee1f791d42399e883b5a1d5bd3a45176cf 100644 (file)
@@ -55,6 +55,7 @@ main(int  argc,                               /* I - Number of command-line args */
      char *argv[])                     /* I - Command-line arguments */
 {
   int          first_arg,              /* First argument for backend */
+               do_query = 0,           /* Do PostScript query? */
                do_side_tests = 0,      /* Test side-channel ops? */
                do_trickle = 0;         /* Trickle data to backend */
   char         scheme[255],            /* Scheme in URI == backend */
@@ -74,7 +75,9 @@ main(int  argc,                               /* I - Number of command-line args */
   for (first_arg = 1;
        argv[first_arg] && argv[first_arg][0] == '-';
        first_arg ++)
-    if (!strcmp(argv[first_arg], "-s"))
+    if (!strcmp(argv[first_arg], "-ps"))
+      do_query = 1;
+    else if (!strcmp(argv[first_arg], "-s"))
       do_side_tests = 1;
     else if (!strcmp(argv[first_arg], "-t"))
       do_trickle = 1;
@@ -130,27 +133,97 @@ main(int  argc,                           /* I - Number of command-line args */
   * Execute the trickle process as needed...
   */
 
-  if (do_trickle)
+  if (do_trickle || do_query)
   {
     pipe(data_fds);
 
     if ((pid = fork()) == 0)
     {
      /*
-      * Trickle child comes here...
+      * Trickle/query child comes here...  Rearrange file descriptors so that
+      * FD 
       */
 
-      int i;                           /* Looping var */
+      close(0);
+      open("/dev/null", O_RDONLY);
 
+      close(1);
+      dup(data_fds[1]);
       close(data_fds[0]);
-      for (i = 0; i < 10; i ++)
+      close(data_fds[1]);
+
+      close(3);
+      dup(back_fds[0]);
+      close(back_fds[0]);
+      close(back_fds[1]);
+
+      close(4);
+      dup(side_fds[0]);
+      close(side_fds[0]);
+      close(side_fds[1]);
+
+      if (do_trickle)
+      {
+       /*
+       * Write 10 spaces, 1 per second...
+       */
+
+       int i;                          /* Looping var */
+
+       for (i = 0; i < 10; i ++)
+       {
+         write(1, " ", 1);
+         sleep(1);
+       }
+      }
+      else
       {
        /*
-        * Write 10 spaces, 1 per second...
+        * Do a simple PostScript query job to get the default page size.
        */
 
-        write(data_fds[1], " ", 1);
-       sleep(1);
+        char   buffer[1024];           /* Buffer for response data */
+       ssize_t bytes;                  /* Number of bytes of response data */
+        static const char *ps_query =  /* PostScript query file */
+               "%!\n"
+               "save\n"
+               "currentpagedevice /PageSize get aload pop\n"
+               "2 copy gt {exch} if\n"
+               "(Unknown)\n"
+               "19 dict\n"
+               "dup [612 792] (Letter) put\n"
+               "dup [612 1008] (Legal) put\n"
+               "dup [612 935] (w612h935) put\n"
+               "dup [522 756] (Executive) put\n"
+               "dup [595 842] (A4) put\n"
+               "dup [420 595] (A5) put\n"
+               "dup [499 709] (ISOB5) put\n"
+               "dup [516 728] (B5) put\n"
+               "dup [612 936] (w612h936) put\n"
+               "dup [284 419] (Postcard) put\n"
+               "dup [419.5 567] (DoublePostcard) put\n"
+               "dup [558 774] (w558h774) put\n"
+               "dup [553 765] (w553h765) put\n"
+               "dup [522 737] (w522h737) put\n"
+               "dup [499 709] (EnvISOB5) put\n"
+               "dup [297 684] (Env10) put\n"
+               "dup [459 649] (EnvC5) put\n"
+               "dup [312 624] (EnvDL) put\n"
+               "dup [279 540] (EnvMonarch) put\n"
+               "{ exch aload pop 4 index sub abs 5 le exch\n"
+               "  5 index sub abs 5 le and\n"
+               "  {exch pop exit} {pop} ifelse\n"
+               "} bind forall\n"
+               "= flush pop pop\n"
+               "restore\n"
+               "\004";
+
+
+        write(1, ps_query, strlen(ps_query));
+       write(2, "DEBUG: START\n", 13);
+        while ((bytes = cupsBackChannelRead(buffer, sizeof(buffer), 30.0)) > 0)
+         write(2, buffer, bytes);
+       write(2, "\nDEBUG: END\n", 12);
       }
 
       exit(0);
@@ -174,7 +247,7 @@ main(int  argc,                             /* I - Number of command-line args */
     * Child comes here...
     */
 
-    if (do_trickle)
+    if (do_trickle || do_query)
     {
       close(0);
       dup(data_fds[0]);
@@ -207,7 +280,7 @@ main(int  argc,                             /* I - Number of command-line args */
   * Parent comes here, setup back and side channel file descriptors...
   */
 
-  if (do_trickle)
+  if (do_trickle || do_query)
   {
     close(data_fds[0]);
     close(data_fds[1]);
@@ -299,8 +372,8 @@ main(int  argc,                             /* I - Number of command-line args */
 static void
 usage(void)
 {
-  fputs("Usage: betest [-s] [-t] device-uri job-id user title copies options "
-       "[file]\n", stderr);
+  fputs("Usage: betest [-ps] [-s] [-t] device-uri job-id user title copies "
+        "options [file]\n", stderr);
   exit(1);
 }
 
index da76ea36e0c5f48e21a837541167805e2d6fc687..636f3e7fbb2ba021b8057b920ec3c77bf55008b8 100644 (file)
@@ -413,6 +413,7 @@ ppdEmitJCL(ppd_file_t *ppd,         /* I - PPD file record */
     */
 
     ppd_attr_t *charset;               /* PJL charset */
+    ppd_attr_t *display;               /* PJL display command */
 
 
     if ((charset = ppdFindAttr(ppd, "cupsPJLCharset", NULL)) != NULL)
@@ -421,6 +422,12 @@ ppdEmitJCL(ppd_file_t *ppd,                /* I - PPD file record */
         charset = NULL;
     }
 
+    if ((display = ppdFindAttr(ppd, "cupsPJLDisplay", NULL)) != NULL)
+    {
+      if (!display->value)
+        display = NULL;
+    }
+
     fputs("\033%-12345X@PJL\n", fp);
     for (ptr = ppd->jcl_begin + 9; *ptr;)
       if (!strncmp(ptr, "@PJL JOB", 8))
@@ -477,9 +484,16 @@ ppdEmitJCL(ppd_file_t *ppd,                /* I - PPD file record */
     * Send PJL JOB and PJL RDYMSG commands before we enter PostScript mode...
     */
 
-    fprintf(fp, "@PJL JOB NAME = \"%s\" DISPLAY = \"%d %s %s\"\n", temp,
-            job_id, user, temp);
-    fprintf(fp, "@PJL RDYMSG DISPLAY = \"%d %s %s\"\n", job_id, user, temp);
+    if (display && strcmp(display->value, "job"))
+    {
+      fprintf(fp, "@PJL JOB NAME = \"%s\"\n", temp);
+
+      if (display && !strcmp(display->value, "rdymsg"))
+        fprintf(fp, "@PJL RDYMSG DISPLAY = \"%d %s %s\"\n", job_id, user, temp);
+    }
+    else
+      fprintf(fp, "@PJL JOB NAME = \"%s\" DISPLAY = \"%d %s %s\"\n", temp,
+             job_id, user, temp);
   }
   else
     fputs(ppd->jcl_begin, fp);
index 9f92727a280a4a023dd200779f4930041bb6c3f3..28453952a83b3c8d1acb8b9c7deb882859b4d64b 100644 (file)
@@ -111,7 +111,8 @@ struct _cups_file_s                 /**** CUPS file structure... ****/
                buf[4096],              /* Buffer */
                *ptr,                   /* Pointer into buffer */
                *end;                   /* End of buffer data */
-  off_t                pos;                    /* File position for start of buffer */
+  off_t                pos,                    /* Position in file */
+               bufpos;                 /* File position for start of buffer */
 
 #ifdef HAVE_LIBZ
   z_stream     stream;                 /* (De)compression stream */
@@ -413,13 +414,14 @@ cupsFileFlush(cups_file_t *fp)            /* I - CUPS file */
 
   if (!fp || fp->mode != 'w')
   {
-    DEBUG_puts("    Attempt to flush a read-only file...");
+    DEBUG_puts("cupsFileFlush: Attempt to flush a read-only file...");
     return (-1);
   }
 
   bytes = (ssize_t)(fp->ptr - fp->buf);
 
-  DEBUG_printf(("    Flushing %ld bytes...\n", (long)bytes));
+  DEBUG_printf(("cupsFileFlush: Flushing " CUPS_LLFMT " bytes...\n",
+                CUPS_LLCAST bytes));
 
   if (bytes > 0)
   {
@@ -453,6 +455,8 @@ cupsFileGetChar(cups_file_t *fp)    /* I - CUPS file */
   * Range check input...
   */
 
+  DEBUG_printf(("cupsFileGetChar(fp=%p)\n", fp));
+
   if (!fp || (fp->mode != 'r' && fp->mode != 's'))
   {
     DEBUG_puts("cupsFileGetChar: Bad arguments!");
@@ -476,6 +480,10 @@ cupsFileGetChar(cups_file_t *fp)   /* I - CUPS file */
 
   DEBUG_printf(("cupsFileGetChar: Returning %d...\n", *(fp->ptr) & 255));
 
+  fp->pos ++;
+
+  DEBUG_printf(("cupsFileGetChar: pos=" CUPS_LLFMT "\n", CUPS_LLCAST fp->pos));
+
   return (*(fp->ptr)++ & 255);
 }
 
@@ -500,6 +508,10 @@ cupsFileGetConf(cups_file_t *fp,   /* I  - CUPS file */
   * Range check input...
   */
 
+  DEBUG_printf(("cupsFileGetConf(fp=%p, buf=%p, buflen=" CUPS_LLFMT
+                ", value=%p, linenum=%p)\n", fp, buf, CUPS_LLCAST buflen,
+               value, linenum));
+
   if (!fp || (fp->mode != 'r' && fp->mode != 's') ||
       !buf || buflen < 2 || !value)
   {
@@ -640,6 +652,9 @@ cupsFileGetLine(cups_file_t *fp,    /* I - File to read from */
   * Range check input...
   */
 
+  DEBUG_printf(("cupsFileGetLine(fp=%p, buf=%p, buflen=" CUPS_LLFMT ")\n",
+                fp, buf, CUPS_LLCAST buflen));
+
   if (!fp || (fp->mode != 'r' && fp->mode != 's') || !buf || buflen < 3)
     return (0);
 
@@ -654,6 +669,7 @@ cupsFileGetLine(cups_file_t *fp,    /* I - File to read from */
         break;
 
     *ptr++ = ch = *(fp->ptr)++;
+    fp->pos ++;
 
     if (ch == '\r')
     {
@@ -666,7 +682,10 @@ cupsFileGetLine(cups_file_t *fp,   /* I - File to read from */
           break;
 
       if (*(fp->ptr) == '\n')
+      {
         *ptr++ = *(fp->ptr)++;
+       fp->pos ++;
+      }
 
       break;
     }
@@ -682,6 +701,8 @@ cupsFileGetLine(cups_file_t *fp,    /* I - File to read from */
 
   *ptr = '\0';
 
+  DEBUG_printf(("cupsFileGetLine: pos=" CUPS_LLFMT "\n", CUPS_LLCAST fp->pos));
+
   return (ptr - buf);
 }
 
@@ -706,6 +727,9 @@ cupsFileGets(cups_file_t *fp,               /* I - CUPS file */
   * Range check input...
   */
 
+  DEBUG_printf(("cupsFileGets(fp=%p, buf=%p, buflen=" CUPS_LLFMT ")\n", fp, buf,
+                CUPS_LLCAST buflen));
+
   if (!fp || (fp->mode != 'r' && fp->mode != 's') || !buf || buflen < 2)
     return (NULL);
 
@@ -725,6 +749,7 @@ cupsFileGets(cups_file_t *fp,               /* I - CUPS file */
       }
 
     ch = *(fp->ptr)++;
+    fp->pos ++;
 
     if (ch == '\r')
     {
@@ -737,7 +762,10 @@ cupsFileGets(cups_file_t *fp,              /* I - CUPS file */
           break;
 
       if (*(fp->ptr) == '\n')
-        fp->ptr ++;      
+      {
+        fp->ptr ++;
+       fp->pos ++;
+      }
 
       break;
     }
@@ -755,6 +783,8 @@ cupsFileGets(cups_file_t *fp,               /* I - CUPS file */
 
   *ptr = '\0';
 
+  DEBUG_printf(("cupsFileGets: pos=" CUPS_LLFMT "\n", CUPS_LLCAST fp->pos));
+
   return (buf);
 }
 
@@ -811,8 +841,9 @@ cupsFileNumber(cups_file_t *fp)             /* I - CUPS file */
  * existing file, "a" to append to an existing file or create a new file,
  * or "s" to open a socket connection.
  *
- * When opening for writing ("w") or appending ("a"), an optional number from
- * 1 to 9 can be supplied which enables Flate compression of the file.
+ * When opening for writing ("w"), an optional number from 1 to 9 can be
+ * supplied which enables Flate compression of the file.  Compression is
+ * not supported for the "a" (append) mode.
  *
  * When opening a socket connection, the filename is a string of the form
  * "address:port" or "hostname:port". The socket will make an IPv4 or IPv6
@@ -841,7 +872,8 @@ cupsFileOpen(const char *filename,  /* I - Name of file */
   */
 
   if (!filename || !mode ||
-      (*mode != 'r' && *mode != 'w' && *mode != 'a' && *mode != 's'))
+      (*mode != 'r' && *mode != 'w' && *mode != 'a' && *mode != 's') ||
+      (*mode == 'a' && isdigit(mode[1] & 255)))
     return (NULL);
 
  /*
@@ -918,11 +950,12 @@ cupsFileOpen(const char *filename,        /* I - Name of file */
 /*
  * 'cupsFileOpenFd()' - Open a CUPS file using a file descriptor.
  *
- * The "mode" parameter can be "r" to read, "a" or "w" to write, or "s"
- * to treat the file descriptor as a bidirectional socket connection.
+ * The "mode" parameter can be "r" to read, "w" to write, "a" to append,
+ * or "s" to treat the file descriptor as a bidirectional socket connection.
  *
- * When opening for writing ("w") or appending ("a"), an optional number from
- * 1 to 9 can be supplied which enables Flate compression of the file.
+ * When opening for writing ("w"), an optional number from 1 to 9 can be
+ * supplied which enables Flate compression of the file.  Compression is
+ * not supported for the "a" (append) mode.
  *
  * @since CUPS 1.2@
  */
@@ -941,7 +974,8 @@ cupsFileOpenFd(int        fd,               /* I - File descriptor */
   */
 
   if (fd < 0 || !mode ||
-      (*mode != 'r' && *mode != 'w' && *mode != 'a' && *mode != 's'))
+      (*mode != 'r' && *mode != 'w' && *mode != 'a' && *mode != 's') ||
+      (*mode == 'a' && isdigit(mode[1] & 255)))
     return (NULL);
 
  /*
@@ -959,8 +993,10 @@ cupsFileOpenFd(int        fd,              /* I - File descriptor */
 
   switch (*mode)
   {
-    case 'w' :
     case 'a' :
+        fp->pos = lseek(fd, 0, SEEK_END);
+
+    case 'w' :
        fp->mode = 'w';
        fp->ptr  = fp->buf;
        fp->end  = fp->buf + sizeof(fp->buf);
@@ -1091,7 +1127,16 @@ cupsFilePrintf(cups_file_t *fp,          /* I - CUPS file */
     return (-1);
 
   if (fp->mode == 's')
-    return (cups_write(fp, buf, bytes));
+  {
+    if (cups_write(fp, buf, bytes) < 0)
+      return (-1);
+
+    fp->pos += bytes;
+
+    DEBUG_printf(("cupsFilePrintf: pos=" CUPS_LLFMT "\n", CUPS_LLCAST fp->pos));
+
+    return (bytes);
+  }
 
   if ((fp->ptr + bytes) > fp->end)
     if (cupsFileFlush(fp))
@@ -1099,6 +1144,8 @@ cupsFilePrintf(cups_file_t *fp,           /* I - CUPS file */
 
   fp->pos += bytes;
 
+  DEBUG_printf(("cupsFilePrintf: pos=" CUPS_LLFMT "\n", CUPS_LLCAST fp->pos));
+
   if (bytes > sizeof(fp->buf))
   {
 #ifdef HAVE_LIBZ
@@ -1163,6 +1210,8 @@ cupsFilePutChar(cups_file_t *fp,  /* I - CUPS file */
 
   fp->pos ++;
 
+  DEBUG_printf(("cupsFilePutChar: pos=" CUPS_LLFMT "\n", CUPS_LLCAST fp->pos));
+
   return (0);
 }
 
@@ -1202,6 +1251,8 @@ cupsFilePuts(cups_file_t *fp,             /* I - CUPS file */
 
     fp->pos += bytes;
 
+    DEBUG_printf(("cupsFilePuts: pos=" CUPS_LLFMT "\n", CUPS_LLCAST fp->pos));
+
     return (bytes);
   }
 
@@ -1211,6 +1262,8 @@ cupsFilePuts(cups_file_t *fp,             /* I - CUPS file */
 
   fp->pos += bytes;
 
+  DEBUG_printf(("cupsFilePuts: pos=" CUPS_LLFMT "\n", CUPS_LLCAST fp->pos));
+
   if (bytes > sizeof(fp->buf))
   {
 #ifdef HAVE_LIBZ
@@ -1244,8 +1297,8 @@ cupsFileRead(cups_file_t *fp,             /* I - CUPS file */
   ssize_t      count;                  /* Bytes read */
 
 
-  DEBUG_printf(("cupsFileRead(fp=%p, buf=%p, bytes=%ld)\n", fp, buf,
-                (long)bytes));
+  DEBUG_printf(("cupsFileRead(fp=%p, buf=%p, bytes=" CUPS_LLFMT ")\n", fp, buf,
+                CUPS_LLCAST bytes));
 
  /*
   * Range check input...
@@ -1267,7 +1320,8 @@ cupsFileRead(cups_file_t *fp,             /* I - CUPS file */
     if (fp->ptr >= fp->end)
       if (cups_fill(fp) <= 0)
       {
-        DEBUG_printf(("    cups_fill() returned -1, total=%d\n", (int)total));
+        DEBUG_printf(("cupsFileRead: cups_fill() returned -1, total=" CUPS_LLFMT "\n",
+                     CUPS_LLCAST total));
 
         if (total > 0)
           return ((ssize_t)total);
@@ -1281,6 +1335,9 @@ cupsFileRead(cups_file_t *fp,             /* I - CUPS file */
 
     memcpy(buf, fp->ptr, count);
     fp->ptr += count;
+    fp->pos += count;
+
+    DEBUG_printf(("cupsFileRead: pos=" CUPS_LLFMT "\n", CUPS_LLCAST fp->pos));
 
    /*
     * Update the counts for the last read...
@@ -1295,7 +1352,7 @@ cupsFileRead(cups_file_t *fp,             /* I - CUPS file */
   * Return the total number of bytes read...
   */
 
-  DEBUG_printf(("    total=%d\n", (int)total));
+  DEBUG_printf(("cupsFileRead: total=%d\n", (int)total));
 
   return ((ssize_t)total);
 }
@@ -1315,6 +1372,9 @@ cupsFileRewind(cups_file_t *fp)           /* I - CUPS file */
   * Range check input...
   */
 
+  DEBUG_printf(("cupsFileRewind(fp=%p)\n", fp));
+  DEBUG_printf(("cupsFileRewind: pos=" CUPS_LLFMT "\n", CUPS_LLCAST fp->pos));
+
   if (!fp || fp->mode != 'r')
     return (-1);
 
@@ -1322,18 +1382,22 @@ cupsFileRewind(cups_file_t *fp)         /* I - CUPS file */
   * Handle special cases...
   */
 
-  if (fp->pos == 0)
+  if (fp->bufpos == 0)
   {
    /*
     * No seeking necessary...
     */
 
+    fp->pos = 0;
+
     if (fp->ptr)
     {
       fp->ptr = fp->buf;
       fp->eof = 0;
     }
 
+    DEBUG_printf(("cupsFileRewind: pos=" CUPS_LLFMT "\n", CUPS_LLCAST fp->pos));
+
     return (0);
   }
 
@@ -1351,10 +1415,13 @@ cupsFileRewind(cups_file_t *fp)         /* I - CUPS file */
 
   lseek(fp->fd, 0, SEEK_SET);
 
-  fp->pos = 0;
-  fp->ptr = NULL;
-  fp->end = NULL;
-  fp->eof = 0;
+  fp->bufpos = 0;
+  fp->pos    = 0;
+  fp->ptr    = NULL;
+  fp->end    = NULL;
+  fp->eof    = 0;
+
+  DEBUG_printf(("cupsFileRewind: pos=" CUPS_LLFMT "\n", CUPS_LLCAST fp->pos));
 
   return (0);
 }
@@ -1373,9 +1440,10 @@ cupsFileSeek(cups_file_t *fp,            /* I - CUPS file */
   ssize_t      bytes;                  /* Number bytes in buffer */
 
 
-  DEBUG_printf(("cupsFileSeek(fp=%p, pos=" CUPS_LLFMT ")\n", fp, pos));
-  DEBUG_printf(("    fp->pos=" CUPS_LLFMT "\n", fp->pos));
-  DEBUG_printf(("    fp->ptr=%p, fp->end=%p\n", fp->ptr, fp->end));
+  DEBUG_printf(("cupsFileSeek(fp=%p, pos=" CUPS_LLFMT ")\n", fp,
+                CUPS_LLCAST pos));
+  DEBUG_printf(("cupsFileSeek: fp->pos=" CUPS_LLFMT "\n", CUPS_LLCAST fp->pos));
+  DEBUG_printf(("cupsFileSeek: fp->ptr=%p, fp->end=%p\n", fp->ptr, fp->end));
 
  /*
   * Range check input...
@@ -1391,19 +1459,22 @@ cupsFileSeek(cups_file_t *fp,           /* I - CUPS file */
   if (pos == 0)
     return (cupsFileRewind(fp));
 
-  if (fp->pos == pos)
+  if (fp->ptr)
   {
-   /*
-    * No seeking necessary...
-    */
+    bytes = (ssize_t)(fp->end - fp->buf);
 
-    if (fp->ptr)
+    if (pos >= fp->bufpos && pos < (fp->bufpos + bytes))
     {
-      fp->ptr = fp->buf;
+     /*
+      * No seeking necessary...
+      */
+
+      fp->pos = pos;
+      fp->ptr = fp->buf + pos - fp->bufpos;
       fp->eof = 0;
-    }
 
-    return (pos);
+      return (pos);
+    }
   }
 
 #ifdef HAVE_LIBZ
@@ -1419,26 +1490,20 @@ cupsFileSeek(cups_file_t *fp,           /* I - CUPS file */
 #endif /* HAVE_LIBZ */
 
  /*
-  * Figure out the number of bytes in the current buffer, and then
-  * see if we are outside of it...
+  * Seek forwards or backwards...
   */
 
-  if (fp->ptr)
-    bytes = (ssize_t)(fp->end - fp->buf);
-  else
-    bytes = 0;
-
   fp->eof = 0;
 
-  DEBUG_printf(("    bytes=" CUPS_LLFMT "\n", CUPS_LLCAST bytes));
+  DEBUG_printf(("cupsFileSeek: bytes=" CUPS_LLFMT "\n", CUPS_LLCAST bytes));
 
-  if (pos < fp->pos)
+  if (pos < fp->bufpos)
   {
    /*
     * Need to seek backwards...
     */
 
-    DEBUG_puts("    SEEK BACKWARDS");
+    DEBUG_puts("cupsFileSeek: SEEK BACKWARDS");
 
 #ifdef HAVE_LIBZ
     if (fp->compressed)
@@ -1446,72 +1511,70 @@ cupsFileSeek(cups_file_t *fp,           /* I - CUPS file */
       inflateEnd(&fp->stream);
 
       lseek(fp->fd, 0, SEEK_SET);
-      fp->pos = 0;
-      fp->ptr = NULL;
-      fp->end = NULL;
+      fp->bufpos = 0;
+      fp->pos    = 0;
+      fp->ptr    = NULL;
+      fp->end    = NULL;
 
       while ((bytes = cups_fill(fp)) > 0)
-        if (pos >= fp->pos && pos < (fp->pos + bytes))
+        if (pos >= fp->bufpos && pos < (fp->bufpos + bytes))
          break;
 
       if (bytes <= 0)
         return (-1);
 
-      fp->ptr = fp->buf + pos - fp->pos;
+      fp->ptr = fp->buf + pos - fp->bufpos;
+      fp->pos = pos;
     }
     else
 #endif /* HAVE_LIBZ */
     {
-      fp->pos = lseek(fp->fd, pos, SEEK_SET);
-      fp->ptr = NULL;
-      fp->end = NULL;
+      fp->bufpos = lseek(fp->fd, pos, SEEK_SET);
+      fp->pos    = fp->bufpos;
+      fp->ptr    = NULL;
+      fp->end    = NULL;
 
-      DEBUG_printf(("    lseek() returned %ld...\n", (long)fp->pos));
+      DEBUG_printf(("cupsFileSeek: lseek() returned " CUPS_LLFMT "...\n",
+                    CUPS_LLCAST fp->pos));
     }
   }
-  else if (pos >= (fp->pos + bytes))
+  else
   {
    /*
     * Need to seek forwards...
     */
 
-    DEBUG_puts("    SEEK FORWARDS");
+    DEBUG_puts("cupsFileSeek: SEEK FORWARDS");
 
 #ifdef HAVE_LIBZ
     if (fp->compressed)
     {
       while ((bytes = cups_fill(fp)) > 0)
       {
-        if (pos >= fp->pos && pos < (fp->pos + bytes))
+        if (pos >= fp->bufpos && pos < (fp->bufpos + bytes))
          break;
       }
 
       if (bytes <= 0)
         return (-1);
 
-      fp->ptr = fp->buf + pos - fp->pos;
+      fp->ptr = fp->buf + pos - fp->bufpos;
+      fp->pos = pos;
     }
     else
 #endif /* HAVE_LIBZ */
     {
-      fp->pos = lseek(fp->fd, pos, SEEK_SET);
-      fp->ptr = NULL;
-      fp->end = NULL;
+      fp->bufpos = lseek(fp->fd, pos, SEEK_SET);
+      fp->pos    = fp->bufpos;
+      fp->ptr    = NULL;
+      fp->end    = NULL;
 
-      DEBUG_printf(("    lseek() returned " CUPS_LLFMT "...\n", fp->pos));
+      DEBUG_printf(("cupsFileSeek: lseek() returned " CUPS_LLFMT "...\n",
+                    CUPS_LLCAST fp->pos));
     }
   }
-  else
-  {
-   /*
-    * Just reposition the current pointer, since we have the right
-    * range...
-    */
 
-    DEBUG_puts("    SEEK INSIDE BUFFER");
-
-    fp->ptr = fp->buf + pos - fp->pos;
-  }
+  DEBUG_printf(("cupsFileSeek: pos=" CUPS_LLFMT "\n", CUPS_LLCAST fp->pos));
 
   return (fp->pos);
 }
@@ -1628,6 +1691,9 @@ cupsFileStdout(void)
 off_t                                  /* O - File position */
 cupsFileTell(cups_file_t *fp)          /* I - CUPS file */
 {
+  DEBUG_printf(("cupsFileTell(fp=%p)\n", fp));
+  DEBUG_printf(("cupsFileTell: pos=" CUPS_LLFMT "\n", CUPS_LLCAST fp->pos));
+
   return (fp ? fp->pos : 0);
 }
 
@@ -1645,6 +1711,8 @@ cupsFileUnlock(cups_file_t *fp)           /* I - CUPS file */
   * Range check...
   */
 
+  DEBUG_printf(("cupsFileUnlock(fp=%p)\n", fp));
+
   if (!fp || fp->mode == 's')
     return (-1);
 
@@ -1675,6 +1743,9 @@ cupsFileWrite(cups_file_t *fp,            /* I - CUPS file */
   * Range check input...
   */
 
+  DEBUG_printf(("cupsFileWrite(fp=%p, buf=%p, bytes=" CUPS_LLFMT ")\n",
+                fp, buf, CUPS_LLCAST bytes));
+
   if (!fp || !buf || bytes < 0 || (fp->mode != 'w' && fp->mode != 's'))
     return (-1);
 
@@ -1692,6 +1763,8 @@ cupsFileWrite(cups_file_t *fp,            /* I - CUPS file */
 
     fp->pos += (off_t)bytes;
 
+    DEBUG_printf(("cupsFileWrite: pos=" CUPS_LLFMT "\n", CUPS_LLCAST fp->pos));
+
     return ((ssize_t)bytes);
   }
 
@@ -1701,6 +1774,8 @@ cupsFileWrite(cups_file_t *fp,            /* I - CUPS file */
 
   fp->pos += (off_t)bytes;
 
+  DEBUG_printf(("cupsFileWrite: pos=" CUPS_LLFMT "\n", CUPS_LLCAST fp->pos));
+
   if (bytes > sizeof(fp->buf))
   {
 #ifdef HAVE_LIBZ
@@ -1729,8 +1804,8 @@ cups_compress(cups_file_t *fp,            /* I - CUPS file */
               const char  *buf,                /* I - Buffer */
              size_t      bytes)        /* I - Number bytes */
 {
-  DEBUG_printf(("cups_compress(fp=%p, buf=%p, bytes=%ld)\n", fp, buf,
-                (long)bytes));
+  DEBUG_printf(("cups_compress(fp=%p, buf=%p, bytes=" CUPS_LLFMT "\n", fp, buf,
+                CUPS_LLCAST bytes));
 
  /*
   * Update the CRC...
@@ -1751,8 +1826,8 @@ cups_compress(cups_file_t *fp,            /* I - CUPS file */
     * Flush the current buffer...
     */
 
-    DEBUG_printf(("    avail_in=%d, avail_out=%d\n", fp->stream.avail_in,
-                  fp->stream.avail_out));
+    DEBUG_printf(("cups_compress: avail_in=%d, avail_out=%d\n",
+                  fp->stream.avail_in, fp->stream.avail_out));
 
     if (fp->stream.avail_out < (int)(sizeof(fp->cbuf) / 8))
     {
@@ -1787,19 +1862,15 @@ cups_fill(cups_file_t *fp)              /* I - CUPS file */
 
 
   DEBUG_printf(("cups_fill(fp=%p)\n", fp));
-  DEBUG_printf(("    fp->ptr=%p, fp->end=%p, fp->buf=%p, "
-                "fp->pos=" CUPS_LLFMT ", fp->eof=%d\n",
-                fp->ptr, fp->end, fp->buf, fp->pos, fp->eof));
-
- /*
-  * Update the "pos" element as needed...
-  */
+  DEBUG_printf(("cups_fill: fp->ptr=%p, fp->end=%p, fp->buf=%p, "
+                "fp->bufpos=" CUPS_LLFMT ", fp->eof=%d\n",
+                fp->ptr, fp->end, fp->buf, CUPS_LLCAST fp->bufpos, fp->eof));
 
   if (fp->ptr && fp->end)
-    fp->pos += (off_t)(fp->end - fp->buf);
+    fp->bufpos += fp->end - fp->ptr;
 
 #ifdef HAVE_LIBZ
-  DEBUG_printf(("    fp->compressed=%d\n", fp->compressed));
+  DEBUG_printf(("cups_fill: fp->compressed=%d\n", fp->compressed));
 
   while (!fp->ptr || fp->compressed)
   {
@@ -1827,7 +1898,7 @@ cups_fill(cups_file_t *fp)                /* I - CUPS file */
        * Can't read from file!
        */
 
-        DEBUG_printf(("    cups_read() returned " CUPS_LLFMT "!\n",
+        DEBUG_printf(("cups_fill: cups_read() returned " CUPS_LLFMT "!\n",
                      CUPS_LLCAST bytes));
 
        return (-1);
@@ -2107,6 +2178,9 @@ cups_read(cups_file_t *fp,                /* I - CUPS file */
   ssize_t      total;                  /* Total bytes read */
 
 
+  DEBUG_printf(("cups_read(fp=%p, buf=%p, bytes=" CUPS_LLFMT ")\n", fp, buf,
+                CUPS_LLCAST bytes));
+
  /*
   * Loop until we read at least 0 bytes...
   */
@@ -2125,6 +2199,8 @@ cups_read(cups_file_t *fp,                /* I - CUPS file */
       total = read(fp->fd, buf, bytes);
 #endif /* WIN32 */
 
+    DEBUG_printf(("cups_read: total=" CUPS_LLFMT "\n", CUPS_LLCAST total));
+
     if (total >= 0)
       break;
 
@@ -2159,8 +2235,8 @@ cups_write(cups_file_t *fp,               /* I - CUPS file */
   ssize_t      count;                  /* Count this time */
 
 
-  DEBUG_printf(("cups_write(fp=%p, buf=%p, bytes=%ld)\n", fp, buf,
-                (long)bytes));
+  DEBUG_printf(("cups_write(fp=%p, buf=%p, bytes=" CUPS_LLFMT ")\n", fp, buf,
+                CUPS_LLCAST bytes));
 
  /*
   * Loop until all bytes are written...
@@ -2181,6 +2257,8 @@ cups_write(cups_file_t *fp,               /* I - CUPS file */
       count = write(fp->fd, buf, bytes);
 #endif /* WIN32 */
 
+    DEBUG_printf(("cups_write: count=" CUPS_LLFMT "\n", CUPS_LLCAST count));
+
     if (count < 0)
     {
      /*
@@ -2193,8 +2271,6 @@ cups_write(cups_file_t *fp,               /* I - CUPS file */
         return (-1);
     }
 
-    DEBUG_printf(("    count=%ld\n", (long)count));
-
    /*
     * Update the counts for the last write call...
     */
index 3b9b9d515115548243228ea644a732fe9ef0efae..4f0f39e109ccc82dc6a0b40e198aff7dac5df0ca 100644 (file)
@@ -41,6 +41,7 @@
  * Local functions...
  */
 
+static int     random_tests(void);
 static int     read_write_tests(int compression);
 
 
@@ -76,6 +77,12 @@ main(int  argc,                              /* I - Number of command-line arguments */
     status += read_write_tests(1);
 #endif /* HAVE_LIBZ */
 
+   /*
+    * Do uncompressed random I/O tests...
+    */
+
+    status = random_tests();
+
    /*
     * Test fdopen and close without reading...
     */
@@ -83,7 +90,7 @@ main(int  argc,                               /* I - Number of command-line arguments */
     pipe(fds);
     close(fds[1]);
 
-    fputs("cupsFileOpenFd(fd, \"r\"): ", stdout);
+    fputs("\ncupsFileOpenFd(fd, \"r\"): ", stdout);
     fflush(stdout);
 
     if ((fdfile = cupsFileOpenFd(fds[0], "r")) == NULL)
@@ -114,7 +121,7 @@ main(int  argc,                             /* I - Number of command-line arguments */
     * Test path functions...
     */
 
-    fputs("cupsFileFind: ", stdout);
+    fputs("\ncupsFileFind: ", stdout);
 #ifdef WIN32
     if (cupsFileFind("notepad.exe", "C:/WINDOWS", 1, filename, sizeof(filename)) &&
        cupsFileFind("notepad.exe", "C:/WINDOWS;C:/WINDOWS/SYSTEM32", 1, filename, sizeof(filename)))
@@ -171,6 +178,190 @@ main(int  argc,                           /* I - Number of command-line arguments */
 }
 
 
+/*
+ * 'random_tests()' - Do random access tests.
+ */
+
+static int                             /* O - Status */
+random_tests(void)
+{
+  int          status,                 /* Status of tests */
+               pass,                   /* Current pass */
+               count,                  /* Number of records read */
+               record,                 /* Current record */
+               num_records;            /* Number of records */
+  ssize_t      pos,                    /* Position in file */
+               expected;               /* Expected position in file */
+  cups_file_t  *fp;                    /* File */
+  char         buffer[512];            /* Data buffer */
+
+
+ /*
+  * Run 4 passes, each time appending to a data file and then reopening the
+  * file for reading to validate random records in the file.
+  */
+
+  for (status = 0, pass = 0; pass < 4; pass ++)
+  {
+   /*
+    * cupsFileOpen(append)
+    */
+
+    printf("\ncupsFileOpen(append %d): ", pass);
+
+    if ((fp = cupsFileOpen("testfile.dat", "a")) == NULL)
+    {
+      printf("FAIL (%s)\n", strerror(errno));
+      status ++;
+      break;
+    }
+    else
+      puts("PASS");
+
+   /*
+    * cupsFileTell()
+    */
+
+    expected = 256 * sizeof(buffer) * pass;
+
+    fputs("cupsFileTell(): ", stdout);
+    if ((pos = cupsFileTell(fp)) != expected)
+    {
+      printf("FAIL (" CUPS_LLFMT " instead of " CUPS_LLFMT ")\n",
+            CUPS_LLCAST pos, CUPS_LLCAST expected);
+      status ++;
+      break;
+    }
+    else
+      puts("PASS");
+
+   /*
+    * cupsFileWrite()
+    */
+
+    fputs("cupsFileWrite(256 512-byte records): ", stdout);
+    for (record = 0; record < 256; record ++)
+    {
+      memset(buffer, record, sizeof(buffer));
+      if (cupsFileWrite(fp, buffer, sizeof(buffer)) < sizeof(buffer))
+        break;
+    }
+
+    if (record < 256)
+    {
+      printf("FAIL (%d: %s)\n", record, strerror(errno));
+      status ++;
+      break;
+    }
+    else
+      puts("PASS");
+
+   /*
+    * cupsFileTell()
+    */
+
+    expected += 256 * sizeof(buffer);
+
+    fputs("cupsFileTell(): ", stdout);
+    if ((pos = cupsFileTell(fp)) != expected)
+    {
+      printf("FAIL (" CUPS_LLFMT " instead of " CUPS_LLFMT ")\n",
+             CUPS_LLCAST pos, CUPS_LLCAST expected);
+      status ++;
+      break;
+    }
+    else
+      puts("PASS");
+
+    cupsFileClose(fp);
+
+   /*
+    * cupsFileOpen(read)
+    */
+
+    printf("\ncupsFileOpen(read %d): ", pass);
+
+    if ((fp = cupsFileOpen("testfile.dat", "r")) == NULL)
+    {
+      printf("FAIL (%s)\n", strerror(errno));
+      status ++;
+      break;
+    }
+    else
+      puts("PASS");
+
+   /*
+    * cupsFileSeek, cupsFileRead
+    */
+
+    fputs("cupsFileSeek(), cupsFileRead(): ", stdout);
+
+    for (num_records = (pass + 1) * 256, count = (pass + 1) * 256,
+             record = rand() % num_records;
+         count > 0;
+        count --, record = (record + (rand() & 31) - 16 + num_records) %
+                           num_records)
+    {
+     /*
+      * The last record is always the first...
+      */
+
+      if (count == 1)
+        record = 0;
+
+     /*
+      * Try reading the data for the specified record, and validate the
+      * contents...
+      */
+
+      expected = sizeof(buffer) * record;
+
+      if ((pos = cupsFileSeek(fp, expected)) != expected)
+      {
+        printf("FAIL (" CUPS_LLFMT " instead of " CUPS_LLFMT ")\n",
+              CUPS_LLCAST pos, CUPS_LLCAST expected);
+        status ++;
+       break;
+      }
+      else
+      {
+       if (cupsFileRead(fp, buffer, sizeof(buffer)) != sizeof(buffer))
+       {
+         printf("FAIL (%s)\n", strerror(errno));
+         status ++;
+         break;
+       }
+       else if ((buffer[0] & 255) != (record & 255) ||
+                memcmp(buffer, buffer + 1, sizeof(buffer) - 1))
+       {
+         printf("FAIL (Bad Data - %d instead of %d)\n", buffer[0] & 255,
+                record & 255);
+         status ++;
+         break;
+       }
+      }
+    }
+
+    if (count == 0)
+      puts("PASS");
+
+    cupsFileClose(fp);
+  }
+
+ /*
+  * Remove the test file...
+  */
+
+  unlink("testfile.dat");
+                    
+ /*
+  * Return the test status...
+  */
+
+  return (status);
+}
+
+
 /*
  * 'read_write_tests()' - Perform read/write tests.
  */
@@ -179,7 +370,7 @@ static int                          /* O - Status */
 read_write_tests(int compression)      /* I - Use compression? */
 {
   int          i;                      /* Looping var */
-  cups_file_t  *fp;                    /* First file */
+  cups_file_t  *fp;                    /* File */
   int          status;                 /* Exit status */
   char         line[1024],             /* Line from file */
                *value;                 /* Directive value from line */
@@ -187,6 +378,7 @@ read_write_tests(int compression)   /* I - Use compression? */
   unsigned char        readbuf[8192],          /* Read buffer */
                writebuf[8192];         /* Write buffer */
   int          byte;                   /* Byte from file */
+  off_t                length;                 /* Length of file */
   static const char *partial_line = "partial line";
                                        /* Partial line */
 
@@ -258,7 +450,7 @@ read_write_tests(int compression)   /* I - Use compression? */
     fputs("cupsFilePrintf(): ", stdout);
 
     for (i = 0; i < 1000; i ++)
-      if (cupsFilePrintf(fp, "TestLine %d\n", i) < 0)
+      if (cupsFilePrintf(fp, "TestLine %03d\n", i) < 0)
         break;
 
     if (i >= 1000)
@@ -319,6 +511,20 @@ read_write_tests(int compression)  /* I - Use compression? */
       status ++;
     }
 
+   /*
+    * cupsFileTell()
+    */
+
+    fputs("cupsFileTell(): ", stdout);
+
+    if ((length = cupsFileTell(fp)) == 81933283)
+      puts("PASS");
+    else
+    {
+      printf("FAIL (" CUPS_LLFMT " instead of 81933283)\n", CUPS_LLCAST length);
+      status ++;
+    }
+
    /*
     * cupsFileClose()
     */
@@ -343,7 +549,7 @@ read_write_tests(int compression)   /* I - Use compression? */
   * cupsFileOpen(read)
   */
 
-  fputs("cupsFileOpen(read): ", stdout);
+  fputs("\ncupsFileOpen(read): ", stdout);
 
   fp = cupsFileOpen(compression ? "testfile.dat.gz" : "testfile.dat", "r");
   if (fp)
@@ -422,23 +628,9 @@ read_write_tests(int compression)  /* I - Use compression? */
 
     fputs("cupsFileGetChar(): ", stdout);
 
-#ifdef DEBUG
-    puts("\ni     byte\n----- -----");
-
-    for (i = 0; i < 256; i ++)
-    {
-      byte = cupsFileGetChar(fp);
-
-      printf("%-5d %-5d\n", i, byte);
-
-      if (byte != i)
-        break;
-    }
-#else
     for (i = 0; i < 256; i ++)
       if ((byte = cupsFileGetChar(fp)) != i)
         break;
-#endif /* DEBUG */
 
     if (i >= 256)
       puts("PASS");
@@ -504,6 +696,20 @@ read_write_tests(int compression)  /* I - Use compression? */
       status ++;
     }
 
+   /*
+    * cupsFileTell()
+    */
+
+    fputs("cupsFileTell(): ", stdout);
+
+    if ((length = cupsFileTell(fp)) == 81933283)
+      puts("PASS");
+    else
+    {
+      printf("FAIL (" CUPS_LLFMT " instead of 81933283)\n", CUPS_LLCAST length);
+      status ++;
+    }
+
    /*
     * cupsFileClose()
     */
@@ -524,6 +730,12 @@ read_write_tests(int compression)  /* I - Use compression? */
     status ++;
   }
 
+ /*
+  * Remove the test file...
+  */
+
+  unlink(compression ? "testfile.dat.gz" : "testfile.dat");
+                    
  /*
   * Return the test status...
   */
index 5aa7b357a884f30724ab03e6acfea0add061e4cd..dc73164e05fadaa2f62a57cec55d17316e4b2843 100644 (file)
@@ -1192,20 +1192,6 @@ http://www.vendor.com/help"
 *End
 </pre>
 
-<h3><span class='info'>CUPS 1.4</span><a name='cupsMarkerName'>cupsMarkerName</a></h3>
-
-<p class='summary'>*cupsMarkerName/Name Text: ""</p>
-
-<p>This optional attribute maps <code>marker-names</code> strings that are
-generated by the driver to human readable text.</p>
-
-<p>Examples:</p>
-
-<pre class='command'>
-<em>*% Map cyanToner to "Cyan Toner"</em>
-*cupsMarkerName cyanToner/Cyan Toner: ""
-</pre>
-
 <h3><span class='info'>CUPS 1.2</span><a name='cupsLanguages'>cupsLanguages</a></h3>
 
 <p class='summary'>*cupsLanguages: "locale list"</p>
@@ -1236,6 +1222,20 @@ hardware. The default value is <code>false</code>.</p>
 *cupsManualCopies: true
 </pre>
 
+<h3><span class='info'>CUPS 1.4</span><a name='cupsMarkerName'>cupsMarkerName</a></h3>
+
+<p class='summary'>*cupsMarkerName/Name Text: ""</p>
+
+<p>This optional attribute maps <code>marker-names</code> strings that are
+generated by the driver to human readable text.</p>
+
+<p>Examples:</p>
+
+<pre class='command'>
+<em>*% Map cyanToner to "Cyan Toner"</em>
+*cupsMarkerName cyanToner/Cyan Toner: ""
+</pre>
+
 <h3><a name='cupsModelNumber'>cupsModelNumber</a></h3>
 
 <p class='summary'>*cupsModelNumber: number</p>
@@ -1251,7 +1251,6 @@ the output for a specific model of printer.</p>
 *cupsModelNumber: 1234
 </pre>
 
-
 <h3><span class='info'>CUPS 1.3</span><a name='cupsPJLCharset'>cupsPJLCharset</a></h3>
 
 <p class='summary'>*cupsPJLCharset: "ISO character set name"</p>
@@ -1267,6 +1266,24 @@ assumed.</p>
 *cupsPJLCharset: "UTF-8"
 </pre>
 
+<h3><span class='info'>CUPS 1.4</span><a name='cupsPJLDisplay'>cupsPJLDisplay</a></h3>
+
+<p class='summary'>*cupsPJLDisplay: "what"</p>
+
+<p>This optional attribute specifies which command is used to display the
+job ID, name, and user on the printer's control panel. "What" is either "none"
+to disable this functionality, "job" to use "@PJL JOB DISPLAY", or "rdymsg"
+to use "@PJL RDYMSG DISPLAY". The default is "job".</p>
+
+<p>Examples:</p>
+
+<pre class='command'>
+<em>*% Display job information using @PJL SET RDYMSG DISPLAY="foo"</em>
+*cupsPJLDisplay: "rdymsg"
+
+<em>*% Display job information display</em>
+*cupsPJLDisplay: "none"
+</pre>
 
 <h3><span class='info'>CUPS 1.2</span><a name='cupsPortMonitor'>cupsPortMonitor</a></h3>
 
@@ -1588,6 +1605,17 @@ the device.</p>
 
 <h2 class='title'><a name='HISTORY'>Change History</a></h2>
 
+<h3>Changes in CUPS 1.4</a></h3>
+
+<ul>
+
+       <li>Added <tt>cupsPJLDisplay</tt> attribute.</li>
+
+       <li>Added <tt>cupsMarkerName</tt> attribute.</li>
+
+</ul>
+
+
 <h3>Changes in CUPS 1.3.1</a></h3>
 
 <ul>
index b5c069dd141e566986eb00864179ce107a28b05b..56ca4a937b2de4ef9d7f9692362f7c8690997873 100644 (file)
 %subpackage lpd
 %description LPD support
 
-%subpackage da
-%description Danish support
-
-%subpackage de
-%description German support
-
-%subpackage es
-%description Spanish support
-
-%subpackage et
-%description Estonian support
-
-%subpackage fi
-%description Finish support
-
-%subpackage fr
-%description French support
-
-%subpackage he
-%description Hebrew support
-
-%subpackage it
-%description Italian support
-
-%subpackage ja
-%description Japanese support
-
-%subpackage ko
-%description Korean support
-
-%subpackage nl
-%description Dutch support
-
-%subpackage no
-%description Norwegian support
-
-%subpackage pl
-%description Polish support
-
-%subpackage pt
-%description Portuguese support
-
-%subpackage ru
-%description Russian support
-
-%subpackage sv
-%description Swedish support
-
-%subpackage zh
-%description Chinese support
-
 %subpackage
 
 
@@ -430,62 +379,60 @@ d 0755 root $CUPS_GROUP $STATEDIR -
 d 0511 root $CUPS_PRIMARY_SYSTEM_GROUP $STATEDIR/certs -
 
 # Data files
-%subpackage da
 f 0644 root sys $LOCALEDIR/da/cups_da.po locale/cups_da.po
 f 0644 root sys $LOCALEDIR/da/ppdc_da.po locale/ppdc_da.po
-%subpackage de
+
 f 0644 root sys $LOCALEDIR/de/cups_de.po locale/cups_de.po
 f 0644 root sys $LOCALEDIR/de/ppdc_de.po locale/ppdc_de.po
-%subpackage es
+
 f 0644 root sys $LOCALEDIR/es/cups_es.po locale/cups_es.po
 f 0644 root sys $LOCALEDIR/es/ppdc_es.po locale/ppdc_es.po
-%subpackage et
+
 f 0644 root sys $LOCALEDIR/et/cups_et.po locale/cups_et.po
 f 0644 root sys $LOCALEDIR/et/ppdc_et.po locale/ppdc_et.po
-%subpackage fi
+
 f 0644 root sys $LOCALEDIR/fi/cups_fi.po locale/cups_fi.po
 f 0644 root sys $LOCALEDIR/fi/ppdc_fi.po locale/ppdc_fi.po
-%subpackage fr
+
 f 0644 root sys $LOCALEDIR/fr/cups_fr.po locale/cups_fr.po
 f 0644 root sys $LOCALEDIR/fr/ppdc_fr.po locale/ppdc_fr.po
-%subpackage he
+
 f 0644 root sys $LOCALEDIR/he/cups_he.po locale/cups_he.po
 f 0644 root sys $LOCALEDIR/he/ppdc_he.po locale/ppdc_he.po
-%subpackage it
+
 f 0644 root sys $LOCALEDIR/it/cups_it.po locale/cups_it.po
 f 0644 root sys $LOCALEDIR/it/ppdc_it.po locale/ppdc_it.po
-%subpackage ja
+
 f 0644 root sys $LOCALEDIR/ja/cups_ja.po locale/cups_ja.po
 f 0644 root sys $LOCALEDIR/ja/ppdc_ja.po locale/ppdc_ja.po
-%subpackage ko
+
 f 0644 root sys $LOCALEDIR/ko/cups_ko.po locale/cups_ko.po
 f 0644 root sys $LOCALEDIR/ko/ppdc_ko.po locale/ppdc_ko.po
-%subpackage nl
+
 f 0644 root sys $LOCALEDIR/nl/cups_nl.po locale/cups_nl.po
 f 0644 root sys $LOCALEDIR/nl/ppdc_nl.po locale/ppdc_nl.po
-%subpackage no
+
 f 0644 root sys $LOCALEDIR/no/cups_no.po locale/cups_no.po
 f 0644 root sys $LOCALEDIR/no/ppdc_no.po locale/ppdc_no.po
-%subpackage pl
+
 f 0644 root sys $LOCALEDIR/pl/cups_pl.po locale/cups_pl.po
 f 0644 root sys $LOCALEDIR/pl/ppdc_pl.po locale/ppdc_pl.po
-%subpackage pt
+
 f 0644 root sys $LOCALEDIR/pt/cups_pt.po locale/cups_pt.po
 f 0644 root sys $LOCALEDIR/pt/ppdc_pt.po locale/ppdc_pt.po
 f 0644 root sys $LOCALEDIR/pt_BR/cups_pt_BR.po locale/cups_pt_BR.po
 f 0644 root sys $LOCALEDIR/pt_BR/ppdc_pt_BR.po locale/ppdc_pt_BR.po
-%subpackage ru
+
 f 0644 root sys $LOCALEDIR/ru/cups_ru.po locale/cups_ru.po
 f 0644 root sys $LOCALEDIR/ru/ppdc_ru.po locale/ppdc_ru.po
-%subpackage sv
+
 f 0644 root sys $LOCALEDIR/sv/cups_sv.po locale/cups_sv.po
 f 0644 root sys $LOCALEDIR/sv/ppdc_sv.po locale/ppdc_sv.po
-%subpackage zh
+
 f 0644 root sys $LOCALEDIR/zh/cups_zh.po locale/cups_zh.po
 f 0644 root sys $LOCALEDIR/zh/ppdc_zh.po locale/ppdc_zh.po
 f 0644 root sys $LOCALEDIR/zh_TW/cups_zh_TW.po locale/cups_zh_TW.po
 f 0644 root sys $LOCALEDIR/zh_TW/ppdc_zh_TW.po locale/ppdc_zh_TW.po
-%subpackage
 
 d 0755 root sys $DATADIR -
 
@@ -508,12 +455,14 @@ f 0644 root sys $DATADIR/data/HPGLprolog data/HPGLprolog
 f 0644 root sys $DATADIR/data/psglyphs data/psglyphs
 f 0644 root sys $DATADIR/data/testprint.ps data/testprint.ps
 
+d 0755 root sys $DATADIR/drv -
+f 0644 root sys $DATADIR/drv/sample.drv ppdc/sample.drv
+
 d 0755 root sys $DATADIR/fonts -
 f 0644 root sys $DATADIR/fonts fonts/Courier*
 f 0644 root sys $DATADIR/fonts/Symbol fonts/Symbol
 
 d 0755 root sys $DATADIR/model -
-f 0644 root sys $DATADIR/model ppd/*.ppd
 
 d 0755 root sys $DATADIR/ppdc -
 f 0644 root sys $DATADIR/ppdc data/*.defs
@@ -523,37 +472,35 @@ d 0755 root sys $DATADIR/templates -
 f 0644 root sys $DATADIR/templates templates/*.tmpl
 
 ## Template files
-#%subpackage de
 #d 0755 root sys $DATADIR/templates/de
 #f 0644 root sys $DATADIR/templates/de templates/de/*.tmpl
-#%subpackage es
+
 #d 0755 root sys $DATADIR/templates/es
 #f 0644 root sys $DATADIR/templates/es templates/es/*.tmpl
-#%subpackage et
+
 #d 0755 root sys $DATADIR/templates/et
 #f 0644 root sys $DATADIR/templates/et templates/et/*.tmpl
-#%subpackage fr
+
 #d 0755 root sys $DATADIR/templates/fr
 #f 0644 root sys $DATADIR/templates/fr templates/fr/*.tmpl
-#%subpackage he
+
 #d 0755 root sys $DATADIR/templates/he
 #f 0644 root sys $DATADIR/templates/he templates/he/*.tmpl
-#%subpackage it
+
 #d 0755 root sys $DATADIR/templates/it
 #f 0644 root sys $DATADIR/templates/it templates/it/*.tmpl
-#%subpackage ja
+
 #d 0755 root sys $DATADIR/templates/ja
 #f 0644 root sys $DATADIR/templates/ja templates/ja/*.tmpl
-#%subpackage pl
+
 #d 0755 root sys $DATADIR/templates/pl
 #f 0644 root sys $DATADIR/templates/pl templates/pl/*.tmpl
-#%subpackage sv
+
 #d 0755 root sys $DATADIR/templates/sv
 #f 0644 root sys $DATADIR/templates/sv templates/sv/*.tmpl
-#%subpackage zh
+
 #d 0755 root sys $DATADIR/templates/zh_TW
 #f 0644 root sys $DATADIR/templates/zh_TW templates/zh_TW/*.tmpl
-#%subpackage
 
 # Config files
 d 0755 root sys $SERVERROOT -
@@ -631,38 +578,36 @@ f 0644 root sys $DOCDIR/images doc/images/*.png
 f 0644 root sys $DOCDIR/robots.txt doc/robots.txt
 
 # Localized documentation files
-#%subpackage de
 #d 0755 root sys $DOCDIR/de
 #f 0644 root sys $DOCDIR/de doc/de/*.html
-#%subpackage es
+
 #d 0755 root sys $DOCDIR/es
 #f 0644 root sys $DOCDIR/es doc/es/*.html
-#%subpackage et
+
 #d 0755 root sys $DOCDIR/et
 #f 0644 root sys $DOCDIR/et doc/et/*.html
-#%subpackage fr
+
 #d 0755 root sys $DOCDIR/fr
 #f 0644 root sys $DOCDIR/fr doc/fr/*.html
-#%subpackage he
+
 #d 0755 root sys $DOCDIR/he
 #f 0644 root sys $DOCDIR/he doc/he/*.html
 #f 0644 root sys $DOCDIR/he/cups.css doc/he/cups.css
-#%subpackage it
+
 #d 0755 root sys $DOCDIR/it
 #f 0644 root sys $DOCDIR/it doc/it/*.html
-#%subpackage ja
+
 #d 0755 root sys $DOCDIR/ja
 #f 0644 root sys $DOCDIR/ja doc/ja/*.html
-#%subpackage pl
+
 #d 0755 root sys $DOCDIR/pl
 #f 0644 root sys $DOCDIR/pl doc/pl/*.html
-#%subpackage sv
+
 #d 0755 root sys $DOCDIR/sv
 #f 0644 root sys $DOCDIR/sv doc/sv/*.html
-#%subpackage zh
+
 #d 0755 root sys $DOCDIR/zh_TW
 #f 0644 root sys $DOCDIR/zh_TW doc/zh_TW/*.html
-%subpackage
 
 # Man pages
 d 0755 root sys $AMANDIR -
index d64d3b9f7b3573204a21380594039f9bc65fdad9..401de885ac0c10c9e3374f5b50f7f24ba59fd027 100644 (file)
@@ -67,91 +67,6 @@ Summary: Common UNIX Printing System - LPD support
 Group: System Environment/Daemons
 Requires: %{name} = %{epoch}:%{version} xinetd
 
-%package da
-Summary: Common UNIX Printing System - Danish support
-Group: System Environment/Daemons
-Requires: %{name} = %{epoch}:%{version}
-
-%package de
-Summary: Common UNIX Printing System - German support
-Group: System Environment/Daemons
-Requires: %{name} = %{epoch}:%{version}
-
-%package es
-Summary: Common UNIX Printing System - Spanish support
-Group: System Environment/Daemons
-Requires: %{name} = %{epoch}:%{version}
-
-%package et
-Summary: Common UNIX Printing System - Estonian support
-Group: System Environment/Daemons
-Requires: %{name} = %{epoch}:%{version}
-
-%package fi
-Summary: Common UNIX Printing System - Finnish support
-Group: System Environment/Daemons
-Requires: %{name} = %{epoch}:%{version}
-
-%package fr
-Summary: Common UNIX Printing System - French support
-Group: System Environment/Daemons
-Requires: %{name} = %{epoch}:%{version}
-
-%package he
-Summary: Common UNIX Printing System - Hebrew support
-Group: System Environment/Daemons
-Requires: %{name} = %{epoch}:%{version}
-
-%package it
-Summary: Common UNIX Printing System - Italian support
-Group: System Environment/Daemons
-Requires: %{name} = %{epoch}:%{version}
-
-%package ja
-Summary: Common UNIX Printing System - Japanese support
-Group: System Environment/Daemons
-Requires: %{name} = %{epoch}:%{version}
-
-%package ko
-Summary: Common UNIX Printing System - Korean support
-Group: System Environment/Daemons
-Requires: %{name} = %{epoch}:%{version}
-
-%package nl
-Summary: Common UNIX Printing System - Dutch support
-Group: System Environment/Daemons
-Requires: %{name} = %{epoch}:%{version}
-
-%package no
-Summary: Common UNIX Printing System - Nowegian support
-Group: System Environment/Daemons
-Requires: %{name} = %{epoch}:%{version}
-
-%package pl
-Summary: Common UNIX Printing System - Polish support
-Group: System Environment/Daemons
-Requires: %{name} = %{epoch}:%{version}
-
-%package pt
-Summary: Common UNIX Printing System - Portuguese support
-Group: System Environment/Daemons
-Requires: %{name} = %{epoch}:%{version}
-
-%package ru
-Summary: Common UNIX Printing System - Russian support
-Group: System Environment/Daemons
-Requires: %{name} = %{epoch}:%{version}
-
-%package sv
-Summary: Common UNIX Printing System - Swedish support
-Group: System Environment/Daemons
-Requires: %{name} = %{epoch}:%{version}
-
-%package zh
-Summary: Common UNIX Printing System - Chinese support
-Group: System Environment/Daemons
-Requires: %{name} = %{epoch}:%{version}
-
 %if %{?_with_php:1}%{!?_with_php:0}
 %package php
 Summary: Common UNIX Printing System - PHP support
@@ -386,14 +301,15 @@ rm -rf $RPM_BUILD_ROOT
 /usr/share/cups/charsets/*
 %dir /usr/share/cups/data
 /usr/share/cups/data/*
+%dir /usr/share/cups/drv
+/usr/share/cups/drv/*
 %dir /usr/share/cups/fonts
 /usr/share/cups/fonts/*
 %dir /usr/share/cups/model
-/usr/share/cups/model/*
 %dir /usr/share/cups/ppdc
 /usr/share/cups/ppdc/*
 %dir /usr/share/cups/templates
-/usr/share/cups/templates/*.tmpl
+/usr/share/cups/templates/*
 %dir /usr/share/doc/cups
 /usr/share/doc/cups/*.*
 %dir /usr/share/doc/cups/help
@@ -414,6 +330,7 @@ rm -rf $RPM_BUILD_ROOT
 /usr/share/doc/cups/help/whatsnew.html
 %dir /usr/share/doc/cups/images
 /usr/share/doc/cups/images/*
+/usr/share/locale/*
 
 %dir /usr/share/man/man1
 /usr/share/man/man1/cancel.1.gz
@@ -498,117 +415,6 @@ rm -rf $RPM_BUILD_ROOT
 %dir /usr/share/man/man8
 /usr/share/man/man8/cups-lpd.8.gz
 
-%files da
-%defattr(-,root,root)
-/usr/share/locale/da/*
-
-%files de
-%defattr(-,root,root)
-#%dir /usr/share/doc/cups/de
-#/usr/share/doc/cups/de/index.html
-#%dir /usr/share/cups/templates/de
-#/usr/share/cups/templates/de/*
-/usr/share/locale/de/*
-
-%files es
-%defattr(-,root,root)
-#%dir /usr/share/doc/cups/es
-#/usr/share/doc/cups/es/index.html
-#%dir /usr/share/cups/templates/es
-#/usr/share/cups/templates/es/*
-/usr/share/locale/es/*
-
-%files et
-%defattr(-,root,root)
-#%dir /usr/share/doc/cups/et
-#/usr/share/doc/cups/et/index.html
-#%dir /usr/share/cups/templates/et
-#/usr/share/cups/templates/et/*
-/usr/share/locale/et/*
-
-%files fi
-%defattr(-,root,root)
-/usr/share/locale/fi/*
-
-%files fr
-%defattr(-,root,root)
-#%dir /usr/share/doc/cups/fr
-#/usr/share/doc/cups/fr/index.html
-#%dir /usr/share/cups/templates/fr
-#/usr/share/cups/templates/fr/*
-/usr/share/locale/fr/*
-
-%files he
-%defattr(-,root,root)
-#%dir /usr/share/doc/cups/he
-#/usr/share/doc/cups/he/index.html
-#/usr/share/doc/cups/he/cups.css
-#%dir /usr/share/cups/templates/he
-#/usr/share/cups/templates/he/*
-/usr/share/locale/he/*
-
-%files it
-%defattr(-,root,root)
-#%dir /usr/share/doc/cups/it
-#/usr/share/doc/cups/it/index.html
-#%dir /usr/share/cups/templates/it
-#/usr/share/cups/templates/it/*
-/usr/share/locale/it/*
-
-%files ja
-%defattr(-,root,root)
-#%dir /usr/share/doc/cups/ja
-#/usr/share/doc/cups/ja/index.html
-#%dir /usr/share/cups/templates/ja
-#/usr/share/cups/templates/ja/*
-/usr/share/locale/ja/*
-
-%files ko
-%defattr(-,root,root)
-/usr/share/locale/ko/*
-
-%files nl
-%defattr(-,root,root)
-/usr/share/locale/nl/*
-
-%files no
-%defattr(-,root,root)
-/usr/share/locale/no/*
-
-%files pl
-%defattr(-,root,root)
-#%dir /usr/share/doc/cups/pl
-#/usr/share/doc/cups/pl/index.html
-#%dir /usr/share/cups/templates/pl
-#/usr/share/cups/templates/pl/*
-/usr/share/locale/pl/*
-
-%files pt
-%defattr(-,root,root)
-/usr/share/locale/pt/*
-/usr/share/locale/pt_BR/*
-
-%files ru
-%defattr(-,root,root)
-/usr/share/locale/ru/*
-
-%files sv
-%defattr(-,root,root)
-#%dir /usr/share/doc/cups/sv
-#/usr/share/doc/cups/sv/index.html
-#%dir /usr/share/cups/templates/sv
-#/usr/share/cups/templates/sv/*
-/usr/share/locale/sv/*
-
-%files zh
-%defattr(-,root,root)
-#%dir /usr/share/doc/cups/zh_TW
-#/usr/share/doc/cups/zh_TW/index.html
-#%dir /usr/share/cups/templates/zh_TW
-#/usr/share/cups/templates/zh_TW/*
-/usr/share/locale/zh/*
-/usr/share/locale/zh_TW/*
-
 %if %{?_with_php:1}%{!?_with_php:0}
 %files php
 # PHP
diff --git a/ppd/Makefile b/ppd/Makefile
deleted file mode 100644 (file)
index a26a2ef..0000000
+++ /dev/null
@@ -1,111 +0,0 @@
-#
-# "$Id: Makefile 6813 2007-08-20 17:35:06Z mike $"
-#
-#   PPD file makefile for the Common UNIX Printing System (CUPS).
-#
-#   Copyright 2007-2008 by Apple Inc.
-#   Copyright 1993-2006 by Easy Software Products.
-#
-#   These coded instructions, statements, and computer programs are the
-#   property of Apple Inc. and are protected by Federal copyright
-#   law.  Distribution and use rights are outlined in the file "LICENSE.txt"
-#   which should have been included with this file.  If this file is
-#   file is missing or damaged, see the license at "http://www.cups.org/".
-#
-
-include ../Makedefs
-
-#
-# PPD files...
-#
-
-FILES  =       deskjet.ppd dymo.ppd epson9.ppd epson24.ppd \
-               generic.ppd generpcl.ppd intelbar.ppd \
-               laserjet.ppd okidata9.ppd okidat24.ppd stcolor.ppd \
-               stcolor2.ppd stphoto.ppd stphoto2.ppd zebra.ppd \
-               zebracpl.ppd zebraep1.ppd zebraep2.ppd
-
-
-#
-# Make everything...
-#
-
-all:
-
-
-#
-# Clean all config and object files...
-#
-
-clean:
-
-
-#
-# Dummy depend...
-#
-
-depend:
-
-
-#
-# Install all targets...
-#
-
-install:       all install-data install-headers install-libs install-exec
-
-
-#
-# Install data files...
-#
-
-install-data:
-       $(INSTALL_DIR) -m 755 $(DATADIR)/model
-       for file in $(FILES); do \
-               $(INSTALL_DATA) $$file $(DATADIR)/model; \
-       done
-
-
-#
-# Install programs...
-#
-
-install-exec:
-
-
-#
-# Install headers...
-#
-
-install-headers:
-
-
-#
-# Install libraries...
-#
-
-install-libs:
-
-
-#
-# Uninstall files...
-#
-
-uninstall:
-       for file in $(FILES); do \
-               $(RM) $(DATADIR)/model/$$file; \
-       done
-       -$(RMDIR) $(DATADIR)/model
-       -$(RMDIR) $(DATADIR)
-
-
-#
-# Update PPD files...
-#
-
-ppds:
-       ppdc -d . -l `echo $(LANGUAGES) | tr ' ' ','` sample.drv
-
-
-#
-# End of "$Id: Makefile 6813 2007-08-20 17:35:06Z mike $".
-#
diff --git a/ppd/deskjet.ppd b/ppd/deskjet.ppd
deleted file mode 100644 (file)
index ab8741d..0000000
+++ /dev/null
@@ -1,725 +0,0 @@
-*PPD-Adobe: "4.3"
-*% PPD file for DeskJet Series with CUPS.
-*% Created by the CUPS PPD Compiler v1.2.4.
-*% Copyright 2007 by Apple Inc.
-*% Copyright 1997-2007 by Easy Software Products.
-*% 
-*% These coded instructions, statements, and computer programs are the
-*% property of Apple Inc. and are protected by Federal copyright
-*% law.  Distribution and use rights are outlined in the file "LICENSE.txt"
-*% which should have been included with this file.  If this file is
-*% file is missing or damaged, see the license at "http://www.cups.org/".
-*FormatVersion: "4.3"
-*FileVersion: "1.4"
-*LanguageVersion: English
-*LanguageEncoding: ISOLatin1
-*PCFileName: "DESKJET.PPD"
-*Product: "(ESP Ghostscript)"
-*Product: "(GPL Ghostscript)"
-*Manufacturer: "HP"
-*ModelName: "HP DeskJet Series"
-*ShortNickName: "HP DeskJet Series"
-*NickName: "HP DeskJet Series, 1.4"
-*PSVersion: "(3010.000) 81504"
-*PSVersion: "(3010.000) 860"
-*LanguageLevel: "3"
-*ColorDevice: True
-*DefaultColorSpace: RGB
-*FileSystem: False
-*Throughput: "1"
-*LandscapeOrientation: Plus90
-*TTRasterizer: Type42
-*% Driver-defined attributes...
-*cupsVersion: 1.4
-*cupsModelNumber: 1
-*cupsManualCopies: True
-*cupsFilter: "application/vnd.cups-raster 50 rastertohp"
-*cupsLanguages: "en da de es fi fr it ja ko nl no pt pt_BR sv zh zh_TW"
-*UIConstraints: *PageSize A3 *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageSize A3
-*UIConstraints: *PageSize A4 *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageSize A4
-*UIConstraints: *PageSize A5 *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageSize A5
-*UIConstraints: *PageSize B5 *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageSize B5
-*UIConstraints: *PageSize Executive *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageSize Executive
-*UIConstraints: *PageSize Legal *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageSize Legal
-*UIConstraints: *PageSize Letter *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageSize Letter
-*UIConstraints: *PageSize Tabloid *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageSize Tabloid
-*UIConstraints: *Resolution 600dpi *ColorModel CMYK
-*UIConstraints: *ColorModel CMYK *Resolution 600dpi
-*OpenUI *PageSize/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageSize Executive/Executive - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
-*PageSize Tabloid/Tabloid - 11x17in: "<</PageSize[792 1224]/ImagingBBox null>>setpagedevice"
-*PageSize A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
-*PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*PageSize A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
-*PageSize B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
-*PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
-*PageSize Env10/#10 Envelope - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
-*PageSize EnvC5/C5 Envelope - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
-*PageSize EnvDL/DL Envelope - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
-*PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageSize
-*OpenUI *PageRegion/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageRegion Executive/Executive - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
-*PageRegion Tabloid/Tabloid - 11x17in: "<</PageSize[792 1224]/ImagingBBox null>>setpagedevice"
-*PageRegion A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
-*PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*PageRegion A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
-*PageRegion B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
-*PageRegion EnvISOB5/ISOB5 Envelope - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
-*PageRegion Env10/#10 Envelope - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
-*PageRegion EnvC5/C5 Envelope - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
-*PageRegion EnvDL/DL Envelope - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
-*PageRegion EnvMonarch/Monarch Envelope - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageRegion
-*DefaultImageableArea: Letter
-*ImageableArea Letter/Letter - 8.5x11in: "18.00 36.00 594.00 756.00"
-*ImageableArea Legal/Legal - 8.5x14in: "18.00 36.00 594.00 972.00"
-*ImageableArea Executive/Executive - 7.25x10.5in: "18.00 36.00 504.00 720.00"
-*ImageableArea Tabloid/Tabloid - 11x17in: "18.00 36.00 774.00 1188.00"
-*ImageableArea A3/A3 - 297x420mm: "18.00 36.00 824.00 1155.00"
-*ImageableArea A4/A4 - 210x297mm: "18.00 36.00 577.00 806.00"
-*ImageableArea A5/A5 - 148x210mm: "18.00 36.00 402.00 559.00"
-*ImageableArea B5/B5 - 182x257mm: "18.00 36.00 498.00 693.00"
-*ImageableArea EnvISOB5/ISOB5 Envelope - 176x250mm: "18.00 36.00 481.00 673.00"
-*ImageableArea Env10/#10 Envelope - 4.13x9.5in: "18.00 36.00 279.00 648.00"
-*ImageableArea EnvC5/C5 Envelope - 162x229mm: "18.00 36.00 441.00 613.00"
-*ImageableArea EnvDL/DL Envelope - 110x220mm: "18.00 36.00 294.00 588.00"
-*ImageableArea EnvMonarch/Monarch Envelope - 3.875x7.5in: "18.00 36.00 261.00 504.00"
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/Letter - 8.5x11in: "612.00 792.00"
-*PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
-*PaperDimension Executive/Executive - 7.25x10.5in: "522.00 756.00"
-*PaperDimension Tabloid/Tabloid - 11x17in: "792.00 1224.00"
-*PaperDimension A3/A3 - 297x420mm: "842.00 1191.00"
-*PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
-*PaperDimension A5/A5 - 148x210mm: "420.00 595.00"
-*PaperDimension B5/B5 - 182x257mm: "516.00 729.00"
-*PaperDimension EnvISOB5/ISOB5 Envelope - 176x250mm: "499.00 709.00"
-*PaperDimension Env10/#10 Envelope - 4.13x9.5in: "297.00 684.00"
-*PaperDimension EnvC5/C5 Envelope - 162x229mm: "459.00 649.00"
-*PaperDimension EnvDL/DL Envelope - 110x220mm: "312.00 624.00"
-*PaperDimension EnvMonarch/Monarch Envelope - 3.875x7.5in: "279.00 540.00"
-*RequiresPageRegion All: True
-*OpenUI *ColorModel/Color Mode: PickOne
-*OrderDependency: 10.0 AnySetup *ColorModel
-*DefaultColorModel: CMYK
-*ColorModel Gray/Grayscale: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 2>>setpagedevice"
-*ColorModel RGB/Color: "<</cupsColorSpace 4/cupsColorOrder 1/cupsCompression 2>>setpagedevice"
-*ColorModel CMYK: "<</cupsColorSpace 8/cupsColorOrder 1/cupsCompression 2>>setpagedevice"
-*CloseUI: *ColorModel
-*OpenUI *Resolution: PickOne
-*OrderDependency: 10.0 AnySetup *Resolution
-*DefaultResolution: 300dpi
-*Resolution 150dpi: "<</HWResolution[150 150]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
-*Resolution 300dpi: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
-*Resolution 600dpi/600 DPI Grayscale: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*CloseUI: *Resolution
-*OpenUI *InputSlot/Media Source: PickOne
-*OrderDependency: 10.0 AnySetup *InputSlot
-*DefaultInputSlot: Tray
-*InputSlot Tray: "<</MediaPosition 1>>setpagedevice"
-*InputSlot Manual/Manual Feed: "<</MediaPosition 2>>setpagedevice"
-*InputSlot Envelope/Envelope Feed: "<</MediaPosition 3>>setpagedevice"
-*CloseUI: *InputSlot
-*OpenUI *MediaType/Media Type: PickOne
-*OrderDependency: 10.0 AnySetup *MediaType
-*DefaultMediaType: Plain
-*MediaType Plain/Plain Paper: "<</MediaType(Plain)/cupsMediaType 0>>setpagedevice"
-*MediaType Bond/Bond Paper: "<</MediaType(Bond)/cupsMediaType 1>>setpagedevice"
-*MediaType Special/Special Paper: "<</MediaType(Special)/cupsMediaType 2>>setpagedevice"
-*MediaType Transparency: "<</MediaType(Transparency)/cupsMediaType 3>>setpagedevice"
-*MediaType Glossy/Glossy Paper: "<</MediaType(Glossy)/cupsMediaType 4>>setpagedevice"
-*CloseUI: *MediaType
-*da.Translation Manufacturer/HP: ""
-*da.Translation ModelName/HP DeskJet Series: ""
-*da.Translation ShortNickName/HP DeskJet Series: ""
-*da.Translation NickName/HP DeskJet Series, 1.4: ""
-*da.Translation PageSize/Media Size: ""
-*da.PageSize Letter/Letter - 8.5x11in: ""
-*da.PageSize Legal/Legal - 8.5x14in: ""
-*da.PageSize Executive/Executive - 7.25x10.5in: ""
-*da.PageSize Tabloid/Tabloid - 11x17in: ""
-*da.PageSize A3/A3 - 297x420mm: ""
-*da.PageSize A4/A4 - 210x297mm: ""
-*da.PageSize A5/A5 - 148x210mm: ""
-*da.PageSize B5/B5 - 182x257mm: ""
-*da.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*da.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*da.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*da.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*da.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*da.Translation ColorModel/Farveindstilling: ""
-*da.ColorModel Gray/Grayscale: ""
-*da.ColorModel RGB/Farve: ""
-*da.ColorModel CMYK/CMYK: ""
-*da.Translation Resolution/Resolution: ""
-*da.Resolution 150dpi/150dpi: ""
-*da.Resolution 300dpi/300dpi: ""
-*da.Resolution 600dpi/600 DPI Grayscale: ""
-*da.Translation InputSlot/Media Source: ""
-*da.InputSlot Tray/Tray: ""
-*da.InputSlot Manual/Manuel: ""
-*da.InputSlot Envelope/Envelope Feed: ""
-*da.Translation MediaType/Media Type: ""
-*da.MediaType Plain/Almindeligt papir: ""
-*da.MediaType Bond/Kontraktpapir: ""
-*da.MediaType Special/Special Paper: ""
-*da.MediaType Transparency/Transparency: ""
-*da.MediaType Glossy/Glittet papir: ""
-*de.Translation Manufacturer/HP: ""
-*de.Translation ModelName/HP DeskJet Series: ""
-*de.Translation ShortNickName/HP DeskJet Series: ""
-*de.Translation NickName/HP DeskJet Series, 1.4: ""
-*de.Translation PageSize/Media Size: ""
-*de.PageSize Letter/Letter - 8.5x11in: ""
-*de.PageSize Legal/Legal - 8.5x14in: ""
-*de.PageSize Executive/Executive - 7.25x10.5in: ""
-*de.PageSize Tabloid/Tabloid - 11x17in: ""
-*de.PageSize A3/A3 - 297x420mm: ""
-*de.PageSize A4/A4 - 210x297mm: ""
-*de.PageSize A5/A5 - 148x210mm: ""
-*de.PageSize B5/B5 - 182x257mm: ""
-*de.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*de.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*de.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*de.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*de.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*de.Translation ColorModel/Farbmodus: ""
-*de.ColorModel Gray/Grayscale: ""
-*de.ColorModel RGB/Farbe: ""
-*de.ColorModel CMYK/CMYK: ""
-*de.Translation Resolution/Resolution: ""
-*de.Resolution 150dpi/150dpi: ""
-*de.Resolution 300dpi/300dpi: ""
-*de.Resolution 600dpi/600 DPI Grayscale: ""
-*de.Translation InputSlot/Media Source: ""
-*de.InputSlot Tray/Tray: ""
-*de.InputSlot Manual/Manuell: ""
-*de.InputSlot Envelope/Envelope Feed: ""
-*de.Translation MediaType/Media Type: ""
-*de.MediaType Plain/Normalpapier: ""
-*de.MediaType Bond/Briefpapier: ""
-*de.MediaType Special/Special Paper: ""
-*de.MediaType Transparency/Transparentfolie: ""
-*de.MediaType Glossy/Glanzpapier: ""
-*es.Translation Manufacturer/HP: ""
-*es.Translation ModelName/HP DeskJet Series: ""
-*es.Translation ShortNickName/HP DeskJet Series: ""
-*es.Translation NickName/HP DeskJet Series, 1.4: ""
-*es.Translation PageSize/Media Size: ""
-*es.PageSize Letter/Letter - 8.5x11in: ""
-*es.PageSize Legal/Legal - 8.5x14in: ""
-*es.PageSize Executive/Executive - 7.25x10.5in: ""
-*es.PageSize Tabloid/Tabloid - 11x17in: ""
-*es.PageSize A3/A3 - 297x420mm: ""
-*es.PageSize A4/A4 - 210x297mm: ""
-*es.PageSize A5/A5 - 148x210mm: ""
-*es.PageSize B5/B5 - 182x257mm: ""
-*es.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*es.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*es.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*es.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*es.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*es.Translation ColorModel/Modo de color: ""
-*es.ColorModel Gray/Grayscale: ""
-*es.ColorModel RGB/Color: ""
-*es.ColorModel CMYK/CMYK: ""
-*es.Translation Resolution/Resolution: ""
-*es.Resolution 150dpi/150dpi: ""
-*es.Resolution 300dpi/300dpi: ""
-*es.Resolution 600dpi/600 DPI Grayscale: ""
-*es.Translation InputSlot/Media Source: ""
-*es.InputSlot Tray/Tray: ""
-*es.InputSlot Manual/Alimentación manual: ""
-*es.InputSlot Envelope/Envelope Feed: ""
-*es.Translation MediaType/Media Type: ""
-*es.MediaType Plain/Papel normal: ""
-*es.MediaType Bond/Papel de cartas: ""
-*es.MediaType Special/Special Paper: ""
-*es.MediaType Transparency/Transparencias: ""
-*es.MediaType Glossy/Satinado: ""
-*fi.Translation Manufacturer/HP: ""
-*fi.Translation ModelName/HP DeskJet Series: ""
-*fi.Translation ShortNickName/HP DeskJet Series: ""
-*fi.Translation NickName/HP DeskJet Series, 1.4: ""
-*fi.Translation PageSize/Media Size: ""
-*fi.PageSize Letter/Letter - 8.5x11in: ""
-*fi.PageSize Legal/Legal - 8.5x14in: ""
-*fi.PageSize Executive/Executive - 7.25x10.5in: ""
-*fi.PageSize Tabloid/Tabloid - 11x17in: ""
-*fi.PageSize A3/A3 - 297x420mm: ""
-*fi.PageSize A4/A4 - 210x297mm: ""
-*fi.PageSize A5/A5 - 148x210mm: ""
-*fi.PageSize B5/B5 - 182x257mm: ""
-*fi.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*fi.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*fi.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*fi.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*fi.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*fi.Translation ColorModel/Tulosta värit harmaasävyinä: ""
-*fi.ColorModel Gray/Grayscale: ""
-*fi.ColorModel RGB/Pois: ""
-*fi.ColorModel CMYK/CMYK: ""
-*fi.Translation Resolution/Resolution: ""
-*fi.Resolution 150dpi/150dpi: ""
-*fi.Resolution 300dpi/300dpi: ""
-*fi.Resolution 600dpi/600 DPI Grayscale: ""
-*fi.Translation InputSlot/Paperilähde: ""
-*fi.InputSlot Tray/Tray: ""
-*fi.InputSlot Manual/Käsinsyöttö: ""
-*fi.InputSlot Envelope/Envelope Feed: ""
-*fi.Translation MediaType/Media Type: ""
-*fi.MediaType Plain/Tavallinen paperi: ""
-*fi.MediaType Bond/Hienopaperi: ""
-*fi.MediaType Special/Special Paper: ""
-*fi.MediaType Transparency/Transparency: ""
-*fi.MediaType Glossy/Muu valokuvapaperi: ""
-*fr.Translation Manufacturer/HP: ""
-*fr.Translation ModelName/HP DeskJet Series: ""
-*fr.Translation ShortNickName/HP DeskJet Series: ""
-*fr.Translation NickName/HP DeskJet Series, 1.4: ""
-*fr.Translation PageSize/Media Size: ""
-*fr.PageSize Letter/Letter - 8.5x11in: ""
-*fr.PageSize Legal/Legal - 8.5x14in: ""
-*fr.PageSize Executive/Executive - 7.25x10.5in: ""
-*fr.PageSize Tabloid/Tabloid - 11x17in: ""
-*fr.PageSize A3/A3 - 297x420mm: ""
-*fr.PageSize A4/A4 - 210x297mm: ""
-*fr.PageSize A5/A5 - 148x210mm: ""
-*fr.PageSize B5/B5 - 182x257mm: ""
-*fr.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*fr.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*fr.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*fr.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*fr.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*fr.Translation ColorModel/Mode couleur: ""
-*fr.ColorModel Gray/Grayscale: ""
-*fr.ColorModel RGB/Couleur: ""
-*fr.ColorModel CMYK/CMYK: ""
-*fr.Translation Resolution/Resolution: ""
-*fr.Resolution 150dpi/150dpi: ""
-*fr.Resolution 300dpi/300dpi: ""
-*fr.Resolution 600dpi/600 DPI Grayscale: ""
-*fr.Translation InputSlot/Media Source: ""
-*fr.InputSlot Tray/Tray: ""
-*fr.InputSlot Manual/Manuel: ""
-*fr.InputSlot Envelope/Envelope Feed: ""
-*fr.Translation MediaType/Media Type: ""
-*fr.MediaType Plain/Papier ordinaire: ""
-*fr.MediaType Bond/Papier fort: ""
-*fr.MediaType Special/Special Paper: ""
-*fr.MediaType Transparency/Transparency: ""
-*fr.MediaType Glossy/Papier glacé: ""
-*it.Translation Manufacturer/HP: ""
-*it.Translation ModelName/HP DeskJet Series: ""
-*it.Translation ShortNickName/HP DeskJet Series: ""
-*it.Translation NickName/HP DeskJet Series, 1.4: ""
-*it.Translation PageSize/Media Size: ""
-*it.PageSize Letter/Letter - 8.5x11in: ""
-*it.PageSize Legal/Legal - 8.5x14in: ""
-*it.PageSize Executive/Executive - 7.25x10.5in: ""
-*it.PageSize Tabloid/Tabloid - 11x17in: ""
-*it.PageSize A3/A3 - 297x420mm: ""
-*it.PageSize A4/A4 - 210x297mm: ""
-*it.PageSize A5/A5 - 148x210mm: ""
-*it.PageSize B5/B5 - 182x257mm: ""
-*it.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*it.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*it.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*it.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*it.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*it.Translation ColorModel/Modo Colore: ""
-*it.ColorModel Gray/Grayscale: ""
-*it.ColorModel RGB/Colore: ""
-*it.ColorModel CMYK/CMYK: ""
-*it.Translation Resolution/Resolution: ""
-*it.Resolution 150dpi/150dpi: ""
-*it.Resolution 300dpi/300dpi: ""
-*it.Resolution 600dpi/600 DPI Grayscale: ""
-*it.Translation InputSlot/Media Source: ""
-*it.InputSlot Tray/Tray: ""
-*it.InputSlot Manual/Manuale: ""
-*it.InputSlot Envelope/Envelope Feed: ""
-*it.Translation MediaType/Media Type: ""
-*it.MediaType Plain/Carta normale: ""
-*it.MediaType Bond/Cartoncino: ""
-*it.MediaType Special/Special Paper: ""
-*it.MediaType Transparency/Trasparenza: ""
-*it.MediaType Glossy/Carta lucida: ""
-*ja.Translation Manufacturer/HP: ""
-*ja.Translation ModelName/HP DeskJet Series: ""
-*ja.Translation ShortNickName/HP DeskJet Series: ""
-*ja.Translation NickName/HP DeskJet Series, 1.4: ""
-*ja.Translation PageSize/Media Size: ""
-*ja.PageSize Letter/Letter - 8.5x11in: ""
-*ja.PageSize Legal/Legal - 8.5x14in: ""
-*ja.PageSize Executive/Executive - 7.25x10.5in: ""
-*ja.PageSize Tabloid/Tabloid - 11x17in: ""
-*ja.PageSize A3/A3 - 297x420mm: ""
-*ja.PageSize A4/A4 - 210x297mm: ""
-*ja.PageSize A5/A5 - 148x210mm: ""
-*ja.PageSize B5/B5 - 182x257mm: ""
-*ja.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*ja.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*ja.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*ja.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*ja.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*ja.Translation ColorModel/カラー モデル: ""
-*ja.ColorModel Gray/Grayscale: ""
-*ja.ColorModel RGB/カラー: ""
-*ja.ColorModel CMYK/CMYK: ""
-*ja.Translation Resolution/Resolution: ""
-*ja.Resolution 150dpi/150dpi: ""
-*ja.Resolution 300dpi/300dpi: ""
-*ja.Resolution 600dpi/600 DPI Grayscale: ""
-*ja.Translation InputSlot/Media Source: ""
-*ja.InputSlot Tray/Tray: ""
-*ja.InputSlot Manual/手差し: ""
-*ja.InputSlot Envelope/Envelope Feed: ""
-*ja.Translation MediaType/Media Type: ""
-*ja.MediaType Plain/普通紙: ""
-*ja.MediaType Bond/ボンド紙: ""
-*ja.MediaType Special/Special Paper: ""
-*ja.MediaType Transparency/OHPフィルム: ""
-*ja.MediaType Glossy/光沢紙: ""
-*ko.Translation Manufacturer/HP: ""
-*ko.Translation ModelName/HP DeskJet Series: ""
-*ko.Translation ShortNickName/HP DeskJet Series: ""
-*ko.Translation NickName/HP DeskJet Series, 1.4: ""
-*ko.Translation PageSize/Page Size: ""
-*ko.PageSize Letter/Letter - 8.5x11in: ""
-*ko.PageSize Legal/Legal - 8.5x14in: ""
-*ko.PageSize Executive/Executive - 7.25x10.5in: ""
-*ko.PageSize Tabloid/Tabloid - 11x17in: ""
-*ko.PageSize A3/A3 - 297x420mm: ""
-*ko.PageSize A4/A4 - 210x297mm: ""
-*ko.PageSize A5/A5 - 148x210mm: ""
-*ko.PageSize B5/B5 - 182x257mm: ""
-*ko.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*ko.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*ko.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*ko.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*ko.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*ko.Translation ColorModel/컬러 모델: ""
-*ko.ColorModel Gray/Grayscale: ""
-*ko.ColorModel RGB/꺼짐: ""
-*ko.ColorModel CMYK/CMYK: ""
-*ko.Translation Resolution/Resolution: ""
-*ko.Resolution 150dpi/150dpi: ""
-*ko.Resolution 300dpi/300dpi: ""
-*ko.Resolution 600dpi/600 DPI Grayscale: ""
-*ko.Translation InputSlot/용지함: ""
-*ko.InputSlot Tray/Tray: ""
-*ko.InputSlot Manual/수동: ""
-*ko.InputSlot Envelope/Envelope Feed: ""
-*ko.Translation MediaType/Media Type: ""
-*ko.MediaType Plain/일반 용지: ""
-*ko.MediaType Bond/Bond Paper: ""
-*ko.MediaType Special/Special Paper: ""
-*ko.MediaType Transparency/투명 용지: ""
-*ko.MediaType Glossy/광택지: ""
-*nl.Translation Manufacturer/HP: ""
-*nl.Translation ModelName/HP DeskJet Series: ""
-*nl.Translation ShortNickName/HP DeskJet Series: ""
-*nl.Translation NickName/HP DeskJet Series, 1.4: ""
-*nl.Translation PageSize/Media Size: ""
-*nl.PageSize Letter/Letter - 8.5x11in: ""
-*nl.PageSize Legal/Legal - 8.5x14in: ""
-*nl.PageSize Executive/Executive - 7.25x10.5in: ""
-*nl.PageSize Tabloid/Tabloid - 11x17in: ""
-*nl.PageSize A3/A3 - 297x420mm: ""
-*nl.PageSize A4/A4 - 210x297mm: ""
-*nl.PageSize A5/A5 - 148x210mm: ""
-*nl.PageSize B5/B5 - 182x257mm: ""
-*nl.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*nl.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*nl.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*nl.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*nl.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*nl.Translation ColorModel/Kleurenmodus: ""
-*nl.ColorModel Gray/Grayscale: ""
-*nl.ColorModel RGB/Kleur: ""
-*nl.ColorModel CMYK/CMYK: ""
-*nl.Translation Resolution/Resolution: ""
-*nl.Resolution 150dpi/150dpi: ""
-*nl.Resolution 300dpi/300dpi: ""
-*nl.Resolution 600dpi/600 DPI Grayscale: ""
-*nl.Translation InputSlot/Media Source: ""
-*nl.InputSlot Tray/Tray: ""
-*nl.InputSlot Manual/Handmatig: ""
-*nl.InputSlot Envelope/Envelope Feed: ""
-*nl.Translation MediaType/Media Type: ""
-*nl.MediaType Plain/Normaal papier: ""
-*nl.MediaType Bond/Briefpapier: ""
-*nl.MediaType Special/Special Paper: ""
-*nl.MediaType Transparency/Transparency: ""
-*nl.MediaType Glossy/Glanzend papier: ""
-*no.Translation Manufacturer/HP: ""
-*no.Translation ModelName/HP DeskJet Series: ""
-*no.Translation ShortNickName/HP DeskJet Series: ""
-*no.Translation NickName/HP DeskJet Series, 1.4: ""
-*no.Translation PageSize/Media Size: ""
-*no.PageSize Letter/Letter - 8.5x11in: ""
-*no.PageSize Legal/Legal - 8.5x14in: ""
-*no.PageSize Executive/Executive - 7.25x10.5in: ""
-*no.PageSize Tabloid/Tabloid - 11x17in: ""
-*no.PageSize A3/A3 - 297x420mm: ""
-*no.PageSize A4/A4 - 210x297mm: ""
-*no.PageSize A5/A5 - 148x210mm: ""
-*no.PageSize B5/B5 - 182x257mm: ""
-*no.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*no.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*no.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*no.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*no.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*no.Translation ColorModel/Fargemodus: ""
-*no.ColorModel Gray/Grayscale: ""
-*no.ColorModel RGB/Farge: ""
-*no.ColorModel CMYK/CMYK: ""
-*no.Translation Resolution/Resolution: ""
-*no.Resolution 150dpi/150dpi: ""
-*no.Resolution 300dpi/300dpi: ""
-*no.Resolution 600dpi/600 DPI Grayscale: ""
-*no.Translation InputSlot/Media Source: ""
-*no.InputSlot Tray/Tray: ""
-*no.InputSlot Manual/Handmatig: ""
-*no.InputSlot Envelope/Envelope Feed: ""
-*no.Translation MediaType/Media Type: ""
-*no.MediaType Plain/Vanlig: ""
-*no.MediaType Bond/Bond Paper: ""
-*no.MediaType Special/Special Paper: ""
-*no.MediaType Transparency/Transparency: ""
-*no.MediaType Glossy/Glanset: ""
-*pt.Translation Manufacturer/HP: ""
-*pt.Translation ModelName/HP DeskJet Series: ""
-*pt.Translation ShortNickName/HP DeskJet Series: ""
-*pt.Translation NickName/HP DeskJet Series, 1.4: ""
-*pt.Translation PageSize/Media Size: ""
-*pt.PageSize Letter/Letter - 8.5x11in: ""
-*pt.PageSize Legal/Legal - 8.5x14in: ""
-*pt.PageSize Executive/Executive - 7.25x10.5in: ""
-*pt.PageSize Tabloid/Tabloid - 11x17in: ""
-*pt.PageSize A3/A3 - 297x420mm: ""
-*pt.PageSize A4/A4 - 210x297mm: ""
-*pt.PageSize A5/A5 - 148x210mm: ""
-*pt.PageSize B5/B5 - 182x257mm: ""
-*pt.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*pt.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*pt.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*pt.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*pt.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*pt.Translation ColorModel/Modo Cor: ""
-*pt.ColorModel Gray/Grayscale: ""
-*pt.ColorModel RGB/Inativo: ""
-*pt.ColorModel CMYK/CMYK: ""
-*pt.Translation Resolution/Resolution: ""
-*pt.Resolution 150dpi/150dpi: ""
-*pt.Resolution 300dpi/300dpi: ""
-*pt.Resolution 600dpi/600 DPI Grayscale: ""
-*pt.Translation InputSlot/Media Source: ""
-*pt.InputSlot Tray/Tray: ""
-*pt.InputSlot Manual/Alimentação Manual: ""
-*pt.InputSlot Envelope/Envelope Feed: ""
-*pt.Translation MediaType/Media Type: ""
-*pt.MediaType Plain/Papel normal: ""
-*pt.MediaType Bond/Papel bond: ""
-*pt.MediaType Special/Special Paper: ""
-*pt.MediaType Transparency/Transparência: ""
-*pt.MediaType Glossy/Papel acetinado: ""
-*pt_BR.Translation Manufacturer/HP: ""
-*pt_BR.Translation ModelName/HP DeskJet Series: ""
-*pt_BR.Translation ShortNickName/HP DeskJet Series: ""
-*pt_BR.Translation NickName/HP DeskJet Series, 1.4: ""
-*pt_BR.Translation PageSize/Media Size: ""
-*pt_BR.PageSize Letter/Letter - 8.5x11in: ""
-*pt_BR.PageSize Legal/Legal - 8.5x14in: ""
-*pt_BR.PageSize Executive/Executive - 7.25x10.5in: ""
-*pt_BR.PageSize Tabloid/Tabloid - 11x17in: ""
-*pt_BR.PageSize A3/A3 - 297x420mm: ""
-*pt_BR.PageSize A4/A4 - 210x297mm: ""
-*pt_BR.PageSize A5/A5 - 148x210mm: ""
-*pt_BR.PageSize B5/B5 - 182x257mm: ""
-*pt_BR.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*pt_BR.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*pt_BR.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*pt_BR.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*pt_BR.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*pt_BR.Translation ColorModel/Modo Cor: ""
-*pt_BR.ColorModel Gray/Grayscale: ""
-*pt_BR.ColorModel RGB/Inativo: ""
-*pt_BR.ColorModel CMYK/CMYK: ""
-*pt_BR.Translation Resolution/Resolution: ""
-*pt_BR.Resolution 150dpi/150dpi: ""
-*pt_BR.Resolution 300dpi/300dpi: ""
-*pt_BR.Resolution 600dpi/600 DPI Grayscale: ""
-*pt_BR.Translation InputSlot/Media Source: ""
-*pt_BR.InputSlot Tray/Tray: ""
-*pt_BR.InputSlot Manual/Alimentação Manual: ""
-*pt_BR.InputSlot Envelope/Envelope Feed: ""
-*pt_BR.Translation MediaType/Media Type: ""
-*pt_BR.MediaType Plain/Papel normal: ""
-*pt_BR.MediaType Bond/Papel bond: ""
-*pt_BR.MediaType Special/Special Paper: ""
-*pt_BR.MediaType Transparency/Transparência: ""
-*pt_BR.MediaType Glossy/Papel acetinado: ""
-*sv.Translation Manufacturer/HP: ""
-*sv.Translation ModelName/HP DeskJet Series: ""
-*sv.Translation ShortNickName/HP DeskJet Series: ""
-*sv.Translation NickName/HP DeskJet Series, 1.4: ""
-*sv.Translation PageSize/Media Size: ""
-*sv.PageSize Letter/Letter - 8.5x11in: ""
-*sv.PageSize Legal/Legal - 8.5x14in: ""
-*sv.PageSize Executive/Executive - 7.25x10.5in: ""
-*sv.PageSize Tabloid/Tabloid - 11x17in: ""
-*sv.PageSize A3/A3 - 297x420mm: ""
-*sv.PageSize A4/A4 - 210x297mm: ""
-*sv.PageSize A5/A5 - 148x210mm: ""
-*sv.PageSize B5/B5 - 182x257mm: ""
-*sv.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*sv.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*sv.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*sv.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*sv.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*sv.Translation ColorModel/Färginställningar: ""
-*sv.ColorModel Gray/Grayscale: ""
-*sv.ColorModel RGB/Färgat: ""
-*sv.ColorModel CMYK/CMYK: ""
-*sv.Translation Resolution/Resolution: ""
-*sv.Resolution 150dpi/150dpi: ""
-*sv.Resolution 300dpi/300dpi: ""
-*sv.Resolution 600dpi/600 DPI Grayscale: ""
-*sv.Translation InputSlot/Media Source: ""
-*sv.InputSlot Tray/Tray: ""
-*sv.InputSlot Manual/Manuell: ""
-*sv.InputSlot Envelope/Envelope Feed: ""
-*sv.Translation MediaType/Media Type: ""
-*sv.MediaType Plain/Vanligt papper: ""
-*sv.MediaType Bond/Strukturpapper: ""
-*sv.MediaType Special/Special Paper: ""
-*sv.MediaType Transparency/Transparency: ""
-*sv.MediaType Glossy/Glättat papper: ""
-*zh.Translation Manufacturer/HP: ""
-*zh.Translation ModelName/HP DeskJet Series: ""
-*zh.Translation ShortNickName/HP DeskJet Series: ""
-*zh.Translation NickName/HP DeskJet Series, 1.4: ""
-*zh.Translation PageSize/Page Size: ""
-*zh.PageSize Letter/Letter - 8.5x11in: ""
-*zh.PageSize Legal/Legal - 8.5x14in: ""
-*zh.PageSize Executive/Executive - 7.25x10.5in: ""
-*zh.PageSize Tabloid/Tabloid - 11x17in: ""
-*zh.PageSize A3/A3 - 297x420mm: ""
-*zh.PageSize A4/A4 - 210x297mm: ""
-*zh.PageSize A5/A5 - 148x210mm: ""
-*zh.PageSize B5/B5 - 182x257mm: ""
-*zh.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*zh.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*zh.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*zh.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*zh.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*zh.Translation ColorModel/色彩模式: ""
-*zh.ColorModel Gray/Grayscale: ""
-*zh.ColorModel RGB/Off: ""
-*zh.ColorModel CMYK/CMYK: ""
-*zh.Translation Resolution/Resolution: ""
-*zh.Resolution 150dpi/150dpi: ""
-*zh.Resolution 300dpi/300dpi: ""
-*zh.Resolution 600dpi/600 DPI Grayscale: ""
-*zh.Translation InputSlot/Paper Source: ""
-*zh.InputSlot Tray/Tray: ""
-*zh.InputSlot Manual/手动: ""
-*zh.InputSlot Envelope/Envelope Feed: ""
-*zh.Translation MediaType/Media Type: ""
-*zh.MediaType Plain/普通纸: ""
-*zh.MediaType Bond/铜板纸: ""
-*zh.MediaType Special/Special Paper: ""
-*zh.MediaType Transparency/Transparency: ""
-*zh.MediaType Glossy/光面纸: ""
-*zh_TW.Translation Manufacturer/HP: ""
-*zh_TW.Translation ModelName/HP DeskJet Series: ""
-*zh_TW.Translation ShortNickName/HP DeskJet Series: ""
-*zh_TW.Translation NickName/HP DeskJet Series, 1.4: ""
-*zh_TW.Translation PageSize/Page Size: ""
-*zh_TW.PageSize Letter/Letter - 8.5x11in: ""
-*zh_TW.PageSize Legal/Legal - 8.5x14in: ""
-*zh_TW.PageSize Executive/Executive - 7.25x10.5in: ""
-*zh_TW.PageSize Tabloid/Tabloid - 11x17in: ""
-*zh_TW.PageSize A3/A3 - 297x420mm: ""
-*zh_TW.PageSize A4/A4 - 210x297mm: ""
-*zh_TW.PageSize A5/A5 - 148x210mm: ""
-*zh_TW.PageSize B5/B5 - 182x257mm: ""
-*zh_TW.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*zh_TW.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*zh_TW.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*zh_TW.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*zh_TW.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*zh_TW.Translation ColorModel/用灰色列印彩色: ""
-*zh_TW.ColorModel Gray/Grayscale: ""
-*zh_TW.ColorModel RGB/關: ""
-*zh_TW.ColorModel CMYK/CMYK: ""
-*zh_TW.Translation Resolution/Resolution: ""
-*zh_TW.Resolution 150dpi/150dpi: ""
-*zh_TW.Resolution 300dpi/300dpi: ""
-*zh_TW.Resolution 600dpi/600 DPI Grayscale: ""
-*zh_TW.Translation InputSlot/紙張來源: ""
-*zh_TW.InputSlot Tray/Tray: ""
-*zh_TW.InputSlot Manual/手動: ""
-*zh_TW.InputSlot Envelope/Envelope Feed: ""
-*zh_TW.Translation MediaType/Media Type: ""
-*zh_TW.MediaType Plain/普通紙: ""
-*zh_TW.MediaType Bond/Bond Paper: ""
-*zh_TW.MediaType Special/Special Paper: ""
-*zh_TW.MediaType Transparency/投影片: ""
-*zh_TW.MediaType Glossy/光面紙: ""
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(1.05)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
-*Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
-*Font Bookman-Demi: Standard "(1.05)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
-*Font Bookman-Light: Standard "(1.05)" Standard ROM
-*Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
-*Font Courier: Standard "(1.05)" Standard ROM
-*Font Courier-Bold: Standard "(1.05)" Standard ROM
-*Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Courier-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica: Standard "(1.05)" Standard ROM
-*Font Helvetica-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
-*Font Palatino-Bold: Standard "(1.05)" Standard ROM
-*Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Palatino-Italic: Standard "(1.05)" Standard ROM
-*Font Palatino-Roman: Standard "(1.05)" Standard ROM
-*Font Symbol: Special "(001.005)" Special ROM
-*Font Times-Bold: Standard "(1.05)" Standard ROM
-*Font Times-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Times-Italic: Standard "(1.05)" Standard ROM
-*Font Times-Roman: Standard "(1.05)" Standard ROM
-*Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
-*Font ZapfDingbats: Special "(001.005)" Special ROM
-*% End of DESKJET.PPD, 32862 bytes.
diff --git a/ppd/dymo.ppd b/ppd/dymo.ppd
deleted file mode 100644 (file)
index 378c22d..0000000
+++ /dev/null
@@ -1,481 +0,0 @@
-*PPD-Adobe: "4.3"
-*% PPD file for Label Printer with CUPS.
-*% Created by the CUPS PPD Compiler v1.2.4.
-*% Copyright 2007 by Apple Inc.
-*% Copyright 1997-2007 by Easy Software Products.
-*% 
-*% These coded instructions, statements, and computer programs are the
-*% property of Apple Inc. and are protected by Federal copyright
-*% law.  Distribution and use rights are outlined in the file "LICENSE.txt"
-*% which should have been included with this file.  If this file is
-*% file is missing or damaged, see the license at "http://www.cups.org/".
-*FormatVersion: "4.3"
-*FileVersion: "1.4"
-*LanguageVersion: English
-*LanguageEncoding: ISOLatin1
-*PCFileName: "DYMO.PPD"
-*Product: "(ESP Ghostscript)"
-*Product: "(GPL Ghostscript)"
-*Manufacturer: "Dymo"
-*ModelName: "Dymo Label Printer"
-*ShortNickName: "Dymo Label Printer"
-*NickName: "Dymo Label Printer, 1.4"
-*PSVersion: "(3010.000) 81504"
-*PSVersion: "(3010.000) 860"
-*LanguageLevel: "3"
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*FileSystem: False
-*Throughput: "8"
-*LandscapeOrientation: Plus90
-*TTRasterizer: Type42
-*% Driver-defined attributes...
-*cupsVersion: 1.4
-*cupsModelNumber: 0
-*cupsManualCopies: False
-*cupsFilter: "application/vnd.cups-raster 50 rastertolabel"
-*cupsLanguages: "en da de es fi fr it ja ko nl no pt pt_BR sv zh zh_TW"
-*OpenUI *PageSize/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageSize
-*DefaultPageSize: w81h252
-*PageSize w81h252/Address - 1 1/8x3 1/2in: "<</PageSize[81 252]/ImagingBBox null>>setpagedevice"
-*PageSize w101h252/Large Address - 1 4/10x3 1/2in: "<</PageSize[101 252]/ImagingBBox null>>setpagedevice"
-*PageSize w54h144/Return Address - 3/4x2in: "<</PageSize[54 144]/ImagingBBox null>>setpagedevice"
-*PageSize w167h288/Shipping Address - 2 5/16x4in: "<</PageSize[167 288]/ImagingBBox null>>setpagedevice"
-*PageSize w162h540/Internet Postage 2-Part - 2 1/4x7 1/2in: "<</PageSize[162 540]/ImagingBBox null>>setpagedevice"
-*PageSize w162h504/Internet Postage 3-Part - 2 1/4x7in: "<</PageSize[162 504]/ImagingBBox null>>setpagedevice"
-*PageSize w41h248/File Folder - 9/16x3 7/16in: "<</PageSize[41 248]/ImagingBBox null>>setpagedevice"
-*PageSize w41h144/Hanging Folder - 9/16x2in: "<</PageSize[41 144]/ImagingBBox null>>setpagedevice"
-*PageSize w153h198/3.5" Disk - 2 1/8x2 3/4in: "<</PageSize[153 198]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageSize
-*OpenUI *PageRegion/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageRegion
-*DefaultPageRegion: w81h252
-*PageRegion w81h252/Address - 1 1/8x3 1/2in: "<</PageSize[81 252]/ImagingBBox null>>setpagedevice"
-*PageRegion w101h252/Large Address - 1 4/10x3 1/2in: "<</PageSize[101 252]/ImagingBBox null>>setpagedevice"
-*PageRegion w54h144/Return Address - 3/4x2in: "<</PageSize[54 144]/ImagingBBox null>>setpagedevice"
-*PageRegion w167h288/Shipping Address - 2 5/16x4in: "<</PageSize[167 288]/ImagingBBox null>>setpagedevice"
-*PageRegion w162h540/Internet Postage 2-Part - 2 1/4x7 1/2in: "<</PageSize[162 540]/ImagingBBox null>>setpagedevice"
-*PageRegion w162h504/Internet Postage 3-Part - 2 1/4x7in: "<</PageSize[162 504]/ImagingBBox null>>setpagedevice"
-*PageRegion w41h248/File Folder - 9/16x3 7/16in: "<</PageSize[41 248]/ImagingBBox null>>setpagedevice"
-*PageRegion w41h144/Hanging Folder - 9/16x2in: "<</PageSize[41 144]/ImagingBBox null>>setpagedevice"
-*PageRegion w153h198/3.5" Disk - 2 1/8x2 3/4in: "<</PageSize[153 198]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageRegion
-*DefaultImageableArea: w81h252
-*ImageableArea w81h252/Address - 1 1/8x3 1/2in: "2.00 14.90 79.00 237.10"
-*ImageableArea w101h252/Large Address - 1 4/10x3 1/2in: "2.00 14.90 99.00 237.10"
-*ImageableArea w54h144/Return Address - 3/4x2in: "2.00 14.90 52.00 129.10"
-*ImageableArea w167h288/Shipping Address - 2 5/16x4in: "2.00 14.90 165.00 273.10"
-*ImageableArea w162h540/Internet Postage 2-Part - 2 1/4x7 1/2in: "2.00 14.90 160.00 525.10"
-*ImageableArea w162h504/Internet Postage 3-Part - 2 1/4x7in: "2.00 14.90 160.00 489.10"
-*ImageableArea w41h248/File Folder - 9/16x3 7/16in: "2.00 14.90 39.00 233.10"
-*ImageableArea w41h144/Hanging Folder - 9/16x2in: "2.00 14.90 39.00 129.10"
-*ImageableArea w153h198/3.5" Disk - 2 1/8x2 3/4in: "2.00 14.90 151.00 183.10"
-*DefaultPaperDimension: w81h252
-*PaperDimension w81h252/Address - 1 1/8x3 1/2in: "81.00 252.00"
-*PaperDimension w101h252/Large Address - 1 4/10x3 1/2in: "101.00 252.00"
-*PaperDimension w54h144/Return Address - 3/4x2in: "54.00 144.00"
-*PaperDimension w167h288/Shipping Address - 2 5/16x4in: "167.00 288.00"
-*PaperDimension w162h540/Internet Postage 2-Part - 2 1/4x7 1/2in: "162.00 540.00"
-*PaperDimension w162h504/Internet Postage 3-Part - 2 1/4x7in: "162.00 504.00"
-*PaperDimension w41h248/File Folder - 9/16x3 7/16in: "41.00 248.00"
-*PaperDimension w41h144/Hanging Folder - 9/16x2in: "41.00 144.00"
-*PaperDimension w153h198/3.5" Disk - 2 1/8x2 3/4in: "153.00 198.00"
-*RequiresPageRegion All: True
-*OpenUI *Resolution: PickOne
-*OrderDependency: 10.0 AnySetup *Resolution
-*DefaultResolution: 300dpi
-*Resolution 136dpi: "<</HWResolution[136 136]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*Resolution 203dpi: "<</HWResolution[203 203]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*Resolution 300dpi: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*CloseUI: *Resolution
-*OpenUI *cupsDarkness/Darkness: PickOne
-*OrderDependency: 10.0 AnySetup *cupsDarkness
-*DefaultcupsDarkness: Normal
-*cupsDarkness Light: "<</cupsCompression 0>>setpagedevice"
-*cupsDarkness Medium: "<</cupsCompression 1>>setpagedevice"
-*cupsDarkness Normal: "<</cupsCompression 2>>setpagedevice"
-*cupsDarkness Dark: "<</cupsCompression 3>>setpagedevice"
-*CloseUI: *cupsDarkness
-*da.Translation Manufacturer/Dymo: ""
-*da.Translation ModelName/Dymo Label Printer: ""
-*da.Translation ShortNickName/Dymo Label Printer: ""
-*da.Translation NickName/Dymo Label Printer, 1.4: ""
-*da.Translation PageSize/Media Size: ""
-*da.PageSize w81h252/Address - 1 1/8x3 1/2in: ""
-*da.PageSize w101h252/Large Address - 1 4/10x3 1/2in: ""
-*da.PageSize w54h144/Return Address - 3/4x2in: ""
-*da.PageSize w167h288/Shipping Address - 2 5/16x4in: ""
-*da.PageSize w162h540/Internet Postage 2-Part - 2 1/4x7 1/2in: ""
-*da.PageSize w162h504/Internet Postage 3-Part - 2 1/4x7in: ""
-*da.PageSize w41h248/File Folder - 9/16x3 7/16in: ""
-*da.PageSize w41h144/Hanging Folder - 9/16x2in: ""
-*da.PageSize w153h198/3.5" Disk - 2 1/8x2 3/4in: ""
-*da.Translation Resolution/Resolution: ""
-*da.Resolution 136dpi/136dpi: ""
-*da.Resolution 203dpi/203dpi: ""
-*da.Resolution 300dpi/300dpi: ""
-*da.Translation cupsDarkness/Darkness: ""
-*da.cupsDarkness Light/Light: ""
-*da.cupsDarkness Medium/Medium: ""
-*da.cupsDarkness Normal/Normal: ""
-*da.cupsDarkness Dark/Dark: ""
-*de.Translation Manufacturer/Dymo: ""
-*de.Translation ModelName/Dymo Label Printer: ""
-*de.Translation ShortNickName/Dymo Label Printer: ""
-*de.Translation NickName/Dymo Label Printer, 1.4: ""
-*de.Translation PageSize/Media Size: ""
-*de.PageSize w81h252/Address - 1 1/8x3 1/2in: ""
-*de.PageSize w101h252/Large Address - 1 4/10x3 1/2in: ""
-*de.PageSize w54h144/Return Address - 3/4x2in: ""
-*de.PageSize w167h288/Shipping Address - 2 5/16x4in: ""
-*de.PageSize w162h540/Internet Postage 2-Part - 2 1/4x7 1/2in: ""
-*de.PageSize w162h504/Internet Postage 3-Part - 2 1/4x7in: ""
-*de.PageSize w41h248/File Folder - 9/16x3 7/16in: ""
-*de.PageSize w41h144/Hanging Folder - 9/16x2in: ""
-*de.PageSize w153h198/3.5" Disk - 2 1/8x2 3/4in: ""
-*de.Translation Resolution/Resolution: ""
-*de.Resolution 136dpi/136dpi: ""
-*de.Resolution 203dpi/203dpi: ""
-*de.Resolution 300dpi/300dpi: ""
-*de.Translation cupsDarkness/Darkness: ""
-*de.cupsDarkness Light/Light: ""
-*de.cupsDarkness Medium/Medium: ""
-*de.cupsDarkness Normal/Normal: ""
-*de.cupsDarkness Dark/Dark: ""
-*es.Translation Manufacturer/Dymo: ""
-*es.Translation ModelName/Dymo Label Printer: ""
-*es.Translation ShortNickName/Dymo Label Printer: ""
-*es.Translation NickName/Dymo Label Printer, 1.4: ""
-*es.Translation PageSize/Media Size: ""
-*es.PageSize w81h252/Address - 1 1/8x3 1/2in: ""
-*es.PageSize w101h252/Large Address - 1 4/10x3 1/2in: ""
-*es.PageSize w54h144/Return Address - 3/4x2in: ""
-*es.PageSize w167h288/Shipping Address - 2 5/16x4in: ""
-*es.PageSize w162h540/Internet Postage 2-Part - 2 1/4x7 1/2in: ""
-*es.PageSize w162h504/Internet Postage 3-Part - 2 1/4x7in: ""
-*es.PageSize w41h248/File Folder - 9/16x3 7/16in: ""
-*es.PageSize w41h144/Hanging Folder - 9/16x2in: ""
-*es.PageSize w153h198/3.5" Disk - 2 1/8x2 3/4in: ""
-*es.Translation Resolution/Resolution: ""
-*es.Resolution 136dpi/136dpi: ""
-*es.Resolution 203dpi/203dpi: ""
-*es.Resolution 300dpi/300dpi: ""
-*es.Translation cupsDarkness/Darkness: ""
-*es.cupsDarkness Light/Light: ""
-*es.cupsDarkness Medium/Medium: ""
-*es.cupsDarkness Normal/Normal: ""
-*es.cupsDarkness Dark/Dark: ""
-*fi.Translation Manufacturer/Dymo: ""
-*fi.Translation ModelName/Dymo Label Printer: ""
-*fi.Translation ShortNickName/Dymo Label Printer: ""
-*fi.Translation NickName/Dymo Label Printer, 1.4: ""
-*fi.Translation PageSize/Media Size: ""
-*fi.PageSize w81h252/Address - 1 1/8x3 1/2in: ""
-*fi.PageSize w101h252/Large Address - 1 4/10x3 1/2in: ""
-*fi.PageSize w54h144/Return Address - 3/4x2in: ""
-*fi.PageSize w167h288/Shipping Address - 2 5/16x4in: ""
-*fi.PageSize w162h540/Internet Postage 2-Part - 2 1/4x7 1/2in: ""
-*fi.PageSize w162h504/Internet Postage 3-Part - 2 1/4x7in: ""
-*fi.PageSize w41h248/File Folder - 9/16x3 7/16in: ""
-*fi.PageSize w41h144/Hanging Folder - 9/16x2in: ""
-*fi.PageSize w153h198/3.5" Disk - 2 1/8x2 3/4in: ""
-*fi.Translation Resolution/Resolution: ""
-*fi.Resolution 136dpi/136dpi: ""
-*fi.Resolution 203dpi/203dpi: ""
-*fi.Resolution 300dpi/300dpi: ""
-*fi.Translation cupsDarkness/Darkness: ""
-*fi.cupsDarkness Light/Light: ""
-*fi.cupsDarkness Medium/Medium: ""
-*fi.cupsDarkness Normal/Normal: ""
-*fi.cupsDarkness Dark/Dark: ""
-*fr.Translation Manufacturer/Dymo: ""
-*fr.Translation ModelName/Dymo Label Printer: ""
-*fr.Translation ShortNickName/Dymo Label Printer: ""
-*fr.Translation NickName/Dymo Label Printer, 1.4: ""
-*fr.Translation PageSize/Media Size: ""
-*fr.PageSize w81h252/Address - 1 1/8x3 1/2in: ""
-*fr.PageSize w101h252/Large Address - 1 4/10x3 1/2in: ""
-*fr.PageSize w54h144/Return Address - 3/4x2in: ""
-*fr.PageSize w167h288/Shipping Address - 2 5/16x4in: ""
-*fr.PageSize w162h540/Internet Postage 2-Part - 2 1/4x7 1/2in: ""
-*fr.PageSize w162h504/Internet Postage 3-Part - 2 1/4x7in: ""
-*fr.PageSize w41h248/File Folder - 9/16x3 7/16in: ""
-*fr.PageSize w41h144/Hanging Folder - 9/16x2in: ""
-*fr.PageSize w153h198/3.5" Disk - 2 1/8x2 3/4in: ""
-*fr.Translation Resolution/Resolution: ""
-*fr.Resolution 136dpi/136dpi: ""
-*fr.Resolution 203dpi/203dpi: ""
-*fr.Resolution 300dpi/300dpi: ""
-*fr.Translation cupsDarkness/Darkness: ""
-*fr.cupsDarkness Light/Light: ""
-*fr.cupsDarkness Medium/Medium: ""
-*fr.cupsDarkness Normal/Normal: ""
-*fr.cupsDarkness Dark/Dark: ""
-*it.Translation Manufacturer/Dymo: ""
-*it.Translation ModelName/Dymo Label Printer: ""
-*it.Translation ShortNickName/Dymo Label Printer: ""
-*it.Translation NickName/Dymo Label Printer, 1.4: ""
-*it.Translation PageSize/Media Size: ""
-*it.PageSize w81h252/Address - 1 1/8x3 1/2in: ""
-*it.PageSize w101h252/Large Address - 1 4/10x3 1/2in: ""
-*it.PageSize w54h144/Return Address - 3/4x2in: ""
-*it.PageSize w167h288/Shipping Address - 2 5/16x4in: ""
-*it.PageSize w162h540/Internet Postage 2-Part - 2 1/4x7 1/2in: ""
-*it.PageSize w162h504/Internet Postage 3-Part - 2 1/4x7in: ""
-*it.PageSize w41h248/File Folder - 9/16x3 7/16in: ""
-*it.PageSize w41h144/Hanging Folder - 9/16x2in: ""
-*it.PageSize w153h198/3.5" Disk - 2 1/8x2 3/4in: ""
-*it.Translation Resolution/Resolution: ""
-*it.Resolution 136dpi/136dpi: ""
-*it.Resolution 203dpi/203dpi: ""
-*it.Resolution 300dpi/300dpi: ""
-*it.Translation cupsDarkness/Darkness: ""
-*it.cupsDarkness Light/Light: ""
-*it.cupsDarkness Medium/Medium: ""
-*it.cupsDarkness Normal/Normal: ""
-*it.cupsDarkness Dark/Dark: ""
-*ja.Translation Manufacturer/Dymo: ""
-*ja.Translation ModelName/Dymo Label Printer: ""
-*ja.Translation ShortNickName/Dymo Label Printer: ""
-*ja.Translation NickName/Dymo Label Printer, 1.4: ""
-*ja.Translation PageSize/Media Size: ""
-*ja.PageSize w81h252/Address - 1 1/8x3 1/2in: ""
-*ja.PageSize w101h252/Large Address - 1 4/10x3 1/2in: ""
-*ja.PageSize w54h144/Return Address - 3/4x2in: ""
-*ja.PageSize w167h288/Shipping Address - 2 5/16x4in: ""
-*ja.PageSize w162h540/Internet Postage 2-Part - 2 1/4x7 1/2in: ""
-*ja.PageSize w162h504/Internet Postage 3-Part - 2 1/4x7in: ""
-*ja.PageSize w41h248/File Folder - 9/16x3 7/16in: ""
-*ja.PageSize w41h144/Hanging Folder - 9/16x2in: ""
-*ja.PageSize w153h198/3.5" Disk - 2 1/8x2 3/4in: ""
-*ja.Translation Resolution/Resolution: ""
-*ja.Resolution 136dpi/136dpi: ""
-*ja.Resolution 203dpi/203dpi: ""
-*ja.Resolution 300dpi/300dpi: ""
-*ja.Translation cupsDarkness/Darkness: ""
-*ja.cupsDarkness Light/Light: ""
-*ja.cupsDarkness Medium/Medium: ""
-*ja.cupsDarkness Normal/Normal: ""
-*ja.cupsDarkness Dark/Dark: ""
-*ko.Translation Manufacturer/Dymo: ""
-*ko.Translation ModelName/Dymo Label Printer: ""
-*ko.Translation ShortNickName/Dymo Label Printer: ""
-*ko.Translation NickName/Dymo Label Printer, 1.4: ""
-*ko.Translation PageSize/Page Size: ""
-*ko.PageSize w81h252/Address - 1 1/8x3 1/2in: ""
-*ko.PageSize w101h252/Large Address - 1 4/10x3 1/2in: ""
-*ko.PageSize w54h144/Return Address - 3/4x2in: ""
-*ko.PageSize w167h288/Shipping Address - 2 5/16x4in: ""
-*ko.PageSize w162h540/Internet Postage 2-Part - 2 1/4x7 1/2in: ""
-*ko.PageSize w162h504/Internet Postage 3-Part - 2 1/4x7in: ""
-*ko.PageSize w41h248/File Folder - 9/16x3 7/16in: ""
-*ko.PageSize w41h144/Hanging Folder - 9/16x2in: ""
-*ko.PageSize w153h198/3.5" Disk - 2 1/8x2 3/4in: ""
-*ko.Translation Resolution/Resolution: ""
-*ko.Resolution 136dpi/136dpi: ""
-*ko.Resolution 203dpi/203dpi: ""
-*ko.Resolution 300dpi/300dpi: ""
-*ko.Translation cupsDarkness/Darkness: ""
-*ko.cupsDarkness Light/Light: ""
-*ko.cupsDarkness Medium/Medium: ""
-*ko.cupsDarkness Normal/Normal: ""
-*ko.cupsDarkness Dark/Dark: ""
-*nl.Translation Manufacturer/Dymo: ""
-*nl.Translation ModelName/Dymo Label Printer: ""
-*nl.Translation ShortNickName/Dymo Label Printer: ""
-*nl.Translation NickName/Dymo Label Printer, 1.4: ""
-*nl.Translation PageSize/Media Size: ""
-*nl.PageSize w81h252/Address - 1 1/8x3 1/2in: ""
-*nl.PageSize w101h252/Large Address - 1 4/10x3 1/2in: ""
-*nl.PageSize w54h144/Return Address - 3/4x2in: ""
-*nl.PageSize w167h288/Shipping Address - 2 5/16x4in: ""
-*nl.PageSize w162h540/Internet Postage 2-Part - 2 1/4x7 1/2in: ""
-*nl.PageSize w162h504/Internet Postage 3-Part - 2 1/4x7in: ""
-*nl.PageSize w41h248/File Folder - 9/16x3 7/16in: ""
-*nl.PageSize w41h144/Hanging Folder - 9/16x2in: ""
-*nl.PageSize w153h198/3.5" Disk - 2 1/8x2 3/4in: ""
-*nl.Translation Resolution/Resolution: ""
-*nl.Resolution 136dpi/136dpi: ""
-*nl.Resolution 203dpi/203dpi: ""
-*nl.Resolution 300dpi/300dpi: ""
-*nl.Translation cupsDarkness/Darkness: ""
-*nl.cupsDarkness Light/Light: ""
-*nl.cupsDarkness Medium/Medium: ""
-*nl.cupsDarkness Normal/Normal: ""
-*nl.cupsDarkness Dark/Dark: ""
-*no.Translation Manufacturer/Dymo: ""
-*no.Translation ModelName/Dymo Label Printer: ""
-*no.Translation ShortNickName/Dymo Label Printer: ""
-*no.Translation NickName/Dymo Label Printer, 1.4: ""
-*no.Translation PageSize/Media Size: ""
-*no.PageSize w81h252/Address - 1 1/8x3 1/2in: ""
-*no.PageSize w101h252/Large Address - 1 4/10x3 1/2in: ""
-*no.PageSize w54h144/Return Address - 3/4x2in: ""
-*no.PageSize w167h288/Shipping Address - 2 5/16x4in: ""
-*no.PageSize w162h540/Internet Postage 2-Part - 2 1/4x7 1/2in: ""
-*no.PageSize w162h504/Internet Postage 3-Part - 2 1/4x7in: ""
-*no.PageSize w41h248/File Folder - 9/16x3 7/16in: ""
-*no.PageSize w41h144/Hanging Folder - 9/16x2in: ""
-*no.PageSize w153h198/3.5" Disk - 2 1/8x2 3/4in: ""
-*no.Translation Resolution/Resolution: ""
-*no.Resolution 136dpi/136dpi: ""
-*no.Resolution 203dpi/203dpi: ""
-*no.Resolution 300dpi/300dpi: ""
-*no.Translation cupsDarkness/Darkness: ""
-*no.cupsDarkness Light/Light: ""
-*no.cupsDarkness Medium/Medium: ""
-*no.cupsDarkness Normal/Normal: ""
-*no.cupsDarkness Dark/Dark: ""
-*pt.Translation Manufacturer/Dymo: ""
-*pt.Translation ModelName/Dymo Label Printer: ""
-*pt.Translation ShortNickName/Dymo Label Printer: ""
-*pt.Translation NickName/Dymo Label Printer, 1.4: ""
-*pt.Translation PageSize/Media Size: ""
-*pt.PageSize w81h252/Address - 1 1/8x3 1/2in: ""
-*pt.PageSize w101h252/Large Address - 1 4/10x3 1/2in: ""
-*pt.PageSize w54h144/Return Address - 3/4x2in: ""
-*pt.PageSize w167h288/Shipping Address - 2 5/16x4in: ""
-*pt.PageSize w162h540/Internet Postage 2-Part - 2 1/4x7 1/2in: ""
-*pt.PageSize w162h504/Internet Postage 3-Part - 2 1/4x7in: ""
-*pt.PageSize w41h248/File Folder - 9/16x3 7/16in: ""
-*pt.PageSize w41h144/Hanging Folder - 9/16x2in: ""
-*pt.PageSize w153h198/3.5" Disk - 2 1/8x2 3/4in: ""
-*pt.Translation Resolution/Resolution: ""
-*pt.Resolution 136dpi/136dpi: ""
-*pt.Resolution 203dpi/203dpi: ""
-*pt.Resolution 300dpi/300dpi: ""
-*pt.Translation cupsDarkness/Darkness: ""
-*pt.cupsDarkness Light/Light: ""
-*pt.cupsDarkness Medium/Medium: ""
-*pt.cupsDarkness Normal/Normal: ""
-*pt.cupsDarkness Dark/Dark: ""
-*pt_BR.Translation Manufacturer/Dymo: ""
-*pt_BR.Translation ModelName/Dymo Label Printer: ""
-*pt_BR.Translation ShortNickName/Dymo Label Printer: ""
-*pt_BR.Translation NickName/Dymo Label Printer, 1.4: ""
-*pt_BR.Translation PageSize/Media Size: ""
-*pt_BR.PageSize w81h252/Address - 1 1/8x3 1/2in: ""
-*pt_BR.PageSize w101h252/Large Address - 1 4/10x3 1/2in: ""
-*pt_BR.PageSize w54h144/Return Address - 3/4x2in: ""
-*pt_BR.PageSize w167h288/Shipping Address - 2 5/16x4in: ""
-*pt_BR.PageSize w162h540/Internet Postage 2-Part - 2 1/4x7 1/2in: ""
-*pt_BR.PageSize w162h504/Internet Postage 3-Part - 2 1/4x7in: ""
-*pt_BR.PageSize w41h248/File Folder - 9/16x3 7/16in: ""
-*pt_BR.PageSize w41h144/Hanging Folder - 9/16x2in: ""
-*pt_BR.PageSize w153h198/3.5" Disk - 2 1/8x2 3/4in: ""
-*pt_BR.Translation Resolution/Resolution: ""
-*pt_BR.Resolution 136dpi/136dpi: ""
-*pt_BR.Resolution 203dpi/203dpi: ""
-*pt_BR.Resolution 300dpi/300dpi: ""
-*pt_BR.Translation cupsDarkness/Darkness: ""
-*pt_BR.cupsDarkness Light/Light: ""
-*pt_BR.cupsDarkness Medium/Medium: ""
-*pt_BR.cupsDarkness Normal/Normal: ""
-*pt_BR.cupsDarkness Dark/Dark: ""
-*sv.Translation Manufacturer/Dymo: ""
-*sv.Translation ModelName/Dymo Label Printer: ""
-*sv.Translation ShortNickName/Dymo Label Printer: ""
-*sv.Translation NickName/Dymo Label Printer, 1.4: ""
-*sv.Translation PageSize/Media Size: ""
-*sv.PageSize w81h252/Address - 1 1/8x3 1/2in: ""
-*sv.PageSize w101h252/Large Address - 1 4/10x3 1/2in: ""
-*sv.PageSize w54h144/Return Address - 3/4x2in: ""
-*sv.PageSize w167h288/Shipping Address - 2 5/16x4in: ""
-*sv.PageSize w162h540/Internet Postage 2-Part - 2 1/4x7 1/2in: ""
-*sv.PageSize w162h504/Internet Postage 3-Part - 2 1/4x7in: ""
-*sv.PageSize w41h248/File Folder - 9/16x3 7/16in: ""
-*sv.PageSize w41h144/Hanging Folder - 9/16x2in: ""
-*sv.PageSize w153h198/3.5" Disk - 2 1/8x2 3/4in: ""
-*sv.Translation Resolution/Resolution: ""
-*sv.Resolution 136dpi/136dpi: ""
-*sv.Resolution 203dpi/203dpi: ""
-*sv.Resolution 300dpi/300dpi: ""
-*sv.Translation cupsDarkness/Darkness: ""
-*sv.cupsDarkness Light/Light: ""
-*sv.cupsDarkness Medium/Medium: ""
-*sv.cupsDarkness Normal/Normal: ""
-*sv.cupsDarkness Dark/Dark: ""
-*zh.Translation Manufacturer/Dymo: ""
-*zh.Translation ModelName/Dymo Label Printer: ""
-*zh.Translation ShortNickName/Dymo Label Printer: ""
-*zh.Translation NickName/Dymo Label Printer, 1.4: ""
-*zh.Translation PageSize/Page Size: ""
-*zh.PageSize w81h252/Address - 1 1/8x3 1/2in: ""
-*zh.PageSize w101h252/Large Address - 1 4/10x3 1/2in: ""
-*zh.PageSize w54h144/Return Address - 3/4x2in: ""
-*zh.PageSize w167h288/Shipping Address - 2 5/16x4in: ""
-*zh.PageSize w162h540/Internet Postage 2-Part - 2 1/4x7 1/2in: ""
-*zh.PageSize w162h504/Internet Postage 3-Part - 2 1/4x7in: ""
-*zh.PageSize w41h248/File Folder - 9/16x3 7/16in: ""
-*zh.PageSize w41h144/Hanging Folder - 9/16x2in: ""
-*zh.PageSize w153h198/3.5" Disk - 2 1/8x2 3/4in: ""
-*zh.Translation Resolution/Resolution: ""
-*zh.Resolution 136dpi/136dpi: ""
-*zh.Resolution 203dpi/203dpi: ""
-*zh.Resolution 300dpi/300dpi: ""
-*zh.Translation cupsDarkness/Darkness: ""
-*zh.cupsDarkness Light/Light: ""
-*zh.cupsDarkness Medium/Medium: ""
-*zh.cupsDarkness Normal/Normal: ""
-*zh.cupsDarkness Dark/Dark: ""
-*zh_TW.Translation Manufacturer/Dymo: ""
-*zh_TW.Translation ModelName/Dymo Label Printer: ""
-*zh_TW.Translation ShortNickName/Dymo Label Printer: ""
-*zh_TW.Translation NickName/Dymo Label Printer, 1.4: ""
-*zh_TW.Translation PageSize/Page Size: ""
-*zh_TW.PageSize w81h252/Address - 1 1/8x3 1/2in: ""
-*zh_TW.PageSize w101h252/Large Address - 1 4/10x3 1/2in: ""
-*zh_TW.PageSize w54h144/Return Address - 3/4x2in: ""
-*zh_TW.PageSize w167h288/Shipping Address - 2 5/16x4in: ""
-*zh_TW.PageSize w162h540/Internet Postage 2-Part - 2 1/4x7 1/2in: ""
-*zh_TW.PageSize w162h504/Internet Postage 3-Part - 2 1/4x7in: ""
-*zh_TW.PageSize w41h248/File Folder - 9/16x3 7/16in: ""
-*zh_TW.PageSize w41h144/Hanging Folder - 9/16x2in: ""
-*zh_TW.PageSize w153h198/3.5" Disk - 2 1/8x2 3/4in: ""
-*zh_TW.Translation Resolution/Resolution: ""
-*zh_TW.Resolution 136dpi/136dpi: ""
-*zh_TW.Resolution 203dpi/203dpi: ""
-*zh_TW.Resolution 300dpi/300dpi: ""
-*zh_TW.Translation cupsDarkness/Darkness: ""
-*zh_TW.cupsDarkness Light/Light: ""
-*zh_TW.cupsDarkness Medium/Medium: ""
-*zh_TW.cupsDarkness Normal/Normal: ""
-*zh_TW.cupsDarkness Dark/Dark: ""
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(1.05)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
-*Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
-*Font Bookman-Demi: Standard "(1.05)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
-*Font Bookman-Light: Standard "(1.05)" Standard ROM
-*Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
-*Font Courier: Standard "(1.05)" Standard ROM
-*Font Courier-Bold: Standard "(1.05)" Standard ROM
-*Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Courier-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica: Standard "(1.05)" Standard ROM
-*Font Helvetica-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
-*Font Palatino-Bold: Standard "(1.05)" Standard ROM
-*Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Palatino-Italic: Standard "(1.05)" Standard ROM
-*Font Palatino-Roman: Standard "(1.05)" Standard ROM
-*Font Symbol: Special "(001.005)" Special ROM
-*Font Times-Bold: Standard "(1.05)" Standard ROM
-*Font Times-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Times-Italic: Standard "(1.05)" Standard ROM
-*Font Times-Roman: Standard "(1.05)" Standard ROM
-*Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
-*Font ZapfDingbats: Special "(001.005)" Special ROM
-*% End of DYMO.PPD, 23640 bytes.
diff --git a/ppd/epson24.ppd b/ppd/epson24.ppd
deleted file mode 100644 (file)
index f373ed3..0000000
+++ /dev/null
@@ -1,344 +0,0 @@
-*PPD-Adobe: "4.3"
-*% PPD file for 24-Pin Series with CUPS.
-*% Created by the CUPS PPD Compiler v1.2.4.
-*% Copyright 2007 by Apple Inc.
-*% Copyright 1997-2007 by Easy Software Products.
-*% 
-*% These coded instructions, statements, and computer programs are the
-*% property of Apple Inc. and are protected by Federal copyright
-*% law.  Distribution and use rights are outlined in the file "LICENSE.txt"
-*% which should have been included with this file.  If this file is
-*% file is missing or damaged, see the license at "http://www.cups.org/".
-*FormatVersion: "4.3"
-*FileVersion: "1.4"
-*LanguageVersion: English
-*LanguageEncoding: ISOLatin1
-*PCFileName: "EPSON24.PPD"
-*Product: "(ESP Ghostscript)"
-*Product: "(GPL Ghostscript)"
-*Manufacturer: "Epson"
-*ModelName: "Epson 24-Pin Series"
-*ShortNickName: "Epson 24-Pin Series"
-*NickName: "Epson 24-Pin Series, 1.4"
-*PSVersion: "(3010.000) 81504"
-*PSVersion: "(3010.000) 860"
-*LanguageLevel: "3"
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*FileSystem: False
-*Throughput: "1"
-*LandscapeOrientation: Plus90
-*TTRasterizer: Type42
-*% Driver-defined attributes...
-*cupsVersion: 1.4
-*cupsModelNumber: 1
-*cupsManualCopies: True
-*cupsFilter: "application/vnd.cups-raster 50 rastertoepson"
-*cupsLanguages: "en da de es fi fr it ja ko nl no pt pt_BR sv zh zh_TW"
-*OpenUI *PageSize/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*PageSize FanFoldUS/Fanfold - 14.875x11in: "<</PageSize[1071 792]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageSize
-*OpenUI *PageRegion/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*PageRegion FanFoldUS/Fanfold - 14.875x11in: "<</PageSize[1071 792]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageRegion
-*DefaultImageableArea: Letter
-*ImageableArea Letter/Letter - 8.5x11in: "18.00 18.00 594.00 774.00"
-*ImageableArea Legal/Legal - 8.5x14in: "18.00 18.00 594.00 990.00"
-*ImageableArea A4/A4 - 210x297mm: "18.00 18.00 577.00 824.00"
-*ImageableArea FanFoldUS/Fanfold - 14.875x11in: "18.00 18.00 1053.00 774.00"
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/Letter - 8.5x11in: "612.00 792.00"
-*PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
-*PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
-*PaperDimension FanFoldUS/Fanfold - 14.875x11in: "1071.00 792.00"
-*MaxMediaWidth: "1080.00"
-*MaxMediaHeight: "86400.00"
-*HWMargins: 0.00 0.00 0.00 0.00
-*CustomPageSize True: "pop pop pop <</PageSize[5 -2 roll]/ImagingBBox null>>setpagedevice"
-*ParamCustomPageSize Width: 1 points 36.00 1080.00
-*ParamCustomPageSize Height: 2 points 36.00 86400.00
-*ParamCustomPageSize WidthOffset: 3 points 0 0
-*ParamCustomPageSize HeightOffset: 4 points 0 0
-*ParamCustomPageSize Orientation: 5 int 0 0
-*RequiresPageRegion All: True
-*OpenUI *Resolution: PickOne
-*OrderDependency: 10.0 AnySetup *Resolution
-*DefaultResolution: 120x60dpi
-*Resolution 60dpi: "<</HWResolution[60 60]/cupsBitsPerColor 1/cupsRowCount 8/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*Resolution 120x60dpi: "<</HWResolution[120 60]/cupsBitsPerColor 1/cupsRowCount 8/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*Resolution 180dpi: "<</HWResolution[180 180]/cupsBitsPerColor 1/cupsRowCount 24/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*Resolution 360x180dpi: "<</HWResolution[360 180]/cupsBitsPerColor 1/cupsRowCount 24/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*Resolution 360x180dpi: "<</HWResolution[360 180]/cupsBitsPerColor 1/cupsRowCount 48/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*CloseUI: *Resolution
-*da.Translation Manufacturer/Epson: ""
-*da.Translation ModelName/Epson 24-Pin Series: ""
-*da.Translation ShortNickName/Epson 24-Pin Series: ""
-*da.Translation NickName/Epson 24-Pin Series, 1.4: ""
-*da.Translation PageSize/Media Size: ""
-*da.PageSize Letter/Letter - 8.5x11in: ""
-*da.PageSize Legal/Legal - 8.5x14in: ""
-*da.PageSize A4/A4 - 210x297mm: ""
-*da.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*da.Translation Resolution/Resolution: ""
-*da.Resolution 60dpi/60dpi: ""
-*da.Resolution 120x60dpi/120x60dpi: ""
-*da.Resolution 180dpi/180dpi: ""
-*da.Resolution 360x180dpi/360x180dpi: ""
-*da.Resolution 360x180dpi/360x180dpi: ""
-*de.Translation Manufacturer/Epson: ""
-*de.Translation ModelName/Epson 24-Pin Series: ""
-*de.Translation ShortNickName/Epson 24-Pin Series: ""
-*de.Translation NickName/Epson 24-Pin Series, 1.4: ""
-*de.Translation PageSize/Media Size: ""
-*de.PageSize Letter/Letter - 8.5x11in: ""
-*de.PageSize Legal/Legal - 8.5x14in: ""
-*de.PageSize A4/A4 - 210x297mm: ""
-*de.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*de.Translation Resolution/Resolution: ""
-*de.Resolution 60dpi/60dpi: ""
-*de.Resolution 120x60dpi/120x60dpi: ""
-*de.Resolution 180dpi/180dpi: ""
-*de.Resolution 360x180dpi/360x180dpi: ""
-*de.Resolution 360x180dpi/360x180dpi: ""
-*es.Translation Manufacturer/Epson: ""
-*es.Translation ModelName/Epson 24-Pin Series: ""
-*es.Translation ShortNickName/Epson 24-Pin Series: ""
-*es.Translation NickName/Epson 24-Pin Series, 1.4: ""
-*es.Translation PageSize/Media Size: ""
-*es.PageSize Letter/Letter - 8.5x11in: ""
-*es.PageSize Legal/Legal - 8.5x14in: ""
-*es.PageSize A4/A4 - 210x297mm: ""
-*es.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*es.Translation Resolution/Resolution: ""
-*es.Resolution 60dpi/60dpi: ""
-*es.Resolution 120x60dpi/120x60dpi: ""
-*es.Resolution 180dpi/180dpi: ""
-*es.Resolution 360x180dpi/360x180dpi: ""
-*es.Resolution 360x180dpi/360x180dpi: ""
-*fi.Translation Manufacturer/Epson: ""
-*fi.Translation ModelName/Epson 24-Pin Series: ""
-*fi.Translation ShortNickName/Epson 24-Pin Series: ""
-*fi.Translation NickName/Epson 24-Pin Series, 1.4: ""
-*fi.Translation PageSize/Media Size: ""
-*fi.PageSize Letter/Letter - 8.5x11in: ""
-*fi.PageSize Legal/Legal - 8.5x14in: ""
-*fi.PageSize A4/A4 - 210x297mm: ""
-*fi.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*fi.Translation Resolution/Resolution: ""
-*fi.Resolution 60dpi/60dpi: ""
-*fi.Resolution 120x60dpi/120x60dpi: ""
-*fi.Resolution 180dpi/180dpi: ""
-*fi.Resolution 360x180dpi/360x180dpi: ""
-*fi.Resolution 360x180dpi/360x180dpi: ""
-*fr.Translation Manufacturer/Epson: ""
-*fr.Translation ModelName/Epson 24-Pin Series: ""
-*fr.Translation ShortNickName/Epson 24-Pin Series: ""
-*fr.Translation NickName/Epson 24-Pin Series, 1.4: ""
-*fr.Translation PageSize/Media Size: ""
-*fr.PageSize Letter/Letter - 8.5x11in: ""
-*fr.PageSize Legal/Legal - 8.5x14in: ""
-*fr.PageSize A4/A4 - 210x297mm: ""
-*fr.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*fr.Translation Resolution/Resolution: ""
-*fr.Resolution 60dpi/60dpi: ""
-*fr.Resolution 120x60dpi/120x60dpi: ""
-*fr.Resolution 180dpi/180dpi: ""
-*fr.Resolution 360x180dpi/360x180dpi: ""
-*fr.Resolution 360x180dpi/360x180dpi: ""
-*it.Translation Manufacturer/Epson: ""
-*it.Translation ModelName/Epson 24-Pin Series: ""
-*it.Translation ShortNickName/Epson 24-Pin Series: ""
-*it.Translation NickName/Epson 24-Pin Series, 1.4: ""
-*it.Translation PageSize/Media Size: ""
-*it.PageSize Letter/Letter - 8.5x11in: ""
-*it.PageSize Legal/Legal - 8.5x14in: ""
-*it.PageSize A4/A4 - 210x297mm: ""
-*it.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*it.Translation Resolution/Resolution: ""
-*it.Resolution 60dpi/60dpi: ""
-*it.Resolution 120x60dpi/120x60dpi: ""
-*it.Resolution 180dpi/180dpi: ""
-*it.Resolution 360x180dpi/360x180dpi: ""
-*it.Resolution 360x180dpi/360x180dpi: ""
-*ja.Translation Manufacturer/Epson: ""
-*ja.Translation ModelName/Epson 24-Pin Series: ""
-*ja.Translation ShortNickName/Epson 24-Pin Series: ""
-*ja.Translation NickName/Epson 24-Pin Series, 1.4: ""
-*ja.Translation PageSize/Media Size: ""
-*ja.PageSize Letter/Letter - 8.5x11in: ""
-*ja.PageSize Legal/Legal - 8.5x14in: ""
-*ja.PageSize A4/A4 - 210x297mm: ""
-*ja.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*ja.Translation Resolution/Resolution: ""
-*ja.Resolution 60dpi/60dpi: ""
-*ja.Resolution 120x60dpi/120x60dpi: ""
-*ja.Resolution 180dpi/180dpi: ""
-*ja.Resolution 360x180dpi/360x180dpi: ""
-*ja.Resolution 360x180dpi/360x180dpi: ""
-*ko.Translation Manufacturer/Epson: ""
-*ko.Translation ModelName/Epson 24-Pin Series: ""
-*ko.Translation ShortNickName/Epson 24-Pin Series: ""
-*ko.Translation NickName/Epson 24-Pin Series, 1.4: ""
-*ko.Translation PageSize/Page Size: ""
-*ko.PageSize Letter/Letter - 8.5x11in: ""
-*ko.PageSize Legal/Legal - 8.5x14in: ""
-*ko.PageSize A4/A4 - 210x297mm: ""
-*ko.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*ko.Translation Resolution/Resolution: ""
-*ko.Resolution 60dpi/60dpi: ""
-*ko.Resolution 120x60dpi/120x60dpi: ""
-*ko.Resolution 180dpi/180dpi: ""
-*ko.Resolution 360x180dpi/360x180dpi: ""
-*ko.Resolution 360x180dpi/360x180dpi: ""
-*nl.Translation Manufacturer/Epson: ""
-*nl.Translation ModelName/Epson 24-Pin Series: ""
-*nl.Translation ShortNickName/Epson 24-Pin Series: ""
-*nl.Translation NickName/Epson 24-Pin Series, 1.4: ""
-*nl.Translation PageSize/Media Size: ""
-*nl.PageSize Letter/Letter - 8.5x11in: ""
-*nl.PageSize Legal/Legal - 8.5x14in: ""
-*nl.PageSize A4/A4 - 210x297mm: ""
-*nl.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*nl.Translation Resolution/Resolution: ""
-*nl.Resolution 60dpi/60dpi: ""
-*nl.Resolution 120x60dpi/120x60dpi: ""
-*nl.Resolution 180dpi/180dpi: ""
-*nl.Resolution 360x180dpi/360x180dpi: ""
-*nl.Resolution 360x180dpi/360x180dpi: ""
-*no.Translation Manufacturer/Epson: ""
-*no.Translation ModelName/Epson 24-Pin Series: ""
-*no.Translation ShortNickName/Epson 24-Pin Series: ""
-*no.Translation NickName/Epson 24-Pin Series, 1.4: ""
-*no.Translation PageSize/Media Size: ""
-*no.PageSize Letter/Letter - 8.5x11in: ""
-*no.PageSize Legal/Legal - 8.5x14in: ""
-*no.PageSize A4/A4 - 210x297mm: ""
-*no.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*no.Translation Resolution/Resolution: ""
-*no.Resolution 60dpi/60dpi: ""
-*no.Resolution 120x60dpi/120x60dpi: ""
-*no.Resolution 180dpi/180dpi: ""
-*no.Resolution 360x180dpi/360x180dpi: ""
-*no.Resolution 360x180dpi/360x180dpi: ""
-*pt.Translation Manufacturer/Epson: ""
-*pt.Translation ModelName/Epson 24-Pin Series: ""
-*pt.Translation ShortNickName/Epson 24-Pin Series: ""
-*pt.Translation NickName/Epson 24-Pin Series, 1.4: ""
-*pt.Translation PageSize/Media Size: ""
-*pt.PageSize Letter/Letter - 8.5x11in: ""
-*pt.PageSize Legal/Legal - 8.5x14in: ""
-*pt.PageSize A4/A4 - 210x297mm: ""
-*pt.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*pt.Translation Resolution/Resolution: ""
-*pt.Resolution 60dpi/60dpi: ""
-*pt.Resolution 120x60dpi/120x60dpi: ""
-*pt.Resolution 180dpi/180dpi: ""
-*pt.Resolution 360x180dpi/360x180dpi: ""
-*pt.Resolution 360x180dpi/360x180dpi: ""
-*pt_BR.Translation Manufacturer/Epson: ""
-*pt_BR.Translation ModelName/Epson 24-Pin Series: ""
-*pt_BR.Translation ShortNickName/Epson 24-Pin Series: ""
-*pt_BR.Translation NickName/Epson 24-Pin Series, 1.4: ""
-*pt_BR.Translation PageSize/Media Size: ""
-*pt_BR.PageSize Letter/Letter - 8.5x11in: ""
-*pt_BR.PageSize Legal/Legal - 8.5x14in: ""
-*pt_BR.PageSize A4/A4 - 210x297mm: ""
-*pt_BR.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*pt_BR.Translation Resolution/Resolution: ""
-*pt_BR.Resolution 60dpi/60dpi: ""
-*pt_BR.Resolution 120x60dpi/120x60dpi: ""
-*pt_BR.Resolution 180dpi/180dpi: ""
-*pt_BR.Resolution 360x180dpi/360x180dpi: ""
-*pt_BR.Resolution 360x180dpi/360x180dpi: ""
-*sv.Translation Manufacturer/Epson: ""
-*sv.Translation ModelName/Epson 24-Pin Series: ""
-*sv.Translation ShortNickName/Epson 24-Pin Series: ""
-*sv.Translation NickName/Epson 24-Pin Series, 1.4: ""
-*sv.Translation PageSize/Media Size: ""
-*sv.PageSize Letter/Letter - 8.5x11in: ""
-*sv.PageSize Legal/Legal - 8.5x14in: ""
-*sv.PageSize A4/A4 - 210x297mm: ""
-*sv.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*sv.Translation Resolution/Resolution: ""
-*sv.Resolution 60dpi/60dpi: ""
-*sv.Resolution 120x60dpi/120x60dpi: ""
-*sv.Resolution 180dpi/180dpi: ""
-*sv.Resolution 360x180dpi/360x180dpi: ""
-*sv.Resolution 360x180dpi/360x180dpi: ""
-*zh.Translation Manufacturer/Epson: ""
-*zh.Translation ModelName/Epson 24-Pin Series: ""
-*zh.Translation ShortNickName/Epson 24-Pin Series: ""
-*zh.Translation NickName/Epson 24-Pin Series, 1.4: ""
-*zh.Translation PageSize/Page Size: ""
-*zh.PageSize Letter/Letter - 8.5x11in: ""
-*zh.PageSize Legal/Legal - 8.5x14in: ""
-*zh.PageSize A4/A4 - 210x297mm: ""
-*zh.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*zh.Translation Resolution/Resolution: ""
-*zh.Resolution 60dpi/60dpi: ""
-*zh.Resolution 120x60dpi/120x60dpi: ""
-*zh.Resolution 180dpi/180dpi: ""
-*zh.Resolution 360x180dpi/360x180dpi: ""
-*zh.Resolution 360x180dpi/360x180dpi: ""
-*zh_TW.Translation Manufacturer/Epson: ""
-*zh_TW.Translation ModelName/Epson 24-Pin Series: ""
-*zh_TW.Translation ShortNickName/Epson 24-Pin Series: ""
-*zh_TW.Translation NickName/Epson 24-Pin Series, 1.4: ""
-*zh_TW.Translation PageSize/Page Size: ""
-*zh_TW.PageSize Letter/Letter - 8.5x11in: ""
-*zh_TW.PageSize Legal/Legal - 8.5x14in: ""
-*zh_TW.PageSize A4/A4 - 210x297mm: ""
-*zh_TW.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*zh_TW.Translation Resolution/Resolution: ""
-*zh_TW.Resolution 60dpi/60dpi: ""
-*zh_TW.Resolution 120x60dpi/120x60dpi: ""
-*zh_TW.Resolution 180dpi/180dpi: ""
-*zh_TW.Resolution 360x180dpi/360x180dpi: ""
-*zh_TW.Resolution 360x180dpi/360x180dpi: ""
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(1.05)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
-*Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
-*Font Bookman-Demi: Standard "(1.05)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
-*Font Bookman-Light: Standard "(1.05)" Standard ROM
-*Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
-*Font Courier: Standard "(1.05)" Standard ROM
-*Font Courier-Bold: Standard "(1.05)" Standard ROM
-*Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Courier-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica: Standard "(1.05)" Standard ROM
-*Font Helvetica-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
-*Font Palatino-Bold: Standard "(1.05)" Standard ROM
-*Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Palatino-Italic: Standard "(1.05)" Standard ROM
-*Font Palatino-Roman: Standard "(1.05)" Standard ROM
-*Font Symbol: Special "(001.005)" Special ROM
-*Font Times-Bold: Standard "(1.05)" Standard ROM
-*Font Times-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Times-Italic: Standard "(1.05)" Standard ROM
-*Font Times-Roman: Standard "(1.05)" Standard ROM
-*Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
-*Font ZapfDingbats: Special "(001.005)" Special ROM
-*% End of EPSON24.PPD, 15694 bytes.
diff --git a/ppd/epson9.ppd b/ppd/epson9.ppd
deleted file mode 100644 (file)
index 5877980..0000000
+++ /dev/null
@@ -1,312 +0,0 @@
-*PPD-Adobe: "4.3"
-*% PPD file for 9-Pin Series with CUPS.
-*% Created by the CUPS PPD Compiler v1.2.4.
-*% Copyright 2007 by Apple Inc.
-*% Copyright 1997-2007 by Easy Software Products.
-*% 
-*% These coded instructions, statements, and computer programs are the
-*% property of Apple Inc. and are protected by Federal copyright
-*% law.  Distribution and use rights are outlined in the file "LICENSE.txt"
-*% which should have been included with this file.  If this file is
-*% file is missing or damaged, see the license at "http://www.cups.org/".
-*FormatVersion: "4.3"
-*FileVersion: "1.4"
-*LanguageVersion: English
-*LanguageEncoding: ISOLatin1
-*PCFileName: "EPSON9.PPD"
-*Product: "(ESP Ghostscript)"
-*Product: "(GPL Ghostscript)"
-*Manufacturer: "Epson"
-*ModelName: "Epson 9-Pin Series"
-*ShortNickName: "Epson 9-Pin Series"
-*NickName: "Epson 9-Pin Series, 1.4"
-*PSVersion: "(3010.000) 81504"
-*PSVersion: "(3010.000) 860"
-*LanguageLevel: "3"
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*FileSystem: False
-*Throughput: "1"
-*LandscapeOrientation: Plus90
-*TTRasterizer: Type42
-*% Driver-defined attributes...
-*cupsVersion: 1.4
-*cupsModelNumber: 0
-*cupsManualCopies: True
-*cupsFilter: "application/vnd.cups-raster 50 rastertoepson"
-*cupsLanguages: "en da de es fi fr it ja ko nl no pt pt_BR sv zh zh_TW"
-*OpenUI *PageSize/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*PageSize FanFoldUS/Fanfold - 14.875x11in: "<</PageSize[1071 792]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageSize
-*OpenUI *PageRegion/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*PageRegion FanFoldUS/Fanfold - 14.875x11in: "<</PageSize[1071 792]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageRegion
-*DefaultImageableArea: Letter
-*ImageableArea Letter/Letter - 8.5x11in: "18.00 18.00 594.00 774.00"
-*ImageableArea Legal/Legal - 8.5x14in: "18.00 18.00 594.00 990.00"
-*ImageableArea A4/A4 - 210x297mm: "18.00 18.00 577.00 824.00"
-*ImageableArea FanFoldUS/Fanfold - 14.875x11in: "18.00 18.00 1053.00 774.00"
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/Letter - 8.5x11in: "612.00 792.00"
-*PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
-*PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
-*PaperDimension FanFoldUS/Fanfold - 14.875x11in: "1071.00 792.00"
-*MaxMediaWidth: "1080.00"
-*MaxMediaHeight: "86400.00"
-*HWMargins: 0.00 0.00 0.00 0.00
-*CustomPageSize True: "pop pop pop <</PageSize[5 -2 roll]/ImagingBBox null>>setpagedevice"
-*ParamCustomPageSize Width: 1 points 36.00 1080.00
-*ParamCustomPageSize Height: 2 points 36.00 86400.00
-*ParamCustomPageSize WidthOffset: 3 points 0 0
-*ParamCustomPageSize HeightOffset: 4 points 0 0
-*ParamCustomPageSize Orientation: 5 int 0 0
-*RequiresPageRegion All: True
-*OpenUI *Resolution: PickOne
-*OrderDependency: 10.0 AnySetup *Resolution
-*DefaultResolution: 120x72dpi
-*Resolution 60x720dpi: "<</HWResolution[60 720]/cupsBitsPerColor 1/cupsRowCount 8/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*Resolution 120x72dpi: "<</HWResolution[120 72]/cupsBitsPerColor 1/cupsRowCount 8/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*Resolution 240x72dpi: "<</HWResolution[240 72]/cupsBitsPerColor 1/cupsRowCount 8/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*CloseUI: *Resolution
-*da.Translation Manufacturer/Epson: ""
-*da.Translation ModelName/Epson 9-Pin Series: ""
-*da.Translation ShortNickName/Epson 9-Pin Series: ""
-*da.Translation NickName/Epson 9-Pin Series, 1.4: ""
-*da.Translation PageSize/Media Size: ""
-*da.PageSize Letter/Letter - 8.5x11in: ""
-*da.PageSize Legal/Legal - 8.5x14in: ""
-*da.PageSize A4/A4 - 210x297mm: ""
-*da.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*da.Translation Resolution/Resolution: ""
-*da.Resolution 60x720dpi/60x720dpi: ""
-*da.Resolution 120x72dpi/120x72dpi: ""
-*da.Resolution 240x72dpi/240x72dpi: ""
-*de.Translation Manufacturer/Epson: ""
-*de.Translation ModelName/Epson 9-Pin Series: ""
-*de.Translation ShortNickName/Epson 9-Pin Series: ""
-*de.Translation NickName/Epson 9-Pin Series, 1.4: ""
-*de.Translation PageSize/Media Size: ""
-*de.PageSize Letter/Letter - 8.5x11in: ""
-*de.PageSize Legal/Legal - 8.5x14in: ""
-*de.PageSize A4/A4 - 210x297mm: ""
-*de.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*de.Translation Resolution/Resolution: ""
-*de.Resolution 60x720dpi/60x720dpi: ""
-*de.Resolution 120x72dpi/120x72dpi: ""
-*de.Resolution 240x72dpi/240x72dpi: ""
-*es.Translation Manufacturer/Epson: ""
-*es.Translation ModelName/Epson 9-Pin Series: ""
-*es.Translation ShortNickName/Epson 9-Pin Series: ""
-*es.Translation NickName/Epson 9-Pin Series, 1.4: ""
-*es.Translation PageSize/Media Size: ""
-*es.PageSize Letter/Letter - 8.5x11in: ""
-*es.PageSize Legal/Legal - 8.5x14in: ""
-*es.PageSize A4/A4 - 210x297mm: ""
-*es.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*es.Translation Resolution/Resolution: ""
-*es.Resolution 60x720dpi/60x720dpi: ""
-*es.Resolution 120x72dpi/120x72dpi: ""
-*es.Resolution 240x72dpi/240x72dpi: ""
-*fi.Translation Manufacturer/Epson: ""
-*fi.Translation ModelName/Epson 9-Pin Series: ""
-*fi.Translation ShortNickName/Epson 9-Pin Series: ""
-*fi.Translation NickName/Epson 9-Pin Series, 1.4: ""
-*fi.Translation PageSize/Media Size: ""
-*fi.PageSize Letter/Letter - 8.5x11in: ""
-*fi.PageSize Legal/Legal - 8.5x14in: ""
-*fi.PageSize A4/A4 - 210x297mm: ""
-*fi.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*fi.Translation Resolution/Resolution: ""
-*fi.Resolution 60x720dpi/60x720dpi: ""
-*fi.Resolution 120x72dpi/120x72dpi: ""
-*fi.Resolution 240x72dpi/240x72dpi: ""
-*fr.Translation Manufacturer/Epson: ""
-*fr.Translation ModelName/Epson 9-Pin Series: ""
-*fr.Translation ShortNickName/Epson 9-Pin Series: ""
-*fr.Translation NickName/Epson 9-Pin Series, 1.4: ""
-*fr.Translation PageSize/Media Size: ""
-*fr.PageSize Letter/Letter - 8.5x11in: ""
-*fr.PageSize Legal/Legal - 8.5x14in: ""
-*fr.PageSize A4/A4 - 210x297mm: ""
-*fr.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*fr.Translation Resolution/Resolution: ""
-*fr.Resolution 60x720dpi/60x720dpi: ""
-*fr.Resolution 120x72dpi/120x72dpi: ""
-*fr.Resolution 240x72dpi/240x72dpi: ""
-*it.Translation Manufacturer/Epson: ""
-*it.Translation ModelName/Epson 9-Pin Series: ""
-*it.Translation ShortNickName/Epson 9-Pin Series: ""
-*it.Translation NickName/Epson 9-Pin Series, 1.4: ""
-*it.Translation PageSize/Media Size: ""
-*it.PageSize Letter/Letter - 8.5x11in: ""
-*it.PageSize Legal/Legal - 8.5x14in: ""
-*it.PageSize A4/A4 - 210x297mm: ""
-*it.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*it.Translation Resolution/Resolution: ""
-*it.Resolution 60x720dpi/60x720dpi: ""
-*it.Resolution 120x72dpi/120x72dpi: ""
-*it.Resolution 240x72dpi/240x72dpi: ""
-*ja.Translation Manufacturer/Epson: ""
-*ja.Translation ModelName/Epson 9-Pin Series: ""
-*ja.Translation ShortNickName/Epson 9-Pin Series: ""
-*ja.Translation NickName/Epson 9-Pin Series, 1.4: ""
-*ja.Translation PageSize/Media Size: ""
-*ja.PageSize Letter/Letter - 8.5x11in: ""
-*ja.PageSize Legal/Legal - 8.5x14in: ""
-*ja.PageSize A4/A4 - 210x297mm: ""
-*ja.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*ja.Translation Resolution/Resolution: ""
-*ja.Resolution 60x720dpi/60x720dpi: ""
-*ja.Resolution 120x72dpi/120x72dpi: ""
-*ja.Resolution 240x72dpi/240x72dpi: ""
-*ko.Translation Manufacturer/Epson: ""
-*ko.Translation ModelName/Epson 9-Pin Series: ""
-*ko.Translation ShortNickName/Epson 9-Pin Series: ""
-*ko.Translation NickName/Epson 9-Pin Series, 1.4: ""
-*ko.Translation PageSize/Page Size: ""
-*ko.PageSize Letter/Letter - 8.5x11in: ""
-*ko.PageSize Legal/Legal - 8.5x14in: ""
-*ko.PageSize A4/A4 - 210x297mm: ""
-*ko.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*ko.Translation Resolution/Resolution: ""
-*ko.Resolution 60x720dpi/60x720dpi: ""
-*ko.Resolution 120x72dpi/120x72dpi: ""
-*ko.Resolution 240x72dpi/240x72dpi: ""
-*nl.Translation Manufacturer/Epson: ""
-*nl.Translation ModelName/Epson 9-Pin Series: ""
-*nl.Translation ShortNickName/Epson 9-Pin Series: ""
-*nl.Translation NickName/Epson 9-Pin Series, 1.4: ""
-*nl.Translation PageSize/Media Size: ""
-*nl.PageSize Letter/Letter - 8.5x11in: ""
-*nl.PageSize Legal/Legal - 8.5x14in: ""
-*nl.PageSize A4/A4 - 210x297mm: ""
-*nl.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*nl.Translation Resolution/Resolution: ""
-*nl.Resolution 60x720dpi/60x720dpi: ""
-*nl.Resolution 120x72dpi/120x72dpi: ""
-*nl.Resolution 240x72dpi/240x72dpi: ""
-*no.Translation Manufacturer/Epson: ""
-*no.Translation ModelName/Epson 9-Pin Series: ""
-*no.Translation ShortNickName/Epson 9-Pin Series: ""
-*no.Translation NickName/Epson 9-Pin Series, 1.4: ""
-*no.Translation PageSize/Media Size: ""
-*no.PageSize Letter/Letter - 8.5x11in: ""
-*no.PageSize Legal/Legal - 8.5x14in: ""
-*no.PageSize A4/A4 - 210x297mm: ""
-*no.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*no.Translation Resolution/Resolution: ""
-*no.Resolution 60x720dpi/60x720dpi: ""
-*no.Resolution 120x72dpi/120x72dpi: ""
-*no.Resolution 240x72dpi/240x72dpi: ""
-*pt.Translation Manufacturer/Epson: ""
-*pt.Translation ModelName/Epson 9-Pin Series: ""
-*pt.Translation ShortNickName/Epson 9-Pin Series: ""
-*pt.Translation NickName/Epson 9-Pin Series, 1.4: ""
-*pt.Translation PageSize/Media Size: ""
-*pt.PageSize Letter/Letter - 8.5x11in: ""
-*pt.PageSize Legal/Legal - 8.5x14in: ""
-*pt.PageSize A4/A4 - 210x297mm: ""
-*pt.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*pt.Translation Resolution/Resolution: ""
-*pt.Resolution 60x720dpi/60x720dpi: ""
-*pt.Resolution 120x72dpi/120x72dpi: ""
-*pt.Resolution 240x72dpi/240x72dpi: ""
-*pt_BR.Translation Manufacturer/Epson: ""
-*pt_BR.Translation ModelName/Epson 9-Pin Series: ""
-*pt_BR.Translation ShortNickName/Epson 9-Pin Series: ""
-*pt_BR.Translation NickName/Epson 9-Pin Series, 1.4: ""
-*pt_BR.Translation PageSize/Media Size: ""
-*pt_BR.PageSize Letter/Letter - 8.5x11in: ""
-*pt_BR.PageSize Legal/Legal - 8.5x14in: ""
-*pt_BR.PageSize A4/A4 - 210x297mm: ""
-*pt_BR.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*pt_BR.Translation Resolution/Resolution: ""
-*pt_BR.Resolution 60x720dpi/60x720dpi: ""
-*pt_BR.Resolution 120x72dpi/120x72dpi: ""
-*pt_BR.Resolution 240x72dpi/240x72dpi: ""
-*sv.Translation Manufacturer/Epson: ""
-*sv.Translation ModelName/Epson 9-Pin Series: ""
-*sv.Translation ShortNickName/Epson 9-Pin Series: ""
-*sv.Translation NickName/Epson 9-Pin Series, 1.4: ""
-*sv.Translation PageSize/Media Size: ""
-*sv.PageSize Letter/Letter - 8.5x11in: ""
-*sv.PageSize Legal/Legal - 8.5x14in: ""
-*sv.PageSize A4/A4 - 210x297mm: ""
-*sv.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*sv.Translation Resolution/Resolution: ""
-*sv.Resolution 60x720dpi/60x720dpi: ""
-*sv.Resolution 120x72dpi/120x72dpi: ""
-*sv.Resolution 240x72dpi/240x72dpi: ""
-*zh.Translation Manufacturer/Epson: ""
-*zh.Translation ModelName/Epson 9-Pin Series: ""
-*zh.Translation ShortNickName/Epson 9-Pin Series: ""
-*zh.Translation NickName/Epson 9-Pin Series, 1.4: ""
-*zh.Translation PageSize/Page Size: ""
-*zh.PageSize Letter/Letter - 8.5x11in: ""
-*zh.PageSize Legal/Legal - 8.5x14in: ""
-*zh.PageSize A4/A4 - 210x297mm: ""
-*zh.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*zh.Translation Resolution/Resolution: ""
-*zh.Resolution 60x720dpi/60x720dpi: ""
-*zh.Resolution 120x72dpi/120x72dpi: ""
-*zh.Resolution 240x72dpi/240x72dpi: ""
-*zh_TW.Translation Manufacturer/Epson: ""
-*zh_TW.Translation ModelName/Epson 9-Pin Series: ""
-*zh_TW.Translation ShortNickName/Epson 9-Pin Series: ""
-*zh_TW.Translation NickName/Epson 9-Pin Series, 1.4: ""
-*zh_TW.Translation PageSize/Page Size: ""
-*zh_TW.PageSize Letter/Letter - 8.5x11in: ""
-*zh_TW.PageSize Legal/Legal - 8.5x14in: ""
-*zh_TW.PageSize A4/A4 - 210x297mm: ""
-*zh_TW.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*zh_TW.Translation Resolution/Resolution: ""
-*zh_TW.Resolution 60x720dpi/60x720dpi: ""
-*zh_TW.Resolution 120x72dpi/120x72dpi: ""
-*zh_TW.Resolution 240x72dpi/240x72dpi: ""
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(1.05)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
-*Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
-*Font Bookman-Demi: Standard "(1.05)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
-*Font Bookman-Light: Standard "(1.05)" Standard ROM
-*Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
-*Font Courier: Standard "(1.05)" Standard ROM
-*Font Courier-Bold: Standard "(1.05)" Standard ROM
-*Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Courier-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica: Standard "(1.05)" Standard ROM
-*Font Helvetica-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
-*Font Palatino-Bold: Standard "(1.05)" Standard ROM
-*Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Palatino-Italic: Standard "(1.05)" Standard ROM
-*Font Palatino-Roman: Standard "(1.05)" Standard ROM
-*Font Symbol: Special "(001.005)" Special ROM
-*Font Times-Bold: Standard "(1.05)" Standard ROM
-*Font Times-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Times-Italic: Standard "(1.05)" Standard ROM
-*Font Times-Roman: Standard "(1.05)" Standard ROM
-*Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
-*Font ZapfDingbats: Special "(001.005)" Special ROM
-*% End of EPSON9.PPD, 14325 bytes.
diff --git a/ppd/generic.ppd b/ppd/generic.ppd
deleted file mode 100644 (file)
index 8227af8..0000000
+++ /dev/null
@@ -1,607 +0,0 @@
-*PPD-Adobe: "4.3"
-*% PPD file for PostScript Printer with CUPS.
-*% Created by the CUPS PPD Compiler v1.2.4.
-*% Copyright 2007 by Apple Inc.
-*% Copyright 1997-2007 by Easy Software Products.
-*% 
-*% These coded instructions, statements, and computer programs are the
-*% property of Apple Inc. and are protected by Federal copyright
-*% law.  Distribution and use rights are outlined in the file "LICENSE.txt"
-*% which should have been included with this file.  If this file is
-*% file is missing or damaged, see the license at "http://www.cups.org/".
-*FormatVersion: "4.3"
-*FileVersion: "1.4"
-*LanguageVersion: English
-*LanguageEncoding: ISOLatin1
-*PCFileName: "GENERIC.PPD"
-*Product: "(ESP Ghostscript)"
-*Product: "(GPL Ghostscript)"
-*Manufacturer: "Generic"
-*ModelName: "Generic PostScript Printer"
-*ShortNickName: "Generic PostScript Printer"
-*NickName: "Generic PostScript Printer, 1.4"
-*PSVersion: "(3010.000) 81504"
-*PSVersion: "(3010.000) 860"
-*PSVersion: "(2016.0) 0"
-*LanguageLevel: "3"
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*FileSystem: False
-*Throughput: "8"
-*LandscapeOrientation: Plus90
-*TTRasterizer: Type42
-*% Driver-defined attributes...
-*cupsLanguages: "en da de es fi fr it ja ko nl no pt pt_BR sv zh zh_TW"
-*UIConstraints: *Duplex *Option1 False
-*UIConstraints: *Option1 False *Duplex
-*OpenUI *PageSize/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageSize Executive/Executive - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
-*PageSize Tabloid/Tabloid - 11x17in: "<</PageSize[792 1224]/ImagingBBox null>>setpagedevice"
-*PageSize A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
-*PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*PageSize A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
-*PageSize B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
-*PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
-*PageSize Env10/#10 Envelope - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
-*PageSize EnvC5/C5 Envelope - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
-*PageSize EnvDL/DL Envelope - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
-*PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageSize
-*OpenUI *PageRegion/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageRegion Executive/Executive - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
-*PageRegion Tabloid/Tabloid - 11x17in: "<</PageSize[792 1224]/ImagingBBox null>>setpagedevice"
-*PageRegion A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
-*PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*PageRegion A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
-*PageRegion B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
-*PageRegion EnvISOB5/ISOB5 Envelope - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
-*PageRegion Env10/#10 Envelope - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
-*PageRegion EnvC5/C5 Envelope - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
-*PageRegion EnvDL/DL Envelope - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
-*PageRegion EnvMonarch/Monarch Envelope - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageRegion
-*DefaultImageableArea: Letter
-*ImageableArea Letter/Letter - 8.5x11in: "12.00 12.00 600.00 780.00"
-*ImageableArea Legal/Legal - 8.5x14in: "12.00 12.00 600.00 996.00"
-*ImageableArea Executive/Executive - 7.25x10.5in: "12.00 12.00 510.00 744.00"
-*ImageableArea Tabloid/Tabloid - 11x17in: "12.00 12.00 780.00 1212.00"
-*ImageableArea A3/A3 - 297x420mm: "12.00 12.00 830.00 1179.00"
-*ImageableArea A4/A4 - 210x297mm: "12.00 12.00 583.00 830.00"
-*ImageableArea A5/A5 - 148x210mm: "12.00 12.00 408.00 583.00"
-*ImageableArea B5/B5 - 182x257mm: "12.00 12.00 504.00 717.00"
-*ImageableArea EnvISOB5/ISOB5 Envelope - 176x250mm: "12.00 12.00 487.00 697.00"
-*ImageableArea Env10/#10 Envelope - 4.13x9.5in: "12.00 12.00 285.00 672.00"
-*ImageableArea EnvC5/C5 Envelope - 162x229mm: "12.00 12.00 447.00 637.00"
-*ImageableArea EnvDL/DL Envelope - 110x220mm: "12.00 12.00 300.00 612.00"
-*ImageableArea EnvMonarch/Monarch Envelope - 3.875x7.5in: "12.00 12.00 267.00 528.00"
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/Letter - 8.5x11in: "612.00 792.00"
-*PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
-*PaperDimension Executive/Executive - 7.25x10.5in: "522.00 756.00"
-*PaperDimension Tabloid/Tabloid - 11x17in: "792.00 1224.00"
-*PaperDimension A3/A3 - 297x420mm: "842.00 1191.00"
-*PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
-*PaperDimension A5/A5 - 148x210mm: "420.00 595.00"
-*PaperDimension B5/B5 - 182x257mm: "516.00 729.00"
-*PaperDimension EnvISOB5/ISOB5 Envelope - 176x250mm: "499.00 709.00"
-*PaperDimension Env10/#10 Envelope - 4.13x9.5in: "297.00 684.00"
-*PaperDimension EnvC5/C5 Envelope - 162x229mm: "459.00 649.00"
-*PaperDimension EnvDL/DL Envelope - 110x220mm: "312.00 624.00"
-*PaperDimension EnvMonarch/Monarch Envelope - 3.875x7.5in: "279.00 540.00"
-*OpenUI *InputSlot/Media Source: PickOne
-*OrderDependency: 10.0 AnySetup *InputSlot
-*DefaultInputSlot: Default
-*InputSlot Default/Printer Default: ""
-*InputSlot Tray1/Tray 1: "<</ManualFeed false>>setpagedevice"
-*InputSlot Manual/Manual Feed: "<</ManualFeed true>>setpagedevice"
-*CloseUI: *InputSlot
-*OpenUI *Duplex/2-Sided Printing: PickOne
-*OrderDependency: 10.0 AnySetup *Duplex
-*DefaultDuplex: None
-*Duplex None/Off (1-Sided): "<</Duplex false>>setpagedevice"
-*Duplex DuplexNoTumble/Long-Edge (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
-*Duplex DuplexTumble/Short-Edge (Landscape): "<</Duplex true/Tumble true>>setpagedevice"
-*CloseUI: *Duplex
-*OpenGroup: InstallableOptions/Installable Options
-*OpenUI *Option1/Duplexer: Boolean
-*OrderDependency: 10.0 AnySetup *Option1
-*DefaultOption1: False
-*Option1 False/Not Installed: ""
-*Option1 True/Installed: ""
-*CloseUI: *Option1
-*CloseGroup: InstallableOptions
-*da.Translation Manufacturer/Generic: ""
-*da.Translation ModelName/Generic PostScript Printer: ""
-*da.Translation ShortNickName/Generic PostScript Printer: ""
-*da.Translation NickName/Generic PostScript Printer, 1.4: ""
-*da.Translation PageSize/Media Size: ""
-*da.PageSize Letter/Letter - 8.5x11in: ""
-*da.PageSize Legal/Legal - 8.5x14in: ""
-*da.PageSize Executive/Executive - 7.25x10.5in: ""
-*da.PageSize Tabloid/Tabloid - 11x17in: ""
-*da.PageSize A3/A3 - 297x420mm: ""
-*da.PageSize A4/A4 - 210x297mm: ""
-*da.PageSize A5/A5 - 148x210mm: ""
-*da.PageSize B5/B5 - 182x257mm: ""
-*da.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*da.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*da.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*da.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*da.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*da.Translation InputSlot/Media Source: ""
-*da.InputSlot Default/Printerstandard: ""
-*da.InputSlot Tray1/Bakke 1: ""
-*da.InputSlot Manual/Manuel: ""
-*da.Translation Duplex/Dupleks: ""
-*da.Duplex None/Off (1-Sided): ""
-*da.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*da.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*da.Translation InstallableOptions/Installable Options: ""
-*da.Translation Option1/Duplexer: ""
-*da.Option1 False/Ikke installeret: ""
-*da.Option1 True/Installed: ""
-*de.Translation Manufacturer/Generic: ""
-*de.Translation ModelName/Generic PostScript Printer: ""
-*de.Translation ShortNickName/Generic PostScript Printer: ""
-*de.Translation NickName/Generic PostScript Printer, 1.4: ""
-*de.Translation PageSize/Media Size: ""
-*de.PageSize Letter/Letter - 8.5x11in: ""
-*de.PageSize Legal/Legal - 8.5x14in: ""
-*de.PageSize Executive/Executive - 7.25x10.5in: ""
-*de.PageSize Tabloid/Tabloid - 11x17in: ""
-*de.PageSize A3/A3 - 297x420mm: ""
-*de.PageSize A4/A4 - 210x297mm: ""
-*de.PageSize A5/A5 - 148x210mm: ""
-*de.PageSize B5/B5 - 182x257mm: ""
-*de.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*de.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*de.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*de.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*de.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*de.Translation InputSlot/Media Source: ""
-*de.InputSlot Default/Druckerstandard: ""
-*de.InputSlot Tray1/Fach 1: ""
-*de.InputSlot Manual/Manuell: ""
-*de.Translation Duplex/Duplexdruck: ""
-*de.Duplex None/Off (1-Sided): ""
-*de.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*de.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*de.Translation InstallableOptions/Installable Options: ""
-*de.Translation Option1/Duplexer: ""
-*de.Option1 False/Nicht Eingebaut: ""
-*de.Option1 True/Eingebaut: ""
-*es.Translation Manufacturer/Generic: ""
-*es.Translation ModelName/Generic PostScript Printer: ""
-*es.Translation ShortNickName/Generic PostScript Printer: ""
-*es.Translation NickName/Generic PostScript Printer, 1.4: ""
-*es.Translation PageSize/Media Size: ""
-*es.PageSize Letter/Letter - 8.5x11in: ""
-*es.PageSize Legal/Legal - 8.5x14in: ""
-*es.PageSize Executive/Executive - 7.25x10.5in: ""
-*es.PageSize Tabloid/Tabloid - 11x17in: ""
-*es.PageSize A3/A3 - 297x420mm: ""
-*es.PageSize A4/A4 - 210x297mm: ""
-*es.PageSize A5/A5 - 148x210mm: ""
-*es.PageSize B5/B5 - 182x257mm: ""
-*es.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*es.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*es.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*es.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*es.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*es.Translation InputSlot/Media Source: ""
-*es.InputSlot Default/Impresora por defecto: ""
-*es.InputSlot Tray1/Bandeja 1: ""
-*es.InputSlot Manual/Alimentación manual: ""
-*es.Translation Duplex/Dúplex: ""
-*es.Duplex None/Off (1-Sided): ""
-*es.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*es.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*es.Translation InstallableOptions/Installable Options: ""
-*es.Translation Option1/Duplexer: ""
-*es.Option1 False/No Instalado: ""
-*es.Option1 True/Instalada: ""
-*fi.Translation Manufacturer/Generic: ""
-*fi.Translation ModelName/Generic PostScript Printer: ""
-*fi.Translation ShortNickName/Generic PostScript Printer: ""
-*fi.Translation NickName/Generic PostScript Printer, 1.4: ""
-*fi.Translation PageSize/Media Size: ""
-*fi.PageSize Letter/Letter - 8.5x11in: ""
-*fi.PageSize Legal/Legal - 8.5x14in: ""
-*fi.PageSize Executive/Executive - 7.25x10.5in: ""
-*fi.PageSize Tabloid/Tabloid - 11x17in: ""
-*fi.PageSize A3/A3 - 297x420mm: ""
-*fi.PageSize A4/A4 - 210x297mm: ""
-*fi.PageSize A5/A5 - 148x210mm: ""
-*fi.PageSize B5/B5 - 182x257mm: ""
-*fi.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*fi.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*fi.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*fi.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*fi.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*fi.Translation InputSlot/Paperilähde: ""
-*fi.InputSlot Default/Nopea: ""
-*fi.InputSlot Tray1/Kasetti1: ""
-*fi.InputSlot Manual/Käsinsyöttö: ""
-*fi.Translation Duplex/Kaksipuolinen tulostus: ""
-*fi.Duplex None/Off (1-Sided): ""
-*fi.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*fi.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*fi.Translation InstallableOptions/Installable Options: ""
-*fi.Translation Option1/Duplexer: ""
-*fi.Option1 False/Not Installed: ""
-*fi.Option1 True/Installed: ""
-*fr.Translation Manufacturer/Generic: ""
-*fr.Translation ModelName/Generic PostScript Printer: ""
-*fr.Translation ShortNickName/Generic PostScript Printer: ""
-*fr.Translation NickName/Generic PostScript Printer, 1.4: ""
-*fr.Translation PageSize/Media Size: ""
-*fr.PageSize Letter/Letter - 8.5x11in: ""
-*fr.PageSize Legal/Legal - 8.5x14in: ""
-*fr.PageSize Executive/Executive - 7.25x10.5in: ""
-*fr.PageSize Tabloid/Tabloid - 11x17in: ""
-*fr.PageSize A3/A3 - 297x420mm: ""
-*fr.PageSize A4/A4 - 210x297mm: ""
-*fr.PageSize A5/A5 - 148x210mm: ""
-*fr.PageSize B5/B5 - 182x257mm: ""
-*fr.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*fr.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*fr.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*fr.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*fr.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*fr.Translation InputSlot/Media Source: ""
-*fr.InputSlot Default/Imprimante par défaut: ""
-*fr.InputSlot Tray1/Bac 1: ""
-*fr.InputSlot Manual/Manuel: ""
-*fr.Translation Duplex/Impression recto-verso: ""
-*fr.Duplex None/Off (1-Sided): ""
-*fr.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*fr.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*fr.Translation InstallableOptions/Installable Options: ""
-*fr.Translation Option1/Duplexer: ""
-*fr.Option1 False/Non Installée: ""
-*fr.Option1 True/Installée: ""
-*it.Translation Manufacturer/Generic: ""
-*it.Translation ModelName/Generic PostScript Printer: ""
-*it.Translation ShortNickName/Generic PostScript Printer: ""
-*it.Translation NickName/Generic PostScript Printer, 1.4: ""
-*it.Translation PageSize/Media Size: ""
-*it.PageSize Letter/Letter - 8.5x11in: ""
-*it.PageSize Legal/Legal - 8.5x14in: ""
-*it.PageSize Executive/Executive - 7.25x10.5in: ""
-*it.PageSize Tabloid/Tabloid - 11x17in: ""
-*it.PageSize A3/A3 - 297x420mm: ""
-*it.PageSize A4/A4 - 210x297mm: ""
-*it.PageSize A5/A5 - 148x210mm: ""
-*it.PageSize B5/B5 - 182x257mm: ""
-*it.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*it.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*it.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*it.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*it.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*it.Translation InputSlot/Media Source: ""
-*it.InputSlot Default/Impostazioni predefinite stampante: ""
-*it.InputSlot Tray1/Vassoio 1: ""
-*it.InputSlot Manual/Manuale: ""
-*it.Translation Duplex/Fronte-retro: ""
-*it.Duplex None/Off (1-Sided): ""
-*it.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*it.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*it.Translation InstallableOptions/Installable Options: ""
-*it.Translation Option1/Duplexer: ""
-*it.Option1 False/Non Installato: ""
-*it.Option1 True/Installata: ""
-*ja.Translation Manufacturer/Generic: ""
-*ja.Translation ModelName/Generic PostScript Printer: ""
-*ja.Translation ShortNickName/Generic PostScript Printer: ""
-*ja.Translation NickName/Generic PostScript Printer, 1.4: ""
-*ja.Translation PageSize/Media Size: ""
-*ja.PageSize Letter/Letter - 8.5x11in: ""
-*ja.PageSize Legal/Legal - 8.5x14in: ""
-*ja.PageSize Executive/Executive - 7.25x10.5in: ""
-*ja.PageSize Tabloid/Tabloid - 11x17in: ""
-*ja.PageSize A3/A3 - 297x420mm: ""
-*ja.PageSize A4/A4 - 210x297mm: ""
-*ja.PageSize A5/A5 - 148x210mm: ""
-*ja.PageSize B5/B5 - 182x257mm: ""
-*ja.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*ja.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*ja.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*ja.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*ja.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*ja.Translation InputSlot/Media Source: ""
-*ja.InputSlot Default/システムデフォルト: ""
-*ja.InputSlot Tray1/カセット 1: ""
-*ja.InputSlot Manual/手差し: ""
-*ja.Translation Duplex/両面印刷: ""
-*ja.Duplex None/Off (1-Sided): ""
-*ja.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*ja.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*ja.Translation InstallableOptions/Installable Options: ""
-*ja.Translation Option1/Duplexer: ""
-*ja.Option1 False/インストールされていません: ""
-*ja.Option1 True/インストール済み: ""
-*ko.Translation Manufacturer/Generic: ""
-*ko.Translation ModelName/Generic PostScript Printer: ""
-*ko.Translation ShortNickName/Generic PostScript Printer: ""
-*ko.Translation NickName/Generic PostScript Printer, 1.4: ""
-*ko.Translation PageSize/Page Size: ""
-*ko.PageSize Letter/Letter - 8.5x11in: ""
-*ko.PageSize Legal/Legal - 8.5x14in: ""
-*ko.PageSize Executive/Executive - 7.25x10.5in: ""
-*ko.PageSize Tabloid/Tabloid - 11x17in: ""
-*ko.PageSize A3/A3 - 297x420mm: ""
-*ko.PageSize A4/A4 - 210x297mm: ""
-*ko.PageSize A5/A5 - 148x210mm: ""
-*ko.PageSize B5/B5 - 182x257mm: ""
-*ko.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*ko.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*ko.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*ko.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*ko.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*ko.Translation InputSlot/용지함: ""
-*ko.InputSlot Default/빠르게: ""
-*ko.InputSlot Tray1/트레이 1: ""
-*ko.InputSlot Manual/수동: ""
-*ko.Translation Duplex/양면인쇄: ""
-*ko.Duplex None/Off (1-Sided): ""
-*ko.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*ko.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*ko.Translation InstallableOptions/Installable Options: ""
-*ko.Translation Option1/Duplexer: ""
-*ko.Option1 False/설치 안됨: ""
-*ko.Option1 True/설치됨: ""
-*nl.Translation Manufacturer/Generic: ""
-*nl.Translation ModelName/Generic PostScript Printer: ""
-*nl.Translation ShortNickName/Generic PostScript Printer: ""
-*nl.Translation NickName/Generic PostScript Printer, 1.4: ""
-*nl.Translation PageSize/Media Size: ""
-*nl.PageSize Letter/Letter - 8.5x11in: ""
-*nl.PageSize Legal/Legal - 8.5x14in: ""
-*nl.PageSize Executive/Executive - 7.25x10.5in: ""
-*nl.PageSize Tabloid/Tabloid - 11x17in: ""
-*nl.PageSize A3/A3 - 297x420mm: ""
-*nl.PageSize A4/A4 - 210x297mm: ""
-*nl.PageSize A5/A5 - 148x210mm: ""
-*nl.PageSize B5/B5 - 182x257mm: ""
-*nl.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*nl.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*nl.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*nl.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*nl.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*nl.Translation InputSlot/Media Source: ""
-*nl.InputSlot Default/Printerstandaard: ""
-*nl.InputSlot Tray1/Lade 1: ""
-*nl.InputSlot Manual/Handmatig: ""
-*nl.Translation Duplex/Dubbelzijdig afdrukken: ""
-*nl.Duplex None/Off (1-Sided): ""
-*nl.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*nl.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*nl.Translation InstallableOptions/Installable Options: ""
-*nl.Translation Option1/Duplexer: ""
-*nl.Option1 False/Niet geïnstalleerd: ""
-*nl.Option1 True/Installed: ""
-*no.Translation Manufacturer/Generic: ""
-*no.Translation ModelName/Generic PostScript Printer: ""
-*no.Translation ShortNickName/Generic PostScript Printer: ""
-*no.Translation NickName/Generic PostScript Printer, 1.4: ""
-*no.Translation PageSize/Media Size: ""
-*no.PageSize Letter/Letter - 8.5x11in: ""
-*no.PageSize Legal/Legal - 8.5x14in: ""
-*no.PageSize Executive/Executive - 7.25x10.5in: ""
-*no.PageSize Tabloid/Tabloid - 11x17in: ""
-*no.PageSize A3/A3 - 297x420mm: ""
-*no.PageSize A4/A4 - 210x297mm: ""
-*no.PageSize A5/A5 - 148x210mm: ""
-*no.PageSize B5/B5 - 182x257mm: ""
-*no.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*no.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*no.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*no.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*no.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*no.Translation InputSlot/Media Source: ""
-*no.InputSlot Default/Skriverstandard: ""
-*no.InputSlot Tray1/Skuff 1: ""
-*no.InputSlot Manual/Handmatig: ""
-*no.Translation Duplex/Tosidig: ""
-*no.Duplex None/Off (1-Sided): ""
-*no.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*no.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*no.Translation InstallableOptions/Installable Options: ""
-*no.Translation Option1/Duplexer: ""
-*no.Option1 False/Not Installed: ""
-*no.Option1 True/Installed: ""
-*pt.Translation Manufacturer/Generic: ""
-*pt.Translation ModelName/Generic PostScript Printer: ""
-*pt.Translation ShortNickName/Generic PostScript Printer: ""
-*pt.Translation NickName/Generic PostScript Printer, 1.4: ""
-*pt.Translation PageSize/Media Size: ""
-*pt.PageSize Letter/Letter - 8.5x11in: ""
-*pt.PageSize Legal/Legal - 8.5x14in: ""
-*pt.PageSize Executive/Executive - 7.25x10.5in: ""
-*pt.PageSize Tabloid/Tabloid - 11x17in: ""
-*pt.PageSize A3/A3 - 297x420mm: ""
-*pt.PageSize A4/A4 - 210x297mm: ""
-*pt.PageSize A5/A5 - 148x210mm: ""
-*pt.PageSize B5/B5 - 182x257mm: ""
-*pt.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*pt.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*pt.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*pt.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*pt.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*pt.Translation InputSlot/Media Source: ""
-*pt.InputSlot Default/Rápido: ""
-*pt.InputSlot Tray1/Bandeja 1: ""
-*pt.InputSlot Manual/Alimentação Manual: ""
-*pt.Translation Duplex/Impressão em Frente e Verso: ""
-*pt.Duplex None/Off (1-Sided): ""
-*pt.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*pt.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*pt.Translation InstallableOptions/Installable Options: ""
-*pt.Translation Option1/Duplexer: ""
-*pt.Option1 False/Não instalado: ""
-*pt.Option1 True/Instalada: ""
-*pt_BR.Translation Manufacturer/Generic: ""
-*pt_BR.Translation ModelName/Generic PostScript Printer: ""
-*pt_BR.Translation ShortNickName/Generic PostScript Printer: ""
-*pt_BR.Translation NickName/Generic PostScript Printer, 1.4: ""
-*pt_BR.Translation PageSize/Media Size: ""
-*pt_BR.PageSize Letter/Letter - 8.5x11in: ""
-*pt_BR.PageSize Legal/Legal - 8.5x14in: ""
-*pt_BR.PageSize Executive/Executive - 7.25x10.5in: ""
-*pt_BR.PageSize Tabloid/Tabloid - 11x17in: ""
-*pt_BR.PageSize A3/A3 - 297x420mm: ""
-*pt_BR.PageSize A4/A4 - 210x297mm: ""
-*pt_BR.PageSize A5/A5 - 148x210mm: ""
-*pt_BR.PageSize B5/B5 - 182x257mm: ""
-*pt_BR.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*pt_BR.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*pt_BR.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*pt_BR.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*pt_BR.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*pt_BR.Translation InputSlot/Media Source: ""
-*pt_BR.InputSlot Default/Rápido: ""
-*pt_BR.InputSlot Tray1/Bandeja 1: ""
-*pt_BR.InputSlot Manual/Alimentação Manual: ""
-*pt_BR.Translation Duplex/Impressão em Frente e Verso: ""
-*pt_BR.Duplex None/Off (1-Sided): ""
-*pt_BR.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*pt_BR.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*pt_BR.Translation InstallableOptions/Installable Options: ""
-*pt_BR.Translation Option1/Duplexer: ""
-*pt_BR.Option1 False/Não instalado: ""
-*pt_BR.Option1 True/Instalada: ""
-*sv.Translation Manufacturer/Generic: ""
-*sv.Translation ModelName/Generic PostScript Printer: ""
-*sv.Translation ShortNickName/Generic PostScript Printer: ""
-*sv.Translation NickName/Generic PostScript Printer, 1.4: ""
-*sv.Translation PageSize/Media Size: ""
-*sv.PageSize Letter/Letter - 8.5x11in: ""
-*sv.PageSize Legal/Legal - 8.5x14in: ""
-*sv.PageSize Executive/Executive - 7.25x10.5in: ""
-*sv.PageSize Tabloid/Tabloid - 11x17in: ""
-*sv.PageSize A3/A3 - 297x420mm: ""
-*sv.PageSize A4/A4 - 210x297mm: ""
-*sv.PageSize A5/A5 - 148x210mm: ""
-*sv.PageSize B5/B5 - 182x257mm: ""
-*sv.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*sv.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*sv.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*sv.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*sv.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*sv.Translation InputSlot/Media Source: ""
-*sv.InputSlot Default/Skrivarstandard: ""
-*sv.InputSlot Tray1/Fack 1: ""
-*sv.InputSlot Manual/Manuell: ""
-*sv.Translation Duplex/Dubbelsidig utskrift: ""
-*sv.Duplex None/Off (1-Sided): ""
-*sv.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*sv.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*sv.Translation InstallableOptions/Installable Options: ""
-*sv.Translation Option1/Duplexer: ""
-*sv.Option1 False/Ej installerad: ""
-*sv.Option1 True/Installed: ""
-*zh.Translation Manufacturer/Generic: ""
-*zh.Translation ModelName/Generic PostScript Printer: ""
-*zh.Translation ShortNickName/Generic PostScript Printer: ""
-*zh.Translation NickName/Generic PostScript Printer, 1.4: ""
-*zh.Translation PageSize/Page Size: ""
-*zh.PageSize Letter/Letter - 8.5x11in: ""
-*zh.PageSize Legal/Legal - 8.5x14in: ""
-*zh.PageSize Executive/Executive - 7.25x10.5in: ""
-*zh.PageSize Tabloid/Tabloid - 11x17in: ""
-*zh.PageSize A3/A3 - 297x420mm: ""
-*zh.PageSize A4/A4 - 210x297mm: ""
-*zh.PageSize A5/A5 - 148x210mm: ""
-*zh.PageSize B5/B5 - 182x257mm: ""
-*zh.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*zh.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*zh.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*zh.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*zh.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*zh.Translation InputSlot/Paper Source: ""
-*zh.InputSlot Default/Printer's Current Setting: ""
-*zh.InputSlot Tray1/Tray 1: ""
-*zh.InputSlot Manual/手动: ""
-*zh.Translation Duplex/2-Sided Printing: ""
-*zh.Duplex None/Off (1-Sided): ""
-*zh.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*zh.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*zh.Translation InstallableOptions/Installable Options: ""
-*zh.Translation Option1/Duplexer: ""
-*zh.Option1 False/Not Installed: ""
-*zh.Option1 True/Installed: ""
-*zh_TW.Translation Manufacturer/Generic: ""
-*zh_TW.Translation ModelName/Generic PostScript Printer: ""
-*zh_TW.Translation ShortNickName/Generic PostScript Printer: ""
-*zh_TW.Translation NickName/Generic PostScript Printer, 1.4: ""
-*zh_TW.Translation PageSize/Page Size: ""
-*zh_TW.PageSize Letter/Letter - 8.5x11in: ""
-*zh_TW.PageSize Legal/Legal - 8.5x14in: ""
-*zh_TW.PageSize Executive/Executive - 7.25x10.5in: ""
-*zh_TW.PageSize Tabloid/Tabloid - 11x17in: ""
-*zh_TW.PageSize A3/A3 - 297x420mm: ""
-*zh_TW.PageSize A4/A4 - 210x297mm: ""
-*zh_TW.PageSize A5/A5 - 148x210mm: ""
-*zh_TW.PageSize B5/B5 - 182x257mm: ""
-*zh_TW.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*zh_TW.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*zh_TW.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*zh_TW.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*zh_TW.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*zh_TW.Translation InputSlot/紙張來源: ""
-*zh_TW.InputSlot Default/快速: ""
-*zh_TW.InputSlot Tray1/裝紙匣 1: ""
-*zh_TW.InputSlot Manual/手動: ""
-*zh_TW.Translation Duplex/雙面列印: ""
-*zh_TW.Duplex None/Off (1-Sided): ""
-*zh_TW.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*zh_TW.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*zh_TW.Translation InstallableOptions/Installable Options: ""
-*zh_TW.Translation Option1/Duplexer: ""
-*zh_TW.Option1 False/未安裝: ""
-*zh_TW.Option1 True/已安裝: ""
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(1.05)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
-*Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
-*Font Bookman-Demi: Standard "(1.05)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
-*Font Bookman-Light: Standard "(1.05)" Standard ROM
-*Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
-*Font Courier: Standard "(1.05)" Standard ROM
-*Font Courier-Bold: Standard "(1.05)" Standard ROM
-*Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Courier-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica: Standard "(1.05)" Standard ROM
-*Font Helvetica-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
-*Font Palatino-Bold: Standard "(1.05)" Standard ROM
-*Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Palatino-Italic: Standard "(1.05)" Standard ROM
-*Font Palatino-Roman: Standard "(1.05)" Standard ROM
-*Font Symbol: Special "(001.005)" Special ROM
-*Font Times-Bold: Standard "(1.05)" Standard ROM
-*Font Times-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Times-Italic: Standard "(1.05)" Standard ROM
-*Font Times-Roman: Standard "(1.05)" Standard ROM
-*Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
-*Font ZapfDingbats: Special "(001.005)" Special ROM
-*% End of GENERIC.PPD, 28875 bytes.
diff --git a/ppd/generpcl.ppd b/ppd/generpcl.ppd
deleted file mode 100644 (file)
index acd0abd..0000000
+++ /dev/null
@@ -1,742 +0,0 @@
-*PPD-Adobe: "4.3"
-*% PPD file for PCL Laser Printer with CUPS.
-*% Created by the CUPS PPD Compiler v1.2.4.
-*% Copyright 2007 by Apple Inc.
-*% Copyright 1997-2007 by Easy Software Products.
-*% 
-*% These coded instructions, statements, and computer programs are the
-*% property of Apple Inc. and are protected by Federal copyright
-*% law.  Distribution and use rights are outlined in the file "LICENSE.txt"
-*% which should have been included with this file.  If this file is
-*% file is missing or damaged, see the license at "http://www.cups.org/".
-*FormatVersion: "4.3"
-*FileVersion: "1.4"
-*LanguageVersion: English
-*LanguageEncoding: ISOLatin1
-*PCFileName: "GENERPCL.PPD"
-*Product: "(ESP Ghostscript)"
-*Product: "(GPL Ghostscript)"
-*Manufacturer: "Generic"
-*ModelName: "Generic PCL Laser Printer"
-*ShortNickName: "Generic PCL Laser Printer"
-*NickName: "Generic PCL Laser Printer, 1.4"
-*PSVersion: "(3010.000) 81504"
-*PSVersion: "(3010.000) 860"
-*LanguageLevel: "3"
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*FileSystem: False
-*Throughput: "8"
-*LandscapeOrientation: Plus90
-*TTRasterizer: Type42
-*% Driver-defined attributes...
-*cupsVersion: 1.4
-*cupsModelNumber: 0
-*cupsManualCopies: False
-*cupsFilter: "application/vnd.cups-raster 50 rastertohp"
-*cupsLanguages: "en da de es fi fr it ja ko nl no pt pt_BR sv zh zh_TW"
-*UIConstraints: *Duplex *Option1 False
-*UIConstraints: *Option1 False *Duplex
-*UIConstraints: *PageSize A3 *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageSize A3
-*UIConstraints: *PageSize A4 *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageSize A4
-*UIConstraints: *PageSize A5 *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageSize A5
-*UIConstraints: *PageSize B5 *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageSize B5
-*UIConstraints: *PageSize Executive *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageSize Executive
-*UIConstraints: *PageSize Legal *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageSize Legal
-*UIConstraints: *PageSize Letter *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageSize Letter
-*UIConstraints: *PageSize Tabloid *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageSize Tabloid
-*OpenUI *PageSize/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageSize Executive/Executive - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
-*PageSize Tabloid/Tabloid - 11x17in: "<</PageSize[792 1224]/ImagingBBox null>>setpagedevice"
-*PageSize A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
-*PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*PageSize A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
-*PageSize B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
-*PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
-*PageSize Env10/#10 Envelope - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
-*PageSize EnvC5/C5 Envelope - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
-*PageSize EnvDL/DL Envelope - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
-*PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageSize
-*OpenUI *PageRegion/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageRegion Executive/Executive - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
-*PageRegion Tabloid/Tabloid - 11x17in: "<</PageSize[792 1224]/ImagingBBox null>>setpagedevice"
-*PageRegion A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
-*PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*PageRegion A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
-*PageRegion B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
-*PageRegion EnvISOB5/ISOB5 Envelope - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
-*PageRegion Env10/#10 Envelope - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
-*PageRegion EnvC5/C5 Envelope - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
-*PageRegion EnvDL/DL Envelope - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
-*PageRegion EnvMonarch/Monarch Envelope - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageRegion
-*DefaultImageableArea: Letter
-*ImageableArea Letter/Letter - 8.5x11in: "18.00 12.00 594.00 780.00"
-*ImageableArea Legal/Legal - 8.5x14in: "18.00 12.00 594.00 996.00"
-*ImageableArea Executive/Executive - 7.25x10.5in: "18.00 12.00 504.00 744.00"
-*ImageableArea Tabloid/Tabloid - 11x17in: "18.00 12.00 774.00 1212.00"
-*ImageableArea A3/A3 - 297x420mm: "18.00 12.00 824.00 1179.00"
-*ImageableArea A4/A4 - 210x297mm: "18.00 12.00 577.00 830.00"
-*ImageableArea A5/A5 - 148x210mm: "18.00 12.00 402.00 583.00"
-*ImageableArea B5/B5 - 182x257mm: "18.00 12.00 498.00 717.00"
-*ImageableArea EnvISOB5/ISOB5 Envelope - 176x250mm: "18.00 12.00 481.00 697.00"
-*ImageableArea Env10/#10 Envelope - 4.13x9.5in: "18.00 12.00 279.00 672.00"
-*ImageableArea EnvC5/C5 Envelope - 162x229mm: "18.00 12.00 441.00 637.00"
-*ImageableArea EnvDL/DL Envelope - 110x220mm: "18.00 12.00 294.00 612.00"
-*ImageableArea EnvMonarch/Monarch Envelope - 3.875x7.5in: "18.00 12.00 261.00 528.00"
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/Letter - 8.5x11in: "612.00 792.00"
-*PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
-*PaperDimension Executive/Executive - 7.25x10.5in: "522.00 756.00"
-*PaperDimension Tabloid/Tabloid - 11x17in: "792.00 1224.00"
-*PaperDimension A3/A3 - 297x420mm: "842.00 1191.00"
-*PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
-*PaperDimension A5/A5 - 148x210mm: "420.00 595.00"
-*PaperDimension B5/B5 - 182x257mm: "516.00 729.00"
-*PaperDimension EnvISOB5/ISOB5 Envelope - 176x250mm: "499.00 709.00"
-*PaperDimension Env10/#10 Envelope - 4.13x9.5in: "297.00 684.00"
-*PaperDimension EnvC5/C5 Envelope - 162x229mm: "459.00 649.00"
-*PaperDimension EnvDL/DL Envelope - 110x220mm: "312.00 624.00"
-*PaperDimension EnvMonarch/Monarch Envelope - 3.875x7.5in: "279.00 540.00"
-*RequiresPageRegion All: True
-*OpenUI *Resolution: PickOne
-*OrderDependency: 10.0 AnySetup *Resolution
-*DefaultResolution: 300dpi
-*Resolution 300dpi: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*Resolution 600dpi: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*CloseUI: *Resolution
-*OpenUI *InputSlot/Media Source: PickOne
-*OrderDependency: 10.0 AnySetup *InputSlot
-*DefaultInputSlot: Default
-*InputSlot Default/Printer Default: "<</MediaPosition 0>>setpagedevice"
-*InputSlot Tray1/Tray 1: "<</MediaPosition 8>>setpagedevice"
-*InputSlot Tray2/Tray 2: "<</MediaPosition 1>>setpagedevice"
-*InputSlot Tray3/Tray 3: "<</MediaPosition 4>>setpagedevice"
-*InputSlot Tray4/Tray 4: "<</MediaPosition 5>>setpagedevice"
-*InputSlot Manual/Manual Feed: "<</MediaPosition 2>>setpagedevice"
-*InputSlot Envelope/Envelope Feed: "<</MediaPosition 3>>setpagedevice"
-*CloseUI: *InputSlot
-*OpenUI *Duplex/2-Sided Printing: PickOne
-*OrderDependency: 10.0 AnySetup *Duplex
-*DefaultDuplex: None
-*Duplex None/Off (1-Sided): "<</Duplex false>>setpagedevice"
-*Duplex DuplexNoTumble/Long-Edge (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
-*Duplex DuplexTumble/Short-Edge (Landscape): "<</Duplex true/Tumble true>>setpagedevice"
-*CloseUI: *Duplex
-*OpenGroup: InstallableOptions/Installable Options
-*OpenUI *Option1/Duplexer: Boolean
-*OrderDependency: 10.0 AnySetup *Option1
-*DefaultOption1: False
-*Option1 False/Not Installed: ""
-*Option1 True/Installed: ""
-*CloseUI: *Option1
-*CloseGroup: InstallableOptions
-*da.Translation Manufacturer/Generic: ""
-*da.Translation ModelName/Generic PCL Laser Printer: ""
-*da.Translation ShortNickName/Generic PCL Laser Printer: ""
-*da.Translation NickName/Generic PCL Laser Printer, 1.4: ""
-*da.Translation PageSize/Media Size: ""
-*da.PageSize Letter/Letter - 8.5x11in: ""
-*da.PageSize Legal/Legal - 8.5x14in: ""
-*da.PageSize Executive/Executive - 7.25x10.5in: ""
-*da.PageSize Tabloid/Tabloid - 11x17in: ""
-*da.PageSize A3/A3 - 297x420mm: ""
-*da.PageSize A4/A4 - 210x297mm: ""
-*da.PageSize A5/A5 - 148x210mm: ""
-*da.PageSize B5/B5 - 182x257mm: ""
-*da.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*da.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*da.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*da.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*da.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*da.Translation Resolution/Resolution: ""
-*da.Resolution 300dpi/300dpi: ""
-*da.Resolution 600dpi/600dpi: ""
-*da.Translation InputSlot/Media Source: ""
-*da.InputSlot Default/Printerstandard: ""
-*da.InputSlot Tray1/Bakke 1: ""
-*da.InputSlot Tray2/Magasin 2: ""
-*da.InputSlot Tray3/Magasin 3: ""
-*da.InputSlot Tray4/Bakke 4: ""
-*da.InputSlot Manual/Manuel: ""
-*da.InputSlot Envelope/Envelope Feed: ""
-*da.Translation Duplex/Dupleks: ""
-*da.Duplex None/Off (1-Sided): ""
-*da.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*da.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*da.Translation InstallableOptions/Installable Options: ""
-*da.Translation Option1/Duplexer: ""
-*da.Option1 False/Ikke installeret: ""
-*da.Option1 True/Installed: ""
-*de.Translation Manufacturer/Generic: ""
-*de.Translation ModelName/Generic PCL Laser Printer: ""
-*de.Translation ShortNickName/Generic PCL Laser Printer: ""
-*de.Translation NickName/Generic PCL Laser Printer, 1.4: ""
-*de.Translation PageSize/Media Size: ""
-*de.PageSize Letter/Letter - 8.5x11in: ""
-*de.PageSize Legal/Legal - 8.5x14in: ""
-*de.PageSize Executive/Executive - 7.25x10.5in: ""
-*de.PageSize Tabloid/Tabloid - 11x17in: ""
-*de.PageSize A3/A3 - 297x420mm: ""
-*de.PageSize A4/A4 - 210x297mm: ""
-*de.PageSize A5/A5 - 148x210mm: ""
-*de.PageSize B5/B5 - 182x257mm: ""
-*de.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*de.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*de.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*de.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*de.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*de.Translation Resolution/Resolution: ""
-*de.Resolution 300dpi/300dpi: ""
-*de.Resolution 600dpi/600dpi: ""
-*de.Translation InputSlot/Media Source: ""
-*de.InputSlot Default/Druckerstandard: ""
-*de.InputSlot Tray1/Fach 1: ""
-*de.InputSlot Tray2/Fach 2: ""
-*de.InputSlot Tray3/Fach 3: ""
-*de.InputSlot Tray4/Zufuhrfach 4: ""
-*de.InputSlot Manual/Manuell: ""
-*de.InputSlot Envelope/Envelope Feed: ""
-*de.Translation Duplex/Duplexdruck: ""
-*de.Duplex None/Off (1-Sided): ""
-*de.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*de.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*de.Translation InstallableOptions/Installable Options: ""
-*de.Translation Option1/Duplexer: ""
-*de.Option1 False/Nicht Eingebaut: ""
-*de.Option1 True/Eingebaut: ""
-*es.Translation Manufacturer/Generic: ""
-*es.Translation ModelName/Generic PCL Laser Printer: ""
-*es.Translation ShortNickName/Generic PCL Laser Printer: ""
-*es.Translation NickName/Generic PCL Laser Printer, 1.4: ""
-*es.Translation PageSize/Media Size: ""
-*es.PageSize Letter/Letter - 8.5x11in: ""
-*es.PageSize Legal/Legal - 8.5x14in: ""
-*es.PageSize Executive/Executive - 7.25x10.5in: ""
-*es.PageSize Tabloid/Tabloid - 11x17in: ""
-*es.PageSize A3/A3 - 297x420mm: ""
-*es.PageSize A4/A4 - 210x297mm: ""
-*es.PageSize A5/A5 - 148x210mm: ""
-*es.PageSize B5/B5 - 182x257mm: ""
-*es.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*es.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*es.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*es.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*es.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*es.Translation Resolution/Resolution: ""
-*es.Resolution 300dpi/300dpi: ""
-*es.Resolution 600dpi/600dpi: ""
-*es.Translation InputSlot/Media Source: ""
-*es.InputSlot Default/Impresora por defecto: ""
-*es.InputSlot Tray1/Bandeja 1: ""
-*es.InputSlot Tray2/Bandeja 2: ""
-*es.InputSlot Tray3/Bandeja 3: ""
-*es.InputSlot Tray4/Bandeja 4: ""
-*es.InputSlot Manual/Alimentación manual: ""
-*es.InputSlot Envelope/Envelope Feed: ""
-*es.Translation Duplex/Dúplex: ""
-*es.Duplex None/Off (1-Sided): ""
-*es.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*es.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*es.Translation InstallableOptions/Installable Options: ""
-*es.Translation Option1/Duplexer: ""
-*es.Option1 False/No Instalado: ""
-*es.Option1 True/Instalada: ""
-*fi.Translation Manufacturer/Generic: ""
-*fi.Translation ModelName/Generic PCL Laser Printer: ""
-*fi.Translation ShortNickName/Generic PCL Laser Printer: ""
-*fi.Translation NickName/Generic PCL Laser Printer, 1.4: ""
-*fi.Translation PageSize/Media Size: ""
-*fi.PageSize Letter/Letter - 8.5x11in: ""
-*fi.PageSize Legal/Legal - 8.5x14in: ""
-*fi.PageSize Executive/Executive - 7.25x10.5in: ""
-*fi.PageSize Tabloid/Tabloid - 11x17in: ""
-*fi.PageSize A3/A3 - 297x420mm: ""
-*fi.PageSize A4/A4 - 210x297mm: ""
-*fi.PageSize A5/A5 - 148x210mm: ""
-*fi.PageSize B5/B5 - 182x257mm: ""
-*fi.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*fi.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*fi.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*fi.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*fi.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*fi.Translation Resolution/Resolution: ""
-*fi.Resolution 300dpi/300dpi: ""
-*fi.Resolution 600dpi/600dpi: ""
-*fi.Translation InputSlot/Paperilähde: ""
-*fi.InputSlot Default/Nopea: ""
-*fi.InputSlot Tray1/Kasetti1: ""
-*fi.InputSlot Tray2/Kasetti2: ""
-*fi.InputSlot Tray3/Alusta 3: ""
-*fi.InputSlot Tray4/Lokero 4: ""
-*fi.InputSlot Manual/Käsinsyöttö: ""
-*fi.InputSlot Envelope/Envelope Feed: ""
-*fi.Translation Duplex/Kaksipuolinen tulostus: ""
-*fi.Duplex None/Off (1-Sided): ""
-*fi.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*fi.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*fi.Translation InstallableOptions/Installable Options: ""
-*fi.Translation Option1/Duplexer: ""
-*fi.Option1 False/Not Installed: ""
-*fi.Option1 True/Installed: ""
-*fr.Translation Manufacturer/Generic: ""
-*fr.Translation ModelName/Generic PCL Laser Printer: ""
-*fr.Translation ShortNickName/Generic PCL Laser Printer: ""
-*fr.Translation NickName/Generic PCL Laser Printer, 1.4: ""
-*fr.Translation PageSize/Media Size: ""
-*fr.PageSize Letter/Letter - 8.5x11in: ""
-*fr.PageSize Legal/Legal - 8.5x14in: ""
-*fr.PageSize Executive/Executive - 7.25x10.5in: ""
-*fr.PageSize Tabloid/Tabloid - 11x17in: ""
-*fr.PageSize A3/A3 - 297x420mm: ""
-*fr.PageSize A4/A4 - 210x297mm: ""
-*fr.PageSize A5/A5 - 148x210mm: ""
-*fr.PageSize B5/B5 - 182x257mm: ""
-*fr.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*fr.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*fr.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*fr.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*fr.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*fr.Translation Resolution/Resolution: ""
-*fr.Resolution 300dpi/300dpi: ""
-*fr.Resolution 600dpi/600dpi: ""
-*fr.Translation InputSlot/Media Source: ""
-*fr.InputSlot Default/Imprimante par défaut: ""
-*fr.InputSlot Tray1/Bac 1: ""
-*fr.InputSlot Tray2/Bac 2: ""
-*fr.InputSlot Tray3/Bac 3: ""
-*fr.InputSlot Tray4/Bac 4: ""
-*fr.InputSlot Manual/Manuel: ""
-*fr.InputSlot Envelope/Envelope Feed: ""
-*fr.Translation Duplex/Impression recto-verso: ""
-*fr.Duplex None/Off (1-Sided): ""
-*fr.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*fr.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*fr.Translation InstallableOptions/Installable Options: ""
-*fr.Translation Option1/Duplexer: ""
-*fr.Option1 False/Non Installée: ""
-*fr.Option1 True/Installée: ""
-*it.Translation Manufacturer/Generic: ""
-*it.Translation ModelName/Generic PCL Laser Printer: ""
-*it.Translation ShortNickName/Generic PCL Laser Printer: ""
-*it.Translation NickName/Generic PCL Laser Printer, 1.4: ""
-*it.Translation PageSize/Media Size: ""
-*it.PageSize Letter/Letter - 8.5x11in: ""
-*it.PageSize Legal/Legal - 8.5x14in: ""
-*it.PageSize Executive/Executive - 7.25x10.5in: ""
-*it.PageSize Tabloid/Tabloid - 11x17in: ""
-*it.PageSize A3/A3 - 297x420mm: ""
-*it.PageSize A4/A4 - 210x297mm: ""
-*it.PageSize A5/A5 - 148x210mm: ""
-*it.PageSize B5/B5 - 182x257mm: ""
-*it.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*it.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*it.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*it.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*it.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*it.Translation Resolution/Resolution: ""
-*it.Resolution 300dpi/300dpi: ""
-*it.Resolution 600dpi/600dpi: ""
-*it.Translation InputSlot/Media Source: ""
-*it.InputSlot Default/Impostazioni predefinite stampante: ""
-*it.InputSlot Tray1/Vassoio 1: ""
-*it.InputSlot Tray2/Cassetto 2: ""
-*it.InputSlot Tray3/Cassetto 3: ""
-*it.InputSlot Tray4/Vassoio 4: ""
-*it.InputSlot Manual/Manuale: ""
-*it.InputSlot Envelope/Envelope Feed: ""
-*it.Translation Duplex/Fronte-retro: ""
-*it.Duplex None/Off (1-Sided): ""
-*it.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*it.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*it.Translation InstallableOptions/Installable Options: ""
-*it.Translation Option1/Duplexer: ""
-*it.Option1 False/Non Installato: ""
-*it.Option1 True/Installata: ""
-*ja.Translation Manufacturer/Generic: ""
-*ja.Translation ModelName/Generic PCL Laser Printer: ""
-*ja.Translation ShortNickName/Generic PCL Laser Printer: ""
-*ja.Translation NickName/Generic PCL Laser Printer, 1.4: ""
-*ja.Translation PageSize/Media Size: ""
-*ja.PageSize Letter/Letter - 8.5x11in: ""
-*ja.PageSize Legal/Legal - 8.5x14in: ""
-*ja.PageSize Executive/Executive - 7.25x10.5in: ""
-*ja.PageSize Tabloid/Tabloid - 11x17in: ""
-*ja.PageSize A3/A3 - 297x420mm: ""
-*ja.PageSize A4/A4 - 210x297mm: ""
-*ja.PageSize A5/A5 - 148x210mm: ""
-*ja.PageSize B5/B5 - 182x257mm: ""
-*ja.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*ja.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*ja.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*ja.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*ja.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*ja.Translation Resolution/Resolution: ""
-*ja.Resolution 300dpi/300dpi: ""
-*ja.Resolution 600dpi/600dpi: ""
-*ja.Translation InputSlot/Media Source: ""
-*ja.InputSlot Default/システムデフォルト: ""
-*ja.InputSlot Tray1/カセット 1: ""
-*ja.InputSlot Tray2/カセット 2: ""
-*ja.InputSlot Tray3/カセット 3: ""
-*ja.InputSlot Tray4/トレイ 4: ""
-*ja.InputSlot Manual/手差し: ""
-*ja.InputSlot Envelope/Envelope Feed: ""
-*ja.Translation Duplex/両面印刷: ""
-*ja.Duplex None/Off (1-Sided): ""
-*ja.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*ja.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*ja.Translation InstallableOptions/Installable Options: ""
-*ja.Translation Option1/Duplexer: ""
-*ja.Option1 False/インストールされていません: ""
-*ja.Option1 True/インストール済み: ""
-*ko.Translation Manufacturer/Generic: ""
-*ko.Translation ModelName/Generic PCL Laser Printer: ""
-*ko.Translation ShortNickName/Generic PCL Laser Printer: ""
-*ko.Translation NickName/Generic PCL Laser Printer, 1.4: ""
-*ko.Translation PageSize/Page Size: ""
-*ko.PageSize Letter/Letter - 8.5x11in: ""
-*ko.PageSize Legal/Legal - 8.5x14in: ""
-*ko.PageSize Executive/Executive - 7.25x10.5in: ""
-*ko.PageSize Tabloid/Tabloid - 11x17in: ""
-*ko.PageSize A3/A3 - 297x420mm: ""
-*ko.PageSize A4/A4 - 210x297mm: ""
-*ko.PageSize A5/A5 - 148x210mm: ""
-*ko.PageSize B5/B5 - 182x257mm: ""
-*ko.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*ko.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*ko.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*ko.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*ko.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*ko.Translation Resolution/Resolution: ""
-*ko.Resolution 300dpi/300dpi: ""
-*ko.Resolution 600dpi/600dpi: ""
-*ko.Translation InputSlot/용지함: ""
-*ko.InputSlot Default/빠르게: ""
-*ko.InputSlot Tray1/트레이 1: ""
-*ko.InputSlot Tray2/용지함 2: ""
-*ko.InputSlot Tray3/용지함 3: ""
-*ko.InputSlot Tray4/용지함 4: ""
-*ko.InputSlot Manual/수동: ""
-*ko.InputSlot Envelope/Envelope Feed: ""
-*ko.Translation Duplex/양면인쇄: ""
-*ko.Duplex None/Off (1-Sided): ""
-*ko.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*ko.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*ko.Translation InstallableOptions/Installable Options: ""
-*ko.Translation Option1/Duplexer: ""
-*ko.Option1 False/설치 안됨: ""
-*ko.Option1 True/설치됨: ""
-*nl.Translation Manufacturer/Generic: ""
-*nl.Translation ModelName/Generic PCL Laser Printer: ""
-*nl.Translation ShortNickName/Generic PCL Laser Printer: ""
-*nl.Translation NickName/Generic PCL Laser Printer, 1.4: ""
-*nl.Translation PageSize/Media Size: ""
-*nl.PageSize Letter/Letter - 8.5x11in: ""
-*nl.PageSize Legal/Legal - 8.5x14in: ""
-*nl.PageSize Executive/Executive - 7.25x10.5in: ""
-*nl.PageSize Tabloid/Tabloid - 11x17in: ""
-*nl.PageSize A3/A3 - 297x420mm: ""
-*nl.PageSize A4/A4 - 210x297mm: ""
-*nl.PageSize A5/A5 - 148x210mm: ""
-*nl.PageSize B5/B5 - 182x257mm: ""
-*nl.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*nl.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*nl.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*nl.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*nl.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*nl.Translation Resolution/Resolution: ""
-*nl.Resolution 300dpi/300dpi: ""
-*nl.Resolution 600dpi/600dpi: ""
-*nl.Translation InputSlot/Media Source: ""
-*nl.InputSlot Default/Printerstandaard: ""
-*nl.InputSlot Tray1/Lade 1: ""
-*nl.InputSlot Tray2/Lade 2: ""
-*nl.InputSlot Tray3/Lade 3: ""
-*nl.InputSlot Tray4/Lade 4: ""
-*nl.InputSlot Manual/Handmatig: ""
-*nl.InputSlot Envelope/Envelope Feed: ""
-*nl.Translation Duplex/Dubbelzijdig afdrukken: ""
-*nl.Duplex None/Off (1-Sided): ""
-*nl.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*nl.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*nl.Translation InstallableOptions/Installable Options: ""
-*nl.Translation Option1/Duplexer: ""
-*nl.Option1 False/Niet geïnstalleerd: ""
-*nl.Option1 True/Installed: ""
-*no.Translation Manufacturer/Generic: ""
-*no.Translation ModelName/Generic PCL Laser Printer: ""
-*no.Translation ShortNickName/Generic PCL Laser Printer: ""
-*no.Translation NickName/Generic PCL Laser Printer, 1.4: ""
-*no.Translation PageSize/Media Size: ""
-*no.PageSize Letter/Letter - 8.5x11in: ""
-*no.PageSize Legal/Legal - 8.5x14in: ""
-*no.PageSize Executive/Executive - 7.25x10.5in: ""
-*no.PageSize Tabloid/Tabloid - 11x17in: ""
-*no.PageSize A3/A3 - 297x420mm: ""
-*no.PageSize A4/A4 - 210x297mm: ""
-*no.PageSize A5/A5 - 148x210mm: ""
-*no.PageSize B5/B5 - 182x257mm: ""
-*no.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*no.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*no.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*no.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*no.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*no.Translation Resolution/Resolution: ""
-*no.Resolution 300dpi/300dpi: ""
-*no.Resolution 600dpi/600dpi: ""
-*no.Translation InputSlot/Media Source: ""
-*no.InputSlot Default/Skriverstandard: ""
-*no.InputSlot Tray1/Skuff 1: ""
-*no.InputSlot Tray2/Skuff 2: ""
-*no.InputSlot Tray3/Magasin 3: ""
-*no.InputSlot Tray4/Skuff 4: ""
-*no.InputSlot Manual/Handmatig: ""
-*no.InputSlot Envelope/Envelope Feed: ""
-*no.Translation Duplex/Tosidig: ""
-*no.Duplex None/Off (1-Sided): ""
-*no.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*no.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*no.Translation InstallableOptions/Installable Options: ""
-*no.Translation Option1/Duplexer: ""
-*no.Option1 False/Not Installed: ""
-*no.Option1 True/Installed: ""
-*pt.Translation Manufacturer/Generic: ""
-*pt.Translation ModelName/Generic PCL Laser Printer: ""
-*pt.Translation ShortNickName/Generic PCL Laser Printer: ""
-*pt.Translation NickName/Generic PCL Laser Printer, 1.4: ""
-*pt.Translation PageSize/Media Size: ""
-*pt.PageSize Letter/Letter - 8.5x11in: ""
-*pt.PageSize Legal/Legal - 8.5x14in: ""
-*pt.PageSize Executive/Executive - 7.25x10.5in: ""
-*pt.PageSize Tabloid/Tabloid - 11x17in: ""
-*pt.PageSize A3/A3 - 297x420mm: ""
-*pt.PageSize A4/A4 - 210x297mm: ""
-*pt.PageSize A5/A5 - 148x210mm: ""
-*pt.PageSize B5/B5 - 182x257mm: ""
-*pt.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*pt.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*pt.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*pt.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*pt.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*pt.Translation Resolution/Resolution: ""
-*pt.Resolution 300dpi/300dpi: ""
-*pt.Resolution 600dpi/600dpi: ""
-*pt.Translation InputSlot/Media Source: ""
-*pt.InputSlot Default/Rápido: ""
-*pt.InputSlot Tray1/Bandeja 1: ""
-*pt.InputSlot Tray2/Bandeja 2: ""
-*pt.InputSlot Tray3/Bandeja 3: ""
-*pt.InputSlot Tray4/Bandeja 4: ""
-*pt.InputSlot Manual/Alimentação Manual: ""
-*pt.InputSlot Envelope/Envelope Feed: ""
-*pt.Translation Duplex/Impressão em Frente e Verso: ""
-*pt.Duplex None/Off (1-Sided): ""
-*pt.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*pt.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*pt.Translation InstallableOptions/Installable Options: ""
-*pt.Translation Option1/Duplexer: ""
-*pt.Option1 False/Não instalado: ""
-*pt.Option1 True/Instalada: ""
-*pt_BR.Translation Manufacturer/Generic: ""
-*pt_BR.Translation ModelName/Generic PCL Laser Printer: ""
-*pt_BR.Translation ShortNickName/Generic PCL Laser Printer: ""
-*pt_BR.Translation NickName/Generic PCL Laser Printer, 1.4: ""
-*pt_BR.Translation PageSize/Media Size: ""
-*pt_BR.PageSize Letter/Letter - 8.5x11in: ""
-*pt_BR.PageSize Legal/Legal - 8.5x14in: ""
-*pt_BR.PageSize Executive/Executive - 7.25x10.5in: ""
-*pt_BR.PageSize Tabloid/Tabloid - 11x17in: ""
-*pt_BR.PageSize A3/A3 - 297x420mm: ""
-*pt_BR.PageSize A4/A4 - 210x297mm: ""
-*pt_BR.PageSize A5/A5 - 148x210mm: ""
-*pt_BR.PageSize B5/B5 - 182x257mm: ""
-*pt_BR.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*pt_BR.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*pt_BR.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*pt_BR.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*pt_BR.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*pt_BR.Translation Resolution/Resolution: ""
-*pt_BR.Resolution 300dpi/300dpi: ""
-*pt_BR.Resolution 600dpi/600dpi: ""
-*pt_BR.Translation InputSlot/Media Source: ""
-*pt_BR.InputSlot Default/Rápido: ""
-*pt_BR.InputSlot Tray1/Bandeja 1: ""
-*pt_BR.InputSlot Tray2/Bandeja 2: ""
-*pt_BR.InputSlot Tray3/Bandeja 3: ""
-*pt_BR.InputSlot Tray4/Bandeja 4: ""
-*pt_BR.InputSlot Manual/Alimentação Manual: ""
-*pt_BR.InputSlot Envelope/Envelope Feed: ""
-*pt_BR.Translation Duplex/Impressão em Frente e Verso: ""
-*pt_BR.Duplex None/Off (1-Sided): ""
-*pt_BR.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*pt_BR.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*pt_BR.Translation InstallableOptions/Installable Options: ""
-*pt_BR.Translation Option1/Duplexer: ""
-*pt_BR.Option1 False/Não instalado: ""
-*pt_BR.Option1 True/Instalada: ""
-*sv.Translation Manufacturer/Generic: ""
-*sv.Translation ModelName/Generic PCL Laser Printer: ""
-*sv.Translation ShortNickName/Generic PCL Laser Printer: ""
-*sv.Translation NickName/Generic PCL Laser Printer, 1.4: ""
-*sv.Translation PageSize/Media Size: ""
-*sv.PageSize Letter/Letter - 8.5x11in: ""
-*sv.PageSize Legal/Legal - 8.5x14in: ""
-*sv.PageSize Executive/Executive - 7.25x10.5in: ""
-*sv.PageSize Tabloid/Tabloid - 11x17in: ""
-*sv.PageSize A3/A3 - 297x420mm: ""
-*sv.PageSize A4/A4 - 210x297mm: ""
-*sv.PageSize A5/A5 - 148x210mm: ""
-*sv.PageSize B5/B5 - 182x257mm: ""
-*sv.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*sv.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*sv.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*sv.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*sv.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*sv.Translation Resolution/Resolution: ""
-*sv.Resolution 300dpi/300dpi: ""
-*sv.Resolution 600dpi/600dpi: ""
-*sv.Translation InputSlot/Media Source: ""
-*sv.InputSlot Default/Skrivarstandard: ""
-*sv.InputSlot Tray1/Fack 1: ""
-*sv.InputSlot Tray2/Fack 2: ""
-*sv.InputSlot Tray3/Fack 3: ""
-*sv.InputSlot Tray4/Fack 4: ""
-*sv.InputSlot Manual/Manuell: ""
-*sv.InputSlot Envelope/Envelope Feed: ""
-*sv.Translation Duplex/Dubbelsidig utskrift: ""
-*sv.Duplex None/Off (1-Sided): ""
-*sv.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*sv.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*sv.Translation InstallableOptions/Installable Options: ""
-*sv.Translation Option1/Duplexer: ""
-*sv.Option1 False/Ej installerad: ""
-*sv.Option1 True/Installed: ""
-*zh.Translation Manufacturer/Generic: ""
-*zh.Translation ModelName/Generic PCL Laser Printer: ""
-*zh.Translation ShortNickName/Generic PCL Laser Printer: ""
-*zh.Translation NickName/Generic PCL Laser Printer, 1.4: ""
-*zh.Translation PageSize/Page Size: ""
-*zh.PageSize Letter/Letter - 8.5x11in: ""
-*zh.PageSize Legal/Legal - 8.5x14in: ""
-*zh.PageSize Executive/Executive - 7.25x10.5in: ""
-*zh.PageSize Tabloid/Tabloid - 11x17in: ""
-*zh.PageSize A3/A3 - 297x420mm: ""
-*zh.PageSize A4/A4 - 210x297mm: ""
-*zh.PageSize A5/A5 - 148x210mm: ""
-*zh.PageSize B5/B5 - 182x257mm: ""
-*zh.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*zh.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*zh.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*zh.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*zh.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*zh.Translation Resolution/Resolution: ""
-*zh.Resolution 300dpi/300dpi: ""
-*zh.Resolution 600dpi/600dpi: ""
-*zh.Translation InputSlot/Paper Source: ""
-*zh.InputSlot Default/Printer's Current Setting: ""
-*zh.InputSlot Tray1/Tray 1: ""
-*zh.InputSlot Tray2/Tray 2: ""
-*zh.InputSlot Tray3/Tray 3: ""
-*zh.InputSlot Tray4/Tray 4: ""
-*zh.InputSlot Manual/手动: ""
-*zh.InputSlot Envelope/Envelope Feed: ""
-*zh.Translation Duplex/2-Sided Printing: ""
-*zh.Duplex None/Off (1-Sided): ""
-*zh.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*zh.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*zh.Translation InstallableOptions/Installable Options: ""
-*zh.Translation Option1/Duplexer: ""
-*zh.Option1 False/Not Installed: ""
-*zh.Option1 True/Installed: ""
-*zh_TW.Translation Manufacturer/Generic: ""
-*zh_TW.Translation ModelName/Generic PCL Laser Printer: ""
-*zh_TW.Translation ShortNickName/Generic PCL Laser Printer: ""
-*zh_TW.Translation NickName/Generic PCL Laser Printer, 1.4: ""
-*zh_TW.Translation PageSize/Page Size: ""
-*zh_TW.PageSize Letter/Letter - 8.5x11in: ""
-*zh_TW.PageSize Legal/Legal - 8.5x14in: ""
-*zh_TW.PageSize Executive/Executive - 7.25x10.5in: ""
-*zh_TW.PageSize Tabloid/Tabloid - 11x17in: ""
-*zh_TW.PageSize A3/A3 - 297x420mm: ""
-*zh_TW.PageSize A4/A4 - 210x297mm: ""
-*zh_TW.PageSize A5/A5 - 148x210mm: ""
-*zh_TW.PageSize B5/B5 - 182x257mm: ""
-*zh_TW.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*zh_TW.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*zh_TW.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*zh_TW.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*zh_TW.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*zh_TW.Translation Resolution/Resolution: ""
-*zh_TW.Resolution 300dpi/300dpi: ""
-*zh_TW.Resolution 600dpi/600dpi: ""
-*zh_TW.Translation InputSlot/紙張來源: ""
-*zh_TW.InputSlot Default/快速: ""
-*zh_TW.InputSlot Tray1/裝紙匣 1: ""
-*zh_TW.InputSlot Tray2/裝紙匣 2: ""
-*zh_TW.InputSlot Tray3/裝紙匣 3: ""
-*zh_TW.InputSlot Tray4/紙匣4: ""
-*zh_TW.InputSlot Manual/手動: ""
-*zh_TW.InputSlot Envelope/Envelope Feed: ""
-*zh_TW.Translation Duplex/雙面列印: ""
-*zh_TW.Duplex None/Off (1-Sided): ""
-*zh_TW.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*zh_TW.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*zh_TW.Translation InstallableOptions/Installable Options: ""
-*zh_TW.Translation Option1/Duplexer: ""
-*zh_TW.Option1 False/未安裝: ""
-*zh_TW.Option1 True/已安裝: ""
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(1.05)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
-*Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
-*Font Bookman-Demi: Standard "(1.05)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
-*Font Bookman-Light: Standard "(1.05)" Standard ROM
-*Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
-*Font Courier: Standard "(1.05)" Standard ROM
-*Font Courier-Bold: Standard "(1.05)" Standard ROM
-*Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Courier-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica: Standard "(1.05)" Standard ROM
-*Font Helvetica-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
-*Font Palatino-Bold: Standard "(1.05)" Standard ROM
-*Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Palatino-Italic: Standard "(1.05)" Standard ROM
-*Font Palatino-Roman: Standard "(1.05)" Standard ROM
-*Font Symbol: Special "(001.005)" Special ROM
-*Font Times-Bold: Standard "(1.05)" Standard ROM
-*Font Times-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Times-Italic: Standard "(1.05)" Standard ROM
-*Font Times-Roman: Standard "(1.05)" Standard ROM
-*Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
-*Font ZapfDingbats: Special "(001.005)" Special ROM
-*% End of GENERPCL.PPD, 34243 bytes.
diff --git a/ppd/intelbar.ppd b/ppd/intelbar.ppd
deleted file mode 100644 (file)
index fb82286..0000000
+++ /dev/null
@@ -1,1529 +0,0 @@
-*PPD-Adobe: "4.3"
-*% PPD file for IntelliBar Label Printer with CUPS.
-*% Created by the CUPS PPD Compiler v1.2.4.
-*% Copyright 2007 by Apple Inc.
-*% Copyright 1997-2007 by Easy Software Products.
-*% 
-*% These coded instructions, statements, and computer programs are the
-*% property of Apple Inc. and are protected by Federal copyright
-*% law.  Distribution and use rights are outlined in the file "LICENSE.txt"
-*% which should have been included with this file.  If this file is
-*% file is missing or damaged, see the license at "http://www.cups.org/".
-*FormatVersion: "4.3"
-*FileVersion: "1.4"
-*LanguageVersion: English
-*LanguageEncoding: ISOLatin1
-*PCFileName: "INTELBAR.PPD"
-*Product: "(ESP Ghostscript)"
-*Product: "(GPL Ghostscript)"
-*Manufacturer: "Intellitech"
-*ModelName: "Intellitech IntelliBar Label Printer"
-*ShortNickName: "Intellibar Label Printer"
-*NickName: "Intellitech IntelliBar Label Printer, 1.4"
-*PSVersion: "(3010.000) 81504"
-*PSVersion: "(3010.000) 860"
-*LanguageLevel: "3"
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*FileSystem: False
-*Throughput: "8"
-*LandscapeOrientation: Plus90
-*TTRasterizer: Type42
-*% Driver-defined attributes...
-*CustominTearInterval True: "<</cupsRowCount 2 1 roll>>setpagedevice"
-*ParamCustominTearInterval Interval: 1 int 1 99
-*CustominCutInterval True: "<</cupsRowStep 2 1 roll>>setpagedevice"
-*ParamCustominCutInterval Interval: 1 int 1 99
-*cupsVersion: 1.4
-*cupsModelNumber: 32
-*cupsManualCopies: False
-*cupsFilter: "application/vnd.cups-raster 50 rastertolabel"
-*cupsLanguages: "en da de es fi fr it ja ko nl no pt pt_BR sv zh zh_TW"
-*UIConstraints: *inPrintMode Standard *inCutInterval
-*UIConstraints: *inCutInterval *inPrintMode Standard
-*UIConstraints: *inPrintMode Standard *inTearInterval
-*UIConstraints: *inTearInterval *inPrintMode Standard
-*UIConstraints: *inPrintMode Tear *inCutInterval
-*UIConstraints: *inCutInterval *inPrintMode Tear
-*UIConstraints: *inTearInterval *inPrintMode Cut
-*UIConstraints: *inPrintMode Cut *inTearInterval
-*UIConstraints: *inTearInterval *inPrintMode Standard
-*UIConstraints: *inPrintMode Standard *inTearInterval
-*OpenUI *PageSize/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageSize
-*DefaultPageSize: w288h432
-*PageSize w288h432/4.00x6.00": "<</PageSize[288 432]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageSize
-*OpenUI *PageRegion/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageRegion
-*DefaultPageRegion: w288h432
-*PageRegion w288h432/4.00x6.00": "<</PageSize[288 432]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageRegion
-*DefaultImageableArea: w288h432
-*ImageableArea w288h432/4.00x6.00": "0.00 5.76 288.00 426.24"
-*DefaultPaperDimension: w288h432
-*PaperDimension w288h432/4.00x6.00": "288.00 432.00"
-*MaxMediaWidth: "630.00"
-*MaxMediaHeight: "7128.00"
-*HWMargins: 0.00 5.76 0.00 5.76
-*CustomPageSize True: "pop pop pop <</PageSize[5 -2 roll]/ImagingBBox null>>setpagedevice"
-*ParamCustomPageSize Width: 1 points 36.00 630.00
-*ParamCustomPageSize Height: 2 points 36.00 7128.00
-*ParamCustomPageSize WidthOffset: 3 points 0 0
-*ParamCustomPageSize HeightOffset: 4 points 0 0
-*ParamCustomPageSize Orientation: 5 int 0 0
-*RequiresPageRegion All: True
-*OpenUI *Resolution: PickOne
-*OrderDependency: 10.0 AnySetup *Resolution
-*DefaultResolution: 300dpi
-*Resolution 300dpi: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*CloseUI: *Resolution
-*OpenGroup: PrinterSettings/Printer Settings
-*OpenUI *inPrintDensity/Print Density: PickOne
-*OrderDependency: 20.0 DocumentSetup *inPrintDensity
-*DefaultinPrintDensity: Default
-*inPrintDensity Default/Printer Default: "<</cupsCompression -1>>setpagedevice"
-*inPrintDensity -15: "<</cupsCompression 0>>setpagedevice"
-*inPrintDensity -14: "<</cupsCompression 3>>setpagedevice"
-*inPrintDensity -13: "<</cupsCompression 6>>setpagedevice"
-*inPrintDensity -12: "<</cupsCompression 10>>setpagedevice"
-*inPrintDensity -11: "<</cupsCompression 13>>setpagedevice"
-*inPrintDensity -10: "<</cupsCompression 16>>setpagedevice"
-*inPrintDensity -9: "<</cupsCompression 20>>setpagedevice"
-*inPrintDensity -8: "<</cupsCompression 23>>setpagedevice"
-*inPrintDensity -7: "<</cupsCompression 26>>setpagedevice"
-*inPrintDensity -6: "<</cupsCompression 30>>setpagedevice"
-*inPrintDensity -5: "<</cupsCompression 33>>setpagedevice"
-*inPrintDensity -4: "<</cupsCompression 36>>setpagedevice"
-*inPrintDensity -3: "<</cupsCompression 40>>setpagedevice"
-*inPrintDensity -2: "<</cupsCompression 43>>setpagedevice"
-*inPrintDensity -1: "<</cupsCompression 46>>setpagedevice"
-*inPrintDensity 0: "<</cupsCompression 50>>setpagedevice"
-*inPrintDensity 1: "<</cupsCompression 53>>setpagedevice"
-*inPrintDensity 2: "<</cupsCompression 56>>setpagedevice"
-*inPrintDensity 3: "<</cupsCompression 60>>setpagedevice"
-*inPrintDensity 4: "<</cupsCompression 63>>setpagedevice"
-*inPrintDensity 5: "<</cupsCompression 66>>setpagedevice"
-*inPrintDensity 6: "<</cupsCompression 70>>setpagedevice"
-*inPrintDensity 7: "<</cupsCompression 73>>setpagedevice"
-*inPrintDensity 8: "<</cupsCompression 76>>setpagedevice"
-*inPrintDensity 9: "<</cupsCompression 80>>setpagedevice"
-*inPrintDensity 10: "<</cupsCompression 83>>setpagedevice"
-*inPrintDensity 11: "<</cupsCompression 86>>setpagedevice"
-*inPrintDensity 12: "<</cupsCompression 90>>setpagedevice"
-*inPrintDensity 13: "<</cupsCompression 93>>setpagedevice"
-*inPrintDensity 14: "<</cupsCompression 96>>setpagedevice"
-*inPrintDensity 15: "<</cupsCompression 100>>setpagedevice"
-*CloseUI: *inPrintDensity
-*OpenUI *inPrintRate/Print Speed: PickOne
-*OrderDependency: 20.0 DocumentSetup *inPrintRate
-*DefaultinPrintRate: Default
-*inPrintRate Default/Printer Default: "<</cupsRowFeed 0>>setpagedevice"
-*inPrintRate 15/15 mm/sec.: "<</cupsRowFeed 15>>setpagedevice"
-*inPrintRate 20/20 mm/sec.: "<</cupsRowFeed 20>>setpagedevice"
-*inPrintRate 30/30 mm/sec.: "<</cupsRowFeed 30>>setpagedevice"
-*inPrintRate 40/40 mm/sec.: "<</cupsRowFeed 40>>setpagedevice"
-*inPrintRate 60/60 mm/sec.: "<</cupsRowFeed 60>>setpagedevice"
-*inPrintRate 80/80 mm/sec.: "<</cupsRowFeed 80>>setpagedevice"
-*inPrintRate 100/100 mm/sec.: "<</cupsRowFeed 100>>setpagedevice"
-*inPrintRate 120/120 mm/sec.: "<</cupsRowFeed 120>>setpagedevice"
-*inPrintRate 150/150 mm/sec.: "<</cupsRowFeed 150>>setpagedevice"
-*inPrintRate 200/200 mm/sec.: "<</cupsRowFeed 200>>setpagedevice"
-*inPrintRate 250/250 mm/sec.: "<</cupsRowFeed 250>>setpagedevice"
-*inPrintRate 300/300 mm/sec.: "<</cupsRowFeed 300>>setpagedevice"
-*CloseUI: *inPrintRate
-*OpenUI *inPrintMode/Print Mode: PickOne
-*OrderDependency: 20.0 DocumentSetup *inPrintMode
-*DefaultinPrintMode: Standard
-*inPrintMode Standard: ""
-*inPrintMode Tear: ""
-*inPrintMode Cut: ""
-*CloseUI: *inPrintMode
-*OpenUI *inTearInterval/Print and Tear: PickOne
-*OrderDependency: 20.0 DocumentSetup *inTearInterval
-*DefaultinTearInterval: None
-*inTearInterval None/Disabled: "<</cupsRowCount 0>>setpagedevice"
-*inTearInterval 1/Every Label: "<</cupsRowCount 1>>setpagedevice"
-*inTearInterval 2/Every 2 Labels: "<</cupsRowCount 2>>setpagedevice"
-*inTearInterval 3/Every 3 Labels: "<</cupsRowCount 3>>setpagedevice"
-*inTearInterval 4/Every 4 Labels: "<</cupsRowCount 4>>setpagedevice"
-*inTearInterval 5/Every 5 Labels: "<</cupsRowCount 5>>setpagedevice"
-*inTearInterval 6/Every 6 Labels: "<</cupsRowCount 6>>setpagedevice"
-*inTearInterval 7/Every 7 Labels: "<</cupsRowCount 7>>setpagedevice"
-*inTearInterval 8/Every 8 Labels: "<</cupsRowCount 8>>setpagedevice"
-*inTearInterval 9/Every 9 Labels: "<</cupsRowCount 9>>setpagedevice"
-*inTearInterval 10/Every 10 Labels: "<</cupsRowCount 10>>setpagedevice"
-*CloseUI: *inTearInterval
-*OpenUI *inCutInterval/Print and Cut: PickOne
-*OrderDependency: 20.0 DocumentSetup *inCutInterval
-*DefaultinCutInterval: None
-*inCutInterval None/Disabled: "<</cupsRowStep 0>>setpagedevice"
-*inCutInterval 1/Every Label: "<</cupsRowStep 1>>setpagedevice"
-*inCutInterval 2/Every 2 Labels: "<</cupsRowStep 2>>setpagedevice"
-*inCutInterval 3/Every 3 Labels: "<</cupsRowStep 3>>setpagedevice"
-*inCutInterval 4/Every 4 Labels: "<</cupsRowStep 4>>setpagedevice"
-*inCutInterval 5/Every 5 Labels: "<</cupsRowStep 5>>setpagedevice"
-*inCutInterval 6/Every 6 Labels: "<</cupsRowStep 6>>setpagedevice"
-*inCutInterval 7/Every 7 Labels: "<</cupsRowStep 7>>setpagedevice"
-*inCutInterval 8/Every 8 Labels: "<</cupsRowStep 8>>setpagedevice"
-*inCutInterval 9/Every 9 Labels: "<</cupsRowStep 9>>setpagedevice"
-*inCutInterval 10/Every 10 Labels: "<</cupsRowStep 10>>setpagedevice"
-*CloseUI: *inCutInterval
-*CloseGroup: PrinterSettings
-*da.Translation Manufacturer/Intellitech: ""
-*da.Translation ModelName/Intellitech IntelliBar Label Printer: ""
-*da.Translation ShortNickName/Intellibar Label Printer: ""
-*da.Translation NickName/Intellitech IntelliBar Label Printer, 1.4: ""
-*da.Translation PageSize/Media Size: ""
-*da.PageSize w288h432/4.00x6.00": ""
-*da.Translation Resolution/Resolution: ""
-*da.Resolution 300dpi/300dpi: ""
-*da.Translation PrinterSettings/Printer Settings: ""
-*da.Translation inPrintDensity/Print Density: ""
-*da.inPrintDensity Default/Printerstandard: ""
-*da.inPrintDensity -15/-15: ""
-*da.inPrintDensity -14/-14: ""
-*da.inPrintDensity -13/-13: ""
-*da.inPrintDensity -12/-12: ""
-*da.inPrintDensity -11/-11: ""
-*da.inPrintDensity -10/-10: ""
-*da.inPrintDensity -9/-9: ""
-*da.inPrintDensity -8/-8: ""
-*da.inPrintDensity -7/-7: ""
-*da.inPrintDensity -6/-6: ""
-*da.inPrintDensity -5/-5: ""
-*da.inPrintDensity -4/-4: ""
-*da.inPrintDensity -3/-3: ""
-*da.inPrintDensity -2/-2: ""
-*da.inPrintDensity -1/-1: ""
-*da.inPrintDensity 0/0: ""
-*da.inPrintDensity 1/1: ""
-*da.inPrintDensity 2/2: ""
-*da.inPrintDensity 3/3: ""
-*da.inPrintDensity 4/4: ""
-*da.inPrintDensity 5/5: ""
-*da.inPrintDensity 6/6: ""
-*da.inPrintDensity 7/7: ""
-*da.inPrintDensity 8/8: ""
-*da.inPrintDensity 9/9: ""
-*da.inPrintDensity 10/10: ""
-*da.inPrintDensity 11/11: ""
-*da.inPrintDensity 12/12: ""
-*da.inPrintDensity 13/13: ""
-*da.inPrintDensity 14/14: ""
-*da.inPrintDensity 15/15: ""
-*da.Translation inPrintRate/Print Speed: ""
-*da.inPrintRate Default/Printerstandard: ""
-*da.inPrintRate 15/15 mm/sec.: ""
-*da.inPrintRate 20/20 mm/sec.: ""
-*da.inPrintRate 30/30 mm/sec.: ""
-*da.inPrintRate 40/40 mm/sec.: ""
-*da.inPrintRate 60/60 mm/sec.: ""
-*da.inPrintRate 80/80 mm/sec.: ""
-*da.inPrintRate 100/100 mm/sec.: ""
-*da.inPrintRate 120/120 mm/sec.: ""
-*da.inPrintRate 150/150 mm/sec.: ""
-*da.inPrintRate 200/200 mm/sec.: ""
-*da.inPrintRate 250/250 mm/sec.: ""
-*da.inPrintRate 300/300 mm/sec.: ""
-*da.Translation inPrintMode/Print Mode: ""
-*da.inPrintMode Standard/Standard: ""
-*da.inPrintMode Tear/Tear: ""
-*da.inPrintMode Cut/Cut: ""
-*da.Translation inTearInterval/Print and Tear: ""
-*da.inTearInterval None/Disabled: ""
-*da.inTearInterval 1/Every Label: ""
-*da.inTearInterval 2/Every 2 Labels: ""
-*da.inTearInterval 3/Every 3 Labels: ""
-*da.inTearInterval 4/Every 4 Labels: ""
-*da.inTearInterval 5/Every 5 Labels: ""
-*da.inTearInterval 6/Every 6 Labels: ""
-*da.inTearInterval 7/Every 7 Labels: ""
-*da.inTearInterval 8/Every 8 Labels: ""
-*da.inTearInterval 9/Every 9 Labels: ""
-*da.inTearInterval 10/Every 10 Labels: ""
-*da.Translation inCutInterval/Print and Cut: ""
-*da.inCutInterval None/Disabled: ""
-*da.inCutInterval 1/Every Label: ""
-*da.inCutInterval 2/Every 2 Labels: ""
-*da.inCutInterval 3/Every 3 Labels: ""
-*da.inCutInterval 4/Every 4 Labels: ""
-*da.inCutInterval 5/Every 5 Labels: ""
-*da.inCutInterval 6/Every 6 Labels: ""
-*da.inCutInterval 7/Every 7 Labels: ""
-*da.inCutInterval 8/Every 8 Labels: ""
-*da.inCutInterval 9/Every 9 Labels: ""
-*da.inCutInterval 10/Every 10 Labels: ""
-*da.CustominTearInterval True/CustominTearInterval: ""
-*da.ParamCustominTearInterval Interval/ParamCustominTearInterval: ""
-*da.CustominCutInterval True/CustominCutInterval: ""
-*da.ParamCustominCutInterval Interval/ParamCustominCutInterval: ""
-*de.Translation Manufacturer/Intellitech: ""
-*de.Translation ModelName/Intellitech IntelliBar Label Printer: ""
-*de.Translation ShortNickName/Intellibar Label Printer: ""
-*de.Translation NickName/Intellitech IntelliBar Label Printer, 1.4: ""
-*de.Translation PageSize/Media Size: ""
-*de.PageSize w288h432/4.00x6.00": ""
-*de.Translation Resolution/Resolution: ""
-*de.Resolution 300dpi/300dpi: ""
-*de.Translation PrinterSettings/Printer Settings: ""
-*de.Translation inPrintDensity/Print Density: ""
-*de.inPrintDensity Default/Druckerstandard: ""
-*de.inPrintDensity -15/-15: ""
-*de.inPrintDensity -14/-14: ""
-*de.inPrintDensity -13/-13: ""
-*de.inPrintDensity -12/-12: ""
-*de.inPrintDensity -11/-11: ""
-*de.inPrintDensity -10/-10: ""
-*de.inPrintDensity -9/-9: ""
-*de.inPrintDensity -8/-8: ""
-*de.inPrintDensity -7/-7: ""
-*de.inPrintDensity -6/-6: ""
-*de.inPrintDensity -5/-5: ""
-*de.inPrintDensity -4/-4: ""
-*de.inPrintDensity -3/-3: ""
-*de.inPrintDensity -2/-2: ""
-*de.inPrintDensity -1/-1: ""
-*de.inPrintDensity 0/0: ""
-*de.inPrintDensity 1/1: ""
-*de.inPrintDensity 2/2: ""
-*de.inPrintDensity 3/3: ""
-*de.inPrintDensity 4/4: ""
-*de.inPrintDensity 5/5: ""
-*de.inPrintDensity 6/6: ""
-*de.inPrintDensity 7/7: ""
-*de.inPrintDensity 8/8: ""
-*de.inPrintDensity 9/9: ""
-*de.inPrintDensity 10/10: ""
-*de.inPrintDensity 11/11: ""
-*de.inPrintDensity 12/12: ""
-*de.inPrintDensity 13/13: ""
-*de.inPrintDensity 14/14: ""
-*de.inPrintDensity 15/15: ""
-*de.Translation inPrintRate/Print Speed: ""
-*de.inPrintRate Default/Druckerstandard: ""
-*de.inPrintRate 15/15 mm/sec.: ""
-*de.inPrintRate 20/20 mm/sec.: ""
-*de.inPrintRate 30/30 mm/sec.: ""
-*de.inPrintRate 40/40 mm/sec.: ""
-*de.inPrintRate 60/60 mm/sec.: ""
-*de.inPrintRate 80/80 mm/sec.: ""
-*de.inPrintRate 100/100 mm/sec.: ""
-*de.inPrintRate 120/120 mm/sec.: ""
-*de.inPrintRate 150/150 mm/sec.: ""
-*de.inPrintRate 200/200 mm/sec.: ""
-*de.inPrintRate 250/250 mm/sec.: ""
-*de.inPrintRate 300/300 mm/sec.: ""
-*de.Translation inPrintMode/Print Mode: ""
-*de.inPrintMode Standard/Standard: ""
-*de.inPrintMode Tear/Tear: ""
-*de.inPrintMode Cut/Cut: ""
-*de.Translation inTearInterval/Print and Tear: ""
-*de.inTearInterval None/Disabled: ""
-*de.inTearInterval 1/Every Label: ""
-*de.inTearInterval 2/Every 2 Labels: ""
-*de.inTearInterval 3/Every 3 Labels: ""
-*de.inTearInterval 4/Every 4 Labels: ""
-*de.inTearInterval 5/Every 5 Labels: ""
-*de.inTearInterval 6/Every 6 Labels: ""
-*de.inTearInterval 7/Every 7 Labels: ""
-*de.inTearInterval 8/Every 8 Labels: ""
-*de.inTearInterval 9/Every 9 Labels: ""
-*de.inTearInterval 10/Every 10 Labels: ""
-*de.Translation inCutInterval/Print and Cut: ""
-*de.inCutInterval None/Disabled: ""
-*de.inCutInterval 1/Every Label: ""
-*de.inCutInterval 2/Every 2 Labels: ""
-*de.inCutInterval 3/Every 3 Labels: ""
-*de.inCutInterval 4/Every 4 Labels: ""
-*de.inCutInterval 5/Every 5 Labels: ""
-*de.inCutInterval 6/Every 6 Labels: ""
-*de.inCutInterval 7/Every 7 Labels: ""
-*de.inCutInterval 8/Every 8 Labels: ""
-*de.inCutInterval 9/Every 9 Labels: ""
-*de.inCutInterval 10/Every 10 Labels: ""
-*de.CustominTearInterval True/CustominTearInterval: ""
-*de.ParamCustominTearInterval Interval/ParamCustominTearInterval: ""
-*de.CustominCutInterval True/CustominCutInterval: ""
-*de.ParamCustominCutInterval Interval/ParamCustominCutInterval: ""
-*es.Translation Manufacturer/Intellitech: ""
-*es.Translation ModelName/Intellitech IntelliBar Label Printer: ""
-*es.Translation ShortNickName/Intellibar Label Printer: ""
-*es.Translation NickName/Intellitech IntelliBar Label Printer, 1.4: ""
-*es.Translation PageSize/Media Size: ""
-*es.PageSize w288h432/4.00x6.00": ""
-*es.Translation Resolution/Resolution: ""
-*es.Resolution 300dpi/300dpi: ""
-*es.Translation PrinterSettings/Printer Settings: ""
-*es.Translation inPrintDensity/Print Density: ""
-*es.inPrintDensity Default/Impresora por defecto: ""
-*es.inPrintDensity -15/-15: ""
-*es.inPrintDensity -14/-14: ""
-*es.inPrintDensity -13/-13: ""
-*es.inPrintDensity -12/-12: ""
-*es.inPrintDensity -11/-11: ""
-*es.inPrintDensity -10/-10: ""
-*es.inPrintDensity -9/-9: ""
-*es.inPrintDensity -8/-8: ""
-*es.inPrintDensity -7/-7: ""
-*es.inPrintDensity -6/-6: ""
-*es.inPrintDensity -5/-5: ""
-*es.inPrintDensity -4/-4: ""
-*es.inPrintDensity -3/-3: ""
-*es.inPrintDensity -2/-2: ""
-*es.inPrintDensity -1/-1: ""
-*es.inPrintDensity 0/0: ""
-*es.inPrintDensity 1/1: ""
-*es.inPrintDensity 2/2: ""
-*es.inPrintDensity 3/3: ""
-*es.inPrintDensity 4/4: ""
-*es.inPrintDensity 5/5: ""
-*es.inPrintDensity 6/6: ""
-*es.inPrintDensity 7/7: ""
-*es.inPrintDensity 8/8: ""
-*es.inPrintDensity 9/9: ""
-*es.inPrintDensity 10/10: ""
-*es.inPrintDensity 11/11: ""
-*es.inPrintDensity 12/12: ""
-*es.inPrintDensity 13/13: ""
-*es.inPrintDensity 14/14: ""
-*es.inPrintDensity 15/15: ""
-*es.Translation inPrintRate/Print Speed: ""
-*es.inPrintRate Default/Impresora por defecto: ""
-*es.inPrintRate 15/15 mm/sec.: ""
-*es.inPrintRate 20/20 mm/sec.: ""
-*es.inPrintRate 30/30 mm/sec.: ""
-*es.inPrintRate 40/40 mm/sec.: ""
-*es.inPrintRate 60/60 mm/sec.: ""
-*es.inPrintRate 80/80 mm/sec.: ""
-*es.inPrintRate 100/100 mm/sec.: ""
-*es.inPrintRate 120/120 mm/sec.: ""
-*es.inPrintRate 150/150 mm/sec.: ""
-*es.inPrintRate 200/200 mm/sec.: ""
-*es.inPrintRate 250/250 mm/sec.: ""
-*es.inPrintRate 300/300 mm/sec.: ""
-*es.Translation inPrintMode/Print Mode: ""
-*es.inPrintMode Standard/Standard: ""
-*es.inPrintMode Tear/Tear: ""
-*es.inPrintMode Cut/Cut: ""
-*es.Translation inTearInterval/Print and Tear: ""
-*es.inTearInterval None/Disabled: ""
-*es.inTearInterval 1/Every Label: ""
-*es.inTearInterval 2/Every 2 Labels: ""
-*es.inTearInterval 3/Every 3 Labels: ""
-*es.inTearInterval 4/Every 4 Labels: ""
-*es.inTearInterval 5/Every 5 Labels: ""
-*es.inTearInterval 6/Every 6 Labels: ""
-*es.inTearInterval 7/Every 7 Labels: ""
-*es.inTearInterval 8/Every 8 Labels: ""
-*es.inTearInterval 9/Every 9 Labels: ""
-*es.inTearInterval 10/Every 10 Labels: ""
-*es.Translation inCutInterval/Print and Cut: ""
-*es.inCutInterval None/Disabled: ""
-*es.inCutInterval 1/Every Label: ""
-*es.inCutInterval 2/Every 2 Labels: ""
-*es.inCutInterval 3/Every 3 Labels: ""
-*es.inCutInterval 4/Every 4 Labels: ""
-*es.inCutInterval 5/Every 5 Labels: ""
-*es.inCutInterval 6/Every 6 Labels: ""
-*es.inCutInterval 7/Every 7 Labels: ""
-*es.inCutInterval 8/Every 8 Labels: ""
-*es.inCutInterval 9/Every 9 Labels: ""
-*es.inCutInterval 10/Every 10 Labels: ""
-*es.CustominTearInterval True/CustominTearInterval: ""
-*es.ParamCustominTearInterval Interval/ParamCustominTearInterval: ""
-*es.CustominCutInterval True/CustominCutInterval: ""
-*es.ParamCustominCutInterval Interval/ParamCustominCutInterval: ""
-*fi.Translation Manufacturer/Intellitech: ""
-*fi.Translation ModelName/Intellitech IntelliBar Label Printer: ""
-*fi.Translation ShortNickName/Intellibar Label Printer: ""
-*fi.Translation NickName/Intellitech IntelliBar Label Printer, 1.4: ""
-*fi.Translation PageSize/Media Size: ""
-*fi.PageSize w288h432/4.00x6.00": ""
-*fi.Translation Resolution/Resolution: ""
-*fi.Resolution 300dpi/300dpi: ""
-*fi.Translation PrinterSettings/Printer Settings: ""
-*fi.Translation inPrintDensity/Print Density: ""
-*fi.inPrintDensity Default/Nopea: ""
-*fi.inPrintDensity -15/-15: ""
-*fi.inPrintDensity -14/-14: ""
-*fi.inPrintDensity -13/-13: ""
-*fi.inPrintDensity -12/-12: ""
-*fi.inPrintDensity -11/-11: ""
-*fi.inPrintDensity -10/-10: ""
-*fi.inPrintDensity -9/-9: ""
-*fi.inPrintDensity -8/-8: ""
-*fi.inPrintDensity -7/-7: ""
-*fi.inPrintDensity -6/-6: ""
-*fi.inPrintDensity -5/-5: ""
-*fi.inPrintDensity -4/-4: ""
-*fi.inPrintDensity -3/-3: ""
-*fi.inPrintDensity -2/-2: ""
-*fi.inPrintDensity -1/-1: ""
-*fi.inPrintDensity 0/0: ""
-*fi.inPrintDensity 1/1: ""
-*fi.inPrintDensity 2/2: ""
-*fi.inPrintDensity 3/3: ""
-*fi.inPrintDensity 4/4: ""
-*fi.inPrintDensity 5/5: ""
-*fi.inPrintDensity 6/6: ""
-*fi.inPrintDensity 7/7: ""
-*fi.inPrintDensity 8/8: ""
-*fi.inPrintDensity 9/9: ""
-*fi.inPrintDensity 10/10: ""
-*fi.inPrintDensity 11/11: ""
-*fi.inPrintDensity 12/12: ""
-*fi.inPrintDensity 13/13: ""
-*fi.inPrintDensity 14/14: ""
-*fi.inPrintDensity 15/15: ""
-*fi.Translation inPrintRate/Print Speed: ""
-*fi.inPrintRate Default/Nopea: ""
-*fi.inPrintRate 15/15 mm/sec.: ""
-*fi.inPrintRate 20/20 mm/sec.: ""
-*fi.inPrintRate 30/30 mm/sec.: ""
-*fi.inPrintRate 40/40 mm/sec.: ""
-*fi.inPrintRate 60/60 mm/sec.: ""
-*fi.inPrintRate 80/80 mm/sec.: ""
-*fi.inPrintRate 100/100 mm/sec.: ""
-*fi.inPrintRate 120/120 mm/sec.: ""
-*fi.inPrintRate 150/150 mm/sec.: ""
-*fi.inPrintRate 200/200 mm/sec.: ""
-*fi.inPrintRate 250/250 mm/sec.: ""
-*fi.inPrintRate 300/300 mm/sec.: ""
-*fi.Translation inPrintMode/Print Mode: ""
-*fi.inPrintMode Standard/Standard: ""
-*fi.inPrintMode Tear/Tear: ""
-*fi.inPrintMode Cut/Cut: ""
-*fi.Translation inTearInterval/Print and Tear: ""
-*fi.inTearInterval None/Disabled: ""
-*fi.inTearInterval 1/Every Label: ""
-*fi.inTearInterval 2/Every 2 Labels: ""
-*fi.inTearInterval 3/Every 3 Labels: ""
-*fi.inTearInterval 4/Every 4 Labels: ""
-*fi.inTearInterval 5/Every 5 Labels: ""
-*fi.inTearInterval 6/Every 6 Labels: ""
-*fi.inTearInterval 7/Every 7 Labels: ""
-*fi.inTearInterval 8/Every 8 Labels: ""
-*fi.inTearInterval 9/Every 9 Labels: ""
-*fi.inTearInterval 10/Every 10 Labels: ""
-*fi.Translation inCutInterval/Print and Cut: ""
-*fi.inCutInterval None/Disabled: ""
-*fi.inCutInterval 1/Every Label: ""
-*fi.inCutInterval 2/Every 2 Labels: ""
-*fi.inCutInterval 3/Every 3 Labels: ""
-*fi.inCutInterval 4/Every 4 Labels: ""
-*fi.inCutInterval 5/Every 5 Labels: ""
-*fi.inCutInterval 6/Every 6 Labels: ""
-*fi.inCutInterval 7/Every 7 Labels: ""
-*fi.inCutInterval 8/Every 8 Labels: ""
-*fi.inCutInterval 9/Every 9 Labels: ""
-*fi.inCutInterval 10/Every 10 Labels: ""
-*fi.CustominTearInterval True/CustominTearInterval: ""
-*fi.ParamCustominTearInterval Interval/ParamCustominTearInterval: ""
-*fi.CustominCutInterval True/CustominCutInterval: ""
-*fi.ParamCustominCutInterval Interval/ParamCustominCutInterval: ""
-*fr.Translation Manufacturer/Intellitech: ""
-*fr.Translation ModelName/Intellitech IntelliBar Label Printer: ""
-*fr.Translation ShortNickName/Intellibar Label Printer: ""
-*fr.Translation NickName/Intellitech IntelliBar Label Printer, 1.4: ""
-*fr.Translation PageSize/Media Size: ""
-*fr.PageSize w288h432/4.00x6.00": ""
-*fr.Translation Resolution/Resolution: ""
-*fr.Resolution 300dpi/300dpi: ""
-*fr.Translation PrinterSettings/Printer Settings: ""
-*fr.Translation inPrintDensity/Print Density: ""
-*fr.inPrintDensity Default/Imprimante par défaut: ""
-*fr.inPrintDensity -15/-15: ""
-*fr.inPrintDensity -14/-14: ""
-*fr.inPrintDensity -13/-13: ""
-*fr.inPrintDensity -12/-12: ""
-*fr.inPrintDensity -11/-11: ""
-*fr.inPrintDensity -10/-10: ""
-*fr.inPrintDensity -9/-9: ""
-*fr.inPrintDensity -8/-8: ""
-*fr.inPrintDensity -7/-7: ""
-*fr.inPrintDensity -6/-6: ""
-*fr.inPrintDensity -5/-5: ""
-*fr.inPrintDensity -4/-4: ""
-*fr.inPrintDensity -3/-3: ""
-*fr.inPrintDensity -2/-2: ""
-*fr.inPrintDensity -1/-1: ""
-*fr.inPrintDensity 0/0: ""
-*fr.inPrintDensity 1/1: ""
-*fr.inPrintDensity 2/2: ""
-*fr.inPrintDensity 3/3: ""
-*fr.inPrintDensity 4/4: ""
-*fr.inPrintDensity 5/5: ""
-*fr.inPrintDensity 6/6: ""
-*fr.inPrintDensity 7/7: ""
-*fr.inPrintDensity 8/8: ""
-*fr.inPrintDensity 9/9: ""
-*fr.inPrintDensity 10/10: ""
-*fr.inPrintDensity 11/11: ""
-*fr.inPrintDensity 12/12: ""
-*fr.inPrintDensity 13/13: ""
-*fr.inPrintDensity 14/14: ""
-*fr.inPrintDensity 15/15: ""
-*fr.Translation inPrintRate/Print Speed: ""
-*fr.inPrintRate Default/Imprimante par défaut: ""
-*fr.inPrintRate 15/15 mm/sec.: ""
-*fr.inPrintRate 20/20 mm/sec.: ""
-*fr.inPrintRate 30/30 mm/sec.: ""
-*fr.inPrintRate 40/40 mm/sec.: ""
-*fr.inPrintRate 60/60 mm/sec.: ""
-*fr.inPrintRate 80/80 mm/sec.: ""
-*fr.inPrintRate 100/100 mm/sec.: ""
-*fr.inPrintRate 120/120 mm/sec.: ""
-*fr.inPrintRate 150/150 mm/sec.: ""
-*fr.inPrintRate 200/200 mm/sec.: ""
-*fr.inPrintRate 250/250 mm/sec.: ""
-*fr.inPrintRate 300/300 mm/sec.: ""
-*fr.Translation inPrintMode/Print Mode: ""
-*fr.inPrintMode Standard/Standard: ""
-*fr.inPrintMode Tear/Tear: ""
-*fr.inPrintMode Cut/Cut: ""
-*fr.Translation inTearInterval/Print and Tear: ""
-*fr.inTearInterval None/Disabled: ""
-*fr.inTearInterval 1/Every Label: ""
-*fr.inTearInterval 2/Every 2 Labels: ""
-*fr.inTearInterval 3/Every 3 Labels: ""
-*fr.inTearInterval 4/Every 4 Labels: ""
-*fr.inTearInterval 5/Every 5 Labels: ""
-*fr.inTearInterval 6/Every 6 Labels: ""
-*fr.inTearInterval 7/Every 7 Labels: ""
-*fr.inTearInterval 8/Every 8 Labels: ""
-*fr.inTearInterval 9/Every 9 Labels: ""
-*fr.inTearInterval 10/Every 10 Labels: ""
-*fr.Translation inCutInterval/Print and Cut: ""
-*fr.inCutInterval None/Disabled: ""
-*fr.inCutInterval 1/Every Label: ""
-*fr.inCutInterval 2/Every 2 Labels: ""
-*fr.inCutInterval 3/Every 3 Labels: ""
-*fr.inCutInterval 4/Every 4 Labels: ""
-*fr.inCutInterval 5/Every 5 Labels: ""
-*fr.inCutInterval 6/Every 6 Labels: ""
-*fr.inCutInterval 7/Every 7 Labels: ""
-*fr.inCutInterval 8/Every 8 Labels: ""
-*fr.inCutInterval 9/Every 9 Labels: ""
-*fr.inCutInterval 10/Every 10 Labels: ""
-*fr.CustominTearInterval True/CustominTearInterval: ""
-*fr.ParamCustominTearInterval Interval/ParamCustominTearInterval: ""
-*fr.CustominCutInterval True/CustominCutInterval: ""
-*fr.ParamCustominCutInterval Interval/ParamCustominCutInterval: ""
-*it.Translation Manufacturer/Intellitech: ""
-*it.Translation ModelName/Intellitech IntelliBar Label Printer: ""
-*it.Translation ShortNickName/Intellibar Label Printer: ""
-*it.Translation NickName/Intellitech IntelliBar Label Printer, 1.4: ""
-*it.Translation PageSize/Media Size: ""
-*it.PageSize w288h432/4.00x6.00": ""
-*it.Translation Resolution/Resolution: ""
-*it.Resolution 300dpi/300dpi: ""
-*it.Translation PrinterSettings/Printer Settings: ""
-*it.Translation inPrintDensity/Print Density: ""
-*it.inPrintDensity Default/Impostazioni predefinite stampante: ""
-*it.inPrintDensity -15/-15: ""
-*it.inPrintDensity -14/-14: ""
-*it.inPrintDensity -13/-13: ""
-*it.inPrintDensity -12/-12: ""
-*it.inPrintDensity -11/-11: ""
-*it.inPrintDensity -10/-10: ""
-*it.inPrintDensity -9/-9: ""
-*it.inPrintDensity -8/-8: ""
-*it.inPrintDensity -7/-7: ""
-*it.inPrintDensity -6/-6: ""
-*it.inPrintDensity -5/-5: ""
-*it.inPrintDensity -4/-4: ""
-*it.inPrintDensity -3/-3: ""
-*it.inPrintDensity -2/-2: ""
-*it.inPrintDensity -1/-1: ""
-*it.inPrintDensity 0/0: ""
-*it.inPrintDensity 1/1: ""
-*it.inPrintDensity 2/2: ""
-*it.inPrintDensity 3/3: ""
-*it.inPrintDensity 4/4: ""
-*it.inPrintDensity 5/5: ""
-*it.inPrintDensity 6/6: ""
-*it.inPrintDensity 7/7: ""
-*it.inPrintDensity 8/8: ""
-*it.inPrintDensity 9/9: ""
-*it.inPrintDensity 10/10: ""
-*it.inPrintDensity 11/11: ""
-*it.inPrintDensity 12/12: ""
-*it.inPrintDensity 13/13: ""
-*it.inPrintDensity 14/14: ""
-*it.inPrintDensity 15/15: ""
-*it.Translation inPrintRate/Print Speed: ""
-*it.inPrintRate Default/Impostazioni predefinite stampante: ""
-*it.inPrintRate 15/15 mm/sec.: ""
-*it.inPrintRate 20/20 mm/sec.: ""
-*it.inPrintRate 30/30 mm/sec.: ""
-*it.inPrintRate 40/40 mm/sec.: ""
-*it.inPrintRate 60/60 mm/sec.: ""
-*it.inPrintRate 80/80 mm/sec.: ""
-*it.inPrintRate 100/100 mm/sec.: ""
-*it.inPrintRate 120/120 mm/sec.: ""
-*it.inPrintRate 150/150 mm/sec.: ""
-*it.inPrintRate 200/200 mm/sec.: ""
-*it.inPrintRate 250/250 mm/sec.: ""
-*it.inPrintRate 300/300 mm/sec.: ""
-*it.Translation inPrintMode/Print Mode: ""
-*it.inPrintMode Standard/Standard: ""
-*it.inPrintMode Tear/Tear: ""
-*it.inPrintMode Cut/Cut: ""
-*it.Translation inTearInterval/Print and Tear: ""
-*it.inTearInterval None/Disabled: ""
-*it.inTearInterval 1/Every Label: ""
-*it.inTearInterval 2/Every 2 Labels: ""
-*it.inTearInterval 3/Every 3 Labels: ""
-*it.inTearInterval 4/Every 4 Labels: ""
-*it.inTearInterval 5/Every 5 Labels: ""
-*it.inTearInterval 6/Every 6 Labels: ""
-*it.inTearInterval 7/Every 7 Labels: ""
-*it.inTearInterval 8/Every 8 Labels: ""
-*it.inTearInterval 9/Every 9 Labels: ""
-*it.inTearInterval 10/Every 10 Labels: ""
-*it.Translation inCutInterval/Print and Cut: ""
-*it.inCutInterval None/Disabled: ""
-*it.inCutInterval 1/Every Label: ""
-*it.inCutInterval 2/Every 2 Labels: ""
-*it.inCutInterval 3/Every 3 Labels: ""
-*it.inCutInterval 4/Every 4 Labels: ""
-*it.inCutInterval 5/Every 5 Labels: ""
-*it.inCutInterval 6/Every 6 Labels: ""
-*it.inCutInterval 7/Every 7 Labels: ""
-*it.inCutInterval 8/Every 8 Labels: ""
-*it.inCutInterval 9/Every 9 Labels: ""
-*it.inCutInterval 10/Every 10 Labels: ""
-*it.CustominTearInterval True/CustominTearInterval: ""
-*it.ParamCustominTearInterval Interval/ParamCustominTearInterval: ""
-*it.CustominCutInterval True/CustominCutInterval: ""
-*it.ParamCustominCutInterval Interval/ParamCustominCutInterval: ""
-*ja.Translation Manufacturer/Intellitech: ""
-*ja.Translation ModelName/Intellitech IntelliBar Label Printer: ""
-*ja.Translation ShortNickName/Intellibar Label Printer: ""
-*ja.Translation NickName/Intellitech IntelliBar Label Printer, 1.4: ""
-*ja.Translation PageSize/Media Size: ""
-*ja.PageSize w288h432/4.00x6.00": ""
-*ja.Translation Resolution/Resolution: ""
-*ja.Resolution 300dpi/300dpi: ""
-*ja.Translation PrinterSettings/Printer Settings: ""
-*ja.Translation inPrintDensity/Print Density: ""
-*ja.inPrintDensity Default/システムデフォルト: ""
-*ja.inPrintDensity -15/-15: ""
-*ja.inPrintDensity -14/-14: ""
-*ja.inPrintDensity -13/-13: ""
-*ja.inPrintDensity -12/-12: ""
-*ja.inPrintDensity -11/-11: ""
-*ja.inPrintDensity -10/-10: ""
-*ja.inPrintDensity -9/-9: ""
-*ja.inPrintDensity -8/-8: ""
-*ja.inPrintDensity -7/-7: ""
-*ja.inPrintDensity -6/-6: ""
-*ja.inPrintDensity -5/-5: ""
-*ja.inPrintDensity -4/-4: ""
-*ja.inPrintDensity -3/-3: ""
-*ja.inPrintDensity -2/-2: ""
-*ja.inPrintDensity -1/-1: ""
-*ja.inPrintDensity 0/0: ""
-*ja.inPrintDensity 1/1: ""
-*ja.inPrintDensity 2/2: ""
-*ja.inPrintDensity 3/3: ""
-*ja.inPrintDensity 4/4: ""
-*ja.inPrintDensity 5/5: ""
-*ja.inPrintDensity 6/6: ""
-*ja.inPrintDensity 7/7: ""
-*ja.inPrintDensity 8/8: ""
-*ja.inPrintDensity 9/9: ""
-*ja.inPrintDensity 10/10: ""
-*ja.inPrintDensity 11/11: ""
-*ja.inPrintDensity 12/12: ""
-*ja.inPrintDensity 13/13: ""
-*ja.inPrintDensity 14/14: ""
-*ja.inPrintDensity 15/15: ""
-*ja.Translation inPrintRate/Print Speed: ""
-*ja.inPrintRate Default/システムデフォルト: ""
-*ja.inPrintRate 15/15 mm/sec.: ""
-*ja.inPrintRate 20/20 mm/sec.: ""
-*ja.inPrintRate 30/30 mm/sec.: ""
-*ja.inPrintRate 40/40 mm/sec.: ""
-*ja.inPrintRate 60/60 mm/sec.: ""
-*ja.inPrintRate 80/80 mm/sec.: ""
-*ja.inPrintRate 100/100 mm/sec.: ""
-*ja.inPrintRate 120/120 mm/sec.: ""
-*ja.inPrintRate 150/150 mm/sec.: ""
-*ja.inPrintRate 200/200 mm/sec.: ""
-*ja.inPrintRate 250/250 mm/sec.: ""
-*ja.inPrintRate 300/300 mm/sec.: ""
-*ja.Translation inPrintMode/Print Mode: ""
-*ja.inPrintMode Standard/Standard: ""
-*ja.inPrintMode Tear/Tear: ""
-*ja.inPrintMode Cut/Cut: ""
-*ja.Translation inTearInterval/Print and Tear: ""
-*ja.inTearInterval None/Disabled: ""
-*ja.inTearInterval 1/Every Label: ""
-*ja.inTearInterval 2/Every 2 Labels: ""
-*ja.inTearInterval 3/Every 3 Labels: ""
-*ja.inTearInterval 4/Every 4 Labels: ""
-*ja.inTearInterval 5/Every 5 Labels: ""
-*ja.inTearInterval 6/Every 6 Labels: ""
-*ja.inTearInterval 7/Every 7 Labels: ""
-*ja.inTearInterval 8/Every 8 Labels: ""
-*ja.inTearInterval 9/Every 9 Labels: ""
-*ja.inTearInterval 10/Every 10 Labels: ""
-*ja.Translation inCutInterval/Print and Cut: ""
-*ja.inCutInterval None/Disabled: ""
-*ja.inCutInterval 1/Every Label: ""
-*ja.inCutInterval 2/Every 2 Labels: ""
-*ja.inCutInterval 3/Every 3 Labels: ""
-*ja.inCutInterval 4/Every 4 Labels: ""
-*ja.inCutInterval 5/Every 5 Labels: ""
-*ja.inCutInterval 6/Every 6 Labels: ""
-*ja.inCutInterval 7/Every 7 Labels: ""
-*ja.inCutInterval 8/Every 8 Labels: ""
-*ja.inCutInterval 9/Every 9 Labels: ""
-*ja.inCutInterval 10/Every 10 Labels: ""
-*ja.CustominTearInterval True/CustominTearInterval: ""
-*ja.ParamCustominTearInterval Interval/ParamCustominTearInterval: ""
-*ja.CustominCutInterval True/CustominCutInterval: ""
-*ja.ParamCustominCutInterval Interval/ParamCustominCutInterval: ""
-*ko.Translation Manufacturer/Intellitech: ""
-*ko.Translation ModelName/Intellitech IntelliBar Label Printer: ""
-*ko.Translation ShortNickName/Intellibar Label Printer: ""
-*ko.Translation NickName/Intellitech IntelliBar Label Printer, 1.4: ""
-*ko.Translation PageSize/Page Size: ""
-*ko.PageSize w288h432/4.00x6.00": ""
-*ko.Translation Resolution/Resolution: ""
-*ko.Resolution 300dpi/300dpi: ""
-*ko.Translation PrinterSettings/Printer Settings: ""
-*ko.Translation inPrintDensity/Print Density: ""
-*ko.inPrintDensity Default/빠르게: ""
-*ko.inPrintDensity -15/-15: ""
-*ko.inPrintDensity -14/-14: ""
-*ko.inPrintDensity -13/-13: ""
-*ko.inPrintDensity -12/-12: ""
-*ko.inPrintDensity -11/-11: ""
-*ko.inPrintDensity -10/-10: ""
-*ko.inPrintDensity -9/-9: ""
-*ko.inPrintDensity -8/-8: ""
-*ko.inPrintDensity -7/-7: ""
-*ko.inPrintDensity -6/-6: ""
-*ko.inPrintDensity -5/-5: ""
-*ko.inPrintDensity -4/-4: ""
-*ko.inPrintDensity -3/-3: ""
-*ko.inPrintDensity -2/-2: ""
-*ko.inPrintDensity -1/-1: ""
-*ko.inPrintDensity 0/0: ""
-*ko.inPrintDensity 1/1: ""
-*ko.inPrintDensity 2/2: ""
-*ko.inPrintDensity 3/3: ""
-*ko.inPrintDensity 4/4: ""
-*ko.inPrintDensity 5/5: ""
-*ko.inPrintDensity 6/6: ""
-*ko.inPrintDensity 7/7: ""
-*ko.inPrintDensity 8/8: ""
-*ko.inPrintDensity 9/9: ""
-*ko.inPrintDensity 10/10: ""
-*ko.inPrintDensity 11/11: ""
-*ko.inPrintDensity 12/12: ""
-*ko.inPrintDensity 13/13: ""
-*ko.inPrintDensity 14/14: ""
-*ko.inPrintDensity 15/15: ""
-*ko.Translation inPrintRate/Print Speed: ""
-*ko.inPrintRate Default/빠르게: ""
-*ko.inPrintRate 15/15 mm/sec.: ""
-*ko.inPrintRate 20/20 mm/sec.: ""
-*ko.inPrintRate 30/30 mm/sec.: ""
-*ko.inPrintRate 40/40 mm/sec.: ""
-*ko.inPrintRate 60/60 mm/sec.: ""
-*ko.inPrintRate 80/80 mm/sec.: ""
-*ko.inPrintRate 100/100 mm/sec.: ""
-*ko.inPrintRate 120/120 mm/sec.: ""
-*ko.inPrintRate 150/150 mm/sec.: ""
-*ko.inPrintRate 200/200 mm/sec.: ""
-*ko.inPrintRate 250/250 mm/sec.: ""
-*ko.inPrintRate 300/300 mm/sec.: ""
-*ko.Translation inPrintMode/Print Mode: ""
-*ko.inPrintMode Standard/Standard: ""
-*ko.inPrintMode Tear/Tear: ""
-*ko.inPrintMode Cut/Cut: ""
-*ko.Translation inTearInterval/Print and Tear: ""
-*ko.inTearInterval None/Disabled: ""
-*ko.inTearInterval 1/Every Label: ""
-*ko.inTearInterval 2/Every 2 Labels: ""
-*ko.inTearInterval 3/Every 3 Labels: ""
-*ko.inTearInterval 4/Every 4 Labels: ""
-*ko.inTearInterval 5/Every 5 Labels: ""
-*ko.inTearInterval 6/Every 6 Labels: ""
-*ko.inTearInterval 7/Every 7 Labels: ""
-*ko.inTearInterval 8/Every 8 Labels: ""
-*ko.inTearInterval 9/Every 9 Labels: ""
-*ko.inTearInterval 10/Every 10 Labels: ""
-*ko.Translation inCutInterval/Print and Cut: ""
-*ko.inCutInterval None/Disabled: ""
-*ko.inCutInterval 1/Every Label: ""
-*ko.inCutInterval 2/Every 2 Labels: ""
-*ko.inCutInterval 3/Every 3 Labels: ""
-*ko.inCutInterval 4/Every 4 Labels: ""
-*ko.inCutInterval 5/Every 5 Labels: ""
-*ko.inCutInterval 6/Every 6 Labels: ""
-*ko.inCutInterval 7/Every 7 Labels: ""
-*ko.inCutInterval 8/Every 8 Labels: ""
-*ko.inCutInterval 9/Every 9 Labels: ""
-*ko.inCutInterval 10/Every 10 Labels: ""
-*ko.CustominTearInterval True/CustominTearInterval: ""
-*ko.ParamCustominTearInterval Interval/ParamCustominTearInterval: ""
-*ko.CustominCutInterval True/CustominCutInterval: ""
-*ko.ParamCustominCutInterval Interval/ParamCustominCutInterval: ""
-*nl.Translation Manufacturer/Intellitech: ""
-*nl.Translation ModelName/Intellitech IntelliBar Label Printer: ""
-*nl.Translation ShortNickName/Intellibar Label Printer: ""
-*nl.Translation NickName/Intellitech IntelliBar Label Printer, 1.4: ""
-*nl.Translation PageSize/Media Size: ""
-*nl.PageSize w288h432/4.00x6.00": ""
-*nl.Translation Resolution/Resolution: ""
-*nl.Resolution 300dpi/300dpi: ""
-*nl.Translation PrinterSettings/Printer Settings: ""
-*nl.Translation inPrintDensity/Print Density: ""
-*nl.inPrintDensity Default/Printerstandaard: ""
-*nl.inPrintDensity -15/-15: ""
-*nl.inPrintDensity -14/-14: ""
-*nl.inPrintDensity -13/-13: ""
-*nl.inPrintDensity -12/-12: ""
-*nl.inPrintDensity -11/-11: ""
-*nl.inPrintDensity -10/-10: ""
-*nl.inPrintDensity -9/-9: ""
-*nl.inPrintDensity -8/-8: ""
-*nl.inPrintDensity -7/-7: ""
-*nl.inPrintDensity -6/-6: ""
-*nl.inPrintDensity -5/-5: ""
-*nl.inPrintDensity -4/-4: ""
-*nl.inPrintDensity -3/-3: ""
-*nl.inPrintDensity -2/-2: ""
-*nl.inPrintDensity -1/-1: ""
-*nl.inPrintDensity 0/0: ""
-*nl.inPrintDensity 1/1: ""
-*nl.inPrintDensity 2/2: ""
-*nl.inPrintDensity 3/3: ""
-*nl.inPrintDensity 4/4: ""
-*nl.inPrintDensity 5/5: ""
-*nl.inPrintDensity 6/6: ""
-*nl.inPrintDensity 7/7: ""
-*nl.inPrintDensity 8/8: ""
-*nl.inPrintDensity 9/9: ""
-*nl.inPrintDensity 10/10: ""
-*nl.inPrintDensity 11/11: ""
-*nl.inPrintDensity 12/12: ""
-*nl.inPrintDensity 13/13: ""
-*nl.inPrintDensity 14/14: ""
-*nl.inPrintDensity 15/15: ""
-*nl.Translation inPrintRate/Print Speed: ""
-*nl.inPrintRate Default/Printerstandaard: ""
-*nl.inPrintRate 15/15 mm/sec.: ""
-*nl.inPrintRate 20/20 mm/sec.: ""
-*nl.inPrintRate 30/30 mm/sec.: ""
-*nl.inPrintRate 40/40 mm/sec.: ""
-*nl.inPrintRate 60/60 mm/sec.: ""
-*nl.inPrintRate 80/80 mm/sec.: ""
-*nl.inPrintRate 100/100 mm/sec.: ""
-*nl.inPrintRate 120/120 mm/sec.: ""
-*nl.inPrintRate 150/150 mm/sec.: ""
-*nl.inPrintRate 200/200 mm/sec.: ""
-*nl.inPrintRate 250/250 mm/sec.: ""
-*nl.inPrintRate 300/300 mm/sec.: ""
-*nl.Translation inPrintMode/Print Mode: ""
-*nl.inPrintMode Standard/Standard: ""
-*nl.inPrintMode Tear/Tear: ""
-*nl.inPrintMode Cut/Cut: ""
-*nl.Translation inTearInterval/Print and Tear: ""
-*nl.inTearInterval None/Disabled: ""
-*nl.inTearInterval 1/Every Label: ""
-*nl.inTearInterval 2/Every 2 Labels: ""
-*nl.inTearInterval 3/Every 3 Labels: ""
-*nl.inTearInterval 4/Every 4 Labels: ""
-*nl.inTearInterval 5/Every 5 Labels: ""
-*nl.inTearInterval 6/Every 6 Labels: ""
-*nl.inTearInterval 7/Every 7 Labels: ""
-*nl.inTearInterval 8/Every 8 Labels: ""
-*nl.inTearInterval 9/Every 9 Labels: ""
-*nl.inTearInterval 10/Every 10 Labels: ""
-*nl.Translation inCutInterval/Print and Cut: ""
-*nl.inCutInterval None/Disabled: ""
-*nl.inCutInterval 1/Every Label: ""
-*nl.inCutInterval 2/Every 2 Labels: ""
-*nl.inCutInterval 3/Every 3 Labels: ""
-*nl.inCutInterval 4/Every 4 Labels: ""
-*nl.inCutInterval 5/Every 5 Labels: ""
-*nl.inCutInterval 6/Every 6 Labels: ""
-*nl.inCutInterval 7/Every 7 Labels: ""
-*nl.inCutInterval 8/Every 8 Labels: ""
-*nl.inCutInterval 9/Every 9 Labels: ""
-*nl.inCutInterval 10/Every 10 Labels: ""
-*nl.CustominTearInterval True/CustominTearInterval: ""
-*nl.ParamCustominTearInterval Interval/ParamCustominTearInterval: ""
-*nl.CustominCutInterval True/CustominCutInterval: ""
-*nl.ParamCustominCutInterval Interval/ParamCustominCutInterval: ""
-*no.Translation Manufacturer/Intellitech: ""
-*no.Translation ModelName/Intellitech IntelliBar Label Printer: ""
-*no.Translation ShortNickName/Intellibar Label Printer: ""
-*no.Translation NickName/Intellitech IntelliBar Label Printer, 1.4: ""
-*no.Translation PageSize/Media Size: ""
-*no.PageSize w288h432/4.00x6.00": ""
-*no.Translation Resolution/Resolution: ""
-*no.Resolution 300dpi/300dpi: ""
-*no.Translation PrinterSettings/Printer Settings: ""
-*no.Translation inPrintDensity/Print Density: ""
-*no.inPrintDensity Default/Skriverstandard: ""
-*no.inPrintDensity -15/-15: ""
-*no.inPrintDensity -14/-14: ""
-*no.inPrintDensity -13/-13: ""
-*no.inPrintDensity -12/-12: ""
-*no.inPrintDensity -11/-11: ""
-*no.inPrintDensity -10/-10: ""
-*no.inPrintDensity -9/-9: ""
-*no.inPrintDensity -8/-8: ""
-*no.inPrintDensity -7/-7: ""
-*no.inPrintDensity -6/-6: ""
-*no.inPrintDensity -5/-5: ""
-*no.inPrintDensity -4/-4: ""
-*no.inPrintDensity -3/-3: ""
-*no.inPrintDensity -2/-2: ""
-*no.inPrintDensity -1/-1: ""
-*no.inPrintDensity 0/0: ""
-*no.inPrintDensity 1/1: ""
-*no.inPrintDensity 2/2: ""
-*no.inPrintDensity 3/3: ""
-*no.inPrintDensity 4/4: ""
-*no.inPrintDensity 5/5: ""
-*no.inPrintDensity 6/6: ""
-*no.inPrintDensity 7/7: ""
-*no.inPrintDensity 8/8: ""
-*no.inPrintDensity 9/9: ""
-*no.inPrintDensity 10/10: ""
-*no.inPrintDensity 11/11: ""
-*no.inPrintDensity 12/12: ""
-*no.inPrintDensity 13/13: ""
-*no.inPrintDensity 14/14: ""
-*no.inPrintDensity 15/15: ""
-*no.Translation inPrintRate/Print Speed: ""
-*no.inPrintRate Default/Skriverstandard: ""
-*no.inPrintRate 15/15 mm/sec.: ""
-*no.inPrintRate 20/20 mm/sec.: ""
-*no.inPrintRate 30/30 mm/sec.: ""
-*no.inPrintRate 40/40 mm/sec.: ""
-*no.inPrintRate 60/60 mm/sec.: ""
-*no.inPrintRate 80/80 mm/sec.: ""
-*no.inPrintRate 100/100 mm/sec.: ""
-*no.inPrintRate 120/120 mm/sec.: ""
-*no.inPrintRate 150/150 mm/sec.: ""
-*no.inPrintRate 200/200 mm/sec.: ""
-*no.inPrintRate 250/250 mm/sec.: ""
-*no.inPrintRate 300/300 mm/sec.: ""
-*no.Translation inPrintMode/Print Mode: ""
-*no.inPrintMode Standard/Standard: ""
-*no.inPrintMode Tear/Tear: ""
-*no.inPrintMode Cut/Cut: ""
-*no.Translation inTearInterval/Print and Tear: ""
-*no.inTearInterval None/Disabled: ""
-*no.inTearInterval 1/Every Label: ""
-*no.inTearInterval 2/Every 2 Labels: ""
-*no.inTearInterval 3/Every 3 Labels: ""
-*no.inTearInterval 4/Every 4 Labels: ""
-*no.inTearInterval 5/Every 5 Labels: ""
-*no.inTearInterval 6/Every 6 Labels: ""
-*no.inTearInterval 7/Every 7 Labels: ""
-*no.inTearInterval 8/Every 8 Labels: ""
-*no.inTearInterval 9/Every 9 Labels: ""
-*no.inTearInterval 10/Every 10 Labels: ""
-*no.Translation inCutInterval/Print and Cut: ""
-*no.inCutInterval None/Disabled: ""
-*no.inCutInterval 1/Every Label: ""
-*no.inCutInterval 2/Every 2 Labels: ""
-*no.inCutInterval 3/Every 3 Labels: ""
-*no.inCutInterval 4/Every 4 Labels: ""
-*no.inCutInterval 5/Every 5 Labels: ""
-*no.inCutInterval 6/Every 6 Labels: ""
-*no.inCutInterval 7/Every 7 Labels: ""
-*no.inCutInterval 8/Every 8 Labels: ""
-*no.inCutInterval 9/Every 9 Labels: ""
-*no.inCutInterval 10/Every 10 Labels: ""
-*no.CustominTearInterval True/CustominTearInterval: ""
-*no.ParamCustominTearInterval Interval/ParamCustominTearInterval: ""
-*no.CustominCutInterval True/CustominCutInterval: ""
-*no.ParamCustominCutInterval Interval/ParamCustominCutInterval: ""
-*pt.Translation Manufacturer/Intellitech: ""
-*pt.Translation ModelName/Intellitech IntelliBar Label Printer: ""
-*pt.Translation ShortNickName/Intellibar Label Printer: ""
-*pt.Translation NickName/Intellitech IntelliBar Label Printer, 1.4: ""
-*pt.Translation PageSize/Media Size: ""
-*pt.PageSize w288h432/4.00x6.00": ""
-*pt.Translation Resolution/Resolution: ""
-*pt.Resolution 300dpi/300dpi: ""
-*pt.Translation PrinterSettings/Printer Settings: ""
-*pt.Translation inPrintDensity/Print Density: ""
-*pt.inPrintDensity Default/Rápido: ""
-*pt.inPrintDensity -15/-15: ""
-*pt.inPrintDensity -14/-14: ""
-*pt.inPrintDensity -13/-13: ""
-*pt.inPrintDensity -12/-12: ""
-*pt.inPrintDensity -11/-11: ""
-*pt.inPrintDensity -10/-10: ""
-*pt.inPrintDensity -9/-9: ""
-*pt.inPrintDensity -8/-8: ""
-*pt.inPrintDensity -7/-7: ""
-*pt.inPrintDensity -6/-6: ""
-*pt.inPrintDensity -5/-5: ""
-*pt.inPrintDensity -4/-4: ""
-*pt.inPrintDensity -3/-3: ""
-*pt.inPrintDensity -2/-2: ""
-*pt.inPrintDensity -1/-1: ""
-*pt.inPrintDensity 0/0: ""
-*pt.inPrintDensity 1/1: ""
-*pt.inPrintDensity 2/2: ""
-*pt.inPrintDensity 3/3: ""
-*pt.inPrintDensity 4/4: ""
-*pt.inPrintDensity 5/5: ""
-*pt.inPrintDensity 6/6: ""
-*pt.inPrintDensity 7/7: ""
-*pt.inPrintDensity 8/8: ""
-*pt.inPrintDensity 9/9: ""
-*pt.inPrintDensity 10/10: ""
-*pt.inPrintDensity 11/11: ""
-*pt.inPrintDensity 12/12: ""
-*pt.inPrintDensity 13/13: ""
-*pt.inPrintDensity 14/14: ""
-*pt.inPrintDensity 15/15: ""
-*pt.Translation inPrintRate/Print Speed: ""
-*pt.inPrintRate Default/Rápido: ""
-*pt.inPrintRate 15/15 mm/sec.: ""
-*pt.inPrintRate 20/20 mm/sec.: ""
-*pt.inPrintRate 30/30 mm/sec.: ""
-*pt.inPrintRate 40/40 mm/sec.: ""
-*pt.inPrintRate 60/60 mm/sec.: ""
-*pt.inPrintRate 80/80 mm/sec.: ""
-*pt.inPrintRate 100/100 mm/sec.: ""
-*pt.inPrintRate 120/120 mm/sec.: ""
-*pt.inPrintRate 150/150 mm/sec.: ""
-*pt.inPrintRate 200/200 mm/sec.: ""
-*pt.inPrintRate 250/250 mm/sec.: ""
-*pt.inPrintRate 300/300 mm/sec.: ""
-*pt.Translation inPrintMode/Print Mode: ""
-*pt.inPrintMode Standard/Standard: ""
-*pt.inPrintMode Tear/Tear: ""
-*pt.inPrintMode Cut/Cut: ""
-*pt.Translation inTearInterval/Print and Tear: ""
-*pt.inTearInterval None/Disabled: ""
-*pt.inTearInterval 1/Every Label: ""
-*pt.inTearInterval 2/Every 2 Labels: ""
-*pt.inTearInterval 3/Every 3 Labels: ""
-*pt.inTearInterval 4/Every 4 Labels: ""
-*pt.inTearInterval 5/Every 5 Labels: ""
-*pt.inTearInterval 6/Every 6 Labels: ""
-*pt.inTearInterval 7/Every 7 Labels: ""
-*pt.inTearInterval 8/Every 8 Labels: ""
-*pt.inTearInterval 9/Every 9 Labels: ""
-*pt.inTearInterval 10/Every 10 Labels: ""
-*pt.Translation inCutInterval/Print and Cut: ""
-*pt.inCutInterval None/Disabled: ""
-*pt.inCutInterval 1/Every Label: ""
-*pt.inCutInterval 2/Every 2 Labels: ""
-*pt.inCutInterval 3/Every 3 Labels: ""
-*pt.inCutInterval 4/Every 4 Labels: ""
-*pt.inCutInterval 5/Every 5 Labels: ""
-*pt.inCutInterval 6/Every 6 Labels: ""
-*pt.inCutInterval 7/Every 7 Labels: ""
-*pt.inCutInterval 8/Every 8 Labels: ""
-*pt.inCutInterval 9/Every 9 Labels: ""
-*pt.inCutInterval 10/Every 10 Labels: ""
-*pt.CustominTearInterval True/CustominTearInterval: ""
-*pt.ParamCustominTearInterval Interval/ParamCustominTearInterval: ""
-*pt.CustominCutInterval True/CustominCutInterval: ""
-*pt.ParamCustominCutInterval Interval/ParamCustominCutInterval: ""
-*pt_BR.Translation Manufacturer/Intellitech: ""
-*pt_BR.Translation ModelName/Intellitech IntelliBar Label Printer: ""
-*pt_BR.Translation ShortNickName/Intellibar Label Printer: ""
-*pt_BR.Translation NickName/Intellitech IntelliBar Label Printer, 1.4: ""
-*pt_BR.Translation PageSize/Media Size: ""
-*pt_BR.PageSize w288h432/4.00x6.00": ""
-*pt_BR.Translation Resolution/Resolution: ""
-*pt_BR.Resolution 300dpi/300dpi: ""
-*pt_BR.Translation PrinterSettings/Printer Settings: ""
-*pt_BR.Translation inPrintDensity/Print Density: ""
-*pt_BR.inPrintDensity Default/Rápido: ""
-*pt_BR.inPrintDensity -15/-15: ""
-*pt_BR.inPrintDensity -14/-14: ""
-*pt_BR.inPrintDensity -13/-13: ""
-*pt_BR.inPrintDensity -12/-12: ""
-*pt_BR.inPrintDensity -11/-11: ""
-*pt_BR.inPrintDensity -10/-10: ""
-*pt_BR.inPrintDensity -9/-9: ""
-*pt_BR.inPrintDensity -8/-8: ""
-*pt_BR.inPrintDensity -7/-7: ""
-*pt_BR.inPrintDensity -6/-6: ""
-*pt_BR.inPrintDensity -5/-5: ""
-*pt_BR.inPrintDensity -4/-4: ""
-*pt_BR.inPrintDensity -3/-3: ""
-*pt_BR.inPrintDensity -2/-2: ""
-*pt_BR.inPrintDensity -1/-1: ""
-*pt_BR.inPrintDensity 0/0: ""
-*pt_BR.inPrintDensity 1/1: ""
-*pt_BR.inPrintDensity 2/2: ""
-*pt_BR.inPrintDensity 3/3: ""
-*pt_BR.inPrintDensity 4/4: ""
-*pt_BR.inPrintDensity 5/5: ""
-*pt_BR.inPrintDensity 6/6: ""
-*pt_BR.inPrintDensity 7/7: ""
-*pt_BR.inPrintDensity 8/8: ""
-*pt_BR.inPrintDensity 9/9: ""
-*pt_BR.inPrintDensity 10/10: ""
-*pt_BR.inPrintDensity 11/11: ""
-*pt_BR.inPrintDensity 12/12: ""
-*pt_BR.inPrintDensity 13/13: ""
-*pt_BR.inPrintDensity 14/14: ""
-*pt_BR.inPrintDensity 15/15: ""
-*pt_BR.Translation inPrintRate/Print Speed: ""
-*pt_BR.inPrintRate Default/Rápido: ""
-*pt_BR.inPrintRate 15/15 mm/sec.: ""
-*pt_BR.inPrintRate 20/20 mm/sec.: ""
-*pt_BR.inPrintRate 30/30 mm/sec.: ""
-*pt_BR.inPrintRate 40/40 mm/sec.: ""
-*pt_BR.inPrintRate 60/60 mm/sec.: ""
-*pt_BR.inPrintRate 80/80 mm/sec.: ""
-*pt_BR.inPrintRate 100/100 mm/sec.: ""
-*pt_BR.inPrintRate 120/120 mm/sec.: ""
-*pt_BR.inPrintRate 150/150 mm/sec.: ""
-*pt_BR.inPrintRate 200/200 mm/sec.: ""
-*pt_BR.inPrintRate 250/250 mm/sec.: ""
-*pt_BR.inPrintRate 300/300 mm/sec.: ""
-*pt_BR.Translation inPrintMode/Print Mode: ""
-*pt_BR.inPrintMode Standard/Standard: ""
-*pt_BR.inPrintMode Tear/Tear: ""
-*pt_BR.inPrintMode Cut/Cut: ""
-*pt_BR.Translation inTearInterval/Print and Tear: ""
-*pt_BR.inTearInterval None/Disabled: ""
-*pt_BR.inTearInterval 1/Every Label: ""
-*pt_BR.inTearInterval 2/Every 2 Labels: ""
-*pt_BR.inTearInterval 3/Every 3 Labels: ""
-*pt_BR.inTearInterval 4/Every 4 Labels: ""
-*pt_BR.inTearInterval 5/Every 5 Labels: ""
-*pt_BR.inTearInterval 6/Every 6 Labels: ""
-*pt_BR.inTearInterval 7/Every 7 Labels: ""
-*pt_BR.inTearInterval 8/Every 8 Labels: ""
-*pt_BR.inTearInterval 9/Every 9 Labels: ""
-*pt_BR.inTearInterval 10/Every 10 Labels: ""
-*pt_BR.Translation inCutInterval/Print and Cut: ""
-*pt_BR.inCutInterval None/Disabled: ""
-*pt_BR.inCutInterval 1/Every Label: ""
-*pt_BR.inCutInterval 2/Every 2 Labels: ""
-*pt_BR.inCutInterval 3/Every 3 Labels: ""
-*pt_BR.inCutInterval 4/Every 4 Labels: ""
-*pt_BR.inCutInterval 5/Every 5 Labels: ""
-*pt_BR.inCutInterval 6/Every 6 Labels: ""
-*pt_BR.inCutInterval 7/Every 7 Labels: ""
-*pt_BR.inCutInterval 8/Every 8 Labels: ""
-*pt_BR.inCutInterval 9/Every 9 Labels: ""
-*pt_BR.inCutInterval 10/Every 10 Labels: ""
-*pt_BR.CustominTearInterval True/CustominTearInterval: ""
-*pt_BR.ParamCustominTearInterval Interval/ParamCustominTearInterval: ""
-*pt_BR.CustominCutInterval True/CustominCutInterval: ""
-*pt_BR.ParamCustominCutInterval Interval/ParamCustominCutInterval: ""
-*sv.Translation Manufacturer/Intellitech: ""
-*sv.Translation ModelName/Intellitech IntelliBar Label Printer: ""
-*sv.Translation ShortNickName/Intellibar Label Printer: ""
-*sv.Translation NickName/Intellitech IntelliBar Label Printer, 1.4: ""
-*sv.Translation PageSize/Media Size: ""
-*sv.PageSize w288h432/4.00x6.00": ""
-*sv.Translation Resolution/Resolution: ""
-*sv.Resolution 300dpi/300dpi: ""
-*sv.Translation PrinterSettings/Printer Settings: ""
-*sv.Translation inPrintDensity/Print Density: ""
-*sv.inPrintDensity Default/Skrivarstandard: ""
-*sv.inPrintDensity -15/-15: ""
-*sv.inPrintDensity -14/-14: ""
-*sv.inPrintDensity -13/-13: ""
-*sv.inPrintDensity -12/-12: ""
-*sv.inPrintDensity -11/-11: ""
-*sv.inPrintDensity -10/-10: ""
-*sv.inPrintDensity -9/-9: ""
-*sv.inPrintDensity -8/-8: ""
-*sv.inPrintDensity -7/-7: ""
-*sv.inPrintDensity -6/-6: ""
-*sv.inPrintDensity -5/-5: ""
-*sv.inPrintDensity -4/-4: ""
-*sv.inPrintDensity -3/-3: ""
-*sv.inPrintDensity -2/-2: ""
-*sv.inPrintDensity -1/-1: ""
-*sv.inPrintDensity 0/0: ""
-*sv.inPrintDensity 1/1: ""
-*sv.inPrintDensity 2/2: ""
-*sv.inPrintDensity 3/3: ""
-*sv.inPrintDensity 4/4: ""
-*sv.inPrintDensity 5/5: ""
-*sv.inPrintDensity 6/6: ""
-*sv.inPrintDensity 7/7: ""
-*sv.inPrintDensity 8/8: ""
-*sv.inPrintDensity 9/9: ""
-*sv.inPrintDensity 10/10: ""
-*sv.inPrintDensity 11/11: ""
-*sv.inPrintDensity 12/12: ""
-*sv.inPrintDensity 13/13: ""
-*sv.inPrintDensity 14/14: ""
-*sv.inPrintDensity 15/15: ""
-*sv.Translation inPrintRate/Print Speed: ""
-*sv.inPrintRate Default/Skrivarstandard: ""
-*sv.inPrintRate 15/15 mm/sec.: ""
-*sv.inPrintRate 20/20 mm/sec.: ""
-*sv.inPrintRate 30/30 mm/sec.: ""
-*sv.inPrintRate 40/40 mm/sec.: ""
-*sv.inPrintRate 60/60 mm/sec.: ""
-*sv.inPrintRate 80/80 mm/sec.: ""
-*sv.inPrintRate 100/100 mm/sec.: ""
-*sv.inPrintRate 120/120 mm/sec.: ""
-*sv.inPrintRate 150/150 mm/sec.: ""
-*sv.inPrintRate 200/200 mm/sec.: ""
-*sv.inPrintRate 250/250 mm/sec.: ""
-*sv.inPrintRate 300/300 mm/sec.: ""
-*sv.Translation inPrintMode/Print Mode: ""
-*sv.inPrintMode Standard/Standard: ""
-*sv.inPrintMode Tear/Tear: ""
-*sv.inPrintMode Cut/Cut: ""
-*sv.Translation inTearInterval/Print and Tear: ""
-*sv.inTearInterval None/Disabled: ""
-*sv.inTearInterval 1/Every Label: ""
-*sv.inTearInterval 2/Every 2 Labels: ""
-*sv.inTearInterval 3/Every 3 Labels: ""
-*sv.inTearInterval 4/Every 4 Labels: ""
-*sv.inTearInterval 5/Every 5 Labels: ""
-*sv.inTearInterval 6/Every 6 Labels: ""
-*sv.inTearInterval 7/Every 7 Labels: ""
-*sv.inTearInterval 8/Every 8 Labels: ""
-*sv.inTearInterval 9/Every 9 Labels: ""
-*sv.inTearInterval 10/Every 10 Labels: ""
-*sv.Translation inCutInterval/Print and Cut: ""
-*sv.inCutInterval None/Disabled: ""
-*sv.inCutInterval 1/Every Label: ""
-*sv.inCutInterval 2/Every 2 Labels: ""
-*sv.inCutInterval 3/Every 3 Labels: ""
-*sv.inCutInterval 4/Every 4 Labels: ""
-*sv.inCutInterval 5/Every 5 Labels: ""
-*sv.inCutInterval 6/Every 6 Labels: ""
-*sv.inCutInterval 7/Every 7 Labels: ""
-*sv.inCutInterval 8/Every 8 Labels: ""
-*sv.inCutInterval 9/Every 9 Labels: ""
-*sv.inCutInterval 10/Every 10 Labels: ""
-*sv.CustominTearInterval True/CustominTearInterval: ""
-*sv.ParamCustominTearInterval Interval/ParamCustominTearInterval: ""
-*sv.CustominCutInterval True/CustominCutInterval: ""
-*sv.ParamCustominCutInterval Interval/ParamCustominCutInterval: ""
-*zh.Translation Manufacturer/Intellitech: ""
-*zh.Translation ModelName/Intellitech IntelliBar Label Printer: ""
-*zh.Translation ShortNickName/Intellibar Label Printer: ""
-*zh.Translation NickName/Intellitech IntelliBar Label Printer, 1.4: ""
-*zh.Translation PageSize/Page Size: ""
-*zh.PageSize w288h432/4.00x6.00": ""
-*zh.Translation Resolution/Resolution: ""
-*zh.Resolution 300dpi/300dpi: ""
-*zh.Translation PrinterSettings/Printer Settings: ""
-*zh.Translation inPrintDensity/Print Density: ""
-*zh.inPrintDensity Default/Printer's Current Setting: ""
-*zh.inPrintDensity -15/-15: ""
-*zh.inPrintDensity -14/-14: ""
-*zh.inPrintDensity -13/-13: ""
-*zh.inPrintDensity -12/-12: ""
-*zh.inPrintDensity -11/-11: ""
-*zh.inPrintDensity -10/-10: ""
-*zh.inPrintDensity -9/-9: ""
-*zh.inPrintDensity -8/-8: ""
-*zh.inPrintDensity -7/-7: ""
-*zh.inPrintDensity -6/-6: ""
-*zh.inPrintDensity -5/-5: ""
-*zh.inPrintDensity -4/-4: ""
-*zh.inPrintDensity -3/-3: ""
-*zh.inPrintDensity -2/-2: ""
-*zh.inPrintDensity -1/-1: ""
-*zh.inPrintDensity 0/0: ""
-*zh.inPrintDensity 1/1: ""
-*zh.inPrintDensity 2/2: ""
-*zh.inPrintDensity 3/3: ""
-*zh.inPrintDensity 4/4: ""
-*zh.inPrintDensity 5/5: ""
-*zh.inPrintDensity 6/6: ""
-*zh.inPrintDensity 7/7: ""
-*zh.inPrintDensity 8/8: ""
-*zh.inPrintDensity 9/9: ""
-*zh.inPrintDensity 10/10: ""
-*zh.inPrintDensity 11/11: ""
-*zh.inPrintDensity 12/12: ""
-*zh.inPrintDensity 13/13: ""
-*zh.inPrintDensity 14/14: ""
-*zh.inPrintDensity 15/15: ""
-*zh.Translation inPrintRate/Print Speed: ""
-*zh.inPrintRate Default/Printer's Current Setting: ""
-*zh.inPrintRate 15/15 mm/sec.: ""
-*zh.inPrintRate 20/20 mm/sec.: ""
-*zh.inPrintRate 30/30 mm/sec.: ""
-*zh.inPrintRate 40/40 mm/sec.: ""
-*zh.inPrintRate 60/60 mm/sec.: ""
-*zh.inPrintRate 80/80 mm/sec.: ""
-*zh.inPrintRate 100/100 mm/sec.: ""
-*zh.inPrintRate 120/120 mm/sec.: ""
-*zh.inPrintRate 150/150 mm/sec.: ""
-*zh.inPrintRate 200/200 mm/sec.: ""
-*zh.inPrintRate 250/250 mm/sec.: ""
-*zh.inPrintRate 300/300 mm/sec.: ""
-*zh.Translation inPrintMode/Print Mode: ""
-*zh.inPrintMode Standard/Standard: ""
-*zh.inPrintMode Tear/Tear: ""
-*zh.inPrintMode Cut/Cut: ""
-*zh.Translation inTearInterval/Print and Tear: ""
-*zh.inTearInterval None/Disabled: ""
-*zh.inTearInterval 1/Every Label: ""
-*zh.inTearInterval 2/Every 2 Labels: ""
-*zh.inTearInterval 3/Every 3 Labels: ""
-*zh.inTearInterval 4/Every 4 Labels: ""
-*zh.inTearInterval 5/Every 5 Labels: ""
-*zh.inTearInterval 6/Every 6 Labels: ""
-*zh.inTearInterval 7/Every 7 Labels: ""
-*zh.inTearInterval 8/Every 8 Labels: ""
-*zh.inTearInterval 9/Every 9 Labels: ""
-*zh.inTearInterval 10/Every 10 Labels: ""
-*zh.Translation inCutInterval/Print and Cut: ""
-*zh.inCutInterval None/Disabled: ""
-*zh.inCutInterval 1/Every Label: ""
-*zh.inCutInterval 2/Every 2 Labels: ""
-*zh.inCutInterval 3/Every 3 Labels: ""
-*zh.inCutInterval 4/Every 4 Labels: ""
-*zh.inCutInterval 5/Every 5 Labels: ""
-*zh.inCutInterval 6/Every 6 Labels: ""
-*zh.inCutInterval 7/Every 7 Labels: ""
-*zh.inCutInterval 8/Every 8 Labels: ""
-*zh.inCutInterval 9/Every 9 Labels: ""
-*zh.inCutInterval 10/Every 10 Labels: ""
-*zh.CustominTearInterval True/CustominTearInterval: ""
-*zh.ParamCustominTearInterval Interval/ParamCustominTearInterval: ""
-*zh.CustominCutInterval True/CustominCutInterval: ""
-*zh.ParamCustominCutInterval Interval/ParamCustominCutInterval: ""
-*zh_TW.Translation Manufacturer/Intellitech: ""
-*zh_TW.Translation ModelName/Intellitech IntelliBar Label Printer: ""
-*zh_TW.Translation ShortNickName/Intellibar Label Printer: ""
-*zh_TW.Translation NickName/Intellitech IntelliBar Label Printer, 1.4: ""
-*zh_TW.Translation PageSize/Page Size: ""
-*zh_TW.PageSize w288h432/4.00x6.00": ""
-*zh_TW.Translation Resolution/Resolution: ""
-*zh_TW.Resolution 300dpi/300dpi: ""
-*zh_TW.Translation PrinterSettings/Printer Settings: ""
-*zh_TW.Translation inPrintDensity/Print Density: ""
-*zh_TW.inPrintDensity Default/快速: ""
-*zh_TW.inPrintDensity -15/-15: ""
-*zh_TW.inPrintDensity -14/-14: ""
-*zh_TW.inPrintDensity -13/-13: ""
-*zh_TW.inPrintDensity -12/-12: ""
-*zh_TW.inPrintDensity -11/-11: ""
-*zh_TW.inPrintDensity -10/-10: ""
-*zh_TW.inPrintDensity -9/-9: ""
-*zh_TW.inPrintDensity -8/-8: ""
-*zh_TW.inPrintDensity -7/-7: ""
-*zh_TW.inPrintDensity -6/-6: ""
-*zh_TW.inPrintDensity -5/-5: ""
-*zh_TW.inPrintDensity -4/-4: ""
-*zh_TW.inPrintDensity -3/-3: ""
-*zh_TW.inPrintDensity -2/-2: ""
-*zh_TW.inPrintDensity -1/-1: ""
-*zh_TW.inPrintDensity 0/0: ""
-*zh_TW.inPrintDensity 1/1: ""
-*zh_TW.inPrintDensity 2/2: ""
-*zh_TW.inPrintDensity 3/3: ""
-*zh_TW.inPrintDensity 4/4: ""
-*zh_TW.inPrintDensity 5/5: ""
-*zh_TW.inPrintDensity 6/6: ""
-*zh_TW.inPrintDensity 7/7: ""
-*zh_TW.inPrintDensity 8/8: ""
-*zh_TW.inPrintDensity 9/9: ""
-*zh_TW.inPrintDensity 10/10: ""
-*zh_TW.inPrintDensity 11/11: ""
-*zh_TW.inPrintDensity 12/12: ""
-*zh_TW.inPrintDensity 13/13: ""
-*zh_TW.inPrintDensity 14/14: ""
-*zh_TW.inPrintDensity 15/15: ""
-*zh_TW.Translation inPrintRate/Print Speed: ""
-*zh_TW.inPrintRate Default/快速: ""
-*zh_TW.inPrintRate 15/15 mm/sec.: ""
-*zh_TW.inPrintRate 20/20 mm/sec.: ""
-*zh_TW.inPrintRate 30/30 mm/sec.: ""
-*zh_TW.inPrintRate 40/40 mm/sec.: ""
-*zh_TW.inPrintRate 60/60 mm/sec.: ""
-*zh_TW.inPrintRate 80/80 mm/sec.: ""
-*zh_TW.inPrintRate 100/100 mm/sec.: ""
-*zh_TW.inPrintRate 120/120 mm/sec.: ""
-*zh_TW.inPrintRate 150/150 mm/sec.: ""
-*zh_TW.inPrintRate 200/200 mm/sec.: ""
-*zh_TW.inPrintRate 250/250 mm/sec.: ""
-*zh_TW.inPrintRate 300/300 mm/sec.: ""
-*zh_TW.Translation inPrintMode/Print Mode: ""
-*zh_TW.inPrintMode Standard/Standard: ""
-*zh_TW.inPrintMode Tear/Tear: ""
-*zh_TW.inPrintMode Cut/Cut: ""
-*zh_TW.Translation inTearInterval/Print and Tear: ""
-*zh_TW.inTearInterval None/Disabled: ""
-*zh_TW.inTearInterval 1/Every Label: ""
-*zh_TW.inTearInterval 2/Every 2 Labels: ""
-*zh_TW.inTearInterval 3/Every 3 Labels: ""
-*zh_TW.inTearInterval 4/Every 4 Labels: ""
-*zh_TW.inTearInterval 5/Every 5 Labels: ""
-*zh_TW.inTearInterval 6/Every 6 Labels: ""
-*zh_TW.inTearInterval 7/Every 7 Labels: ""
-*zh_TW.inTearInterval 8/Every 8 Labels: ""
-*zh_TW.inTearInterval 9/Every 9 Labels: ""
-*zh_TW.inTearInterval 10/Every 10 Labels: ""
-*zh_TW.Translation inCutInterval/Print and Cut: ""
-*zh_TW.inCutInterval None/Disabled: ""
-*zh_TW.inCutInterval 1/Every Label: ""
-*zh_TW.inCutInterval 2/Every 2 Labels: ""
-*zh_TW.inCutInterval 3/Every 3 Labels: ""
-*zh_TW.inCutInterval 4/Every 4 Labels: ""
-*zh_TW.inCutInterval 5/Every 5 Labels: ""
-*zh_TW.inCutInterval 6/Every 6 Labels: ""
-*zh_TW.inCutInterval 7/Every 7 Labels: ""
-*zh_TW.inCutInterval 8/Every 8 Labels: ""
-*zh_TW.inCutInterval 9/Every 9 Labels: ""
-*zh_TW.inCutInterval 10/Every 10 Labels: ""
-*zh_TW.CustominTearInterval True/CustominTearInterval: ""
-*zh_TW.ParamCustominTearInterval Interval/ParamCustominTearInterval: ""
-*zh_TW.CustominCutInterval True/CustominCutInterval: ""
-*zh_TW.ParamCustominCutInterval Interval/ParamCustominCutInterval: ""
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(1.05)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
-*Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
-*Font Bookman-Demi: Standard "(1.05)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
-*Font Bookman-Light: Standard "(1.05)" Standard ROM
-*Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
-*Font Courier: Standard "(1.05)" Standard ROM
-*Font Courier-Bold: Standard "(1.05)" Standard ROM
-*Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Courier-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica: Standard "(1.05)" Standard ROM
-*Font Helvetica-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
-*Font Palatino-Bold: Standard "(1.05)" Standard ROM
-*Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Palatino-Italic: Standard "(1.05)" Standard ROM
-*Font Palatino-Roman: Standard "(1.05)" Standard ROM
-*Font Symbol: Special "(001.005)" Special ROM
-*Font Times-Bold: Standard "(1.05)" Standard ROM
-*Font Times-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Times-Italic: Standard "(1.05)" Standard ROM
-*Font Times-Roman: Standard "(1.05)" Standard ROM
-*Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
-*Font ZapfDingbats: Special "(001.005)" Special ROM
-*% End of INTELBAR.PPD, 60389 bytes.
diff --git a/ppd/laserjet.ppd b/ppd/laserjet.ppd
deleted file mode 100644 (file)
index 9a582c8..0000000
+++ /dev/null
@@ -1,758 +0,0 @@
-*PPD-Adobe: "4.3"
-*% PPD file for LaserJet Series PCL 4/5 with CUPS.
-*% Created by the CUPS PPD Compiler v1.2.4.
-*% Copyright 2007 by Apple Inc.
-*% Copyright 1997-2007 by Easy Software Products.
-*% 
-*% These coded instructions, statements, and computer programs are the
-*% property of Apple Inc. and are protected by Federal copyright
-*% law.  Distribution and use rights are outlined in the file "LICENSE.txt"
-*% which should have been included with this file.  If this file is
-*% file is missing or damaged, see the license at "http://www.cups.org/".
-*FormatVersion: "4.3"
-*FileVersion: "1.4"
-*LanguageVersion: English
-*LanguageEncoding: ISOLatin1
-*PCFileName: "LASERJET.PPD"
-*Product: "(ESP Ghostscript)"
-*Product: "(GPL Ghostscript)"
-*Manufacturer: "HP"
-*ModelName: "HP LaserJet Series PCL 4/5"
-*ShortNickName: "HP LaserJet Series PCL 4/5"
-*NickName: "HP LaserJet Series PCL 4/5, 1.4"
-*PSVersion: "(3010.000) 81504"
-*PSVersion: "(3010.000) 860"
-*LanguageLevel: "3"
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*FileSystem: False
-*Throughput: "8"
-*LandscapeOrientation: Plus90
-*TTRasterizer: Type42
-*% Driver-defined attributes...
-*cupsVersion: 1.4
-*cupsModelNumber: 0
-*cupsManualCopies: False
-*cupsFilter: "application/vnd.cups-raster 50 rastertohp"
-*cupsLanguages: "en da de es fi fr it ja ko nl no pt pt_BR sv zh zh_TW"
-*UIConstraints: *Duplex *Option1 False
-*UIConstraints: *Option1 False *Duplex
-*UIConstraints: *PageSize A3 *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageSize A3
-*UIConstraints: *PageSize A4 *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageSize A4
-*UIConstraints: *PageSize A5 *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageSize A5
-*UIConstraints: *PageSize B5 *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageSize B5
-*UIConstraints: *PageSize Executive *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageSize Executive
-*UIConstraints: *PageSize Legal *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageSize Legal
-*UIConstraints: *PageSize Letter *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageSize Letter
-*UIConstraints: *PageSize Tabloid *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageSize Tabloid
-*OpenUI *PageSize/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageSize Executive/Executive - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
-*PageSize Tabloid/Tabloid - 11x17in: "<</PageSize[792 1224]/ImagingBBox null>>setpagedevice"
-*PageSize A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
-*PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*PageSize A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
-*PageSize B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
-*PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
-*PageSize Env10/#10 Envelope - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
-*PageSize EnvC5/C5 Envelope - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
-*PageSize EnvDL/DL Envelope - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
-*PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageSize
-*OpenUI *PageRegion/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageRegion Executive/Executive - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
-*PageRegion Tabloid/Tabloid - 11x17in: "<</PageSize[792 1224]/ImagingBBox null>>setpagedevice"
-*PageRegion A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
-*PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*PageRegion A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
-*PageRegion B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
-*PageRegion EnvISOB5/ISOB5 Envelope - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
-*PageRegion Env10/#10 Envelope - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
-*PageRegion EnvC5/C5 Envelope - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
-*PageRegion EnvDL/DL Envelope - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
-*PageRegion EnvMonarch/Monarch Envelope - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageRegion
-*DefaultImageableArea: Letter
-*ImageableArea Letter/Letter - 8.5x11in: "18.00 36.00 594.00 756.00"
-*ImageableArea Legal/Legal - 8.5x14in: "18.00 36.00 594.00 972.00"
-*ImageableArea Executive/Executive - 7.25x10.5in: "18.00 36.00 504.00 720.00"
-*ImageableArea Tabloid/Tabloid - 11x17in: "18.00 36.00 774.00 1188.00"
-*ImageableArea A3/A3 - 297x420mm: "18.00 36.00 824.00 1155.00"
-*ImageableArea A4/A4 - 210x297mm: "18.00 36.00 577.00 806.00"
-*ImageableArea A5/A5 - 148x210mm: "18.00 36.00 402.00 559.00"
-*ImageableArea B5/B5 - 182x257mm: "18.00 36.00 498.00 693.00"
-*ImageableArea EnvISOB5/ISOB5 Envelope - 176x250mm: "18.00 36.00 481.00 673.00"
-*ImageableArea Env10/#10 Envelope - 4.13x9.5in: "18.00 36.00 279.00 648.00"
-*ImageableArea EnvC5/C5 Envelope - 162x229mm: "18.00 36.00 441.00 613.00"
-*ImageableArea EnvDL/DL Envelope - 110x220mm: "18.00 36.00 294.00 588.00"
-*ImageableArea EnvMonarch/Monarch Envelope - 3.875x7.5in: "18.00 36.00 261.00 504.00"
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/Letter - 8.5x11in: "612.00 792.00"
-*PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
-*PaperDimension Executive/Executive - 7.25x10.5in: "522.00 756.00"
-*PaperDimension Tabloid/Tabloid - 11x17in: "792.00 1224.00"
-*PaperDimension A3/A3 - 297x420mm: "842.00 1191.00"
-*PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
-*PaperDimension A5/A5 - 148x210mm: "420.00 595.00"
-*PaperDimension B5/B5 - 182x257mm: "516.00 729.00"
-*PaperDimension EnvISOB5/ISOB5 Envelope - 176x250mm: "499.00 709.00"
-*PaperDimension Env10/#10 Envelope - 4.13x9.5in: "297.00 684.00"
-*PaperDimension EnvC5/C5 Envelope - 162x229mm: "459.00 649.00"
-*PaperDimension EnvDL/DL Envelope - 110x220mm: "312.00 624.00"
-*PaperDimension EnvMonarch/Monarch Envelope - 3.875x7.5in: "279.00 540.00"
-*RequiresPageRegion All: True
-*OpenUI *Resolution: PickOne
-*OrderDependency: 10.0 AnySetup *Resolution
-*DefaultResolution: 300dpi
-*Resolution 150dpi: "<</HWResolution[150 150]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*Resolution 300dpi: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*Resolution 600dpi: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*CloseUI: *Resolution
-*OpenUI *InputSlot/Media Source: PickOne
-*OrderDependency: 10.0 AnySetup *InputSlot
-*DefaultInputSlot: Default
-*InputSlot Default/Printer Default: "<</MediaPosition 0>>setpagedevice"
-*InputSlot Tray1/Tray 1: "<</MediaPosition 8>>setpagedevice"
-*InputSlot Tray2/Tray 2: "<</MediaPosition 1>>setpagedevice"
-*InputSlot Tray3/Tray 3: "<</MediaPosition 4>>setpagedevice"
-*InputSlot Tray4/Tray 4: "<</MediaPosition 5>>setpagedevice"
-*InputSlot Manual/Manual Feed: "<</MediaPosition 2>>setpagedevice"
-*InputSlot Envelope/Envelope Feed: "<</MediaPosition 3>>setpagedevice"
-*CloseUI: *InputSlot
-*OpenUI *Duplex/2-Sided Printing: PickOne
-*OrderDependency: 10.0 AnySetup *Duplex
-*DefaultDuplex: None
-*Duplex None/Off (1-Sided): "<</Duplex false>>setpagedevice"
-*Duplex DuplexNoTumble/Long-Edge (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
-*Duplex DuplexTumble/Short-Edge (Landscape): "<</Duplex true/Tumble true>>setpagedevice"
-*CloseUI: *Duplex
-*OpenGroup: InstallableOptions/Installable Options
-*OpenUI *Option1/Duplexer: Boolean
-*OrderDependency: 10.0 AnySetup *Option1
-*DefaultOption1: False
-*Option1 False/Not Installed: ""
-*Option1 True/Installed: ""
-*CloseUI: *Option1
-*CloseGroup: InstallableOptions
-*da.Translation Manufacturer/HP: ""
-*da.Translation ModelName/HP LaserJet Series PCL 4/5: ""
-*da.Translation ShortNickName/HP LaserJet Series PCL 4/5: ""
-*da.Translation NickName/HP LaserJet Series PCL 4/5, 1.4: ""
-*da.Translation PageSize/Media Size: ""
-*da.PageSize Letter/Letter - 8.5x11in: ""
-*da.PageSize Legal/Legal - 8.5x14in: ""
-*da.PageSize Executive/Executive - 7.25x10.5in: ""
-*da.PageSize Tabloid/Tabloid - 11x17in: ""
-*da.PageSize A3/A3 - 297x420mm: ""
-*da.PageSize A4/A4 - 210x297mm: ""
-*da.PageSize A5/A5 - 148x210mm: ""
-*da.PageSize B5/B5 - 182x257mm: ""
-*da.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*da.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*da.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*da.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*da.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*da.Translation Resolution/Resolution: ""
-*da.Resolution 150dpi/150dpi: ""
-*da.Resolution 300dpi/300dpi: ""
-*da.Resolution 600dpi/600dpi: ""
-*da.Translation InputSlot/Media Source: ""
-*da.InputSlot Default/Printerstandard: ""
-*da.InputSlot Tray1/Bakke 1: ""
-*da.InputSlot Tray2/Magasin 2: ""
-*da.InputSlot Tray3/Magasin 3: ""
-*da.InputSlot Tray4/Bakke 4: ""
-*da.InputSlot Manual/Manuel: ""
-*da.InputSlot Envelope/Envelope Feed: ""
-*da.Translation Duplex/Dupleks: ""
-*da.Duplex None/Off (1-Sided): ""
-*da.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*da.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*da.Translation InstallableOptions/Installable Options: ""
-*da.Translation Option1/Duplexer: ""
-*da.Option1 False/Ikke installeret: ""
-*da.Option1 True/Installed: ""
-*de.Translation Manufacturer/HP: ""
-*de.Translation ModelName/HP LaserJet Series PCL 4/5: ""
-*de.Translation ShortNickName/HP LaserJet Series PCL 4/5: ""
-*de.Translation NickName/HP LaserJet Series PCL 4/5, 1.4: ""
-*de.Translation PageSize/Media Size: ""
-*de.PageSize Letter/Letter - 8.5x11in: ""
-*de.PageSize Legal/Legal - 8.5x14in: ""
-*de.PageSize Executive/Executive - 7.25x10.5in: ""
-*de.PageSize Tabloid/Tabloid - 11x17in: ""
-*de.PageSize A3/A3 - 297x420mm: ""
-*de.PageSize A4/A4 - 210x297mm: ""
-*de.PageSize A5/A5 - 148x210mm: ""
-*de.PageSize B5/B5 - 182x257mm: ""
-*de.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*de.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*de.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*de.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*de.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*de.Translation Resolution/Resolution: ""
-*de.Resolution 150dpi/150dpi: ""
-*de.Resolution 300dpi/300dpi: ""
-*de.Resolution 600dpi/600dpi: ""
-*de.Translation InputSlot/Media Source: ""
-*de.InputSlot Default/Druckerstandard: ""
-*de.InputSlot Tray1/Fach 1: ""
-*de.InputSlot Tray2/Fach 2: ""
-*de.InputSlot Tray3/Fach 3: ""
-*de.InputSlot Tray4/Zufuhrfach 4: ""
-*de.InputSlot Manual/Manuell: ""
-*de.InputSlot Envelope/Envelope Feed: ""
-*de.Translation Duplex/Duplexdruck: ""
-*de.Duplex None/Off (1-Sided): ""
-*de.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*de.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*de.Translation InstallableOptions/Installable Options: ""
-*de.Translation Option1/Duplexer: ""
-*de.Option1 False/Nicht Eingebaut: ""
-*de.Option1 True/Eingebaut: ""
-*es.Translation Manufacturer/HP: ""
-*es.Translation ModelName/HP LaserJet Series PCL 4/5: ""
-*es.Translation ShortNickName/HP LaserJet Series PCL 4/5: ""
-*es.Translation NickName/HP LaserJet Series PCL 4/5, 1.4: ""
-*es.Translation PageSize/Media Size: ""
-*es.PageSize Letter/Letter - 8.5x11in: ""
-*es.PageSize Legal/Legal - 8.5x14in: ""
-*es.PageSize Executive/Executive - 7.25x10.5in: ""
-*es.PageSize Tabloid/Tabloid - 11x17in: ""
-*es.PageSize A3/A3 - 297x420mm: ""
-*es.PageSize A4/A4 - 210x297mm: ""
-*es.PageSize A5/A5 - 148x210mm: ""
-*es.PageSize B5/B5 - 182x257mm: ""
-*es.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*es.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*es.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*es.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*es.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*es.Translation Resolution/Resolution: ""
-*es.Resolution 150dpi/150dpi: ""
-*es.Resolution 300dpi/300dpi: ""
-*es.Resolution 600dpi/600dpi: ""
-*es.Translation InputSlot/Media Source: ""
-*es.InputSlot Default/Impresora por defecto: ""
-*es.InputSlot Tray1/Bandeja 1: ""
-*es.InputSlot Tray2/Bandeja 2: ""
-*es.InputSlot Tray3/Bandeja 3: ""
-*es.InputSlot Tray4/Bandeja 4: ""
-*es.InputSlot Manual/Alimentación manual: ""
-*es.InputSlot Envelope/Envelope Feed: ""
-*es.Translation Duplex/Dúplex: ""
-*es.Duplex None/Off (1-Sided): ""
-*es.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*es.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*es.Translation InstallableOptions/Installable Options: ""
-*es.Translation Option1/Duplexer: ""
-*es.Option1 False/No Instalado: ""
-*es.Option1 True/Instalada: ""
-*fi.Translation Manufacturer/HP: ""
-*fi.Translation ModelName/HP LaserJet Series PCL 4/5: ""
-*fi.Translation ShortNickName/HP LaserJet Series PCL 4/5: ""
-*fi.Translation NickName/HP LaserJet Series PCL 4/5, 1.4: ""
-*fi.Translation PageSize/Media Size: ""
-*fi.PageSize Letter/Letter - 8.5x11in: ""
-*fi.PageSize Legal/Legal - 8.5x14in: ""
-*fi.PageSize Executive/Executive - 7.25x10.5in: ""
-*fi.PageSize Tabloid/Tabloid - 11x17in: ""
-*fi.PageSize A3/A3 - 297x420mm: ""
-*fi.PageSize A4/A4 - 210x297mm: ""
-*fi.PageSize A5/A5 - 148x210mm: ""
-*fi.PageSize B5/B5 - 182x257mm: ""
-*fi.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*fi.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*fi.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*fi.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*fi.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*fi.Translation Resolution/Resolution: ""
-*fi.Resolution 150dpi/150dpi: ""
-*fi.Resolution 300dpi/300dpi: ""
-*fi.Resolution 600dpi/600dpi: ""
-*fi.Translation InputSlot/Paperilähde: ""
-*fi.InputSlot Default/Nopea: ""
-*fi.InputSlot Tray1/Kasetti1: ""
-*fi.InputSlot Tray2/Kasetti2: ""
-*fi.InputSlot Tray3/Alusta 3: ""
-*fi.InputSlot Tray4/Lokero 4: ""
-*fi.InputSlot Manual/Käsinsyöttö: ""
-*fi.InputSlot Envelope/Envelope Feed: ""
-*fi.Translation Duplex/Kaksipuolinen tulostus: ""
-*fi.Duplex None/Off (1-Sided): ""
-*fi.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*fi.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*fi.Translation InstallableOptions/Installable Options: ""
-*fi.Translation Option1/Duplexer: ""
-*fi.Option1 False/Not Installed: ""
-*fi.Option1 True/Installed: ""
-*fr.Translation Manufacturer/HP: ""
-*fr.Translation ModelName/HP LaserJet Series PCL 4/5: ""
-*fr.Translation ShortNickName/HP LaserJet Series PCL 4/5: ""
-*fr.Translation NickName/HP LaserJet Series PCL 4/5, 1.4: ""
-*fr.Translation PageSize/Media Size: ""
-*fr.PageSize Letter/Letter - 8.5x11in: ""
-*fr.PageSize Legal/Legal - 8.5x14in: ""
-*fr.PageSize Executive/Executive - 7.25x10.5in: ""
-*fr.PageSize Tabloid/Tabloid - 11x17in: ""
-*fr.PageSize A3/A3 - 297x420mm: ""
-*fr.PageSize A4/A4 - 210x297mm: ""
-*fr.PageSize A5/A5 - 148x210mm: ""
-*fr.PageSize B5/B5 - 182x257mm: ""
-*fr.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*fr.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*fr.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*fr.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*fr.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*fr.Translation Resolution/Resolution: ""
-*fr.Resolution 150dpi/150dpi: ""
-*fr.Resolution 300dpi/300dpi: ""
-*fr.Resolution 600dpi/600dpi: ""
-*fr.Translation InputSlot/Media Source: ""
-*fr.InputSlot Default/Imprimante par défaut: ""
-*fr.InputSlot Tray1/Bac 1: ""
-*fr.InputSlot Tray2/Bac 2: ""
-*fr.InputSlot Tray3/Bac 3: ""
-*fr.InputSlot Tray4/Bac 4: ""
-*fr.InputSlot Manual/Manuel: ""
-*fr.InputSlot Envelope/Envelope Feed: ""
-*fr.Translation Duplex/Impression recto-verso: ""
-*fr.Duplex None/Off (1-Sided): ""
-*fr.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*fr.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*fr.Translation InstallableOptions/Installable Options: ""
-*fr.Translation Option1/Duplexer: ""
-*fr.Option1 False/Non Installée: ""
-*fr.Option1 True/Installée: ""
-*it.Translation Manufacturer/HP: ""
-*it.Translation ModelName/HP LaserJet Series PCL 4/5: ""
-*it.Translation ShortNickName/HP LaserJet Series PCL 4/5: ""
-*it.Translation NickName/HP LaserJet Series PCL 4/5, 1.4: ""
-*it.Translation PageSize/Media Size: ""
-*it.PageSize Letter/Letter - 8.5x11in: ""
-*it.PageSize Legal/Legal - 8.5x14in: ""
-*it.PageSize Executive/Executive - 7.25x10.5in: ""
-*it.PageSize Tabloid/Tabloid - 11x17in: ""
-*it.PageSize A3/A3 - 297x420mm: ""
-*it.PageSize A4/A4 - 210x297mm: ""
-*it.PageSize A5/A5 - 148x210mm: ""
-*it.PageSize B5/B5 - 182x257mm: ""
-*it.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*it.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*it.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*it.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*it.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*it.Translation Resolution/Resolution: ""
-*it.Resolution 150dpi/150dpi: ""
-*it.Resolution 300dpi/300dpi: ""
-*it.Resolution 600dpi/600dpi: ""
-*it.Translation InputSlot/Media Source: ""
-*it.InputSlot Default/Impostazioni predefinite stampante: ""
-*it.InputSlot Tray1/Vassoio 1: ""
-*it.InputSlot Tray2/Cassetto 2: ""
-*it.InputSlot Tray3/Cassetto 3: ""
-*it.InputSlot Tray4/Vassoio 4: ""
-*it.InputSlot Manual/Manuale: ""
-*it.InputSlot Envelope/Envelope Feed: ""
-*it.Translation Duplex/Fronte-retro: ""
-*it.Duplex None/Off (1-Sided): ""
-*it.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*it.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*it.Translation InstallableOptions/Installable Options: ""
-*it.Translation Option1/Duplexer: ""
-*it.Option1 False/Non Installato: ""
-*it.Option1 True/Installata: ""
-*ja.Translation Manufacturer/HP: ""
-*ja.Translation ModelName/HP LaserJet Series PCL 4/5: ""
-*ja.Translation ShortNickName/HP LaserJet Series PCL 4/5: ""
-*ja.Translation NickName/HP LaserJet Series PCL 4/5, 1.4: ""
-*ja.Translation PageSize/Media Size: ""
-*ja.PageSize Letter/Letter - 8.5x11in: ""
-*ja.PageSize Legal/Legal - 8.5x14in: ""
-*ja.PageSize Executive/Executive - 7.25x10.5in: ""
-*ja.PageSize Tabloid/Tabloid - 11x17in: ""
-*ja.PageSize A3/A3 - 297x420mm: ""
-*ja.PageSize A4/A4 - 210x297mm: ""
-*ja.PageSize A5/A5 - 148x210mm: ""
-*ja.PageSize B5/B5 - 182x257mm: ""
-*ja.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*ja.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*ja.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*ja.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*ja.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*ja.Translation Resolution/Resolution: ""
-*ja.Resolution 150dpi/150dpi: ""
-*ja.Resolution 300dpi/300dpi: ""
-*ja.Resolution 600dpi/600dpi: ""
-*ja.Translation InputSlot/Media Source: ""
-*ja.InputSlot Default/システムデフォルト: ""
-*ja.InputSlot Tray1/カセット 1: ""
-*ja.InputSlot Tray2/カセット 2: ""
-*ja.InputSlot Tray3/カセット 3: ""
-*ja.InputSlot Tray4/トレイ 4: ""
-*ja.InputSlot Manual/手差し: ""
-*ja.InputSlot Envelope/Envelope Feed: ""
-*ja.Translation Duplex/両面印刷: ""
-*ja.Duplex None/Off (1-Sided): ""
-*ja.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*ja.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*ja.Translation InstallableOptions/Installable Options: ""
-*ja.Translation Option1/Duplexer: ""
-*ja.Option1 False/インストールされていません: ""
-*ja.Option1 True/インストール済み: ""
-*ko.Translation Manufacturer/HP: ""
-*ko.Translation ModelName/HP LaserJet Series PCL 4/5: ""
-*ko.Translation ShortNickName/HP LaserJet Series PCL 4/5: ""
-*ko.Translation NickName/HP LaserJet Series PCL 4/5, 1.4: ""
-*ko.Translation PageSize/Page Size: ""
-*ko.PageSize Letter/Letter - 8.5x11in: ""
-*ko.PageSize Legal/Legal - 8.5x14in: ""
-*ko.PageSize Executive/Executive - 7.25x10.5in: ""
-*ko.PageSize Tabloid/Tabloid - 11x17in: ""
-*ko.PageSize A3/A3 - 297x420mm: ""
-*ko.PageSize A4/A4 - 210x297mm: ""
-*ko.PageSize A5/A5 - 148x210mm: ""
-*ko.PageSize B5/B5 - 182x257mm: ""
-*ko.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*ko.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*ko.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*ko.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*ko.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*ko.Translation Resolution/Resolution: ""
-*ko.Resolution 150dpi/150dpi: ""
-*ko.Resolution 300dpi/300dpi: ""
-*ko.Resolution 600dpi/600dpi: ""
-*ko.Translation InputSlot/용지함: ""
-*ko.InputSlot Default/빠르게: ""
-*ko.InputSlot Tray1/트레이 1: ""
-*ko.InputSlot Tray2/용지함 2: ""
-*ko.InputSlot Tray3/용지함 3: ""
-*ko.InputSlot Tray4/용지함 4: ""
-*ko.InputSlot Manual/수동: ""
-*ko.InputSlot Envelope/Envelope Feed: ""
-*ko.Translation Duplex/양면인쇄: ""
-*ko.Duplex None/Off (1-Sided): ""
-*ko.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*ko.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*ko.Translation InstallableOptions/Installable Options: ""
-*ko.Translation Option1/Duplexer: ""
-*ko.Option1 False/설치 안됨: ""
-*ko.Option1 True/설치됨: ""
-*nl.Translation Manufacturer/HP: ""
-*nl.Translation ModelName/HP LaserJet Series PCL 4/5: ""
-*nl.Translation ShortNickName/HP LaserJet Series PCL 4/5: ""
-*nl.Translation NickName/HP LaserJet Series PCL 4/5, 1.4: ""
-*nl.Translation PageSize/Media Size: ""
-*nl.PageSize Letter/Letter - 8.5x11in: ""
-*nl.PageSize Legal/Legal - 8.5x14in: ""
-*nl.PageSize Executive/Executive - 7.25x10.5in: ""
-*nl.PageSize Tabloid/Tabloid - 11x17in: ""
-*nl.PageSize A3/A3 - 297x420mm: ""
-*nl.PageSize A4/A4 - 210x297mm: ""
-*nl.PageSize A5/A5 - 148x210mm: ""
-*nl.PageSize B5/B5 - 182x257mm: ""
-*nl.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*nl.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*nl.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*nl.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*nl.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*nl.Translation Resolution/Resolution: ""
-*nl.Resolution 150dpi/150dpi: ""
-*nl.Resolution 300dpi/300dpi: ""
-*nl.Resolution 600dpi/600dpi: ""
-*nl.Translation InputSlot/Media Source: ""
-*nl.InputSlot Default/Printerstandaard: ""
-*nl.InputSlot Tray1/Lade 1: ""
-*nl.InputSlot Tray2/Lade 2: ""
-*nl.InputSlot Tray3/Lade 3: ""
-*nl.InputSlot Tray4/Lade 4: ""
-*nl.InputSlot Manual/Handmatig: ""
-*nl.InputSlot Envelope/Envelope Feed: ""
-*nl.Translation Duplex/Dubbelzijdig afdrukken: ""
-*nl.Duplex None/Off (1-Sided): ""
-*nl.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*nl.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*nl.Translation InstallableOptions/Installable Options: ""
-*nl.Translation Option1/Duplexer: ""
-*nl.Option1 False/Niet geïnstalleerd: ""
-*nl.Option1 True/Installed: ""
-*no.Translation Manufacturer/HP: ""
-*no.Translation ModelName/HP LaserJet Series PCL 4/5: ""
-*no.Translation ShortNickName/HP LaserJet Series PCL 4/5: ""
-*no.Translation NickName/HP LaserJet Series PCL 4/5, 1.4: ""
-*no.Translation PageSize/Media Size: ""
-*no.PageSize Letter/Letter - 8.5x11in: ""
-*no.PageSize Legal/Legal - 8.5x14in: ""
-*no.PageSize Executive/Executive - 7.25x10.5in: ""
-*no.PageSize Tabloid/Tabloid - 11x17in: ""
-*no.PageSize A3/A3 - 297x420mm: ""
-*no.PageSize A4/A4 - 210x297mm: ""
-*no.PageSize A5/A5 - 148x210mm: ""
-*no.PageSize B5/B5 - 182x257mm: ""
-*no.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*no.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*no.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*no.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*no.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*no.Translation Resolution/Resolution: ""
-*no.Resolution 150dpi/150dpi: ""
-*no.Resolution 300dpi/300dpi: ""
-*no.Resolution 600dpi/600dpi: ""
-*no.Translation InputSlot/Media Source: ""
-*no.InputSlot Default/Skriverstandard: ""
-*no.InputSlot Tray1/Skuff 1: ""
-*no.InputSlot Tray2/Skuff 2: ""
-*no.InputSlot Tray3/Magasin 3: ""
-*no.InputSlot Tray4/Skuff 4: ""
-*no.InputSlot Manual/Handmatig: ""
-*no.InputSlot Envelope/Envelope Feed: ""
-*no.Translation Duplex/Tosidig: ""
-*no.Duplex None/Off (1-Sided): ""
-*no.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*no.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*no.Translation InstallableOptions/Installable Options: ""
-*no.Translation Option1/Duplexer: ""
-*no.Option1 False/Not Installed: ""
-*no.Option1 True/Installed: ""
-*pt.Translation Manufacturer/HP: ""
-*pt.Translation ModelName/HP LaserJet Series PCL 4/5: ""
-*pt.Translation ShortNickName/HP LaserJet Series PCL 4/5: ""
-*pt.Translation NickName/HP LaserJet Series PCL 4/5, 1.4: ""
-*pt.Translation PageSize/Media Size: ""
-*pt.PageSize Letter/Letter - 8.5x11in: ""
-*pt.PageSize Legal/Legal - 8.5x14in: ""
-*pt.PageSize Executive/Executive - 7.25x10.5in: ""
-*pt.PageSize Tabloid/Tabloid - 11x17in: ""
-*pt.PageSize A3/A3 - 297x420mm: ""
-*pt.PageSize A4/A4 - 210x297mm: ""
-*pt.PageSize A5/A5 - 148x210mm: ""
-*pt.PageSize B5/B5 - 182x257mm: ""
-*pt.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*pt.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*pt.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*pt.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*pt.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*pt.Translation Resolution/Resolution: ""
-*pt.Resolution 150dpi/150dpi: ""
-*pt.Resolution 300dpi/300dpi: ""
-*pt.Resolution 600dpi/600dpi: ""
-*pt.Translation InputSlot/Media Source: ""
-*pt.InputSlot Default/Rápido: ""
-*pt.InputSlot Tray1/Bandeja 1: ""
-*pt.InputSlot Tray2/Bandeja 2: ""
-*pt.InputSlot Tray3/Bandeja 3: ""
-*pt.InputSlot Tray4/Bandeja 4: ""
-*pt.InputSlot Manual/Alimentação Manual: ""
-*pt.InputSlot Envelope/Envelope Feed: ""
-*pt.Translation Duplex/Impressão em Frente e Verso: ""
-*pt.Duplex None/Off (1-Sided): ""
-*pt.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*pt.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*pt.Translation InstallableOptions/Installable Options: ""
-*pt.Translation Option1/Duplexer: ""
-*pt.Option1 False/Não instalado: ""
-*pt.Option1 True/Instalada: ""
-*pt_BR.Translation Manufacturer/HP: ""
-*pt_BR.Translation ModelName/HP LaserJet Series PCL 4/5: ""
-*pt_BR.Translation ShortNickName/HP LaserJet Series PCL 4/5: ""
-*pt_BR.Translation NickName/HP LaserJet Series PCL 4/5, 1.4: ""
-*pt_BR.Translation PageSize/Media Size: ""
-*pt_BR.PageSize Letter/Letter - 8.5x11in: ""
-*pt_BR.PageSize Legal/Legal - 8.5x14in: ""
-*pt_BR.PageSize Executive/Executive - 7.25x10.5in: ""
-*pt_BR.PageSize Tabloid/Tabloid - 11x17in: ""
-*pt_BR.PageSize A3/A3 - 297x420mm: ""
-*pt_BR.PageSize A4/A4 - 210x297mm: ""
-*pt_BR.PageSize A5/A5 - 148x210mm: ""
-*pt_BR.PageSize B5/B5 - 182x257mm: ""
-*pt_BR.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*pt_BR.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*pt_BR.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*pt_BR.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*pt_BR.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*pt_BR.Translation Resolution/Resolution: ""
-*pt_BR.Resolution 150dpi/150dpi: ""
-*pt_BR.Resolution 300dpi/300dpi: ""
-*pt_BR.Resolution 600dpi/600dpi: ""
-*pt_BR.Translation InputSlot/Media Source: ""
-*pt_BR.InputSlot Default/Rápido: ""
-*pt_BR.InputSlot Tray1/Bandeja 1: ""
-*pt_BR.InputSlot Tray2/Bandeja 2: ""
-*pt_BR.InputSlot Tray3/Bandeja 3: ""
-*pt_BR.InputSlot Tray4/Bandeja 4: ""
-*pt_BR.InputSlot Manual/Alimentação Manual: ""
-*pt_BR.InputSlot Envelope/Envelope Feed: ""
-*pt_BR.Translation Duplex/Impressão em Frente e Verso: ""
-*pt_BR.Duplex None/Off (1-Sided): ""
-*pt_BR.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*pt_BR.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*pt_BR.Translation InstallableOptions/Installable Options: ""
-*pt_BR.Translation Option1/Duplexer: ""
-*pt_BR.Option1 False/Não instalado: ""
-*pt_BR.Option1 True/Instalada: ""
-*sv.Translation Manufacturer/HP: ""
-*sv.Translation ModelName/HP LaserJet Series PCL 4/5: ""
-*sv.Translation ShortNickName/HP LaserJet Series PCL 4/5: ""
-*sv.Translation NickName/HP LaserJet Series PCL 4/5, 1.4: ""
-*sv.Translation PageSize/Media Size: ""
-*sv.PageSize Letter/Letter - 8.5x11in: ""
-*sv.PageSize Legal/Legal - 8.5x14in: ""
-*sv.PageSize Executive/Executive - 7.25x10.5in: ""
-*sv.PageSize Tabloid/Tabloid - 11x17in: ""
-*sv.PageSize A3/A3 - 297x420mm: ""
-*sv.PageSize A4/A4 - 210x297mm: ""
-*sv.PageSize A5/A5 - 148x210mm: ""
-*sv.PageSize B5/B5 - 182x257mm: ""
-*sv.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*sv.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*sv.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*sv.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*sv.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*sv.Translation Resolution/Resolution: ""
-*sv.Resolution 150dpi/150dpi: ""
-*sv.Resolution 300dpi/300dpi: ""
-*sv.Resolution 600dpi/600dpi: ""
-*sv.Translation InputSlot/Media Source: ""
-*sv.InputSlot Default/Skrivarstandard: ""
-*sv.InputSlot Tray1/Fack 1: ""
-*sv.InputSlot Tray2/Fack 2: ""
-*sv.InputSlot Tray3/Fack 3: ""
-*sv.InputSlot Tray4/Fack 4: ""
-*sv.InputSlot Manual/Manuell: ""
-*sv.InputSlot Envelope/Envelope Feed: ""
-*sv.Translation Duplex/Dubbelsidig utskrift: ""
-*sv.Duplex None/Off (1-Sided): ""
-*sv.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*sv.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*sv.Translation InstallableOptions/Installable Options: ""
-*sv.Translation Option1/Duplexer: ""
-*sv.Option1 False/Ej installerad: ""
-*sv.Option1 True/Installed: ""
-*zh.Translation Manufacturer/HP: ""
-*zh.Translation ModelName/HP LaserJet Series PCL 4/5: ""
-*zh.Translation ShortNickName/HP LaserJet Series PCL 4/5: ""
-*zh.Translation NickName/HP LaserJet Series PCL 4/5, 1.4: ""
-*zh.Translation PageSize/Page Size: ""
-*zh.PageSize Letter/Letter - 8.5x11in: ""
-*zh.PageSize Legal/Legal - 8.5x14in: ""
-*zh.PageSize Executive/Executive - 7.25x10.5in: ""
-*zh.PageSize Tabloid/Tabloid - 11x17in: ""
-*zh.PageSize A3/A3 - 297x420mm: ""
-*zh.PageSize A4/A4 - 210x297mm: ""
-*zh.PageSize A5/A5 - 148x210mm: ""
-*zh.PageSize B5/B5 - 182x257mm: ""
-*zh.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*zh.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*zh.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*zh.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*zh.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*zh.Translation Resolution/Resolution: ""
-*zh.Resolution 150dpi/150dpi: ""
-*zh.Resolution 300dpi/300dpi: ""
-*zh.Resolution 600dpi/600dpi: ""
-*zh.Translation InputSlot/Paper Source: ""
-*zh.InputSlot Default/Printer's Current Setting: ""
-*zh.InputSlot Tray1/Tray 1: ""
-*zh.InputSlot Tray2/Tray 2: ""
-*zh.InputSlot Tray3/Tray 3: ""
-*zh.InputSlot Tray4/Tray 4: ""
-*zh.InputSlot Manual/手动: ""
-*zh.InputSlot Envelope/Envelope Feed: ""
-*zh.Translation Duplex/2-Sided Printing: ""
-*zh.Duplex None/Off (1-Sided): ""
-*zh.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*zh.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*zh.Translation InstallableOptions/Installable Options: ""
-*zh.Translation Option1/Duplexer: ""
-*zh.Option1 False/Not Installed: ""
-*zh.Option1 True/Installed: ""
-*zh_TW.Translation Manufacturer/HP: ""
-*zh_TW.Translation ModelName/HP LaserJet Series PCL 4/5: ""
-*zh_TW.Translation ShortNickName/HP LaserJet Series PCL 4/5: ""
-*zh_TW.Translation NickName/HP LaserJet Series PCL 4/5, 1.4: ""
-*zh_TW.Translation PageSize/Page Size: ""
-*zh_TW.PageSize Letter/Letter - 8.5x11in: ""
-*zh_TW.PageSize Legal/Legal - 8.5x14in: ""
-*zh_TW.PageSize Executive/Executive - 7.25x10.5in: ""
-*zh_TW.PageSize Tabloid/Tabloid - 11x17in: ""
-*zh_TW.PageSize A3/A3 - 297x420mm: ""
-*zh_TW.PageSize A4/A4 - 210x297mm: ""
-*zh_TW.PageSize A5/A5 - 148x210mm: ""
-*zh_TW.PageSize B5/B5 - 182x257mm: ""
-*zh_TW.PageSize EnvISOB5/ISOB5 Envelope - 176x250mm: ""
-*zh_TW.PageSize Env10/#10 Envelope - 4.13x9.5in: ""
-*zh_TW.PageSize EnvC5/C5 Envelope - 162x229mm: ""
-*zh_TW.PageSize EnvDL/DL Envelope - 110x220mm: ""
-*zh_TW.PageSize EnvMonarch/Monarch Envelope - 3.875x7.5in: ""
-*zh_TW.Translation Resolution/Resolution: ""
-*zh_TW.Resolution 150dpi/150dpi: ""
-*zh_TW.Resolution 300dpi/300dpi: ""
-*zh_TW.Resolution 600dpi/600dpi: ""
-*zh_TW.Translation InputSlot/紙張來源: ""
-*zh_TW.InputSlot Default/快速: ""
-*zh_TW.InputSlot Tray1/裝紙匣 1: ""
-*zh_TW.InputSlot Tray2/裝紙匣 2: ""
-*zh_TW.InputSlot Tray3/裝紙匣 3: ""
-*zh_TW.InputSlot Tray4/紙匣4: ""
-*zh_TW.InputSlot Manual/手動: ""
-*zh_TW.InputSlot Envelope/Envelope Feed: ""
-*zh_TW.Translation Duplex/雙面列印: ""
-*zh_TW.Duplex None/Off (1-Sided): ""
-*zh_TW.Duplex DuplexNoTumble/Long-Edge (Portrait): ""
-*zh_TW.Duplex DuplexTumble/Short-Edge (Landscape): ""
-*zh_TW.Translation InstallableOptions/Installable Options: ""
-*zh_TW.Translation Option1/Duplexer: ""
-*zh_TW.Option1 False/未安裝: ""
-*zh_TW.Option1 True/已安裝: ""
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(1.05)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
-*Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
-*Font Bookman-Demi: Standard "(1.05)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
-*Font Bookman-Light: Standard "(1.05)" Standard ROM
-*Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
-*Font Courier: Standard "(1.05)" Standard ROM
-*Font Courier-Bold: Standard "(1.05)" Standard ROM
-*Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Courier-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica: Standard "(1.05)" Standard ROM
-*Font Helvetica-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
-*Font Palatino-Bold: Standard "(1.05)" Standard ROM
-*Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Palatino-Italic: Standard "(1.05)" Standard ROM
-*Font Palatino-Roman: Standard "(1.05)" Standard ROM
-*Font Symbol: Special "(001.005)" Special ROM
-*Font Times-Bold: Standard "(1.05)" Standard ROM
-*Font Times-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Times-Italic: Standard "(1.05)" Standard ROM
-*Font Times-Roman: Standard "(1.05)" Standard ROM
-*Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
-*Font ZapfDingbats: Special "(001.005)" Special ROM
-*% End of LASERJET.PPD, 34859 bytes.
diff --git a/ppd/okidat24.ppd b/ppd/okidat24.ppd
deleted file mode 100644 (file)
index 3ad8eca..0000000
+++ /dev/null
@@ -1,344 +0,0 @@
-*PPD-Adobe: "4.3"
-*% PPD file for 24-Pin Series with CUPS.
-*% Created by the CUPS PPD Compiler v1.2.4.
-*% Copyright 2007 by Apple Inc.
-*% Copyright 1997-2007 by Easy Software Products.
-*% 
-*% These coded instructions, statements, and computer programs are the
-*% property of Apple Inc. and are protected by Federal copyright
-*% law.  Distribution and use rights are outlined in the file "LICENSE.txt"
-*% which should have been included with this file.  If this file is
-*% file is missing or damaged, see the license at "http://www.cups.org/".
-*FormatVersion: "4.3"
-*FileVersion: "1.4"
-*LanguageVersion: English
-*LanguageEncoding: ISOLatin1
-*PCFileName: "OKIDAT24.PPD"
-*Product: "(ESP Ghostscript)"
-*Product: "(GPL Ghostscript)"
-*Manufacturer: "Oki"
-*ModelName: "Oki 24-Pin Series"
-*ShortNickName: "Oki 24-Pin Series"
-*NickName: "Oki 24-Pin Series, 1.4"
-*PSVersion: "(3010.000) 81504"
-*PSVersion: "(3010.000) 860"
-*LanguageLevel: "3"
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*FileSystem: False
-*Throughput: "1"
-*LandscapeOrientation: Plus90
-*TTRasterizer: Type42
-*% Driver-defined attributes...
-*cupsVersion: 1.4
-*cupsModelNumber: 1
-*cupsManualCopies: True
-*cupsFilter: "application/vnd.cups-raster 50 rastertoepson"
-*cupsLanguages: "en da de es fi fr it ja ko nl no pt pt_BR sv zh zh_TW"
-*OpenUI *PageSize/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*PageSize FanFoldUS/Fanfold - 14.875x11in: "<</PageSize[1071 792]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageSize
-*OpenUI *PageRegion/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*PageRegion FanFoldUS/Fanfold - 14.875x11in: "<</PageSize[1071 792]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageRegion
-*DefaultImageableArea: Letter
-*ImageableArea Letter/Letter - 8.5x11in: "18.00 18.00 594.00 774.00"
-*ImageableArea Legal/Legal - 8.5x14in: "18.00 18.00 594.00 990.00"
-*ImageableArea A4/A4 - 210x297mm: "18.00 18.00 577.00 824.00"
-*ImageableArea FanFoldUS/Fanfold - 14.875x11in: "18.00 18.00 1053.00 774.00"
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/Letter - 8.5x11in: "612.00 792.00"
-*PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
-*PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
-*PaperDimension FanFoldUS/Fanfold - 14.875x11in: "1071.00 792.00"
-*MaxMediaWidth: "1080.00"
-*MaxMediaHeight: "86400.00"
-*HWMargins: 0.00 0.00 0.00 0.00
-*CustomPageSize True: "pop pop pop <</PageSize[5 -2 roll]/ImagingBBox null>>setpagedevice"
-*ParamCustomPageSize Width: 1 points 36.00 1080.00
-*ParamCustomPageSize Height: 2 points 36.00 86400.00
-*ParamCustomPageSize WidthOffset: 3 points 0 0
-*ParamCustomPageSize HeightOffset: 4 points 0 0
-*ParamCustomPageSize Orientation: 5 int 0 0
-*RequiresPageRegion All: True
-*OpenUI *Resolution: PickOne
-*OrderDependency: 10.0 AnySetup *Resolution
-*DefaultResolution: 120x60dpi
-*Resolution 60dpi: "<</HWResolution[60 60]/cupsBitsPerColor 1/cupsRowCount 8/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*Resolution 120x60dpi: "<</HWResolution[120 60]/cupsBitsPerColor 1/cupsRowCount 8/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*Resolution 180dpi: "<</HWResolution[180 180]/cupsBitsPerColor 1/cupsRowCount 24/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*Resolution 360x180dpi: "<</HWResolution[360 180]/cupsBitsPerColor 1/cupsRowCount 24/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*Resolution 360dpi: "<</HWResolution[360 360]/cupsBitsPerColor 1/cupsRowCount 48/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*CloseUI: *Resolution
-*da.Translation Manufacturer/Oki: ""
-*da.Translation ModelName/Oki 24-Pin Series: ""
-*da.Translation ShortNickName/Oki 24-Pin Series: ""
-*da.Translation NickName/Oki 24-Pin Series, 1.4: ""
-*da.Translation PageSize/Media Size: ""
-*da.PageSize Letter/Letter - 8.5x11in: ""
-*da.PageSize Legal/Legal - 8.5x14in: ""
-*da.PageSize A4/A4 - 210x297mm: ""
-*da.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*da.Translation Resolution/Resolution: ""
-*da.Resolution 60dpi/60dpi: ""
-*da.Resolution 120x60dpi/120x60dpi: ""
-*da.Resolution 180dpi/180dpi: ""
-*da.Resolution 360x180dpi/360x180dpi: ""
-*da.Resolution 360dpi/360dpi: ""
-*de.Translation Manufacturer/Oki: ""
-*de.Translation ModelName/Oki 24-Pin Series: ""
-*de.Translation ShortNickName/Oki 24-Pin Series: ""
-*de.Translation NickName/Oki 24-Pin Series, 1.4: ""
-*de.Translation PageSize/Media Size: ""
-*de.PageSize Letter/Letter - 8.5x11in: ""
-*de.PageSize Legal/Legal - 8.5x14in: ""
-*de.PageSize A4/A4 - 210x297mm: ""
-*de.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*de.Translation Resolution/Resolution: ""
-*de.Resolution 60dpi/60dpi: ""
-*de.Resolution 120x60dpi/120x60dpi: ""
-*de.Resolution 180dpi/180dpi: ""
-*de.Resolution 360x180dpi/360x180dpi: ""
-*de.Resolution 360dpi/360dpi: ""
-*es.Translation Manufacturer/Oki: ""
-*es.Translation ModelName/Oki 24-Pin Series: ""
-*es.Translation ShortNickName/Oki 24-Pin Series: ""
-*es.Translation NickName/Oki 24-Pin Series, 1.4: ""
-*es.Translation PageSize/Media Size: ""
-*es.PageSize Letter/Letter - 8.5x11in: ""
-*es.PageSize Legal/Legal - 8.5x14in: ""
-*es.PageSize A4/A4 - 210x297mm: ""
-*es.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*es.Translation Resolution/Resolution: ""
-*es.Resolution 60dpi/60dpi: ""
-*es.Resolution 120x60dpi/120x60dpi: ""
-*es.Resolution 180dpi/180dpi: ""
-*es.Resolution 360x180dpi/360x180dpi: ""
-*es.Resolution 360dpi/360dpi: ""
-*fi.Translation Manufacturer/Oki: ""
-*fi.Translation ModelName/Oki 24-Pin Series: ""
-*fi.Translation ShortNickName/Oki 24-Pin Series: ""
-*fi.Translation NickName/Oki 24-Pin Series, 1.4: ""
-*fi.Translation PageSize/Media Size: ""
-*fi.PageSize Letter/Letter - 8.5x11in: ""
-*fi.PageSize Legal/Legal - 8.5x14in: ""
-*fi.PageSize A4/A4 - 210x297mm: ""
-*fi.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*fi.Translation Resolution/Resolution: ""
-*fi.Resolution 60dpi/60dpi: ""
-*fi.Resolution 120x60dpi/120x60dpi: ""
-*fi.Resolution 180dpi/180dpi: ""
-*fi.Resolution 360x180dpi/360x180dpi: ""
-*fi.Resolution 360dpi/360dpi: ""
-*fr.Translation Manufacturer/Oki: ""
-*fr.Translation ModelName/Oki 24-Pin Series: ""
-*fr.Translation ShortNickName/Oki 24-Pin Series: ""
-*fr.Translation NickName/Oki 24-Pin Series, 1.4: ""
-*fr.Translation PageSize/Media Size: ""
-*fr.PageSize Letter/Letter - 8.5x11in: ""
-*fr.PageSize Legal/Legal - 8.5x14in: ""
-*fr.PageSize A4/A4 - 210x297mm: ""
-*fr.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*fr.Translation Resolution/Resolution: ""
-*fr.Resolution 60dpi/60dpi: ""
-*fr.Resolution 120x60dpi/120x60dpi: ""
-*fr.Resolution 180dpi/180dpi: ""
-*fr.Resolution 360x180dpi/360x180dpi: ""
-*fr.Resolution 360dpi/360dpi: ""
-*it.Translation Manufacturer/Oki: ""
-*it.Translation ModelName/Oki 24-Pin Series: ""
-*it.Translation ShortNickName/Oki 24-Pin Series: ""
-*it.Translation NickName/Oki 24-Pin Series, 1.4: ""
-*it.Translation PageSize/Media Size: ""
-*it.PageSize Letter/Letter - 8.5x11in: ""
-*it.PageSize Legal/Legal - 8.5x14in: ""
-*it.PageSize A4/A4 - 210x297mm: ""
-*it.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*it.Translation Resolution/Resolution: ""
-*it.Resolution 60dpi/60dpi: ""
-*it.Resolution 120x60dpi/120x60dpi: ""
-*it.Resolution 180dpi/180dpi: ""
-*it.Resolution 360x180dpi/360x180dpi: ""
-*it.Resolution 360dpi/360dpi: ""
-*ja.Translation Manufacturer/Oki: ""
-*ja.Translation ModelName/Oki 24-Pin Series: ""
-*ja.Translation ShortNickName/Oki 24-Pin Series: ""
-*ja.Translation NickName/Oki 24-Pin Series, 1.4: ""
-*ja.Translation PageSize/Media Size: ""
-*ja.PageSize Letter/Letter - 8.5x11in: ""
-*ja.PageSize Legal/Legal - 8.5x14in: ""
-*ja.PageSize A4/A4 - 210x297mm: ""
-*ja.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*ja.Translation Resolution/Resolution: ""
-*ja.Resolution 60dpi/60dpi: ""
-*ja.Resolution 120x60dpi/120x60dpi: ""
-*ja.Resolution 180dpi/180dpi: ""
-*ja.Resolution 360x180dpi/360x180dpi: ""
-*ja.Resolution 360dpi/360dpi: ""
-*ko.Translation Manufacturer/Oki: ""
-*ko.Translation ModelName/Oki 24-Pin Series: ""
-*ko.Translation ShortNickName/Oki 24-Pin Series: ""
-*ko.Translation NickName/Oki 24-Pin Series, 1.4: ""
-*ko.Translation PageSize/Page Size: ""
-*ko.PageSize Letter/Letter - 8.5x11in: ""
-*ko.PageSize Legal/Legal - 8.5x14in: ""
-*ko.PageSize A4/A4 - 210x297mm: ""
-*ko.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*ko.Translation Resolution/Resolution: ""
-*ko.Resolution 60dpi/60dpi: ""
-*ko.Resolution 120x60dpi/120x60dpi: ""
-*ko.Resolution 180dpi/180dpi: ""
-*ko.Resolution 360x180dpi/360x180dpi: ""
-*ko.Resolution 360dpi/360dpi: ""
-*nl.Translation Manufacturer/Oki: ""
-*nl.Translation ModelName/Oki 24-Pin Series: ""
-*nl.Translation ShortNickName/Oki 24-Pin Series: ""
-*nl.Translation NickName/Oki 24-Pin Series, 1.4: ""
-*nl.Translation PageSize/Media Size: ""
-*nl.PageSize Letter/Letter - 8.5x11in: ""
-*nl.PageSize Legal/Legal - 8.5x14in: ""
-*nl.PageSize A4/A4 - 210x297mm: ""
-*nl.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*nl.Translation Resolution/Resolution: ""
-*nl.Resolution 60dpi/60dpi: ""
-*nl.Resolution 120x60dpi/120x60dpi: ""
-*nl.Resolution 180dpi/180dpi: ""
-*nl.Resolution 360x180dpi/360x180dpi: ""
-*nl.Resolution 360dpi/360dpi: ""
-*no.Translation Manufacturer/Oki: ""
-*no.Translation ModelName/Oki 24-Pin Series: ""
-*no.Translation ShortNickName/Oki 24-Pin Series: ""
-*no.Translation NickName/Oki 24-Pin Series, 1.4: ""
-*no.Translation PageSize/Media Size: ""
-*no.PageSize Letter/Letter - 8.5x11in: ""
-*no.PageSize Legal/Legal - 8.5x14in: ""
-*no.PageSize A4/A4 - 210x297mm: ""
-*no.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*no.Translation Resolution/Resolution: ""
-*no.Resolution 60dpi/60dpi: ""
-*no.Resolution 120x60dpi/120x60dpi: ""
-*no.Resolution 180dpi/180dpi: ""
-*no.Resolution 360x180dpi/360x180dpi: ""
-*no.Resolution 360dpi/360dpi: ""
-*pt.Translation Manufacturer/Oki: ""
-*pt.Translation ModelName/Oki 24-Pin Series: ""
-*pt.Translation ShortNickName/Oki 24-Pin Series: ""
-*pt.Translation NickName/Oki 24-Pin Series, 1.4: ""
-*pt.Translation PageSize/Media Size: ""
-*pt.PageSize Letter/Letter - 8.5x11in: ""
-*pt.PageSize Legal/Legal - 8.5x14in: ""
-*pt.PageSize A4/A4 - 210x297mm: ""
-*pt.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*pt.Translation Resolution/Resolution: ""
-*pt.Resolution 60dpi/60dpi: ""
-*pt.Resolution 120x60dpi/120x60dpi: ""
-*pt.Resolution 180dpi/180dpi: ""
-*pt.Resolution 360x180dpi/360x180dpi: ""
-*pt.Resolution 360dpi/360dpi: ""
-*pt_BR.Translation Manufacturer/Oki: ""
-*pt_BR.Translation ModelName/Oki 24-Pin Series: ""
-*pt_BR.Translation ShortNickName/Oki 24-Pin Series: ""
-*pt_BR.Translation NickName/Oki 24-Pin Series, 1.4: ""
-*pt_BR.Translation PageSize/Media Size: ""
-*pt_BR.PageSize Letter/Letter - 8.5x11in: ""
-*pt_BR.PageSize Legal/Legal - 8.5x14in: ""
-*pt_BR.PageSize A4/A4 - 210x297mm: ""
-*pt_BR.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*pt_BR.Translation Resolution/Resolution: ""
-*pt_BR.Resolution 60dpi/60dpi: ""
-*pt_BR.Resolution 120x60dpi/120x60dpi: ""
-*pt_BR.Resolution 180dpi/180dpi: ""
-*pt_BR.Resolution 360x180dpi/360x180dpi: ""
-*pt_BR.Resolution 360dpi/360dpi: ""
-*sv.Translation Manufacturer/Oki: ""
-*sv.Translation ModelName/Oki 24-Pin Series: ""
-*sv.Translation ShortNickName/Oki 24-Pin Series: ""
-*sv.Translation NickName/Oki 24-Pin Series, 1.4: ""
-*sv.Translation PageSize/Media Size: ""
-*sv.PageSize Letter/Letter - 8.5x11in: ""
-*sv.PageSize Legal/Legal - 8.5x14in: ""
-*sv.PageSize A4/A4 - 210x297mm: ""
-*sv.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*sv.Translation Resolution/Resolution: ""
-*sv.Resolution 60dpi/60dpi: ""
-*sv.Resolution 120x60dpi/120x60dpi: ""
-*sv.Resolution 180dpi/180dpi: ""
-*sv.Resolution 360x180dpi/360x180dpi: ""
-*sv.Resolution 360dpi/360dpi: ""
-*zh.Translation Manufacturer/Oki: ""
-*zh.Translation ModelName/Oki 24-Pin Series: ""
-*zh.Translation ShortNickName/Oki 24-Pin Series: ""
-*zh.Translation NickName/Oki 24-Pin Series, 1.4: ""
-*zh.Translation PageSize/Page Size: ""
-*zh.PageSize Letter/Letter - 8.5x11in: ""
-*zh.PageSize Legal/Legal - 8.5x14in: ""
-*zh.PageSize A4/A4 - 210x297mm: ""
-*zh.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*zh.Translation Resolution/Resolution: ""
-*zh.Resolution 60dpi/60dpi: ""
-*zh.Resolution 120x60dpi/120x60dpi: ""
-*zh.Resolution 180dpi/180dpi: ""
-*zh.Resolution 360x180dpi/360x180dpi: ""
-*zh.Resolution 360dpi/360dpi: ""
-*zh_TW.Translation Manufacturer/Oki: ""
-*zh_TW.Translation ModelName/Oki 24-Pin Series: ""
-*zh_TW.Translation ShortNickName/Oki 24-Pin Series: ""
-*zh_TW.Translation NickName/Oki 24-Pin Series, 1.4: ""
-*zh_TW.Translation PageSize/Page Size: ""
-*zh_TW.PageSize Letter/Letter - 8.5x11in: ""
-*zh_TW.PageSize Legal/Legal - 8.5x14in: ""
-*zh_TW.PageSize A4/A4 - 210x297mm: ""
-*zh_TW.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*zh_TW.Translation Resolution/Resolution: ""
-*zh_TW.Resolution 60dpi/60dpi: ""
-*zh_TW.Resolution 120x60dpi/120x60dpi: ""
-*zh_TW.Resolution 180dpi/180dpi: ""
-*zh_TW.Resolution 360x180dpi/360x180dpi: ""
-*zh_TW.Resolution 360dpi/360dpi: ""
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(1.05)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
-*Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
-*Font Bookman-Demi: Standard "(1.05)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
-*Font Bookman-Light: Standard "(1.05)" Standard ROM
-*Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
-*Font Courier: Standard "(1.05)" Standard ROM
-*Font Courier-Bold: Standard "(1.05)" Standard ROM
-*Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Courier-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica: Standard "(1.05)" Standard ROM
-*Font Helvetica-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
-*Font Palatino-Bold: Standard "(1.05)" Standard ROM
-*Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Palatino-Italic: Standard "(1.05)" Standard ROM
-*Font Palatino-Roman: Standard "(1.05)" Standard ROM
-*Font Symbol: Special "(001.005)" Special ROM
-*Font Times-Bold: Standard "(1.05)" Standard ROM
-*Font Times-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Times-Italic: Standard "(1.05)" Standard ROM
-*Font Times-Roman: Standard "(1.05)" Standard ROM
-*Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
-*Font ZapfDingbats: Special "(001.005)" Special ROM
-*% End of OKIDAT24.PPD, 15444 bytes.
diff --git a/ppd/okidata9.ppd b/ppd/okidata9.ppd
deleted file mode 100644 (file)
index ae6cc64..0000000
+++ /dev/null
@@ -1,312 +0,0 @@
-*PPD-Adobe: "4.3"
-*% PPD file for 9-Pin Series with CUPS.
-*% Created by the CUPS PPD Compiler v1.2.4.
-*% Copyright 2007 by Apple Inc.
-*% Copyright 1997-2007 by Easy Software Products.
-*% 
-*% These coded instructions, statements, and computer programs are the
-*% property of Apple Inc. and are protected by Federal copyright
-*% law.  Distribution and use rights are outlined in the file "LICENSE.txt"
-*% which should have been included with this file.  If this file is
-*% file is missing or damaged, see the license at "http://www.cups.org/".
-*FormatVersion: "4.3"
-*FileVersion: "1.4"
-*LanguageVersion: English
-*LanguageEncoding: ISOLatin1
-*PCFileName: "OKIDATA9.PPD"
-*Product: "(ESP Ghostscript)"
-*Product: "(GPL Ghostscript)"
-*Manufacturer: "Oki"
-*ModelName: "Oki 9-Pin Series"
-*ShortNickName: "Oki 9-Pin Series"
-*NickName: "Oki 9-Pin Series, 1.4"
-*PSVersion: "(3010.000) 81504"
-*PSVersion: "(3010.000) 860"
-*LanguageLevel: "3"
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*FileSystem: False
-*Throughput: "1"
-*LandscapeOrientation: Plus90
-*TTRasterizer: Type42
-*% Driver-defined attributes...
-*cupsVersion: 1.4
-*cupsModelNumber: 0
-*cupsManualCopies: True
-*cupsFilter: "application/vnd.cups-raster 50 rastertoepson"
-*cupsLanguages: "en da de es fi fr it ja ko nl no pt pt_BR sv zh zh_TW"
-*OpenUI *PageSize/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*PageSize FanFoldUS/Fanfold - 14.875x11in: "<</PageSize[1071 792]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageSize
-*OpenUI *PageRegion/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*PageRegion FanFoldUS/Fanfold - 14.875x11in: "<</PageSize[1071 792]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageRegion
-*DefaultImageableArea: Letter
-*ImageableArea Letter/Letter - 8.5x11in: "18.00 18.00 594.00 774.00"
-*ImageableArea Legal/Legal - 8.5x14in: "18.00 18.00 594.00 990.00"
-*ImageableArea A4/A4 - 210x297mm: "18.00 18.00 577.00 824.00"
-*ImageableArea FanFoldUS/Fanfold - 14.875x11in: "18.00 18.00 1053.00 774.00"
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/Letter - 8.5x11in: "612.00 792.00"
-*PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
-*PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
-*PaperDimension FanFoldUS/Fanfold - 14.875x11in: "1071.00 792.00"
-*MaxMediaWidth: "1080.00"
-*MaxMediaHeight: "86400.00"
-*HWMargins: 0.00 0.00 0.00 0.00
-*CustomPageSize True: "pop pop pop <</PageSize[5 -2 roll]/ImagingBBox null>>setpagedevice"
-*ParamCustomPageSize Width: 1 points 36.00 1080.00
-*ParamCustomPageSize Height: 2 points 36.00 86400.00
-*ParamCustomPageSize WidthOffset: 3 points 0 0
-*ParamCustomPageSize HeightOffset: 4 points 0 0
-*ParamCustomPageSize Orientation: 5 int 0 0
-*RequiresPageRegion All: True
-*OpenUI *Resolution: PickOne
-*OrderDependency: 10.0 AnySetup *Resolution
-*DefaultResolution: 120x72dpi
-*Resolution 60x720dpi: "<</HWResolution[60 720]/cupsBitsPerColor 1/cupsRowCount 8/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*Resolution 120x72dpi: "<</HWResolution[120 72]/cupsBitsPerColor 1/cupsRowCount 8/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*Resolution 240x72dpi: "<</HWResolution[240 72]/cupsBitsPerColor 1/cupsRowCount 8/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*CloseUI: *Resolution
-*da.Translation Manufacturer/Oki: ""
-*da.Translation ModelName/Oki 9-Pin Series: ""
-*da.Translation ShortNickName/Oki 9-Pin Series: ""
-*da.Translation NickName/Oki 9-Pin Series, 1.4: ""
-*da.Translation PageSize/Media Size: ""
-*da.PageSize Letter/Letter - 8.5x11in: ""
-*da.PageSize Legal/Legal - 8.5x14in: ""
-*da.PageSize A4/A4 - 210x297mm: ""
-*da.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*da.Translation Resolution/Resolution: ""
-*da.Resolution 60x720dpi/60x720dpi: ""
-*da.Resolution 120x72dpi/120x72dpi: ""
-*da.Resolution 240x72dpi/240x72dpi: ""
-*de.Translation Manufacturer/Oki: ""
-*de.Translation ModelName/Oki 9-Pin Series: ""
-*de.Translation ShortNickName/Oki 9-Pin Series: ""
-*de.Translation NickName/Oki 9-Pin Series, 1.4: ""
-*de.Translation PageSize/Media Size: ""
-*de.PageSize Letter/Letter - 8.5x11in: ""
-*de.PageSize Legal/Legal - 8.5x14in: ""
-*de.PageSize A4/A4 - 210x297mm: ""
-*de.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*de.Translation Resolution/Resolution: ""
-*de.Resolution 60x720dpi/60x720dpi: ""
-*de.Resolution 120x72dpi/120x72dpi: ""
-*de.Resolution 240x72dpi/240x72dpi: ""
-*es.Translation Manufacturer/Oki: ""
-*es.Translation ModelName/Oki 9-Pin Series: ""
-*es.Translation ShortNickName/Oki 9-Pin Series: ""
-*es.Translation NickName/Oki 9-Pin Series, 1.4: ""
-*es.Translation PageSize/Media Size: ""
-*es.PageSize Letter/Letter - 8.5x11in: ""
-*es.PageSize Legal/Legal - 8.5x14in: ""
-*es.PageSize A4/A4 - 210x297mm: ""
-*es.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*es.Translation Resolution/Resolution: ""
-*es.Resolution 60x720dpi/60x720dpi: ""
-*es.Resolution 120x72dpi/120x72dpi: ""
-*es.Resolution 240x72dpi/240x72dpi: ""
-*fi.Translation Manufacturer/Oki: ""
-*fi.Translation ModelName/Oki 9-Pin Series: ""
-*fi.Translation ShortNickName/Oki 9-Pin Series: ""
-*fi.Translation NickName/Oki 9-Pin Series, 1.4: ""
-*fi.Translation PageSize/Media Size: ""
-*fi.PageSize Letter/Letter - 8.5x11in: ""
-*fi.PageSize Legal/Legal - 8.5x14in: ""
-*fi.PageSize A4/A4 - 210x297mm: ""
-*fi.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*fi.Translation Resolution/Resolution: ""
-*fi.Resolution 60x720dpi/60x720dpi: ""
-*fi.Resolution 120x72dpi/120x72dpi: ""
-*fi.Resolution 240x72dpi/240x72dpi: ""
-*fr.Translation Manufacturer/Oki: ""
-*fr.Translation ModelName/Oki 9-Pin Series: ""
-*fr.Translation ShortNickName/Oki 9-Pin Series: ""
-*fr.Translation NickName/Oki 9-Pin Series, 1.4: ""
-*fr.Translation PageSize/Media Size: ""
-*fr.PageSize Letter/Letter - 8.5x11in: ""
-*fr.PageSize Legal/Legal - 8.5x14in: ""
-*fr.PageSize A4/A4 - 210x297mm: ""
-*fr.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*fr.Translation Resolution/Resolution: ""
-*fr.Resolution 60x720dpi/60x720dpi: ""
-*fr.Resolution 120x72dpi/120x72dpi: ""
-*fr.Resolution 240x72dpi/240x72dpi: ""
-*it.Translation Manufacturer/Oki: ""
-*it.Translation ModelName/Oki 9-Pin Series: ""
-*it.Translation ShortNickName/Oki 9-Pin Series: ""
-*it.Translation NickName/Oki 9-Pin Series, 1.4: ""
-*it.Translation PageSize/Media Size: ""
-*it.PageSize Letter/Letter - 8.5x11in: ""
-*it.PageSize Legal/Legal - 8.5x14in: ""
-*it.PageSize A4/A4 - 210x297mm: ""
-*it.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*it.Translation Resolution/Resolution: ""
-*it.Resolution 60x720dpi/60x720dpi: ""
-*it.Resolution 120x72dpi/120x72dpi: ""
-*it.Resolution 240x72dpi/240x72dpi: ""
-*ja.Translation Manufacturer/Oki: ""
-*ja.Translation ModelName/Oki 9-Pin Series: ""
-*ja.Translation ShortNickName/Oki 9-Pin Series: ""
-*ja.Translation NickName/Oki 9-Pin Series, 1.4: ""
-*ja.Translation PageSize/Media Size: ""
-*ja.PageSize Letter/Letter - 8.5x11in: ""
-*ja.PageSize Legal/Legal - 8.5x14in: ""
-*ja.PageSize A4/A4 - 210x297mm: ""
-*ja.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*ja.Translation Resolution/Resolution: ""
-*ja.Resolution 60x720dpi/60x720dpi: ""
-*ja.Resolution 120x72dpi/120x72dpi: ""
-*ja.Resolution 240x72dpi/240x72dpi: ""
-*ko.Translation Manufacturer/Oki: ""
-*ko.Translation ModelName/Oki 9-Pin Series: ""
-*ko.Translation ShortNickName/Oki 9-Pin Series: ""
-*ko.Translation NickName/Oki 9-Pin Series, 1.4: ""
-*ko.Translation PageSize/Page Size: ""
-*ko.PageSize Letter/Letter - 8.5x11in: ""
-*ko.PageSize Legal/Legal - 8.5x14in: ""
-*ko.PageSize A4/A4 - 210x297mm: ""
-*ko.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*ko.Translation Resolution/Resolution: ""
-*ko.Resolution 60x720dpi/60x720dpi: ""
-*ko.Resolution 120x72dpi/120x72dpi: ""
-*ko.Resolution 240x72dpi/240x72dpi: ""
-*nl.Translation Manufacturer/Oki: ""
-*nl.Translation ModelName/Oki 9-Pin Series: ""
-*nl.Translation ShortNickName/Oki 9-Pin Series: ""
-*nl.Translation NickName/Oki 9-Pin Series, 1.4: ""
-*nl.Translation PageSize/Media Size: ""
-*nl.PageSize Letter/Letter - 8.5x11in: ""
-*nl.PageSize Legal/Legal - 8.5x14in: ""
-*nl.PageSize A4/A4 - 210x297mm: ""
-*nl.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*nl.Translation Resolution/Resolution: ""
-*nl.Resolution 60x720dpi/60x720dpi: ""
-*nl.Resolution 120x72dpi/120x72dpi: ""
-*nl.Resolution 240x72dpi/240x72dpi: ""
-*no.Translation Manufacturer/Oki: ""
-*no.Translation ModelName/Oki 9-Pin Series: ""
-*no.Translation ShortNickName/Oki 9-Pin Series: ""
-*no.Translation NickName/Oki 9-Pin Series, 1.4: ""
-*no.Translation PageSize/Media Size: ""
-*no.PageSize Letter/Letter - 8.5x11in: ""
-*no.PageSize Legal/Legal - 8.5x14in: ""
-*no.PageSize A4/A4 - 210x297mm: ""
-*no.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*no.Translation Resolution/Resolution: ""
-*no.Resolution 60x720dpi/60x720dpi: ""
-*no.Resolution 120x72dpi/120x72dpi: ""
-*no.Resolution 240x72dpi/240x72dpi: ""
-*pt.Translation Manufacturer/Oki: ""
-*pt.Translation ModelName/Oki 9-Pin Series: ""
-*pt.Translation ShortNickName/Oki 9-Pin Series: ""
-*pt.Translation NickName/Oki 9-Pin Series, 1.4: ""
-*pt.Translation PageSize/Media Size: ""
-*pt.PageSize Letter/Letter - 8.5x11in: ""
-*pt.PageSize Legal/Legal - 8.5x14in: ""
-*pt.PageSize A4/A4 - 210x297mm: ""
-*pt.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*pt.Translation Resolution/Resolution: ""
-*pt.Resolution 60x720dpi/60x720dpi: ""
-*pt.Resolution 120x72dpi/120x72dpi: ""
-*pt.Resolution 240x72dpi/240x72dpi: ""
-*pt_BR.Translation Manufacturer/Oki: ""
-*pt_BR.Translation ModelName/Oki 9-Pin Series: ""
-*pt_BR.Translation ShortNickName/Oki 9-Pin Series: ""
-*pt_BR.Translation NickName/Oki 9-Pin Series, 1.4: ""
-*pt_BR.Translation PageSize/Media Size: ""
-*pt_BR.PageSize Letter/Letter - 8.5x11in: ""
-*pt_BR.PageSize Legal/Legal - 8.5x14in: ""
-*pt_BR.PageSize A4/A4 - 210x297mm: ""
-*pt_BR.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*pt_BR.Translation Resolution/Resolution: ""
-*pt_BR.Resolution 60x720dpi/60x720dpi: ""
-*pt_BR.Resolution 120x72dpi/120x72dpi: ""
-*pt_BR.Resolution 240x72dpi/240x72dpi: ""
-*sv.Translation Manufacturer/Oki: ""
-*sv.Translation ModelName/Oki 9-Pin Series: ""
-*sv.Translation ShortNickName/Oki 9-Pin Series: ""
-*sv.Translation NickName/Oki 9-Pin Series, 1.4: ""
-*sv.Translation PageSize/Media Size: ""
-*sv.PageSize Letter/Letter - 8.5x11in: ""
-*sv.PageSize Legal/Legal - 8.5x14in: ""
-*sv.PageSize A4/A4 - 210x297mm: ""
-*sv.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*sv.Translation Resolution/Resolution: ""
-*sv.Resolution 60x720dpi/60x720dpi: ""
-*sv.Resolution 120x72dpi/120x72dpi: ""
-*sv.Resolution 240x72dpi/240x72dpi: ""
-*zh.Translation Manufacturer/Oki: ""
-*zh.Translation ModelName/Oki 9-Pin Series: ""
-*zh.Translation ShortNickName/Oki 9-Pin Series: ""
-*zh.Translation NickName/Oki 9-Pin Series, 1.4: ""
-*zh.Translation PageSize/Page Size: ""
-*zh.PageSize Letter/Letter - 8.5x11in: ""
-*zh.PageSize Legal/Legal - 8.5x14in: ""
-*zh.PageSize A4/A4 - 210x297mm: ""
-*zh.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*zh.Translation Resolution/Resolution: ""
-*zh.Resolution 60x720dpi/60x720dpi: ""
-*zh.Resolution 120x72dpi/120x72dpi: ""
-*zh.Resolution 240x72dpi/240x72dpi: ""
-*zh_TW.Translation Manufacturer/Oki: ""
-*zh_TW.Translation ModelName/Oki 9-Pin Series: ""
-*zh_TW.Translation ShortNickName/Oki 9-Pin Series: ""
-*zh_TW.Translation NickName/Oki 9-Pin Series, 1.4: ""
-*zh_TW.Translation PageSize/Page Size: ""
-*zh_TW.PageSize Letter/Letter - 8.5x11in: ""
-*zh_TW.PageSize Legal/Legal - 8.5x14in: ""
-*zh_TW.PageSize A4/A4 - 210x297mm: ""
-*zh_TW.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*zh_TW.Translation Resolution/Resolution: ""
-*zh_TW.Resolution 60x720dpi/60x720dpi: ""
-*zh_TW.Resolution 120x72dpi/120x72dpi: ""
-*zh_TW.Resolution 240x72dpi/240x72dpi: ""
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(1.05)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
-*Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
-*Font Bookman-Demi: Standard "(1.05)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
-*Font Bookman-Light: Standard "(1.05)" Standard ROM
-*Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
-*Font Courier: Standard "(1.05)" Standard ROM
-*Font Courier-Bold: Standard "(1.05)" Standard ROM
-*Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Courier-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica: Standard "(1.05)" Standard ROM
-*Font Helvetica-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
-*Font Palatino-Bold: Standard "(1.05)" Standard ROM
-*Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Palatino-Italic: Standard "(1.05)" Standard ROM
-*Font Palatino-Roman: Standard "(1.05)" Standard ROM
-*Font Symbol: Special "(001.005)" Special ROM
-*Font Times-Bold: Standard "(1.05)" Standard ROM
-*Font Times-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Times-Italic: Standard "(1.05)" Standard ROM
-*Font Times-Roman: Standard "(1.05)" Standard ROM
-*Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
-*Font ZapfDingbats: Special "(001.005)" Special ROM
-*% End of OKIDATA9.PPD, 14201 bytes.
diff --git a/ppd/stcolor.ppd b/ppd/stcolor.ppd
deleted file mode 100644 (file)
index 926f85f..0000000
+++ /dev/null
@@ -1,420 +0,0 @@
-*PPD-Adobe: "4.3"
-*% PPD file for Stylus Color Series with CUPS.
-*% Created by the CUPS PPD Compiler v1.2.4.
-*% Copyright 2007 by Apple Inc.
-*% Copyright 1997-2007 by Easy Software Products.
-*% 
-*% These coded instructions, statements, and computer programs are the
-*% property of Apple Inc. and are protected by Federal copyright
-*% law.  Distribution and use rights are outlined in the file "LICENSE.txt"
-*% which should have been included with this file.  If this file is
-*% file is missing or damaged, see the license at "http://www.cups.org/".
-*FormatVersion: "4.3"
-*FileVersion: "1.4"
-*LanguageVersion: English
-*LanguageEncoding: ISOLatin1
-*PCFileName: "STCOLOR.PPD"
-*Product: "(ESP Ghostscript)"
-*Product: "(GPL Ghostscript)"
-*Manufacturer: "Epson"
-*ModelName: "Epson Stylus Color Series"
-*ShortNickName: "Epson Stylus Color Series"
-*NickName: "Epson Stylus Color Series, 1.4"
-*PSVersion: "(3010.000) 81504"
-*PSVersion: "(3010.000) 860"
-*LanguageLevel: "3"
-*ColorDevice: True
-*DefaultColorSpace: RGB
-*FileSystem: False
-*Throughput: "1"
-*LandscapeOrientation: Plus90
-*TTRasterizer: Type42
-*% Driver-defined attributes...
-*cupsVersion: 1.4
-*cupsModelNumber: 2
-*cupsManualCopies: True
-*cupsFilter: "application/vnd.cups-raster 50 rastertoepson"
-*cupsLanguages: "en da de es fi fr it ja ko nl no pt pt_BR sv zh zh_TW"
-*OpenUI *PageSize/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*PageSize FanFoldUS/Fanfold - 14.875x11in: "<</PageSize[1071 792]/ImagingBBox null>>setpagedevice"
-*PageSize Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageSize
-*OpenUI *PageRegion/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*PageRegion FanFoldUS/Fanfold - 14.875x11in: "<</PageSize[1071 792]/ImagingBBox null>>setpagedevice"
-*PageRegion Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageRegion
-*DefaultImageableArea: Letter
-*ImageableArea Letter/Letter - 8.5x11in: "18.00 18.00 594.00 774.00"
-*ImageableArea Legal/Legal - 8.5x14in: "18.00 18.00 594.00 990.00"
-*ImageableArea A4/A4 - 210x297mm: "18.00 18.00 577.00 824.00"
-*ImageableArea FanFoldUS/Fanfold - 14.875x11in: "18.00 18.00 1053.00 774.00"
-*ImageableArea Letter/Letter - 8.5x11in: "8.60 39.60 603.40 766.49"
-*ImageableArea Legal/Legal - 8.5x14in: "8.60 39.60 603.40 982.49"
-*ImageableArea A4/A4 - 210x297mm: "8.60 39.60 586.40 816.49"
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/Letter - 8.5x11in: "612.00 792.00"
-*PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
-*PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
-*PaperDimension FanFoldUS/Fanfold - 14.875x11in: "1071.00 792.00"
-*PaperDimension Letter/Letter - 8.5x11in: "612.00 792.00"
-*PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
-*PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
-*MaxMediaWidth: "1080.00"
-*MaxMediaHeight: "86400.00"
-*HWMargins: 8.60 39.60 8.60 25.51
-*CustomPageSize True: "pop pop pop <</PageSize[5 -2 roll]/ImagingBBox null>>setpagedevice"
-*ParamCustomPageSize Width: 1 points 36.00 1080.00
-*ParamCustomPageSize Height: 2 points 36.00 86400.00
-*ParamCustomPageSize WidthOffset: 3 points 0 0
-*ParamCustomPageSize HeightOffset: 4 points 0 0
-*ParamCustomPageSize Orientation: 5 int 0 0
-*RequiresPageRegion All: True
-*OpenUI *Resolution: PickOne
-*OrderDependency: 10.0 AnySetup *Resolution
-*DefaultResolution: 360dpi
-*Resolution 180dpi: "<</HWResolution[180 180]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
-*Resolution 360dpi: "<</HWResolution[360 360]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
-*Resolution 720dpi: "<</HWResolution[720 720]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
-*CloseUI: *Resolution
-*OpenUI *ColorModel/Color Mode: PickOne
-*OrderDependency: 10.0 AnySetup *ColorModel
-*DefaultColorModel: CMYK
-*ColorModel CMYK: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 1>>setpagedevice"
-*ColorModel Gray/Grayscale: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 1>>setpagedevice"
-*CloseUI: *ColorModel
-*da.Translation Manufacturer/Epson: ""
-*da.Translation ModelName/Epson Stylus Color Series: ""
-*da.Translation ShortNickName/Epson Stylus Color Series: ""
-*da.Translation NickName/Epson Stylus Color Series, 1.4: ""
-*da.Translation PageSize/Media Size: ""
-*da.PageSize Letter/Letter - 8.5x11in: ""
-*da.PageSize Legal/Legal - 8.5x14in: ""
-*da.PageSize A4/A4 - 210x297mm: ""
-*da.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*da.PageSize Letter/Letter - 8.5x11in: ""
-*da.PageSize Legal/Legal - 8.5x14in: ""
-*da.PageSize A4/A4 - 210x297mm: ""
-*da.Translation Resolution/Resolution: ""
-*da.Resolution 180dpi/180dpi: ""
-*da.Resolution 360dpi/360dpi: ""
-*da.Resolution 720dpi/720dpi: ""
-*da.Translation ColorModel/Farveindstilling: ""
-*da.ColorModel CMYK/CMYK: ""
-*da.ColorModel Gray/Grayscale: ""
-*de.Translation Manufacturer/Epson: ""
-*de.Translation ModelName/Epson Stylus Color Series: ""
-*de.Translation ShortNickName/Epson Stylus Color Series: ""
-*de.Translation NickName/Epson Stylus Color Series, 1.4: ""
-*de.Translation PageSize/Media Size: ""
-*de.PageSize Letter/Letter - 8.5x11in: ""
-*de.PageSize Legal/Legal - 8.5x14in: ""
-*de.PageSize A4/A4 - 210x297mm: ""
-*de.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*de.PageSize Letter/Letter - 8.5x11in: ""
-*de.PageSize Legal/Legal - 8.5x14in: ""
-*de.PageSize A4/A4 - 210x297mm: ""
-*de.Translation Resolution/Resolution: ""
-*de.Resolution 180dpi/180dpi: ""
-*de.Resolution 360dpi/360dpi: ""
-*de.Resolution 720dpi/720dpi: ""
-*de.Translation ColorModel/Farbmodus: ""
-*de.ColorModel CMYK/CMYK: ""
-*de.ColorModel Gray/Grayscale: ""
-*es.Translation Manufacturer/Epson: ""
-*es.Translation ModelName/Epson Stylus Color Series: ""
-*es.Translation ShortNickName/Epson Stylus Color Series: ""
-*es.Translation NickName/Epson Stylus Color Series, 1.4: ""
-*es.Translation PageSize/Media Size: ""
-*es.PageSize Letter/Letter - 8.5x11in: ""
-*es.PageSize Legal/Legal - 8.5x14in: ""
-*es.PageSize A4/A4 - 210x297mm: ""
-*es.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*es.PageSize Letter/Letter - 8.5x11in: ""
-*es.PageSize Legal/Legal - 8.5x14in: ""
-*es.PageSize A4/A4 - 210x297mm: ""
-*es.Translation Resolution/Resolution: ""
-*es.Resolution 180dpi/180dpi: ""
-*es.Resolution 360dpi/360dpi: ""
-*es.Resolution 720dpi/720dpi: ""
-*es.Translation ColorModel/Modo de color: ""
-*es.ColorModel CMYK/CMYK: ""
-*es.ColorModel Gray/Grayscale: ""
-*fi.Translation Manufacturer/Epson: ""
-*fi.Translation ModelName/Epson Stylus Color Series: ""
-*fi.Translation ShortNickName/Epson Stylus Color Series: ""
-*fi.Translation NickName/Epson Stylus Color Series, 1.4: ""
-*fi.Translation PageSize/Media Size: ""
-*fi.PageSize Letter/Letter - 8.5x11in: ""
-*fi.PageSize Legal/Legal - 8.5x14in: ""
-*fi.PageSize A4/A4 - 210x297mm: ""
-*fi.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*fi.PageSize Letter/Letter - 8.5x11in: ""
-*fi.PageSize Legal/Legal - 8.5x14in: ""
-*fi.PageSize A4/A4 - 210x297mm: ""
-*fi.Translation Resolution/Resolution: ""
-*fi.Resolution 180dpi/180dpi: ""
-*fi.Resolution 360dpi/360dpi: ""
-*fi.Resolution 720dpi/720dpi: ""
-*fi.Translation ColorModel/Tulosta värit harmaasävyinä: ""
-*fi.ColorModel CMYK/CMYK: ""
-*fi.ColorModel Gray/Grayscale: ""
-*fr.Translation Manufacturer/Epson: ""
-*fr.Translation ModelName/Epson Stylus Color Series: ""
-*fr.Translation ShortNickName/Epson Stylus Color Series: ""
-*fr.Translation NickName/Epson Stylus Color Series, 1.4: ""
-*fr.Translation PageSize/Media Size: ""
-*fr.PageSize Letter/Letter - 8.5x11in: ""
-*fr.PageSize Legal/Legal - 8.5x14in: ""
-*fr.PageSize A4/A4 - 210x297mm: ""
-*fr.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*fr.PageSize Letter/Letter - 8.5x11in: ""
-*fr.PageSize Legal/Legal - 8.5x14in: ""
-*fr.PageSize A4/A4 - 210x297mm: ""
-*fr.Translation Resolution/Resolution: ""
-*fr.Resolution 180dpi/180dpi: ""
-*fr.Resolution 360dpi/360dpi: ""
-*fr.Resolution 720dpi/720dpi: ""
-*fr.Translation ColorModel/Mode couleur: ""
-*fr.ColorModel CMYK/CMYK: ""
-*fr.ColorModel Gray/Grayscale: ""
-*it.Translation Manufacturer/Epson: ""
-*it.Translation ModelName/Epson Stylus Color Series: ""
-*it.Translation ShortNickName/Epson Stylus Color Series: ""
-*it.Translation NickName/Epson Stylus Color Series, 1.4: ""
-*it.Translation PageSize/Media Size: ""
-*it.PageSize Letter/Letter - 8.5x11in: ""
-*it.PageSize Legal/Legal - 8.5x14in: ""
-*it.PageSize A4/A4 - 210x297mm: ""
-*it.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*it.PageSize Letter/Letter - 8.5x11in: ""
-*it.PageSize Legal/Legal - 8.5x14in: ""
-*it.PageSize A4/A4 - 210x297mm: ""
-*it.Translation Resolution/Resolution: ""
-*it.Resolution 180dpi/180dpi: ""
-*it.Resolution 360dpi/360dpi: ""
-*it.Resolution 720dpi/720dpi: ""
-*it.Translation ColorModel/Modo Colore: ""
-*it.ColorModel CMYK/CMYK: ""
-*it.ColorModel Gray/Grayscale: ""
-*ja.Translation Manufacturer/Epson: ""
-*ja.Translation ModelName/Epson Stylus Color Series: ""
-*ja.Translation ShortNickName/Epson Stylus Color Series: ""
-*ja.Translation NickName/Epson Stylus Color Series, 1.4: ""
-*ja.Translation PageSize/Media Size: ""
-*ja.PageSize Letter/Letter - 8.5x11in: ""
-*ja.PageSize Legal/Legal - 8.5x14in: ""
-*ja.PageSize A4/A4 - 210x297mm: ""
-*ja.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*ja.PageSize Letter/Letter - 8.5x11in: ""
-*ja.PageSize Legal/Legal - 8.5x14in: ""
-*ja.PageSize A4/A4 - 210x297mm: ""
-*ja.Translation Resolution/Resolution: ""
-*ja.Resolution 180dpi/180dpi: ""
-*ja.Resolution 360dpi/360dpi: ""
-*ja.Resolution 720dpi/720dpi: ""
-*ja.Translation ColorModel/カラー モデル: ""
-*ja.ColorModel CMYK/CMYK: ""
-*ja.ColorModel Gray/Grayscale: ""
-*ko.Translation Manufacturer/Epson: ""
-*ko.Translation ModelName/Epson Stylus Color Series: ""
-*ko.Translation ShortNickName/Epson Stylus Color Series: ""
-*ko.Translation NickName/Epson Stylus Color Series, 1.4: ""
-*ko.Translation PageSize/Page Size: ""
-*ko.PageSize Letter/Letter - 8.5x11in: ""
-*ko.PageSize Legal/Legal - 8.5x14in: ""
-*ko.PageSize A4/A4 - 210x297mm: ""
-*ko.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*ko.PageSize Letter/Letter - 8.5x11in: ""
-*ko.PageSize Legal/Legal - 8.5x14in: ""
-*ko.PageSize A4/A4 - 210x297mm: ""
-*ko.Translation Resolution/Resolution: ""
-*ko.Resolution 180dpi/180dpi: ""
-*ko.Resolution 360dpi/360dpi: ""
-*ko.Resolution 720dpi/720dpi: ""
-*ko.Translation ColorModel/컬러 모델: ""
-*ko.ColorModel CMYK/CMYK: ""
-*ko.ColorModel Gray/Grayscale: ""
-*nl.Translation Manufacturer/Epson: ""
-*nl.Translation ModelName/Epson Stylus Color Series: ""
-*nl.Translation ShortNickName/Epson Stylus Color Series: ""
-*nl.Translation NickName/Epson Stylus Color Series, 1.4: ""
-*nl.Translation PageSize/Media Size: ""
-*nl.PageSize Letter/Letter - 8.5x11in: ""
-*nl.PageSize Legal/Legal - 8.5x14in: ""
-*nl.PageSize A4/A4 - 210x297mm: ""
-*nl.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*nl.PageSize Letter/Letter - 8.5x11in: ""
-*nl.PageSize Legal/Legal - 8.5x14in: ""
-*nl.PageSize A4/A4 - 210x297mm: ""
-*nl.Translation Resolution/Resolution: ""
-*nl.Resolution 180dpi/180dpi: ""
-*nl.Resolution 360dpi/360dpi: ""
-*nl.Resolution 720dpi/720dpi: ""
-*nl.Translation ColorModel/Kleurenmodus: ""
-*nl.ColorModel CMYK/CMYK: ""
-*nl.ColorModel Gray/Grayscale: ""
-*no.Translation Manufacturer/Epson: ""
-*no.Translation ModelName/Epson Stylus Color Series: ""
-*no.Translation ShortNickName/Epson Stylus Color Series: ""
-*no.Translation NickName/Epson Stylus Color Series, 1.4: ""
-*no.Translation PageSize/Media Size: ""
-*no.PageSize Letter/Letter - 8.5x11in: ""
-*no.PageSize Legal/Legal - 8.5x14in: ""
-*no.PageSize A4/A4 - 210x297mm: ""
-*no.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*no.PageSize Letter/Letter - 8.5x11in: ""
-*no.PageSize Legal/Legal - 8.5x14in: ""
-*no.PageSize A4/A4 - 210x297mm: ""
-*no.Translation Resolution/Resolution: ""
-*no.Resolution 180dpi/180dpi: ""
-*no.Resolution 360dpi/360dpi: ""
-*no.Resolution 720dpi/720dpi: ""
-*no.Translation ColorModel/Fargemodus: ""
-*no.ColorModel CMYK/CMYK: ""
-*no.ColorModel Gray/Grayscale: ""
-*pt.Translation Manufacturer/Epson: ""
-*pt.Translation ModelName/Epson Stylus Color Series: ""
-*pt.Translation ShortNickName/Epson Stylus Color Series: ""
-*pt.Translation NickName/Epson Stylus Color Series, 1.4: ""
-*pt.Translation PageSize/Media Size: ""
-*pt.PageSize Letter/Letter - 8.5x11in: ""
-*pt.PageSize Legal/Legal - 8.5x14in: ""
-*pt.PageSize A4/A4 - 210x297mm: ""
-*pt.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*pt.PageSize Letter/Letter - 8.5x11in: ""
-*pt.PageSize Legal/Legal - 8.5x14in: ""
-*pt.PageSize A4/A4 - 210x297mm: ""
-*pt.Translation Resolution/Resolution: ""
-*pt.Resolution 180dpi/180dpi: ""
-*pt.Resolution 360dpi/360dpi: ""
-*pt.Resolution 720dpi/720dpi: ""
-*pt.Translation ColorModel/Modo Cor: ""
-*pt.ColorModel CMYK/CMYK: ""
-*pt.ColorModel Gray/Grayscale: ""
-*pt_BR.Translation Manufacturer/Epson: ""
-*pt_BR.Translation ModelName/Epson Stylus Color Series: ""
-*pt_BR.Translation ShortNickName/Epson Stylus Color Series: ""
-*pt_BR.Translation NickName/Epson Stylus Color Series, 1.4: ""
-*pt_BR.Translation PageSize/Media Size: ""
-*pt_BR.PageSize Letter/Letter - 8.5x11in: ""
-*pt_BR.PageSize Legal/Legal - 8.5x14in: ""
-*pt_BR.PageSize A4/A4 - 210x297mm: ""
-*pt_BR.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*pt_BR.PageSize Letter/Letter - 8.5x11in: ""
-*pt_BR.PageSize Legal/Legal - 8.5x14in: ""
-*pt_BR.PageSize A4/A4 - 210x297mm: ""
-*pt_BR.Translation Resolution/Resolution: ""
-*pt_BR.Resolution 180dpi/180dpi: ""
-*pt_BR.Resolution 360dpi/360dpi: ""
-*pt_BR.Resolution 720dpi/720dpi: ""
-*pt_BR.Translation ColorModel/Modo Cor: ""
-*pt_BR.ColorModel CMYK/CMYK: ""
-*pt_BR.ColorModel Gray/Grayscale: ""
-*sv.Translation Manufacturer/Epson: ""
-*sv.Translation ModelName/Epson Stylus Color Series: ""
-*sv.Translation ShortNickName/Epson Stylus Color Series: ""
-*sv.Translation NickName/Epson Stylus Color Series, 1.4: ""
-*sv.Translation PageSize/Media Size: ""
-*sv.PageSize Letter/Letter - 8.5x11in: ""
-*sv.PageSize Legal/Legal - 8.5x14in: ""
-*sv.PageSize A4/A4 - 210x297mm: ""
-*sv.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*sv.PageSize Letter/Letter - 8.5x11in: ""
-*sv.PageSize Legal/Legal - 8.5x14in: ""
-*sv.PageSize A4/A4 - 210x297mm: ""
-*sv.Translation Resolution/Resolution: ""
-*sv.Resolution 180dpi/180dpi: ""
-*sv.Resolution 360dpi/360dpi: ""
-*sv.Resolution 720dpi/720dpi: ""
-*sv.Translation ColorModel/Färginställningar: ""
-*sv.ColorModel CMYK/CMYK: ""
-*sv.ColorModel Gray/Grayscale: ""
-*zh.Translation Manufacturer/Epson: ""
-*zh.Translation ModelName/Epson Stylus Color Series: ""
-*zh.Translation ShortNickName/Epson Stylus Color Series: ""
-*zh.Translation NickName/Epson Stylus Color Series, 1.4: ""
-*zh.Translation PageSize/Page Size: ""
-*zh.PageSize Letter/Letter - 8.5x11in: ""
-*zh.PageSize Legal/Legal - 8.5x14in: ""
-*zh.PageSize A4/A4 - 210x297mm: ""
-*zh.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*zh.PageSize Letter/Letter - 8.5x11in: ""
-*zh.PageSize Legal/Legal - 8.5x14in: ""
-*zh.PageSize A4/A4 - 210x297mm: ""
-*zh.Translation Resolution/Resolution: ""
-*zh.Resolution 180dpi/180dpi: ""
-*zh.Resolution 360dpi/360dpi: ""
-*zh.Resolution 720dpi/720dpi: ""
-*zh.Translation ColorModel/色彩模式: ""
-*zh.ColorModel CMYK/CMYK: ""
-*zh.ColorModel Gray/Grayscale: ""
-*zh_TW.Translation Manufacturer/Epson: ""
-*zh_TW.Translation ModelName/Epson Stylus Color Series: ""
-*zh_TW.Translation ShortNickName/Epson Stylus Color Series: ""
-*zh_TW.Translation NickName/Epson Stylus Color Series, 1.4: ""
-*zh_TW.Translation PageSize/Page Size: ""
-*zh_TW.PageSize Letter/Letter - 8.5x11in: ""
-*zh_TW.PageSize Legal/Legal - 8.5x14in: ""
-*zh_TW.PageSize A4/A4 - 210x297mm: ""
-*zh_TW.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*zh_TW.PageSize Letter/Letter - 8.5x11in: ""
-*zh_TW.PageSize Legal/Legal - 8.5x14in: ""
-*zh_TW.PageSize A4/A4 - 210x297mm: ""
-*zh_TW.Translation Resolution/Resolution: ""
-*zh_TW.Resolution 180dpi/180dpi: ""
-*zh_TW.Resolution 360dpi/360dpi: ""
-*zh_TW.Resolution 720dpi/720dpi: ""
-*zh_TW.Translation ColorModel/用灰色列印彩色: ""
-*zh_TW.ColorModel CMYK/CMYK: ""
-*zh_TW.ColorModel Gray/Grayscale: ""
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(1.05)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
-*Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
-*Font Bookman-Demi: Standard "(1.05)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
-*Font Bookman-Light: Standard "(1.05)" Standard ROM
-*Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
-*Font Courier: Standard "(1.05)" Standard ROM
-*Font Courier-Bold: Standard "(1.05)" Standard ROM
-*Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Courier-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica: Standard "(1.05)" Standard ROM
-*Font Helvetica-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
-*Font Palatino-Bold: Standard "(1.05)" Standard ROM
-*Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Palatino-Italic: Standard "(1.05)" Standard ROM
-*Font Palatino-Roman: Standard "(1.05)" Standard ROM
-*Font Symbol: Special "(001.005)" Special ROM
-*Font Times-Bold: Standard "(1.05)" Standard ROM
-*Font Times-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Times-Italic: Standard "(1.05)" Standard ROM
-*Font Times-Roman: Standard "(1.05)" Standard ROM
-*Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
-*Font ZapfDingbats: Special "(001.005)" Special ROM
-*% End of STCOLOR.PPD, 18987 bytes.
diff --git a/ppd/stcolor2.ppd b/ppd/stcolor2.ppd
deleted file mode 100644 (file)
index 01ddc83..0000000
+++ /dev/null
@@ -1,420 +0,0 @@
-*PPD-Adobe: "4.3"
-*% PPD file for New Stylus Color Series with CUPS.
-*% Created by the CUPS PPD Compiler v1.2.4.
-*% Copyright 2007 by Apple Inc.
-*% Copyright 1997-2007 by Easy Software Products.
-*% 
-*% These coded instructions, statements, and computer programs are the
-*% property of Apple Inc. and are protected by Federal copyright
-*% law.  Distribution and use rights are outlined in the file "LICENSE.txt"
-*% which should have been included with this file.  If this file is
-*% file is missing or damaged, see the license at "http://www.cups.org/".
-*FormatVersion: "4.3"
-*FileVersion: "1.4"
-*LanguageVersion: English
-*LanguageEncoding: ISOLatin1
-*PCFileName: "STCOLOR2.PPD"
-*Product: "(ESP Ghostscript)"
-*Product: "(GPL Ghostscript)"
-*Manufacturer: "Epson"
-*ModelName: "Epson New Stylus Color Series"
-*ShortNickName: "Epson New Stylus Color Series"
-*NickName: "Epson New Stylus Color Series, 1.4"
-*PSVersion: "(3010.000) 81504"
-*PSVersion: "(3010.000) 860"
-*LanguageLevel: "3"
-*ColorDevice: True
-*DefaultColorSpace: RGB
-*FileSystem: False
-*Throughput: "1"
-*LandscapeOrientation: Plus90
-*TTRasterizer: Type42
-*% Driver-defined attributes...
-*cupsVersion: 1.4
-*cupsModelNumber: 4
-*cupsManualCopies: True
-*cupsFilter: "application/vnd.cups-raster 50 rastertoepson"
-*cupsLanguages: "en da de es fi fr it ja ko nl no pt pt_BR sv zh zh_TW"
-*OpenUI *PageSize/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*PageSize FanFoldUS/Fanfold - 14.875x11in: "<</PageSize[1071 792]/ImagingBBox null>>setpagedevice"
-*PageSize Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageSize
-*OpenUI *PageRegion/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*PageRegion FanFoldUS/Fanfold - 14.875x11in: "<</PageSize[1071 792]/ImagingBBox null>>setpagedevice"
-*PageRegion Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageRegion
-*DefaultImageableArea: Letter
-*ImageableArea Letter/Letter - 8.5x11in: "18.00 18.00 594.00 774.00"
-*ImageableArea Legal/Legal - 8.5x14in: "18.00 18.00 594.00 990.00"
-*ImageableArea A4/A4 - 210x297mm: "18.00 18.00 577.00 824.00"
-*ImageableArea FanFoldUS/Fanfold - 14.875x11in: "18.00 18.00 1053.00 774.00"
-*ImageableArea Letter/Letter - 8.5x11in: "8.60 39.60 603.40 766.49"
-*ImageableArea Legal/Legal - 8.5x14in: "8.60 39.60 603.40 982.49"
-*ImageableArea A4/A4 - 210x297mm: "8.60 39.60 586.40 816.49"
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/Letter - 8.5x11in: "612.00 792.00"
-*PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
-*PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
-*PaperDimension FanFoldUS/Fanfold - 14.875x11in: "1071.00 792.00"
-*PaperDimension Letter/Letter - 8.5x11in: "612.00 792.00"
-*PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
-*PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
-*MaxMediaWidth: "1080.00"
-*MaxMediaHeight: "86400.00"
-*HWMargins: 8.60 39.60 8.60 25.51
-*CustomPageSize True: "pop pop pop <</PageSize[5 -2 roll]/ImagingBBox null>>setpagedevice"
-*ParamCustomPageSize Width: 1 points 36.00 1080.00
-*ParamCustomPageSize Height: 2 points 36.00 86400.00
-*ParamCustomPageSize WidthOffset: 3 points 0 0
-*ParamCustomPageSize HeightOffset: 4 points 0 0
-*ParamCustomPageSize Orientation: 5 int 0 0
-*RequiresPageRegion All: True
-*OpenUI *Resolution: PickOne
-*OrderDependency: 10.0 AnySetup *Resolution
-*DefaultResolution: 360dpi
-*Resolution 180dpi: "<</HWResolution[180 180]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
-*Resolution 360dpi: "<</HWResolution[360 360]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
-*Resolution 720dpi: "<</HWResolution[720 720]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
-*CloseUI: *Resolution
-*OpenUI *ColorModel/Color Mode: PickOne
-*OrderDependency: 10.0 AnySetup *ColorModel
-*DefaultColorModel: CMYK
-*ColorModel CMYK: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 1>>setpagedevice"
-*ColorModel Gray/Grayscale: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 1>>setpagedevice"
-*CloseUI: *ColorModel
-*da.Translation Manufacturer/Epson: ""
-*da.Translation ModelName/Epson New Stylus Color Series: ""
-*da.Translation ShortNickName/Epson New Stylus Color Series: ""
-*da.Translation NickName/Epson New Stylus Color Series, 1.4: ""
-*da.Translation PageSize/Media Size: ""
-*da.PageSize Letter/Letter - 8.5x11in: ""
-*da.PageSize Legal/Legal - 8.5x14in: ""
-*da.PageSize A4/A4 - 210x297mm: ""
-*da.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*da.PageSize Letter/Letter - 8.5x11in: ""
-*da.PageSize Legal/Legal - 8.5x14in: ""
-*da.PageSize A4/A4 - 210x297mm: ""
-*da.Translation Resolution/Resolution: ""
-*da.Resolution 180dpi/180dpi: ""
-*da.Resolution 360dpi/360dpi: ""
-*da.Resolution 720dpi/720dpi: ""
-*da.Translation ColorModel/Farveindstilling: ""
-*da.ColorModel CMYK/CMYK: ""
-*da.ColorModel Gray/Grayscale: ""
-*de.Translation Manufacturer/Epson: ""
-*de.Translation ModelName/Epson New Stylus Color Series: ""
-*de.Translation ShortNickName/Epson New Stylus Color Series: ""
-*de.Translation NickName/Epson New Stylus Color Series, 1.4: ""
-*de.Translation PageSize/Media Size: ""
-*de.PageSize Letter/Letter - 8.5x11in: ""
-*de.PageSize Legal/Legal - 8.5x14in: ""
-*de.PageSize A4/A4 - 210x297mm: ""
-*de.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*de.PageSize Letter/Letter - 8.5x11in: ""
-*de.PageSize Legal/Legal - 8.5x14in: ""
-*de.PageSize A4/A4 - 210x297mm: ""
-*de.Translation Resolution/Resolution: ""
-*de.Resolution 180dpi/180dpi: ""
-*de.Resolution 360dpi/360dpi: ""
-*de.Resolution 720dpi/720dpi: ""
-*de.Translation ColorModel/Farbmodus: ""
-*de.ColorModel CMYK/CMYK: ""
-*de.ColorModel Gray/Grayscale: ""
-*es.Translation Manufacturer/Epson: ""
-*es.Translation ModelName/Epson New Stylus Color Series: ""
-*es.Translation ShortNickName/Epson New Stylus Color Series: ""
-*es.Translation NickName/Epson New Stylus Color Series, 1.4: ""
-*es.Translation PageSize/Media Size: ""
-*es.PageSize Letter/Letter - 8.5x11in: ""
-*es.PageSize Legal/Legal - 8.5x14in: ""
-*es.PageSize A4/A4 - 210x297mm: ""
-*es.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*es.PageSize Letter/Letter - 8.5x11in: ""
-*es.PageSize Legal/Legal - 8.5x14in: ""
-*es.PageSize A4/A4 - 210x297mm: ""
-*es.Translation Resolution/Resolution: ""
-*es.Resolution 180dpi/180dpi: ""
-*es.Resolution 360dpi/360dpi: ""
-*es.Resolution 720dpi/720dpi: ""
-*es.Translation ColorModel/Modo de color: ""
-*es.ColorModel CMYK/CMYK: ""
-*es.ColorModel Gray/Grayscale: ""
-*fi.Translation Manufacturer/Epson: ""
-*fi.Translation ModelName/Epson New Stylus Color Series: ""
-*fi.Translation ShortNickName/Epson New Stylus Color Series: ""
-*fi.Translation NickName/Epson New Stylus Color Series, 1.4: ""
-*fi.Translation PageSize/Media Size: ""
-*fi.PageSize Letter/Letter - 8.5x11in: ""
-*fi.PageSize Legal/Legal - 8.5x14in: ""
-*fi.PageSize A4/A4 - 210x297mm: ""
-*fi.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*fi.PageSize Letter/Letter - 8.5x11in: ""
-*fi.PageSize Legal/Legal - 8.5x14in: ""
-*fi.PageSize A4/A4 - 210x297mm: ""
-*fi.Translation Resolution/Resolution: ""
-*fi.Resolution 180dpi/180dpi: ""
-*fi.Resolution 360dpi/360dpi: ""
-*fi.Resolution 720dpi/720dpi: ""
-*fi.Translation ColorModel/Tulosta värit harmaasävyinä: ""
-*fi.ColorModel CMYK/CMYK: ""
-*fi.ColorModel Gray/Grayscale: ""
-*fr.Translation Manufacturer/Epson: ""
-*fr.Translation ModelName/Epson New Stylus Color Series: ""
-*fr.Translation ShortNickName/Epson New Stylus Color Series: ""
-*fr.Translation NickName/Epson New Stylus Color Series, 1.4: ""
-*fr.Translation PageSize/Media Size: ""
-*fr.PageSize Letter/Letter - 8.5x11in: ""
-*fr.PageSize Legal/Legal - 8.5x14in: ""
-*fr.PageSize A4/A4 - 210x297mm: ""
-*fr.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*fr.PageSize Letter/Letter - 8.5x11in: ""
-*fr.PageSize Legal/Legal - 8.5x14in: ""
-*fr.PageSize A4/A4 - 210x297mm: ""
-*fr.Translation Resolution/Resolution: ""
-*fr.Resolution 180dpi/180dpi: ""
-*fr.Resolution 360dpi/360dpi: ""
-*fr.Resolution 720dpi/720dpi: ""
-*fr.Translation ColorModel/Mode couleur: ""
-*fr.ColorModel CMYK/CMYK: ""
-*fr.ColorModel Gray/Grayscale: ""
-*it.Translation Manufacturer/Epson: ""
-*it.Translation ModelName/Epson New Stylus Color Series: ""
-*it.Translation ShortNickName/Epson New Stylus Color Series: ""
-*it.Translation NickName/Epson New Stylus Color Series, 1.4: ""
-*it.Translation PageSize/Media Size: ""
-*it.PageSize Letter/Letter - 8.5x11in: ""
-*it.PageSize Legal/Legal - 8.5x14in: ""
-*it.PageSize A4/A4 - 210x297mm: ""
-*it.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*it.PageSize Letter/Letter - 8.5x11in: ""
-*it.PageSize Legal/Legal - 8.5x14in: ""
-*it.PageSize A4/A4 - 210x297mm: ""
-*it.Translation Resolution/Resolution: ""
-*it.Resolution 180dpi/180dpi: ""
-*it.Resolution 360dpi/360dpi: ""
-*it.Resolution 720dpi/720dpi: ""
-*it.Translation ColorModel/Modo Colore: ""
-*it.ColorModel CMYK/CMYK: ""
-*it.ColorModel Gray/Grayscale: ""
-*ja.Translation Manufacturer/Epson: ""
-*ja.Translation ModelName/Epson New Stylus Color Series: ""
-*ja.Translation ShortNickName/Epson New Stylus Color Series: ""
-*ja.Translation NickName/Epson New Stylus Color Series, 1.4: ""
-*ja.Translation PageSize/Media Size: ""
-*ja.PageSize Letter/Letter - 8.5x11in: ""
-*ja.PageSize Legal/Legal - 8.5x14in: ""
-*ja.PageSize A4/A4 - 210x297mm: ""
-*ja.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*ja.PageSize Letter/Letter - 8.5x11in: ""
-*ja.PageSize Legal/Legal - 8.5x14in: ""
-*ja.PageSize A4/A4 - 210x297mm: ""
-*ja.Translation Resolution/Resolution: ""
-*ja.Resolution 180dpi/180dpi: ""
-*ja.Resolution 360dpi/360dpi: ""
-*ja.Resolution 720dpi/720dpi: ""
-*ja.Translation ColorModel/カラー モデル: ""
-*ja.ColorModel CMYK/CMYK: ""
-*ja.ColorModel Gray/Grayscale: ""
-*ko.Translation Manufacturer/Epson: ""
-*ko.Translation ModelName/Epson New Stylus Color Series: ""
-*ko.Translation ShortNickName/Epson New Stylus Color Series: ""
-*ko.Translation NickName/Epson New Stylus Color Series, 1.4: ""
-*ko.Translation PageSize/Page Size: ""
-*ko.PageSize Letter/Letter - 8.5x11in: ""
-*ko.PageSize Legal/Legal - 8.5x14in: ""
-*ko.PageSize A4/A4 - 210x297mm: ""
-*ko.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*ko.PageSize Letter/Letter - 8.5x11in: ""
-*ko.PageSize Legal/Legal - 8.5x14in: ""
-*ko.PageSize A4/A4 - 210x297mm: ""
-*ko.Translation Resolution/Resolution: ""
-*ko.Resolution 180dpi/180dpi: ""
-*ko.Resolution 360dpi/360dpi: ""
-*ko.Resolution 720dpi/720dpi: ""
-*ko.Translation ColorModel/컬러 모델: ""
-*ko.ColorModel CMYK/CMYK: ""
-*ko.ColorModel Gray/Grayscale: ""
-*nl.Translation Manufacturer/Epson: ""
-*nl.Translation ModelName/Epson New Stylus Color Series: ""
-*nl.Translation ShortNickName/Epson New Stylus Color Series: ""
-*nl.Translation NickName/Epson New Stylus Color Series, 1.4: ""
-*nl.Translation PageSize/Media Size: ""
-*nl.PageSize Letter/Letter - 8.5x11in: ""
-*nl.PageSize Legal/Legal - 8.5x14in: ""
-*nl.PageSize A4/A4 - 210x297mm: ""
-*nl.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*nl.PageSize Letter/Letter - 8.5x11in: ""
-*nl.PageSize Legal/Legal - 8.5x14in: ""
-*nl.PageSize A4/A4 - 210x297mm: ""
-*nl.Translation Resolution/Resolution: ""
-*nl.Resolution 180dpi/180dpi: ""
-*nl.Resolution 360dpi/360dpi: ""
-*nl.Resolution 720dpi/720dpi: ""
-*nl.Translation ColorModel/Kleurenmodus: ""
-*nl.ColorModel CMYK/CMYK: ""
-*nl.ColorModel Gray/Grayscale: ""
-*no.Translation Manufacturer/Epson: ""
-*no.Translation ModelName/Epson New Stylus Color Series: ""
-*no.Translation ShortNickName/Epson New Stylus Color Series: ""
-*no.Translation NickName/Epson New Stylus Color Series, 1.4: ""
-*no.Translation PageSize/Media Size: ""
-*no.PageSize Letter/Letter - 8.5x11in: ""
-*no.PageSize Legal/Legal - 8.5x14in: ""
-*no.PageSize A4/A4 - 210x297mm: ""
-*no.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*no.PageSize Letter/Letter - 8.5x11in: ""
-*no.PageSize Legal/Legal - 8.5x14in: ""
-*no.PageSize A4/A4 - 210x297mm: ""
-*no.Translation Resolution/Resolution: ""
-*no.Resolution 180dpi/180dpi: ""
-*no.Resolution 360dpi/360dpi: ""
-*no.Resolution 720dpi/720dpi: ""
-*no.Translation ColorModel/Fargemodus: ""
-*no.ColorModel CMYK/CMYK: ""
-*no.ColorModel Gray/Grayscale: ""
-*pt.Translation Manufacturer/Epson: ""
-*pt.Translation ModelName/Epson New Stylus Color Series: ""
-*pt.Translation ShortNickName/Epson New Stylus Color Series: ""
-*pt.Translation NickName/Epson New Stylus Color Series, 1.4: ""
-*pt.Translation PageSize/Media Size: ""
-*pt.PageSize Letter/Letter - 8.5x11in: ""
-*pt.PageSize Legal/Legal - 8.5x14in: ""
-*pt.PageSize A4/A4 - 210x297mm: ""
-*pt.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*pt.PageSize Letter/Letter - 8.5x11in: ""
-*pt.PageSize Legal/Legal - 8.5x14in: ""
-*pt.PageSize A4/A4 - 210x297mm: ""
-*pt.Translation Resolution/Resolution: ""
-*pt.Resolution 180dpi/180dpi: ""
-*pt.Resolution 360dpi/360dpi: ""
-*pt.Resolution 720dpi/720dpi: ""
-*pt.Translation ColorModel/Modo Cor: ""
-*pt.ColorModel CMYK/CMYK: ""
-*pt.ColorModel Gray/Grayscale: ""
-*pt_BR.Translation Manufacturer/Epson: ""
-*pt_BR.Translation ModelName/Epson New Stylus Color Series: ""
-*pt_BR.Translation ShortNickName/Epson New Stylus Color Series: ""
-*pt_BR.Translation NickName/Epson New Stylus Color Series, 1.4: ""
-*pt_BR.Translation PageSize/Media Size: ""
-*pt_BR.PageSize Letter/Letter - 8.5x11in: ""
-*pt_BR.PageSize Legal/Legal - 8.5x14in: ""
-*pt_BR.PageSize A4/A4 - 210x297mm: ""
-*pt_BR.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*pt_BR.PageSize Letter/Letter - 8.5x11in: ""
-*pt_BR.PageSize Legal/Legal - 8.5x14in: ""
-*pt_BR.PageSize A4/A4 - 210x297mm: ""
-*pt_BR.Translation Resolution/Resolution: ""
-*pt_BR.Resolution 180dpi/180dpi: ""
-*pt_BR.Resolution 360dpi/360dpi: ""
-*pt_BR.Resolution 720dpi/720dpi: ""
-*pt_BR.Translation ColorModel/Modo Cor: ""
-*pt_BR.ColorModel CMYK/CMYK: ""
-*pt_BR.ColorModel Gray/Grayscale: ""
-*sv.Translation Manufacturer/Epson: ""
-*sv.Translation ModelName/Epson New Stylus Color Series: ""
-*sv.Translation ShortNickName/Epson New Stylus Color Series: ""
-*sv.Translation NickName/Epson New Stylus Color Series, 1.4: ""
-*sv.Translation PageSize/Media Size: ""
-*sv.PageSize Letter/Letter - 8.5x11in: ""
-*sv.PageSize Legal/Legal - 8.5x14in: ""
-*sv.PageSize A4/A4 - 210x297mm: ""
-*sv.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*sv.PageSize Letter/Letter - 8.5x11in: ""
-*sv.PageSize Legal/Legal - 8.5x14in: ""
-*sv.PageSize A4/A4 - 210x297mm: ""
-*sv.Translation Resolution/Resolution: ""
-*sv.Resolution 180dpi/180dpi: ""
-*sv.Resolution 360dpi/360dpi: ""
-*sv.Resolution 720dpi/720dpi: ""
-*sv.Translation ColorModel/Färginställningar: ""
-*sv.ColorModel CMYK/CMYK: ""
-*sv.ColorModel Gray/Grayscale: ""
-*zh.Translation Manufacturer/Epson: ""
-*zh.Translation ModelName/Epson New Stylus Color Series: ""
-*zh.Translation ShortNickName/Epson New Stylus Color Series: ""
-*zh.Translation NickName/Epson New Stylus Color Series, 1.4: ""
-*zh.Translation PageSize/Page Size: ""
-*zh.PageSize Letter/Letter - 8.5x11in: ""
-*zh.PageSize Legal/Legal - 8.5x14in: ""
-*zh.PageSize A4/A4 - 210x297mm: ""
-*zh.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*zh.PageSize Letter/Letter - 8.5x11in: ""
-*zh.PageSize Legal/Legal - 8.5x14in: ""
-*zh.PageSize A4/A4 - 210x297mm: ""
-*zh.Translation Resolution/Resolution: ""
-*zh.Resolution 180dpi/180dpi: ""
-*zh.Resolution 360dpi/360dpi: ""
-*zh.Resolution 720dpi/720dpi: ""
-*zh.Translation ColorModel/色彩模式: ""
-*zh.ColorModel CMYK/CMYK: ""
-*zh.ColorModel Gray/Grayscale: ""
-*zh_TW.Translation Manufacturer/Epson: ""
-*zh_TW.Translation ModelName/Epson New Stylus Color Series: ""
-*zh_TW.Translation ShortNickName/Epson New Stylus Color Series: ""
-*zh_TW.Translation NickName/Epson New Stylus Color Series, 1.4: ""
-*zh_TW.Translation PageSize/Page Size: ""
-*zh_TW.PageSize Letter/Letter - 8.5x11in: ""
-*zh_TW.PageSize Legal/Legal - 8.5x14in: ""
-*zh_TW.PageSize A4/A4 - 210x297mm: ""
-*zh_TW.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*zh_TW.PageSize Letter/Letter - 8.5x11in: ""
-*zh_TW.PageSize Legal/Legal - 8.5x14in: ""
-*zh_TW.PageSize A4/A4 - 210x297mm: ""
-*zh_TW.Translation Resolution/Resolution: ""
-*zh_TW.Resolution 180dpi/180dpi: ""
-*zh_TW.Resolution 360dpi/360dpi: ""
-*zh_TW.Resolution 720dpi/720dpi: ""
-*zh_TW.Translation ColorModel/用灰色列印彩色: ""
-*zh_TW.ColorModel CMYK/CMYK: ""
-*zh_TW.ColorModel Gray/Grayscale: ""
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(1.05)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
-*Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
-*Font Bookman-Demi: Standard "(1.05)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
-*Font Bookman-Light: Standard "(1.05)" Standard ROM
-*Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
-*Font Courier: Standard "(1.05)" Standard ROM
-*Font Courier-Bold: Standard "(1.05)" Standard ROM
-*Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Courier-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica: Standard "(1.05)" Standard ROM
-*Font Helvetica-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
-*Font Palatino-Bold: Standard "(1.05)" Standard ROM
-*Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Palatino-Italic: Standard "(1.05)" Standard ROM
-*Font Palatino-Roman: Standard "(1.05)" Standard ROM
-*Font Symbol: Special "(001.005)" Special ROM
-*Font Times-Bold: Standard "(1.05)" Standard ROM
-*Font Times-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Times-Italic: Standard "(1.05)" Standard ROM
-*Font Times-Roman: Standard "(1.05)" Standard ROM
-*Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
-*Font ZapfDingbats: Special "(001.005)" Special ROM
-*% End of STCOLOR2.PPD, 19185 bytes.
diff --git a/ppd/stphoto.ppd b/ppd/stphoto.ppd
deleted file mode 100644 (file)
index 272a0ac..0000000
+++ /dev/null
@@ -1,420 +0,0 @@
-*PPD-Adobe: "4.3"
-*% PPD file for Stylus Photo Series with CUPS.
-*% Created by the CUPS PPD Compiler v1.2.4.
-*% Copyright 2007 by Apple Inc.
-*% Copyright 1997-2007 by Easy Software Products.
-*% 
-*% These coded instructions, statements, and computer programs are the
-*% property of Apple Inc. and are protected by Federal copyright
-*% law.  Distribution and use rights are outlined in the file "LICENSE.txt"
-*% which should have been included with this file.  If this file is
-*% file is missing or damaged, see the license at "http://www.cups.org/".
-*FormatVersion: "4.3"
-*FileVersion: "1.4"
-*LanguageVersion: English
-*LanguageEncoding: ISOLatin1
-*PCFileName: "STPHOTO.PPD"
-*Product: "(ESP Ghostscript)"
-*Product: "(GPL Ghostscript)"
-*Manufacturer: "Epson"
-*ModelName: "Epson Stylus Photo Series"
-*ShortNickName: "Epson Stylus Photo Series"
-*NickName: "Epson Stylus Photo Series, 1.4"
-*PSVersion: "(3010.000) 81504"
-*PSVersion: "(3010.000) 860"
-*LanguageLevel: "3"
-*ColorDevice: True
-*DefaultColorSpace: RGB
-*FileSystem: False
-*Throughput: "1"
-*LandscapeOrientation: Plus90
-*TTRasterizer: Type42
-*% Driver-defined attributes...
-*cupsVersion: 1.4
-*cupsModelNumber: 3
-*cupsManualCopies: True
-*cupsFilter: "application/vnd.cups-raster 50 rastertoepson"
-*cupsLanguages: "en da de es fi fr it ja ko nl no pt pt_BR sv zh zh_TW"
-*OpenUI *PageSize/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*PageSize FanFoldUS/Fanfold - 14.875x11in: "<</PageSize[1071 792]/ImagingBBox null>>setpagedevice"
-*PageSize Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageSize
-*OpenUI *PageRegion/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*PageRegion FanFoldUS/Fanfold - 14.875x11in: "<</PageSize[1071 792]/ImagingBBox null>>setpagedevice"
-*PageRegion Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageRegion
-*DefaultImageableArea: Letter
-*ImageableArea Letter/Letter - 8.5x11in: "18.00 18.00 594.00 774.00"
-*ImageableArea Legal/Legal - 8.5x14in: "18.00 18.00 594.00 990.00"
-*ImageableArea A4/A4 - 210x297mm: "18.00 18.00 577.00 824.00"
-*ImageableArea FanFoldUS/Fanfold - 14.875x11in: "18.00 18.00 1053.00 774.00"
-*ImageableArea Letter/Letter - 8.5x11in: "8.60 39.60 603.40 766.49"
-*ImageableArea Legal/Legal - 8.5x14in: "8.60 39.60 603.40 982.49"
-*ImageableArea A4/A4 - 210x297mm: "8.60 39.60 586.40 816.49"
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/Letter - 8.5x11in: "612.00 792.00"
-*PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
-*PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
-*PaperDimension FanFoldUS/Fanfold - 14.875x11in: "1071.00 792.00"
-*PaperDimension Letter/Letter - 8.5x11in: "612.00 792.00"
-*PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
-*PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
-*MaxMediaWidth: "1080.00"
-*MaxMediaHeight: "86400.00"
-*HWMargins: 8.60 39.60 8.60 25.51
-*CustomPageSize True: "pop pop pop <</PageSize[5 -2 roll]/ImagingBBox null>>setpagedevice"
-*ParamCustomPageSize Width: 1 points 36.00 1080.00
-*ParamCustomPageSize Height: 2 points 36.00 86400.00
-*ParamCustomPageSize WidthOffset: 3 points 0 0
-*ParamCustomPageSize HeightOffset: 4 points 0 0
-*ParamCustomPageSize Orientation: 5 int 0 0
-*RequiresPageRegion All: True
-*OpenUI *Resolution: PickOne
-*OrderDependency: 10.0 AnySetup *Resolution
-*DefaultResolution: 360dpi
-*Resolution 180dpi: "<</HWResolution[180 180]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
-*Resolution 360dpi: "<</HWResolution[360 360]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
-*Resolution 720dpi: "<</HWResolution[720 720]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
-*CloseUI: *Resolution
-*OpenUI *ColorModel/Color Mode: PickOne
-*OrderDependency: 10.0 AnySetup *ColorModel
-*DefaultColorModel: CMYK
-*ColorModel CMYK: "<</cupsColorSpace -1/cupsColorOrder 1/cupsCompression 1>>setpagedevice"
-*ColorModel Gray/Grayscale: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 1>>setpagedevice"
-*CloseUI: *ColorModel
-*da.Translation Manufacturer/Epson: ""
-*da.Translation ModelName/Epson Stylus Photo Series: ""
-*da.Translation ShortNickName/Epson Stylus Photo Series: ""
-*da.Translation NickName/Epson Stylus Photo Series, 1.4: ""
-*da.Translation PageSize/Media Size: ""
-*da.PageSize Letter/Letter - 8.5x11in: ""
-*da.PageSize Legal/Legal - 8.5x14in: ""
-*da.PageSize A4/A4 - 210x297mm: ""
-*da.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*da.PageSize Letter/Letter - 8.5x11in: ""
-*da.PageSize Legal/Legal - 8.5x14in: ""
-*da.PageSize A4/A4 - 210x297mm: ""
-*da.Translation Resolution/Resolution: ""
-*da.Resolution 180dpi/180dpi: ""
-*da.Resolution 360dpi/360dpi: ""
-*da.Resolution 720dpi/720dpi: ""
-*da.Translation ColorModel/Farveindstilling: ""
-*da.ColorModel CMYK/CMYK: ""
-*da.ColorModel Gray/Grayscale: ""
-*de.Translation Manufacturer/Epson: ""
-*de.Translation ModelName/Epson Stylus Photo Series: ""
-*de.Translation ShortNickName/Epson Stylus Photo Series: ""
-*de.Translation NickName/Epson Stylus Photo Series, 1.4: ""
-*de.Translation PageSize/Media Size: ""
-*de.PageSize Letter/Letter - 8.5x11in: ""
-*de.PageSize Legal/Legal - 8.5x14in: ""
-*de.PageSize A4/A4 - 210x297mm: ""
-*de.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*de.PageSize Letter/Letter - 8.5x11in: ""
-*de.PageSize Legal/Legal - 8.5x14in: ""
-*de.PageSize A4/A4 - 210x297mm: ""
-*de.Translation Resolution/Resolution: ""
-*de.Resolution 180dpi/180dpi: ""
-*de.Resolution 360dpi/360dpi: ""
-*de.Resolution 720dpi/720dpi: ""
-*de.Translation ColorModel/Farbmodus: ""
-*de.ColorModel CMYK/CMYK: ""
-*de.ColorModel Gray/Grayscale: ""
-*es.Translation Manufacturer/Epson: ""
-*es.Translation ModelName/Epson Stylus Photo Series: ""
-*es.Translation ShortNickName/Epson Stylus Photo Series: ""
-*es.Translation NickName/Epson Stylus Photo Series, 1.4: ""
-*es.Translation PageSize/Media Size: ""
-*es.PageSize Letter/Letter - 8.5x11in: ""
-*es.PageSize Legal/Legal - 8.5x14in: ""
-*es.PageSize A4/A4 - 210x297mm: ""
-*es.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*es.PageSize Letter/Letter - 8.5x11in: ""
-*es.PageSize Legal/Legal - 8.5x14in: ""
-*es.PageSize A4/A4 - 210x297mm: ""
-*es.Translation Resolution/Resolution: ""
-*es.Resolution 180dpi/180dpi: ""
-*es.Resolution 360dpi/360dpi: ""
-*es.Resolution 720dpi/720dpi: ""
-*es.Translation ColorModel/Modo de color: ""
-*es.ColorModel CMYK/CMYK: ""
-*es.ColorModel Gray/Grayscale: ""
-*fi.Translation Manufacturer/Epson: ""
-*fi.Translation ModelName/Epson Stylus Photo Series: ""
-*fi.Translation ShortNickName/Epson Stylus Photo Series: ""
-*fi.Translation NickName/Epson Stylus Photo Series, 1.4: ""
-*fi.Translation PageSize/Media Size: ""
-*fi.PageSize Letter/Letter - 8.5x11in: ""
-*fi.PageSize Legal/Legal - 8.5x14in: ""
-*fi.PageSize A4/A4 - 210x297mm: ""
-*fi.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*fi.PageSize Letter/Letter - 8.5x11in: ""
-*fi.PageSize Legal/Legal - 8.5x14in: ""
-*fi.PageSize A4/A4 - 210x297mm: ""
-*fi.Translation Resolution/Resolution: ""
-*fi.Resolution 180dpi/180dpi: ""
-*fi.Resolution 360dpi/360dpi: ""
-*fi.Resolution 720dpi/720dpi: ""
-*fi.Translation ColorModel/Tulosta värit harmaasävyinä: ""
-*fi.ColorModel CMYK/CMYK: ""
-*fi.ColorModel Gray/Grayscale: ""
-*fr.Translation Manufacturer/Epson: ""
-*fr.Translation ModelName/Epson Stylus Photo Series: ""
-*fr.Translation ShortNickName/Epson Stylus Photo Series: ""
-*fr.Translation NickName/Epson Stylus Photo Series, 1.4: ""
-*fr.Translation PageSize/Media Size: ""
-*fr.PageSize Letter/Letter - 8.5x11in: ""
-*fr.PageSize Legal/Legal - 8.5x14in: ""
-*fr.PageSize A4/A4 - 210x297mm: ""
-*fr.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*fr.PageSize Letter/Letter - 8.5x11in: ""
-*fr.PageSize Legal/Legal - 8.5x14in: ""
-*fr.PageSize A4/A4 - 210x297mm: ""
-*fr.Translation Resolution/Resolution: ""
-*fr.Resolution 180dpi/180dpi: ""
-*fr.Resolution 360dpi/360dpi: ""
-*fr.Resolution 720dpi/720dpi: ""
-*fr.Translation ColorModel/Mode couleur: ""
-*fr.ColorModel CMYK/CMYK: ""
-*fr.ColorModel Gray/Grayscale: ""
-*it.Translation Manufacturer/Epson: ""
-*it.Translation ModelName/Epson Stylus Photo Series: ""
-*it.Translation ShortNickName/Epson Stylus Photo Series: ""
-*it.Translation NickName/Epson Stylus Photo Series, 1.4: ""
-*it.Translation PageSize/Media Size: ""
-*it.PageSize Letter/Letter - 8.5x11in: ""
-*it.PageSize Legal/Legal - 8.5x14in: ""
-*it.PageSize A4/A4 - 210x297mm: ""
-*it.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*it.PageSize Letter/Letter - 8.5x11in: ""
-*it.PageSize Legal/Legal - 8.5x14in: ""
-*it.PageSize A4/A4 - 210x297mm: ""
-*it.Translation Resolution/Resolution: ""
-*it.Resolution 180dpi/180dpi: ""
-*it.Resolution 360dpi/360dpi: ""
-*it.Resolution 720dpi/720dpi: ""
-*it.Translation ColorModel/Modo Colore: ""
-*it.ColorModel CMYK/CMYK: ""
-*it.ColorModel Gray/Grayscale: ""
-*ja.Translation Manufacturer/Epson: ""
-*ja.Translation ModelName/Epson Stylus Photo Series: ""
-*ja.Translation ShortNickName/Epson Stylus Photo Series: ""
-*ja.Translation NickName/Epson Stylus Photo Series, 1.4: ""
-*ja.Translation PageSize/Media Size: ""
-*ja.PageSize Letter/Letter - 8.5x11in: ""
-*ja.PageSize Legal/Legal - 8.5x14in: ""
-*ja.PageSize A4/A4 - 210x297mm: ""
-*ja.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*ja.PageSize Letter/Letter - 8.5x11in: ""
-*ja.PageSize Legal/Legal - 8.5x14in: ""
-*ja.PageSize A4/A4 - 210x297mm: ""
-*ja.Translation Resolution/Resolution: ""
-*ja.Resolution 180dpi/180dpi: ""
-*ja.Resolution 360dpi/360dpi: ""
-*ja.Resolution 720dpi/720dpi: ""
-*ja.Translation ColorModel/カラー モデル: ""
-*ja.ColorModel CMYK/CMYK: ""
-*ja.ColorModel Gray/Grayscale: ""
-*ko.Translation Manufacturer/Epson: ""
-*ko.Translation ModelName/Epson Stylus Photo Series: ""
-*ko.Translation ShortNickName/Epson Stylus Photo Series: ""
-*ko.Translation NickName/Epson Stylus Photo Series, 1.4: ""
-*ko.Translation PageSize/Page Size: ""
-*ko.PageSize Letter/Letter - 8.5x11in: ""
-*ko.PageSize Legal/Legal - 8.5x14in: ""
-*ko.PageSize A4/A4 - 210x297mm: ""
-*ko.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*ko.PageSize Letter/Letter - 8.5x11in: ""
-*ko.PageSize Legal/Legal - 8.5x14in: ""
-*ko.PageSize A4/A4 - 210x297mm: ""
-*ko.Translation Resolution/Resolution: ""
-*ko.Resolution 180dpi/180dpi: ""
-*ko.Resolution 360dpi/360dpi: ""
-*ko.Resolution 720dpi/720dpi: ""
-*ko.Translation ColorModel/컬러 모델: ""
-*ko.ColorModel CMYK/CMYK: ""
-*ko.ColorModel Gray/Grayscale: ""
-*nl.Translation Manufacturer/Epson: ""
-*nl.Translation ModelName/Epson Stylus Photo Series: ""
-*nl.Translation ShortNickName/Epson Stylus Photo Series: ""
-*nl.Translation NickName/Epson Stylus Photo Series, 1.4: ""
-*nl.Translation PageSize/Media Size: ""
-*nl.PageSize Letter/Letter - 8.5x11in: ""
-*nl.PageSize Legal/Legal - 8.5x14in: ""
-*nl.PageSize A4/A4 - 210x297mm: ""
-*nl.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*nl.PageSize Letter/Letter - 8.5x11in: ""
-*nl.PageSize Legal/Legal - 8.5x14in: ""
-*nl.PageSize A4/A4 - 210x297mm: ""
-*nl.Translation Resolution/Resolution: ""
-*nl.Resolution 180dpi/180dpi: ""
-*nl.Resolution 360dpi/360dpi: ""
-*nl.Resolution 720dpi/720dpi: ""
-*nl.Translation ColorModel/Kleurenmodus: ""
-*nl.ColorModel CMYK/CMYK: ""
-*nl.ColorModel Gray/Grayscale: ""
-*no.Translation Manufacturer/Epson: ""
-*no.Translation ModelName/Epson Stylus Photo Series: ""
-*no.Translation ShortNickName/Epson Stylus Photo Series: ""
-*no.Translation NickName/Epson Stylus Photo Series, 1.4: ""
-*no.Translation PageSize/Media Size: ""
-*no.PageSize Letter/Letter - 8.5x11in: ""
-*no.PageSize Legal/Legal - 8.5x14in: ""
-*no.PageSize A4/A4 - 210x297mm: ""
-*no.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*no.PageSize Letter/Letter - 8.5x11in: ""
-*no.PageSize Legal/Legal - 8.5x14in: ""
-*no.PageSize A4/A4 - 210x297mm: ""
-*no.Translation Resolution/Resolution: ""
-*no.Resolution 180dpi/180dpi: ""
-*no.Resolution 360dpi/360dpi: ""
-*no.Resolution 720dpi/720dpi: ""
-*no.Translation ColorModel/Fargemodus: ""
-*no.ColorModel CMYK/CMYK: ""
-*no.ColorModel Gray/Grayscale: ""
-*pt.Translation Manufacturer/Epson: ""
-*pt.Translation ModelName/Epson Stylus Photo Series: ""
-*pt.Translation ShortNickName/Epson Stylus Photo Series: ""
-*pt.Translation NickName/Epson Stylus Photo Series, 1.4: ""
-*pt.Translation PageSize/Media Size: ""
-*pt.PageSize Letter/Letter - 8.5x11in: ""
-*pt.PageSize Legal/Legal - 8.5x14in: ""
-*pt.PageSize A4/A4 - 210x297mm: ""
-*pt.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*pt.PageSize Letter/Letter - 8.5x11in: ""
-*pt.PageSize Legal/Legal - 8.5x14in: ""
-*pt.PageSize A4/A4 - 210x297mm: ""
-*pt.Translation Resolution/Resolution: ""
-*pt.Resolution 180dpi/180dpi: ""
-*pt.Resolution 360dpi/360dpi: ""
-*pt.Resolution 720dpi/720dpi: ""
-*pt.Translation ColorModel/Modo Cor: ""
-*pt.ColorModel CMYK/CMYK: ""
-*pt.ColorModel Gray/Grayscale: ""
-*pt_BR.Translation Manufacturer/Epson: ""
-*pt_BR.Translation ModelName/Epson Stylus Photo Series: ""
-*pt_BR.Translation ShortNickName/Epson Stylus Photo Series: ""
-*pt_BR.Translation NickName/Epson Stylus Photo Series, 1.4: ""
-*pt_BR.Translation PageSize/Media Size: ""
-*pt_BR.PageSize Letter/Letter - 8.5x11in: ""
-*pt_BR.PageSize Legal/Legal - 8.5x14in: ""
-*pt_BR.PageSize A4/A4 - 210x297mm: ""
-*pt_BR.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*pt_BR.PageSize Letter/Letter - 8.5x11in: ""
-*pt_BR.PageSize Legal/Legal - 8.5x14in: ""
-*pt_BR.PageSize A4/A4 - 210x297mm: ""
-*pt_BR.Translation Resolution/Resolution: ""
-*pt_BR.Resolution 180dpi/180dpi: ""
-*pt_BR.Resolution 360dpi/360dpi: ""
-*pt_BR.Resolution 720dpi/720dpi: ""
-*pt_BR.Translation ColorModel/Modo Cor: ""
-*pt_BR.ColorModel CMYK/CMYK: ""
-*pt_BR.ColorModel Gray/Grayscale: ""
-*sv.Translation Manufacturer/Epson: ""
-*sv.Translation ModelName/Epson Stylus Photo Series: ""
-*sv.Translation ShortNickName/Epson Stylus Photo Series: ""
-*sv.Translation NickName/Epson Stylus Photo Series, 1.4: ""
-*sv.Translation PageSize/Media Size: ""
-*sv.PageSize Letter/Letter - 8.5x11in: ""
-*sv.PageSize Legal/Legal - 8.5x14in: ""
-*sv.PageSize A4/A4 - 210x297mm: ""
-*sv.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*sv.PageSize Letter/Letter - 8.5x11in: ""
-*sv.PageSize Legal/Legal - 8.5x14in: ""
-*sv.PageSize A4/A4 - 210x297mm: ""
-*sv.Translation Resolution/Resolution: ""
-*sv.Resolution 180dpi/180dpi: ""
-*sv.Resolution 360dpi/360dpi: ""
-*sv.Resolution 720dpi/720dpi: ""
-*sv.Translation ColorModel/Färginställningar: ""
-*sv.ColorModel CMYK/CMYK: ""
-*sv.ColorModel Gray/Grayscale: ""
-*zh.Translation Manufacturer/Epson: ""
-*zh.Translation ModelName/Epson Stylus Photo Series: ""
-*zh.Translation ShortNickName/Epson Stylus Photo Series: ""
-*zh.Translation NickName/Epson Stylus Photo Series, 1.4: ""
-*zh.Translation PageSize/Page Size: ""
-*zh.PageSize Letter/Letter - 8.5x11in: ""
-*zh.PageSize Legal/Legal - 8.5x14in: ""
-*zh.PageSize A4/A4 - 210x297mm: ""
-*zh.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*zh.PageSize Letter/Letter - 8.5x11in: ""
-*zh.PageSize Legal/Legal - 8.5x14in: ""
-*zh.PageSize A4/A4 - 210x297mm: ""
-*zh.Translation Resolution/Resolution: ""
-*zh.Resolution 180dpi/180dpi: ""
-*zh.Resolution 360dpi/360dpi: ""
-*zh.Resolution 720dpi/720dpi: ""
-*zh.Translation ColorModel/色彩模式: ""
-*zh.ColorModel CMYK/CMYK: ""
-*zh.ColorModel Gray/Grayscale: ""
-*zh_TW.Translation Manufacturer/Epson: ""
-*zh_TW.Translation ModelName/Epson Stylus Photo Series: ""
-*zh_TW.Translation ShortNickName/Epson Stylus Photo Series: ""
-*zh_TW.Translation NickName/Epson Stylus Photo Series, 1.4: ""
-*zh_TW.Translation PageSize/Page Size: ""
-*zh_TW.PageSize Letter/Letter - 8.5x11in: ""
-*zh_TW.PageSize Legal/Legal - 8.5x14in: ""
-*zh_TW.PageSize A4/A4 - 210x297mm: ""
-*zh_TW.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*zh_TW.PageSize Letter/Letter - 8.5x11in: ""
-*zh_TW.PageSize Legal/Legal - 8.5x14in: ""
-*zh_TW.PageSize A4/A4 - 210x297mm: ""
-*zh_TW.Translation Resolution/Resolution: ""
-*zh_TW.Resolution 180dpi/180dpi: ""
-*zh_TW.Resolution 360dpi/360dpi: ""
-*zh_TW.Resolution 720dpi/720dpi: ""
-*zh_TW.Translation ColorModel/用灰色列印彩色: ""
-*zh_TW.ColorModel CMYK/CMYK: ""
-*zh_TW.ColorModel Gray/Grayscale: ""
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(1.05)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
-*Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
-*Font Bookman-Demi: Standard "(1.05)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
-*Font Bookman-Light: Standard "(1.05)" Standard ROM
-*Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
-*Font Courier: Standard "(1.05)" Standard ROM
-*Font Courier-Bold: Standard "(1.05)" Standard ROM
-*Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Courier-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica: Standard "(1.05)" Standard ROM
-*Font Helvetica-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
-*Font Palatino-Bold: Standard "(1.05)" Standard ROM
-*Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Palatino-Italic: Standard "(1.05)" Standard ROM
-*Font Palatino-Roman: Standard "(1.05)" Standard ROM
-*Font Symbol: Special "(001.005)" Special ROM
-*Font Times-Bold: Standard "(1.05)" Standard ROM
-*Font Times-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Times-Italic: Standard "(1.05)" Standard ROM
-*Font Times-Roman: Standard "(1.05)" Standard ROM
-*Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
-*Font ZapfDingbats: Special "(001.005)" Special ROM
-*% End of STPHOTO.PPD, 18988 bytes.
diff --git a/ppd/stphoto2.ppd b/ppd/stphoto2.ppd
deleted file mode 100644 (file)
index 734f356..0000000
+++ /dev/null
@@ -1,420 +0,0 @@
-*PPD-Adobe: "4.3"
-*% PPD file for New Stylus Photo Series with CUPS.
-*% Created by the CUPS PPD Compiler v1.2.4.
-*% Copyright 2007 by Apple Inc.
-*% Copyright 1997-2007 by Easy Software Products.
-*% 
-*% These coded instructions, statements, and computer programs are the
-*% property of Apple Inc. and are protected by Federal copyright
-*% law.  Distribution and use rights are outlined in the file "LICENSE.txt"
-*% which should have been included with this file.  If this file is
-*% file is missing or damaged, see the license at "http://www.cups.org/".
-*FormatVersion: "4.3"
-*FileVersion: "1.4"
-*LanguageVersion: English
-*LanguageEncoding: ISOLatin1
-*PCFileName: "STPHOTO2.PPD"
-*Product: "(ESP Ghostscript)"
-*Product: "(GPL Ghostscript)"
-*Manufacturer: "Epson"
-*ModelName: "Epson New Stylus Photo Series"
-*ShortNickName: "Epson New Stylus Photo Series"
-*NickName: "Epson New Stylus Photo Series, 1.4"
-*PSVersion: "(3010.000) 81504"
-*PSVersion: "(3010.000) 860"
-*LanguageLevel: "3"
-*ColorDevice: True
-*DefaultColorSpace: RGB
-*FileSystem: False
-*Throughput: "1"
-*LandscapeOrientation: Plus90
-*TTRasterizer: Type42
-*% Driver-defined attributes...
-*cupsVersion: 1.4
-*cupsModelNumber: 5
-*cupsManualCopies: True
-*cupsFilter: "application/vnd.cups-raster 50 rastertoepson"
-*cupsLanguages: "en da de es fi fr it ja ko nl no pt pt_BR sv zh zh_TW"
-*OpenUI *PageSize/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*PageSize FanFoldUS/Fanfold - 14.875x11in: "<</PageSize[1071 792]/ImagingBBox null>>setpagedevice"
-*PageSize Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageSize
-*OpenUI *PageRegion/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*PageRegion FanFoldUS/Fanfold - 14.875x11in: "<</PageSize[1071 792]/ImagingBBox null>>setpagedevice"
-*PageRegion Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
-*PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageRegion
-*DefaultImageableArea: Letter
-*ImageableArea Letter/Letter - 8.5x11in: "18.00 18.00 594.00 774.00"
-*ImageableArea Legal/Legal - 8.5x14in: "18.00 18.00 594.00 990.00"
-*ImageableArea A4/A4 - 210x297mm: "18.00 18.00 577.00 824.00"
-*ImageableArea FanFoldUS/Fanfold - 14.875x11in: "18.00 18.00 1053.00 774.00"
-*ImageableArea Letter/Letter - 8.5x11in: "8.60 39.60 603.40 766.49"
-*ImageableArea Legal/Legal - 8.5x14in: "8.60 39.60 603.40 982.49"
-*ImageableArea A4/A4 - 210x297mm: "8.60 39.60 586.40 816.49"
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/Letter - 8.5x11in: "612.00 792.00"
-*PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
-*PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
-*PaperDimension FanFoldUS/Fanfold - 14.875x11in: "1071.00 792.00"
-*PaperDimension Letter/Letter - 8.5x11in: "612.00 792.00"
-*PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
-*PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
-*MaxMediaWidth: "1080.00"
-*MaxMediaHeight: "86400.00"
-*HWMargins: 8.60 39.60 8.60 25.51
-*CustomPageSize True: "pop pop pop <</PageSize[5 -2 roll]/ImagingBBox null>>setpagedevice"
-*ParamCustomPageSize Width: 1 points 36.00 1080.00
-*ParamCustomPageSize Height: 2 points 36.00 86400.00
-*ParamCustomPageSize WidthOffset: 3 points 0 0
-*ParamCustomPageSize HeightOffset: 4 points 0 0
-*ParamCustomPageSize Orientation: 5 int 0 0
-*RequiresPageRegion All: True
-*OpenUI *Resolution: PickOne
-*OrderDependency: 10.0 AnySetup *Resolution
-*DefaultResolution: 360dpi
-*Resolution 180dpi: "<</HWResolution[180 180]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
-*Resolution 360dpi: "<</HWResolution[360 360]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
-*Resolution 720dpi: "<</HWResolution[720 720]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
-*CloseUI: *Resolution
-*OpenUI *ColorModel/Color Mode: PickOne
-*OrderDependency: 10.0 AnySetup *ColorModel
-*DefaultColorModel: CMYK
-*ColorModel CMYK: "<</cupsColorSpace -1/cupsColorOrder 1/cupsCompression 1>>setpagedevice"
-*ColorModel Gray/Grayscale: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 1>>setpagedevice"
-*CloseUI: *ColorModel
-*da.Translation Manufacturer/Epson: ""
-*da.Translation ModelName/Epson New Stylus Photo Series: ""
-*da.Translation ShortNickName/Epson New Stylus Photo Series: ""
-*da.Translation NickName/Epson New Stylus Photo Series, 1.4: ""
-*da.Translation PageSize/Media Size: ""
-*da.PageSize Letter/Letter - 8.5x11in: ""
-*da.PageSize Legal/Legal - 8.5x14in: ""
-*da.PageSize A4/A4 - 210x297mm: ""
-*da.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*da.PageSize Letter/Letter - 8.5x11in: ""
-*da.PageSize Legal/Legal - 8.5x14in: ""
-*da.PageSize A4/A4 - 210x297mm: ""
-*da.Translation Resolution/Resolution: ""
-*da.Resolution 180dpi/180dpi: ""
-*da.Resolution 360dpi/360dpi: ""
-*da.Resolution 720dpi/720dpi: ""
-*da.Translation ColorModel/Farveindstilling: ""
-*da.ColorModel CMYK/CMYK: ""
-*da.ColorModel Gray/Grayscale: ""
-*de.Translation Manufacturer/Epson: ""
-*de.Translation ModelName/Epson New Stylus Photo Series: ""
-*de.Translation ShortNickName/Epson New Stylus Photo Series: ""
-*de.Translation NickName/Epson New Stylus Photo Series, 1.4: ""
-*de.Translation PageSize/Media Size: ""
-*de.PageSize Letter/Letter - 8.5x11in: ""
-*de.PageSize Legal/Legal - 8.5x14in: ""
-*de.PageSize A4/A4 - 210x297mm: ""
-*de.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*de.PageSize Letter/Letter - 8.5x11in: ""
-*de.PageSize Legal/Legal - 8.5x14in: ""
-*de.PageSize A4/A4 - 210x297mm: ""
-*de.Translation Resolution/Resolution: ""
-*de.Resolution 180dpi/180dpi: ""
-*de.Resolution 360dpi/360dpi: ""
-*de.Resolution 720dpi/720dpi: ""
-*de.Translation ColorModel/Farbmodus: ""
-*de.ColorModel CMYK/CMYK: ""
-*de.ColorModel Gray/Grayscale: ""
-*es.Translation Manufacturer/Epson: ""
-*es.Translation ModelName/Epson New Stylus Photo Series: ""
-*es.Translation ShortNickName/Epson New Stylus Photo Series: ""
-*es.Translation NickName/Epson New Stylus Photo Series, 1.4: ""
-*es.Translation PageSize/Media Size: ""
-*es.PageSize Letter/Letter - 8.5x11in: ""
-*es.PageSize Legal/Legal - 8.5x14in: ""
-*es.PageSize A4/A4 - 210x297mm: ""
-*es.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*es.PageSize Letter/Letter - 8.5x11in: ""
-*es.PageSize Legal/Legal - 8.5x14in: ""
-*es.PageSize A4/A4 - 210x297mm: ""
-*es.Translation Resolution/Resolution: ""
-*es.Resolution 180dpi/180dpi: ""
-*es.Resolution 360dpi/360dpi: ""
-*es.Resolution 720dpi/720dpi: ""
-*es.Translation ColorModel/Modo de color: ""
-*es.ColorModel CMYK/CMYK: ""
-*es.ColorModel Gray/Grayscale: ""
-*fi.Translation Manufacturer/Epson: ""
-*fi.Translation ModelName/Epson New Stylus Photo Series: ""
-*fi.Translation ShortNickName/Epson New Stylus Photo Series: ""
-*fi.Translation NickName/Epson New Stylus Photo Series, 1.4: ""
-*fi.Translation PageSize/Media Size: ""
-*fi.PageSize Letter/Letter - 8.5x11in: ""
-*fi.PageSize Legal/Legal - 8.5x14in: ""
-*fi.PageSize A4/A4 - 210x297mm: ""
-*fi.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*fi.PageSize Letter/Letter - 8.5x11in: ""
-*fi.PageSize Legal/Legal - 8.5x14in: ""
-*fi.PageSize A4/A4 - 210x297mm: ""
-*fi.Translation Resolution/Resolution: ""
-*fi.Resolution 180dpi/180dpi: ""
-*fi.Resolution 360dpi/360dpi: ""
-*fi.Resolution 720dpi/720dpi: ""
-*fi.Translation ColorModel/Tulosta värit harmaasävyinä: ""
-*fi.ColorModel CMYK/CMYK: ""
-*fi.ColorModel Gray/Grayscale: ""
-*fr.Translation Manufacturer/Epson: ""
-*fr.Translation ModelName/Epson New Stylus Photo Series: ""
-*fr.Translation ShortNickName/Epson New Stylus Photo Series: ""
-*fr.Translation NickName/Epson New Stylus Photo Series, 1.4: ""
-*fr.Translation PageSize/Media Size: ""
-*fr.PageSize Letter/Letter - 8.5x11in: ""
-*fr.PageSize Legal/Legal - 8.5x14in: ""
-*fr.PageSize A4/A4 - 210x297mm: ""
-*fr.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*fr.PageSize Letter/Letter - 8.5x11in: ""
-*fr.PageSize Legal/Legal - 8.5x14in: ""
-*fr.PageSize A4/A4 - 210x297mm: ""
-*fr.Translation Resolution/Resolution: ""
-*fr.Resolution 180dpi/180dpi: ""
-*fr.Resolution 360dpi/360dpi: ""
-*fr.Resolution 720dpi/720dpi: ""
-*fr.Translation ColorModel/Mode couleur: ""
-*fr.ColorModel CMYK/CMYK: ""
-*fr.ColorModel Gray/Grayscale: ""
-*it.Translation Manufacturer/Epson: ""
-*it.Translation ModelName/Epson New Stylus Photo Series: ""
-*it.Translation ShortNickName/Epson New Stylus Photo Series: ""
-*it.Translation NickName/Epson New Stylus Photo Series, 1.4: ""
-*it.Translation PageSize/Media Size: ""
-*it.PageSize Letter/Letter - 8.5x11in: ""
-*it.PageSize Legal/Legal - 8.5x14in: ""
-*it.PageSize A4/A4 - 210x297mm: ""
-*it.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*it.PageSize Letter/Letter - 8.5x11in: ""
-*it.PageSize Legal/Legal - 8.5x14in: ""
-*it.PageSize A4/A4 - 210x297mm: ""
-*it.Translation Resolution/Resolution: ""
-*it.Resolution 180dpi/180dpi: ""
-*it.Resolution 360dpi/360dpi: ""
-*it.Resolution 720dpi/720dpi: ""
-*it.Translation ColorModel/Modo Colore: ""
-*it.ColorModel CMYK/CMYK: ""
-*it.ColorModel Gray/Grayscale: ""
-*ja.Translation Manufacturer/Epson: ""
-*ja.Translation ModelName/Epson New Stylus Photo Series: ""
-*ja.Translation ShortNickName/Epson New Stylus Photo Series: ""
-*ja.Translation NickName/Epson New Stylus Photo Series, 1.4: ""
-*ja.Translation PageSize/Media Size: ""
-*ja.PageSize Letter/Letter - 8.5x11in: ""
-*ja.PageSize Legal/Legal - 8.5x14in: ""
-*ja.PageSize A4/A4 - 210x297mm: ""
-*ja.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*ja.PageSize Letter/Letter - 8.5x11in: ""
-*ja.PageSize Legal/Legal - 8.5x14in: ""
-*ja.PageSize A4/A4 - 210x297mm: ""
-*ja.Translation Resolution/Resolution: ""
-*ja.Resolution 180dpi/180dpi: ""
-*ja.Resolution 360dpi/360dpi: ""
-*ja.Resolution 720dpi/720dpi: ""
-*ja.Translation ColorModel/カラー モデル: ""
-*ja.ColorModel CMYK/CMYK: ""
-*ja.ColorModel Gray/Grayscale: ""
-*ko.Translation Manufacturer/Epson: ""
-*ko.Translation ModelName/Epson New Stylus Photo Series: ""
-*ko.Translation ShortNickName/Epson New Stylus Photo Series: ""
-*ko.Translation NickName/Epson New Stylus Photo Series, 1.4: ""
-*ko.Translation PageSize/Page Size: ""
-*ko.PageSize Letter/Letter - 8.5x11in: ""
-*ko.PageSize Legal/Legal - 8.5x14in: ""
-*ko.PageSize A4/A4 - 210x297mm: ""
-*ko.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*ko.PageSize Letter/Letter - 8.5x11in: ""
-*ko.PageSize Legal/Legal - 8.5x14in: ""
-*ko.PageSize A4/A4 - 210x297mm: ""
-*ko.Translation Resolution/Resolution: ""
-*ko.Resolution 180dpi/180dpi: ""
-*ko.Resolution 360dpi/360dpi: ""
-*ko.Resolution 720dpi/720dpi: ""
-*ko.Translation ColorModel/컬러 모델: ""
-*ko.ColorModel CMYK/CMYK: ""
-*ko.ColorModel Gray/Grayscale: ""
-*nl.Translation Manufacturer/Epson: ""
-*nl.Translation ModelName/Epson New Stylus Photo Series: ""
-*nl.Translation ShortNickName/Epson New Stylus Photo Series: ""
-*nl.Translation NickName/Epson New Stylus Photo Series, 1.4: ""
-*nl.Translation PageSize/Media Size: ""
-*nl.PageSize Letter/Letter - 8.5x11in: ""
-*nl.PageSize Legal/Legal - 8.5x14in: ""
-*nl.PageSize A4/A4 - 210x297mm: ""
-*nl.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*nl.PageSize Letter/Letter - 8.5x11in: ""
-*nl.PageSize Legal/Legal - 8.5x14in: ""
-*nl.PageSize A4/A4 - 210x297mm: ""
-*nl.Translation Resolution/Resolution: ""
-*nl.Resolution 180dpi/180dpi: ""
-*nl.Resolution 360dpi/360dpi: ""
-*nl.Resolution 720dpi/720dpi: ""
-*nl.Translation ColorModel/Kleurenmodus: ""
-*nl.ColorModel CMYK/CMYK: ""
-*nl.ColorModel Gray/Grayscale: ""
-*no.Translation Manufacturer/Epson: ""
-*no.Translation ModelName/Epson New Stylus Photo Series: ""
-*no.Translation ShortNickName/Epson New Stylus Photo Series: ""
-*no.Translation NickName/Epson New Stylus Photo Series, 1.4: ""
-*no.Translation PageSize/Media Size: ""
-*no.PageSize Letter/Letter - 8.5x11in: ""
-*no.PageSize Legal/Legal - 8.5x14in: ""
-*no.PageSize A4/A4 - 210x297mm: ""
-*no.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*no.PageSize Letter/Letter - 8.5x11in: ""
-*no.PageSize Legal/Legal - 8.5x14in: ""
-*no.PageSize A4/A4 - 210x297mm: ""
-*no.Translation Resolution/Resolution: ""
-*no.Resolution 180dpi/180dpi: ""
-*no.Resolution 360dpi/360dpi: ""
-*no.Resolution 720dpi/720dpi: ""
-*no.Translation ColorModel/Fargemodus: ""
-*no.ColorModel CMYK/CMYK: ""
-*no.ColorModel Gray/Grayscale: ""
-*pt.Translation Manufacturer/Epson: ""
-*pt.Translation ModelName/Epson New Stylus Photo Series: ""
-*pt.Translation ShortNickName/Epson New Stylus Photo Series: ""
-*pt.Translation NickName/Epson New Stylus Photo Series, 1.4: ""
-*pt.Translation PageSize/Media Size: ""
-*pt.PageSize Letter/Letter - 8.5x11in: ""
-*pt.PageSize Legal/Legal - 8.5x14in: ""
-*pt.PageSize A4/A4 - 210x297mm: ""
-*pt.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*pt.PageSize Letter/Letter - 8.5x11in: ""
-*pt.PageSize Legal/Legal - 8.5x14in: ""
-*pt.PageSize A4/A4 - 210x297mm: ""
-*pt.Translation Resolution/Resolution: ""
-*pt.Resolution 180dpi/180dpi: ""
-*pt.Resolution 360dpi/360dpi: ""
-*pt.Resolution 720dpi/720dpi: ""
-*pt.Translation ColorModel/Modo Cor: ""
-*pt.ColorModel CMYK/CMYK: ""
-*pt.ColorModel Gray/Grayscale: ""
-*pt_BR.Translation Manufacturer/Epson: ""
-*pt_BR.Translation ModelName/Epson New Stylus Photo Series: ""
-*pt_BR.Translation ShortNickName/Epson New Stylus Photo Series: ""
-*pt_BR.Translation NickName/Epson New Stylus Photo Series, 1.4: ""
-*pt_BR.Translation PageSize/Media Size: ""
-*pt_BR.PageSize Letter/Letter - 8.5x11in: ""
-*pt_BR.PageSize Legal/Legal - 8.5x14in: ""
-*pt_BR.PageSize A4/A4 - 210x297mm: ""
-*pt_BR.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*pt_BR.PageSize Letter/Letter - 8.5x11in: ""
-*pt_BR.PageSize Legal/Legal - 8.5x14in: ""
-*pt_BR.PageSize A4/A4 - 210x297mm: ""
-*pt_BR.Translation Resolution/Resolution: ""
-*pt_BR.Resolution 180dpi/180dpi: ""
-*pt_BR.Resolution 360dpi/360dpi: ""
-*pt_BR.Resolution 720dpi/720dpi: ""
-*pt_BR.Translation ColorModel/Modo Cor: ""
-*pt_BR.ColorModel CMYK/CMYK: ""
-*pt_BR.ColorModel Gray/Grayscale: ""
-*sv.Translation Manufacturer/Epson: ""
-*sv.Translation ModelName/Epson New Stylus Photo Series: ""
-*sv.Translation ShortNickName/Epson New Stylus Photo Series: ""
-*sv.Translation NickName/Epson New Stylus Photo Series, 1.4: ""
-*sv.Translation PageSize/Media Size: ""
-*sv.PageSize Letter/Letter - 8.5x11in: ""
-*sv.PageSize Legal/Legal - 8.5x14in: ""
-*sv.PageSize A4/A4 - 210x297mm: ""
-*sv.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*sv.PageSize Letter/Letter - 8.5x11in: ""
-*sv.PageSize Legal/Legal - 8.5x14in: ""
-*sv.PageSize A4/A4 - 210x297mm: ""
-*sv.Translation Resolution/Resolution: ""
-*sv.Resolution 180dpi/180dpi: ""
-*sv.Resolution 360dpi/360dpi: ""
-*sv.Resolution 720dpi/720dpi: ""
-*sv.Translation ColorModel/Färginställningar: ""
-*sv.ColorModel CMYK/CMYK: ""
-*sv.ColorModel Gray/Grayscale: ""
-*zh.Translation Manufacturer/Epson: ""
-*zh.Translation ModelName/Epson New Stylus Photo Series: ""
-*zh.Translation ShortNickName/Epson New Stylus Photo Series: ""
-*zh.Translation NickName/Epson New Stylus Photo Series, 1.4: ""
-*zh.Translation PageSize/Page Size: ""
-*zh.PageSize Letter/Letter - 8.5x11in: ""
-*zh.PageSize Legal/Legal - 8.5x14in: ""
-*zh.PageSize A4/A4 - 210x297mm: ""
-*zh.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*zh.PageSize Letter/Letter - 8.5x11in: ""
-*zh.PageSize Legal/Legal - 8.5x14in: ""
-*zh.PageSize A4/A4 - 210x297mm: ""
-*zh.Translation Resolution/Resolution: ""
-*zh.Resolution 180dpi/180dpi: ""
-*zh.Resolution 360dpi/360dpi: ""
-*zh.Resolution 720dpi/720dpi: ""
-*zh.Translation ColorModel/色彩模式: ""
-*zh.ColorModel CMYK/CMYK: ""
-*zh.ColorModel Gray/Grayscale: ""
-*zh_TW.Translation Manufacturer/Epson: ""
-*zh_TW.Translation ModelName/Epson New Stylus Photo Series: ""
-*zh_TW.Translation ShortNickName/Epson New Stylus Photo Series: ""
-*zh_TW.Translation NickName/Epson New Stylus Photo Series, 1.4: ""
-*zh_TW.Translation PageSize/Page Size: ""
-*zh_TW.PageSize Letter/Letter - 8.5x11in: ""
-*zh_TW.PageSize Legal/Legal - 8.5x14in: ""
-*zh_TW.PageSize A4/A4 - 210x297mm: ""
-*zh_TW.PageSize FanFoldUS/Fanfold - 14.875x11in: ""
-*zh_TW.PageSize Letter/Letter - 8.5x11in: ""
-*zh_TW.PageSize Legal/Legal - 8.5x14in: ""
-*zh_TW.PageSize A4/A4 - 210x297mm: ""
-*zh_TW.Translation Resolution/Resolution: ""
-*zh_TW.Resolution 180dpi/180dpi: ""
-*zh_TW.Resolution 360dpi/360dpi: ""
-*zh_TW.Resolution 720dpi/720dpi: ""
-*zh_TW.Translation ColorModel/用灰色列印彩色: ""
-*zh_TW.ColorModel CMYK/CMYK: ""
-*zh_TW.ColorModel Gray/Grayscale: ""
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(1.05)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
-*Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
-*Font Bookman-Demi: Standard "(1.05)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
-*Font Bookman-Light: Standard "(1.05)" Standard ROM
-*Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
-*Font Courier: Standard "(1.05)" Standard ROM
-*Font Courier-Bold: Standard "(1.05)" Standard ROM
-*Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Courier-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica: Standard "(1.05)" Standard ROM
-*Font Helvetica-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
-*Font Palatino-Bold: Standard "(1.05)" Standard ROM
-*Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Palatino-Italic: Standard "(1.05)" Standard ROM
-*Font Palatino-Roman: Standard "(1.05)" Standard ROM
-*Font Symbol: Special "(001.005)" Special ROM
-*Font Times-Bold: Standard "(1.05)" Standard ROM
-*Font Times-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Times-Italic: Standard "(1.05)" Standard ROM
-*Font Times-Roman: Standard "(1.05)" Standard ROM
-*Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
-*Font ZapfDingbats: Special "(001.005)" Special ROM
-*% End of STPHOTO2.PPD, 19186 bytes.
diff --git a/ppd/zebra.ppd b/ppd/zebra.ppd
deleted file mode 100644 (file)
index 426ec12..0000000
+++ /dev/null
@@ -1,3975 +0,0 @@
-*PPD-Adobe: "4.3"
-*% PPD file for ZPL Label Printer with CUPS.
-*% Created by the CUPS PPD Compiler v1.2.4.
-*% Copyright 2007 by Apple Inc.
-*% Copyright 1997-2007 by Easy Software Products.
-*% 
-*% These coded instructions, statements, and computer programs are the
-*% property of Apple Inc. and are protected by Federal copyright
-*% law.  Distribution and use rights are outlined in the file "LICENSE.txt"
-*% which should have been included with this file.  If this file is
-*% file is missing or damaged, see the license at "http://www.cups.org/".
-*FormatVersion: "4.3"
-*FileVersion: "1.4"
-*LanguageVersion: English
-*LanguageEncoding: ISOLatin1
-*PCFileName: "ZEBRA.PPD"
-*Product: "(ESP Ghostscript)"
-*Product: "(GPL Ghostscript)"
-*Manufacturer: "Zebra"
-*ModelName: "Zebra ZPL Label Printer"
-*ShortNickName: "Zebra ZPL Label Printer"
-*NickName: "Zebra ZPL Label Printer, 1.4"
-*PSVersion: "(3010.000) 81504"
-*PSVersion: "(3010.000) 860"
-*LanguageLevel: "3"
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*FileSystem: False
-*Throughput: "8"
-*LandscapeOrientation: Plus90
-*TTRasterizer: Type42
-*% Driver-defined attributes...
-*cupsVersion: 1.4
-*cupsModelNumber: 18
-*cupsManualCopies: False
-*cupsFilter: "application/vnd.cups-raster 50 rastertolabel"
-*cupsLanguages: "en da de es fi fr it ja ko nl no pt pt_BR sv zh zh_TW"
-*OpenUI *PageSize/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageSize
-*DefaultPageSize: w288h360
-*PageSize w90h18/1.25x0.25": "<</PageSize[90 18]/ImagingBBox null>>setpagedevice"
-*PageSize w90h162/1.25x2.25": "<</PageSize[90 162]/ImagingBBox null>>setpagedevice"
-*PageSize w108h18/1.50x0.25": "<</PageSize[108 18]/ImagingBBox null>>setpagedevice"
-*PageSize w108h36/1.50x0.50": "<</PageSize[108 36]/ImagingBBox null>>setpagedevice"
-*PageSize w108h72/1.50x1.00": "<</PageSize[108 72]/ImagingBBox null>>setpagedevice"
-*PageSize w108h144/1.50x2.00": "<</PageSize[108 144]/ImagingBBox null>>setpagedevice"
-*PageSize w144h26/2.00x0.37": "<</PageSize[144 26]/ImagingBBox null>>setpagedevice"
-*PageSize w144h36/2.00x0.50": "<</PageSize[144 36]/ImagingBBox null>>setpagedevice"
-*PageSize w144h72/2.00x1.00": "<</PageSize[144 72]/ImagingBBox null>>setpagedevice"
-*PageSize w144h90/2.00x1.25": "<</PageSize[144 90]/ImagingBBox null>>setpagedevice"
-*PageSize w144h288/2.00x4.00": "<</PageSize[144 288]/ImagingBBox null>>setpagedevice"
-*PageSize w144h396/2.00x5.50": "<</PageSize[144 396]/ImagingBBox null>>setpagedevice"
-*PageSize w162h36/2.25x0.50": "<</PageSize[162 36]/ImagingBBox null>>setpagedevice"
-*PageSize w162h90/2.25x1.25": "<</PageSize[162 90]/ImagingBBox null>>setpagedevice"
-*PageSize w162h288/2.25x4.00": "<</PageSize[162 288]/ImagingBBox null>>setpagedevice"
-*PageSize w162h396/2.25x5.50": "<</PageSize[162 396]/ImagingBBox null>>setpagedevice"
-*PageSize w171h396/2.38x5.50": "<</PageSize[171 396]/ImagingBBox null>>setpagedevice"
-*PageSize w180h72/2.50x1.00": "<</PageSize[180 72]/ImagingBBox null>>setpagedevice"
-*PageSize w180h144/2.50x2.00": "<</PageSize[180 144]/ImagingBBox null>>setpagedevice"
-*PageSize w198h90/2.75x1.25": "<</PageSize[198 90]/ImagingBBox null>>setpagedevice"
-*PageSize w216h72/3.00x1.00": "<</PageSize[216 72]/ImagingBBox null>>setpagedevice"
-*PageSize w216h90/3.00x1.25": "<</PageSize[216 90]/ImagingBBox null>>setpagedevice"
-*PageSize w216h144/3.00x2.00": "<</PageSize[216 144]/ImagingBBox null>>setpagedevice"
-*PageSize w216h216/3.00x3.00": "<</PageSize[216 216]/ImagingBBox null>>setpagedevice"
-*PageSize w216h360/3.00x5.00": "<</PageSize[216 360]/ImagingBBox null>>setpagedevice"
-*PageSize w234h144/3.25x2.00": "<</PageSize[234 144]/ImagingBBox null>>setpagedevice"
-*PageSize w234h360/3.25x5.00": "<</PageSize[234 360]/ImagingBBox null>>setpagedevice"
-*PageSize w234h396/3.25x5.50": "<</PageSize[234 396]/ImagingBBox null>>setpagedevice"
-*PageSize w234h419/3.25x5.83": "<</PageSize[234 419]/ImagingBBox null>>setpagedevice"
-*PageSize w234h563/3.25x7.83": "<</PageSize[234 563]/ImagingBBox null>>setpagedevice"
-*PageSize w252h72/3.50x1.00": "<</PageSize[252 72]/ImagingBBox null>>setpagedevice"
-*PageSize w288h72/4.00x1.00": "<</PageSize[288 72]/ImagingBBox null>>setpagedevice"
-*PageSize w288h144/4.00x2.00": "<</PageSize[288 144]/ImagingBBox null>>setpagedevice"
-*PageSize w288h180/4.00x2.50": "<</PageSize[288 180]/ImagingBBox null>>setpagedevice"
-*PageSize w288h216/4.00x3.00": "<</PageSize[288 216]/ImagingBBox null>>setpagedevice"
-*PageSize w288h288/4.00x4.00": "<</PageSize[288 288]/ImagingBBox null>>setpagedevice"
-*PageSize w288h360/4.00x5.00": "<</PageSize[288 360]/ImagingBBox null>>setpagedevice"
-*PageSize w288h432/4.00x6.00": "<</PageSize[288 432]/ImagingBBox null>>setpagedevice"
-*PageSize w288h468/4.00x6.50": "<</PageSize[288 468]/ImagingBBox null>>setpagedevice"
-*PageSize w288h936/4.00x13.00": "<</PageSize[288 936]/ImagingBBox null>>setpagedevice"
-*PageSize w432h72/6.00x1.00": "<</PageSize[432 72]/ImagingBBox null>>setpagedevice"
-*PageSize w432h144/6.00x2.00": "<</PageSize[432 144]/ImagingBBox null>>setpagedevice"
-*PageSize w432h216/6.00x3.00": "<</PageSize[432 216]/ImagingBBox null>>setpagedevice"
-*PageSize w432h288/6.00x4.00": "<</PageSize[432 288]/ImagingBBox null>>setpagedevice"
-*PageSize w432h360/6.00x5.00": "<</PageSize[432 360]/ImagingBBox null>>setpagedevice"
-*PageSize w432h432/6.00x6.00": "<</PageSize[432 432]/ImagingBBox null>>setpagedevice"
-*PageSize w432h468/6.00x6.50": "<</PageSize[432 468]/ImagingBBox null>>setpagedevice"
-*PageSize w576h72/8.00x1.00": "<</PageSize[576 72]/ImagingBBox null>>setpagedevice"
-*PageSize w576h144/8.00x2.00": "<</PageSize[576 144]/ImagingBBox null>>setpagedevice"
-*PageSize w576h216/8.00x3.00": "<</PageSize[576 216]/ImagingBBox null>>setpagedevice"
-*PageSize w576h288/8.00x4.00": "<</PageSize[576 288]/ImagingBBox null>>setpagedevice"
-*PageSize w576h360/8.00x5.00": "<</PageSize[576 360]/ImagingBBox null>>setpagedevice"
-*PageSize w576h432/8.00x6.00": "<</PageSize[576 432]/ImagingBBox null>>setpagedevice"
-*PageSize w576h468/8.00x6.50": "<</PageSize[576 468]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageSize
-*OpenUI *PageRegion/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageRegion
-*DefaultPageRegion: w288h360
-*PageRegion w90h18/1.25x0.25": "<</PageSize[90 18]/ImagingBBox null>>setpagedevice"
-*PageRegion w90h162/1.25x2.25": "<</PageSize[90 162]/ImagingBBox null>>setpagedevice"
-*PageRegion w108h18/1.50x0.25": "<</PageSize[108 18]/ImagingBBox null>>setpagedevice"
-*PageRegion w108h36/1.50x0.50": "<</PageSize[108 36]/ImagingBBox null>>setpagedevice"
-*PageRegion w108h72/1.50x1.00": "<</PageSize[108 72]/ImagingBBox null>>setpagedevice"
-*PageRegion w108h144/1.50x2.00": "<</PageSize[108 144]/ImagingBBox null>>setpagedevice"
-*PageRegion w144h26/2.00x0.37": "<</PageSize[144 26]/ImagingBBox null>>setpagedevice"
-*PageRegion w144h36/2.00x0.50": "<</PageSize[144 36]/ImagingBBox null>>setpagedevice"
-*PageRegion w144h72/2.00x1.00": "<</PageSize[144 72]/ImagingBBox null>>setpagedevice"
-*PageRegion w144h90/2.00x1.25": "<</PageSize[144 90]/ImagingBBox null>>setpagedevice"
-*PageRegion w144h288/2.00x4.00": "<</PageSize[144 288]/ImagingBBox null>>setpagedevice"
-*PageRegion w144h396/2.00x5.50": "<</PageSize[144 396]/ImagingBBox null>>setpagedevice"
-*PageRegion w162h36/2.25x0.50": "<</PageSize[162 36]/ImagingBBox null>>setpagedevice"
-*PageRegion w162h90/2.25x1.25": "<</PageSize[162 90]/ImagingBBox null>>setpagedevice"
-*PageRegion w162h288/2.25x4.00": "<</PageSize[162 288]/ImagingBBox null>>setpagedevice"
-*PageRegion w162h396/2.25x5.50": "<</PageSize[162 396]/ImagingBBox null>>setpagedevice"
-*PageRegion w171h396/2.38x5.50": "<</PageSize[171 396]/ImagingBBox null>>setpagedevice"
-*PageRegion w180h72/2.50x1.00": "<</PageSize[180 72]/ImagingBBox null>>setpagedevice"
-*PageRegion w180h144/2.50x2.00": "<</PageSize[180 144]/ImagingBBox null>>setpagedevice"
-*PageRegion w198h90/2.75x1.25": "<</PageSize[198 90]/ImagingBBox null>>setpagedevice"
-*PageRegion w216h72/3.00x1.00": "<</PageSize[216 72]/ImagingBBox null>>setpagedevice"
-*PageRegion w216h90/3.00x1.25": "<</PageSize[216 90]/ImagingBBox null>>setpagedevice"
-*PageRegion w216h144/3.00x2.00": "<</PageSize[216 144]/ImagingBBox null>>setpagedevice"
-*PageRegion w216h216/3.00x3.00": "<</PageSize[216 216]/ImagingBBox null>>setpagedevice"
-*PageRegion w216h360/3.00x5.00": "<</PageSize[216 360]/ImagingBBox null>>setpagedevice"
-*PageRegion w234h144/3.25x2.00": "<</PageSize[234 144]/ImagingBBox null>>setpagedevice"
-*PageRegion w234h360/3.25x5.00": "<</PageSize[234 360]/ImagingBBox null>>setpagedevice"
-*PageRegion w234h396/3.25x5.50": "<</PageSize[234 396]/ImagingBBox null>>setpagedevice"
-*PageRegion w234h419/3.25x5.83": "<</PageSize[234 419]/ImagingBBox null>>setpagedevice"
-*PageRegion w234h563/3.25x7.83": "<</PageSize[234 563]/ImagingBBox null>>setpagedevice"
-*PageRegion w252h72/3.50x1.00": "<</PageSize[252 72]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h72/4.00x1.00": "<</PageSize[288 72]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h144/4.00x2.00": "<</PageSize[288 144]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h180/4.00x2.50": "<</PageSize[288 180]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h216/4.00x3.00": "<</PageSize[288 216]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h288/4.00x4.00": "<</PageSize[288 288]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h360/4.00x5.00": "<</PageSize[288 360]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h432/4.00x6.00": "<</PageSize[288 432]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h468/4.00x6.50": "<</PageSize[288 468]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h936/4.00x13.00": "<</PageSize[288 936]/ImagingBBox null>>setpagedevice"
-*PageRegion w432h72/6.00x1.00": "<</PageSize[432 72]/ImagingBBox null>>setpagedevice"
-*PageRegion w432h144/6.00x2.00": "<</PageSize[432 144]/ImagingBBox null>>setpagedevice"
-*PageRegion w432h216/6.00x3.00": "<</PageSize[432 216]/ImagingBBox null>>setpagedevice"
-*PageRegion w432h288/6.00x4.00": "<</PageSize[432 288]/ImagingBBox null>>setpagedevice"
-*PageRegion w432h360/6.00x5.00": "<</PageSize[432 360]/ImagingBBox null>>setpagedevice"
-*PageRegion w432h432/6.00x6.00": "<</PageSize[432 432]/ImagingBBox null>>setpagedevice"
-*PageRegion w432h468/6.00x6.50": "<</PageSize[432 468]/ImagingBBox null>>setpagedevice"
-*PageRegion w576h72/8.00x1.00": "<</PageSize[576 72]/ImagingBBox null>>setpagedevice"
-*PageRegion w576h144/8.00x2.00": "<</PageSize[576 144]/ImagingBBox null>>setpagedevice"
-*PageRegion w576h216/8.00x3.00": "<</PageSize[576 216]/ImagingBBox null>>setpagedevice"
-*PageRegion w576h288/8.00x4.00": "<</PageSize[576 288]/ImagingBBox null>>setpagedevice"
-*PageRegion w576h360/8.00x5.00": "<</PageSize[576 360]/ImagingBBox null>>setpagedevice"
-*PageRegion w576h432/8.00x6.00": "<</PageSize[576 432]/ImagingBBox null>>setpagedevice"
-*PageRegion w576h468/8.00x6.50": "<</PageSize[576 468]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageRegion
-*DefaultImageableArea: w288h360
-*ImageableArea w90h18/1.25x0.25": "0.00 0.00 90.00 18.00"
-*ImageableArea w90h162/1.25x2.25": "0.00 0.00 90.00 162.00"
-*ImageableArea w108h18/1.50x0.25": "0.00 0.00 108.00 18.00"
-*ImageableArea w108h36/1.50x0.50": "0.00 0.00 108.00 36.00"
-*ImageableArea w108h72/1.50x1.00": "0.00 0.00 108.00 72.00"
-*ImageableArea w108h144/1.50x2.00": "0.00 0.00 108.00 144.00"
-*ImageableArea w144h26/2.00x0.37": "0.00 0.00 144.00 26.00"
-*ImageableArea w144h36/2.00x0.50": "0.00 0.00 144.00 36.00"
-*ImageableArea w144h72/2.00x1.00": "0.00 0.00 144.00 72.00"
-*ImageableArea w144h90/2.00x1.25": "0.00 0.00 144.00 90.00"
-*ImageableArea w144h288/2.00x4.00": "0.00 0.00 144.00 288.00"
-*ImageableArea w144h396/2.00x5.50": "0.00 0.00 144.00 396.00"
-*ImageableArea w162h36/2.25x0.50": "0.00 0.00 162.00 36.00"
-*ImageableArea w162h90/2.25x1.25": "0.00 0.00 162.00 90.00"
-*ImageableArea w162h288/2.25x4.00": "0.00 0.00 162.00 288.00"
-*ImageableArea w162h396/2.25x5.50": "0.00 0.00 162.00 396.00"
-*ImageableArea w171h396/2.38x5.50": "0.00 0.00 171.00 396.00"
-*ImageableArea w180h72/2.50x1.00": "0.00 0.00 180.00 72.00"
-*ImageableArea w180h144/2.50x2.00": "0.00 0.00 180.00 144.00"
-*ImageableArea w198h90/2.75x1.25": "0.00 0.00 198.00 90.00"
-*ImageableArea w216h72/3.00x1.00": "0.00 0.00 216.00 72.00"
-*ImageableArea w216h90/3.00x1.25": "0.00 0.00 216.00 90.00"
-*ImageableArea w216h144/3.00x2.00": "0.00 0.00 216.00 144.00"
-*ImageableArea w216h216/3.00x3.00": "0.00 0.00 216.00 216.00"
-*ImageableArea w216h360/3.00x5.00": "0.00 0.00 216.00 360.00"
-*ImageableArea w234h144/3.25x2.00": "0.00 0.00 234.00 144.00"
-*ImageableArea w234h360/3.25x5.00": "0.00 0.00 234.00 360.00"
-*ImageableArea w234h396/3.25x5.50": "0.00 0.00 234.00 396.00"
-*ImageableArea w234h419/3.25x5.83": "0.00 0.00 234.00 419.00"
-*ImageableArea w234h563/3.25x7.83": "0.00 0.00 234.00 563.00"
-*ImageableArea w252h72/3.50x1.00": "0.00 0.00 252.00 72.00"
-*ImageableArea w288h72/4.00x1.00": "0.00 0.00 288.00 72.00"
-*ImageableArea w288h144/4.00x2.00": "0.00 0.00 288.00 144.00"
-*ImageableArea w288h180/4.00x2.50": "0.00 0.00 288.00 180.00"
-*ImageableArea w288h216/4.00x3.00": "0.00 0.00 288.00 216.00"
-*ImageableArea w288h288/4.00x4.00": "0.00 0.00 288.00 288.00"
-*ImageableArea w288h360/4.00x5.00": "0.00 0.00 288.00 360.00"
-*ImageableArea w288h432/4.00x6.00": "0.00 0.00 288.00 432.00"
-*ImageableArea w288h468/4.00x6.50": "0.00 0.00 288.00 468.00"
-*ImageableArea w288h936/4.00x13.00": "0.00 0.00 288.00 936.00"
-*ImageableArea w432h72/6.00x1.00": "0.00 0.00 432.00 72.00"
-*ImageableArea w432h144/6.00x2.00": "0.00 0.00 432.00 144.00"
-*ImageableArea w432h216/6.00x3.00": "0.00 0.00 432.00 216.00"
-*ImageableArea w432h288/6.00x4.00": "0.00 0.00 432.00 288.00"
-*ImageableArea w432h360/6.00x5.00": "0.00 0.00 432.00 360.00"
-*ImageableArea w432h432/6.00x6.00": "0.00 0.00 432.00 432.00"
-*ImageableArea w432h468/6.00x6.50": "0.00 0.00 432.00 468.00"
-*ImageableArea w576h72/8.00x1.00": "0.00 0.00 576.00 72.00"
-*ImageableArea w576h144/8.00x2.00": "0.00 0.00 576.00 144.00"
-*ImageableArea w576h216/8.00x3.00": "0.00 0.00 576.00 216.00"
-*ImageableArea w576h288/8.00x4.00": "0.00 0.00 576.00 288.00"
-*ImageableArea w576h360/8.00x5.00": "0.00 0.00 576.00 360.00"
-*ImageableArea w576h432/8.00x6.00": "0.00 0.00 576.00 432.00"
-*ImageableArea w576h468/8.00x6.50": "0.00 0.00 576.00 468.00"
-*DefaultPaperDimension: w288h360
-*PaperDimension w90h18/1.25x0.25": "90.00 18.00"
-*PaperDimension w90h162/1.25x2.25": "90.00 162.00"
-*PaperDimension w108h18/1.50x0.25": "108.00 18.00"
-*PaperDimension w108h36/1.50x0.50": "108.00 36.00"
-*PaperDimension w108h72/1.50x1.00": "108.00 72.00"
-*PaperDimension w108h144/1.50x2.00": "108.00 144.00"
-*PaperDimension w144h26/2.00x0.37": "144.00 26.00"
-*PaperDimension w144h36/2.00x0.50": "144.00 36.00"
-*PaperDimension w144h72/2.00x1.00": "144.00 72.00"
-*PaperDimension w144h90/2.00x1.25": "144.00 90.00"
-*PaperDimension w144h288/2.00x4.00": "144.00 288.00"
-*PaperDimension w144h396/2.00x5.50": "144.00 396.00"
-*PaperDimension w162h36/2.25x0.50": "162.00 36.00"
-*PaperDimension w162h90/2.25x1.25": "162.00 90.00"
-*PaperDimension w162h288/2.25x4.00": "162.00 288.00"
-*PaperDimension w162h396/2.25x5.50": "162.00 396.00"
-*PaperDimension w171h396/2.38x5.50": "171.00 396.00"
-*PaperDimension w180h72/2.50x1.00": "180.00 72.00"
-*PaperDimension w180h144/2.50x2.00": "180.00 144.00"
-*PaperDimension w198h90/2.75x1.25": "198.00 90.00"
-*PaperDimension w216h72/3.00x1.00": "216.00 72.00"
-*PaperDimension w216h90/3.00x1.25": "216.00 90.00"
-*PaperDimension w216h144/3.00x2.00": "216.00 144.00"
-*PaperDimension w216h216/3.00x3.00": "216.00 216.00"
-*PaperDimension w216h360/3.00x5.00": "216.00 360.00"
-*PaperDimension w234h144/3.25x2.00": "234.00 144.00"
-*PaperDimension w234h360/3.25x5.00": "234.00 360.00"
-*PaperDimension w234h396/3.25x5.50": "234.00 396.00"
-*PaperDimension w234h419/3.25x5.83": "234.00 419.00"
-*PaperDimension w234h563/3.25x7.83": "234.00 563.00"
-*PaperDimension w252h72/3.50x1.00": "252.00 72.00"
-*PaperDimension w288h72/4.00x1.00": "288.00 72.00"
-*PaperDimension w288h144/4.00x2.00": "288.00 144.00"
-*PaperDimension w288h180/4.00x2.50": "288.00 180.00"
-*PaperDimension w288h216/4.00x3.00": "288.00 216.00"
-*PaperDimension w288h288/4.00x4.00": "288.00 288.00"
-*PaperDimension w288h360/4.00x5.00": "288.00 360.00"
-*PaperDimension w288h432/4.00x6.00": "288.00 432.00"
-*PaperDimension w288h468/4.00x6.50": "288.00 468.00"
-*PaperDimension w288h936/4.00x13.00": "288.00 936.00"
-*PaperDimension w432h72/6.00x1.00": "432.00 72.00"
-*PaperDimension w432h144/6.00x2.00": "432.00 144.00"
-*PaperDimension w432h216/6.00x3.00": "432.00 216.00"
-*PaperDimension w432h288/6.00x4.00": "432.00 288.00"
-*PaperDimension w432h360/6.00x5.00": "432.00 360.00"
-*PaperDimension w432h432/6.00x6.00": "432.00 432.00"
-*PaperDimension w432h468/6.00x6.50": "432.00 468.00"
-*PaperDimension w576h72/8.00x1.00": "576.00 72.00"
-*PaperDimension w576h144/8.00x2.00": "576.00 144.00"
-*PaperDimension w576h216/8.00x3.00": "576.00 216.00"
-*PaperDimension w576h288/8.00x4.00": "576.00 288.00"
-*PaperDimension w576h360/8.00x5.00": "576.00 360.00"
-*PaperDimension w576h432/8.00x6.00": "576.00 432.00"
-*PaperDimension w576h468/8.00x6.50": "576.00 468.00"
-*MaxMediaWidth: "576.00"
-*MaxMediaHeight: "3600.00"
-*HWMargins: 0.00 0.00 0.00 0.00
-*CustomPageSize True: "pop pop pop <</PageSize[5 -2 roll]/ImagingBBox null>>setpagedevice"
-*ParamCustomPageSize Width: 1 points 36.00 576.00
-*ParamCustomPageSize Height: 2 points 36.00 3600.00
-*ParamCustomPageSize WidthOffset: 3 points 0 0
-*ParamCustomPageSize HeightOffset: 4 points 0 0
-*ParamCustomPageSize Orientation: 5 int 0 0
-*RequiresPageRegion All: True
-*OpenUI *Resolution: PickOne
-*OrderDependency: 10.0 AnySetup *Resolution
-*DefaultResolution: 203dpi
-*Resolution 203dpi: "<</HWResolution[203 203]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*Resolution 300dpi: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*Resolution 600dpi: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*CloseUI: *Resolution
-*OpenUI *zeMediaTracking/Media Tracking: PickOne
-*OrderDependency: 20.0 AnySetup *zeMediaTracking
-*DefaultzeMediaTracking: Web
-*zeMediaTracking Continuous: ""
-*zeMediaTracking Web/Non-continuous (Web sensing): ""
-*zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*CloseUI: *zeMediaTracking
-*OpenUI *MediaType/Media Type: PickOne
-*OrderDependency: 20.0 AnySetup *MediaType
-*DefaultMediaType: Saved
-*MediaType Saved/Printer Default: ""
-*MediaType Thermal/Thermal Transfer Media: "<</MediaType(Thermal)>>setpagedevice"
-*MediaType Direct/Direct Thermal Media: "<</MediaType(Direct)>>setpagedevice"
-*CloseUI: *MediaType
-*OpenGroup: PrinterSettings/Printer Settings
-*OpenUI *Darkness: PickOne
-*OrderDependency: 20.0 AnySetup *Darkness
-*DefaultDarkness: -1
-*Darkness -1/Printer Default: "<</cupsCompression -1>>setpagedevice"
-*Darkness 1: "<</cupsCompression 4>>setpagedevice"
-*Darkness 2: "<</cupsCompression 7>>setpagedevice"
-*Darkness 3: "<</cupsCompression 10>>setpagedevice"
-*Darkness 4: "<</cupsCompression 14>>setpagedevice"
-*Darkness 5: "<</cupsCompression 17>>setpagedevice"
-*Darkness 6: "<</cupsCompression 20>>setpagedevice"
-*Darkness 7: "<</cupsCompression 24>>setpagedevice"
-*Darkness 8: "<</cupsCompression 27>>setpagedevice"
-*Darkness 9: "<</cupsCompression 30>>setpagedevice"
-*Darkness 10: "<</cupsCompression 34>>setpagedevice"
-*Darkness 11: "<</cupsCompression 37>>setpagedevice"
-*Darkness 12: "<</cupsCompression 40>>setpagedevice"
-*Darkness 13: "<</cupsCompression 44>>setpagedevice"
-*Darkness 14: "<</cupsCompression 47>>setpagedevice"
-*Darkness 15: "<</cupsCompression 50>>setpagedevice"
-*Darkness 16: "<</cupsCompression 54>>setpagedevice"
-*Darkness 17: "<</cupsCompression 57>>setpagedevice"
-*Darkness 18: "<</cupsCompression 60>>setpagedevice"
-*Darkness 19: "<</cupsCompression 64>>setpagedevice"
-*Darkness 20: "<</cupsCompression 67>>setpagedevice"
-*Darkness 21: "<</cupsCompression 70>>setpagedevice"
-*Darkness 22: "<</cupsCompression 74>>setpagedevice"
-*Darkness 23: "<</cupsCompression 77>>setpagedevice"
-*Darkness 24: "<</cupsCompression 80>>setpagedevice"
-*Darkness 25: "<</cupsCompression 84>>setpagedevice"
-*Darkness 26: "<</cupsCompression 87>>setpagedevice"
-*Darkness 27: "<</cupsCompression 90>>setpagedevice"
-*Darkness 28: "<</cupsCompression 94>>setpagedevice"
-*Darkness 29: "<</cupsCompression 97>>setpagedevice"
-*Darkness 30: "<</cupsCompression 100>>setpagedevice"
-*CloseUI: *Darkness
-*OpenUI *zePrintRate/Print Rate: PickOne
-*OrderDependency: 20.0 AnySetup *zePrintRate
-*DefaultzePrintRate: Default
-*zePrintRate Default/Printer Default: ""
-*zePrintRate 1/1 inch/sec.: ""
-*zePrintRate 2/2 inches/sec.: ""
-*zePrintRate 3/3 inches/sec.: ""
-*zePrintRate 4/4 inches/sec.: ""
-*zePrintRate 5/5 inches/sec.: ""
-*zePrintRate 6/6 inches/sec.: ""
-*zePrintRate 7/7 inches/sec.: ""
-*zePrintRate 8/8 inches/sec.: ""
-*zePrintRate 9/9 inches/sec.: ""
-*zePrintRate 10/10 inches/sec.: ""
-*zePrintRate 11/11 inches/sec.: ""
-*zePrintRate 12/12 inches/sec.: ""
-*CloseUI: *zePrintRate
-*OpenUI *zeLabelTop/Label Top: PickOne
-*OrderDependency: 20.0 AnySetup *zeLabelTop
-*DefaultzeLabelTop: 200
-*zeLabelTop 200/Printer Default: "<</cupsRowStep 200>>setpagedevice"
-*zeLabelTop -120: "<</cupsRowStep -120>>setpagedevice"
-*zeLabelTop -115: "<</cupsRowStep -115>>setpagedevice"
-*zeLabelTop -110: "<</cupsRowStep -110>>setpagedevice"
-*zeLabelTop -105: "<</cupsRowStep -105>>setpagedevice"
-*zeLabelTop -100: "<</cupsRowStep -100>>setpagedevice"
-*zeLabelTop -95: "<</cupsRowStep -95>>setpagedevice"
-*zeLabelTop -90: "<</cupsRowStep -90>>setpagedevice"
-*zeLabelTop -85: "<</cupsRowStep -85>>setpagedevice"
-*zeLabelTop -80: "<</cupsRowStep -80>>setpagedevice"
-*zeLabelTop -75: "<</cupsRowStep -75>>setpagedevice"
-*zeLabelTop -70: "<</cupsRowStep -70>>setpagedevice"
-*zeLabelTop -65: "<</cupsRowStep -65>>setpagedevice"
-*zeLabelTop -60: "<</cupsRowStep -60>>setpagedevice"
-*zeLabelTop -55: "<</cupsRowStep -55>>setpagedevice"
-*zeLabelTop -50: "<</cupsRowStep -50>>setpagedevice"
-*zeLabelTop -45: "<</cupsRowStep -45>>setpagedevice"
-*zeLabelTop -40: "<</cupsRowStep -40>>setpagedevice"
-*zeLabelTop -35: "<</cupsRowStep -35>>setpagedevice"
-*zeLabelTop -30: "<</cupsRowStep -30>>setpagedevice"
-*zeLabelTop -25: "<</cupsRowStep -25>>setpagedevice"
-*zeLabelTop -20: "<</cupsRowStep -20>>setpagedevice"
-*zeLabelTop -15: "<</cupsRowStep -15>>setpagedevice"
-*zeLabelTop -10: "<</cupsRowStep -10>>setpagedevice"
-*zeLabelTop -5: "<</cupsRowStep -5>>setpagedevice"
-*zeLabelTop 0: "<</cupsRowStep 0>>setpagedevice"
-*zeLabelTop 5: "<</cupsRowStep 5>>setpagedevice"
-*zeLabelTop 10: "<</cupsRowStep 10>>setpagedevice"
-*zeLabelTop 15: "<</cupsRowStep 15>>setpagedevice"
-*zeLabelTop 20: "<</cupsRowStep 20>>setpagedevice"
-*zeLabelTop 25: "<</cupsRowStep 25>>setpagedevice"
-*zeLabelTop 30: "<</cupsRowStep 30>>setpagedevice"
-*zeLabelTop 35: "<</cupsRowStep 35>>setpagedevice"
-*zeLabelTop 40: "<</cupsRowStep 40>>setpagedevice"
-*zeLabelTop 45: "<</cupsRowStep 45>>setpagedevice"
-*zeLabelTop 50: "<</cupsRowStep 50>>setpagedevice"
-*zeLabelTop 55: "<</cupsRowStep 55>>setpagedevice"
-*zeLabelTop 60: "<</cupsRowStep 60>>setpagedevice"
-*zeLabelTop 65: "<</cupsRowStep 65>>setpagedevice"
-*zeLabelTop 70: "<</cupsRowStep 70>>setpagedevice"
-*zeLabelTop 75: "<</cupsRowStep 75>>setpagedevice"
-*zeLabelTop 80: "<</cupsRowStep 80>>setpagedevice"
-*zeLabelTop 85: "<</cupsRowStep 85>>setpagedevice"
-*zeLabelTop 90: "<</cupsRowStep 90>>setpagedevice"
-*zeLabelTop 95: "<</cupsRowStep 95>>setpagedevice"
-*zeLabelTop 100: "<</cupsRowStep 100>>setpagedevice"
-*zeLabelTop 105: "<</cupsRowStep 105>>setpagedevice"
-*zeLabelTop 110: "<</cupsRowStep 110>>setpagedevice"
-*zeLabelTop 115: "<</cupsRowStep 115>>setpagedevice"
-*zeLabelTop 120: "<</cupsRowStep 120>>setpagedevice"
-*CloseUI: *zeLabelTop
-*OpenUI *zePrintMode/Print Mode: PickOne
-*OrderDependency: 20.0 AnySetup *zePrintMode
-*DefaultzePrintMode: Saved
-*zePrintMode Saved/Printer Default: ""
-*zePrintMode Tear/Tear-Off: ""
-*zePrintMode Peel/Peel-Off: ""
-*zePrintMode Rewind: ""
-*zePrintMode Applicator: ""
-*zePrintMode Cutter: ""
-*CloseUI: *zePrintMode
-*OpenUI *zeTearOffPosition/Tear-Off Adjust Position: PickOne
-*OrderDependency: 20.0 AnySetup *zeTearOffPosition
-*DefaultzeTearOffPosition: 1000
-*zeTearOffPosition 1000/Printer Default: "<</AdvanceDistance 1000>>setpagedevice"
-*zeTearOffPosition -120: "<</AdvanceDistance -120>>setpagedevice"
-*zeTearOffPosition -115: "<</AdvanceDistance -115>>setpagedevice"
-*zeTearOffPosition -110: "<</AdvanceDistance -110>>setpagedevice"
-*zeTearOffPosition -105: "<</AdvanceDistance -105>>setpagedevice"
-*zeTearOffPosition -100: "<</AdvanceDistance -100>>setpagedevice"
-*zeTearOffPosition -95: "<</AdvanceDistance -95>>setpagedevice"
-*zeTearOffPosition -90: "<</AdvanceDistance -90>>setpagedevice"
-*zeTearOffPosition -85: "<</AdvanceDistance -85>>setpagedevice"
-*zeTearOffPosition -80: "<</AdvanceDistance -80>>setpagedevice"
-*zeTearOffPosition -75: "<</AdvanceDistance -75>>setpagedevice"
-*zeTearOffPosition -70: "<</AdvanceDistance -70>>setpagedevice"
-*zeTearOffPosition -65: "<</AdvanceDistance -65>>setpagedevice"
-*zeTearOffPosition -60: "<</AdvanceDistance -60>>setpagedevice"
-*zeTearOffPosition -55: "<</AdvanceDistance -55>>setpagedevice"
-*zeTearOffPosition -50: "<</AdvanceDistance -50>>setpagedevice"
-*zeTearOffPosition -45: "<</AdvanceDistance -45>>setpagedevice"
-*zeTearOffPosition -40: "<</AdvanceDistance -40>>setpagedevice"
-*zeTearOffPosition -35: "<</AdvanceDistance -35>>setpagedevice"
-*zeTearOffPosition -30: "<</AdvanceDistance -30>>setpagedevice"
-*zeTearOffPosition -25: "<</AdvanceDistance -25>>setpagedevice"
-*zeTearOffPosition -20: "<</AdvanceDistance -20>>setpagedevice"
-*zeTearOffPosition -15: "<</AdvanceDistance -15>>setpagedevice"
-*zeTearOffPosition -10: "<</AdvanceDistance -10>>setpagedevice"
-*zeTearOffPosition -5: "<</AdvanceDistance -5>>setpagedevice"
-*zeTearOffPosition 0: "<</AdvanceDistance 0>>setpagedevice"
-*zeTearOffPosition 5: "<</AdvanceDistance 5>>setpagedevice"
-*zeTearOffPosition 10: "<</AdvanceDistance 10>>setpagedevice"
-*zeTearOffPosition 15: "<</AdvanceDistance 15>>setpagedevice"
-*zeTearOffPosition 20: "<</AdvanceDistance 20>>setpagedevice"
-*zeTearOffPosition 25: "<</AdvanceDistance 25>>setpagedevice"
-*zeTearOffPosition 30: "<</AdvanceDistance 30>>setpagedevice"
-*zeTearOffPosition 35: "<</AdvanceDistance 35>>setpagedevice"
-*zeTearOffPosition 40: "<</AdvanceDistance 40>>setpagedevice"
-*zeTearOffPosition 45: "<</AdvanceDistance 45>>setpagedevice"
-*zeTearOffPosition 50: "<</AdvanceDistance 50>>setpagedevice"
-*zeTearOffPosition 55: "<</AdvanceDistance 55>>setpagedevice"
-*zeTearOffPosition 60: "<</AdvanceDistance 60>>setpagedevice"
-*zeTearOffPosition 65: "<</AdvanceDistance 65>>setpagedevice"
-*zeTearOffPosition 70: "<</AdvanceDistance 70>>setpagedevice"
-*zeTearOffPosition 75: "<</AdvanceDistance 75>>setpagedevice"
-*zeTearOffPosition 80: "<</AdvanceDistance 80>>setpagedevice"
-*zeTearOffPosition 85: "<</AdvanceDistance 85>>setpagedevice"
-*zeTearOffPosition 90: "<</AdvanceDistance 90>>setpagedevice"
-*zeTearOffPosition 95: "<</AdvanceDistance 95>>setpagedevice"
-*zeTearOffPosition 100: "<</AdvanceDistance 100>>setpagedevice"
-*zeTearOffPosition 105: "<</AdvanceDistance 105>>setpagedevice"
-*zeTearOffPosition 110: "<</AdvanceDistance 110>>setpagedevice"
-*zeTearOffPosition 115: "<</AdvanceDistance 115>>setpagedevice"
-*zeTearOffPosition 120: "<</AdvanceDistance 120>>setpagedevice"
-*CloseUI: *zeTearOffPosition
-*OpenUI *zeErrorReprint/Reprint After Error: PickOne
-*OrderDependency: 20.0 AnySetup *zeErrorReprint
-*DefaultzeErrorReprint: Saved
-*zeErrorReprint Saved/Printer Default: ""
-*zeErrorReprint Always: ""
-*zeErrorReprint Never: ""
-*CloseUI: *zeErrorReprint
-*CloseGroup: PrinterSettings
-*da.Translation Manufacturer/Zebra: ""
-*da.Translation ModelName/Zebra ZPL Label Printer: ""
-*da.Translation ShortNickName/Zebra ZPL Label Printer: ""
-*da.Translation NickName/Zebra ZPL Label Printer, 1.4: ""
-*da.Translation PageSize/Media Size: ""
-*da.PageSize w90h18/1.25x0.25": ""
-*da.PageSize w90h162/1.25x2.25": ""
-*da.PageSize w108h18/1.50x0.25": ""
-*da.PageSize w108h36/1.50x0.50": ""
-*da.PageSize w108h72/1.50x1.00": ""
-*da.PageSize w108h144/1.50x2.00": ""
-*da.PageSize w144h26/2.00x0.37": ""
-*da.PageSize w144h36/2.00x0.50": ""
-*da.PageSize w144h72/2.00x1.00": ""
-*da.PageSize w144h90/2.00x1.25": ""
-*da.PageSize w144h288/2.00x4.00": ""
-*da.PageSize w144h396/2.00x5.50": ""
-*da.PageSize w162h36/2.25x0.50": ""
-*da.PageSize w162h90/2.25x1.25": ""
-*da.PageSize w162h288/2.25x4.00": ""
-*da.PageSize w162h396/2.25x5.50": ""
-*da.PageSize w171h396/2.38x5.50": ""
-*da.PageSize w180h72/2.50x1.00": ""
-*da.PageSize w180h144/2.50x2.00": ""
-*da.PageSize w198h90/2.75x1.25": ""
-*da.PageSize w216h72/3.00x1.00": ""
-*da.PageSize w216h90/3.00x1.25": ""
-*da.PageSize w216h144/3.00x2.00": ""
-*da.PageSize w216h216/3.00x3.00": ""
-*da.PageSize w216h360/3.00x5.00": ""
-*da.PageSize w234h144/3.25x2.00": ""
-*da.PageSize w234h360/3.25x5.00": ""
-*da.PageSize w234h396/3.25x5.50": ""
-*da.PageSize w234h419/3.25x5.83": ""
-*da.PageSize w234h563/3.25x7.83": ""
-*da.PageSize w252h72/3.50x1.00": ""
-*da.PageSize w288h72/4.00x1.00": ""
-*da.PageSize w288h144/4.00x2.00": ""
-*da.PageSize w288h180/4.00x2.50": ""
-*da.PageSize w288h216/4.00x3.00": ""
-*da.PageSize w288h288/4.00x4.00": ""
-*da.PageSize w288h360/4.00x5.00": ""
-*da.PageSize w288h432/4.00x6.00": ""
-*da.PageSize w288h468/4.00x6.50": ""
-*da.PageSize w288h936/4.00x13.00": ""
-*da.PageSize w432h72/6.00x1.00": ""
-*da.PageSize w432h144/6.00x2.00": ""
-*da.PageSize w432h216/6.00x3.00": ""
-*da.PageSize w432h288/6.00x4.00": ""
-*da.PageSize w432h360/6.00x5.00": ""
-*da.PageSize w432h432/6.00x6.00": ""
-*da.PageSize w432h468/6.00x6.50": ""
-*da.PageSize w576h72/8.00x1.00": ""
-*da.PageSize w576h144/8.00x2.00": ""
-*da.PageSize w576h216/8.00x3.00": ""
-*da.PageSize w576h288/8.00x4.00": ""
-*da.PageSize w576h360/8.00x5.00": ""
-*da.PageSize w576h432/8.00x6.00": ""
-*da.PageSize w576h468/8.00x6.50": ""
-*da.Translation Resolution/Resolution: ""
-*da.Resolution 203dpi/203dpi: ""
-*da.Resolution 300dpi/300dpi: ""
-*da.Resolution 600dpi/600dpi: ""
-*da.Translation zeMediaTracking/Media Tracking: ""
-*da.zeMediaTracking Continuous/Continuous: ""
-*da.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*da.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*da.Translation MediaType/Media Type: ""
-*da.MediaType Saved/Printerstandard: ""
-*da.MediaType Thermal/Thermal Transfer Media: ""
-*da.MediaType Direct/Direct Thermal Media: ""
-*da.Translation PrinterSettings/Printer Settings: ""
-*da.Translation Darkness/Darkness: ""
-*da.Darkness -1/Printerstandard: ""
-*da.Darkness 1/1: ""
-*da.Darkness 2/2: ""
-*da.Darkness 3/3: ""
-*da.Darkness 4/4: ""
-*da.Darkness 5/5: ""
-*da.Darkness 6/6: ""
-*da.Darkness 7/7: ""
-*da.Darkness 8/8: ""
-*da.Darkness 9/9: ""
-*da.Darkness 10/10: ""
-*da.Darkness 11/11: ""
-*da.Darkness 12/12: ""
-*da.Darkness 13/13: ""
-*da.Darkness 14/14: ""
-*da.Darkness 15/15: ""
-*da.Darkness 16/16: ""
-*da.Darkness 17/17: ""
-*da.Darkness 18/18: ""
-*da.Darkness 19/19: ""
-*da.Darkness 20/20: ""
-*da.Darkness 21/21: ""
-*da.Darkness 22/22: ""
-*da.Darkness 23/23: ""
-*da.Darkness 24/24: ""
-*da.Darkness 25/25: ""
-*da.Darkness 26/26: ""
-*da.Darkness 27/27: ""
-*da.Darkness 28/28: ""
-*da.Darkness 29/29: ""
-*da.Darkness 30/30: ""
-*da.Translation zePrintRate/Print Rate: ""
-*da.zePrintRate Default/Printerstandard: ""
-*da.zePrintRate 1/1 inch/sec.: ""
-*da.zePrintRate 2/2 inches/sec.: ""
-*da.zePrintRate 3/3 inches/sec.: ""
-*da.zePrintRate 4/4 inches/sec.: ""
-*da.zePrintRate 5/5 inches/sec.: ""
-*da.zePrintRate 6/6 inches/sec.: ""
-*da.zePrintRate 7/7 inches/sec.: ""
-*da.zePrintRate 8/8 inches/sec.: ""
-*da.zePrintRate 9/9 inches/sec.: ""
-*da.zePrintRate 10/10 inches/sec.: ""
-*da.zePrintRate 11/11 inches/sec.: ""
-*da.zePrintRate 12/12 inches/sec.: ""
-*da.Translation zeLabelTop/Label Top: ""
-*da.zeLabelTop 200/Printerstandard: ""
-*da.zeLabelTop -120/-120: ""
-*da.zeLabelTop -115/-115: ""
-*da.zeLabelTop -110/-110: ""
-*da.zeLabelTop -105/-105: ""
-*da.zeLabelTop -100/-100: ""
-*da.zeLabelTop -95/-95: ""
-*da.zeLabelTop -90/-90: ""
-*da.zeLabelTop -85/-85: ""
-*da.zeLabelTop -80/-80: ""
-*da.zeLabelTop -75/-75: ""
-*da.zeLabelTop -70/-70: ""
-*da.zeLabelTop -65/-65: ""
-*da.zeLabelTop -60/-60: ""
-*da.zeLabelTop -55/-55: ""
-*da.zeLabelTop -50/-50: ""
-*da.zeLabelTop -45/-45: ""
-*da.zeLabelTop -40/-40: ""
-*da.zeLabelTop -35/-35: ""
-*da.zeLabelTop -30/-30: ""
-*da.zeLabelTop -25/-25: ""
-*da.zeLabelTop -20/-20: ""
-*da.zeLabelTop -15/-15: ""
-*da.zeLabelTop -10/-10: ""
-*da.zeLabelTop -5/-5: ""
-*da.zeLabelTop 0/0: ""
-*da.zeLabelTop 5/5: ""
-*da.zeLabelTop 10/10: ""
-*da.zeLabelTop 15/15: ""
-*da.zeLabelTop 20/20: ""
-*da.zeLabelTop 25/25: ""
-*da.zeLabelTop 30/30: ""
-*da.zeLabelTop 35/35: ""
-*da.zeLabelTop 40/40: ""
-*da.zeLabelTop 45/45: ""
-*da.zeLabelTop 50/50: ""
-*da.zeLabelTop 55/55: ""
-*da.zeLabelTop 60/60: ""
-*da.zeLabelTop 65/65: ""
-*da.zeLabelTop 70/70: ""
-*da.zeLabelTop 75/75: ""
-*da.zeLabelTop 80/80: ""
-*da.zeLabelTop 85/85: ""
-*da.zeLabelTop 90/90: ""
-*da.zeLabelTop 95/95: ""
-*da.zeLabelTop 100/100: ""
-*da.zeLabelTop 105/105: ""
-*da.zeLabelTop 110/110: ""
-*da.zeLabelTop 115/115: ""
-*da.zeLabelTop 120/120: ""
-*da.Translation zePrintMode/Print Mode: ""
-*da.zePrintMode Saved/Printerstandard: ""
-*da.zePrintMode Tear/Tear-Off: ""
-*da.zePrintMode Peel/Peel-Off: ""
-*da.zePrintMode Rewind/Rewind: ""
-*da.zePrintMode Applicator/Applicator: ""
-*da.zePrintMode Cutter/Cutter: ""
-*da.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*da.zeTearOffPosition 1000/Printerstandard: ""
-*da.zeTearOffPosition -120/-120: ""
-*da.zeTearOffPosition -115/-115: ""
-*da.zeTearOffPosition -110/-110: ""
-*da.zeTearOffPosition -105/-105: ""
-*da.zeTearOffPosition -100/-100: ""
-*da.zeTearOffPosition -95/-95: ""
-*da.zeTearOffPosition -90/-90: ""
-*da.zeTearOffPosition -85/-85: ""
-*da.zeTearOffPosition -80/-80: ""
-*da.zeTearOffPosition -75/-75: ""
-*da.zeTearOffPosition -70/-70: ""
-*da.zeTearOffPosition -65/-65: ""
-*da.zeTearOffPosition -60/-60: ""
-*da.zeTearOffPosition -55/-55: ""
-*da.zeTearOffPosition -50/-50: ""
-*da.zeTearOffPosition -45/-45: ""
-*da.zeTearOffPosition -40/-40: ""
-*da.zeTearOffPosition -35/-35: ""
-*da.zeTearOffPosition -30/-30: ""
-*da.zeTearOffPosition -25/-25: ""
-*da.zeTearOffPosition -20/-20: ""
-*da.zeTearOffPosition -15/-15: ""
-*da.zeTearOffPosition -10/-10: ""
-*da.zeTearOffPosition -5/-5: ""
-*da.zeTearOffPosition 0/0: ""
-*da.zeTearOffPosition 5/5: ""
-*da.zeTearOffPosition 10/10: ""
-*da.zeTearOffPosition 15/15: ""
-*da.zeTearOffPosition 20/20: ""
-*da.zeTearOffPosition 25/25: ""
-*da.zeTearOffPosition 30/30: ""
-*da.zeTearOffPosition 35/35: ""
-*da.zeTearOffPosition 40/40: ""
-*da.zeTearOffPosition 45/45: ""
-*da.zeTearOffPosition 50/50: ""
-*da.zeTearOffPosition 55/55: ""
-*da.zeTearOffPosition 60/60: ""
-*da.zeTearOffPosition 65/65: ""
-*da.zeTearOffPosition 70/70: ""
-*da.zeTearOffPosition 75/75: ""
-*da.zeTearOffPosition 80/80: ""
-*da.zeTearOffPosition 85/85: ""
-*da.zeTearOffPosition 90/90: ""
-*da.zeTearOffPosition 95/95: ""
-*da.zeTearOffPosition 100/100: ""
-*da.zeTearOffPosition 105/105: ""
-*da.zeTearOffPosition 110/110: ""
-*da.zeTearOffPosition 115/115: ""
-*da.zeTearOffPosition 120/120: ""
-*da.Translation zeErrorReprint/Reprint After Error: ""
-*da.zeErrorReprint Saved/Printerstandard: ""
-*da.zeErrorReprint Always/Always: ""
-*da.zeErrorReprint Never/Never: ""
-*de.Translation Manufacturer/Zebra: ""
-*de.Translation ModelName/Zebra ZPL Label Printer: ""
-*de.Translation ShortNickName/Zebra ZPL Label Printer: ""
-*de.Translation NickName/Zebra ZPL Label Printer, 1.4: ""
-*de.Translation PageSize/Media Size: ""
-*de.PageSize w90h18/1.25x0.25": ""
-*de.PageSize w90h162/1.25x2.25": ""
-*de.PageSize w108h18/1.50x0.25": ""
-*de.PageSize w108h36/1.50x0.50": ""
-*de.PageSize w108h72/1.50x1.00": ""
-*de.PageSize w108h144/1.50x2.00": ""
-*de.PageSize w144h26/2.00x0.37": ""
-*de.PageSize w144h36/2.00x0.50": ""
-*de.PageSize w144h72/2.00x1.00": ""
-*de.PageSize w144h90/2.00x1.25": ""
-*de.PageSize w144h288/2.00x4.00": ""
-*de.PageSize w144h396/2.00x5.50": ""
-*de.PageSize w162h36/2.25x0.50": ""
-*de.PageSize w162h90/2.25x1.25": ""
-*de.PageSize w162h288/2.25x4.00": ""
-*de.PageSize w162h396/2.25x5.50": ""
-*de.PageSize w171h396/2.38x5.50": ""
-*de.PageSize w180h72/2.50x1.00": ""
-*de.PageSize w180h144/2.50x2.00": ""
-*de.PageSize w198h90/2.75x1.25": ""
-*de.PageSize w216h72/3.00x1.00": ""
-*de.PageSize w216h90/3.00x1.25": ""
-*de.PageSize w216h144/3.00x2.00": ""
-*de.PageSize w216h216/3.00x3.00": ""
-*de.PageSize w216h360/3.00x5.00": ""
-*de.PageSize w234h144/3.25x2.00": ""
-*de.PageSize w234h360/3.25x5.00": ""
-*de.PageSize w234h396/3.25x5.50": ""
-*de.PageSize w234h419/3.25x5.83": ""
-*de.PageSize w234h563/3.25x7.83": ""
-*de.PageSize w252h72/3.50x1.00": ""
-*de.PageSize w288h72/4.00x1.00": ""
-*de.PageSize w288h144/4.00x2.00": ""
-*de.PageSize w288h180/4.00x2.50": ""
-*de.PageSize w288h216/4.00x3.00": ""
-*de.PageSize w288h288/4.00x4.00": ""
-*de.PageSize w288h360/4.00x5.00": ""
-*de.PageSize w288h432/4.00x6.00": ""
-*de.PageSize w288h468/4.00x6.50": ""
-*de.PageSize w288h936/4.00x13.00": ""
-*de.PageSize w432h72/6.00x1.00": ""
-*de.PageSize w432h144/6.00x2.00": ""
-*de.PageSize w432h216/6.00x3.00": ""
-*de.PageSize w432h288/6.00x4.00": ""
-*de.PageSize w432h360/6.00x5.00": ""
-*de.PageSize w432h432/6.00x6.00": ""
-*de.PageSize w432h468/6.00x6.50": ""
-*de.PageSize w576h72/8.00x1.00": ""
-*de.PageSize w576h144/8.00x2.00": ""
-*de.PageSize w576h216/8.00x3.00": ""
-*de.PageSize w576h288/8.00x4.00": ""
-*de.PageSize w576h360/8.00x5.00": ""
-*de.PageSize w576h432/8.00x6.00": ""
-*de.PageSize w576h468/8.00x6.50": ""
-*de.Translation Resolution/Resolution: ""
-*de.Resolution 203dpi/203dpi: ""
-*de.Resolution 300dpi/300dpi: ""
-*de.Resolution 600dpi/600dpi: ""
-*de.Translation zeMediaTracking/Media Tracking: ""
-*de.zeMediaTracking Continuous/Continuous: ""
-*de.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*de.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*de.Translation MediaType/Media Type: ""
-*de.MediaType Saved/Druckerstandard: ""
-*de.MediaType Thermal/Thermal Transfer Media: ""
-*de.MediaType Direct/Direct Thermal Media: ""
-*de.Translation PrinterSettings/Printer Settings: ""
-*de.Translation Darkness/Darkness: ""
-*de.Darkness -1/Druckerstandard: ""
-*de.Darkness 1/1: ""
-*de.Darkness 2/2: ""
-*de.Darkness 3/3: ""
-*de.Darkness 4/4: ""
-*de.Darkness 5/5: ""
-*de.Darkness 6/6: ""
-*de.Darkness 7/7: ""
-*de.Darkness 8/8: ""
-*de.Darkness 9/9: ""
-*de.Darkness 10/10: ""
-*de.Darkness 11/11: ""
-*de.Darkness 12/12: ""
-*de.Darkness 13/13: ""
-*de.Darkness 14/14: ""
-*de.Darkness 15/15: ""
-*de.Darkness 16/16: ""
-*de.Darkness 17/17: ""
-*de.Darkness 18/18: ""
-*de.Darkness 19/19: ""
-*de.Darkness 20/20: ""
-*de.Darkness 21/21: ""
-*de.Darkness 22/22: ""
-*de.Darkness 23/23: ""
-*de.Darkness 24/24: ""
-*de.Darkness 25/25: ""
-*de.Darkness 26/26: ""
-*de.Darkness 27/27: ""
-*de.Darkness 28/28: ""
-*de.Darkness 29/29: ""
-*de.Darkness 30/30: ""
-*de.Translation zePrintRate/Print Rate: ""
-*de.zePrintRate Default/Druckerstandard: ""
-*de.zePrintRate 1/1 inch/sec.: ""
-*de.zePrintRate 2/2 inches/sec.: ""
-*de.zePrintRate 3/3 inches/sec.: ""
-*de.zePrintRate 4/4 inches/sec.: ""
-*de.zePrintRate 5/5 inches/sec.: ""
-*de.zePrintRate 6/6 inches/sec.: ""
-*de.zePrintRate 7/7 inches/sec.: ""
-*de.zePrintRate 8/8 inches/sec.: ""
-*de.zePrintRate 9/9 inches/sec.: ""
-*de.zePrintRate 10/10 inches/sec.: ""
-*de.zePrintRate 11/11 inches/sec.: ""
-*de.zePrintRate 12/12 inches/sec.: ""
-*de.Translation zeLabelTop/Label Top: ""
-*de.zeLabelTop 200/Druckerstandard: ""
-*de.zeLabelTop -120/-120: ""
-*de.zeLabelTop -115/-115: ""
-*de.zeLabelTop -110/-110: ""
-*de.zeLabelTop -105/-105: ""
-*de.zeLabelTop -100/-100: ""
-*de.zeLabelTop -95/-95: ""
-*de.zeLabelTop -90/-90: ""
-*de.zeLabelTop -85/-85: ""
-*de.zeLabelTop -80/-80: ""
-*de.zeLabelTop -75/-75: ""
-*de.zeLabelTop -70/-70: ""
-*de.zeLabelTop -65/-65: ""
-*de.zeLabelTop -60/-60: ""
-*de.zeLabelTop -55/-55: ""
-*de.zeLabelTop -50/-50: ""
-*de.zeLabelTop -45/-45: ""
-*de.zeLabelTop -40/-40: ""
-*de.zeLabelTop -35/-35: ""
-*de.zeLabelTop -30/-30: ""
-*de.zeLabelTop -25/-25: ""
-*de.zeLabelTop -20/-20: ""
-*de.zeLabelTop -15/-15: ""
-*de.zeLabelTop -10/-10: ""
-*de.zeLabelTop -5/-5: ""
-*de.zeLabelTop 0/0: ""
-*de.zeLabelTop 5/5: ""
-*de.zeLabelTop 10/10: ""
-*de.zeLabelTop 15/15: ""
-*de.zeLabelTop 20/20: ""
-*de.zeLabelTop 25/25: ""
-*de.zeLabelTop 30/30: ""
-*de.zeLabelTop 35/35: ""
-*de.zeLabelTop 40/40: ""
-*de.zeLabelTop 45/45: ""
-*de.zeLabelTop 50/50: ""
-*de.zeLabelTop 55/55: ""
-*de.zeLabelTop 60/60: ""
-*de.zeLabelTop 65/65: ""
-*de.zeLabelTop 70/70: ""
-*de.zeLabelTop 75/75: ""
-*de.zeLabelTop 80/80: ""
-*de.zeLabelTop 85/85: ""
-*de.zeLabelTop 90/90: ""
-*de.zeLabelTop 95/95: ""
-*de.zeLabelTop 100/100: ""
-*de.zeLabelTop 105/105: ""
-*de.zeLabelTop 110/110: ""
-*de.zeLabelTop 115/115: ""
-*de.zeLabelTop 120/120: ""
-*de.Translation zePrintMode/Print Mode: ""
-*de.zePrintMode Saved/Druckerstandard: ""
-*de.zePrintMode Tear/Tear-Off: ""
-*de.zePrintMode Peel/Peel-Off: ""
-*de.zePrintMode Rewind/Rewind: ""
-*de.zePrintMode Applicator/Applicator: ""
-*de.zePrintMode Cutter/Cutter: ""
-*de.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*de.zeTearOffPosition 1000/Druckerstandard: ""
-*de.zeTearOffPosition -120/-120: ""
-*de.zeTearOffPosition -115/-115: ""
-*de.zeTearOffPosition -110/-110: ""
-*de.zeTearOffPosition -105/-105: ""
-*de.zeTearOffPosition -100/-100: ""
-*de.zeTearOffPosition -95/-95: ""
-*de.zeTearOffPosition -90/-90: ""
-*de.zeTearOffPosition -85/-85: ""
-*de.zeTearOffPosition -80/-80: ""
-*de.zeTearOffPosition -75/-75: ""
-*de.zeTearOffPosition -70/-70: ""
-*de.zeTearOffPosition -65/-65: ""
-*de.zeTearOffPosition -60/-60: ""
-*de.zeTearOffPosition -55/-55: ""
-*de.zeTearOffPosition -50/-50: ""
-*de.zeTearOffPosition -45/-45: ""
-*de.zeTearOffPosition -40/-40: ""
-*de.zeTearOffPosition -35/-35: ""
-*de.zeTearOffPosition -30/-30: ""
-*de.zeTearOffPosition -25/-25: ""
-*de.zeTearOffPosition -20/-20: ""
-*de.zeTearOffPosition -15/-15: ""
-*de.zeTearOffPosition -10/-10: ""
-*de.zeTearOffPosition -5/-5: ""
-*de.zeTearOffPosition 0/0: ""
-*de.zeTearOffPosition 5/5: ""
-*de.zeTearOffPosition 10/10: ""
-*de.zeTearOffPosition 15/15: ""
-*de.zeTearOffPosition 20/20: ""
-*de.zeTearOffPosition 25/25: ""
-*de.zeTearOffPosition 30/30: ""
-*de.zeTearOffPosition 35/35: ""
-*de.zeTearOffPosition 40/40: ""
-*de.zeTearOffPosition 45/45: ""
-*de.zeTearOffPosition 50/50: ""
-*de.zeTearOffPosition 55/55: ""
-*de.zeTearOffPosition 60/60: ""
-*de.zeTearOffPosition 65/65: ""
-*de.zeTearOffPosition 70/70: ""
-*de.zeTearOffPosition 75/75: ""
-*de.zeTearOffPosition 80/80: ""
-*de.zeTearOffPosition 85/85: ""
-*de.zeTearOffPosition 90/90: ""
-*de.zeTearOffPosition 95/95: ""
-*de.zeTearOffPosition 100/100: ""
-*de.zeTearOffPosition 105/105: ""
-*de.zeTearOffPosition 110/110: ""
-*de.zeTearOffPosition 115/115: ""
-*de.zeTearOffPosition 120/120: ""
-*de.Translation zeErrorReprint/Reprint After Error: ""
-*de.zeErrorReprint Saved/Druckerstandard: ""
-*de.zeErrorReprint Always/Always: ""
-*de.zeErrorReprint Never/Never: ""
-*es.Translation Manufacturer/Zebra: ""
-*es.Translation ModelName/Zebra ZPL Label Printer: ""
-*es.Translation ShortNickName/Zebra ZPL Label Printer: ""
-*es.Translation NickName/Zebra ZPL Label Printer, 1.4: ""
-*es.Translation PageSize/Media Size: ""
-*es.PageSize w90h18/1.25x0.25": ""
-*es.PageSize w90h162/1.25x2.25": ""
-*es.PageSize w108h18/1.50x0.25": ""
-*es.PageSize w108h36/1.50x0.50": ""
-*es.PageSize w108h72/1.50x1.00": ""
-*es.PageSize w108h144/1.50x2.00": ""
-*es.PageSize w144h26/2.00x0.37": ""
-*es.PageSize w144h36/2.00x0.50": ""
-*es.PageSize w144h72/2.00x1.00": ""
-*es.PageSize w144h90/2.00x1.25": ""
-*es.PageSize w144h288/2.00x4.00": ""
-*es.PageSize w144h396/2.00x5.50": ""
-*es.PageSize w162h36/2.25x0.50": ""
-*es.PageSize w162h90/2.25x1.25": ""
-*es.PageSize w162h288/2.25x4.00": ""
-*es.PageSize w162h396/2.25x5.50": ""
-*es.PageSize w171h396/2.38x5.50": ""
-*es.PageSize w180h72/2.50x1.00": ""
-*es.PageSize w180h144/2.50x2.00": ""
-*es.PageSize w198h90/2.75x1.25": ""
-*es.PageSize w216h72/3.00x1.00": ""
-*es.PageSize w216h90/3.00x1.25": ""
-*es.PageSize w216h144/3.00x2.00": ""
-*es.PageSize w216h216/3.00x3.00": ""
-*es.PageSize w216h360/3.00x5.00": ""
-*es.PageSize w234h144/3.25x2.00": ""
-*es.PageSize w234h360/3.25x5.00": ""
-*es.PageSize w234h396/3.25x5.50": ""
-*es.PageSize w234h419/3.25x5.83": ""
-*es.PageSize w234h563/3.25x7.83": ""
-*es.PageSize w252h72/3.50x1.00": ""
-*es.PageSize w288h72/4.00x1.00": ""
-*es.PageSize w288h144/4.00x2.00": ""
-*es.PageSize w288h180/4.00x2.50": ""
-*es.PageSize w288h216/4.00x3.00": ""
-*es.PageSize w288h288/4.00x4.00": ""
-*es.PageSize w288h360/4.00x5.00": ""
-*es.PageSize w288h432/4.00x6.00": ""
-*es.PageSize w288h468/4.00x6.50": ""
-*es.PageSize w288h936/4.00x13.00": ""
-*es.PageSize w432h72/6.00x1.00": ""
-*es.PageSize w432h144/6.00x2.00": ""
-*es.PageSize w432h216/6.00x3.00": ""
-*es.PageSize w432h288/6.00x4.00": ""
-*es.PageSize w432h360/6.00x5.00": ""
-*es.PageSize w432h432/6.00x6.00": ""
-*es.PageSize w432h468/6.00x6.50": ""
-*es.PageSize w576h72/8.00x1.00": ""
-*es.PageSize w576h144/8.00x2.00": ""
-*es.PageSize w576h216/8.00x3.00": ""
-*es.PageSize w576h288/8.00x4.00": ""
-*es.PageSize w576h360/8.00x5.00": ""
-*es.PageSize w576h432/8.00x6.00": ""
-*es.PageSize w576h468/8.00x6.50": ""
-*es.Translation Resolution/Resolution: ""
-*es.Resolution 203dpi/203dpi: ""
-*es.Resolution 300dpi/300dpi: ""
-*es.Resolution 600dpi/600dpi: ""
-*es.Translation zeMediaTracking/Media Tracking: ""
-*es.zeMediaTracking Continuous/Continuous: ""
-*es.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*es.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*es.Translation MediaType/Media Type: ""
-*es.MediaType Saved/Impresora por defecto: ""
-*es.MediaType Thermal/Thermal Transfer Media: ""
-*es.MediaType Direct/Direct Thermal Media: ""
-*es.Translation PrinterSettings/Printer Settings: ""
-*es.Translation Darkness/Darkness: ""
-*es.Darkness -1/Impresora por defecto: ""
-*es.Darkness 1/1: ""
-*es.Darkness 2/2: ""
-*es.Darkness 3/3: ""
-*es.Darkness 4/4: ""
-*es.Darkness 5/5: ""
-*es.Darkness 6/6: ""
-*es.Darkness 7/7: ""
-*es.Darkness 8/8: ""
-*es.Darkness 9/9: ""
-*es.Darkness 10/10: ""
-*es.Darkness 11/11: ""
-*es.Darkness 12/12: ""
-*es.Darkness 13/13: ""
-*es.Darkness 14/14: ""
-*es.Darkness 15/15: ""
-*es.Darkness 16/16: ""
-*es.Darkness 17/17: ""
-*es.Darkness 18/18: ""
-*es.Darkness 19/19: ""
-*es.Darkness 20/20: ""
-*es.Darkness 21/21: ""
-*es.Darkness 22/22: ""
-*es.Darkness 23/23: ""
-*es.Darkness 24/24: ""
-*es.Darkness 25/25: ""
-*es.Darkness 26/26: ""
-*es.Darkness 27/27: ""
-*es.Darkness 28/28: ""
-*es.Darkness 29/29: ""
-*es.Darkness 30/30: ""
-*es.Translation zePrintRate/Print Rate: ""
-*es.zePrintRate Default/Impresora por defecto: ""
-*es.zePrintRate 1/1 inch/sec.: ""
-*es.zePrintRate 2/2 inches/sec.: ""
-*es.zePrintRate 3/3 inches/sec.: ""
-*es.zePrintRate 4/4 inches/sec.: ""
-*es.zePrintRate 5/5 inches/sec.: ""
-*es.zePrintRate 6/6 inches/sec.: ""
-*es.zePrintRate 7/7 inches/sec.: ""
-*es.zePrintRate 8/8 inches/sec.: ""
-*es.zePrintRate 9/9 inches/sec.: ""
-*es.zePrintRate 10/10 inches/sec.: ""
-*es.zePrintRate 11/11 inches/sec.: ""
-*es.zePrintRate 12/12 inches/sec.: ""
-*es.Translation zeLabelTop/Label Top: ""
-*es.zeLabelTop 200/Impresora por defecto: ""
-*es.zeLabelTop -120/-120: ""
-*es.zeLabelTop -115/-115: ""
-*es.zeLabelTop -110/-110: ""
-*es.zeLabelTop -105/-105: ""
-*es.zeLabelTop -100/-100: ""
-*es.zeLabelTop -95/-95: ""
-*es.zeLabelTop -90/-90: ""
-*es.zeLabelTop -85/-85: ""
-*es.zeLabelTop -80/-80: ""
-*es.zeLabelTop -75/-75: ""
-*es.zeLabelTop -70/-70: ""
-*es.zeLabelTop -65/-65: ""
-*es.zeLabelTop -60/-60: ""
-*es.zeLabelTop -55/-55: ""
-*es.zeLabelTop -50/-50: ""
-*es.zeLabelTop -45/-45: ""
-*es.zeLabelTop -40/-40: ""
-*es.zeLabelTop -35/-35: ""
-*es.zeLabelTop -30/-30: ""
-*es.zeLabelTop -25/-25: ""
-*es.zeLabelTop -20/-20: ""
-*es.zeLabelTop -15/-15: ""
-*es.zeLabelTop -10/-10: ""
-*es.zeLabelTop -5/-5: ""
-*es.zeLabelTop 0/0: ""
-*es.zeLabelTop 5/5: ""
-*es.zeLabelTop 10/10: ""
-*es.zeLabelTop 15/15: ""
-*es.zeLabelTop 20/20: ""
-*es.zeLabelTop 25/25: ""
-*es.zeLabelTop 30/30: ""
-*es.zeLabelTop 35/35: ""
-*es.zeLabelTop 40/40: ""
-*es.zeLabelTop 45/45: ""
-*es.zeLabelTop 50/50: ""
-*es.zeLabelTop 55/55: ""
-*es.zeLabelTop 60/60: ""
-*es.zeLabelTop 65/65: ""
-*es.zeLabelTop 70/70: ""
-*es.zeLabelTop 75/75: ""
-*es.zeLabelTop 80/80: ""
-*es.zeLabelTop 85/85: ""
-*es.zeLabelTop 90/90: ""
-*es.zeLabelTop 95/95: ""
-*es.zeLabelTop 100/100: ""
-*es.zeLabelTop 105/105: ""
-*es.zeLabelTop 110/110: ""
-*es.zeLabelTop 115/115: ""
-*es.zeLabelTop 120/120: ""
-*es.Translation zePrintMode/Print Mode: ""
-*es.zePrintMode Saved/Impresora por defecto: ""
-*es.zePrintMode Tear/Tear-Off: ""
-*es.zePrintMode Peel/Peel-Off: ""
-*es.zePrintMode Rewind/Rewind: ""
-*es.zePrintMode Applicator/Applicator: ""
-*es.zePrintMode Cutter/Cutter: ""
-*es.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*es.zeTearOffPosition 1000/Impresora por defecto: ""
-*es.zeTearOffPosition -120/-120: ""
-*es.zeTearOffPosition -115/-115: ""
-*es.zeTearOffPosition -110/-110: ""
-*es.zeTearOffPosition -105/-105: ""
-*es.zeTearOffPosition -100/-100: ""
-*es.zeTearOffPosition -95/-95: ""
-*es.zeTearOffPosition -90/-90: ""
-*es.zeTearOffPosition -85/-85: ""
-*es.zeTearOffPosition -80/-80: ""
-*es.zeTearOffPosition -75/-75: ""
-*es.zeTearOffPosition -70/-70: ""
-*es.zeTearOffPosition -65/-65: ""
-*es.zeTearOffPosition -60/-60: ""
-*es.zeTearOffPosition -55/-55: ""
-*es.zeTearOffPosition -50/-50: ""
-*es.zeTearOffPosition -45/-45: ""
-*es.zeTearOffPosition -40/-40: ""
-*es.zeTearOffPosition -35/-35: ""
-*es.zeTearOffPosition -30/-30: ""
-*es.zeTearOffPosition -25/-25: ""
-*es.zeTearOffPosition -20/-20: ""
-*es.zeTearOffPosition -15/-15: ""
-*es.zeTearOffPosition -10/-10: ""
-*es.zeTearOffPosition -5/-5: ""
-*es.zeTearOffPosition 0/0: ""
-*es.zeTearOffPosition 5/5: ""
-*es.zeTearOffPosition 10/10: ""
-*es.zeTearOffPosition 15/15: ""
-*es.zeTearOffPosition 20/20: ""
-*es.zeTearOffPosition 25/25: ""
-*es.zeTearOffPosition 30/30: ""
-*es.zeTearOffPosition 35/35: ""
-*es.zeTearOffPosition 40/40: ""
-*es.zeTearOffPosition 45/45: ""
-*es.zeTearOffPosition 50/50: ""
-*es.zeTearOffPosition 55/55: ""
-*es.zeTearOffPosition 60/60: ""
-*es.zeTearOffPosition 65/65: ""
-*es.zeTearOffPosition 70/70: ""
-*es.zeTearOffPosition 75/75: ""
-*es.zeTearOffPosition 80/80: ""
-*es.zeTearOffPosition 85/85: ""
-*es.zeTearOffPosition 90/90: ""
-*es.zeTearOffPosition 95/95: ""
-*es.zeTearOffPosition 100/100: ""
-*es.zeTearOffPosition 105/105: ""
-*es.zeTearOffPosition 110/110: ""
-*es.zeTearOffPosition 115/115: ""
-*es.zeTearOffPosition 120/120: ""
-*es.Translation zeErrorReprint/Reprint After Error: ""
-*es.zeErrorReprint Saved/Impresora por defecto: ""
-*es.zeErrorReprint Always/Always: ""
-*es.zeErrorReprint Never/Never: ""
-*fi.Translation Manufacturer/Zebra: ""
-*fi.Translation ModelName/Zebra ZPL Label Printer: ""
-*fi.Translation ShortNickName/Zebra ZPL Label Printer: ""
-*fi.Translation NickName/Zebra ZPL Label Printer, 1.4: ""
-*fi.Translation PageSize/Media Size: ""
-*fi.PageSize w90h18/1.25x0.25": ""
-*fi.PageSize w90h162/1.25x2.25": ""
-*fi.PageSize w108h18/1.50x0.25": ""
-*fi.PageSize w108h36/1.50x0.50": ""
-*fi.PageSize w108h72/1.50x1.00": ""
-*fi.PageSize w108h144/1.50x2.00": ""
-*fi.PageSize w144h26/2.00x0.37": ""
-*fi.PageSize w144h36/2.00x0.50": ""
-*fi.PageSize w144h72/2.00x1.00": ""
-*fi.PageSize w144h90/2.00x1.25": ""
-*fi.PageSize w144h288/2.00x4.00": ""
-*fi.PageSize w144h396/2.00x5.50": ""
-*fi.PageSize w162h36/2.25x0.50": ""
-*fi.PageSize w162h90/2.25x1.25": ""
-*fi.PageSize w162h288/2.25x4.00": ""
-*fi.PageSize w162h396/2.25x5.50": ""
-*fi.PageSize w171h396/2.38x5.50": ""
-*fi.PageSize w180h72/2.50x1.00": ""
-*fi.PageSize w180h144/2.50x2.00": ""
-*fi.PageSize w198h90/2.75x1.25": ""
-*fi.PageSize w216h72/3.00x1.00": ""
-*fi.PageSize w216h90/3.00x1.25": ""
-*fi.PageSize w216h144/3.00x2.00": ""
-*fi.PageSize w216h216/3.00x3.00": ""
-*fi.PageSize w216h360/3.00x5.00": ""
-*fi.PageSize w234h144/3.25x2.00": ""
-*fi.PageSize w234h360/3.25x5.00": ""
-*fi.PageSize w234h396/3.25x5.50": ""
-*fi.PageSize w234h419/3.25x5.83": ""
-*fi.PageSize w234h563/3.25x7.83": ""
-*fi.PageSize w252h72/3.50x1.00": ""
-*fi.PageSize w288h72/4.00x1.00": ""
-*fi.PageSize w288h144/4.00x2.00": ""
-*fi.PageSize w288h180/4.00x2.50": ""
-*fi.PageSize w288h216/4.00x3.00": ""
-*fi.PageSize w288h288/4.00x4.00": ""
-*fi.PageSize w288h360/4.00x5.00": ""
-*fi.PageSize w288h432/4.00x6.00": ""
-*fi.PageSize w288h468/4.00x6.50": ""
-*fi.PageSize w288h936/4.00x13.00": ""
-*fi.PageSize w432h72/6.00x1.00": ""
-*fi.PageSize w432h144/6.00x2.00": ""
-*fi.PageSize w432h216/6.00x3.00": ""
-*fi.PageSize w432h288/6.00x4.00": ""
-*fi.PageSize w432h360/6.00x5.00": ""
-*fi.PageSize w432h432/6.00x6.00": ""
-*fi.PageSize w432h468/6.00x6.50": ""
-*fi.PageSize w576h72/8.00x1.00": ""
-*fi.PageSize w576h144/8.00x2.00": ""
-*fi.PageSize w576h216/8.00x3.00": ""
-*fi.PageSize w576h288/8.00x4.00": ""
-*fi.PageSize w576h360/8.00x5.00": ""
-*fi.PageSize w576h432/8.00x6.00": ""
-*fi.PageSize w576h468/8.00x6.50": ""
-*fi.Translation Resolution/Resolution: ""
-*fi.Resolution 203dpi/203dpi: ""
-*fi.Resolution 300dpi/300dpi: ""
-*fi.Resolution 600dpi/600dpi: ""
-*fi.Translation zeMediaTracking/Media Tracking: ""
-*fi.zeMediaTracking Continuous/Continuous: ""
-*fi.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*fi.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*fi.Translation MediaType/Media Type: ""
-*fi.MediaType Saved/Nopea: ""
-*fi.MediaType Thermal/Thermal Transfer Media: ""
-*fi.MediaType Direct/Direct Thermal Media: ""
-*fi.Translation PrinterSettings/Printer Settings: ""
-*fi.Translation Darkness/Darkness: ""
-*fi.Darkness -1/Nopea: ""
-*fi.Darkness 1/1: ""
-*fi.Darkness 2/2: ""
-*fi.Darkness 3/3: ""
-*fi.Darkness 4/4: ""
-*fi.Darkness 5/5: ""
-*fi.Darkness 6/6: ""
-*fi.Darkness 7/7: ""
-*fi.Darkness 8/8: ""
-*fi.Darkness 9/9: ""
-*fi.Darkness 10/10: ""
-*fi.Darkness 11/11: ""
-*fi.Darkness 12/12: ""
-*fi.Darkness 13/13: ""
-*fi.Darkness 14/14: ""
-*fi.Darkness 15/15: ""
-*fi.Darkness 16/16: ""
-*fi.Darkness 17/17: ""
-*fi.Darkness 18/18: ""
-*fi.Darkness 19/19: ""
-*fi.Darkness 20/20: ""
-*fi.Darkness 21/21: ""
-*fi.Darkness 22/22: ""
-*fi.Darkness 23/23: ""
-*fi.Darkness 24/24: ""
-*fi.Darkness 25/25: ""
-*fi.Darkness 26/26: ""
-*fi.Darkness 27/27: ""
-*fi.Darkness 28/28: ""
-*fi.Darkness 29/29: ""
-*fi.Darkness 30/30: ""
-*fi.Translation zePrintRate/Print Rate: ""
-*fi.zePrintRate Default/Nopea: ""
-*fi.zePrintRate 1/1 inch/sec.: ""
-*fi.zePrintRate 2/2 inches/sec.: ""
-*fi.zePrintRate 3/3 inches/sec.: ""
-*fi.zePrintRate 4/4 inches/sec.: ""
-*fi.zePrintRate 5/5 inches/sec.: ""
-*fi.zePrintRate 6/6 inches/sec.: ""
-*fi.zePrintRate 7/7 inches/sec.: ""
-*fi.zePrintRate 8/8 inches/sec.: ""
-*fi.zePrintRate 9/9 inches/sec.: ""
-*fi.zePrintRate 10/10 inches/sec.: ""
-*fi.zePrintRate 11/11 inches/sec.: ""
-*fi.zePrintRate 12/12 inches/sec.: ""
-*fi.Translation zeLabelTop/Label Top: ""
-*fi.zeLabelTop 200/Nopea: ""
-*fi.zeLabelTop -120/-120: ""
-*fi.zeLabelTop -115/-115: ""
-*fi.zeLabelTop -110/-110: ""
-*fi.zeLabelTop -105/-105: ""
-*fi.zeLabelTop -100/-100: ""
-*fi.zeLabelTop -95/-95: ""
-*fi.zeLabelTop -90/-90: ""
-*fi.zeLabelTop -85/-85: ""
-*fi.zeLabelTop -80/-80: ""
-*fi.zeLabelTop -75/-75: ""
-*fi.zeLabelTop -70/-70: ""
-*fi.zeLabelTop -65/-65: ""
-*fi.zeLabelTop -60/-60: ""
-*fi.zeLabelTop -55/-55: ""
-*fi.zeLabelTop -50/-50: ""
-*fi.zeLabelTop -45/-45: ""
-*fi.zeLabelTop -40/-40: ""
-*fi.zeLabelTop -35/-35: ""
-*fi.zeLabelTop -30/-30: ""
-*fi.zeLabelTop -25/-25: ""
-*fi.zeLabelTop -20/-20: ""
-*fi.zeLabelTop -15/-15: ""
-*fi.zeLabelTop -10/-10: ""
-*fi.zeLabelTop -5/-5: ""
-*fi.zeLabelTop 0/0: ""
-*fi.zeLabelTop 5/5: ""
-*fi.zeLabelTop 10/10: ""
-*fi.zeLabelTop 15/15: ""
-*fi.zeLabelTop 20/20: ""
-*fi.zeLabelTop 25/25: ""
-*fi.zeLabelTop 30/30: ""
-*fi.zeLabelTop 35/35: ""
-*fi.zeLabelTop 40/40: ""
-*fi.zeLabelTop 45/45: ""
-*fi.zeLabelTop 50/50: ""
-*fi.zeLabelTop 55/55: ""
-*fi.zeLabelTop 60/60: ""
-*fi.zeLabelTop 65/65: ""
-*fi.zeLabelTop 70/70: ""
-*fi.zeLabelTop 75/75: ""
-*fi.zeLabelTop 80/80: ""
-*fi.zeLabelTop 85/85: ""
-*fi.zeLabelTop 90/90: ""
-*fi.zeLabelTop 95/95: ""
-*fi.zeLabelTop 100/100: ""
-*fi.zeLabelTop 105/105: ""
-*fi.zeLabelTop 110/110: ""
-*fi.zeLabelTop 115/115: ""
-*fi.zeLabelTop 120/120: ""
-*fi.Translation zePrintMode/Print Mode: ""
-*fi.zePrintMode Saved/Nopea: ""
-*fi.zePrintMode Tear/Tear-Off: ""
-*fi.zePrintMode Peel/Peel-Off: ""
-*fi.zePrintMode Rewind/Rewind: ""
-*fi.zePrintMode Applicator/Applicator: ""
-*fi.zePrintMode Cutter/Cutter: ""
-*fi.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*fi.zeTearOffPosition 1000/Nopea: ""
-*fi.zeTearOffPosition -120/-120: ""
-*fi.zeTearOffPosition -115/-115: ""
-*fi.zeTearOffPosition -110/-110: ""
-*fi.zeTearOffPosition -105/-105: ""
-*fi.zeTearOffPosition -100/-100: ""
-*fi.zeTearOffPosition -95/-95: ""
-*fi.zeTearOffPosition -90/-90: ""
-*fi.zeTearOffPosition -85/-85: ""
-*fi.zeTearOffPosition -80/-80: ""
-*fi.zeTearOffPosition -75/-75: ""
-*fi.zeTearOffPosition -70/-70: ""
-*fi.zeTearOffPosition -65/-65: ""
-*fi.zeTearOffPosition -60/-60: ""
-*fi.zeTearOffPosition -55/-55: ""
-*fi.zeTearOffPosition -50/-50: ""
-*fi.zeTearOffPosition -45/-45: ""
-*fi.zeTearOffPosition -40/-40: ""
-*fi.zeTearOffPosition -35/-35: ""
-*fi.zeTearOffPosition -30/-30: ""
-*fi.zeTearOffPosition -25/-25: ""
-*fi.zeTearOffPosition -20/-20: ""
-*fi.zeTearOffPosition -15/-15: ""
-*fi.zeTearOffPosition -10/-10: ""
-*fi.zeTearOffPosition -5/-5: ""
-*fi.zeTearOffPosition 0/0: ""
-*fi.zeTearOffPosition 5/5: ""
-*fi.zeTearOffPosition 10/10: ""
-*fi.zeTearOffPosition 15/15: ""
-*fi.zeTearOffPosition 20/20: ""
-*fi.zeTearOffPosition 25/25: ""
-*fi.zeTearOffPosition 30/30: ""
-*fi.zeTearOffPosition 35/35: ""
-*fi.zeTearOffPosition 40/40: ""
-*fi.zeTearOffPosition 45/45: ""
-*fi.zeTearOffPosition 50/50: ""
-*fi.zeTearOffPosition 55/55: ""
-*fi.zeTearOffPosition 60/60: ""
-*fi.zeTearOffPosition 65/65: ""
-*fi.zeTearOffPosition 70/70: ""
-*fi.zeTearOffPosition 75/75: ""
-*fi.zeTearOffPosition 80/80: ""
-*fi.zeTearOffPosition 85/85: ""
-*fi.zeTearOffPosition 90/90: ""
-*fi.zeTearOffPosition 95/95: ""
-*fi.zeTearOffPosition 100/100: ""
-*fi.zeTearOffPosition 105/105: ""
-*fi.zeTearOffPosition 110/110: ""
-*fi.zeTearOffPosition 115/115: ""
-*fi.zeTearOffPosition 120/120: ""
-*fi.Translation zeErrorReprint/Reprint After Error: ""
-*fi.zeErrorReprint Saved/Nopea: ""
-*fi.zeErrorReprint Always/Always: ""
-*fi.zeErrorReprint Never/Never: ""
-*fr.Translation Manufacturer/Zebra: ""
-*fr.Translation ModelName/Zebra ZPL Label Printer: ""
-*fr.Translation ShortNickName/Zebra ZPL Label Printer: ""
-*fr.Translation NickName/Zebra ZPL Label Printer, 1.4: ""
-*fr.Translation PageSize/Media Size: ""
-*fr.PageSize w90h18/1.25x0.25": ""
-*fr.PageSize w90h162/1.25x2.25": ""
-*fr.PageSize w108h18/1.50x0.25": ""
-*fr.PageSize w108h36/1.50x0.50": ""
-*fr.PageSize w108h72/1.50x1.00": ""
-*fr.PageSize w108h144/1.50x2.00": ""
-*fr.PageSize w144h26/2.00x0.37": ""
-*fr.PageSize w144h36/2.00x0.50": ""
-*fr.PageSize w144h72/2.00x1.00": ""
-*fr.PageSize w144h90/2.00x1.25": ""
-*fr.PageSize w144h288/2.00x4.00": ""
-*fr.PageSize w144h396/2.00x5.50": ""
-*fr.PageSize w162h36/2.25x0.50": ""
-*fr.PageSize w162h90/2.25x1.25": ""
-*fr.PageSize w162h288/2.25x4.00": ""
-*fr.PageSize w162h396/2.25x5.50": ""
-*fr.PageSize w171h396/2.38x5.50": ""
-*fr.PageSize w180h72/2.50x1.00": ""
-*fr.PageSize w180h144/2.50x2.00": ""
-*fr.PageSize w198h90/2.75x1.25": ""
-*fr.PageSize w216h72/3.00x1.00": ""
-*fr.PageSize w216h90/3.00x1.25": ""
-*fr.PageSize w216h144/3.00x2.00": ""
-*fr.PageSize w216h216/3.00x3.00": ""
-*fr.PageSize w216h360/3.00x5.00": ""
-*fr.PageSize w234h144/3.25x2.00": ""
-*fr.PageSize w234h360/3.25x5.00": ""
-*fr.PageSize w234h396/3.25x5.50": ""
-*fr.PageSize w234h419/3.25x5.83": ""
-*fr.PageSize w234h563/3.25x7.83": ""
-*fr.PageSize w252h72/3.50x1.00": ""
-*fr.PageSize w288h72/4.00x1.00": ""
-*fr.PageSize w288h144/4.00x2.00": ""
-*fr.PageSize w288h180/4.00x2.50": ""
-*fr.PageSize w288h216/4.00x3.00": ""
-*fr.PageSize w288h288/4.00x4.00": ""
-*fr.PageSize w288h360/4.00x5.00": ""
-*fr.PageSize w288h432/4.00x6.00": ""
-*fr.PageSize w288h468/4.00x6.50": ""
-*fr.PageSize w288h936/4.00x13.00": ""
-*fr.PageSize w432h72/6.00x1.00": ""
-*fr.PageSize w432h144/6.00x2.00": ""
-*fr.PageSize w432h216/6.00x3.00": ""
-*fr.PageSize w432h288/6.00x4.00": ""
-*fr.PageSize w432h360/6.00x5.00": ""
-*fr.PageSize w432h432/6.00x6.00": ""
-*fr.PageSize w432h468/6.00x6.50": ""
-*fr.PageSize w576h72/8.00x1.00": ""
-*fr.PageSize w576h144/8.00x2.00": ""
-*fr.PageSize w576h216/8.00x3.00": ""
-*fr.PageSize w576h288/8.00x4.00": ""
-*fr.PageSize w576h360/8.00x5.00": ""
-*fr.PageSize w576h432/8.00x6.00": ""
-*fr.PageSize w576h468/8.00x6.50": ""
-*fr.Translation Resolution/Resolution: ""
-*fr.Resolution 203dpi/203dpi: ""
-*fr.Resolution 300dpi/300dpi: ""
-*fr.Resolution 600dpi/600dpi: ""
-*fr.Translation zeMediaTracking/Media Tracking: ""
-*fr.zeMediaTracking Continuous/Continuous: ""
-*fr.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*fr.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*fr.Translation MediaType/Media Type: ""
-*fr.MediaType Saved/Imprimante par défaut: ""
-*fr.MediaType Thermal/Thermal Transfer Media: ""
-*fr.MediaType Direct/Direct Thermal Media: ""
-*fr.Translation PrinterSettings/Printer Settings: ""
-*fr.Translation Darkness/Darkness: ""
-*fr.Darkness -1/Imprimante par défaut: ""
-*fr.Darkness 1/1: ""
-*fr.Darkness 2/2: ""
-*fr.Darkness 3/3: ""
-*fr.Darkness 4/4: ""
-*fr.Darkness 5/5: ""
-*fr.Darkness 6/6: ""
-*fr.Darkness 7/7: ""
-*fr.Darkness 8/8: ""
-*fr.Darkness 9/9: ""
-*fr.Darkness 10/10: ""
-*fr.Darkness 11/11: ""
-*fr.Darkness 12/12: ""
-*fr.Darkness 13/13: ""
-*fr.Darkness 14/14: ""
-*fr.Darkness 15/15: ""
-*fr.Darkness 16/16: ""
-*fr.Darkness 17/17: ""
-*fr.Darkness 18/18: ""
-*fr.Darkness 19/19: ""
-*fr.Darkness 20/20: ""
-*fr.Darkness 21/21: ""
-*fr.Darkness 22/22: ""
-*fr.Darkness 23/23: ""
-*fr.Darkness 24/24: ""
-*fr.Darkness 25/25: ""
-*fr.Darkness 26/26: ""
-*fr.Darkness 27/27: ""
-*fr.Darkness 28/28: ""
-*fr.Darkness 29/29: ""
-*fr.Darkness 30/30: ""
-*fr.Translation zePrintRate/Print Rate: ""
-*fr.zePrintRate Default/Imprimante par défaut: ""
-*fr.zePrintRate 1/1 inch/sec.: ""
-*fr.zePrintRate 2/2 inches/sec.: ""
-*fr.zePrintRate 3/3 inches/sec.: ""
-*fr.zePrintRate 4/4 inches/sec.: ""
-*fr.zePrintRate 5/5 inches/sec.: ""
-*fr.zePrintRate 6/6 inches/sec.: ""
-*fr.zePrintRate 7/7 inches/sec.: ""
-*fr.zePrintRate 8/8 inches/sec.: ""
-*fr.zePrintRate 9/9 inches/sec.: ""
-*fr.zePrintRate 10/10 inches/sec.: ""
-*fr.zePrintRate 11/11 inches/sec.: ""
-*fr.zePrintRate 12/12 inches/sec.: ""
-*fr.Translation zeLabelTop/Label Top: ""
-*fr.zeLabelTop 200/Imprimante par défaut: ""
-*fr.zeLabelTop -120/-120: ""
-*fr.zeLabelTop -115/-115: ""
-*fr.zeLabelTop -110/-110: ""
-*fr.zeLabelTop -105/-105: ""
-*fr.zeLabelTop -100/-100: ""
-*fr.zeLabelTop -95/-95: ""
-*fr.zeLabelTop -90/-90: ""
-*fr.zeLabelTop -85/-85: ""
-*fr.zeLabelTop -80/-80: ""
-*fr.zeLabelTop -75/-75: ""
-*fr.zeLabelTop -70/-70: ""
-*fr.zeLabelTop -65/-65: ""
-*fr.zeLabelTop -60/-60: ""
-*fr.zeLabelTop -55/-55: ""
-*fr.zeLabelTop -50/-50: ""
-*fr.zeLabelTop -45/-45: ""
-*fr.zeLabelTop -40/-40: ""
-*fr.zeLabelTop -35/-35: ""
-*fr.zeLabelTop -30/-30: ""
-*fr.zeLabelTop -25/-25: ""
-*fr.zeLabelTop -20/-20: ""
-*fr.zeLabelTop -15/-15: ""
-*fr.zeLabelTop -10/-10: ""
-*fr.zeLabelTop -5/-5: ""
-*fr.zeLabelTop 0/0: ""
-*fr.zeLabelTop 5/5: ""
-*fr.zeLabelTop 10/10: ""
-*fr.zeLabelTop 15/15: ""
-*fr.zeLabelTop 20/20: ""
-*fr.zeLabelTop 25/25: ""
-*fr.zeLabelTop 30/30: ""
-*fr.zeLabelTop 35/35: ""
-*fr.zeLabelTop 40/40: ""
-*fr.zeLabelTop 45/45: ""
-*fr.zeLabelTop 50/50: ""
-*fr.zeLabelTop 55/55: ""
-*fr.zeLabelTop 60/60: ""
-*fr.zeLabelTop 65/65: ""
-*fr.zeLabelTop 70/70: ""
-*fr.zeLabelTop 75/75: ""
-*fr.zeLabelTop 80/80: ""
-*fr.zeLabelTop 85/85: ""
-*fr.zeLabelTop 90/90: ""
-*fr.zeLabelTop 95/95: ""
-*fr.zeLabelTop 100/100: ""
-*fr.zeLabelTop 105/105: ""
-*fr.zeLabelTop 110/110: ""
-*fr.zeLabelTop 115/115: ""
-*fr.zeLabelTop 120/120: ""
-*fr.Translation zePrintMode/Print Mode: ""
-*fr.zePrintMode Saved/Imprimante par défaut: ""
-*fr.zePrintMode Tear/Tear-Off: ""
-*fr.zePrintMode Peel/Peel-Off: ""
-*fr.zePrintMode Rewind/Rewind: ""
-*fr.zePrintMode Applicator/Applicator: ""
-*fr.zePrintMode Cutter/Cutter: ""
-*fr.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*fr.zeTearOffPosition 1000/Imprimante par défaut: ""
-*fr.zeTearOffPosition -120/-120: ""
-*fr.zeTearOffPosition -115/-115: ""
-*fr.zeTearOffPosition -110/-110: ""
-*fr.zeTearOffPosition -105/-105: ""
-*fr.zeTearOffPosition -100/-100: ""
-*fr.zeTearOffPosition -95/-95: ""
-*fr.zeTearOffPosition -90/-90: ""
-*fr.zeTearOffPosition -85/-85: ""
-*fr.zeTearOffPosition -80/-80: ""
-*fr.zeTearOffPosition -75/-75: ""
-*fr.zeTearOffPosition -70/-70: ""
-*fr.zeTearOffPosition -65/-65: ""
-*fr.zeTearOffPosition -60/-60: ""
-*fr.zeTearOffPosition -55/-55: ""
-*fr.zeTearOffPosition -50/-50: ""
-*fr.zeTearOffPosition -45/-45: ""
-*fr.zeTearOffPosition -40/-40: ""
-*fr.zeTearOffPosition -35/-35: ""
-*fr.zeTearOffPosition -30/-30: ""
-*fr.zeTearOffPosition -25/-25: ""
-*fr.zeTearOffPosition -20/-20: ""
-*fr.zeTearOffPosition -15/-15: ""
-*fr.zeTearOffPosition -10/-10: ""
-*fr.zeTearOffPosition -5/-5: ""
-*fr.zeTearOffPosition 0/0: ""
-*fr.zeTearOffPosition 5/5: ""
-*fr.zeTearOffPosition 10/10: ""
-*fr.zeTearOffPosition 15/15: ""
-*fr.zeTearOffPosition 20/20: ""
-*fr.zeTearOffPosition 25/25: ""
-*fr.zeTearOffPosition 30/30: ""
-*fr.zeTearOffPosition 35/35: ""
-*fr.zeTearOffPosition 40/40: ""
-*fr.zeTearOffPosition 45/45: ""
-*fr.zeTearOffPosition 50/50: ""
-*fr.zeTearOffPosition 55/55: ""
-*fr.zeTearOffPosition 60/60: ""
-*fr.zeTearOffPosition 65/65: ""
-*fr.zeTearOffPosition 70/70: ""
-*fr.zeTearOffPosition 75/75: ""
-*fr.zeTearOffPosition 80/80: ""
-*fr.zeTearOffPosition 85/85: ""
-*fr.zeTearOffPosition 90/90: ""
-*fr.zeTearOffPosition 95/95: ""
-*fr.zeTearOffPosition 100/100: ""
-*fr.zeTearOffPosition 105/105: ""
-*fr.zeTearOffPosition 110/110: ""
-*fr.zeTearOffPosition 115/115: ""
-*fr.zeTearOffPosition 120/120: ""
-*fr.Translation zeErrorReprint/Reprint After Error: ""
-*fr.zeErrorReprint Saved/Imprimante par défaut: ""
-*fr.zeErrorReprint Always/Always: ""
-*fr.zeErrorReprint Never/Never: ""
-*it.Translation Manufacturer/Zebra: ""
-*it.Translation ModelName/Zebra ZPL Label Printer: ""
-*it.Translation ShortNickName/Zebra ZPL Label Printer: ""
-*it.Translation NickName/Zebra ZPL Label Printer, 1.4: ""
-*it.Translation PageSize/Media Size: ""
-*it.PageSize w90h18/1.25x0.25": ""
-*it.PageSize w90h162/1.25x2.25": ""
-*it.PageSize w108h18/1.50x0.25": ""
-*it.PageSize w108h36/1.50x0.50": ""
-*it.PageSize w108h72/1.50x1.00": ""
-*it.PageSize w108h144/1.50x2.00": ""
-*it.PageSize w144h26/2.00x0.37": ""
-*it.PageSize w144h36/2.00x0.50": ""
-*it.PageSize w144h72/2.00x1.00": ""
-*it.PageSize w144h90/2.00x1.25": ""
-*it.PageSize w144h288/2.00x4.00": ""
-*it.PageSize w144h396/2.00x5.50": ""
-*it.PageSize w162h36/2.25x0.50": ""
-*it.PageSize w162h90/2.25x1.25": ""
-*it.PageSize w162h288/2.25x4.00": ""
-*it.PageSize w162h396/2.25x5.50": ""
-*it.PageSize w171h396/2.38x5.50": ""
-*it.PageSize w180h72/2.50x1.00": ""
-*it.PageSize w180h144/2.50x2.00": ""
-*it.PageSize w198h90/2.75x1.25": ""
-*it.PageSize w216h72/3.00x1.00": ""
-*it.PageSize w216h90/3.00x1.25": ""
-*it.PageSize w216h144/3.00x2.00": ""
-*it.PageSize w216h216/3.00x3.00": ""
-*it.PageSize w216h360/3.00x5.00": ""
-*it.PageSize w234h144/3.25x2.00": ""
-*it.PageSize w234h360/3.25x5.00": ""
-*it.PageSize w234h396/3.25x5.50": ""
-*it.PageSize w234h419/3.25x5.83": ""
-*it.PageSize w234h563/3.25x7.83": ""
-*it.PageSize w252h72/3.50x1.00": ""
-*it.PageSize w288h72/4.00x1.00": ""
-*it.PageSize w288h144/4.00x2.00": ""
-*it.PageSize w288h180/4.00x2.50": ""
-*it.PageSize w288h216/4.00x3.00": ""
-*it.PageSize w288h288/4.00x4.00": ""
-*it.PageSize w288h360/4.00x5.00": ""
-*it.PageSize w288h432/4.00x6.00": ""
-*it.PageSize w288h468/4.00x6.50": ""
-*it.PageSize w288h936/4.00x13.00": ""
-*it.PageSize w432h72/6.00x1.00": ""
-*it.PageSize w432h144/6.00x2.00": ""
-*it.PageSize w432h216/6.00x3.00": ""
-*it.PageSize w432h288/6.00x4.00": ""
-*it.PageSize w432h360/6.00x5.00": ""
-*it.PageSize w432h432/6.00x6.00": ""
-*it.PageSize w432h468/6.00x6.50": ""
-*it.PageSize w576h72/8.00x1.00": ""
-*it.PageSize w576h144/8.00x2.00": ""
-*it.PageSize w576h216/8.00x3.00": ""
-*it.PageSize w576h288/8.00x4.00": ""
-*it.PageSize w576h360/8.00x5.00": ""
-*it.PageSize w576h432/8.00x6.00": ""
-*it.PageSize w576h468/8.00x6.50": ""
-*it.Translation Resolution/Resolution: ""
-*it.Resolution 203dpi/203dpi: ""
-*it.Resolution 300dpi/300dpi: ""
-*it.Resolution 600dpi/600dpi: ""
-*it.Translation zeMediaTracking/Media Tracking: ""
-*it.zeMediaTracking Continuous/Continuous: ""
-*it.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*it.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*it.Translation MediaType/Media Type: ""
-*it.MediaType Saved/Impostazioni predefinite stampante: ""
-*it.MediaType Thermal/Thermal Transfer Media: ""
-*it.MediaType Direct/Direct Thermal Media: ""
-*it.Translation PrinterSettings/Printer Settings: ""
-*it.Translation Darkness/Darkness: ""
-*it.Darkness -1/Impostazioni predefinite stampante: ""
-*it.Darkness 1/1: ""
-*it.Darkness 2/2: ""
-*it.Darkness 3/3: ""
-*it.Darkness 4/4: ""
-*it.Darkness 5/5: ""
-*it.Darkness 6/6: ""
-*it.Darkness 7/7: ""
-*it.Darkness 8/8: ""
-*it.Darkness 9/9: ""
-*it.Darkness 10/10: ""
-*it.Darkness 11/11: ""
-*it.Darkness 12/12: ""
-*it.Darkness 13/13: ""
-*it.Darkness 14/14: ""
-*it.Darkness 15/15: ""
-*it.Darkness 16/16: ""
-*it.Darkness 17/17: ""
-*it.Darkness 18/18: ""
-*it.Darkness 19/19: ""
-*it.Darkness 20/20: ""
-*it.Darkness 21/21: ""
-*it.Darkness 22/22: ""
-*it.Darkness 23/23: ""
-*it.Darkness 24/24: ""
-*it.Darkness 25/25: ""
-*it.Darkness 26/26: ""
-*it.Darkness 27/27: ""
-*it.Darkness 28/28: ""
-*it.Darkness 29/29: ""
-*it.Darkness 30/30: ""
-*it.Translation zePrintRate/Print Rate: ""
-*it.zePrintRate Default/Impostazioni predefinite stampante: ""
-*it.zePrintRate 1/1 inch/sec.: ""
-*it.zePrintRate 2/2 inches/sec.: ""
-*it.zePrintRate 3/3 inches/sec.: ""
-*it.zePrintRate 4/4 inches/sec.: ""
-*it.zePrintRate 5/5 inches/sec.: ""
-*it.zePrintRate 6/6 inches/sec.: ""
-*it.zePrintRate 7/7 inches/sec.: ""
-*it.zePrintRate 8/8 inches/sec.: ""
-*it.zePrintRate 9/9 inches/sec.: ""
-*it.zePrintRate 10/10 inches/sec.: ""
-*it.zePrintRate 11/11 inches/sec.: ""
-*it.zePrintRate 12/12 inches/sec.: ""
-*it.Translation zeLabelTop/Label Top: ""
-*it.zeLabelTop 200/Impostazioni predefinite stampante: ""
-*it.zeLabelTop -120/-120: ""
-*it.zeLabelTop -115/-115: ""
-*it.zeLabelTop -110/-110: ""
-*it.zeLabelTop -105/-105: ""
-*it.zeLabelTop -100/-100: ""
-*it.zeLabelTop -95/-95: ""
-*it.zeLabelTop -90/-90: ""
-*it.zeLabelTop -85/-85: ""
-*it.zeLabelTop -80/-80: ""
-*it.zeLabelTop -75/-75: ""
-*it.zeLabelTop -70/-70: ""
-*it.zeLabelTop -65/-65: ""
-*it.zeLabelTop -60/-60: ""
-*it.zeLabelTop -55/-55: ""
-*it.zeLabelTop -50/-50: ""
-*it.zeLabelTop -45/-45: ""
-*it.zeLabelTop -40/-40: ""
-*it.zeLabelTop -35/-35: ""
-*it.zeLabelTop -30/-30: ""
-*it.zeLabelTop -25/-25: ""
-*it.zeLabelTop -20/-20: ""
-*it.zeLabelTop -15/-15: ""
-*it.zeLabelTop -10/-10: ""
-*it.zeLabelTop -5/-5: ""
-*it.zeLabelTop 0/0: ""
-*it.zeLabelTop 5/5: ""
-*it.zeLabelTop 10/10: ""
-*it.zeLabelTop 15/15: ""
-*it.zeLabelTop 20/20: ""
-*it.zeLabelTop 25/25: ""
-*it.zeLabelTop 30/30: ""
-*it.zeLabelTop 35/35: ""
-*it.zeLabelTop 40/40: ""
-*it.zeLabelTop 45/45: ""
-*it.zeLabelTop 50/50: ""
-*it.zeLabelTop 55/55: ""
-*it.zeLabelTop 60/60: ""
-*it.zeLabelTop 65/65: ""
-*it.zeLabelTop 70/70: ""
-*it.zeLabelTop 75/75: ""
-*it.zeLabelTop 80/80: ""
-*it.zeLabelTop 85/85: ""
-*it.zeLabelTop 90/90: ""
-*it.zeLabelTop 95/95: ""
-*it.zeLabelTop 100/100: ""
-*it.zeLabelTop 105/105: ""
-*it.zeLabelTop 110/110: ""
-*it.zeLabelTop 115/115: ""
-*it.zeLabelTop 120/120: ""
-*it.Translation zePrintMode/Print Mode: ""
-*it.zePrintMode Saved/Impostazioni predefinite stampante: ""
-*it.zePrintMode Tear/Tear-Off: ""
-*it.zePrintMode Peel/Peel-Off: ""
-*it.zePrintMode Rewind/Rewind: ""
-*it.zePrintMode Applicator/Applicator: ""
-*it.zePrintMode Cutter/Cutter: ""
-*it.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*it.zeTearOffPosition 1000/Impostazioni predefinite stampante: ""
-*it.zeTearOffPosition -120/-120: ""
-*it.zeTearOffPosition -115/-115: ""
-*it.zeTearOffPosition -110/-110: ""
-*it.zeTearOffPosition -105/-105: ""
-*it.zeTearOffPosition -100/-100: ""
-*it.zeTearOffPosition -95/-95: ""
-*it.zeTearOffPosition -90/-90: ""
-*it.zeTearOffPosition -85/-85: ""
-*it.zeTearOffPosition -80/-80: ""
-*it.zeTearOffPosition -75/-75: ""
-*it.zeTearOffPosition -70/-70: ""
-*it.zeTearOffPosition -65/-65: ""
-*it.zeTearOffPosition -60/-60: ""
-*it.zeTearOffPosition -55/-55: ""
-*it.zeTearOffPosition -50/-50: ""
-*it.zeTearOffPosition -45/-45: ""
-*it.zeTearOffPosition -40/-40: ""
-*it.zeTearOffPosition -35/-35: ""
-*it.zeTearOffPosition -30/-30: ""
-*it.zeTearOffPosition -25/-25: ""
-*it.zeTearOffPosition -20/-20: ""
-*it.zeTearOffPosition -15/-15: ""
-*it.zeTearOffPosition -10/-10: ""
-*it.zeTearOffPosition -5/-5: ""
-*it.zeTearOffPosition 0/0: ""
-*it.zeTearOffPosition 5/5: ""
-*it.zeTearOffPosition 10/10: ""
-*it.zeTearOffPosition 15/15: ""
-*it.zeTearOffPosition 20/20: ""
-*it.zeTearOffPosition 25/25: ""
-*it.zeTearOffPosition 30/30: ""
-*it.zeTearOffPosition 35/35: ""
-*it.zeTearOffPosition 40/40: ""
-*it.zeTearOffPosition 45/45: ""
-*it.zeTearOffPosition 50/50: ""
-*it.zeTearOffPosition 55/55: ""
-*it.zeTearOffPosition 60/60: ""
-*it.zeTearOffPosition 65/65: ""
-*it.zeTearOffPosition 70/70: ""
-*it.zeTearOffPosition 75/75: ""
-*it.zeTearOffPosition 80/80: ""
-*it.zeTearOffPosition 85/85: ""
-*it.zeTearOffPosition 90/90: ""
-*it.zeTearOffPosition 95/95: ""
-*it.zeTearOffPosition 100/100: ""
-*it.zeTearOffPosition 105/105: ""
-*it.zeTearOffPosition 110/110: ""
-*it.zeTearOffPosition 115/115: ""
-*it.zeTearOffPosition 120/120: ""
-*it.Translation zeErrorReprint/Reprint After Error: ""
-*it.zeErrorReprint Saved/Impostazioni predefinite stampante: ""
-*it.zeErrorReprint Always/Always: ""
-*it.zeErrorReprint Never/Never: ""
-*ja.Translation Manufacturer/Zebra: ""
-*ja.Translation ModelName/Zebra ZPL Label Printer: ""
-*ja.Translation ShortNickName/Zebra ZPL Label Printer: ""
-*ja.Translation NickName/Zebra ZPL Label Printer, 1.4: ""
-*ja.Translation PageSize/Media Size: ""
-*ja.PageSize w90h18/1.25x0.25": ""
-*ja.PageSize w90h162/1.25x2.25": ""
-*ja.PageSize w108h18/1.50x0.25": ""
-*ja.PageSize w108h36/1.50x0.50": ""
-*ja.PageSize w108h72/1.50x1.00": ""
-*ja.PageSize w108h144/1.50x2.00": ""
-*ja.PageSize w144h26/2.00x0.37": ""
-*ja.PageSize w144h36/2.00x0.50": ""
-*ja.PageSize w144h72/2.00x1.00": ""
-*ja.PageSize w144h90/2.00x1.25": ""
-*ja.PageSize w144h288/2.00x4.00": ""
-*ja.PageSize w144h396/2.00x5.50": ""
-*ja.PageSize w162h36/2.25x0.50": ""
-*ja.PageSize w162h90/2.25x1.25": ""
-*ja.PageSize w162h288/2.25x4.00": ""
-*ja.PageSize w162h396/2.25x5.50": ""
-*ja.PageSize w171h396/2.38x5.50": ""
-*ja.PageSize w180h72/2.50x1.00": ""
-*ja.PageSize w180h144/2.50x2.00": ""
-*ja.PageSize w198h90/2.75x1.25": ""
-*ja.PageSize w216h72/3.00x1.00": ""
-*ja.PageSize w216h90/3.00x1.25": ""
-*ja.PageSize w216h144/3.00x2.00": ""
-*ja.PageSize w216h216/3.00x3.00": ""
-*ja.PageSize w216h360/3.00x5.00": ""
-*ja.PageSize w234h144/3.25x2.00": ""
-*ja.PageSize w234h360/3.25x5.00": ""
-*ja.PageSize w234h396/3.25x5.50": ""
-*ja.PageSize w234h419/3.25x5.83": ""
-*ja.PageSize w234h563/3.25x7.83": ""
-*ja.PageSize w252h72/3.50x1.00": ""
-*ja.PageSize w288h72/4.00x1.00": ""
-*ja.PageSize w288h144/4.00x2.00": ""
-*ja.PageSize w288h180/4.00x2.50": ""
-*ja.PageSize w288h216/4.00x3.00": ""
-*ja.PageSize w288h288/4.00x4.00": ""
-*ja.PageSize w288h360/4.00x5.00": ""
-*ja.PageSize w288h432/4.00x6.00": ""
-*ja.PageSize w288h468/4.00x6.50": ""
-*ja.PageSize w288h936/4.00x13.00": ""
-*ja.PageSize w432h72/6.00x1.00": ""
-*ja.PageSize w432h144/6.00x2.00": ""
-*ja.PageSize w432h216/6.00x3.00": ""
-*ja.PageSize w432h288/6.00x4.00": ""
-*ja.PageSize w432h360/6.00x5.00": ""
-*ja.PageSize w432h432/6.00x6.00": ""
-*ja.PageSize w432h468/6.00x6.50": ""
-*ja.PageSize w576h72/8.00x1.00": ""
-*ja.PageSize w576h144/8.00x2.00": ""
-*ja.PageSize w576h216/8.00x3.00": ""
-*ja.PageSize w576h288/8.00x4.00": ""
-*ja.PageSize w576h360/8.00x5.00": ""
-*ja.PageSize w576h432/8.00x6.00": ""
-*ja.PageSize w576h468/8.00x6.50": ""
-*ja.Translation Resolution/Resolution: ""
-*ja.Resolution 203dpi/203dpi: ""
-*ja.Resolution 300dpi/300dpi: ""
-*ja.Resolution 600dpi/600dpi: ""
-*ja.Translation zeMediaTracking/Media Tracking: ""
-*ja.zeMediaTracking Continuous/Continuous: ""
-*ja.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*ja.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*ja.Translation MediaType/Media Type: ""
-*ja.MediaType Saved/システムデフォルト: ""
-*ja.MediaType Thermal/Thermal Transfer Media: ""
-*ja.MediaType Direct/Direct Thermal Media: ""
-*ja.Translation PrinterSettings/Printer Settings: ""
-*ja.Translation Darkness/Darkness: ""
-*ja.Darkness -1/システムデフォルト: ""
-*ja.Darkness 1/1: ""
-*ja.Darkness 2/2: ""
-*ja.Darkness 3/3: ""
-*ja.Darkness 4/4: ""
-*ja.Darkness 5/5: ""
-*ja.Darkness 6/6: ""
-*ja.Darkness 7/7: ""
-*ja.Darkness 8/8: ""
-*ja.Darkness 9/9: ""
-*ja.Darkness 10/10: ""
-*ja.Darkness 11/11: ""
-*ja.Darkness 12/12: ""
-*ja.Darkness 13/13: ""
-*ja.Darkness 14/14: ""
-*ja.Darkness 15/15: ""
-*ja.Darkness 16/16: ""
-*ja.Darkness 17/17: ""
-*ja.Darkness 18/18: ""
-*ja.Darkness 19/19: ""
-*ja.Darkness 20/20: ""
-*ja.Darkness 21/21: ""
-*ja.Darkness 22/22: ""
-*ja.Darkness 23/23: ""
-*ja.Darkness 24/24: ""
-*ja.Darkness 25/25: ""
-*ja.Darkness 26/26: ""
-*ja.Darkness 27/27: ""
-*ja.Darkness 28/28: ""
-*ja.Darkness 29/29: ""
-*ja.Darkness 30/30: ""
-*ja.Translation zePrintRate/Print Rate: ""
-*ja.zePrintRate Default/システムデフォルト: ""
-*ja.zePrintRate 1/1 inch/sec.: ""
-*ja.zePrintRate 2/2 inches/sec.: ""
-*ja.zePrintRate 3/3 inches/sec.: ""
-*ja.zePrintRate 4/4 inches/sec.: ""
-*ja.zePrintRate 5/5 inches/sec.: ""
-*ja.zePrintRate 6/6 inches/sec.: ""
-*ja.zePrintRate 7/7 inches/sec.: ""
-*ja.zePrintRate 8/8 inches/sec.: ""
-*ja.zePrintRate 9/9 inches/sec.: ""
-*ja.zePrintRate 10/10 inches/sec.: ""
-*ja.zePrintRate 11/11 inches/sec.: ""
-*ja.zePrintRate 12/12 inches/sec.: ""
-*ja.Translation zeLabelTop/Label Top: ""
-*ja.zeLabelTop 200/システムデフォルト: ""
-*ja.zeLabelTop -120/-120: ""
-*ja.zeLabelTop -115/-115: ""
-*ja.zeLabelTop -110/-110: ""
-*ja.zeLabelTop -105/-105: ""
-*ja.zeLabelTop -100/-100: ""
-*ja.zeLabelTop -95/-95: ""
-*ja.zeLabelTop -90/-90: ""
-*ja.zeLabelTop -85/-85: ""
-*ja.zeLabelTop -80/-80: ""
-*ja.zeLabelTop -75/-75: ""
-*ja.zeLabelTop -70/-70: ""
-*ja.zeLabelTop -65/-65: ""
-*ja.zeLabelTop -60/-60: ""
-*ja.zeLabelTop -55/-55: ""
-*ja.zeLabelTop -50/-50: ""
-*ja.zeLabelTop -45/-45: ""
-*ja.zeLabelTop -40/-40: ""
-*ja.zeLabelTop -35/-35: ""
-*ja.zeLabelTop -30/-30: ""
-*ja.zeLabelTop -25/-25: ""
-*ja.zeLabelTop -20/-20: ""
-*ja.zeLabelTop -15/-15: ""
-*ja.zeLabelTop -10/-10: ""
-*ja.zeLabelTop -5/-5: ""
-*ja.zeLabelTop 0/0: ""
-*ja.zeLabelTop 5/5: ""
-*ja.zeLabelTop 10/10: ""
-*ja.zeLabelTop 15/15: ""
-*ja.zeLabelTop 20/20: ""
-*ja.zeLabelTop 25/25: ""
-*ja.zeLabelTop 30/30: ""
-*ja.zeLabelTop 35/35: ""
-*ja.zeLabelTop 40/40: ""
-*ja.zeLabelTop 45/45: ""
-*ja.zeLabelTop 50/50: ""
-*ja.zeLabelTop 55/55: ""
-*ja.zeLabelTop 60/60: ""
-*ja.zeLabelTop 65/65: ""
-*ja.zeLabelTop 70/70: ""
-*ja.zeLabelTop 75/75: ""
-*ja.zeLabelTop 80/80: ""
-*ja.zeLabelTop 85/85: ""
-*ja.zeLabelTop 90/90: ""
-*ja.zeLabelTop 95/95: ""
-*ja.zeLabelTop 100/100: ""
-*ja.zeLabelTop 105/105: ""
-*ja.zeLabelTop 110/110: ""
-*ja.zeLabelTop 115/115: ""
-*ja.zeLabelTop 120/120: ""
-*ja.Translation zePrintMode/Print Mode: ""
-*ja.zePrintMode Saved/システムデフォルト: ""
-*ja.zePrintMode Tear/Tear-Off: ""
-*ja.zePrintMode Peel/Peel-Off: ""
-*ja.zePrintMode Rewind/Rewind: ""
-*ja.zePrintMode Applicator/Applicator: ""
-*ja.zePrintMode Cutter/Cutter: ""
-*ja.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*ja.zeTearOffPosition 1000/システムデフォルト: ""
-*ja.zeTearOffPosition -120/-120: ""
-*ja.zeTearOffPosition -115/-115: ""
-*ja.zeTearOffPosition -110/-110: ""
-*ja.zeTearOffPosition -105/-105: ""
-*ja.zeTearOffPosition -100/-100: ""
-*ja.zeTearOffPosition -95/-95: ""
-*ja.zeTearOffPosition -90/-90: ""
-*ja.zeTearOffPosition -85/-85: ""
-*ja.zeTearOffPosition -80/-80: ""
-*ja.zeTearOffPosition -75/-75: ""
-*ja.zeTearOffPosition -70/-70: ""
-*ja.zeTearOffPosition -65/-65: ""
-*ja.zeTearOffPosition -60/-60: ""
-*ja.zeTearOffPosition -55/-55: ""
-*ja.zeTearOffPosition -50/-50: ""
-*ja.zeTearOffPosition -45/-45: ""
-*ja.zeTearOffPosition -40/-40: ""
-*ja.zeTearOffPosition -35/-35: ""
-*ja.zeTearOffPosition -30/-30: ""
-*ja.zeTearOffPosition -25/-25: ""
-*ja.zeTearOffPosition -20/-20: ""
-*ja.zeTearOffPosition -15/-15: ""
-*ja.zeTearOffPosition -10/-10: ""
-*ja.zeTearOffPosition -5/-5: ""
-*ja.zeTearOffPosition 0/0: ""
-*ja.zeTearOffPosition 5/5: ""
-*ja.zeTearOffPosition 10/10: ""
-*ja.zeTearOffPosition 15/15: ""
-*ja.zeTearOffPosition 20/20: ""
-*ja.zeTearOffPosition 25/25: ""
-*ja.zeTearOffPosition 30/30: ""
-*ja.zeTearOffPosition 35/35: ""
-*ja.zeTearOffPosition 40/40: ""
-*ja.zeTearOffPosition 45/45: ""
-*ja.zeTearOffPosition 50/50: ""
-*ja.zeTearOffPosition 55/55: ""
-*ja.zeTearOffPosition 60/60: ""
-*ja.zeTearOffPosition 65/65: ""
-*ja.zeTearOffPosition 70/70: ""
-*ja.zeTearOffPosition 75/75: ""
-*ja.zeTearOffPosition 80/80: ""
-*ja.zeTearOffPosition 85/85: ""
-*ja.zeTearOffPosition 90/90: ""
-*ja.zeTearOffPosition 95/95: ""
-*ja.zeTearOffPosition 100/100: ""
-*ja.zeTearOffPosition 105/105: ""
-*ja.zeTearOffPosition 110/110: ""
-*ja.zeTearOffPosition 115/115: ""
-*ja.zeTearOffPosition 120/120: ""
-*ja.Translation zeErrorReprint/Reprint After Error: ""
-*ja.zeErrorReprint Saved/システムデフォルト: ""
-*ja.zeErrorReprint Always/Always: ""
-*ja.zeErrorReprint Never/Never: ""
-*ko.Translation Manufacturer/Zebra: ""
-*ko.Translation ModelName/Zebra ZPL Label Printer: ""
-*ko.Translation ShortNickName/Zebra ZPL Label Printer: ""
-*ko.Translation NickName/Zebra ZPL Label Printer, 1.4: ""
-*ko.Translation PageSize/Page Size: ""
-*ko.PageSize w90h18/1.25x0.25": ""
-*ko.PageSize w90h162/1.25x2.25": ""
-*ko.PageSize w108h18/1.50x0.25": ""
-*ko.PageSize w108h36/1.50x0.50": ""
-*ko.PageSize w108h72/1.50x1.00": ""
-*ko.PageSize w108h144/1.50x2.00": ""
-*ko.PageSize w144h26/2.00x0.37": ""
-*ko.PageSize w144h36/2.00x0.50": ""
-*ko.PageSize w144h72/2.00x1.00": ""
-*ko.PageSize w144h90/2.00x1.25": ""
-*ko.PageSize w144h288/2.00x4.00": ""
-*ko.PageSize w144h396/2.00x5.50": ""
-*ko.PageSize w162h36/2.25x0.50": ""
-*ko.PageSize w162h90/2.25x1.25": ""
-*ko.PageSize w162h288/2.25x4.00": ""
-*ko.PageSize w162h396/2.25x5.50": ""
-*ko.PageSize w171h396/2.38x5.50": ""
-*ko.PageSize w180h72/2.50x1.00": ""
-*ko.PageSize w180h144/2.50x2.00": ""
-*ko.PageSize w198h90/2.75x1.25": ""
-*ko.PageSize w216h72/3.00x1.00": ""
-*ko.PageSize w216h90/3.00x1.25": ""
-*ko.PageSize w216h144/3.00x2.00": ""
-*ko.PageSize w216h216/3.00x3.00": ""
-*ko.PageSize w216h360/3.00x5.00": ""
-*ko.PageSize w234h144/3.25x2.00": ""
-*ko.PageSize w234h360/3.25x5.00": ""
-*ko.PageSize w234h396/3.25x5.50": ""
-*ko.PageSize w234h419/3.25x5.83": ""
-*ko.PageSize w234h563/3.25x7.83": ""
-*ko.PageSize w252h72/3.50x1.00": ""
-*ko.PageSize w288h72/4.00x1.00": ""
-*ko.PageSize w288h144/4.00x2.00": ""
-*ko.PageSize w288h180/4.00x2.50": ""
-*ko.PageSize w288h216/4.00x3.00": ""
-*ko.PageSize w288h288/4.00x4.00": ""
-*ko.PageSize w288h360/4.00x5.00": ""
-*ko.PageSize w288h432/4.00x6.00": ""
-*ko.PageSize w288h468/4.00x6.50": ""
-*ko.PageSize w288h936/4.00x13.00": ""
-*ko.PageSize w432h72/6.00x1.00": ""
-*ko.PageSize w432h144/6.00x2.00": ""
-*ko.PageSize w432h216/6.00x3.00": ""
-*ko.PageSize w432h288/6.00x4.00": ""
-*ko.PageSize w432h360/6.00x5.00": ""
-*ko.PageSize w432h432/6.00x6.00": ""
-*ko.PageSize w432h468/6.00x6.50": ""
-*ko.PageSize w576h72/8.00x1.00": ""
-*ko.PageSize w576h144/8.00x2.00": ""
-*ko.PageSize w576h216/8.00x3.00": ""
-*ko.PageSize w576h288/8.00x4.00": ""
-*ko.PageSize w576h360/8.00x5.00": ""
-*ko.PageSize w576h432/8.00x6.00": ""
-*ko.PageSize w576h468/8.00x6.50": ""
-*ko.Translation Resolution/Resolution: ""
-*ko.Resolution 203dpi/203dpi: ""
-*ko.Resolution 300dpi/300dpi: ""
-*ko.Resolution 600dpi/600dpi: ""
-*ko.Translation zeMediaTracking/Media Tracking: ""
-*ko.zeMediaTracking Continuous/Continuous: ""
-*ko.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*ko.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*ko.Translation MediaType/Media Type: ""
-*ko.MediaType Saved/빠르게: ""
-*ko.MediaType Thermal/Thermal Transfer Media: ""
-*ko.MediaType Direct/Direct Thermal Media: ""
-*ko.Translation PrinterSettings/Printer Settings: ""
-*ko.Translation Darkness/Darkness: ""
-*ko.Darkness -1/빠르게: ""
-*ko.Darkness 1/1: ""
-*ko.Darkness 2/2: ""
-*ko.Darkness 3/3: ""
-*ko.Darkness 4/4: ""
-*ko.Darkness 5/5: ""
-*ko.Darkness 6/6: ""
-*ko.Darkness 7/7: ""
-*ko.Darkness 8/8: ""
-*ko.Darkness 9/9: ""
-*ko.Darkness 10/10: ""
-*ko.Darkness 11/11: ""
-*ko.Darkness 12/12: ""
-*ko.Darkness 13/13: ""
-*ko.Darkness 14/14: ""
-*ko.Darkness 15/15: ""
-*ko.Darkness 16/16: ""
-*ko.Darkness 17/17: ""
-*ko.Darkness 18/18: ""
-*ko.Darkness 19/19: ""
-*ko.Darkness 20/20: ""
-*ko.Darkness 21/21: ""
-*ko.Darkness 22/22: ""
-*ko.Darkness 23/23: ""
-*ko.Darkness 24/24: ""
-*ko.Darkness 25/25: ""
-*ko.Darkness 26/26: ""
-*ko.Darkness 27/27: ""
-*ko.Darkness 28/28: ""
-*ko.Darkness 29/29: ""
-*ko.Darkness 30/30: ""
-*ko.Translation zePrintRate/Print Rate: ""
-*ko.zePrintRate Default/빠르게: ""
-*ko.zePrintRate 1/1 inch/sec.: ""
-*ko.zePrintRate 2/2 inches/sec.: ""
-*ko.zePrintRate 3/3 inches/sec.: ""
-*ko.zePrintRate 4/4 inches/sec.: ""
-*ko.zePrintRate 5/5 inches/sec.: ""
-*ko.zePrintRate 6/6 inches/sec.: ""
-*ko.zePrintRate 7/7 inches/sec.: ""
-*ko.zePrintRate 8/8 inches/sec.: ""
-*ko.zePrintRate 9/9 inches/sec.: ""
-*ko.zePrintRate 10/10 inches/sec.: ""
-*ko.zePrintRate 11/11 inches/sec.: ""
-*ko.zePrintRate 12/12 inches/sec.: ""
-*ko.Translation zeLabelTop/Label Top: ""
-*ko.zeLabelTop 200/빠르게: ""
-*ko.zeLabelTop -120/-120: ""
-*ko.zeLabelTop -115/-115: ""
-*ko.zeLabelTop -110/-110: ""
-*ko.zeLabelTop -105/-105: ""
-*ko.zeLabelTop -100/-100: ""
-*ko.zeLabelTop -95/-95: ""
-*ko.zeLabelTop -90/-90: ""
-*ko.zeLabelTop -85/-85: ""
-*ko.zeLabelTop -80/-80: ""
-*ko.zeLabelTop -75/-75: ""
-*ko.zeLabelTop -70/-70: ""
-*ko.zeLabelTop -65/-65: ""
-*ko.zeLabelTop -60/-60: ""
-*ko.zeLabelTop -55/-55: ""
-*ko.zeLabelTop -50/-50: ""
-*ko.zeLabelTop -45/-45: ""
-*ko.zeLabelTop -40/-40: ""
-*ko.zeLabelTop -35/-35: ""
-*ko.zeLabelTop -30/-30: ""
-*ko.zeLabelTop -25/-25: ""
-*ko.zeLabelTop -20/-20: ""
-*ko.zeLabelTop -15/-15: ""
-*ko.zeLabelTop -10/-10: ""
-*ko.zeLabelTop -5/-5: ""
-*ko.zeLabelTop 0/0: ""
-*ko.zeLabelTop 5/5: ""
-*ko.zeLabelTop 10/10: ""
-*ko.zeLabelTop 15/15: ""
-*ko.zeLabelTop 20/20: ""
-*ko.zeLabelTop 25/25: ""
-*ko.zeLabelTop 30/30: ""
-*ko.zeLabelTop 35/35: ""
-*ko.zeLabelTop 40/40: ""
-*ko.zeLabelTop 45/45: ""
-*ko.zeLabelTop 50/50: ""
-*ko.zeLabelTop 55/55: ""
-*ko.zeLabelTop 60/60: ""
-*ko.zeLabelTop 65/65: ""
-*ko.zeLabelTop 70/70: ""
-*ko.zeLabelTop 75/75: ""
-*ko.zeLabelTop 80/80: ""
-*ko.zeLabelTop 85/85: ""
-*ko.zeLabelTop 90/90: ""
-*ko.zeLabelTop 95/95: ""
-*ko.zeLabelTop 100/100: ""
-*ko.zeLabelTop 105/105: ""
-*ko.zeLabelTop 110/110: ""
-*ko.zeLabelTop 115/115: ""
-*ko.zeLabelTop 120/120: ""
-*ko.Translation zePrintMode/Print Mode: ""
-*ko.zePrintMode Saved/빠르게: ""
-*ko.zePrintMode Tear/Tear-Off: ""
-*ko.zePrintMode Peel/Peel-Off: ""
-*ko.zePrintMode Rewind/Rewind: ""
-*ko.zePrintMode Applicator/Applicator: ""
-*ko.zePrintMode Cutter/Cutter: ""
-*ko.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*ko.zeTearOffPosition 1000/빠르게: ""
-*ko.zeTearOffPosition -120/-120: ""
-*ko.zeTearOffPosition -115/-115: ""
-*ko.zeTearOffPosition -110/-110: ""
-*ko.zeTearOffPosition -105/-105: ""
-*ko.zeTearOffPosition -100/-100: ""
-*ko.zeTearOffPosition -95/-95: ""
-*ko.zeTearOffPosition -90/-90: ""
-*ko.zeTearOffPosition -85/-85: ""
-*ko.zeTearOffPosition -80/-80: ""
-*ko.zeTearOffPosition -75/-75: ""
-*ko.zeTearOffPosition -70/-70: ""
-*ko.zeTearOffPosition -65/-65: ""
-*ko.zeTearOffPosition -60/-60: ""
-*ko.zeTearOffPosition -55/-55: ""
-*ko.zeTearOffPosition -50/-50: ""
-*ko.zeTearOffPosition -45/-45: ""
-*ko.zeTearOffPosition -40/-40: ""
-*ko.zeTearOffPosition -35/-35: ""
-*ko.zeTearOffPosition -30/-30: ""
-*ko.zeTearOffPosition -25/-25: ""
-*ko.zeTearOffPosition -20/-20: ""
-*ko.zeTearOffPosition -15/-15: ""
-*ko.zeTearOffPosition -10/-10: ""
-*ko.zeTearOffPosition -5/-5: ""
-*ko.zeTearOffPosition 0/0: ""
-*ko.zeTearOffPosition 5/5: ""
-*ko.zeTearOffPosition 10/10: ""
-*ko.zeTearOffPosition 15/15: ""
-*ko.zeTearOffPosition 20/20: ""
-*ko.zeTearOffPosition 25/25: ""
-*ko.zeTearOffPosition 30/30: ""
-*ko.zeTearOffPosition 35/35: ""
-*ko.zeTearOffPosition 40/40: ""
-*ko.zeTearOffPosition 45/45: ""
-*ko.zeTearOffPosition 50/50: ""
-*ko.zeTearOffPosition 55/55: ""
-*ko.zeTearOffPosition 60/60: ""
-*ko.zeTearOffPosition 65/65: ""
-*ko.zeTearOffPosition 70/70: ""
-*ko.zeTearOffPosition 75/75: ""
-*ko.zeTearOffPosition 80/80: ""
-*ko.zeTearOffPosition 85/85: ""
-*ko.zeTearOffPosition 90/90: ""
-*ko.zeTearOffPosition 95/95: ""
-*ko.zeTearOffPosition 100/100: ""
-*ko.zeTearOffPosition 105/105: ""
-*ko.zeTearOffPosition 110/110: ""
-*ko.zeTearOffPosition 115/115: ""
-*ko.zeTearOffPosition 120/120: ""
-*ko.Translation zeErrorReprint/Reprint After Error: ""
-*ko.zeErrorReprint Saved/빠르게: ""
-*ko.zeErrorReprint Always/Always: ""
-*ko.zeErrorReprint Never/Never: ""
-*nl.Translation Manufacturer/Zebra: ""
-*nl.Translation ModelName/Zebra ZPL Label Printer: ""
-*nl.Translation ShortNickName/Zebra ZPL Label Printer: ""
-*nl.Translation NickName/Zebra ZPL Label Printer, 1.4: ""
-*nl.Translation PageSize/Media Size: ""
-*nl.PageSize w90h18/1.25x0.25": ""
-*nl.PageSize w90h162/1.25x2.25": ""
-*nl.PageSize w108h18/1.50x0.25": ""
-*nl.PageSize w108h36/1.50x0.50": ""
-*nl.PageSize w108h72/1.50x1.00": ""
-*nl.PageSize w108h144/1.50x2.00": ""
-*nl.PageSize w144h26/2.00x0.37": ""
-*nl.PageSize w144h36/2.00x0.50": ""
-*nl.PageSize w144h72/2.00x1.00": ""
-*nl.PageSize w144h90/2.00x1.25": ""
-*nl.PageSize w144h288/2.00x4.00": ""
-*nl.PageSize w144h396/2.00x5.50": ""
-*nl.PageSize w162h36/2.25x0.50": ""
-*nl.PageSize w162h90/2.25x1.25": ""
-*nl.PageSize w162h288/2.25x4.00": ""
-*nl.PageSize w162h396/2.25x5.50": ""
-*nl.PageSize w171h396/2.38x5.50": ""
-*nl.PageSize w180h72/2.50x1.00": ""
-*nl.PageSize w180h144/2.50x2.00": ""
-*nl.PageSize w198h90/2.75x1.25": ""
-*nl.PageSize w216h72/3.00x1.00": ""
-*nl.PageSize w216h90/3.00x1.25": ""
-*nl.PageSize w216h144/3.00x2.00": ""
-*nl.PageSize w216h216/3.00x3.00": ""
-*nl.PageSize w216h360/3.00x5.00": ""
-*nl.PageSize w234h144/3.25x2.00": ""
-*nl.PageSize w234h360/3.25x5.00": ""
-*nl.PageSize w234h396/3.25x5.50": ""
-*nl.PageSize w234h419/3.25x5.83": ""
-*nl.PageSize w234h563/3.25x7.83": ""
-*nl.PageSize w252h72/3.50x1.00": ""
-*nl.PageSize w288h72/4.00x1.00": ""
-*nl.PageSize w288h144/4.00x2.00": ""
-*nl.PageSize w288h180/4.00x2.50": ""
-*nl.PageSize w288h216/4.00x3.00": ""
-*nl.PageSize w288h288/4.00x4.00": ""
-*nl.PageSize w288h360/4.00x5.00": ""
-*nl.PageSize w288h432/4.00x6.00": ""
-*nl.PageSize w288h468/4.00x6.50": ""
-*nl.PageSize w288h936/4.00x13.00": ""
-*nl.PageSize w432h72/6.00x1.00": ""
-*nl.PageSize w432h144/6.00x2.00": ""
-*nl.PageSize w432h216/6.00x3.00": ""
-*nl.PageSize w432h288/6.00x4.00": ""
-*nl.PageSize w432h360/6.00x5.00": ""
-*nl.PageSize w432h432/6.00x6.00": ""
-*nl.PageSize w432h468/6.00x6.50": ""
-*nl.PageSize w576h72/8.00x1.00": ""
-*nl.PageSize w576h144/8.00x2.00": ""
-*nl.PageSize w576h216/8.00x3.00": ""
-*nl.PageSize w576h288/8.00x4.00": ""
-*nl.PageSize w576h360/8.00x5.00": ""
-*nl.PageSize w576h432/8.00x6.00": ""
-*nl.PageSize w576h468/8.00x6.50": ""
-*nl.Translation Resolution/Resolution: ""
-*nl.Resolution 203dpi/203dpi: ""
-*nl.Resolution 300dpi/300dpi: ""
-*nl.Resolution 600dpi/600dpi: ""
-*nl.Translation zeMediaTracking/Media Tracking: ""
-*nl.zeMediaTracking Continuous/Continuous: ""
-*nl.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*nl.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*nl.Translation MediaType/Media Type: ""
-*nl.MediaType Saved/Printerstandaard: ""
-*nl.MediaType Thermal/Thermal Transfer Media: ""
-*nl.MediaType Direct/Direct Thermal Media: ""
-*nl.Translation PrinterSettings/Printer Settings: ""
-*nl.Translation Darkness/Darkness: ""
-*nl.Darkness -1/Printerstandaard: ""
-*nl.Darkness 1/1: ""
-*nl.Darkness 2/2: ""
-*nl.Darkness 3/3: ""
-*nl.Darkness 4/4: ""
-*nl.Darkness 5/5: ""
-*nl.Darkness 6/6: ""
-*nl.Darkness 7/7: ""
-*nl.Darkness 8/8: ""
-*nl.Darkness 9/9: ""
-*nl.Darkness 10/10: ""
-*nl.Darkness 11/11: ""
-*nl.Darkness 12/12: ""
-*nl.Darkness 13/13: ""
-*nl.Darkness 14/14: ""
-*nl.Darkness 15/15: ""
-*nl.Darkness 16/16: ""
-*nl.Darkness 17/17: ""
-*nl.Darkness 18/18: ""
-*nl.Darkness 19/19: ""
-*nl.Darkness 20/20: ""
-*nl.Darkness 21/21: ""
-*nl.Darkness 22/22: ""
-*nl.Darkness 23/23: ""
-*nl.Darkness 24/24: ""
-*nl.Darkness 25/25: ""
-*nl.Darkness 26/26: ""
-*nl.Darkness 27/27: ""
-*nl.Darkness 28/28: ""
-*nl.Darkness 29/29: ""
-*nl.Darkness 30/30: ""
-*nl.Translation zePrintRate/Print Rate: ""
-*nl.zePrintRate Default/Printerstandaard: ""
-*nl.zePrintRate 1/1 inch/sec.: ""
-*nl.zePrintRate 2/2 inches/sec.: ""
-*nl.zePrintRate 3/3 inches/sec.: ""
-*nl.zePrintRate 4/4 inches/sec.: ""
-*nl.zePrintRate 5/5 inches/sec.: ""
-*nl.zePrintRate 6/6 inches/sec.: ""
-*nl.zePrintRate 7/7 inches/sec.: ""
-*nl.zePrintRate 8/8 inches/sec.: ""
-*nl.zePrintRate 9/9 inches/sec.: ""
-*nl.zePrintRate 10/10 inches/sec.: ""
-*nl.zePrintRate 11/11 inches/sec.: ""
-*nl.zePrintRate 12/12 inches/sec.: ""
-*nl.Translation zeLabelTop/Label Top: ""
-*nl.zeLabelTop 200/Printerstandaard: ""
-*nl.zeLabelTop -120/-120: ""
-*nl.zeLabelTop -115/-115: ""
-*nl.zeLabelTop -110/-110: ""
-*nl.zeLabelTop -105/-105: ""
-*nl.zeLabelTop -100/-100: ""
-*nl.zeLabelTop -95/-95: ""
-*nl.zeLabelTop -90/-90: ""
-*nl.zeLabelTop -85/-85: ""
-*nl.zeLabelTop -80/-80: ""
-*nl.zeLabelTop -75/-75: ""
-*nl.zeLabelTop -70/-70: ""
-*nl.zeLabelTop -65/-65: ""
-*nl.zeLabelTop -60/-60: ""
-*nl.zeLabelTop -55/-55: ""
-*nl.zeLabelTop -50/-50: ""
-*nl.zeLabelTop -45/-45: ""
-*nl.zeLabelTop -40/-40: ""
-*nl.zeLabelTop -35/-35: ""
-*nl.zeLabelTop -30/-30: ""
-*nl.zeLabelTop -25/-25: ""
-*nl.zeLabelTop -20/-20: ""
-*nl.zeLabelTop -15/-15: ""
-*nl.zeLabelTop -10/-10: ""
-*nl.zeLabelTop -5/-5: ""
-*nl.zeLabelTop 0/0: ""
-*nl.zeLabelTop 5/5: ""
-*nl.zeLabelTop 10/10: ""
-*nl.zeLabelTop 15/15: ""
-*nl.zeLabelTop 20/20: ""
-*nl.zeLabelTop 25/25: ""
-*nl.zeLabelTop 30/30: ""
-*nl.zeLabelTop 35/35: ""
-*nl.zeLabelTop 40/40: ""
-*nl.zeLabelTop 45/45: ""
-*nl.zeLabelTop 50/50: ""
-*nl.zeLabelTop 55/55: ""
-*nl.zeLabelTop 60/60: ""
-*nl.zeLabelTop 65/65: ""
-*nl.zeLabelTop 70/70: ""
-*nl.zeLabelTop 75/75: ""
-*nl.zeLabelTop 80/80: ""
-*nl.zeLabelTop 85/85: ""
-*nl.zeLabelTop 90/90: ""
-*nl.zeLabelTop 95/95: ""
-*nl.zeLabelTop 100/100: ""
-*nl.zeLabelTop 105/105: ""
-*nl.zeLabelTop 110/110: ""
-*nl.zeLabelTop 115/115: ""
-*nl.zeLabelTop 120/120: ""
-*nl.Translation zePrintMode/Print Mode: ""
-*nl.zePrintMode Saved/Printerstandaard: ""
-*nl.zePrintMode Tear/Tear-Off: ""
-*nl.zePrintMode Peel/Peel-Off: ""
-*nl.zePrintMode Rewind/Rewind: ""
-*nl.zePrintMode Applicator/Applicator: ""
-*nl.zePrintMode Cutter/Cutter: ""
-*nl.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*nl.zeTearOffPosition 1000/Printerstandaard: ""
-*nl.zeTearOffPosition -120/-120: ""
-*nl.zeTearOffPosition -115/-115: ""
-*nl.zeTearOffPosition -110/-110: ""
-*nl.zeTearOffPosition -105/-105: ""
-*nl.zeTearOffPosition -100/-100: ""
-*nl.zeTearOffPosition -95/-95: ""
-*nl.zeTearOffPosition -90/-90: ""
-*nl.zeTearOffPosition -85/-85: ""
-*nl.zeTearOffPosition -80/-80: ""
-*nl.zeTearOffPosition -75/-75: ""
-*nl.zeTearOffPosition -70/-70: ""
-*nl.zeTearOffPosition -65/-65: ""
-*nl.zeTearOffPosition -60/-60: ""
-*nl.zeTearOffPosition -55/-55: ""
-*nl.zeTearOffPosition -50/-50: ""
-*nl.zeTearOffPosition -45/-45: ""
-*nl.zeTearOffPosition -40/-40: ""
-*nl.zeTearOffPosition -35/-35: ""
-*nl.zeTearOffPosition -30/-30: ""
-*nl.zeTearOffPosition -25/-25: ""
-*nl.zeTearOffPosition -20/-20: ""
-*nl.zeTearOffPosition -15/-15: ""
-*nl.zeTearOffPosition -10/-10: ""
-*nl.zeTearOffPosition -5/-5: ""
-*nl.zeTearOffPosition 0/0: ""
-*nl.zeTearOffPosition 5/5: ""
-*nl.zeTearOffPosition 10/10: ""
-*nl.zeTearOffPosition 15/15: ""
-*nl.zeTearOffPosition 20/20: ""
-*nl.zeTearOffPosition 25/25: ""
-*nl.zeTearOffPosition 30/30: ""
-*nl.zeTearOffPosition 35/35: ""
-*nl.zeTearOffPosition 40/40: ""
-*nl.zeTearOffPosition 45/45: ""
-*nl.zeTearOffPosition 50/50: ""
-*nl.zeTearOffPosition 55/55: ""
-*nl.zeTearOffPosition 60/60: ""
-*nl.zeTearOffPosition 65/65: ""
-*nl.zeTearOffPosition 70/70: ""
-*nl.zeTearOffPosition 75/75: ""
-*nl.zeTearOffPosition 80/80: ""
-*nl.zeTearOffPosition 85/85: ""
-*nl.zeTearOffPosition 90/90: ""
-*nl.zeTearOffPosition 95/95: ""
-*nl.zeTearOffPosition 100/100: ""
-*nl.zeTearOffPosition 105/105: ""
-*nl.zeTearOffPosition 110/110: ""
-*nl.zeTearOffPosition 115/115: ""
-*nl.zeTearOffPosition 120/120: ""
-*nl.Translation zeErrorReprint/Reprint After Error: ""
-*nl.zeErrorReprint Saved/Printerstandaard: ""
-*nl.zeErrorReprint Always/Always: ""
-*nl.zeErrorReprint Never/Never: ""
-*no.Translation Manufacturer/Zebra: ""
-*no.Translation ModelName/Zebra ZPL Label Printer: ""
-*no.Translation ShortNickName/Zebra ZPL Label Printer: ""
-*no.Translation NickName/Zebra ZPL Label Printer, 1.4: ""
-*no.Translation PageSize/Media Size: ""
-*no.PageSize w90h18/1.25x0.25": ""
-*no.PageSize w90h162/1.25x2.25": ""
-*no.PageSize w108h18/1.50x0.25": ""
-*no.PageSize w108h36/1.50x0.50": ""
-*no.PageSize w108h72/1.50x1.00": ""
-*no.PageSize w108h144/1.50x2.00": ""
-*no.PageSize w144h26/2.00x0.37": ""
-*no.PageSize w144h36/2.00x0.50": ""
-*no.PageSize w144h72/2.00x1.00": ""
-*no.PageSize w144h90/2.00x1.25": ""
-*no.PageSize w144h288/2.00x4.00": ""
-*no.PageSize w144h396/2.00x5.50": ""
-*no.PageSize w162h36/2.25x0.50": ""
-*no.PageSize w162h90/2.25x1.25": ""
-*no.PageSize w162h288/2.25x4.00": ""
-*no.PageSize w162h396/2.25x5.50": ""
-*no.PageSize w171h396/2.38x5.50": ""
-*no.PageSize w180h72/2.50x1.00": ""
-*no.PageSize w180h144/2.50x2.00": ""
-*no.PageSize w198h90/2.75x1.25": ""
-*no.PageSize w216h72/3.00x1.00": ""
-*no.PageSize w216h90/3.00x1.25": ""
-*no.PageSize w216h144/3.00x2.00": ""
-*no.PageSize w216h216/3.00x3.00": ""
-*no.PageSize w216h360/3.00x5.00": ""
-*no.PageSize w234h144/3.25x2.00": ""
-*no.PageSize w234h360/3.25x5.00": ""
-*no.PageSize w234h396/3.25x5.50": ""
-*no.PageSize w234h419/3.25x5.83": ""
-*no.PageSize w234h563/3.25x7.83": ""
-*no.PageSize w252h72/3.50x1.00": ""
-*no.PageSize w288h72/4.00x1.00": ""
-*no.PageSize w288h144/4.00x2.00": ""
-*no.PageSize w288h180/4.00x2.50": ""
-*no.PageSize w288h216/4.00x3.00": ""
-*no.PageSize w288h288/4.00x4.00": ""
-*no.PageSize w288h360/4.00x5.00": ""
-*no.PageSize w288h432/4.00x6.00": ""
-*no.PageSize w288h468/4.00x6.50": ""
-*no.PageSize w288h936/4.00x13.00": ""
-*no.PageSize w432h72/6.00x1.00": ""
-*no.PageSize w432h144/6.00x2.00": ""
-*no.PageSize w432h216/6.00x3.00": ""
-*no.PageSize w432h288/6.00x4.00": ""
-*no.PageSize w432h360/6.00x5.00": ""
-*no.PageSize w432h432/6.00x6.00": ""
-*no.PageSize w432h468/6.00x6.50": ""
-*no.PageSize w576h72/8.00x1.00": ""
-*no.PageSize w576h144/8.00x2.00": ""
-*no.PageSize w576h216/8.00x3.00": ""
-*no.PageSize w576h288/8.00x4.00": ""
-*no.PageSize w576h360/8.00x5.00": ""
-*no.PageSize w576h432/8.00x6.00": ""
-*no.PageSize w576h468/8.00x6.50": ""
-*no.Translation Resolution/Resolution: ""
-*no.Resolution 203dpi/203dpi: ""
-*no.Resolution 300dpi/300dpi: ""
-*no.Resolution 600dpi/600dpi: ""
-*no.Translation zeMediaTracking/Media Tracking: ""
-*no.zeMediaTracking Continuous/Continuous: ""
-*no.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*no.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*no.Translation MediaType/Media Type: ""
-*no.MediaType Saved/Skriverstandard: ""
-*no.MediaType Thermal/Thermal Transfer Media: ""
-*no.MediaType Direct/Direct Thermal Media: ""
-*no.Translation PrinterSettings/Printer Settings: ""
-*no.Translation Darkness/Darkness: ""
-*no.Darkness -1/Skriverstandard: ""
-*no.Darkness 1/1: ""
-*no.Darkness 2/2: ""
-*no.Darkness 3/3: ""
-*no.Darkness 4/4: ""
-*no.Darkness 5/5: ""
-*no.Darkness 6/6: ""
-*no.Darkness 7/7: ""
-*no.Darkness 8/8: ""
-*no.Darkness 9/9: ""
-*no.Darkness 10/10: ""
-*no.Darkness 11/11: ""
-*no.Darkness 12/12: ""
-*no.Darkness 13/13: ""
-*no.Darkness 14/14: ""
-*no.Darkness 15/15: ""
-*no.Darkness 16/16: ""
-*no.Darkness 17/17: ""
-*no.Darkness 18/18: ""
-*no.Darkness 19/19: ""
-*no.Darkness 20/20: ""
-*no.Darkness 21/21: ""
-*no.Darkness 22/22: ""
-*no.Darkness 23/23: ""
-*no.Darkness 24/24: ""
-*no.Darkness 25/25: ""
-*no.Darkness 26/26: ""
-*no.Darkness 27/27: ""
-*no.Darkness 28/28: ""
-*no.Darkness 29/29: ""
-*no.Darkness 30/30: ""
-*no.Translation zePrintRate/Print Rate: ""
-*no.zePrintRate Default/Skriverstandard: ""
-*no.zePrintRate 1/1 inch/sec.: ""
-*no.zePrintRate 2/2 inches/sec.: ""
-*no.zePrintRate 3/3 inches/sec.: ""
-*no.zePrintRate 4/4 inches/sec.: ""
-*no.zePrintRate 5/5 inches/sec.: ""
-*no.zePrintRate 6/6 inches/sec.: ""
-*no.zePrintRate 7/7 inches/sec.: ""
-*no.zePrintRate 8/8 inches/sec.: ""
-*no.zePrintRate 9/9 inches/sec.: ""
-*no.zePrintRate 10/10 inches/sec.: ""
-*no.zePrintRate 11/11 inches/sec.: ""
-*no.zePrintRate 12/12 inches/sec.: ""
-*no.Translation zeLabelTop/Label Top: ""
-*no.zeLabelTop 200/Skriverstandard: ""
-*no.zeLabelTop -120/-120: ""
-*no.zeLabelTop -115/-115: ""
-*no.zeLabelTop -110/-110: ""
-*no.zeLabelTop -105/-105: ""
-*no.zeLabelTop -100/-100: ""
-*no.zeLabelTop -95/-95: ""
-*no.zeLabelTop -90/-90: ""
-*no.zeLabelTop -85/-85: ""
-*no.zeLabelTop -80/-80: ""
-*no.zeLabelTop -75/-75: ""
-*no.zeLabelTop -70/-70: ""
-*no.zeLabelTop -65/-65: ""
-*no.zeLabelTop -60/-60: ""
-*no.zeLabelTop -55/-55: ""
-*no.zeLabelTop -50/-50: ""
-*no.zeLabelTop -45/-45: ""
-*no.zeLabelTop -40/-40: ""
-*no.zeLabelTop -35/-35: ""
-*no.zeLabelTop -30/-30: ""
-*no.zeLabelTop -25/-25: ""
-*no.zeLabelTop -20/-20: ""
-*no.zeLabelTop -15/-15: ""
-*no.zeLabelTop -10/-10: ""
-*no.zeLabelTop -5/-5: ""
-*no.zeLabelTop 0/0: ""
-*no.zeLabelTop 5/5: ""
-*no.zeLabelTop 10/10: ""
-*no.zeLabelTop 15/15: ""
-*no.zeLabelTop 20/20: ""
-*no.zeLabelTop 25/25: ""
-*no.zeLabelTop 30/30: ""
-*no.zeLabelTop 35/35: ""
-*no.zeLabelTop 40/40: ""
-*no.zeLabelTop 45/45: ""
-*no.zeLabelTop 50/50: ""
-*no.zeLabelTop 55/55: ""
-*no.zeLabelTop 60/60: ""
-*no.zeLabelTop 65/65: ""
-*no.zeLabelTop 70/70: ""
-*no.zeLabelTop 75/75: ""
-*no.zeLabelTop 80/80: ""
-*no.zeLabelTop 85/85: ""
-*no.zeLabelTop 90/90: ""
-*no.zeLabelTop 95/95: ""
-*no.zeLabelTop 100/100: ""
-*no.zeLabelTop 105/105: ""
-*no.zeLabelTop 110/110: ""
-*no.zeLabelTop 115/115: ""
-*no.zeLabelTop 120/120: ""
-*no.Translation zePrintMode/Print Mode: ""
-*no.zePrintMode Saved/Skriverstandard: ""
-*no.zePrintMode Tear/Tear-Off: ""
-*no.zePrintMode Peel/Peel-Off: ""
-*no.zePrintMode Rewind/Rewind: ""
-*no.zePrintMode Applicator/Applicator: ""
-*no.zePrintMode Cutter/Cutter: ""
-*no.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*no.zeTearOffPosition 1000/Skriverstandard: ""
-*no.zeTearOffPosition -120/-120: ""
-*no.zeTearOffPosition -115/-115: ""
-*no.zeTearOffPosition -110/-110: ""
-*no.zeTearOffPosition -105/-105: ""
-*no.zeTearOffPosition -100/-100: ""
-*no.zeTearOffPosition -95/-95: ""
-*no.zeTearOffPosition -90/-90: ""
-*no.zeTearOffPosition -85/-85: ""
-*no.zeTearOffPosition -80/-80: ""
-*no.zeTearOffPosition -75/-75: ""
-*no.zeTearOffPosition -70/-70: ""
-*no.zeTearOffPosition -65/-65: ""
-*no.zeTearOffPosition -60/-60: ""
-*no.zeTearOffPosition -55/-55: ""
-*no.zeTearOffPosition -50/-50: ""
-*no.zeTearOffPosition -45/-45: ""
-*no.zeTearOffPosition -40/-40: ""
-*no.zeTearOffPosition -35/-35: ""
-*no.zeTearOffPosition -30/-30: ""
-*no.zeTearOffPosition -25/-25: ""
-*no.zeTearOffPosition -20/-20: ""
-*no.zeTearOffPosition -15/-15: ""
-*no.zeTearOffPosition -10/-10: ""
-*no.zeTearOffPosition -5/-5: ""
-*no.zeTearOffPosition 0/0: ""
-*no.zeTearOffPosition 5/5: ""
-*no.zeTearOffPosition 10/10: ""
-*no.zeTearOffPosition 15/15: ""
-*no.zeTearOffPosition 20/20: ""
-*no.zeTearOffPosition 25/25: ""
-*no.zeTearOffPosition 30/30: ""
-*no.zeTearOffPosition 35/35: ""
-*no.zeTearOffPosition 40/40: ""
-*no.zeTearOffPosition 45/45: ""
-*no.zeTearOffPosition 50/50: ""
-*no.zeTearOffPosition 55/55: ""
-*no.zeTearOffPosition 60/60: ""
-*no.zeTearOffPosition 65/65: ""
-*no.zeTearOffPosition 70/70: ""
-*no.zeTearOffPosition 75/75: ""
-*no.zeTearOffPosition 80/80: ""
-*no.zeTearOffPosition 85/85: ""
-*no.zeTearOffPosition 90/90: ""
-*no.zeTearOffPosition 95/95: ""
-*no.zeTearOffPosition 100/100: ""
-*no.zeTearOffPosition 105/105: ""
-*no.zeTearOffPosition 110/110: ""
-*no.zeTearOffPosition 115/115: ""
-*no.zeTearOffPosition 120/120: ""
-*no.Translation zeErrorReprint/Reprint After Error: ""
-*no.zeErrorReprint Saved/Skriverstandard: ""
-*no.zeErrorReprint Always/Always: ""
-*no.zeErrorReprint Never/Never: ""
-*pt.Translation Manufacturer/Zebra: ""
-*pt.Translation ModelName/Zebra ZPL Label Printer: ""
-*pt.Translation ShortNickName/Zebra ZPL Label Printer: ""
-*pt.Translation NickName/Zebra ZPL Label Printer, 1.4: ""
-*pt.Translation PageSize/Media Size: ""
-*pt.PageSize w90h18/1.25x0.25": ""
-*pt.PageSize w90h162/1.25x2.25": ""
-*pt.PageSize w108h18/1.50x0.25": ""
-*pt.PageSize w108h36/1.50x0.50": ""
-*pt.PageSize w108h72/1.50x1.00": ""
-*pt.PageSize w108h144/1.50x2.00": ""
-*pt.PageSize w144h26/2.00x0.37": ""
-*pt.PageSize w144h36/2.00x0.50": ""
-*pt.PageSize w144h72/2.00x1.00": ""
-*pt.PageSize w144h90/2.00x1.25": ""
-*pt.PageSize w144h288/2.00x4.00": ""
-*pt.PageSize w144h396/2.00x5.50": ""
-*pt.PageSize w162h36/2.25x0.50": ""
-*pt.PageSize w162h90/2.25x1.25": ""
-*pt.PageSize w162h288/2.25x4.00": ""
-*pt.PageSize w162h396/2.25x5.50": ""
-*pt.PageSize w171h396/2.38x5.50": ""
-*pt.PageSize w180h72/2.50x1.00": ""
-*pt.PageSize w180h144/2.50x2.00": ""
-*pt.PageSize w198h90/2.75x1.25": ""
-*pt.PageSize w216h72/3.00x1.00": ""
-*pt.PageSize w216h90/3.00x1.25": ""
-*pt.PageSize w216h144/3.00x2.00": ""
-*pt.PageSize w216h216/3.00x3.00": ""
-*pt.PageSize w216h360/3.00x5.00": ""
-*pt.PageSize w234h144/3.25x2.00": ""
-*pt.PageSize w234h360/3.25x5.00": ""
-*pt.PageSize w234h396/3.25x5.50": ""
-*pt.PageSize w234h419/3.25x5.83": ""
-*pt.PageSize w234h563/3.25x7.83": ""
-*pt.PageSize w252h72/3.50x1.00": ""
-*pt.PageSize w288h72/4.00x1.00": ""
-*pt.PageSize w288h144/4.00x2.00": ""
-*pt.PageSize w288h180/4.00x2.50": ""
-*pt.PageSize w288h216/4.00x3.00": ""
-*pt.PageSize w288h288/4.00x4.00": ""
-*pt.PageSize w288h360/4.00x5.00": ""
-*pt.PageSize w288h432/4.00x6.00": ""
-*pt.PageSize w288h468/4.00x6.50": ""
-*pt.PageSize w288h936/4.00x13.00": ""
-*pt.PageSize w432h72/6.00x1.00": ""
-*pt.PageSize w432h144/6.00x2.00": ""
-*pt.PageSize w432h216/6.00x3.00": ""
-*pt.PageSize w432h288/6.00x4.00": ""
-*pt.PageSize w432h360/6.00x5.00": ""
-*pt.PageSize w432h432/6.00x6.00": ""
-*pt.PageSize w432h468/6.00x6.50": ""
-*pt.PageSize w576h72/8.00x1.00": ""
-*pt.PageSize w576h144/8.00x2.00": ""
-*pt.PageSize w576h216/8.00x3.00": ""
-*pt.PageSize w576h288/8.00x4.00": ""
-*pt.PageSize w576h360/8.00x5.00": ""
-*pt.PageSize w576h432/8.00x6.00": ""
-*pt.PageSize w576h468/8.00x6.50": ""
-*pt.Translation Resolution/Resolution: ""
-*pt.Resolution 203dpi/203dpi: ""
-*pt.Resolution 300dpi/300dpi: ""
-*pt.Resolution 600dpi/600dpi: ""
-*pt.Translation zeMediaTracking/Media Tracking: ""
-*pt.zeMediaTracking Continuous/Continuous: ""
-*pt.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*pt.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*pt.Translation MediaType/Media Type: ""
-*pt.MediaType Saved/Rápido: ""
-*pt.MediaType Thermal/Thermal Transfer Media: ""
-*pt.MediaType Direct/Direct Thermal Media: ""
-*pt.Translation PrinterSettings/Printer Settings: ""
-*pt.Translation Darkness/Darkness: ""
-*pt.Darkness -1/Rápido: ""
-*pt.Darkness 1/1: ""
-*pt.Darkness 2/2: ""
-*pt.Darkness 3/3: ""
-*pt.Darkness 4/4: ""
-*pt.Darkness 5/5: ""
-*pt.Darkness 6/6: ""
-*pt.Darkness 7/7: ""
-*pt.Darkness 8/8: ""
-*pt.Darkness 9/9: ""
-*pt.Darkness 10/10: ""
-*pt.Darkness 11/11: ""
-*pt.Darkness 12/12: ""
-*pt.Darkness 13/13: ""
-*pt.Darkness 14/14: ""
-*pt.Darkness 15/15: ""
-*pt.Darkness 16/16: ""
-*pt.Darkness 17/17: ""
-*pt.Darkness 18/18: ""
-*pt.Darkness 19/19: ""
-*pt.Darkness 20/20: ""
-*pt.Darkness 21/21: ""
-*pt.Darkness 22/22: ""
-*pt.Darkness 23/23: ""
-*pt.Darkness 24/24: ""
-*pt.Darkness 25/25: ""
-*pt.Darkness 26/26: ""
-*pt.Darkness 27/27: ""
-*pt.Darkness 28/28: ""
-*pt.Darkness 29/29: ""
-*pt.Darkness 30/30: ""
-*pt.Translation zePrintRate/Print Rate: ""
-*pt.zePrintRate Default/Rápido: ""
-*pt.zePrintRate 1/1 inch/sec.: ""
-*pt.zePrintRate 2/2 inches/sec.: ""
-*pt.zePrintRate 3/3 inches/sec.: ""
-*pt.zePrintRate 4/4 inches/sec.: ""
-*pt.zePrintRate 5/5 inches/sec.: ""
-*pt.zePrintRate 6/6 inches/sec.: ""
-*pt.zePrintRate 7/7 inches/sec.: ""
-*pt.zePrintRate 8/8 inches/sec.: ""
-*pt.zePrintRate 9/9 inches/sec.: ""
-*pt.zePrintRate 10/10 inches/sec.: ""
-*pt.zePrintRate 11/11 inches/sec.: ""
-*pt.zePrintRate 12/12 inches/sec.: ""
-*pt.Translation zeLabelTop/Label Top: ""
-*pt.zeLabelTop 200/Rápido: ""
-*pt.zeLabelTop -120/-120: ""
-*pt.zeLabelTop -115/-115: ""
-*pt.zeLabelTop -110/-110: ""
-*pt.zeLabelTop -105/-105: ""
-*pt.zeLabelTop -100/-100: ""
-*pt.zeLabelTop -95/-95: ""
-*pt.zeLabelTop -90/-90: ""
-*pt.zeLabelTop -85/-85: ""
-*pt.zeLabelTop -80/-80: ""
-*pt.zeLabelTop -75/-75: ""
-*pt.zeLabelTop -70/-70: ""
-*pt.zeLabelTop -65/-65: ""
-*pt.zeLabelTop -60/-60: ""
-*pt.zeLabelTop -55/-55: ""
-*pt.zeLabelTop -50/-50: ""
-*pt.zeLabelTop -45/-45: ""
-*pt.zeLabelTop -40/-40: ""
-*pt.zeLabelTop -35/-35: ""
-*pt.zeLabelTop -30/-30: ""
-*pt.zeLabelTop -25/-25: ""
-*pt.zeLabelTop -20/-20: ""
-*pt.zeLabelTop -15/-15: ""
-*pt.zeLabelTop -10/-10: ""
-*pt.zeLabelTop -5/-5: ""
-*pt.zeLabelTop 0/0: ""
-*pt.zeLabelTop 5/5: ""
-*pt.zeLabelTop 10/10: ""
-*pt.zeLabelTop 15/15: ""
-*pt.zeLabelTop 20/20: ""
-*pt.zeLabelTop 25/25: ""
-*pt.zeLabelTop 30/30: ""
-*pt.zeLabelTop 35/35: ""
-*pt.zeLabelTop 40/40: ""
-*pt.zeLabelTop 45/45: ""
-*pt.zeLabelTop 50/50: ""
-*pt.zeLabelTop 55/55: ""
-*pt.zeLabelTop 60/60: ""
-*pt.zeLabelTop 65/65: ""
-*pt.zeLabelTop 70/70: ""
-*pt.zeLabelTop 75/75: ""
-*pt.zeLabelTop 80/80: ""
-*pt.zeLabelTop 85/85: ""
-*pt.zeLabelTop 90/90: ""
-*pt.zeLabelTop 95/95: ""
-*pt.zeLabelTop 100/100: ""
-*pt.zeLabelTop 105/105: ""
-*pt.zeLabelTop 110/110: ""
-*pt.zeLabelTop 115/115: ""
-*pt.zeLabelTop 120/120: ""
-*pt.Translation zePrintMode/Print Mode: ""
-*pt.zePrintMode Saved/Rápido: ""
-*pt.zePrintMode Tear/Tear-Off: ""
-*pt.zePrintMode Peel/Peel-Off: ""
-*pt.zePrintMode Rewind/Rewind: ""
-*pt.zePrintMode Applicator/Applicator: ""
-*pt.zePrintMode Cutter/Cutter: ""
-*pt.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*pt.zeTearOffPosition 1000/Rápido: ""
-*pt.zeTearOffPosition -120/-120: ""
-*pt.zeTearOffPosition -115/-115: ""
-*pt.zeTearOffPosition -110/-110: ""
-*pt.zeTearOffPosition -105/-105: ""
-*pt.zeTearOffPosition -100/-100: ""
-*pt.zeTearOffPosition -95/-95: ""
-*pt.zeTearOffPosition -90/-90: ""
-*pt.zeTearOffPosition -85/-85: ""
-*pt.zeTearOffPosition -80/-80: ""
-*pt.zeTearOffPosition -75/-75: ""
-*pt.zeTearOffPosition -70/-70: ""
-*pt.zeTearOffPosition -65/-65: ""
-*pt.zeTearOffPosition -60/-60: ""
-*pt.zeTearOffPosition -55/-55: ""
-*pt.zeTearOffPosition -50/-50: ""
-*pt.zeTearOffPosition -45/-45: ""
-*pt.zeTearOffPosition -40/-40: ""
-*pt.zeTearOffPosition -35/-35: ""
-*pt.zeTearOffPosition -30/-30: ""
-*pt.zeTearOffPosition -25/-25: ""
-*pt.zeTearOffPosition -20/-20: ""
-*pt.zeTearOffPosition -15/-15: ""
-*pt.zeTearOffPosition -10/-10: ""
-*pt.zeTearOffPosition -5/-5: ""
-*pt.zeTearOffPosition 0/0: ""
-*pt.zeTearOffPosition 5/5: ""
-*pt.zeTearOffPosition 10/10: ""
-*pt.zeTearOffPosition 15/15: ""
-*pt.zeTearOffPosition 20/20: ""
-*pt.zeTearOffPosition 25/25: ""
-*pt.zeTearOffPosition 30/30: ""
-*pt.zeTearOffPosition 35/35: ""
-*pt.zeTearOffPosition 40/40: ""
-*pt.zeTearOffPosition 45/45: ""
-*pt.zeTearOffPosition 50/50: ""
-*pt.zeTearOffPosition 55/55: ""
-*pt.zeTearOffPosition 60/60: ""
-*pt.zeTearOffPosition 65/65: ""
-*pt.zeTearOffPosition 70/70: ""
-*pt.zeTearOffPosition 75/75: ""
-*pt.zeTearOffPosition 80/80: ""
-*pt.zeTearOffPosition 85/85: ""
-*pt.zeTearOffPosition 90/90: ""
-*pt.zeTearOffPosition 95/95: ""
-*pt.zeTearOffPosition 100/100: ""
-*pt.zeTearOffPosition 105/105: ""
-*pt.zeTearOffPosition 110/110: ""
-*pt.zeTearOffPosition 115/115: ""
-*pt.zeTearOffPosition 120/120: ""
-*pt.Translation zeErrorReprint/Reprint After Error: ""
-*pt.zeErrorReprint Saved/Rápido: ""
-*pt.zeErrorReprint Always/Always: ""
-*pt.zeErrorReprint Never/Never: ""
-*pt_BR.Translation Manufacturer/Zebra: ""
-*pt_BR.Translation ModelName/Zebra ZPL Label Printer: ""
-*pt_BR.Translation ShortNickName/Zebra ZPL Label Printer: ""
-*pt_BR.Translation NickName/Zebra ZPL Label Printer, 1.4: ""
-*pt_BR.Translation PageSize/Media Size: ""
-*pt_BR.PageSize w90h18/1.25x0.25": ""
-*pt_BR.PageSize w90h162/1.25x2.25": ""
-*pt_BR.PageSize w108h18/1.50x0.25": ""
-*pt_BR.PageSize w108h36/1.50x0.50": ""
-*pt_BR.PageSize w108h72/1.50x1.00": ""
-*pt_BR.PageSize w108h144/1.50x2.00": ""
-*pt_BR.PageSize w144h26/2.00x0.37": ""
-*pt_BR.PageSize w144h36/2.00x0.50": ""
-*pt_BR.PageSize w144h72/2.00x1.00": ""
-*pt_BR.PageSize w144h90/2.00x1.25": ""
-*pt_BR.PageSize w144h288/2.00x4.00": ""
-*pt_BR.PageSize w144h396/2.00x5.50": ""
-*pt_BR.PageSize w162h36/2.25x0.50": ""
-*pt_BR.PageSize w162h90/2.25x1.25": ""
-*pt_BR.PageSize w162h288/2.25x4.00": ""
-*pt_BR.PageSize w162h396/2.25x5.50": ""
-*pt_BR.PageSize w171h396/2.38x5.50": ""
-*pt_BR.PageSize w180h72/2.50x1.00": ""
-*pt_BR.PageSize w180h144/2.50x2.00": ""
-*pt_BR.PageSize w198h90/2.75x1.25": ""
-*pt_BR.PageSize w216h72/3.00x1.00": ""
-*pt_BR.PageSize w216h90/3.00x1.25": ""
-*pt_BR.PageSize w216h144/3.00x2.00": ""
-*pt_BR.PageSize w216h216/3.00x3.00": ""
-*pt_BR.PageSize w216h360/3.00x5.00": ""
-*pt_BR.PageSize w234h144/3.25x2.00": ""
-*pt_BR.PageSize w234h360/3.25x5.00": ""
-*pt_BR.PageSize w234h396/3.25x5.50": ""
-*pt_BR.PageSize w234h419/3.25x5.83": ""
-*pt_BR.PageSize w234h563/3.25x7.83": ""
-*pt_BR.PageSize w252h72/3.50x1.00": ""
-*pt_BR.PageSize w288h72/4.00x1.00": ""
-*pt_BR.PageSize w288h144/4.00x2.00": ""
-*pt_BR.PageSize w288h180/4.00x2.50": ""
-*pt_BR.PageSize w288h216/4.00x3.00": ""
-*pt_BR.PageSize w288h288/4.00x4.00": ""
-*pt_BR.PageSize w288h360/4.00x5.00": ""
-*pt_BR.PageSize w288h432/4.00x6.00": ""
-*pt_BR.PageSize w288h468/4.00x6.50": ""
-*pt_BR.PageSize w288h936/4.00x13.00": ""
-*pt_BR.PageSize w432h72/6.00x1.00": ""
-*pt_BR.PageSize w432h144/6.00x2.00": ""
-*pt_BR.PageSize w432h216/6.00x3.00": ""
-*pt_BR.PageSize w432h288/6.00x4.00": ""
-*pt_BR.PageSize w432h360/6.00x5.00": ""
-*pt_BR.PageSize w432h432/6.00x6.00": ""
-*pt_BR.PageSize w432h468/6.00x6.50": ""
-*pt_BR.PageSize w576h72/8.00x1.00": ""
-*pt_BR.PageSize w576h144/8.00x2.00": ""
-*pt_BR.PageSize w576h216/8.00x3.00": ""
-*pt_BR.PageSize w576h288/8.00x4.00": ""
-*pt_BR.PageSize w576h360/8.00x5.00": ""
-*pt_BR.PageSize w576h432/8.00x6.00": ""
-*pt_BR.PageSize w576h468/8.00x6.50": ""
-*pt_BR.Translation Resolution/Resolution: ""
-*pt_BR.Resolution 203dpi/203dpi: ""
-*pt_BR.Resolution 300dpi/300dpi: ""
-*pt_BR.Resolution 600dpi/600dpi: ""
-*pt_BR.Translation zeMediaTracking/Media Tracking: ""
-*pt_BR.zeMediaTracking Continuous/Continuous: ""
-*pt_BR.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*pt_BR.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*pt_BR.Translation MediaType/Media Type: ""
-*pt_BR.MediaType Saved/Rápido: ""
-*pt_BR.MediaType Thermal/Thermal Transfer Media: ""
-*pt_BR.MediaType Direct/Direct Thermal Media: ""
-*pt_BR.Translation PrinterSettings/Printer Settings: ""
-*pt_BR.Translation Darkness/Darkness: ""
-*pt_BR.Darkness -1/Rápido: ""
-*pt_BR.Darkness 1/1: ""
-*pt_BR.Darkness 2/2: ""
-*pt_BR.Darkness 3/3: ""
-*pt_BR.Darkness 4/4: ""
-*pt_BR.Darkness 5/5: ""
-*pt_BR.Darkness 6/6: ""
-*pt_BR.Darkness 7/7: ""
-*pt_BR.Darkness 8/8: ""
-*pt_BR.Darkness 9/9: ""
-*pt_BR.Darkness 10/10: ""
-*pt_BR.Darkness 11/11: ""
-*pt_BR.Darkness 12/12: ""
-*pt_BR.Darkness 13/13: ""
-*pt_BR.Darkness 14/14: ""
-*pt_BR.Darkness 15/15: ""
-*pt_BR.Darkness 16/16: ""
-*pt_BR.Darkness 17/17: ""
-*pt_BR.Darkness 18/18: ""
-*pt_BR.Darkness 19/19: ""
-*pt_BR.Darkness 20/20: ""
-*pt_BR.Darkness 21/21: ""
-*pt_BR.Darkness 22/22: ""
-*pt_BR.Darkness 23/23: ""
-*pt_BR.Darkness 24/24: ""
-*pt_BR.Darkness 25/25: ""
-*pt_BR.Darkness 26/26: ""
-*pt_BR.Darkness 27/27: ""
-*pt_BR.Darkness 28/28: ""
-*pt_BR.Darkness 29/29: ""
-*pt_BR.Darkness 30/30: ""
-*pt_BR.Translation zePrintRate/Print Rate: ""
-*pt_BR.zePrintRate Default/Rápido: ""
-*pt_BR.zePrintRate 1/1 inch/sec.: ""
-*pt_BR.zePrintRate 2/2 inches/sec.: ""
-*pt_BR.zePrintRate 3/3 inches/sec.: ""
-*pt_BR.zePrintRate 4/4 inches/sec.: ""
-*pt_BR.zePrintRate 5/5 inches/sec.: ""
-*pt_BR.zePrintRate 6/6 inches/sec.: ""
-*pt_BR.zePrintRate 7/7 inches/sec.: ""
-*pt_BR.zePrintRate 8/8 inches/sec.: ""
-*pt_BR.zePrintRate 9/9 inches/sec.: ""
-*pt_BR.zePrintRate 10/10 inches/sec.: ""
-*pt_BR.zePrintRate 11/11 inches/sec.: ""
-*pt_BR.zePrintRate 12/12 inches/sec.: ""
-*pt_BR.Translation zeLabelTop/Label Top: ""
-*pt_BR.zeLabelTop 200/Rápido: ""
-*pt_BR.zeLabelTop -120/-120: ""
-*pt_BR.zeLabelTop -115/-115: ""
-*pt_BR.zeLabelTop -110/-110: ""
-*pt_BR.zeLabelTop -105/-105: ""
-*pt_BR.zeLabelTop -100/-100: ""
-*pt_BR.zeLabelTop -95/-95: ""
-*pt_BR.zeLabelTop -90/-90: ""
-*pt_BR.zeLabelTop -85/-85: ""
-*pt_BR.zeLabelTop -80/-80: ""
-*pt_BR.zeLabelTop -75/-75: ""
-*pt_BR.zeLabelTop -70/-70: ""
-*pt_BR.zeLabelTop -65/-65: ""
-*pt_BR.zeLabelTop -60/-60: ""
-*pt_BR.zeLabelTop -55/-55: ""
-*pt_BR.zeLabelTop -50/-50: ""
-*pt_BR.zeLabelTop -45/-45: ""
-*pt_BR.zeLabelTop -40/-40: ""
-*pt_BR.zeLabelTop -35/-35: ""
-*pt_BR.zeLabelTop -30/-30: ""
-*pt_BR.zeLabelTop -25/-25: ""
-*pt_BR.zeLabelTop -20/-20: ""
-*pt_BR.zeLabelTop -15/-15: ""
-*pt_BR.zeLabelTop -10/-10: ""
-*pt_BR.zeLabelTop -5/-5: ""
-*pt_BR.zeLabelTop 0/0: ""
-*pt_BR.zeLabelTop 5/5: ""
-*pt_BR.zeLabelTop 10/10: ""
-*pt_BR.zeLabelTop 15/15: ""
-*pt_BR.zeLabelTop 20/20: ""
-*pt_BR.zeLabelTop 25/25: ""
-*pt_BR.zeLabelTop 30/30: ""
-*pt_BR.zeLabelTop 35/35: ""
-*pt_BR.zeLabelTop 40/40: ""
-*pt_BR.zeLabelTop 45/45: ""
-*pt_BR.zeLabelTop 50/50: ""
-*pt_BR.zeLabelTop 55/55: ""
-*pt_BR.zeLabelTop 60/60: ""
-*pt_BR.zeLabelTop 65/65: ""
-*pt_BR.zeLabelTop 70/70: ""
-*pt_BR.zeLabelTop 75/75: ""
-*pt_BR.zeLabelTop 80/80: ""
-*pt_BR.zeLabelTop 85/85: ""
-*pt_BR.zeLabelTop 90/90: ""
-*pt_BR.zeLabelTop 95/95: ""
-*pt_BR.zeLabelTop 100/100: ""
-*pt_BR.zeLabelTop 105/105: ""
-*pt_BR.zeLabelTop 110/110: ""
-*pt_BR.zeLabelTop 115/115: ""
-*pt_BR.zeLabelTop 120/120: ""
-*pt_BR.Translation zePrintMode/Print Mode: ""
-*pt_BR.zePrintMode Saved/Rápido: ""
-*pt_BR.zePrintMode Tear/Tear-Off: ""
-*pt_BR.zePrintMode Peel/Peel-Off: ""
-*pt_BR.zePrintMode Rewind/Rewind: ""
-*pt_BR.zePrintMode Applicator/Applicator: ""
-*pt_BR.zePrintMode Cutter/Cutter: ""
-*pt_BR.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*pt_BR.zeTearOffPosition 1000/Rápido: ""
-*pt_BR.zeTearOffPosition -120/-120: ""
-*pt_BR.zeTearOffPosition -115/-115: ""
-*pt_BR.zeTearOffPosition -110/-110: ""
-*pt_BR.zeTearOffPosition -105/-105: ""
-*pt_BR.zeTearOffPosition -100/-100: ""
-*pt_BR.zeTearOffPosition -95/-95: ""
-*pt_BR.zeTearOffPosition -90/-90: ""
-*pt_BR.zeTearOffPosition -85/-85: ""
-*pt_BR.zeTearOffPosition -80/-80: ""
-*pt_BR.zeTearOffPosition -75/-75: ""
-*pt_BR.zeTearOffPosition -70/-70: ""
-*pt_BR.zeTearOffPosition -65/-65: ""
-*pt_BR.zeTearOffPosition -60/-60: ""
-*pt_BR.zeTearOffPosition -55/-55: ""
-*pt_BR.zeTearOffPosition -50/-50: ""
-*pt_BR.zeTearOffPosition -45/-45: ""
-*pt_BR.zeTearOffPosition -40/-40: ""
-*pt_BR.zeTearOffPosition -35/-35: ""
-*pt_BR.zeTearOffPosition -30/-30: ""
-*pt_BR.zeTearOffPosition -25/-25: ""
-*pt_BR.zeTearOffPosition -20/-20: ""
-*pt_BR.zeTearOffPosition -15/-15: ""
-*pt_BR.zeTearOffPosition -10/-10: ""
-*pt_BR.zeTearOffPosition -5/-5: ""
-*pt_BR.zeTearOffPosition 0/0: ""
-*pt_BR.zeTearOffPosition 5/5: ""
-*pt_BR.zeTearOffPosition 10/10: ""
-*pt_BR.zeTearOffPosition 15/15: ""
-*pt_BR.zeTearOffPosition 20/20: ""
-*pt_BR.zeTearOffPosition 25/25: ""
-*pt_BR.zeTearOffPosition 30/30: ""
-*pt_BR.zeTearOffPosition 35/35: ""
-*pt_BR.zeTearOffPosition 40/40: ""
-*pt_BR.zeTearOffPosition 45/45: ""
-*pt_BR.zeTearOffPosition 50/50: ""
-*pt_BR.zeTearOffPosition 55/55: ""
-*pt_BR.zeTearOffPosition 60/60: ""
-*pt_BR.zeTearOffPosition 65/65: ""
-*pt_BR.zeTearOffPosition 70/70: ""
-*pt_BR.zeTearOffPosition 75/75: ""
-*pt_BR.zeTearOffPosition 80/80: ""
-*pt_BR.zeTearOffPosition 85/85: ""
-*pt_BR.zeTearOffPosition 90/90: ""
-*pt_BR.zeTearOffPosition 95/95: ""
-*pt_BR.zeTearOffPosition 100/100: ""
-*pt_BR.zeTearOffPosition 105/105: ""
-*pt_BR.zeTearOffPosition 110/110: ""
-*pt_BR.zeTearOffPosition 115/115: ""
-*pt_BR.zeTearOffPosition 120/120: ""
-*pt_BR.Translation zeErrorReprint/Reprint After Error: ""
-*pt_BR.zeErrorReprint Saved/Rápido: ""
-*pt_BR.zeErrorReprint Always/Always: ""
-*pt_BR.zeErrorReprint Never/Never: ""
-*sv.Translation Manufacturer/Zebra: ""
-*sv.Translation ModelName/Zebra ZPL Label Printer: ""
-*sv.Translation ShortNickName/Zebra ZPL Label Printer: ""
-*sv.Translation NickName/Zebra ZPL Label Printer, 1.4: ""
-*sv.Translation PageSize/Media Size: ""
-*sv.PageSize w90h18/1.25x0.25": ""
-*sv.PageSize w90h162/1.25x2.25": ""
-*sv.PageSize w108h18/1.50x0.25": ""
-*sv.PageSize w108h36/1.50x0.50": ""
-*sv.PageSize w108h72/1.50x1.00": ""
-*sv.PageSize w108h144/1.50x2.00": ""
-*sv.PageSize w144h26/2.00x0.37": ""
-*sv.PageSize w144h36/2.00x0.50": ""
-*sv.PageSize w144h72/2.00x1.00": ""
-*sv.PageSize w144h90/2.00x1.25": ""
-*sv.PageSize w144h288/2.00x4.00": ""
-*sv.PageSize w144h396/2.00x5.50": ""
-*sv.PageSize w162h36/2.25x0.50": ""
-*sv.PageSize w162h90/2.25x1.25": ""
-*sv.PageSize w162h288/2.25x4.00": ""
-*sv.PageSize w162h396/2.25x5.50": ""
-*sv.PageSize w171h396/2.38x5.50": ""
-*sv.PageSize w180h72/2.50x1.00": ""
-*sv.PageSize w180h144/2.50x2.00": ""
-*sv.PageSize w198h90/2.75x1.25": ""
-*sv.PageSize w216h72/3.00x1.00": ""
-*sv.PageSize w216h90/3.00x1.25": ""
-*sv.PageSize w216h144/3.00x2.00": ""
-*sv.PageSize w216h216/3.00x3.00": ""
-*sv.PageSize w216h360/3.00x5.00": ""
-*sv.PageSize w234h144/3.25x2.00": ""
-*sv.PageSize w234h360/3.25x5.00": ""
-*sv.PageSize w234h396/3.25x5.50": ""
-*sv.PageSize w234h419/3.25x5.83": ""
-*sv.PageSize w234h563/3.25x7.83": ""
-*sv.PageSize w252h72/3.50x1.00": ""
-*sv.PageSize w288h72/4.00x1.00": ""
-*sv.PageSize w288h144/4.00x2.00": ""
-*sv.PageSize w288h180/4.00x2.50": ""
-*sv.PageSize w288h216/4.00x3.00": ""
-*sv.PageSize w288h288/4.00x4.00": ""
-*sv.PageSize w288h360/4.00x5.00": ""
-*sv.PageSize w288h432/4.00x6.00": ""
-*sv.PageSize w288h468/4.00x6.50": ""
-*sv.PageSize w288h936/4.00x13.00": ""
-*sv.PageSize w432h72/6.00x1.00": ""
-*sv.PageSize w432h144/6.00x2.00": ""
-*sv.PageSize w432h216/6.00x3.00": ""
-*sv.PageSize w432h288/6.00x4.00": ""
-*sv.PageSize w432h360/6.00x5.00": ""
-*sv.PageSize w432h432/6.00x6.00": ""
-*sv.PageSize w432h468/6.00x6.50": ""
-*sv.PageSize w576h72/8.00x1.00": ""
-*sv.PageSize w576h144/8.00x2.00": ""
-*sv.PageSize w576h216/8.00x3.00": ""
-*sv.PageSize w576h288/8.00x4.00": ""
-*sv.PageSize w576h360/8.00x5.00": ""
-*sv.PageSize w576h432/8.00x6.00": ""
-*sv.PageSize w576h468/8.00x6.50": ""
-*sv.Translation Resolution/Resolution: ""
-*sv.Resolution 203dpi/203dpi: ""
-*sv.Resolution 300dpi/300dpi: ""
-*sv.Resolution 600dpi/600dpi: ""
-*sv.Translation zeMediaTracking/Media Tracking: ""
-*sv.zeMediaTracking Continuous/Continuous: ""
-*sv.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*sv.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*sv.Translation MediaType/Media Type: ""
-*sv.MediaType Saved/Skrivarstandard: ""
-*sv.MediaType Thermal/Thermal Transfer Media: ""
-*sv.MediaType Direct/Direct Thermal Media: ""
-*sv.Translation PrinterSettings/Printer Settings: ""
-*sv.Translation Darkness/Darkness: ""
-*sv.Darkness -1/Skrivarstandard: ""
-*sv.Darkness 1/1: ""
-*sv.Darkness 2/2: ""
-*sv.Darkness 3/3: ""
-*sv.Darkness 4/4: ""
-*sv.Darkness 5/5: ""
-*sv.Darkness 6/6: ""
-*sv.Darkness 7/7: ""
-*sv.Darkness 8/8: ""
-*sv.Darkness 9/9: ""
-*sv.Darkness 10/10: ""
-*sv.Darkness 11/11: ""
-*sv.Darkness 12/12: ""
-*sv.Darkness 13/13: ""
-*sv.Darkness 14/14: ""
-*sv.Darkness 15/15: ""
-*sv.Darkness 16/16: ""
-*sv.Darkness 17/17: ""
-*sv.Darkness 18/18: ""
-*sv.Darkness 19/19: ""
-*sv.Darkness 20/20: ""
-*sv.Darkness 21/21: ""
-*sv.Darkness 22/22: ""
-*sv.Darkness 23/23: ""
-*sv.Darkness 24/24: ""
-*sv.Darkness 25/25: ""
-*sv.Darkness 26/26: ""
-*sv.Darkness 27/27: ""
-*sv.Darkness 28/28: ""
-*sv.Darkness 29/29: ""
-*sv.Darkness 30/30: ""
-*sv.Translation zePrintRate/Print Rate: ""
-*sv.zePrintRate Default/Skrivarstandard: ""
-*sv.zePrintRate 1/1 inch/sec.: ""
-*sv.zePrintRate 2/2 inches/sec.: ""
-*sv.zePrintRate 3/3 inches/sec.: ""
-*sv.zePrintRate 4/4 inches/sec.: ""
-*sv.zePrintRate 5/5 inches/sec.: ""
-*sv.zePrintRate 6/6 inches/sec.: ""
-*sv.zePrintRate 7/7 inches/sec.: ""
-*sv.zePrintRate 8/8 inches/sec.: ""
-*sv.zePrintRate 9/9 inches/sec.: ""
-*sv.zePrintRate 10/10 inches/sec.: ""
-*sv.zePrintRate 11/11 inches/sec.: ""
-*sv.zePrintRate 12/12 inches/sec.: ""
-*sv.Translation zeLabelTop/Label Top: ""
-*sv.zeLabelTop 200/Skrivarstandard: ""
-*sv.zeLabelTop -120/-120: ""
-*sv.zeLabelTop -115/-115: ""
-*sv.zeLabelTop -110/-110: ""
-*sv.zeLabelTop -105/-105: ""
-*sv.zeLabelTop -100/-100: ""
-*sv.zeLabelTop -95/-95: ""
-*sv.zeLabelTop -90/-90: ""
-*sv.zeLabelTop -85/-85: ""
-*sv.zeLabelTop -80/-80: ""
-*sv.zeLabelTop -75/-75: ""
-*sv.zeLabelTop -70/-70: ""
-*sv.zeLabelTop -65/-65: ""
-*sv.zeLabelTop -60/-60: ""
-*sv.zeLabelTop -55/-55: ""
-*sv.zeLabelTop -50/-50: ""
-*sv.zeLabelTop -45/-45: ""
-*sv.zeLabelTop -40/-40: ""
-*sv.zeLabelTop -35/-35: ""
-*sv.zeLabelTop -30/-30: ""
-*sv.zeLabelTop -25/-25: ""
-*sv.zeLabelTop -20/-20: ""
-*sv.zeLabelTop -15/-15: ""
-*sv.zeLabelTop -10/-10: ""
-*sv.zeLabelTop -5/-5: ""
-*sv.zeLabelTop 0/0: ""
-*sv.zeLabelTop 5/5: ""
-*sv.zeLabelTop 10/10: ""
-*sv.zeLabelTop 15/15: ""
-*sv.zeLabelTop 20/20: ""
-*sv.zeLabelTop 25/25: ""
-*sv.zeLabelTop 30/30: ""
-*sv.zeLabelTop 35/35: ""
-*sv.zeLabelTop 40/40: ""
-*sv.zeLabelTop 45/45: ""
-*sv.zeLabelTop 50/50: ""
-*sv.zeLabelTop 55/55: ""
-*sv.zeLabelTop 60/60: ""
-*sv.zeLabelTop 65/65: ""
-*sv.zeLabelTop 70/70: ""
-*sv.zeLabelTop 75/75: ""
-*sv.zeLabelTop 80/80: ""
-*sv.zeLabelTop 85/85: ""
-*sv.zeLabelTop 90/90: ""
-*sv.zeLabelTop 95/95: ""
-*sv.zeLabelTop 100/100: ""
-*sv.zeLabelTop 105/105: ""
-*sv.zeLabelTop 110/110: ""
-*sv.zeLabelTop 115/115: ""
-*sv.zeLabelTop 120/120: ""
-*sv.Translation zePrintMode/Print Mode: ""
-*sv.zePrintMode Saved/Skrivarstandard: ""
-*sv.zePrintMode Tear/Tear-Off: ""
-*sv.zePrintMode Peel/Peel-Off: ""
-*sv.zePrintMode Rewind/Rewind: ""
-*sv.zePrintMode Applicator/Applicator: ""
-*sv.zePrintMode Cutter/Cutter: ""
-*sv.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*sv.zeTearOffPosition 1000/Skrivarstandard: ""
-*sv.zeTearOffPosition -120/-120: ""
-*sv.zeTearOffPosition -115/-115: ""
-*sv.zeTearOffPosition -110/-110: ""
-*sv.zeTearOffPosition -105/-105: ""
-*sv.zeTearOffPosition -100/-100: ""
-*sv.zeTearOffPosition -95/-95: ""
-*sv.zeTearOffPosition -90/-90: ""
-*sv.zeTearOffPosition -85/-85: ""
-*sv.zeTearOffPosition -80/-80: ""
-*sv.zeTearOffPosition -75/-75: ""
-*sv.zeTearOffPosition -70/-70: ""
-*sv.zeTearOffPosition -65/-65: ""
-*sv.zeTearOffPosition -60/-60: ""
-*sv.zeTearOffPosition -55/-55: ""
-*sv.zeTearOffPosition -50/-50: ""
-*sv.zeTearOffPosition -45/-45: ""
-*sv.zeTearOffPosition -40/-40: ""
-*sv.zeTearOffPosition -35/-35: ""
-*sv.zeTearOffPosition -30/-30: ""
-*sv.zeTearOffPosition -25/-25: ""
-*sv.zeTearOffPosition -20/-20: ""
-*sv.zeTearOffPosition -15/-15: ""
-*sv.zeTearOffPosition -10/-10: ""
-*sv.zeTearOffPosition -5/-5: ""
-*sv.zeTearOffPosition 0/0: ""
-*sv.zeTearOffPosition 5/5: ""
-*sv.zeTearOffPosition 10/10: ""
-*sv.zeTearOffPosition 15/15: ""
-*sv.zeTearOffPosition 20/20: ""
-*sv.zeTearOffPosition 25/25: ""
-*sv.zeTearOffPosition 30/30: ""
-*sv.zeTearOffPosition 35/35: ""
-*sv.zeTearOffPosition 40/40: ""
-*sv.zeTearOffPosition 45/45: ""
-*sv.zeTearOffPosition 50/50: ""
-*sv.zeTearOffPosition 55/55: ""
-*sv.zeTearOffPosition 60/60: ""
-*sv.zeTearOffPosition 65/65: ""
-*sv.zeTearOffPosition 70/70: ""
-*sv.zeTearOffPosition 75/75: ""
-*sv.zeTearOffPosition 80/80: ""
-*sv.zeTearOffPosition 85/85: ""
-*sv.zeTearOffPosition 90/90: ""
-*sv.zeTearOffPosition 95/95: ""
-*sv.zeTearOffPosition 100/100: ""
-*sv.zeTearOffPosition 105/105: ""
-*sv.zeTearOffPosition 110/110: ""
-*sv.zeTearOffPosition 115/115: ""
-*sv.zeTearOffPosition 120/120: ""
-*sv.Translation zeErrorReprint/Reprint After Error: ""
-*sv.zeErrorReprint Saved/Skrivarstandard: ""
-*sv.zeErrorReprint Always/Always: ""
-*sv.zeErrorReprint Never/Never: ""
-*zh.Translation Manufacturer/Zebra: ""
-*zh.Translation ModelName/Zebra ZPL Label Printer: ""
-*zh.Translation ShortNickName/Zebra ZPL Label Printer: ""
-*zh.Translation NickName/Zebra ZPL Label Printer, 1.4: ""
-*zh.Translation PageSize/Page Size: ""
-*zh.PageSize w90h18/1.25x0.25": ""
-*zh.PageSize w90h162/1.25x2.25": ""
-*zh.PageSize w108h18/1.50x0.25": ""
-*zh.PageSize w108h36/1.50x0.50": ""
-*zh.PageSize w108h72/1.50x1.00": ""
-*zh.PageSize w108h144/1.50x2.00": ""
-*zh.PageSize w144h26/2.00x0.37": ""
-*zh.PageSize w144h36/2.00x0.50": ""
-*zh.PageSize w144h72/2.00x1.00": ""
-*zh.PageSize w144h90/2.00x1.25": ""
-*zh.PageSize w144h288/2.00x4.00": ""
-*zh.PageSize w144h396/2.00x5.50": ""
-*zh.PageSize w162h36/2.25x0.50": ""
-*zh.PageSize w162h90/2.25x1.25": ""
-*zh.PageSize w162h288/2.25x4.00": ""
-*zh.PageSize w162h396/2.25x5.50": ""
-*zh.PageSize w171h396/2.38x5.50": ""
-*zh.PageSize w180h72/2.50x1.00": ""
-*zh.PageSize w180h144/2.50x2.00": ""
-*zh.PageSize w198h90/2.75x1.25": ""
-*zh.PageSize w216h72/3.00x1.00": ""
-*zh.PageSize w216h90/3.00x1.25": ""
-*zh.PageSize w216h144/3.00x2.00": ""
-*zh.PageSize w216h216/3.00x3.00": ""
-*zh.PageSize w216h360/3.00x5.00": ""
-*zh.PageSize w234h144/3.25x2.00": ""
-*zh.PageSize w234h360/3.25x5.00": ""
-*zh.PageSize w234h396/3.25x5.50": ""
-*zh.PageSize w234h419/3.25x5.83": ""
-*zh.PageSize w234h563/3.25x7.83": ""
-*zh.PageSize w252h72/3.50x1.00": ""
-*zh.PageSize w288h72/4.00x1.00": ""
-*zh.PageSize w288h144/4.00x2.00": ""
-*zh.PageSize w288h180/4.00x2.50": ""
-*zh.PageSize w288h216/4.00x3.00": ""
-*zh.PageSize w288h288/4.00x4.00": ""
-*zh.PageSize w288h360/4.00x5.00": ""
-*zh.PageSize w288h432/4.00x6.00": ""
-*zh.PageSize w288h468/4.00x6.50": ""
-*zh.PageSize w288h936/4.00x13.00": ""
-*zh.PageSize w432h72/6.00x1.00": ""
-*zh.PageSize w432h144/6.00x2.00": ""
-*zh.PageSize w432h216/6.00x3.00": ""
-*zh.PageSize w432h288/6.00x4.00": ""
-*zh.PageSize w432h360/6.00x5.00": ""
-*zh.PageSize w432h432/6.00x6.00": ""
-*zh.PageSize w432h468/6.00x6.50": ""
-*zh.PageSize w576h72/8.00x1.00": ""
-*zh.PageSize w576h144/8.00x2.00": ""
-*zh.PageSize w576h216/8.00x3.00": ""
-*zh.PageSize w576h288/8.00x4.00": ""
-*zh.PageSize w576h360/8.00x5.00": ""
-*zh.PageSize w576h432/8.00x6.00": ""
-*zh.PageSize w576h468/8.00x6.50": ""
-*zh.Translation Resolution/Resolution: ""
-*zh.Resolution 203dpi/203dpi: ""
-*zh.Resolution 300dpi/300dpi: ""
-*zh.Resolution 600dpi/600dpi: ""
-*zh.Translation zeMediaTracking/Media Tracking: ""
-*zh.zeMediaTracking Continuous/Continuous: ""
-*zh.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*zh.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*zh.Translation MediaType/Media Type: ""
-*zh.MediaType Saved/Printer's Current Setting: ""
-*zh.MediaType Thermal/Thermal Transfer Media: ""
-*zh.MediaType Direct/Direct Thermal Media: ""
-*zh.Translation PrinterSettings/Printer Settings: ""
-*zh.Translation Darkness/Darkness: ""
-*zh.Darkness -1/Printer's Current Setting: ""
-*zh.Darkness 1/1: ""
-*zh.Darkness 2/2: ""
-*zh.Darkness 3/3: ""
-*zh.Darkness 4/4: ""
-*zh.Darkness 5/5: ""
-*zh.Darkness 6/6: ""
-*zh.Darkness 7/7: ""
-*zh.Darkness 8/8: ""
-*zh.Darkness 9/9: ""
-*zh.Darkness 10/10: ""
-*zh.Darkness 11/11: ""
-*zh.Darkness 12/12: ""
-*zh.Darkness 13/13: ""
-*zh.Darkness 14/14: ""
-*zh.Darkness 15/15: ""
-*zh.Darkness 16/16: ""
-*zh.Darkness 17/17: ""
-*zh.Darkness 18/18: ""
-*zh.Darkness 19/19: ""
-*zh.Darkness 20/20: ""
-*zh.Darkness 21/21: ""
-*zh.Darkness 22/22: ""
-*zh.Darkness 23/23: ""
-*zh.Darkness 24/24: ""
-*zh.Darkness 25/25: ""
-*zh.Darkness 26/26: ""
-*zh.Darkness 27/27: ""
-*zh.Darkness 28/28: ""
-*zh.Darkness 29/29: ""
-*zh.Darkness 30/30: ""
-*zh.Translation zePrintRate/Print Rate: ""
-*zh.zePrintRate Default/Printer's Current Setting: ""
-*zh.zePrintRate 1/1 inch/sec.: ""
-*zh.zePrintRate 2/2 inches/sec.: ""
-*zh.zePrintRate 3/3 inches/sec.: ""
-*zh.zePrintRate 4/4 inches/sec.: ""
-*zh.zePrintRate 5/5 inches/sec.: ""
-*zh.zePrintRate 6/6 inches/sec.: ""
-*zh.zePrintRate 7/7 inches/sec.: ""
-*zh.zePrintRate 8/8 inches/sec.: ""
-*zh.zePrintRate 9/9 inches/sec.: ""
-*zh.zePrintRate 10/10 inches/sec.: ""
-*zh.zePrintRate 11/11 inches/sec.: ""
-*zh.zePrintRate 12/12 inches/sec.: ""
-*zh.Translation zeLabelTop/Label Top: ""
-*zh.zeLabelTop 200/Printer's Current Setting: ""
-*zh.zeLabelTop -120/-120: ""
-*zh.zeLabelTop -115/-115: ""
-*zh.zeLabelTop -110/-110: ""
-*zh.zeLabelTop -105/-105: ""
-*zh.zeLabelTop -100/-100: ""
-*zh.zeLabelTop -95/-95: ""
-*zh.zeLabelTop -90/-90: ""
-*zh.zeLabelTop -85/-85: ""
-*zh.zeLabelTop -80/-80: ""
-*zh.zeLabelTop -75/-75: ""
-*zh.zeLabelTop -70/-70: ""
-*zh.zeLabelTop -65/-65: ""
-*zh.zeLabelTop -60/-60: ""
-*zh.zeLabelTop -55/-55: ""
-*zh.zeLabelTop -50/-50: ""
-*zh.zeLabelTop -45/-45: ""
-*zh.zeLabelTop -40/-40: ""
-*zh.zeLabelTop -35/-35: ""
-*zh.zeLabelTop -30/-30: ""
-*zh.zeLabelTop -25/-25: ""
-*zh.zeLabelTop -20/-20: ""
-*zh.zeLabelTop -15/-15: ""
-*zh.zeLabelTop -10/-10: ""
-*zh.zeLabelTop -5/-5: ""
-*zh.zeLabelTop 0/0: ""
-*zh.zeLabelTop 5/5: ""
-*zh.zeLabelTop 10/10: ""
-*zh.zeLabelTop 15/15: ""
-*zh.zeLabelTop 20/20: ""
-*zh.zeLabelTop 25/25: ""
-*zh.zeLabelTop 30/30: ""
-*zh.zeLabelTop 35/35: ""
-*zh.zeLabelTop 40/40: ""
-*zh.zeLabelTop 45/45: ""
-*zh.zeLabelTop 50/50: ""
-*zh.zeLabelTop 55/55: ""
-*zh.zeLabelTop 60/60: ""
-*zh.zeLabelTop 65/65: ""
-*zh.zeLabelTop 70/70: ""
-*zh.zeLabelTop 75/75: ""
-*zh.zeLabelTop 80/80: ""
-*zh.zeLabelTop 85/85: ""
-*zh.zeLabelTop 90/90: ""
-*zh.zeLabelTop 95/95: ""
-*zh.zeLabelTop 100/100: ""
-*zh.zeLabelTop 105/105: ""
-*zh.zeLabelTop 110/110: ""
-*zh.zeLabelTop 115/115: ""
-*zh.zeLabelTop 120/120: ""
-*zh.Translation zePrintMode/Print Mode: ""
-*zh.zePrintMode Saved/Printer's Current Setting: ""
-*zh.zePrintMode Tear/Tear-Off: ""
-*zh.zePrintMode Peel/Peel-Off: ""
-*zh.zePrintMode Rewind/Rewind: ""
-*zh.zePrintMode Applicator/Applicator: ""
-*zh.zePrintMode Cutter/Cutter: ""
-*zh.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*zh.zeTearOffPosition 1000/Printer's Current Setting: ""
-*zh.zeTearOffPosition -120/-120: ""
-*zh.zeTearOffPosition -115/-115: ""
-*zh.zeTearOffPosition -110/-110: ""
-*zh.zeTearOffPosition -105/-105: ""
-*zh.zeTearOffPosition -100/-100: ""
-*zh.zeTearOffPosition -95/-95: ""
-*zh.zeTearOffPosition -90/-90: ""
-*zh.zeTearOffPosition -85/-85: ""
-*zh.zeTearOffPosition -80/-80: ""
-*zh.zeTearOffPosition -75/-75: ""
-*zh.zeTearOffPosition -70/-70: ""
-*zh.zeTearOffPosition -65/-65: ""
-*zh.zeTearOffPosition -60/-60: ""
-*zh.zeTearOffPosition -55/-55: ""
-*zh.zeTearOffPosition -50/-50: ""
-*zh.zeTearOffPosition -45/-45: ""
-*zh.zeTearOffPosition -40/-40: ""
-*zh.zeTearOffPosition -35/-35: ""
-*zh.zeTearOffPosition -30/-30: ""
-*zh.zeTearOffPosition -25/-25: ""
-*zh.zeTearOffPosition -20/-20: ""
-*zh.zeTearOffPosition -15/-15: ""
-*zh.zeTearOffPosition -10/-10: ""
-*zh.zeTearOffPosition -5/-5: ""
-*zh.zeTearOffPosition 0/0: ""
-*zh.zeTearOffPosition 5/5: ""
-*zh.zeTearOffPosition 10/10: ""
-*zh.zeTearOffPosition 15/15: ""
-*zh.zeTearOffPosition 20/20: ""
-*zh.zeTearOffPosition 25/25: ""
-*zh.zeTearOffPosition 30/30: ""
-*zh.zeTearOffPosition 35/35: ""
-*zh.zeTearOffPosition 40/40: ""
-*zh.zeTearOffPosition 45/45: ""
-*zh.zeTearOffPosition 50/50: ""
-*zh.zeTearOffPosition 55/55: ""
-*zh.zeTearOffPosition 60/60: ""
-*zh.zeTearOffPosition 65/65: ""
-*zh.zeTearOffPosition 70/70: ""
-*zh.zeTearOffPosition 75/75: ""
-*zh.zeTearOffPosition 80/80: ""
-*zh.zeTearOffPosition 85/85: ""
-*zh.zeTearOffPosition 90/90: ""
-*zh.zeTearOffPosition 95/95: ""
-*zh.zeTearOffPosition 100/100: ""
-*zh.zeTearOffPosition 105/105: ""
-*zh.zeTearOffPosition 110/110: ""
-*zh.zeTearOffPosition 115/115: ""
-*zh.zeTearOffPosition 120/120: ""
-*zh.Translation zeErrorReprint/Reprint After Error: ""
-*zh.zeErrorReprint Saved/Printer's Current Setting: ""
-*zh.zeErrorReprint Always/Always: ""
-*zh.zeErrorReprint Never/Never: ""
-*zh_TW.Translation Manufacturer/Zebra: ""
-*zh_TW.Translation ModelName/Zebra ZPL Label Printer: ""
-*zh_TW.Translation ShortNickName/Zebra ZPL Label Printer: ""
-*zh_TW.Translation NickName/Zebra ZPL Label Printer, 1.4: ""
-*zh_TW.Translation PageSize/Page Size: ""
-*zh_TW.PageSize w90h18/1.25x0.25": ""
-*zh_TW.PageSize w90h162/1.25x2.25": ""
-*zh_TW.PageSize w108h18/1.50x0.25": ""
-*zh_TW.PageSize w108h36/1.50x0.50": ""
-*zh_TW.PageSize w108h72/1.50x1.00": ""
-*zh_TW.PageSize w108h144/1.50x2.00": ""
-*zh_TW.PageSize w144h26/2.00x0.37": ""
-*zh_TW.PageSize w144h36/2.00x0.50": ""
-*zh_TW.PageSize w144h72/2.00x1.00": ""
-*zh_TW.PageSize w144h90/2.00x1.25": ""
-*zh_TW.PageSize w144h288/2.00x4.00": ""
-*zh_TW.PageSize w144h396/2.00x5.50": ""
-*zh_TW.PageSize w162h36/2.25x0.50": ""
-*zh_TW.PageSize w162h90/2.25x1.25": ""
-*zh_TW.PageSize w162h288/2.25x4.00": ""
-*zh_TW.PageSize w162h396/2.25x5.50": ""
-*zh_TW.PageSize w171h396/2.38x5.50": ""
-*zh_TW.PageSize w180h72/2.50x1.00": ""
-*zh_TW.PageSize w180h144/2.50x2.00": ""
-*zh_TW.PageSize w198h90/2.75x1.25": ""
-*zh_TW.PageSize w216h72/3.00x1.00": ""
-*zh_TW.PageSize w216h90/3.00x1.25": ""
-*zh_TW.PageSize w216h144/3.00x2.00": ""
-*zh_TW.PageSize w216h216/3.00x3.00": ""
-*zh_TW.PageSize w216h360/3.00x5.00": ""
-*zh_TW.PageSize w234h144/3.25x2.00": ""
-*zh_TW.PageSize w234h360/3.25x5.00": ""
-*zh_TW.PageSize w234h396/3.25x5.50": ""
-*zh_TW.PageSize w234h419/3.25x5.83": ""
-*zh_TW.PageSize w234h563/3.25x7.83": ""
-*zh_TW.PageSize w252h72/3.50x1.00": ""
-*zh_TW.PageSize w288h72/4.00x1.00": ""
-*zh_TW.PageSize w288h144/4.00x2.00": ""
-*zh_TW.PageSize w288h180/4.00x2.50": ""
-*zh_TW.PageSize w288h216/4.00x3.00": ""
-*zh_TW.PageSize w288h288/4.00x4.00": ""
-*zh_TW.PageSize w288h360/4.00x5.00": ""
-*zh_TW.PageSize w288h432/4.00x6.00": ""
-*zh_TW.PageSize w288h468/4.00x6.50": ""
-*zh_TW.PageSize w288h936/4.00x13.00": ""
-*zh_TW.PageSize w432h72/6.00x1.00": ""
-*zh_TW.PageSize w432h144/6.00x2.00": ""
-*zh_TW.PageSize w432h216/6.00x3.00": ""
-*zh_TW.PageSize w432h288/6.00x4.00": ""
-*zh_TW.PageSize w432h360/6.00x5.00": ""
-*zh_TW.PageSize w432h432/6.00x6.00": ""
-*zh_TW.PageSize w432h468/6.00x6.50": ""
-*zh_TW.PageSize w576h72/8.00x1.00": ""
-*zh_TW.PageSize w576h144/8.00x2.00": ""
-*zh_TW.PageSize w576h216/8.00x3.00": ""
-*zh_TW.PageSize w576h288/8.00x4.00": ""
-*zh_TW.PageSize w576h360/8.00x5.00": ""
-*zh_TW.PageSize w576h432/8.00x6.00": ""
-*zh_TW.PageSize w576h468/8.00x6.50": ""
-*zh_TW.Translation Resolution/Resolution: ""
-*zh_TW.Resolution 203dpi/203dpi: ""
-*zh_TW.Resolution 300dpi/300dpi: ""
-*zh_TW.Resolution 600dpi/600dpi: ""
-*zh_TW.Translation zeMediaTracking/Media Tracking: ""
-*zh_TW.zeMediaTracking Continuous/Continuous: ""
-*zh_TW.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*zh_TW.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*zh_TW.Translation MediaType/Media Type: ""
-*zh_TW.MediaType Saved/快速: ""
-*zh_TW.MediaType Thermal/Thermal Transfer Media: ""
-*zh_TW.MediaType Direct/Direct Thermal Media: ""
-*zh_TW.Translation PrinterSettings/Printer Settings: ""
-*zh_TW.Translation Darkness/Darkness: ""
-*zh_TW.Darkness -1/快速: ""
-*zh_TW.Darkness 1/1: ""
-*zh_TW.Darkness 2/2: ""
-*zh_TW.Darkness 3/3: ""
-*zh_TW.Darkness 4/4: ""
-*zh_TW.Darkness 5/5: ""
-*zh_TW.Darkness 6/6: ""
-*zh_TW.Darkness 7/7: ""
-*zh_TW.Darkness 8/8: ""
-*zh_TW.Darkness 9/9: ""
-*zh_TW.Darkness 10/10: ""
-*zh_TW.Darkness 11/11: ""
-*zh_TW.Darkness 12/12: ""
-*zh_TW.Darkness 13/13: ""
-*zh_TW.Darkness 14/14: ""
-*zh_TW.Darkness 15/15: ""
-*zh_TW.Darkness 16/16: ""
-*zh_TW.Darkness 17/17: ""
-*zh_TW.Darkness 18/18: ""
-*zh_TW.Darkness 19/19: ""
-*zh_TW.Darkness 20/20: ""
-*zh_TW.Darkness 21/21: ""
-*zh_TW.Darkness 22/22: ""
-*zh_TW.Darkness 23/23: ""
-*zh_TW.Darkness 24/24: ""
-*zh_TW.Darkness 25/25: ""
-*zh_TW.Darkness 26/26: ""
-*zh_TW.Darkness 27/27: ""
-*zh_TW.Darkness 28/28: ""
-*zh_TW.Darkness 29/29: ""
-*zh_TW.Darkness 30/30: ""
-*zh_TW.Translation zePrintRate/Print Rate: ""
-*zh_TW.zePrintRate Default/快速: ""
-*zh_TW.zePrintRate 1/1 inch/sec.: ""
-*zh_TW.zePrintRate 2/2 inches/sec.: ""
-*zh_TW.zePrintRate 3/3 inches/sec.: ""
-*zh_TW.zePrintRate 4/4 inches/sec.: ""
-*zh_TW.zePrintRate 5/5 inches/sec.: ""
-*zh_TW.zePrintRate 6/6 inches/sec.: ""
-*zh_TW.zePrintRate 7/7 inches/sec.: ""
-*zh_TW.zePrintRate 8/8 inches/sec.: ""
-*zh_TW.zePrintRate 9/9 inches/sec.: ""
-*zh_TW.zePrintRate 10/10 inches/sec.: ""
-*zh_TW.zePrintRate 11/11 inches/sec.: ""
-*zh_TW.zePrintRate 12/12 inches/sec.: ""
-*zh_TW.Translation zeLabelTop/Label Top: ""
-*zh_TW.zeLabelTop 200/快速: ""
-*zh_TW.zeLabelTop -120/-120: ""
-*zh_TW.zeLabelTop -115/-115: ""
-*zh_TW.zeLabelTop -110/-110: ""
-*zh_TW.zeLabelTop -105/-105: ""
-*zh_TW.zeLabelTop -100/-100: ""
-*zh_TW.zeLabelTop -95/-95: ""
-*zh_TW.zeLabelTop -90/-90: ""
-*zh_TW.zeLabelTop -85/-85: ""
-*zh_TW.zeLabelTop -80/-80: ""
-*zh_TW.zeLabelTop -75/-75: ""
-*zh_TW.zeLabelTop -70/-70: ""
-*zh_TW.zeLabelTop -65/-65: ""
-*zh_TW.zeLabelTop -60/-60: ""
-*zh_TW.zeLabelTop -55/-55: ""
-*zh_TW.zeLabelTop -50/-50: ""
-*zh_TW.zeLabelTop -45/-45: ""
-*zh_TW.zeLabelTop -40/-40: ""
-*zh_TW.zeLabelTop -35/-35: ""
-*zh_TW.zeLabelTop -30/-30: ""
-*zh_TW.zeLabelTop -25/-25: ""
-*zh_TW.zeLabelTop -20/-20: ""
-*zh_TW.zeLabelTop -15/-15: ""
-*zh_TW.zeLabelTop -10/-10: ""
-*zh_TW.zeLabelTop -5/-5: ""
-*zh_TW.zeLabelTop 0/0: ""
-*zh_TW.zeLabelTop 5/5: ""
-*zh_TW.zeLabelTop 10/10: ""
-*zh_TW.zeLabelTop 15/15: ""
-*zh_TW.zeLabelTop 20/20: ""
-*zh_TW.zeLabelTop 25/25: ""
-*zh_TW.zeLabelTop 30/30: ""
-*zh_TW.zeLabelTop 35/35: ""
-*zh_TW.zeLabelTop 40/40: ""
-*zh_TW.zeLabelTop 45/45: ""
-*zh_TW.zeLabelTop 50/50: ""
-*zh_TW.zeLabelTop 55/55: ""
-*zh_TW.zeLabelTop 60/60: ""
-*zh_TW.zeLabelTop 65/65: ""
-*zh_TW.zeLabelTop 70/70: ""
-*zh_TW.zeLabelTop 75/75: ""
-*zh_TW.zeLabelTop 80/80: ""
-*zh_TW.zeLabelTop 85/85: ""
-*zh_TW.zeLabelTop 90/90: ""
-*zh_TW.zeLabelTop 95/95: ""
-*zh_TW.zeLabelTop 100/100: ""
-*zh_TW.zeLabelTop 105/105: ""
-*zh_TW.zeLabelTop 110/110: ""
-*zh_TW.zeLabelTop 115/115: ""
-*zh_TW.zeLabelTop 120/120: ""
-*zh_TW.Translation zePrintMode/Print Mode: ""
-*zh_TW.zePrintMode Saved/快速: ""
-*zh_TW.zePrintMode Tear/Tear-Off: ""
-*zh_TW.zePrintMode Peel/Peel-Off: ""
-*zh_TW.zePrintMode Rewind/Rewind: ""
-*zh_TW.zePrintMode Applicator/Applicator: ""
-*zh_TW.zePrintMode Cutter/Cutter: ""
-*zh_TW.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*zh_TW.zeTearOffPosition 1000/快速: ""
-*zh_TW.zeTearOffPosition -120/-120: ""
-*zh_TW.zeTearOffPosition -115/-115: ""
-*zh_TW.zeTearOffPosition -110/-110: ""
-*zh_TW.zeTearOffPosition -105/-105: ""
-*zh_TW.zeTearOffPosition -100/-100: ""
-*zh_TW.zeTearOffPosition -95/-95: ""
-*zh_TW.zeTearOffPosition -90/-90: ""
-*zh_TW.zeTearOffPosition -85/-85: ""
-*zh_TW.zeTearOffPosition -80/-80: ""
-*zh_TW.zeTearOffPosition -75/-75: ""
-*zh_TW.zeTearOffPosition -70/-70: ""
-*zh_TW.zeTearOffPosition -65/-65: ""
-*zh_TW.zeTearOffPosition -60/-60: ""
-*zh_TW.zeTearOffPosition -55/-55: ""
-*zh_TW.zeTearOffPosition -50/-50: ""
-*zh_TW.zeTearOffPosition -45/-45: ""
-*zh_TW.zeTearOffPosition -40/-40: ""
-*zh_TW.zeTearOffPosition -35/-35: ""
-*zh_TW.zeTearOffPosition -30/-30: ""
-*zh_TW.zeTearOffPosition -25/-25: ""
-*zh_TW.zeTearOffPosition -20/-20: ""
-*zh_TW.zeTearOffPosition -15/-15: ""
-*zh_TW.zeTearOffPosition -10/-10: ""
-*zh_TW.zeTearOffPosition -5/-5: ""
-*zh_TW.zeTearOffPosition 0/0: ""
-*zh_TW.zeTearOffPosition 5/5: ""
-*zh_TW.zeTearOffPosition 10/10: ""
-*zh_TW.zeTearOffPosition 15/15: ""
-*zh_TW.zeTearOffPosition 20/20: ""
-*zh_TW.zeTearOffPosition 25/25: ""
-*zh_TW.zeTearOffPosition 30/30: ""
-*zh_TW.zeTearOffPosition 35/35: ""
-*zh_TW.zeTearOffPosition 40/40: ""
-*zh_TW.zeTearOffPosition 45/45: ""
-*zh_TW.zeTearOffPosition 50/50: ""
-*zh_TW.zeTearOffPosition 55/55: ""
-*zh_TW.zeTearOffPosition 60/60: ""
-*zh_TW.zeTearOffPosition 65/65: ""
-*zh_TW.zeTearOffPosition 70/70: ""
-*zh_TW.zeTearOffPosition 75/75: ""
-*zh_TW.zeTearOffPosition 80/80: ""
-*zh_TW.zeTearOffPosition 85/85: ""
-*zh_TW.zeTearOffPosition 90/90: ""
-*zh_TW.zeTearOffPosition 95/95: ""
-*zh_TW.zeTearOffPosition 100/100: ""
-*zh_TW.zeTearOffPosition 105/105: ""
-*zh_TW.zeTearOffPosition 110/110: ""
-*zh_TW.zeTearOffPosition 115/115: ""
-*zh_TW.zeTearOffPosition 120/120: ""
-*zh_TW.Translation zeErrorReprint/Reprint After Error: ""
-*zh_TW.zeErrorReprint Saved/快速: ""
-*zh_TW.zeErrorReprint Always/Always: ""
-*zh_TW.zeErrorReprint Never/Never: ""
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(1.05)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
-*Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
-*Font Bookman-Demi: Standard "(1.05)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
-*Font Bookman-Light: Standard "(1.05)" Standard ROM
-*Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
-*Font Courier: Standard "(1.05)" Standard ROM
-*Font Courier-Bold: Standard "(1.05)" Standard ROM
-*Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Courier-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica: Standard "(1.05)" Standard ROM
-*Font Helvetica-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
-*Font Palatino-Bold: Standard "(1.05)" Standard ROM
-*Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Palatino-Italic: Standard "(1.05)" Standard ROM
-*Font Palatino-Roman: Standard "(1.05)" Standard ROM
-*Font Symbol: Special "(001.005)" Special ROM
-*Font Times-Bold: Standard "(1.05)" Standard ROM
-*Font Times-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Times-Italic: Standard "(1.05)" Standard ROM
-*Font Times-Roman: Standard "(1.05)" Standard ROM
-*Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
-*Font ZapfDingbats: Special "(001.005)" Special ROM
-*% End of ZEBRA.PPD, 145610 bytes.
diff --git a/ppd/zebracpl.ppd b/ppd/zebracpl.ppd
deleted file mode 100644 (file)
index f132101..0000000
+++ /dev/null
@@ -1,1978 +0,0 @@
-*PPD-Adobe: "4.3"
-*% PPD file for CPCL Label Printer with CUPS.
-*% Created by the CUPS PPD Compiler v1.2.4.
-*% Copyright 2007 by Apple Inc.
-*% Copyright 1997-2007 by Easy Software Products.
-*% 
-*% These coded instructions, statements, and computer programs are the
-*% property of Apple Inc. and are protected by Federal copyright
-*% law.  Distribution and use rights are outlined in the file "LICENSE.txt"
-*% which should have been included with this file.  If this file is
-*% file is missing or damaged, see the license at "http://www.cups.org/".
-*FormatVersion: "4.3"
-*FileVersion: "1.4"
-*LanguageVersion: English
-*LanguageEncoding: ISOLatin1
-*PCFileName: "ZEBRACPL.PPD"
-*Product: "(ESP Ghostscript)"
-*Product: "(GPL Ghostscript)"
-*Manufacturer: "Zebra"
-*ModelName: "Zebra CPCL Label Printer"
-*ShortNickName: "Zebra CPCL Label Printer"
-*NickName: "Zebra CPCL Label Printer, 1.4"
-*PSVersion: "(3010.000) 81504"
-*PSVersion: "(3010.000) 860"
-*LanguageLevel: "3"
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*FileSystem: False
-*Throughput: "8"
-*LandscapeOrientation: Plus90
-*TTRasterizer: Type42
-*% Driver-defined attributes...
-*cupsVersion: 1.4
-*cupsModelNumber: 19
-*cupsManualCopies: False
-*cupsFilter: "application/vnd.cups-raster 50 rastertolabel"
-*cupsLanguages: "en da de es fi fr it ja ko nl no pt pt_BR sv zh zh_TW"
-*OpenUI *PageSize/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageSize
-*DefaultPageSize: w288h360
-*PageSize w144h72/2.00x1.00": "<</PageSize[144 72]/ImagingBBox null>>setpagedevice"
-*PageSize w144h90/2.00x1.25": "<</PageSize[144 90]/ImagingBBox null>>setpagedevice"
-*PageSize w144h144/2.00x2.00": "<</PageSize[144 144]/ImagingBBox null>>setpagedevice"
-*PageSize w144h216/2.00x3.00": "<</PageSize[144 216]/ImagingBBox null>>setpagedevice"
-*PageSize w209h72/2.9 x 1": "<</PageSize[209 72]/ImagingBBox null>>setpagedevice"
-*PageSize w288h144/4.00x2.00": "<</PageSize[288 144]/ImagingBBox null>>setpagedevice"
-*PageSize w288h216/4.00x3.00": "<</PageSize[288 216]/ImagingBBox null>>setpagedevice"
-*PageSize w288h288/4.00x4.00": "<</PageSize[288 288]/ImagingBBox null>>setpagedevice"
-*PageSize w288h360/4.00x5.00": "<</PageSize[288 360]/ImagingBBox null>>setpagedevice"
-*PageSize w288h432/4.00x6.00": "<</PageSize[288 432]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageSize
-*OpenUI *PageRegion/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageRegion
-*DefaultPageRegion: w288h360
-*PageRegion w144h72/2.00x1.00": "<</PageSize[144 72]/ImagingBBox null>>setpagedevice"
-*PageRegion w144h90/2.00x1.25": "<</PageSize[144 90]/ImagingBBox null>>setpagedevice"
-*PageRegion w144h144/2.00x2.00": "<</PageSize[144 144]/ImagingBBox null>>setpagedevice"
-*PageRegion w144h216/2.00x3.00": "<</PageSize[144 216]/ImagingBBox null>>setpagedevice"
-*PageRegion w209h72/2.9 x 1": "<</PageSize[209 72]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h144/4.00x2.00": "<</PageSize[288 144]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h216/4.00x3.00": "<</PageSize[288 216]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h288/4.00x4.00": "<</PageSize[288 288]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h360/4.00x5.00": "<</PageSize[288 360]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h432/4.00x6.00": "<</PageSize[288 432]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageRegion
-*DefaultImageableArea: w288h360
-*ImageableArea w144h72/2.00x1.00": "0.00 0.00 144.00 72.00"
-*ImageableArea w144h90/2.00x1.25": "0.00 0.00 144.00 90.00"
-*ImageableArea w144h144/2.00x2.00": "0.00 0.00 144.00 144.00"
-*ImageableArea w144h216/2.00x3.00": "0.00 0.00 144.00 216.00"
-*ImageableArea w209h72/2.9 x 1": "0.00 0.00 209.00 72.00"
-*ImageableArea w288h144/4.00x2.00": "0.00 0.00 287.00 144.00"
-*ImageableArea w288h216/4.00x3.00": "0.00 0.00 287.00 216.00"
-*ImageableArea w288h288/4.00x4.00": "0.00 0.00 287.00 288.00"
-*ImageableArea w288h360/4.00x5.00": "0.00 0.00 287.00 360.00"
-*ImageableArea w288h432/4.00x6.00": "0.00 0.00 287.00 432.00"
-*DefaultPaperDimension: w288h360
-*PaperDimension w144h72/2.00x1.00": "144.00 72.00"
-*PaperDimension w144h90/2.00x1.25": "144.00 90.00"
-*PaperDimension w144h144/2.00x2.00": "144.00 144.00"
-*PaperDimension w144h216/2.00x3.00": "144.00 216.00"
-*PaperDimension w209h72/2.9 x 1": "209.00 72.00"
-*PaperDimension w288h144/4.00x2.00": "288.00 144.00"
-*PaperDimension w288h216/4.00x3.00": "288.00 216.00"
-*PaperDimension w288h288/4.00x4.00": "288.00 288.00"
-*PaperDimension w288h360/4.00x5.00": "288.00 360.00"
-*PaperDimension w288h432/4.00x6.00": "288.00 432.00"
-*MaxMediaWidth: "288.00"
-*MaxMediaHeight: "3600.00"
-*HWMargins: 0.00 0.00 1.00 0.00
-*CustomPageSize True: "pop pop pop <</PageSize[5 -2 roll]/ImagingBBox null>>setpagedevice"
-*ParamCustomPageSize Width: 1 points 36.00 288.00
-*ParamCustomPageSize Height: 2 points 36.00 3600.00
-*ParamCustomPageSize WidthOffset: 3 points 0 0
-*ParamCustomPageSize HeightOffset: 4 points 0 0
-*ParamCustomPageSize Orientation: 5 int 0 0
-*RequiresPageRegion All: True
-*OpenUI *Resolution: PickOne
-*OrderDependency: 10.0 AnySetup *Resolution
-*DefaultResolution: 203dpi
-*Resolution 203dpi: "<</HWResolution[203 203]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*CloseUI: *Resolution
-*OpenUI *zeMediaTracking/Media Tracking: PickOne
-*OrderDependency: 20.0 AnySetup *zeMediaTracking
-*DefaultzeMediaTracking: Web
-*zeMediaTracking Continuous: ""
-*zeMediaTracking Web/Non-continuous (Web sensing): ""
-*zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*CloseUI: *zeMediaTracking
-*OpenGroup: PrinterSettings/Printer Settings
-*OpenUI *Darkness: PickOne
-*OrderDependency: 20.0 AnySetup *Darkness
-*DefaultDarkness: -1
-*Darkness -1/Printer Default: "<</cupsCompression -1>>setpagedevice"
-*Darkness 1: "<</cupsCompression 4>>setpagedevice"
-*Darkness 2: "<</cupsCompression 7>>setpagedevice"
-*Darkness 3: "<</cupsCompression 10>>setpagedevice"
-*Darkness 4: "<</cupsCompression 14>>setpagedevice"
-*Darkness 5: "<</cupsCompression 17>>setpagedevice"
-*Darkness 6: "<</cupsCompression 20>>setpagedevice"
-*Darkness 7: "<</cupsCompression 24>>setpagedevice"
-*Darkness 8: "<</cupsCompression 27>>setpagedevice"
-*Darkness 9: "<</cupsCompression 30>>setpagedevice"
-*Darkness 10: "<</cupsCompression 34>>setpagedevice"
-*Darkness 11: "<</cupsCompression 37>>setpagedevice"
-*Darkness 12: "<</cupsCompression 40>>setpagedevice"
-*Darkness 13: "<</cupsCompression 44>>setpagedevice"
-*Darkness 14: "<</cupsCompression 47>>setpagedevice"
-*Darkness 15: "<</cupsCompression 50>>setpagedevice"
-*Darkness 16: "<</cupsCompression 54>>setpagedevice"
-*Darkness 17: "<</cupsCompression 57>>setpagedevice"
-*Darkness 18: "<</cupsCompression 60>>setpagedevice"
-*Darkness 19: "<</cupsCompression 64>>setpagedevice"
-*Darkness 20: "<</cupsCompression 67>>setpagedevice"
-*Darkness 21: "<</cupsCompression 70>>setpagedevice"
-*Darkness 22: "<</cupsCompression 74>>setpagedevice"
-*Darkness 23: "<</cupsCompression 77>>setpagedevice"
-*Darkness 24: "<</cupsCompression 80>>setpagedevice"
-*Darkness 25: "<</cupsCompression 84>>setpagedevice"
-*Darkness 26: "<</cupsCompression 87>>setpagedevice"
-*Darkness 27: "<</cupsCompression 90>>setpagedevice"
-*Darkness 28: "<</cupsCompression 94>>setpagedevice"
-*Darkness 29: "<</cupsCompression 97>>setpagedevice"
-*Darkness 30: "<</cupsCompression 100>>setpagedevice"
-*CloseUI: *Darkness
-*OpenUI *zePrintRate/Print Rate: PickOne
-*OrderDependency: 20.0 AnySetup *zePrintRate
-*DefaultzePrintRate: Default
-*zePrintRate Default/Printer Default: ""
-*zePrintRate 1/1 inch/sec.: ""
-*zePrintRate 2/2 inches/sec.: ""
-*zePrintRate 3/3 inches/sec.: ""
-*zePrintRate 4/4 inches/sec.: ""
-*CloseUI: *zePrintRate
-*OpenUI *zeTearOffPosition/Tear-Off Adjust Position: PickOne
-*OrderDependency: 20.0 AnySetup *zeTearOffPosition
-*DefaultzeTearOffPosition: 1000
-*zeTearOffPosition 1000/Printer Default: "<</AdvanceDistance 1000>>setpagedevice"
-*zeTearOffPosition -120: "<</AdvanceDistance -120>>setpagedevice"
-*zeTearOffPosition -115: "<</AdvanceDistance -115>>setpagedevice"
-*zeTearOffPosition -110: "<</AdvanceDistance -110>>setpagedevice"
-*zeTearOffPosition -105: "<</AdvanceDistance -105>>setpagedevice"
-*zeTearOffPosition -100: "<</AdvanceDistance -100>>setpagedevice"
-*zeTearOffPosition -95: "<</AdvanceDistance -95>>setpagedevice"
-*zeTearOffPosition -90: "<</AdvanceDistance -90>>setpagedevice"
-*zeTearOffPosition -85: "<</AdvanceDistance -85>>setpagedevice"
-*zeTearOffPosition -80: "<</AdvanceDistance -80>>setpagedevice"
-*zeTearOffPosition -75: "<</AdvanceDistance -75>>setpagedevice"
-*zeTearOffPosition -70: "<</AdvanceDistance -70>>setpagedevice"
-*zeTearOffPosition -65: "<</AdvanceDistance -65>>setpagedevice"
-*zeTearOffPosition -60: "<</AdvanceDistance -60>>setpagedevice"
-*zeTearOffPosition -55: "<</AdvanceDistance -55>>setpagedevice"
-*zeTearOffPosition -50: "<</AdvanceDistance -50>>setpagedevice"
-*zeTearOffPosition -45: "<</AdvanceDistance -45>>setpagedevice"
-*zeTearOffPosition -40: "<</AdvanceDistance -40>>setpagedevice"
-*zeTearOffPosition -35: "<</AdvanceDistance -35>>setpagedevice"
-*zeTearOffPosition -30: "<</AdvanceDistance -30>>setpagedevice"
-*zeTearOffPosition -25: "<</AdvanceDistance -25>>setpagedevice"
-*zeTearOffPosition -20: "<</AdvanceDistance -20>>setpagedevice"
-*zeTearOffPosition -15: "<</AdvanceDistance -15>>setpagedevice"
-*zeTearOffPosition -10: "<</AdvanceDistance -10>>setpagedevice"
-*zeTearOffPosition -5: "<</AdvanceDistance -5>>setpagedevice"
-*zeTearOffPosition 0: "<</AdvanceDistance 0>>setpagedevice"
-*zeTearOffPosition 5: "<</AdvanceDistance 5>>setpagedevice"
-*zeTearOffPosition 10: "<</AdvanceDistance 10>>setpagedevice"
-*zeTearOffPosition 15: "<</AdvanceDistance 15>>setpagedevice"
-*zeTearOffPosition 20: "<</AdvanceDistance 20>>setpagedevice"
-*zeTearOffPosition 25: "<</AdvanceDistance 25>>setpagedevice"
-*zeTearOffPosition 30: "<</AdvanceDistance 30>>setpagedevice"
-*zeTearOffPosition 35: "<</AdvanceDistance 35>>setpagedevice"
-*zeTearOffPosition 40: "<</AdvanceDistance 40>>setpagedevice"
-*zeTearOffPosition 45: "<</AdvanceDistance 45>>setpagedevice"
-*zeTearOffPosition 50: "<</AdvanceDistance 50>>setpagedevice"
-*zeTearOffPosition 55: "<</AdvanceDistance 55>>setpagedevice"
-*zeTearOffPosition 60: "<</AdvanceDistance 60>>setpagedevice"
-*zeTearOffPosition 65: "<</AdvanceDistance 65>>setpagedevice"
-*zeTearOffPosition 70: "<</AdvanceDistance 70>>setpagedevice"
-*zeTearOffPosition 75: "<</AdvanceDistance 75>>setpagedevice"
-*zeTearOffPosition 80: "<</AdvanceDistance 80>>setpagedevice"
-*zeTearOffPosition 85: "<</AdvanceDistance 85>>setpagedevice"
-*zeTearOffPosition 90: "<</AdvanceDistance 90>>setpagedevice"
-*zeTearOffPosition 95: "<</AdvanceDistance 95>>setpagedevice"
-*zeTearOffPosition 100: "<</AdvanceDistance 100>>setpagedevice"
-*zeTearOffPosition 105: "<</AdvanceDistance 105>>setpagedevice"
-*zeTearOffPosition 110: "<</AdvanceDistance 110>>setpagedevice"
-*zeTearOffPosition 115: "<</AdvanceDistance 115>>setpagedevice"
-*zeTearOffPosition 120: "<</AdvanceDistance 120>>setpagedevice"
-*CloseUI: *zeTearOffPosition
-*OpenUI *zeErrorReprint/Reprint After Error: PickOne
-*OrderDependency: 20.0 AnySetup *zeErrorReprint
-*DefaultzeErrorReprint: Saved
-*zeErrorReprint Saved/Printer Default: ""
-*zeErrorReprint Always: ""
-*zeErrorReprint Never: ""
-*CloseUI: *zeErrorReprint
-*CloseGroup: PrinterSettings
-*da.Translation Manufacturer/Zebra: ""
-*da.Translation ModelName/Zebra CPCL Label Printer: ""
-*da.Translation ShortNickName/Zebra CPCL Label Printer: ""
-*da.Translation NickName/Zebra CPCL Label Printer, 1.4: ""
-*da.Translation PageSize/Media Size: ""
-*da.PageSize w144h72/2.00x1.00": ""
-*da.PageSize w144h90/2.00x1.25": ""
-*da.PageSize w144h144/2.00x2.00": ""
-*da.PageSize w144h216/2.00x3.00": ""
-*da.PageSize w209h72/2.9 x 1": ""
-*da.PageSize w288h144/4.00x2.00": ""
-*da.PageSize w288h216/4.00x3.00": ""
-*da.PageSize w288h288/4.00x4.00": ""
-*da.PageSize w288h360/4.00x5.00": ""
-*da.PageSize w288h432/4.00x6.00": ""
-*da.Translation Resolution/Resolution: ""
-*da.Resolution 203dpi/203dpi: ""
-*da.Translation zeMediaTracking/Media Tracking: ""
-*da.zeMediaTracking Continuous/Continuous: ""
-*da.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*da.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*da.Translation PrinterSettings/Printer Settings: ""
-*da.Translation Darkness/Darkness: ""
-*da.Darkness -1/Printerstandard: ""
-*da.Darkness 1/1: ""
-*da.Darkness 2/2: ""
-*da.Darkness 3/3: ""
-*da.Darkness 4/4: ""
-*da.Darkness 5/5: ""
-*da.Darkness 6/6: ""
-*da.Darkness 7/7: ""
-*da.Darkness 8/8: ""
-*da.Darkness 9/9: ""
-*da.Darkness 10/10: ""
-*da.Darkness 11/11: ""
-*da.Darkness 12/12: ""
-*da.Darkness 13/13: ""
-*da.Darkness 14/14: ""
-*da.Darkness 15/15: ""
-*da.Darkness 16/16: ""
-*da.Darkness 17/17: ""
-*da.Darkness 18/18: ""
-*da.Darkness 19/19: ""
-*da.Darkness 20/20: ""
-*da.Darkness 21/21: ""
-*da.Darkness 22/22: ""
-*da.Darkness 23/23: ""
-*da.Darkness 24/24: ""
-*da.Darkness 25/25: ""
-*da.Darkness 26/26: ""
-*da.Darkness 27/27: ""
-*da.Darkness 28/28: ""
-*da.Darkness 29/29: ""
-*da.Darkness 30/30: ""
-*da.Translation zePrintRate/Print Rate: ""
-*da.zePrintRate Default/Printerstandard: ""
-*da.zePrintRate 1/1 inch/sec.: ""
-*da.zePrintRate 2/2 inches/sec.: ""
-*da.zePrintRate 3/3 inches/sec.: ""
-*da.zePrintRate 4/4 inches/sec.: ""
-*da.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*da.zeTearOffPosition 1000/Printerstandard: ""
-*da.zeTearOffPosition -120/-120: ""
-*da.zeTearOffPosition -115/-115: ""
-*da.zeTearOffPosition -110/-110: ""
-*da.zeTearOffPosition -105/-105: ""
-*da.zeTearOffPosition -100/-100: ""
-*da.zeTearOffPosition -95/-95: ""
-*da.zeTearOffPosition -90/-90: ""
-*da.zeTearOffPosition -85/-85: ""
-*da.zeTearOffPosition -80/-80: ""
-*da.zeTearOffPosition -75/-75: ""
-*da.zeTearOffPosition -70/-70: ""
-*da.zeTearOffPosition -65/-65: ""
-*da.zeTearOffPosition -60/-60: ""
-*da.zeTearOffPosition -55/-55: ""
-*da.zeTearOffPosition -50/-50: ""
-*da.zeTearOffPosition -45/-45: ""
-*da.zeTearOffPosition -40/-40: ""
-*da.zeTearOffPosition -35/-35: ""
-*da.zeTearOffPosition -30/-30: ""
-*da.zeTearOffPosition -25/-25: ""
-*da.zeTearOffPosition -20/-20: ""
-*da.zeTearOffPosition -15/-15: ""
-*da.zeTearOffPosition -10/-10: ""
-*da.zeTearOffPosition -5/-5: ""
-*da.zeTearOffPosition 0/0: ""
-*da.zeTearOffPosition 5/5: ""
-*da.zeTearOffPosition 10/10: ""
-*da.zeTearOffPosition 15/15: ""
-*da.zeTearOffPosition 20/20: ""
-*da.zeTearOffPosition 25/25: ""
-*da.zeTearOffPosition 30/30: ""
-*da.zeTearOffPosition 35/35: ""
-*da.zeTearOffPosition 40/40: ""
-*da.zeTearOffPosition 45/45: ""
-*da.zeTearOffPosition 50/50: ""
-*da.zeTearOffPosition 55/55: ""
-*da.zeTearOffPosition 60/60: ""
-*da.zeTearOffPosition 65/65: ""
-*da.zeTearOffPosition 70/70: ""
-*da.zeTearOffPosition 75/75: ""
-*da.zeTearOffPosition 80/80: ""
-*da.zeTearOffPosition 85/85: ""
-*da.zeTearOffPosition 90/90: ""
-*da.zeTearOffPosition 95/95: ""
-*da.zeTearOffPosition 100/100: ""
-*da.zeTearOffPosition 105/105: ""
-*da.zeTearOffPosition 110/110: ""
-*da.zeTearOffPosition 115/115: ""
-*da.zeTearOffPosition 120/120: ""
-*da.Translation zeErrorReprint/Reprint After Error: ""
-*da.zeErrorReprint Saved/Printerstandard: ""
-*da.zeErrorReprint Always/Always: ""
-*da.zeErrorReprint Never/Never: ""
-*de.Translation Manufacturer/Zebra: ""
-*de.Translation ModelName/Zebra CPCL Label Printer: ""
-*de.Translation ShortNickName/Zebra CPCL Label Printer: ""
-*de.Translation NickName/Zebra CPCL Label Printer, 1.4: ""
-*de.Translation PageSize/Media Size: ""
-*de.PageSize w144h72/2.00x1.00": ""
-*de.PageSize w144h90/2.00x1.25": ""
-*de.PageSize w144h144/2.00x2.00": ""
-*de.PageSize w144h216/2.00x3.00": ""
-*de.PageSize w209h72/2.9 x 1": ""
-*de.PageSize w288h144/4.00x2.00": ""
-*de.PageSize w288h216/4.00x3.00": ""
-*de.PageSize w288h288/4.00x4.00": ""
-*de.PageSize w288h360/4.00x5.00": ""
-*de.PageSize w288h432/4.00x6.00": ""
-*de.Translation Resolution/Resolution: ""
-*de.Resolution 203dpi/203dpi: ""
-*de.Translation zeMediaTracking/Media Tracking: ""
-*de.zeMediaTracking Continuous/Continuous: ""
-*de.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*de.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*de.Translation PrinterSettings/Printer Settings: ""
-*de.Translation Darkness/Darkness: ""
-*de.Darkness -1/Druckerstandard: ""
-*de.Darkness 1/1: ""
-*de.Darkness 2/2: ""
-*de.Darkness 3/3: ""
-*de.Darkness 4/4: ""
-*de.Darkness 5/5: ""
-*de.Darkness 6/6: ""
-*de.Darkness 7/7: ""
-*de.Darkness 8/8: ""
-*de.Darkness 9/9: ""
-*de.Darkness 10/10: ""
-*de.Darkness 11/11: ""
-*de.Darkness 12/12: ""
-*de.Darkness 13/13: ""
-*de.Darkness 14/14: ""
-*de.Darkness 15/15: ""
-*de.Darkness 16/16: ""
-*de.Darkness 17/17: ""
-*de.Darkness 18/18: ""
-*de.Darkness 19/19: ""
-*de.Darkness 20/20: ""
-*de.Darkness 21/21: ""
-*de.Darkness 22/22: ""
-*de.Darkness 23/23: ""
-*de.Darkness 24/24: ""
-*de.Darkness 25/25: ""
-*de.Darkness 26/26: ""
-*de.Darkness 27/27: ""
-*de.Darkness 28/28: ""
-*de.Darkness 29/29: ""
-*de.Darkness 30/30: ""
-*de.Translation zePrintRate/Print Rate: ""
-*de.zePrintRate Default/Druckerstandard: ""
-*de.zePrintRate 1/1 inch/sec.: ""
-*de.zePrintRate 2/2 inches/sec.: ""
-*de.zePrintRate 3/3 inches/sec.: ""
-*de.zePrintRate 4/4 inches/sec.: ""
-*de.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*de.zeTearOffPosition 1000/Druckerstandard: ""
-*de.zeTearOffPosition -120/-120: ""
-*de.zeTearOffPosition -115/-115: ""
-*de.zeTearOffPosition -110/-110: ""
-*de.zeTearOffPosition -105/-105: ""
-*de.zeTearOffPosition -100/-100: ""
-*de.zeTearOffPosition -95/-95: ""
-*de.zeTearOffPosition -90/-90: ""
-*de.zeTearOffPosition -85/-85: ""
-*de.zeTearOffPosition -80/-80: ""
-*de.zeTearOffPosition -75/-75: ""
-*de.zeTearOffPosition -70/-70: ""
-*de.zeTearOffPosition -65/-65: ""
-*de.zeTearOffPosition -60/-60: ""
-*de.zeTearOffPosition -55/-55: ""
-*de.zeTearOffPosition -50/-50: ""
-*de.zeTearOffPosition -45/-45: ""
-*de.zeTearOffPosition -40/-40: ""
-*de.zeTearOffPosition -35/-35: ""
-*de.zeTearOffPosition -30/-30: ""
-*de.zeTearOffPosition -25/-25: ""
-*de.zeTearOffPosition -20/-20: ""
-*de.zeTearOffPosition -15/-15: ""
-*de.zeTearOffPosition -10/-10: ""
-*de.zeTearOffPosition -5/-5: ""
-*de.zeTearOffPosition 0/0: ""
-*de.zeTearOffPosition 5/5: ""
-*de.zeTearOffPosition 10/10: ""
-*de.zeTearOffPosition 15/15: ""
-*de.zeTearOffPosition 20/20: ""
-*de.zeTearOffPosition 25/25: ""
-*de.zeTearOffPosition 30/30: ""
-*de.zeTearOffPosition 35/35: ""
-*de.zeTearOffPosition 40/40: ""
-*de.zeTearOffPosition 45/45: ""
-*de.zeTearOffPosition 50/50: ""
-*de.zeTearOffPosition 55/55: ""
-*de.zeTearOffPosition 60/60: ""
-*de.zeTearOffPosition 65/65: ""
-*de.zeTearOffPosition 70/70: ""
-*de.zeTearOffPosition 75/75: ""
-*de.zeTearOffPosition 80/80: ""
-*de.zeTearOffPosition 85/85: ""
-*de.zeTearOffPosition 90/90: ""
-*de.zeTearOffPosition 95/95: ""
-*de.zeTearOffPosition 100/100: ""
-*de.zeTearOffPosition 105/105: ""
-*de.zeTearOffPosition 110/110: ""
-*de.zeTearOffPosition 115/115: ""
-*de.zeTearOffPosition 120/120: ""
-*de.Translation zeErrorReprint/Reprint After Error: ""
-*de.zeErrorReprint Saved/Druckerstandard: ""
-*de.zeErrorReprint Always/Always: ""
-*de.zeErrorReprint Never/Never: ""
-*es.Translation Manufacturer/Zebra: ""
-*es.Translation ModelName/Zebra CPCL Label Printer: ""
-*es.Translation ShortNickName/Zebra CPCL Label Printer: ""
-*es.Translation NickName/Zebra CPCL Label Printer, 1.4: ""
-*es.Translation PageSize/Media Size: ""
-*es.PageSize w144h72/2.00x1.00": ""
-*es.PageSize w144h90/2.00x1.25": ""
-*es.PageSize w144h144/2.00x2.00": ""
-*es.PageSize w144h216/2.00x3.00": ""
-*es.PageSize w209h72/2.9 x 1": ""
-*es.PageSize w288h144/4.00x2.00": ""
-*es.PageSize w288h216/4.00x3.00": ""
-*es.PageSize w288h288/4.00x4.00": ""
-*es.PageSize w288h360/4.00x5.00": ""
-*es.PageSize w288h432/4.00x6.00": ""
-*es.Translation Resolution/Resolution: ""
-*es.Resolution 203dpi/203dpi: ""
-*es.Translation zeMediaTracking/Media Tracking: ""
-*es.zeMediaTracking Continuous/Continuous: ""
-*es.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*es.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*es.Translation PrinterSettings/Printer Settings: ""
-*es.Translation Darkness/Darkness: ""
-*es.Darkness -1/Impresora por defecto: ""
-*es.Darkness 1/1: ""
-*es.Darkness 2/2: ""
-*es.Darkness 3/3: ""
-*es.Darkness 4/4: ""
-*es.Darkness 5/5: ""
-*es.Darkness 6/6: ""
-*es.Darkness 7/7: ""
-*es.Darkness 8/8: ""
-*es.Darkness 9/9: ""
-*es.Darkness 10/10: ""
-*es.Darkness 11/11: ""
-*es.Darkness 12/12: ""
-*es.Darkness 13/13: ""
-*es.Darkness 14/14: ""
-*es.Darkness 15/15: ""
-*es.Darkness 16/16: ""
-*es.Darkness 17/17: ""
-*es.Darkness 18/18: ""
-*es.Darkness 19/19: ""
-*es.Darkness 20/20: ""
-*es.Darkness 21/21: ""
-*es.Darkness 22/22: ""
-*es.Darkness 23/23: ""
-*es.Darkness 24/24: ""
-*es.Darkness 25/25: ""
-*es.Darkness 26/26: ""
-*es.Darkness 27/27: ""
-*es.Darkness 28/28: ""
-*es.Darkness 29/29: ""
-*es.Darkness 30/30: ""
-*es.Translation zePrintRate/Print Rate: ""
-*es.zePrintRate Default/Impresora por defecto: ""
-*es.zePrintRate 1/1 inch/sec.: ""
-*es.zePrintRate 2/2 inches/sec.: ""
-*es.zePrintRate 3/3 inches/sec.: ""
-*es.zePrintRate 4/4 inches/sec.: ""
-*es.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*es.zeTearOffPosition 1000/Impresora por defecto: ""
-*es.zeTearOffPosition -120/-120: ""
-*es.zeTearOffPosition -115/-115: ""
-*es.zeTearOffPosition -110/-110: ""
-*es.zeTearOffPosition -105/-105: ""
-*es.zeTearOffPosition -100/-100: ""
-*es.zeTearOffPosition -95/-95: ""
-*es.zeTearOffPosition -90/-90: ""
-*es.zeTearOffPosition -85/-85: ""
-*es.zeTearOffPosition -80/-80: ""
-*es.zeTearOffPosition -75/-75: ""
-*es.zeTearOffPosition -70/-70: ""
-*es.zeTearOffPosition -65/-65: ""
-*es.zeTearOffPosition -60/-60: ""
-*es.zeTearOffPosition -55/-55: ""
-*es.zeTearOffPosition -50/-50: ""
-*es.zeTearOffPosition -45/-45: ""
-*es.zeTearOffPosition -40/-40: ""
-*es.zeTearOffPosition -35/-35: ""
-*es.zeTearOffPosition -30/-30: ""
-*es.zeTearOffPosition -25/-25: ""
-*es.zeTearOffPosition -20/-20: ""
-*es.zeTearOffPosition -15/-15: ""
-*es.zeTearOffPosition -10/-10: ""
-*es.zeTearOffPosition -5/-5: ""
-*es.zeTearOffPosition 0/0: ""
-*es.zeTearOffPosition 5/5: ""
-*es.zeTearOffPosition 10/10: ""
-*es.zeTearOffPosition 15/15: ""
-*es.zeTearOffPosition 20/20: ""
-*es.zeTearOffPosition 25/25: ""
-*es.zeTearOffPosition 30/30: ""
-*es.zeTearOffPosition 35/35: ""
-*es.zeTearOffPosition 40/40: ""
-*es.zeTearOffPosition 45/45: ""
-*es.zeTearOffPosition 50/50: ""
-*es.zeTearOffPosition 55/55: ""
-*es.zeTearOffPosition 60/60: ""
-*es.zeTearOffPosition 65/65: ""
-*es.zeTearOffPosition 70/70: ""
-*es.zeTearOffPosition 75/75: ""
-*es.zeTearOffPosition 80/80: ""
-*es.zeTearOffPosition 85/85: ""
-*es.zeTearOffPosition 90/90: ""
-*es.zeTearOffPosition 95/95: ""
-*es.zeTearOffPosition 100/100: ""
-*es.zeTearOffPosition 105/105: ""
-*es.zeTearOffPosition 110/110: ""
-*es.zeTearOffPosition 115/115: ""
-*es.zeTearOffPosition 120/120: ""
-*es.Translation zeErrorReprint/Reprint After Error: ""
-*es.zeErrorReprint Saved/Impresora por defecto: ""
-*es.zeErrorReprint Always/Always: ""
-*es.zeErrorReprint Never/Never: ""
-*fi.Translation Manufacturer/Zebra: ""
-*fi.Translation ModelName/Zebra CPCL Label Printer: ""
-*fi.Translation ShortNickName/Zebra CPCL Label Printer: ""
-*fi.Translation NickName/Zebra CPCL Label Printer, 1.4: ""
-*fi.Translation PageSize/Media Size: ""
-*fi.PageSize w144h72/2.00x1.00": ""
-*fi.PageSize w144h90/2.00x1.25": ""
-*fi.PageSize w144h144/2.00x2.00": ""
-*fi.PageSize w144h216/2.00x3.00": ""
-*fi.PageSize w209h72/2.9 x 1": ""
-*fi.PageSize w288h144/4.00x2.00": ""
-*fi.PageSize w288h216/4.00x3.00": ""
-*fi.PageSize w288h288/4.00x4.00": ""
-*fi.PageSize w288h360/4.00x5.00": ""
-*fi.PageSize w288h432/4.00x6.00": ""
-*fi.Translation Resolution/Resolution: ""
-*fi.Resolution 203dpi/203dpi: ""
-*fi.Translation zeMediaTracking/Media Tracking: ""
-*fi.zeMediaTracking Continuous/Continuous: ""
-*fi.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*fi.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*fi.Translation PrinterSettings/Printer Settings: ""
-*fi.Translation Darkness/Darkness: ""
-*fi.Darkness -1/Nopea: ""
-*fi.Darkness 1/1: ""
-*fi.Darkness 2/2: ""
-*fi.Darkness 3/3: ""
-*fi.Darkness 4/4: ""
-*fi.Darkness 5/5: ""
-*fi.Darkness 6/6: ""
-*fi.Darkness 7/7: ""
-*fi.Darkness 8/8: ""
-*fi.Darkness 9/9: ""
-*fi.Darkness 10/10: ""
-*fi.Darkness 11/11: ""
-*fi.Darkness 12/12: ""
-*fi.Darkness 13/13: ""
-*fi.Darkness 14/14: ""
-*fi.Darkness 15/15: ""
-*fi.Darkness 16/16: ""
-*fi.Darkness 17/17: ""
-*fi.Darkness 18/18: ""
-*fi.Darkness 19/19: ""
-*fi.Darkness 20/20: ""
-*fi.Darkness 21/21: ""
-*fi.Darkness 22/22: ""
-*fi.Darkness 23/23: ""
-*fi.Darkness 24/24: ""
-*fi.Darkness 25/25: ""
-*fi.Darkness 26/26: ""
-*fi.Darkness 27/27: ""
-*fi.Darkness 28/28: ""
-*fi.Darkness 29/29: ""
-*fi.Darkness 30/30: ""
-*fi.Translation zePrintRate/Print Rate: ""
-*fi.zePrintRate Default/Nopea: ""
-*fi.zePrintRate 1/1 inch/sec.: ""
-*fi.zePrintRate 2/2 inches/sec.: ""
-*fi.zePrintRate 3/3 inches/sec.: ""
-*fi.zePrintRate 4/4 inches/sec.: ""
-*fi.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*fi.zeTearOffPosition 1000/Nopea: ""
-*fi.zeTearOffPosition -120/-120: ""
-*fi.zeTearOffPosition -115/-115: ""
-*fi.zeTearOffPosition -110/-110: ""
-*fi.zeTearOffPosition -105/-105: ""
-*fi.zeTearOffPosition -100/-100: ""
-*fi.zeTearOffPosition -95/-95: ""
-*fi.zeTearOffPosition -90/-90: ""
-*fi.zeTearOffPosition -85/-85: ""
-*fi.zeTearOffPosition -80/-80: ""
-*fi.zeTearOffPosition -75/-75: ""
-*fi.zeTearOffPosition -70/-70: ""
-*fi.zeTearOffPosition -65/-65: ""
-*fi.zeTearOffPosition -60/-60: ""
-*fi.zeTearOffPosition -55/-55: ""
-*fi.zeTearOffPosition -50/-50: ""
-*fi.zeTearOffPosition -45/-45: ""
-*fi.zeTearOffPosition -40/-40: ""
-*fi.zeTearOffPosition -35/-35: ""
-*fi.zeTearOffPosition -30/-30: ""
-*fi.zeTearOffPosition -25/-25: ""
-*fi.zeTearOffPosition -20/-20: ""
-*fi.zeTearOffPosition -15/-15: ""
-*fi.zeTearOffPosition -10/-10: ""
-*fi.zeTearOffPosition -5/-5: ""
-*fi.zeTearOffPosition 0/0: ""
-*fi.zeTearOffPosition 5/5: ""
-*fi.zeTearOffPosition 10/10: ""
-*fi.zeTearOffPosition 15/15: ""
-*fi.zeTearOffPosition 20/20: ""
-*fi.zeTearOffPosition 25/25: ""
-*fi.zeTearOffPosition 30/30: ""
-*fi.zeTearOffPosition 35/35: ""
-*fi.zeTearOffPosition 40/40: ""
-*fi.zeTearOffPosition 45/45: ""
-*fi.zeTearOffPosition 50/50: ""
-*fi.zeTearOffPosition 55/55: ""
-*fi.zeTearOffPosition 60/60: ""
-*fi.zeTearOffPosition 65/65: ""
-*fi.zeTearOffPosition 70/70: ""
-*fi.zeTearOffPosition 75/75: ""
-*fi.zeTearOffPosition 80/80: ""
-*fi.zeTearOffPosition 85/85: ""
-*fi.zeTearOffPosition 90/90: ""
-*fi.zeTearOffPosition 95/95: ""
-*fi.zeTearOffPosition 100/100: ""
-*fi.zeTearOffPosition 105/105: ""
-*fi.zeTearOffPosition 110/110: ""
-*fi.zeTearOffPosition 115/115: ""
-*fi.zeTearOffPosition 120/120: ""
-*fi.Translation zeErrorReprint/Reprint After Error: ""
-*fi.zeErrorReprint Saved/Nopea: ""
-*fi.zeErrorReprint Always/Always: ""
-*fi.zeErrorReprint Never/Never: ""
-*fr.Translation Manufacturer/Zebra: ""
-*fr.Translation ModelName/Zebra CPCL Label Printer: ""
-*fr.Translation ShortNickName/Zebra CPCL Label Printer: ""
-*fr.Translation NickName/Zebra CPCL Label Printer, 1.4: ""
-*fr.Translation PageSize/Media Size: ""
-*fr.PageSize w144h72/2.00x1.00": ""
-*fr.PageSize w144h90/2.00x1.25": ""
-*fr.PageSize w144h144/2.00x2.00": ""
-*fr.PageSize w144h216/2.00x3.00": ""
-*fr.PageSize w209h72/2.9 x 1": ""
-*fr.PageSize w288h144/4.00x2.00": ""
-*fr.PageSize w288h216/4.00x3.00": ""
-*fr.PageSize w288h288/4.00x4.00": ""
-*fr.PageSize w288h360/4.00x5.00": ""
-*fr.PageSize w288h432/4.00x6.00": ""
-*fr.Translation Resolution/Resolution: ""
-*fr.Resolution 203dpi/203dpi: ""
-*fr.Translation zeMediaTracking/Media Tracking: ""
-*fr.zeMediaTracking Continuous/Continuous: ""
-*fr.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*fr.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*fr.Translation PrinterSettings/Printer Settings: ""
-*fr.Translation Darkness/Darkness: ""
-*fr.Darkness -1/Imprimante par défaut: ""
-*fr.Darkness 1/1: ""
-*fr.Darkness 2/2: ""
-*fr.Darkness 3/3: ""
-*fr.Darkness 4/4: ""
-*fr.Darkness 5/5: ""
-*fr.Darkness 6/6: ""
-*fr.Darkness 7/7: ""
-*fr.Darkness 8/8: ""
-*fr.Darkness 9/9: ""
-*fr.Darkness 10/10: ""
-*fr.Darkness 11/11: ""
-*fr.Darkness 12/12: ""
-*fr.Darkness 13/13: ""
-*fr.Darkness 14/14: ""
-*fr.Darkness 15/15: ""
-*fr.Darkness 16/16: ""
-*fr.Darkness 17/17: ""
-*fr.Darkness 18/18: ""
-*fr.Darkness 19/19: ""
-*fr.Darkness 20/20: ""
-*fr.Darkness 21/21: ""
-*fr.Darkness 22/22: ""
-*fr.Darkness 23/23: ""
-*fr.Darkness 24/24: ""
-*fr.Darkness 25/25: ""
-*fr.Darkness 26/26: ""
-*fr.Darkness 27/27: ""
-*fr.Darkness 28/28: ""
-*fr.Darkness 29/29: ""
-*fr.Darkness 30/30: ""
-*fr.Translation zePrintRate/Print Rate: ""
-*fr.zePrintRate Default/Imprimante par défaut: ""
-*fr.zePrintRate 1/1 inch/sec.: ""
-*fr.zePrintRate 2/2 inches/sec.: ""
-*fr.zePrintRate 3/3 inches/sec.: ""
-*fr.zePrintRate 4/4 inches/sec.: ""
-*fr.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*fr.zeTearOffPosition 1000/Imprimante par défaut: ""
-*fr.zeTearOffPosition -120/-120: ""
-*fr.zeTearOffPosition -115/-115: ""
-*fr.zeTearOffPosition -110/-110: ""
-*fr.zeTearOffPosition -105/-105: ""
-*fr.zeTearOffPosition -100/-100: ""
-*fr.zeTearOffPosition -95/-95: ""
-*fr.zeTearOffPosition -90/-90: ""
-*fr.zeTearOffPosition -85/-85: ""
-*fr.zeTearOffPosition -80/-80: ""
-*fr.zeTearOffPosition -75/-75: ""
-*fr.zeTearOffPosition -70/-70: ""
-*fr.zeTearOffPosition -65/-65: ""
-*fr.zeTearOffPosition -60/-60: ""
-*fr.zeTearOffPosition -55/-55: ""
-*fr.zeTearOffPosition -50/-50: ""
-*fr.zeTearOffPosition -45/-45: ""
-*fr.zeTearOffPosition -40/-40: ""
-*fr.zeTearOffPosition -35/-35: ""
-*fr.zeTearOffPosition -30/-30: ""
-*fr.zeTearOffPosition -25/-25: ""
-*fr.zeTearOffPosition -20/-20: ""
-*fr.zeTearOffPosition -15/-15: ""
-*fr.zeTearOffPosition -10/-10: ""
-*fr.zeTearOffPosition -5/-5: ""
-*fr.zeTearOffPosition 0/0: ""
-*fr.zeTearOffPosition 5/5: ""
-*fr.zeTearOffPosition 10/10: ""
-*fr.zeTearOffPosition 15/15: ""
-*fr.zeTearOffPosition 20/20: ""
-*fr.zeTearOffPosition 25/25: ""
-*fr.zeTearOffPosition 30/30: ""
-*fr.zeTearOffPosition 35/35: ""
-*fr.zeTearOffPosition 40/40: ""
-*fr.zeTearOffPosition 45/45: ""
-*fr.zeTearOffPosition 50/50: ""
-*fr.zeTearOffPosition 55/55: ""
-*fr.zeTearOffPosition 60/60: ""
-*fr.zeTearOffPosition 65/65: ""
-*fr.zeTearOffPosition 70/70: ""
-*fr.zeTearOffPosition 75/75: ""
-*fr.zeTearOffPosition 80/80: ""
-*fr.zeTearOffPosition 85/85: ""
-*fr.zeTearOffPosition 90/90: ""
-*fr.zeTearOffPosition 95/95: ""
-*fr.zeTearOffPosition 100/100: ""
-*fr.zeTearOffPosition 105/105: ""
-*fr.zeTearOffPosition 110/110: ""
-*fr.zeTearOffPosition 115/115: ""
-*fr.zeTearOffPosition 120/120: ""
-*fr.Translation zeErrorReprint/Reprint After Error: ""
-*fr.zeErrorReprint Saved/Imprimante par défaut: ""
-*fr.zeErrorReprint Always/Always: ""
-*fr.zeErrorReprint Never/Never: ""
-*it.Translation Manufacturer/Zebra: ""
-*it.Translation ModelName/Zebra CPCL Label Printer: ""
-*it.Translation ShortNickName/Zebra CPCL Label Printer: ""
-*it.Translation NickName/Zebra CPCL Label Printer, 1.4: ""
-*it.Translation PageSize/Media Size: ""
-*it.PageSize w144h72/2.00x1.00": ""
-*it.PageSize w144h90/2.00x1.25": ""
-*it.PageSize w144h144/2.00x2.00": ""
-*it.PageSize w144h216/2.00x3.00": ""
-*it.PageSize w209h72/2.9 x 1": ""
-*it.PageSize w288h144/4.00x2.00": ""
-*it.PageSize w288h216/4.00x3.00": ""
-*it.PageSize w288h288/4.00x4.00": ""
-*it.PageSize w288h360/4.00x5.00": ""
-*it.PageSize w288h432/4.00x6.00": ""
-*it.Translation Resolution/Resolution: ""
-*it.Resolution 203dpi/203dpi: ""
-*it.Translation zeMediaTracking/Media Tracking: ""
-*it.zeMediaTracking Continuous/Continuous: ""
-*it.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*it.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*it.Translation PrinterSettings/Printer Settings: ""
-*it.Translation Darkness/Darkness: ""
-*it.Darkness -1/Impostazioni predefinite stampante: ""
-*it.Darkness 1/1: ""
-*it.Darkness 2/2: ""
-*it.Darkness 3/3: ""
-*it.Darkness 4/4: ""
-*it.Darkness 5/5: ""
-*it.Darkness 6/6: ""
-*it.Darkness 7/7: ""
-*it.Darkness 8/8: ""
-*it.Darkness 9/9: ""
-*it.Darkness 10/10: ""
-*it.Darkness 11/11: ""
-*it.Darkness 12/12: ""
-*it.Darkness 13/13: ""
-*it.Darkness 14/14: ""
-*it.Darkness 15/15: ""
-*it.Darkness 16/16: ""
-*it.Darkness 17/17: ""
-*it.Darkness 18/18: ""
-*it.Darkness 19/19: ""
-*it.Darkness 20/20: ""
-*it.Darkness 21/21: ""
-*it.Darkness 22/22: ""
-*it.Darkness 23/23: ""
-*it.Darkness 24/24: ""
-*it.Darkness 25/25: ""
-*it.Darkness 26/26: ""
-*it.Darkness 27/27: ""
-*it.Darkness 28/28: ""
-*it.Darkness 29/29: ""
-*it.Darkness 30/30: ""
-*it.Translation zePrintRate/Print Rate: ""
-*it.zePrintRate Default/Impostazioni predefinite stampante: ""
-*it.zePrintRate 1/1 inch/sec.: ""
-*it.zePrintRate 2/2 inches/sec.: ""
-*it.zePrintRate 3/3 inches/sec.: ""
-*it.zePrintRate 4/4 inches/sec.: ""
-*it.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*it.zeTearOffPosition 1000/Impostazioni predefinite stampante: ""
-*it.zeTearOffPosition -120/-120: ""
-*it.zeTearOffPosition -115/-115: ""
-*it.zeTearOffPosition -110/-110: ""
-*it.zeTearOffPosition -105/-105: ""
-*it.zeTearOffPosition -100/-100: ""
-*it.zeTearOffPosition -95/-95: ""
-*it.zeTearOffPosition -90/-90: ""
-*it.zeTearOffPosition -85/-85: ""
-*it.zeTearOffPosition -80/-80: ""
-*it.zeTearOffPosition -75/-75: ""
-*it.zeTearOffPosition -70/-70: ""
-*it.zeTearOffPosition -65/-65: ""
-*it.zeTearOffPosition -60/-60: ""
-*it.zeTearOffPosition -55/-55: ""
-*it.zeTearOffPosition -50/-50: ""
-*it.zeTearOffPosition -45/-45: ""
-*it.zeTearOffPosition -40/-40: ""
-*it.zeTearOffPosition -35/-35: ""
-*it.zeTearOffPosition -30/-30: ""
-*it.zeTearOffPosition -25/-25: ""
-*it.zeTearOffPosition -20/-20: ""
-*it.zeTearOffPosition -15/-15: ""
-*it.zeTearOffPosition -10/-10: ""
-*it.zeTearOffPosition -5/-5: ""
-*it.zeTearOffPosition 0/0: ""
-*it.zeTearOffPosition 5/5: ""
-*it.zeTearOffPosition 10/10: ""
-*it.zeTearOffPosition 15/15: ""
-*it.zeTearOffPosition 20/20: ""
-*it.zeTearOffPosition 25/25: ""
-*it.zeTearOffPosition 30/30: ""
-*it.zeTearOffPosition 35/35: ""
-*it.zeTearOffPosition 40/40: ""
-*it.zeTearOffPosition 45/45: ""
-*it.zeTearOffPosition 50/50: ""
-*it.zeTearOffPosition 55/55: ""
-*it.zeTearOffPosition 60/60: ""
-*it.zeTearOffPosition 65/65: ""
-*it.zeTearOffPosition 70/70: ""
-*it.zeTearOffPosition 75/75: ""
-*it.zeTearOffPosition 80/80: ""
-*it.zeTearOffPosition 85/85: ""
-*it.zeTearOffPosition 90/90: ""
-*it.zeTearOffPosition 95/95: ""
-*it.zeTearOffPosition 100/100: ""
-*it.zeTearOffPosition 105/105: ""
-*it.zeTearOffPosition 110/110: ""
-*it.zeTearOffPosition 115/115: ""
-*it.zeTearOffPosition 120/120: ""
-*it.Translation zeErrorReprint/Reprint After Error: ""
-*it.zeErrorReprint Saved/Impostazioni predefinite stampante: ""
-*it.zeErrorReprint Always/Always: ""
-*it.zeErrorReprint Never/Never: ""
-*ja.Translation Manufacturer/Zebra: ""
-*ja.Translation ModelName/Zebra CPCL Label Printer: ""
-*ja.Translation ShortNickName/Zebra CPCL Label Printer: ""
-*ja.Translation NickName/Zebra CPCL Label Printer, 1.4: ""
-*ja.Translation PageSize/Media Size: ""
-*ja.PageSize w144h72/2.00x1.00": ""
-*ja.PageSize w144h90/2.00x1.25": ""
-*ja.PageSize w144h144/2.00x2.00": ""
-*ja.PageSize w144h216/2.00x3.00": ""
-*ja.PageSize w209h72/2.9 x 1": ""
-*ja.PageSize w288h144/4.00x2.00": ""
-*ja.PageSize w288h216/4.00x3.00": ""
-*ja.PageSize w288h288/4.00x4.00": ""
-*ja.PageSize w288h360/4.00x5.00": ""
-*ja.PageSize w288h432/4.00x6.00": ""
-*ja.Translation Resolution/Resolution: ""
-*ja.Resolution 203dpi/203dpi: ""
-*ja.Translation zeMediaTracking/Media Tracking: ""
-*ja.zeMediaTracking Continuous/Continuous: ""
-*ja.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*ja.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*ja.Translation PrinterSettings/Printer Settings: ""
-*ja.Translation Darkness/Darkness: ""
-*ja.Darkness -1/システムデフォルト: ""
-*ja.Darkness 1/1: ""
-*ja.Darkness 2/2: ""
-*ja.Darkness 3/3: ""
-*ja.Darkness 4/4: ""
-*ja.Darkness 5/5: ""
-*ja.Darkness 6/6: ""
-*ja.Darkness 7/7: ""
-*ja.Darkness 8/8: ""
-*ja.Darkness 9/9: ""
-*ja.Darkness 10/10: ""
-*ja.Darkness 11/11: ""
-*ja.Darkness 12/12: ""
-*ja.Darkness 13/13: ""
-*ja.Darkness 14/14: ""
-*ja.Darkness 15/15: ""
-*ja.Darkness 16/16: ""
-*ja.Darkness 17/17: ""
-*ja.Darkness 18/18: ""
-*ja.Darkness 19/19: ""
-*ja.Darkness 20/20: ""
-*ja.Darkness 21/21: ""
-*ja.Darkness 22/22: ""
-*ja.Darkness 23/23: ""
-*ja.Darkness 24/24: ""
-*ja.Darkness 25/25: ""
-*ja.Darkness 26/26: ""
-*ja.Darkness 27/27: ""
-*ja.Darkness 28/28: ""
-*ja.Darkness 29/29: ""
-*ja.Darkness 30/30: ""
-*ja.Translation zePrintRate/Print Rate: ""
-*ja.zePrintRate Default/システムデフォルト: ""
-*ja.zePrintRate 1/1 inch/sec.: ""
-*ja.zePrintRate 2/2 inches/sec.: ""
-*ja.zePrintRate 3/3 inches/sec.: ""
-*ja.zePrintRate 4/4 inches/sec.: ""
-*ja.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*ja.zeTearOffPosition 1000/システムデフォルト: ""
-*ja.zeTearOffPosition -120/-120: ""
-*ja.zeTearOffPosition -115/-115: ""
-*ja.zeTearOffPosition -110/-110: ""
-*ja.zeTearOffPosition -105/-105: ""
-*ja.zeTearOffPosition -100/-100: ""
-*ja.zeTearOffPosition -95/-95: ""
-*ja.zeTearOffPosition -90/-90: ""
-*ja.zeTearOffPosition -85/-85: ""
-*ja.zeTearOffPosition -80/-80: ""
-*ja.zeTearOffPosition -75/-75: ""
-*ja.zeTearOffPosition -70/-70: ""
-*ja.zeTearOffPosition -65/-65: ""
-*ja.zeTearOffPosition -60/-60: ""
-*ja.zeTearOffPosition -55/-55: ""
-*ja.zeTearOffPosition -50/-50: ""
-*ja.zeTearOffPosition -45/-45: ""
-*ja.zeTearOffPosition -40/-40: ""
-*ja.zeTearOffPosition -35/-35: ""
-*ja.zeTearOffPosition -30/-30: ""
-*ja.zeTearOffPosition -25/-25: ""
-*ja.zeTearOffPosition -20/-20: ""
-*ja.zeTearOffPosition -15/-15: ""
-*ja.zeTearOffPosition -10/-10: ""
-*ja.zeTearOffPosition -5/-5: ""
-*ja.zeTearOffPosition 0/0: ""
-*ja.zeTearOffPosition 5/5: ""
-*ja.zeTearOffPosition 10/10: ""
-*ja.zeTearOffPosition 15/15: ""
-*ja.zeTearOffPosition 20/20: ""
-*ja.zeTearOffPosition 25/25: ""
-*ja.zeTearOffPosition 30/30: ""
-*ja.zeTearOffPosition 35/35: ""
-*ja.zeTearOffPosition 40/40: ""
-*ja.zeTearOffPosition 45/45: ""
-*ja.zeTearOffPosition 50/50: ""
-*ja.zeTearOffPosition 55/55: ""
-*ja.zeTearOffPosition 60/60: ""
-*ja.zeTearOffPosition 65/65: ""
-*ja.zeTearOffPosition 70/70: ""
-*ja.zeTearOffPosition 75/75: ""
-*ja.zeTearOffPosition 80/80: ""
-*ja.zeTearOffPosition 85/85: ""
-*ja.zeTearOffPosition 90/90: ""
-*ja.zeTearOffPosition 95/95: ""
-*ja.zeTearOffPosition 100/100: ""
-*ja.zeTearOffPosition 105/105: ""
-*ja.zeTearOffPosition 110/110: ""
-*ja.zeTearOffPosition 115/115: ""
-*ja.zeTearOffPosition 120/120: ""
-*ja.Translation zeErrorReprint/Reprint After Error: ""
-*ja.zeErrorReprint Saved/システムデフォルト: ""
-*ja.zeErrorReprint Always/Always: ""
-*ja.zeErrorReprint Never/Never: ""
-*ko.Translation Manufacturer/Zebra: ""
-*ko.Translation ModelName/Zebra CPCL Label Printer: ""
-*ko.Translation ShortNickName/Zebra CPCL Label Printer: ""
-*ko.Translation NickName/Zebra CPCL Label Printer, 1.4: ""
-*ko.Translation PageSize/Page Size: ""
-*ko.PageSize w144h72/2.00x1.00": ""
-*ko.PageSize w144h90/2.00x1.25": ""
-*ko.PageSize w144h144/2.00x2.00": ""
-*ko.PageSize w144h216/2.00x3.00": ""
-*ko.PageSize w209h72/2.9 x 1": ""
-*ko.PageSize w288h144/4.00x2.00": ""
-*ko.PageSize w288h216/4.00x3.00": ""
-*ko.PageSize w288h288/4.00x4.00": ""
-*ko.PageSize w288h360/4.00x5.00": ""
-*ko.PageSize w288h432/4.00x6.00": ""
-*ko.Translation Resolution/Resolution: ""
-*ko.Resolution 203dpi/203dpi: ""
-*ko.Translation zeMediaTracking/Media Tracking: ""
-*ko.zeMediaTracking Continuous/Continuous: ""
-*ko.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*ko.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*ko.Translation PrinterSettings/Printer Settings: ""
-*ko.Translation Darkness/Darkness: ""
-*ko.Darkness -1/빠르게: ""
-*ko.Darkness 1/1: ""
-*ko.Darkness 2/2: ""
-*ko.Darkness 3/3: ""
-*ko.Darkness 4/4: ""
-*ko.Darkness 5/5: ""
-*ko.Darkness 6/6: ""
-*ko.Darkness 7/7: ""
-*ko.Darkness 8/8: ""
-*ko.Darkness 9/9: ""
-*ko.Darkness 10/10: ""
-*ko.Darkness 11/11: ""
-*ko.Darkness 12/12: ""
-*ko.Darkness 13/13: ""
-*ko.Darkness 14/14: ""
-*ko.Darkness 15/15: ""
-*ko.Darkness 16/16: ""
-*ko.Darkness 17/17: ""
-*ko.Darkness 18/18: ""
-*ko.Darkness 19/19: ""
-*ko.Darkness 20/20: ""
-*ko.Darkness 21/21: ""
-*ko.Darkness 22/22: ""
-*ko.Darkness 23/23: ""
-*ko.Darkness 24/24: ""
-*ko.Darkness 25/25: ""
-*ko.Darkness 26/26: ""
-*ko.Darkness 27/27: ""
-*ko.Darkness 28/28: ""
-*ko.Darkness 29/29: ""
-*ko.Darkness 30/30: ""
-*ko.Translation zePrintRate/Print Rate: ""
-*ko.zePrintRate Default/빠르게: ""
-*ko.zePrintRate 1/1 inch/sec.: ""
-*ko.zePrintRate 2/2 inches/sec.: ""
-*ko.zePrintRate 3/3 inches/sec.: ""
-*ko.zePrintRate 4/4 inches/sec.: ""
-*ko.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*ko.zeTearOffPosition 1000/빠르게: ""
-*ko.zeTearOffPosition -120/-120: ""
-*ko.zeTearOffPosition -115/-115: ""
-*ko.zeTearOffPosition -110/-110: ""
-*ko.zeTearOffPosition -105/-105: ""
-*ko.zeTearOffPosition -100/-100: ""
-*ko.zeTearOffPosition -95/-95: ""
-*ko.zeTearOffPosition -90/-90: ""
-*ko.zeTearOffPosition -85/-85: ""
-*ko.zeTearOffPosition -80/-80: ""
-*ko.zeTearOffPosition -75/-75: ""
-*ko.zeTearOffPosition -70/-70: ""
-*ko.zeTearOffPosition -65/-65: ""
-*ko.zeTearOffPosition -60/-60: ""
-*ko.zeTearOffPosition -55/-55: ""
-*ko.zeTearOffPosition -50/-50: ""
-*ko.zeTearOffPosition -45/-45: ""
-*ko.zeTearOffPosition -40/-40: ""
-*ko.zeTearOffPosition -35/-35: ""
-*ko.zeTearOffPosition -30/-30: ""
-*ko.zeTearOffPosition -25/-25: ""
-*ko.zeTearOffPosition -20/-20: ""
-*ko.zeTearOffPosition -15/-15: ""
-*ko.zeTearOffPosition -10/-10: ""
-*ko.zeTearOffPosition -5/-5: ""
-*ko.zeTearOffPosition 0/0: ""
-*ko.zeTearOffPosition 5/5: ""
-*ko.zeTearOffPosition 10/10: ""
-*ko.zeTearOffPosition 15/15: ""
-*ko.zeTearOffPosition 20/20: ""
-*ko.zeTearOffPosition 25/25: ""
-*ko.zeTearOffPosition 30/30: ""
-*ko.zeTearOffPosition 35/35: ""
-*ko.zeTearOffPosition 40/40: ""
-*ko.zeTearOffPosition 45/45: ""
-*ko.zeTearOffPosition 50/50: ""
-*ko.zeTearOffPosition 55/55: ""
-*ko.zeTearOffPosition 60/60: ""
-*ko.zeTearOffPosition 65/65: ""
-*ko.zeTearOffPosition 70/70: ""
-*ko.zeTearOffPosition 75/75: ""
-*ko.zeTearOffPosition 80/80: ""
-*ko.zeTearOffPosition 85/85: ""
-*ko.zeTearOffPosition 90/90: ""
-*ko.zeTearOffPosition 95/95: ""
-*ko.zeTearOffPosition 100/100: ""
-*ko.zeTearOffPosition 105/105: ""
-*ko.zeTearOffPosition 110/110: ""
-*ko.zeTearOffPosition 115/115: ""
-*ko.zeTearOffPosition 120/120: ""
-*ko.Translation zeErrorReprint/Reprint After Error: ""
-*ko.zeErrorReprint Saved/빠르게: ""
-*ko.zeErrorReprint Always/Always: ""
-*ko.zeErrorReprint Never/Never: ""
-*nl.Translation Manufacturer/Zebra: ""
-*nl.Translation ModelName/Zebra CPCL Label Printer: ""
-*nl.Translation ShortNickName/Zebra CPCL Label Printer: ""
-*nl.Translation NickName/Zebra CPCL Label Printer, 1.4: ""
-*nl.Translation PageSize/Media Size: ""
-*nl.PageSize w144h72/2.00x1.00": ""
-*nl.PageSize w144h90/2.00x1.25": ""
-*nl.PageSize w144h144/2.00x2.00": ""
-*nl.PageSize w144h216/2.00x3.00": ""
-*nl.PageSize w209h72/2.9 x 1": ""
-*nl.PageSize w288h144/4.00x2.00": ""
-*nl.PageSize w288h216/4.00x3.00": ""
-*nl.PageSize w288h288/4.00x4.00": ""
-*nl.PageSize w288h360/4.00x5.00": ""
-*nl.PageSize w288h432/4.00x6.00": ""
-*nl.Translation Resolution/Resolution: ""
-*nl.Resolution 203dpi/203dpi: ""
-*nl.Translation zeMediaTracking/Media Tracking: ""
-*nl.zeMediaTracking Continuous/Continuous: ""
-*nl.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*nl.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*nl.Translation PrinterSettings/Printer Settings: ""
-*nl.Translation Darkness/Darkness: ""
-*nl.Darkness -1/Printerstandaard: ""
-*nl.Darkness 1/1: ""
-*nl.Darkness 2/2: ""
-*nl.Darkness 3/3: ""
-*nl.Darkness 4/4: ""
-*nl.Darkness 5/5: ""
-*nl.Darkness 6/6: ""
-*nl.Darkness 7/7: ""
-*nl.Darkness 8/8: ""
-*nl.Darkness 9/9: ""
-*nl.Darkness 10/10: ""
-*nl.Darkness 11/11: ""
-*nl.Darkness 12/12: ""
-*nl.Darkness 13/13: ""
-*nl.Darkness 14/14: ""
-*nl.Darkness 15/15: ""
-*nl.Darkness 16/16: ""
-*nl.Darkness 17/17: ""
-*nl.Darkness 18/18: ""
-*nl.Darkness 19/19: ""
-*nl.Darkness 20/20: ""
-*nl.Darkness 21/21: ""
-*nl.Darkness 22/22: ""
-*nl.Darkness 23/23: ""
-*nl.Darkness 24/24: ""
-*nl.Darkness 25/25: ""
-*nl.Darkness 26/26: ""
-*nl.Darkness 27/27: ""
-*nl.Darkness 28/28: ""
-*nl.Darkness 29/29: ""
-*nl.Darkness 30/30: ""
-*nl.Translation zePrintRate/Print Rate: ""
-*nl.zePrintRate Default/Printerstandaard: ""
-*nl.zePrintRate 1/1 inch/sec.: ""
-*nl.zePrintRate 2/2 inches/sec.: ""
-*nl.zePrintRate 3/3 inches/sec.: ""
-*nl.zePrintRate 4/4 inches/sec.: ""
-*nl.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*nl.zeTearOffPosition 1000/Printerstandaard: ""
-*nl.zeTearOffPosition -120/-120: ""
-*nl.zeTearOffPosition -115/-115: ""
-*nl.zeTearOffPosition -110/-110: ""
-*nl.zeTearOffPosition -105/-105: ""
-*nl.zeTearOffPosition -100/-100: ""
-*nl.zeTearOffPosition -95/-95: ""
-*nl.zeTearOffPosition -90/-90: ""
-*nl.zeTearOffPosition -85/-85: ""
-*nl.zeTearOffPosition -80/-80: ""
-*nl.zeTearOffPosition -75/-75: ""
-*nl.zeTearOffPosition -70/-70: ""
-*nl.zeTearOffPosition -65/-65: ""
-*nl.zeTearOffPosition -60/-60: ""
-*nl.zeTearOffPosition -55/-55: ""
-*nl.zeTearOffPosition -50/-50: ""
-*nl.zeTearOffPosition -45/-45: ""
-*nl.zeTearOffPosition -40/-40: ""
-*nl.zeTearOffPosition -35/-35: ""
-*nl.zeTearOffPosition -30/-30: ""
-*nl.zeTearOffPosition -25/-25: ""
-*nl.zeTearOffPosition -20/-20: ""
-*nl.zeTearOffPosition -15/-15: ""
-*nl.zeTearOffPosition -10/-10: ""
-*nl.zeTearOffPosition -5/-5: ""
-*nl.zeTearOffPosition 0/0: ""
-*nl.zeTearOffPosition 5/5: ""
-*nl.zeTearOffPosition 10/10: ""
-*nl.zeTearOffPosition 15/15: ""
-*nl.zeTearOffPosition 20/20: ""
-*nl.zeTearOffPosition 25/25: ""
-*nl.zeTearOffPosition 30/30: ""
-*nl.zeTearOffPosition 35/35: ""
-*nl.zeTearOffPosition 40/40: ""
-*nl.zeTearOffPosition 45/45: ""
-*nl.zeTearOffPosition 50/50: ""
-*nl.zeTearOffPosition 55/55: ""
-*nl.zeTearOffPosition 60/60: ""
-*nl.zeTearOffPosition 65/65: ""
-*nl.zeTearOffPosition 70/70: ""
-*nl.zeTearOffPosition 75/75: ""
-*nl.zeTearOffPosition 80/80: ""
-*nl.zeTearOffPosition 85/85: ""
-*nl.zeTearOffPosition 90/90: ""
-*nl.zeTearOffPosition 95/95: ""
-*nl.zeTearOffPosition 100/100: ""
-*nl.zeTearOffPosition 105/105: ""
-*nl.zeTearOffPosition 110/110: ""
-*nl.zeTearOffPosition 115/115: ""
-*nl.zeTearOffPosition 120/120: ""
-*nl.Translation zeErrorReprint/Reprint After Error: ""
-*nl.zeErrorReprint Saved/Printerstandaard: ""
-*nl.zeErrorReprint Always/Always: ""
-*nl.zeErrorReprint Never/Never: ""
-*no.Translation Manufacturer/Zebra: ""
-*no.Translation ModelName/Zebra CPCL Label Printer: ""
-*no.Translation ShortNickName/Zebra CPCL Label Printer: ""
-*no.Translation NickName/Zebra CPCL Label Printer, 1.4: ""
-*no.Translation PageSize/Media Size: ""
-*no.PageSize w144h72/2.00x1.00": ""
-*no.PageSize w144h90/2.00x1.25": ""
-*no.PageSize w144h144/2.00x2.00": ""
-*no.PageSize w144h216/2.00x3.00": ""
-*no.PageSize w209h72/2.9 x 1": ""
-*no.PageSize w288h144/4.00x2.00": ""
-*no.PageSize w288h216/4.00x3.00": ""
-*no.PageSize w288h288/4.00x4.00": ""
-*no.PageSize w288h360/4.00x5.00": ""
-*no.PageSize w288h432/4.00x6.00": ""
-*no.Translation Resolution/Resolution: ""
-*no.Resolution 203dpi/203dpi: ""
-*no.Translation zeMediaTracking/Media Tracking: ""
-*no.zeMediaTracking Continuous/Continuous: ""
-*no.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*no.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*no.Translation PrinterSettings/Printer Settings: ""
-*no.Translation Darkness/Darkness: ""
-*no.Darkness -1/Skriverstandard: ""
-*no.Darkness 1/1: ""
-*no.Darkness 2/2: ""
-*no.Darkness 3/3: ""
-*no.Darkness 4/4: ""
-*no.Darkness 5/5: ""
-*no.Darkness 6/6: ""
-*no.Darkness 7/7: ""
-*no.Darkness 8/8: ""
-*no.Darkness 9/9: ""
-*no.Darkness 10/10: ""
-*no.Darkness 11/11: ""
-*no.Darkness 12/12: ""
-*no.Darkness 13/13: ""
-*no.Darkness 14/14: ""
-*no.Darkness 15/15: ""
-*no.Darkness 16/16: ""
-*no.Darkness 17/17: ""
-*no.Darkness 18/18: ""
-*no.Darkness 19/19: ""
-*no.Darkness 20/20: ""
-*no.Darkness 21/21: ""
-*no.Darkness 22/22: ""
-*no.Darkness 23/23: ""
-*no.Darkness 24/24: ""
-*no.Darkness 25/25: ""
-*no.Darkness 26/26: ""
-*no.Darkness 27/27: ""
-*no.Darkness 28/28: ""
-*no.Darkness 29/29: ""
-*no.Darkness 30/30: ""
-*no.Translation zePrintRate/Print Rate: ""
-*no.zePrintRate Default/Skriverstandard: ""
-*no.zePrintRate 1/1 inch/sec.: ""
-*no.zePrintRate 2/2 inches/sec.: ""
-*no.zePrintRate 3/3 inches/sec.: ""
-*no.zePrintRate 4/4 inches/sec.: ""
-*no.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*no.zeTearOffPosition 1000/Skriverstandard: ""
-*no.zeTearOffPosition -120/-120: ""
-*no.zeTearOffPosition -115/-115: ""
-*no.zeTearOffPosition -110/-110: ""
-*no.zeTearOffPosition -105/-105: ""
-*no.zeTearOffPosition -100/-100: ""
-*no.zeTearOffPosition -95/-95: ""
-*no.zeTearOffPosition -90/-90: ""
-*no.zeTearOffPosition -85/-85: ""
-*no.zeTearOffPosition -80/-80: ""
-*no.zeTearOffPosition -75/-75: ""
-*no.zeTearOffPosition -70/-70: ""
-*no.zeTearOffPosition -65/-65: ""
-*no.zeTearOffPosition -60/-60: ""
-*no.zeTearOffPosition -55/-55: ""
-*no.zeTearOffPosition -50/-50: ""
-*no.zeTearOffPosition -45/-45: ""
-*no.zeTearOffPosition -40/-40: ""
-*no.zeTearOffPosition -35/-35: ""
-*no.zeTearOffPosition -30/-30: ""
-*no.zeTearOffPosition -25/-25: ""
-*no.zeTearOffPosition -20/-20: ""
-*no.zeTearOffPosition -15/-15: ""
-*no.zeTearOffPosition -10/-10: ""
-*no.zeTearOffPosition -5/-5: ""
-*no.zeTearOffPosition 0/0: ""
-*no.zeTearOffPosition 5/5: ""
-*no.zeTearOffPosition 10/10: ""
-*no.zeTearOffPosition 15/15: ""
-*no.zeTearOffPosition 20/20: ""
-*no.zeTearOffPosition 25/25: ""
-*no.zeTearOffPosition 30/30: ""
-*no.zeTearOffPosition 35/35: ""
-*no.zeTearOffPosition 40/40: ""
-*no.zeTearOffPosition 45/45: ""
-*no.zeTearOffPosition 50/50: ""
-*no.zeTearOffPosition 55/55: ""
-*no.zeTearOffPosition 60/60: ""
-*no.zeTearOffPosition 65/65: ""
-*no.zeTearOffPosition 70/70: ""
-*no.zeTearOffPosition 75/75: ""
-*no.zeTearOffPosition 80/80: ""
-*no.zeTearOffPosition 85/85: ""
-*no.zeTearOffPosition 90/90: ""
-*no.zeTearOffPosition 95/95: ""
-*no.zeTearOffPosition 100/100: ""
-*no.zeTearOffPosition 105/105: ""
-*no.zeTearOffPosition 110/110: ""
-*no.zeTearOffPosition 115/115: ""
-*no.zeTearOffPosition 120/120: ""
-*no.Translation zeErrorReprint/Reprint After Error: ""
-*no.zeErrorReprint Saved/Skriverstandard: ""
-*no.zeErrorReprint Always/Always: ""
-*no.zeErrorReprint Never/Never: ""
-*pt.Translation Manufacturer/Zebra: ""
-*pt.Translation ModelName/Zebra CPCL Label Printer: ""
-*pt.Translation ShortNickName/Zebra CPCL Label Printer: ""
-*pt.Translation NickName/Zebra CPCL Label Printer, 1.4: ""
-*pt.Translation PageSize/Media Size: ""
-*pt.PageSize w144h72/2.00x1.00": ""
-*pt.PageSize w144h90/2.00x1.25": ""
-*pt.PageSize w144h144/2.00x2.00": ""
-*pt.PageSize w144h216/2.00x3.00": ""
-*pt.PageSize w209h72/2.9 x 1": ""
-*pt.PageSize w288h144/4.00x2.00": ""
-*pt.PageSize w288h216/4.00x3.00": ""
-*pt.PageSize w288h288/4.00x4.00": ""
-*pt.PageSize w288h360/4.00x5.00": ""
-*pt.PageSize w288h432/4.00x6.00": ""
-*pt.Translation Resolution/Resolution: ""
-*pt.Resolution 203dpi/203dpi: ""
-*pt.Translation zeMediaTracking/Media Tracking: ""
-*pt.zeMediaTracking Continuous/Continuous: ""
-*pt.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*pt.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*pt.Translation PrinterSettings/Printer Settings: ""
-*pt.Translation Darkness/Darkness: ""
-*pt.Darkness -1/Rápido: ""
-*pt.Darkness 1/1: ""
-*pt.Darkness 2/2: ""
-*pt.Darkness 3/3: ""
-*pt.Darkness 4/4: ""
-*pt.Darkness 5/5: ""
-*pt.Darkness 6/6: ""
-*pt.Darkness 7/7: ""
-*pt.Darkness 8/8: ""
-*pt.Darkness 9/9: ""
-*pt.Darkness 10/10: ""
-*pt.Darkness 11/11: ""
-*pt.Darkness 12/12: ""
-*pt.Darkness 13/13: ""
-*pt.Darkness 14/14: ""
-*pt.Darkness 15/15: ""
-*pt.Darkness 16/16: ""
-*pt.Darkness 17/17: ""
-*pt.Darkness 18/18: ""
-*pt.Darkness 19/19: ""
-*pt.Darkness 20/20: ""
-*pt.Darkness 21/21: ""
-*pt.Darkness 22/22: ""
-*pt.Darkness 23/23: ""
-*pt.Darkness 24/24: ""
-*pt.Darkness 25/25: ""
-*pt.Darkness 26/26: ""
-*pt.Darkness 27/27: ""
-*pt.Darkness 28/28: ""
-*pt.Darkness 29/29: ""
-*pt.Darkness 30/30: ""
-*pt.Translation zePrintRate/Print Rate: ""
-*pt.zePrintRate Default/Rápido: ""
-*pt.zePrintRate 1/1 inch/sec.: ""
-*pt.zePrintRate 2/2 inches/sec.: ""
-*pt.zePrintRate 3/3 inches/sec.: ""
-*pt.zePrintRate 4/4 inches/sec.: ""
-*pt.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*pt.zeTearOffPosition 1000/Rápido: ""
-*pt.zeTearOffPosition -120/-120: ""
-*pt.zeTearOffPosition -115/-115: ""
-*pt.zeTearOffPosition -110/-110: ""
-*pt.zeTearOffPosition -105/-105: ""
-*pt.zeTearOffPosition -100/-100: ""
-*pt.zeTearOffPosition -95/-95: ""
-*pt.zeTearOffPosition -90/-90: ""
-*pt.zeTearOffPosition -85/-85: ""
-*pt.zeTearOffPosition -80/-80: ""
-*pt.zeTearOffPosition -75/-75: ""
-*pt.zeTearOffPosition -70/-70: ""
-*pt.zeTearOffPosition -65/-65: ""
-*pt.zeTearOffPosition -60/-60: ""
-*pt.zeTearOffPosition -55/-55: ""
-*pt.zeTearOffPosition -50/-50: ""
-*pt.zeTearOffPosition -45/-45: ""
-*pt.zeTearOffPosition -40/-40: ""
-*pt.zeTearOffPosition -35/-35: ""
-*pt.zeTearOffPosition -30/-30: ""
-*pt.zeTearOffPosition -25/-25: ""
-*pt.zeTearOffPosition -20/-20: ""
-*pt.zeTearOffPosition -15/-15: ""
-*pt.zeTearOffPosition -10/-10: ""
-*pt.zeTearOffPosition -5/-5: ""
-*pt.zeTearOffPosition 0/0: ""
-*pt.zeTearOffPosition 5/5: ""
-*pt.zeTearOffPosition 10/10: ""
-*pt.zeTearOffPosition 15/15: ""
-*pt.zeTearOffPosition 20/20: ""
-*pt.zeTearOffPosition 25/25: ""
-*pt.zeTearOffPosition 30/30: ""
-*pt.zeTearOffPosition 35/35: ""
-*pt.zeTearOffPosition 40/40: ""
-*pt.zeTearOffPosition 45/45: ""
-*pt.zeTearOffPosition 50/50: ""
-*pt.zeTearOffPosition 55/55: ""
-*pt.zeTearOffPosition 60/60: ""
-*pt.zeTearOffPosition 65/65: ""
-*pt.zeTearOffPosition 70/70: ""
-*pt.zeTearOffPosition 75/75: ""
-*pt.zeTearOffPosition 80/80: ""
-*pt.zeTearOffPosition 85/85: ""
-*pt.zeTearOffPosition 90/90: ""
-*pt.zeTearOffPosition 95/95: ""
-*pt.zeTearOffPosition 100/100: ""
-*pt.zeTearOffPosition 105/105: ""
-*pt.zeTearOffPosition 110/110: ""
-*pt.zeTearOffPosition 115/115: ""
-*pt.zeTearOffPosition 120/120: ""
-*pt.Translation zeErrorReprint/Reprint After Error: ""
-*pt.zeErrorReprint Saved/Rápido: ""
-*pt.zeErrorReprint Always/Always: ""
-*pt.zeErrorReprint Never/Never: ""
-*pt_BR.Translation Manufacturer/Zebra: ""
-*pt_BR.Translation ModelName/Zebra CPCL Label Printer: ""
-*pt_BR.Translation ShortNickName/Zebra CPCL Label Printer: ""
-*pt_BR.Translation NickName/Zebra CPCL Label Printer, 1.4: ""
-*pt_BR.Translation PageSize/Media Size: ""
-*pt_BR.PageSize w144h72/2.00x1.00": ""
-*pt_BR.PageSize w144h90/2.00x1.25": ""
-*pt_BR.PageSize w144h144/2.00x2.00": ""
-*pt_BR.PageSize w144h216/2.00x3.00": ""
-*pt_BR.PageSize w209h72/2.9 x 1": ""
-*pt_BR.PageSize w288h144/4.00x2.00": ""
-*pt_BR.PageSize w288h216/4.00x3.00": ""
-*pt_BR.PageSize w288h288/4.00x4.00": ""
-*pt_BR.PageSize w288h360/4.00x5.00": ""
-*pt_BR.PageSize w288h432/4.00x6.00": ""
-*pt_BR.Translation Resolution/Resolution: ""
-*pt_BR.Resolution 203dpi/203dpi: ""
-*pt_BR.Translation zeMediaTracking/Media Tracking: ""
-*pt_BR.zeMediaTracking Continuous/Continuous: ""
-*pt_BR.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*pt_BR.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*pt_BR.Translation PrinterSettings/Printer Settings: ""
-*pt_BR.Translation Darkness/Darkness: ""
-*pt_BR.Darkness -1/Rápido: ""
-*pt_BR.Darkness 1/1: ""
-*pt_BR.Darkness 2/2: ""
-*pt_BR.Darkness 3/3: ""
-*pt_BR.Darkness 4/4: ""
-*pt_BR.Darkness 5/5: ""
-*pt_BR.Darkness 6/6: ""
-*pt_BR.Darkness 7/7: ""
-*pt_BR.Darkness 8/8: ""
-*pt_BR.Darkness 9/9: ""
-*pt_BR.Darkness 10/10: ""
-*pt_BR.Darkness 11/11: ""
-*pt_BR.Darkness 12/12: ""
-*pt_BR.Darkness 13/13: ""
-*pt_BR.Darkness 14/14: ""
-*pt_BR.Darkness 15/15: ""
-*pt_BR.Darkness 16/16: ""
-*pt_BR.Darkness 17/17: ""
-*pt_BR.Darkness 18/18: ""
-*pt_BR.Darkness 19/19: ""
-*pt_BR.Darkness 20/20: ""
-*pt_BR.Darkness 21/21: ""
-*pt_BR.Darkness 22/22: ""
-*pt_BR.Darkness 23/23: ""
-*pt_BR.Darkness 24/24: ""
-*pt_BR.Darkness 25/25: ""
-*pt_BR.Darkness 26/26: ""
-*pt_BR.Darkness 27/27: ""
-*pt_BR.Darkness 28/28: ""
-*pt_BR.Darkness 29/29: ""
-*pt_BR.Darkness 30/30: ""
-*pt_BR.Translation zePrintRate/Print Rate: ""
-*pt_BR.zePrintRate Default/Rápido: ""
-*pt_BR.zePrintRate 1/1 inch/sec.: ""
-*pt_BR.zePrintRate 2/2 inches/sec.: ""
-*pt_BR.zePrintRate 3/3 inches/sec.: ""
-*pt_BR.zePrintRate 4/4 inches/sec.: ""
-*pt_BR.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*pt_BR.zeTearOffPosition 1000/Rápido: ""
-*pt_BR.zeTearOffPosition -120/-120: ""
-*pt_BR.zeTearOffPosition -115/-115: ""
-*pt_BR.zeTearOffPosition -110/-110: ""
-*pt_BR.zeTearOffPosition -105/-105: ""
-*pt_BR.zeTearOffPosition -100/-100: ""
-*pt_BR.zeTearOffPosition -95/-95: ""
-*pt_BR.zeTearOffPosition -90/-90: ""
-*pt_BR.zeTearOffPosition -85/-85: ""
-*pt_BR.zeTearOffPosition -80/-80: ""
-*pt_BR.zeTearOffPosition -75/-75: ""
-*pt_BR.zeTearOffPosition -70/-70: ""
-*pt_BR.zeTearOffPosition -65/-65: ""
-*pt_BR.zeTearOffPosition -60/-60: ""
-*pt_BR.zeTearOffPosition -55/-55: ""
-*pt_BR.zeTearOffPosition -50/-50: ""
-*pt_BR.zeTearOffPosition -45/-45: ""
-*pt_BR.zeTearOffPosition -40/-40: ""
-*pt_BR.zeTearOffPosition -35/-35: ""
-*pt_BR.zeTearOffPosition -30/-30: ""
-*pt_BR.zeTearOffPosition -25/-25: ""
-*pt_BR.zeTearOffPosition -20/-20: ""
-*pt_BR.zeTearOffPosition -15/-15: ""
-*pt_BR.zeTearOffPosition -10/-10: ""
-*pt_BR.zeTearOffPosition -5/-5: ""
-*pt_BR.zeTearOffPosition 0/0: ""
-*pt_BR.zeTearOffPosition 5/5: ""
-*pt_BR.zeTearOffPosition 10/10: ""
-*pt_BR.zeTearOffPosition 15/15: ""
-*pt_BR.zeTearOffPosition 20/20: ""
-*pt_BR.zeTearOffPosition 25/25: ""
-*pt_BR.zeTearOffPosition 30/30: ""
-*pt_BR.zeTearOffPosition 35/35: ""
-*pt_BR.zeTearOffPosition 40/40: ""
-*pt_BR.zeTearOffPosition 45/45: ""
-*pt_BR.zeTearOffPosition 50/50: ""
-*pt_BR.zeTearOffPosition 55/55: ""
-*pt_BR.zeTearOffPosition 60/60: ""
-*pt_BR.zeTearOffPosition 65/65: ""
-*pt_BR.zeTearOffPosition 70/70: ""
-*pt_BR.zeTearOffPosition 75/75: ""
-*pt_BR.zeTearOffPosition 80/80: ""
-*pt_BR.zeTearOffPosition 85/85: ""
-*pt_BR.zeTearOffPosition 90/90: ""
-*pt_BR.zeTearOffPosition 95/95: ""
-*pt_BR.zeTearOffPosition 100/100: ""
-*pt_BR.zeTearOffPosition 105/105: ""
-*pt_BR.zeTearOffPosition 110/110: ""
-*pt_BR.zeTearOffPosition 115/115: ""
-*pt_BR.zeTearOffPosition 120/120: ""
-*pt_BR.Translation zeErrorReprint/Reprint After Error: ""
-*pt_BR.zeErrorReprint Saved/Rápido: ""
-*pt_BR.zeErrorReprint Always/Always: ""
-*pt_BR.zeErrorReprint Never/Never: ""
-*sv.Translation Manufacturer/Zebra: ""
-*sv.Translation ModelName/Zebra CPCL Label Printer: ""
-*sv.Translation ShortNickName/Zebra CPCL Label Printer: ""
-*sv.Translation NickName/Zebra CPCL Label Printer, 1.4: ""
-*sv.Translation PageSize/Media Size: ""
-*sv.PageSize w144h72/2.00x1.00": ""
-*sv.PageSize w144h90/2.00x1.25": ""
-*sv.PageSize w144h144/2.00x2.00": ""
-*sv.PageSize w144h216/2.00x3.00": ""
-*sv.PageSize w209h72/2.9 x 1": ""
-*sv.PageSize w288h144/4.00x2.00": ""
-*sv.PageSize w288h216/4.00x3.00": ""
-*sv.PageSize w288h288/4.00x4.00": ""
-*sv.PageSize w288h360/4.00x5.00": ""
-*sv.PageSize w288h432/4.00x6.00": ""
-*sv.Translation Resolution/Resolution: ""
-*sv.Resolution 203dpi/203dpi: ""
-*sv.Translation zeMediaTracking/Media Tracking: ""
-*sv.zeMediaTracking Continuous/Continuous: ""
-*sv.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*sv.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*sv.Translation PrinterSettings/Printer Settings: ""
-*sv.Translation Darkness/Darkness: ""
-*sv.Darkness -1/Skrivarstandard: ""
-*sv.Darkness 1/1: ""
-*sv.Darkness 2/2: ""
-*sv.Darkness 3/3: ""
-*sv.Darkness 4/4: ""
-*sv.Darkness 5/5: ""
-*sv.Darkness 6/6: ""
-*sv.Darkness 7/7: ""
-*sv.Darkness 8/8: ""
-*sv.Darkness 9/9: ""
-*sv.Darkness 10/10: ""
-*sv.Darkness 11/11: ""
-*sv.Darkness 12/12: ""
-*sv.Darkness 13/13: ""
-*sv.Darkness 14/14: ""
-*sv.Darkness 15/15: ""
-*sv.Darkness 16/16: ""
-*sv.Darkness 17/17: ""
-*sv.Darkness 18/18: ""
-*sv.Darkness 19/19: ""
-*sv.Darkness 20/20: ""
-*sv.Darkness 21/21: ""
-*sv.Darkness 22/22: ""
-*sv.Darkness 23/23: ""
-*sv.Darkness 24/24: ""
-*sv.Darkness 25/25: ""
-*sv.Darkness 26/26: ""
-*sv.Darkness 27/27: ""
-*sv.Darkness 28/28: ""
-*sv.Darkness 29/29: ""
-*sv.Darkness 30/30: ""
-*sv.Translation zePrintRate/Print Rate: ""
-*sv.zePrintRate Default/Skrivarstandard: ""
-*sv.zePrintRate 1/1 inch/sec.: ""
-*sv.zePrintRate 2/2 inches/sec.: ""
-*sv.zePrintRate 3/3 inches/sec.: ""
-*sv.zePrintRate 4/4 inches/sec.: ""
-*sv.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*sv.zeTearOffPosition 1000/Skrivarstandard: ""
-*sv.zeTearOffPosition -120/-120: ""
-*sv.zeTearOffPosition -115/-115: ""
-*sv.zeTearOffPosition -110/-110: ""
-*sv.zeTearOffPosition -105/-105: ""
-*sv.zeTearOffPosition -100/-100: ""
-*sv.zeTearOffPosition -95/-95: ""
-*sv.zeTearOffPosition -90/-90: ""
-*sv.zeTearOffPosition -85/-85: ""
-*sv.zeTearOffPosition -80/-80: ""
-*sv.zeTearOffPosition -75/-75: ""
-*sv.zeTearOffPosition -70/-70: ""
-*sv.zeTearOffPosition -65/-65: ""
-*sv.zeTearOffPosition -60/-60: ""
-*sv.zeTearOffPosition -55/-55: ""
-*sv.zeTearOffPosition -50/-50: ""
-*sv.zeTearOffPosition -45/-45: ""
-*sv.zeTearOffPosition -40/-40: ""
-*sv.zeTearOffPosition -35/-35: ""
-*sv.zeTearOffPosition -30/-30: ""
-*sv.zeTearOffPosition -25/-25: ""
-*sv.zeTearOffPosition -20/-20: ""
-*sv.zeTearOffPosition -15/-15: ""
-*sv.zeTearOffPosition -10/-10: ""
-*sv.zeTearOffPosition -5/-5: ""
-*sv.zeTearOffPosition 0/0: ""
-*sv.zeTearOffPosition 5/5: ""
-*sv.zeTearOffPosition 10/10: ""
-*sv.zeTearOffPosition 15/15: ""
-*sv.zeTearOffPosition 20/20: ""
-*sv.zeTearOffPosition 25/25: ""
-*sv.zeTearOffPosition 30/30: ""
-*sv.zeTearOffPosition 35/35: ""
-*sv.zeTearOffPosition 40/40: ""
-*sv.zeTearOffPosition 45/45: ""
-*sv.zeTearOffPosition 50/50: ""
-*sv.zeTearOffPosition 55/55: ""
-*sv.zeTearOffPosition 60/60: ""
-*sv.zeTearOffPosition 65/65: ""
-*sv.zeTearOffPosition 70/70: ""
-*sv.zeTearOffPosition 75/75: ""
-*sv.zeTearOffPosition 80/80: ""
-*sv.zeTearOffPosition 85/85: ""
-*sv.zeTearOffPosition 90/90: ""
-*sv.zeTearOffPosition 95/95: ""
-*sv.zeTearOffPosition 100/100: ""
-*sv.zeTearOffPosition 105/105: ""
-*sv.zeTearOffPosition 110/110: ""
-*sv.zeTearOffPosition 115/115: ""
-*sv.zeTearOffPosition 120/120: ""
-*sv.Translation zeErrorReprint/Reprint After Error: ""
-*sv.zeErrorReprint Saved/Skrivarstandard: ""
-*sv.zeErrorReprint Always/Always: ""
-*sv.zeErrorReprint Never/Never: ""
-*zh.Translation Manufacturer/Zebra: ""
-*zh.Translation ModelName/Zebra CPCL Label Printer: ""
-*zh.Translation ShortNickName/Zebra CPCL Label Printer: ""
-*zh.Translation NickName/Zebra CPCL Label Printer, 1.4: ""
-*zh.Translation PageSize/Page Size: ""
-*zh.PageSize w144h72/2.00x1.00": ""
-*zh.PageSize w144h90/2.00x1.25": ""
-*zh.PageSize w144h144/2.00x2.00": ""
-*zh.PageSize w144h216/2.00x3.00": ""
-*zh.PageSize w209h72/2.9 x 1": ""
-*zh.PageSize w288h144/4.00x2.00": ""
-*zh.PageSize w288h216/4.00x3.00": ""
-*zh.PageSize w288h288/4.00x4.00": ""
-*zh.PageSize w288h360/4.00x5.00": ""
-*zh.PageSize w288h432/4.00x6.00": ""
-*zh.Translation Resolution/Resolution: ""
-*zh.Resolution 203dpi/203dpi: ""
-*zh.Translation zeMediaTracking/Media Tracking: ""
-*zh.zeMediaTracking Continuous/Continuous: ""
-*zh.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*zh.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*zh.Translation PrinterSettings/Printer Settings: ""
-*zh.Translation Darkness/Darkness: ""
-*zh.Darkness -1/Printer's Current Setting: ""
-*zh.Darkness 1/1: ""
-*zh.Darkness 2/2: ""
-*zh.Darkness 3/3: ""
-*zh.Darkness 4/4: ""
-*zh.Darkness 5/5: ""
-*zh.Darkness 6/6: ""
-*zh.Darkness 7/7: ""
-*zh.Darkness 8/8: ""
-*zh.Darkness 9/9: ""
-*zh.Darkness 10/10: ""
-*zh.Darkness 11/11: ""
-*zh.Darkness 12/12: ""
-*zh.Darkness 13/13: ""
-*zh.Darkness 14/14: ""
-*zh.Darkness 15/15: ""
-*zh.Darkness 16/16: ""
-*zh.Darkness 17/17: ""
-*zh.Darkness 18/18: ""
-*zh.Darkness 19/19: ""
-*zh.Darkness 20/20: ""
-*zh.Darkness 21/21: ""
-*zh.Darkness 22/22: ""
-*zh.Darkness 23/23: ""
-*zh.Darkness 24/24: ""
-*zh.Darkness 25/25: ""
-*zh.Darkness 26/26: ""
-*zh.Darkness 27/27: ""
-*zh.Darkness 28/28: ""
-*zh.Darkness 29/29: ""
-*zh.Darkness 30/30: ""
-*zh.Translation zePrintRate/Print Rate: ""
-*zh.zePrintRate Default/Printer's Current Setting: ""
-*zh.zePrintRate 1/1 inch/sec.: ""
-*zh.zePrintRate 2/2 inches/sec.: ""
-*zh.zePrintRate 3/3 inches/sec.: ""
-*zh.zePrintRate 4/4 inches/sec.: ""
-*zh.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*zh.zeTearOffPosition 1000/Printer's Current Setting: ""
-*zh.zeTearOffPosition -120/-120: ""
-*zh.zeTearOffPosition -115/-115: ""
-*zh.zeTearOffPosition -110/-110: ""
-*zh.zeTearOffPosition -105/-105: ""
-*zh.zeTearOffPosition -100/-100: ""
-*zh.zeTearOffPosition -95/-95: ""
-*zh.zeTearOffPosition -90/-90: ""
-*zh.zeTearOffPosition -85/-85: ""
-*zh.zeTearOffPosition -80/-80: ""
-*zh.zeTearOffPosition -75/-75: ""
-*zh.zeTearOffPosition -70/-70: ""
-*zh.zeTearOffPosition -65/-65: ""
-*zh.zeTearOffPosition -60/-60: ""
-*zh.zeTearOffPosition -55/-55: ""
-*zh.zeTearOffPosition -50/-50: ""
-*zh.zeTearOffPosition -45/-45: ""
-*zh.zeTearOffPosition -40/-40: ""
-*zh.zeTearOffPosition -35/-35: ""
-*zh.zeTearOffPosition -30/-30: ""
-*zh.zeTearOffPosition -25/-25: ""
-*zh.zeTearOffPosition -20/-20: ""
-*zh.zeTearOffPosition -15/-15: ""
-*zh.zeTearOffPosition -10/-10: ""
-*zh.zeTearOffPosition -5/-5: ""
-*zh.zeTearOffPosition 0/0: ""
-*zh.zeTearOffPosition 5/5: ""
-*zh.zeTearOffPosition 10/10: ""
-*zh.zeTearOffPosition 15/15: ""
-*zh.zeTearOffPosition 20/20: ""
-*zh.zeTearOffPosition 25/25: ""
-*zh.zeTearOffPosition 30/30: ""
-*zh.zeTearOffPosition 35/35: ""
-*zh.zeTearOffPosition 40/40: ""
-*zh.zeTearOffPosition 45/45: ""
-*zh.zeTearOffPosition 50/50: ""
-*zh.zeTearOffPosition 55/55: ""
-*zh.zeTearOffPosition 60/60: ""
-*zh.zeTearOffPosition 65/65: ""
-*zh.zeTearOffPosition 70/70: ""
-*zh.zeTearOffPosition 75/75: ""
-*zh.zeTearOffPosition 80/80: ""
-*zh.zeTearOffPosition 85/85: ""
-*zh.zeTearOffPosition 90/90: ""
-*zh.zeTearOffPosition 95/95: ""
-*zh.zeTearOffPosition 100/100: ""
-*zh.zeTearOffPosition 105/105: ""
-*zh.zeTearOffPosition 110/110: ""
-*zh.zeTearOffPosition 115/115: ""
-*zh.zeTearOffPosition 120/120: ""
-*zh.Translation zeErrorReprint/Reprint After Error: ""
-*zh.zeErrorReprint Saved/Printer's Current Setting: ""
-*zh.zeErrorReprint Always/Always: ""
-*zh.zeErrorReprint Never/Never: ""
-*zh_TW.Translation Manufacturer/Zebra: ""
-*zh_TW.Translation ModelName/Zebra CPCL Label Printer: ""
-*zh_TW.Translation ShortNickName/Zebra CPCL Label Printer: ""
-*zh_TW.Translation NickName/Zebra CPCL Label Printer, 1.4: ""
-*zh_TW.Translation PageSize/Page Size: ""
-*zh_TW.PageSize w144h72/2.00x1.00": ""
-*zh_TW.PageSize w144h90/2.00x1.25": ""
-*zh_TW.PageSize w144h144/2.00x2.00": ""
-*zh_TW.PageSize w144h216/2.00x3.00": ""
-*zh_TW.PageSize w209h72/2.9 x 1": ""
-*zh_TW.PageSize w288h144/4.00x2.00": ""
-*zh_TW.PageSize w288h216/4.00x3.00": ""
-*zh_TW.PageSize w288h288/4.00x4.00": ""
-*zh_TW.PageSize w288h360/4.00x5.00": ""
-*zh_TW.PageSize w288h432/4.00x6.00": ""
-*zh_TW.Translation Resolution/Resolution: ""
-*zh_TW.Resolution 203dpi/203dpi: ""
-*zh_TW.Translation zeMediaTracking/Media Tracking: ""
-*zh_TW.zeMediaTracking Continuous/Continuous: ""
-*zh_TW.zeMediaTracking Web/Non-continuous (Web sensing): ""
-*zh_TW.zeMediaTracking Mark/Non-continuous (Mark sensing): ""
-*zh_TW.Translation PrinterSettings/Printer Settings: ""
-*zh_TW.Translation Darkness/Darkness: ""
-*zh_TW.Darkness -1/快速: ""
-*zh_TW.Darkness 1/1: ""
-*zh_TW.Darkness 2/2: ""
-*zh_TW.Darkness 3/3: ""
-*zh_TW.Darkness 4/4: ""
-*zh_TW.Darkness 5/5: ""
-*zh_TW.Darkness 6/6: ""
-*zh_TW.Darkness 7/7: ""
-*zh_TW.Darkness 8/8: ""
-*zh_TW.Darkness 9/9: ""
-*zh_TW.Darkness 10/10: ""
-*zh_TW.Darkness 11/11: ""
-*zh_TW.Darkness 12/12: ""
-*zh_TW.Darkness 13/13: ""
-*zh_TW.Darkness 14/14: ""
-*zh_TW.Darkness 15/15: ""
-*zh_TW.Darkness 16/16: ""
-*zh_TW.Darkness 17/17: ""
-*zh_TW.Darkness 18/18: ""
-*zh_TW.Darkness 19/19: ""
-*zh_TW.Darkness 20/20: ""
-*zh_TW.Darkness 21/21: ""
-*zh_TW.Darkness 22/22: ""
-*zh_TW.Darkness 23/23: ""
-*zh_TW.Darkness 24/24: ""
-*zh_TW.Darkness 25/25: ""
-*zh_TW.Darkness 26/26: ""
-*zh_TW.Darkness 27/27: ""
-*zh_TW.Darkness 28/28: ""
-*zh_TW.Darkness 29/29: ""
-*zh_TW.Darkness 30/30: ""
-*zh_TW.Translation zePrintRate/Print Rate: ""
-*zh_TW.zePrintRate Default/快速: ""
-*zh_TW.zePrintRate 1/1 inch/sec.: ""
-*zh_TW.zePrintRate 2/2 inches/sec.: ""
-*zh_TW.zePrintRate 3/3 inches/sec.: ""
-*zh_TW.zePrintRate 4/4 inches/sec.: ""
-*zh_TW.Translation zeTearOffPosition/Tear-Off Adjust Position: ""
-*zh_TW.zeTearOffPosition 1000/快速: ""
-*zh_TW.zeTearOffPosition -120/-120: ""
-*zh_TW.zeTearOffPosition -115/-115: ""
-*zh_TW.zeTearOffPosition -110/-110: ""
-*zh_TW.zeTearOffPosition -105/-105: ""
-*zh_TW.zeTearOffPosition -100/-100: ""
-*zh_TW.zeTearOffPosition -95/-95: ""
-*zh_TW.zeTearOffPosition -90/-90: ""
-*zh_TW.zeTearOffPosition -85/-85: ""
-*zh_TW.zeTearOffPosition -80/-80: ""
-*zh_TW.zeTearOffPosition -75/-75: ""
-*zh_TW.zeTearOffPosition -70/-70: ""
-*zh_TW.zeTearOffPosition -65/-65: ""
-*zh_TW.zeTearOffPosition -60/-60: ""
-*zh_TW.zeTearOffPosition -55/-55: ""
-*zh_TW.zeTearOffPosition -50/-50: ""
-*zh_TW.zeTearOffPosition -45/-45: ""
-*zh_TW.zeTearOffPosition -40/-40: ""
-*zh_TW.zeTearOffPosition -35/-35: ""
-*zh_TW.zeTearOffPosition -30/-30: ""
-*zh_TW.zeTearOffPosition -25/-25: ""
-*zh_TW.zeTearOffPosition -20/-20: ""
-*zh_TW.zeTearOffPosition -15/-15: ""
-*zh_TW.zeTearOffPosition -10/-10: ""
-*zh_TW.zeTearOffPosition -5/-5: ""
-*zh_TW.zeTearOffPosition 0/0: ""
-*zh_TW.zeTearOffPosition 5/5: ""
-*zh_TW.zeTearOffPosition 10/10: ""
-*zh_TW.zeTearOffPosition 15/15: ""
-*zh_TW.zeTearOffPosition 20/20: ""
-*zh_TW.zeTearOffPosition 25/25: ""
-*zh_TW.zeTearOffPosition 30/30: ""
-*zh_TW.zeTearOffPosition 35/35: ""
-*zh_TW.zeTearOffPosition 40/40: ""
-*zh_TW.zeTearOffPosition 45/45: ""
-*zh_TW.zeTearOffPosition 50/50: ""
-*zh_TW.zeTearOffPosition 55/55: ""
-*zh_TW.zeTearOffPosition 60/60: ""
-*zh_TW.zeTearOffPosition 65/65: ""
-*zh_TW.zeTearOffPosition 70/70: ""
-*zh_TW.zeTearOffPosition 75/75: ""
-*zh_TW.zeTearOffPosition 80/80: ""
-*zh_TW.zeTearOffPosition 85/85: ""
-*zh_TW.zeTearOffPosition 90/90: ""
-*zh_TW.zeTearOffPosition 95/95: ""
-*zh_TW.zeTearOffPosition 100/100: ""
-*zh_TW.zeTearOffPosition 105/105: ""
-*zh_TW.zeTearOffPosition 110/110: ""
-*zh_TW.zeTearOffPosition 115/115: ""
-*zh_TW.zeTearOffPosition 120/120: ""
-*zh_TW.Translation zeErrorReprint/Reprint After Error: ""
-*zh_TW.zeErrorReprint Saved/快速: ""
-*zh_TW.zeErrorReprint Always/Always: ""
-*zh_TW.zeErrorReprint Never/Never: ""
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(1.05)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
-*Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
-*Font Bookman-Demi: Standard "(1.05)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
-*Font Bookman-Light: Standard "(1.05)" Standard ROM
-*Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
-*Font Courier: Standard "(1.05)" Standard ROM
-*Font Courier-Bold: Standard "(1.05)" Standard ROM
-*Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Courier-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica: Standard "(1.05)" Standard ROM
-*Font Helvetica-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
-*Font Palatino-Bold: Standard "(1.05)" Standard ROM
-*Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Palatino-Italic: Standard "(1.05)" Standard ROM
-*Font Palatino-Roman: Standard "(1.05)" Standard ROM
-*Font Symbol: Special "(001.005)" Special ROM
-*Font Times-Bold: Standard "(1.05)" Standard ROM
-*Font Times-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Times-Italic: Standard "(1.05)" Standard ROM
-*Font Times-Roman: Standard "(1.05)" Standard ROM
-*Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
-*Font ZapfDingbats: Special "(001.005)" Special ROM
-*% End of ZEBRACPL.PPD, 71686 bytes.
diff --git a/ppd/zebraep1.ppd b/ppd/zebraep1.ppd
deleted file mode 100644 (file)
index ab97b75..0000000
+++ /dev/null
@@ -1,1627 +0,0 @@
-*PPD-Adobe: "4.3"
-*% PPD file for EPL1 Label Printer with CUPS.
-*% Created by the CUPS PPD Compiler v1.2.4.
-*% Copyright 2007 by Apple Inc.
-*% Copyright 1997-2007 by Easy Software Products.
-*% 
-*% These coded instructions, statements, and computer programs are the
-*% property of Apple Inc. and are protected by Federal copyright
-*% law.  Distribution and use rights are outlined in the file "LICENSE.txt"
-*% which should have been included with this file.  If this file is
-*% file is missing or damaged, see the license at "http://www.cups.org/".
-*FormatVersion: "4.3"
-*FileVersion: "1.4"
-*LanguageVersion: English
-*LanguageEncoding: ISOLatin1
-*PCFileName: "ZEBRAEP1.PPD"
-*Product: "(ESP Ghostscript)"
-*Product: "(GPL Ghostscript)"
-*Manufacturer: "Zebra"
-*ModelName: "Zebra EPL1 Label Printer"
-*ShortNickName: "Zebra EPL1 Label Printer"
-*NickName: "Zebra EPL1 Label Printer, 1.4"
-*PSVersion: "(3010.000) 81504"
-*PSVersion: "(3010.000) 860"
-*LanguageLevel: "3"
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*FileSystem: False
-*Throughput: "8"
-*LandscapeOrientation: Plus90
-*TTRasterizer: Type42
-*% Driver-defined attributes...
-*cupsVersion: 1.4
-*cupsModelNumber: 16
-*cupsManualCopies: False
-*cupsFilter: "application/vnd.cups-raster 50 rastertolabel"
-*cupsLanguages: "en da de es fi fr it ja ko nl no pt pt_BR sv zh zh_TW"
-*OpenUI *PageSize/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageSize
-*DefaultPageSize: w288h360
-*PageSize w90h18/1.25x0.25": "<</PageSize[90 18]/ImagingBBox null>>setpagedevice"
-*PageSize w90h162/1.25x2.25": "<</PageSize[90 162]/ImagingBBox null>>setpagedevice"
-*PageSize w108h18/1.50x0.25": "<</PageSize[108 18]/ImagingBBox null>>setpagedevice"
-*PageSize w108h36/1.50x0.50": "<</PageSize[108 36]/ImagingBBox null>>setpagedevice"
-*PageSize w108h72/1.50x1.00": "<</PageSize[108 72]/ImagingBBox null>>setpagedevice"
-*PageSize w108h144/1.50x2.00": "<</PageSize[108 144]/ImagingBBox null>>setpagedevice"
-*PageSize w144h26/2.00x0.37": "<</PageSize[144 26]/ImagingBBox null>>setpagedevice"
-*PageSize w144h36/2.00x0.50": "<</PageSize[144 36]/ImagingBBox null>>setpagedevice"
-*PageSize w144h72/2.00x1.00": "<</PageSize[144 72]/ImagingBBox null>>setpagedevice"
-*PageSize w144h90/2.00x1.25": "<</PageSize[144 90]/ImagingBBox null>>setpagedevice"
-*PageSize w144h288/2.00x4.00": "<</PageSize[144 288]/ImagingBBox null>>setpagedevice"
-*PageSize w144h396/2.00x5.50": "<</PageSize[144 396]/ImagingBBox null>>setpagedevice"
-*PageSize w162h36/2.25x0.50": "<</PageSize[162 36]/ImagingBBox null>>setpagedevice"
-*PageSize w162h90/2.25x1.25": "<</PageSize[162 90]/ImagingBBox null>>setpagedevice"
-*PageSize w162h288/2.25x4.00": "<</PageSize[162 288]/ImagingBBox null>>setpagedevice"
-*PageSize w162h396/2.25x5.50": "<</PageSize[162 396]/ImagingBBox null>>setpagedevice"
-*PageSize w171h396/2.38x5.50": "<</PageSize[171 396]/ImagingBBox null>>setpagedevice"
-*PageSize w180h72/2.50x1.00": "<</PageSize[180 72]/ImagingBBox null>>setpagedevice"
-*PageSize w180h144/2.50x2.00": "<</PageSize[180 144]/ImagingBBox null>>setpagedevice"
-*PageSize w198h90/2.75x1.25": "<</PageSize[198 90]/ImagingBBox null>>setpagedevice"
-*PageSize w216h72/3.00x1.00": "<</PageSize[216 72]/ImagingBBox null>>setpagedevice"
-*PageSize w216h90/3.00x1.25": "<</PageSize[216 90]/ImagingBBox null>>setpagedevice"
-*PageSize w216h144/3.00x2.00": "<</PageSize[216 144]/ImagingBBox null>>setpagedevice"
-*PageSize w216h216/3.00x3.00": "<</PageSize[216 216]/ImagingBBox null>>setpagedevice"
-*PageSize w216h360/3.00x5.00": "<</PageSize[216 360]/ImagingBBox null>>setpagedevice"
-*PageSize w234h144/3.25x2.00": "<</PageSize[234 144]/ImagingBBox null>>setpagedevice"
-*PageSize w234h360/3.25x5.00": "<</PageSize[234 360]/ImagingBBox null>>setpagedevice"
-*PageSize w234h396/3.25x5.50": "<</PageSize[234 396]/ImagingBBox null>>setpagedevice"
-*PageSize w234h419/3.25x5.83": "<</PageSize[234 419]/ImagingBBox null>>setpagedevice"
-*PageSize w234h563/3.25x7.83": "<</PageSize[234 563]/ImagingBBox null>>setpagedevice"
-*PageSize w252h72/3.50x1.00": "<</PageSize[252 72]/ImagingBBox null>>setpagedevice"
-*PageSize w288h72/4.00x1.00": "<</PageSize[288 72]/ImagingBBox null>>setpagedevice"
-*PageSize w288h144/4.00x2.00": "<</PageSize[288 144]/ImagingBBox null>>setpagedevice"
-*PageSize w288h180/4.00x2.50": "<</PageSize[288 180]/ImagingBBox null>>setpagedevice"
-*PageSize w288h216/4.00x3.00": "<</PageSize[288 216]/ImagingBBox null>>setpagedevice"
-*PageSize w288h288/4.00x4.00": "<</PageSize[288 288]/ImagingBBox null>>setpagedevice"
-*PageSize w288h360/4.00x5.00": "<</PageSize[288 360]/ImagingBBox null>>setpagedevice"
-*PageSize w288h432/4.00x6.00": "<</PageSize[288 432]/ImagingBBox null>>setpagedevice"
-*PageSize w288h468/4.00x6.50": "<</PageSize[288 468]/ImagingBBox null>>setpagedevice"
-*PageSize w288h936/4.00x13.00": "<</PageSize[288 936]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageSize
-*OpenUI *PageRegion/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageRegion
-*DefaultPageRegion: w288h360
-*PageRegion w90h18/1.25x0.25": "<</PageSize[90 18]/ImagingBBox null>>setpagedevice"
-*PageRegion w90h162/1.25x2.25": "<</PageSize[90 162]/ImagingBBox null>>setpagedevice"
-*PageRegion w108h18/1.50x0.25": "<</PageSize[108 18]/ImagingBBox null>>setpagedevice"
-*PageRegion w108h36/1.50x0.50": "<</PageSize[108 36]/ImagingBBox null>>setpagedevice"
-*PageRegion w108h72/1.50x1.00": "<</PageSize[108 72]/ImagingBBox null>>setpagedevice"
-*PageRegion w108h144/1.50x2.00": "<</PageSize[108 144]/ImagingBBox null>>setpagedevice"
-*PageRegion w144h26/2.00x0.37": "<</PageSize[144 26]/ImagingBBox null>>setpagedevice"
-*PageRegion w144h36/2.00x0.50": "<</PageSize[144 36]/ImagingBBox null>>setpagedevice"
-*PageRegion w144h72/2.00x1.00": "<</PageSize[144 72]/ImagingBBox null>>setpagedevice"
-*PageRegion w144h90/2.00x1.25": "<</PageSize[144 90]/ImagingBBox null>>setpagedevice"
-*PageRegion w144h288/2.00x4.00": "<</PageSize[144 288]/ImagingBBox null>>setpagedevice"
-*PageRegion w144h396/2.00x5.50": "<</PageSize[144 396]/ImagingBBox null>>setpagedevice"
-*PageRegion w162h36/2.25x0.50": "<</PageSize[162 36]/ImagingBBox null>>setpagedevice"
-*PageRegion w162h90/2.25x1.25": "<</PageSize[162 90]/ImagingBBox null>>setpagedevice"
-*PageRegion w162h288/2.25x4.00": "<</PageSize[162 288]/ImagingBBox null>>setpagedevice"
-*PageRegion w162h396/2.25x5.50": "<</PageSize[162 396]/ImagingBBox null>>setpagedevice"
-*PageRegion w171h396/2.38x5.50": "<</PageSize[171 396]/ImagingBBox null>>setpagedevice"
-*PageRegion w180h72/2.50x1.00": "<</PageSize[180 72]/ImagingBBox null>>setpagedevice"
-*PageRegion w180h144/2.50x2.00": "<</PageSize[180 144]/ImagingBBox null>>setpagedevice"
-*PageRegion w198h90/2.75x1.25": "<</PageSize[198 90]/ImagingBBox null>>setpagedevice"
-*PageRegion w216h72/3.00x1.00": "<</PageSize[216 72]/ImagingBBox null>>setpagedevice"
-*PageRegion w216h90/3.00x1.25": "<</PageSize[216 90]/ImagingBBox null>>setpagedevice"
-*PageRegion w216h144/3.00x2.00": "<</PageSize[216 144]/ImagingBBox null>>setpagedevice"
-*PageRegion w216h216/3.00x3.00": "<</PageSize[216 216]/ImagingBBox null>>setpagedevice"
-*PageRegion w216h360/3.00x5.00": "<</PageSize[216 360]/ImagingBBox null>>setpagedevice"
-*PageRegion w234h144/3.25x2.00": "<</PageSize[234 144]/ImagingBBox null>>setpagedevice"
-*PageRegion w234h360/3.25x5.00": "<</PageSize[234 360]/ImagingBBox null>>setpagedevice"
-*PageRegion w234h396/3.25x5.50": "<</PageSize[234 396]/ImagingBBox null>>setpagedevice"
-*PageRegion w234h419/3.25x5.83": "<</PageSize[234 419]/ImagingBBox null>>setpagedevice"
-*PageRegion w234h563/3.25x7.83": "<</PageSize[234 563]/ImagingBBox null>>setpagedevice"
-*PageRegion w252h72/3.50x1.00": "<</PageSize[252 72]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h72/4.00x1.00": "<</PageSize[288 72]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h144/4.00x2.00": "<</PageSize[288 144]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h180/4.00x2.50": "<</PageSize[288 180]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h216/4.00x3.00": "<</PageSize[288 216]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h288/4.00x4.00": "<</PageSize[288 288]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h360/4.00x5.00": "<</PageSize[288 360]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h432/4.00x6.00": "<</PageSize[288 432]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h468/4.00x6.50": "<</PageSize[288 468]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h936/4.00x13.00": "<</PageSize[288 936]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageRegion
-*DefaultImageableArea: w288h360
-*ImageableArea w90h18/1.25x0.25": "0.00 0.00 90.00 18.00"
-*ImageableArea w90h162/1.25x2.25": "0.00 0.00 90.00 162.00"
-*ImageableArea w108h18/1.50x0.25": "0.00 0.00 108.00 18.00"
-*ImageableArea w108h36/1.50x0.50": "0.00 0.00 108.00 36.00"
-*ImageableArea w108h72/1.50x1.00": "0.00 0.00 108.00 72.00"
-*ImageableArea w108h144/1.50x2.00": "0.00 0.00 108.00 144.00"
-*ImageableArea w144h26/2.00x0.37": "0.00 0.00 144.00 26.00"
-*ImageableArea w144h36/2.00x0.50": "0.00 0.00 144.00 36.00"
-*ImageableArea w144h72/2.00x1.00": "0.00 0.00 144.00 72.00"
-*ImageableArea w144h90/2.00x1.25": "0.00 0.00 144.00 90.00"
-*ImageableArea w144h288/2.00x4.00": "0.00 0.00 144.00 288.00"
-*ImageableArea w144h396/2.00x5.50": "0.00 0.00 144.00 396.00"
-*ImageableArea w162h36/2.25x0.50": "0.00 0.00 162.00 36.00"
-*ImageableArea w162h90/2.25x1.25": "0.00 0.00 162.00 90.00"
-*ImageableArea w162h288/2.25x4.00": "0.00 0.00 162.00 288.00"
-*ImageableArea w162h396/2.25x5.50": "0.00 0.00 162.00 396.00"
-*ImageableArea w171h396/2.38x5.50": "0.00 0.00 171.00 396.00"
-*ImageableArea w180h72/2.50x1.00": "0.00 0.00 180.00 72.00"
-*ImageableArea w180h144/2.50x2.00": "0.00 0.00 180.00 144.00"
-*ImageableArea w198h90/2.75x1.25": "0.00 0.00 198.00 90.00"
-*ImageableArea w216h72/3.00x1.00": "0.00 0.00 216.00 72.00"
-*ImageableArea w216h90/3.00x1.25": "0.00 0.00 216.00 90.00"
-*ImageableArea w216h144/3.00x2.00": "0.00 0.00 216.00 144.00"
-*ImageableArea w216h216/3.00x3.00": "0.00 0.00 216.00 216.00"
-*ImageableArea w216h360/3.00x5.00": "0.00 0.00 216.00 360.00"
-*ImageableArea w234h144/3.25x2.00": "0.00 0.00 234.00 144.00"
-*ImageableArea w234h360/3.25x5.00": "0.00 0.00 234.00 360.00"
-*ImageableArea w234h396/3.25x5.50": "0.00 0.00 234.00 396.00"
-*ImageableArea w234h419/3.25x5.83": "0.00 0.00 234.00 419.00"
-*ImageableArea w234h563/3.25x7.83": "0.00 0.00 234.00 563.00"
-*ImageableArea w252h72/3.50x1.00": "0.00 0.00 252.00 72.00"
-*ImageableArea w288h72/4.00x1.00": "0.00 0.00 288.00 72.00"
-*ImageableArea w288h144/4.00x2.00": "0.00 0.00 288.00 144.00"
-*ImageableArea w288h180/4.00x2.50": "0.00 0.00 288.00 180.00"
-*ImageableArea w288h216/4.00x3.00": "0.00 0.00 288.00 216.00"
-*ImageableArea w288h288/4.00x4.00": "0.00 0.00 288.00 288.00"
-*ImageableArea w288h360/4.00x5.00": "0.00 0.00 288.00 360.00"
-*ImageableArea w288h432/4.00x6.00": "0.00 0.00 288.00 432.00"
-*ImageableArea w288h468/4.00x6.50": "0.00 0.00 288.00 468.00"
-*ImageableArea w288h936/4.00x13.00": "0.00 0.00 288.00 936.00"
-*DefaultPaperDimension: w288h360
-*PaperDimension w90h18/1.25x0.25": "90.00 18.00"
-*PaperDimension w90h162/1.25x2.25": "90.00 162.00"
-*PaperDimension w108h18/1.50x0.25": "108.00 18.00"
-*PaperDimension w108h36/1.50x0.50": "108.00 36.00"
-*PaperDimension w108h72/1.50x1.00": "108.00 72.00"
-*PaperDimension w108h144/1.50x2.00": "108.00 144.00"
-*PaperDimension w144h26/2.00x0.37": "144.00 26.00"
-*PaperDimension w144h36/2.00x0.50": "144.00 36.00"
-*PaperDimension w144h72/2.00x1.00": "144.00 72.00"
-*PaperDimension w144h90/2.00x1.25": "144.00 90.00"
-*PaperDimension w144h288/2.00x4.00": "144.00 288.00"
-*PaperDimension w144h396/2.00x5.50": "144.00 396.00"
-*PaperDimension w162h36/2.25x0.50": "162.00 36.00"
-*PaperDimension w162h90/2.25x1.25": "162.00 90.00"
-*PaperDimension w162h288/2.25x4.00": "162.00 288.00"
-*PaperDimension w162h396/2.25x5.50": "162.00 396.00"
-*PaperDimension w171h396/2.38x5.50": "171.00 396.00"
-*PaperDimension w180h72/2.50x1.00": "180.00 72.00"
-*PaperDimension w180h144/2.50x2.00": "180.00 144.00"
-*PaperDimension w198h90/2.75x1.25": "198.00 90.00"
-*PaperDimension w216h72/3.00x1.00": "216.00 72.00"
-*PaperDimension w216h90/3.00x1.25": "216.00 90.00"
-*PaperDimension w216h144/3.00x2.00": "216.00 144.00"
-*PaperDimension w216h216/3.00x3.00": "216.00 216.00"
-*PaperDimension w216h360/3.00x5.00": "216.00 360.00"
-*PaperDimension w234h144/3.25x2.00": "234.00 144.00"
-*PaperDimension w234h360/3.25x5.00": "234.00 360.00"
-*PaperDimension w234h396/3.25x5.50": "234.00 396.00"
-*PaperDimension w234h419/3.25x5.83": "234.00 419.00"
-*PaperDimension w234h563/3.25x7.83": "234.00 563.00"
-*PaperDimension w252h72/3.50x1.00": "252.00 72.00"
-*PaperDimension w288h72/4.00x1.00": "288.00 72.00"
-*PaperDimension w288h144/4.00x2.00": "288.00 144.00"
-*PaperDimension w288h180/4.00x2.50": "288.00 180.00"
-*PaperDimension w288h216/4.00x3.00": "288.00 216.00"
-*PaperDimension w288h288/4.00x4.00": "288.00 288.00"
-*PaperDimension w288h360/4.00x5.00": "288.00 360.00"
-*PaperDimension w288h432/4.00x6.00": "288.00 432.00"
-*PaperDimension w288h468/4.00x6.50": "288.00 468.00"
-*PaperDimension w288h936/4.00x13.00": "288.00 936.00"
-*MaxMediaWidth: "288.00"
-*MaxMediaHeight: "3600.00"
-*HWMargins: 0.00 0.00 0.00 0.00
-*CustomPageSize True: "pop pop pop <</PageSize[5 -2 roll]/ImagingBBox null>>setpagedevice"
-*ParamCustomPageSize Width: 1 points 36.00 288.00
-*ParamCustomPageSize Height: 2 points 36.00 3600.00
-*ParamCustomPageSize WidthOffset: 3 points 0 0
-*ParamCustomPageSize HeightOffset: 4 points 0 0
-*ParamCustomPageSize Orientation: 5 int 0 0
-*RequiresPageRegion All: True
-*OpenUI *Resolution: PickOne
-*OrderDependency: 10.0 AnySetup *Resolution
-*DefaultResolution: 203dpi
-*Resolution 203dpi: "<</HWResolution[203 203]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*Resolution 300dpi: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*Resolution 600dpi: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*CloseUI: *Resolution
-*OpenGroup: PrinterSettings/Printer Settings
-*OpenUI *Darkness: PickOne
-*OrderDependency: 20.0 AnySetup *Darkness
-*DefaultDarkness: -1
-*Darkness -1/Printer Default: "<</cupsCompression -1>>setpagedevice"
-*Darkness 1: "<</cupsCompression 4>>setpagedevice"
-*Darkness 2: "<</cupsCompression 7>>setpagedevice"
-*Darkness 3: "<</cupsCompression 10>>setpagedevice"
-*Darkness 4: "<</cupsCompression 14>>setpagedevice"
-*Darkness 5: "<</cupsCompression 17>>setpagedevice"
-*Darkness 6: "<</cupsCompression 20>>setpagedevice"
-*Darkness 7: "<</cupsCompression 24>>setpagedevice"
-*Darkness 8: "<</cupsCompression 27>>setpagedevice"
-*Darkness 9: "<</cupsCompression 30>>setpagedevice"
-*Darkness 10: "<</cupsCompression 34>>setpagedevice"
-*Darkness 11: "<</cupsCompression 37>>setpagedevice"
-*Darkness 12: "<</cupsCompression 40>>setpagedevice"
-*Darkness 13: "<</cupsCompression 44>>setpagedevice"
-*Darkness 14: "<</cupsCompression 47>>setpagedevice"
-*Darkness 15: "<</cupsCompression 50>>setpagedevice"
-*Darkness 16: "<</cupsCompression 54>>setpagedevice"
-*Darkness 17: "<</cupsCompression 57>>setpagedevice"
-*Darkness 18: "<</cupsCompression 60>>setpagedevice"
-*Darkness 19: "<</cupsCompression 64>>setpagedevice"
-*Darkness 20: "<</cupsCompression 67>>setpagedevice"
-*Darkness 21: "<</cupsCompression 70>>setpagedevice"
-*Darkness 22: "<</cupsCompression 74>>setpagedevice"
-*Darkness 23: "<</cupsCompression 77>>setpagedevice"
-*Darkness 24: "<</cupsCompression 80>>setpagedevice"
-*Darkness 25: "<</cupsCompression 84>>setpagedevice"
-*Darkness 26: "<</cupsCompression 87>>setpagedevice"
-*Darkness 27: "<</cupsCompression 90>>setpagedevice"
-*Darkness 28: "<</cupsCompression 94>>setpagedevice"
-*Darkness 29: "<</cupsCompression 97>>setpagedevice"
-*Darkness 30: "<</cupsCompression 100>>setpagedevice"
-*CloseUI: *Darkness
-*OpenUI *zePrintRate/Print Rate: PickOne
-*OrderDependency: 20.0 AnySetup *zePrintRate
-*DefaultzePrintRate: Default
-*zePrintRate Default/Printer Default: ""
-*zePrintRate 1/1 inch/sec.: ""
-*zePrintRate 1.5/1.5 inch/sec.: ""
-*zePrintRate 2/2 inches/sec.: ""
-*zePrintRate 2.5/2.5 inches/sec.: ""
-*CloseUI: *zePrintRate
-*CloseGroup: PrinterSettings
-*da.Translation Manufacturer/Zebra: ""
-*da.Translation ModelName/Zebra EPL1 Label Printer: ""
-*da.Translation ShortNickName/Zebra EPL1 Label Printer: ""
-*da.Translation NickName/Zebra EPL1 Label Printer, 1.4: ""
-*da.Translation PageSize/Media Size: ""
-*da.PageSize w90h18/1.25x0.25": ""
-*da.PageSize w90h162/1.25x2.25": ""
-*da.PageSize w108h18/1.50x0.25": ""
-*da.PageSize w108h36/1.50x0.50": ""
-*da.PageSize w108h72/1.50x1.00": ""
-*da.PageSize w108h144/1.50x2.00": ""
-*da.PageSize w144h26/2.00x0.37": ""
-*da.PageSize w144h36/2.00x0.50": ""
-*da.PageSize w144h72/2.00x1.00": ""
-*da.PageSize w144h90/2.00x1.25": ""
-*da.PageSize w144h288/2.00x4.00": ""
-*da.PageSize w144h396/2.00x5.50": ""
-*da.PageSize w162h36/2.25x0.50": ""
-*da.PageSize w162h90/2.25x1.25": ""
-*da.PageSize w162h288/2.25x4.00": ""
-*da.PageSize w162h396/2.25x5.50": ""
-*da.PageSize w171h396/2.38x5.50": ""
-*da.PageSize w180h72/2.50x1.00": ""
-*da.PageSize w180h144/2.50x2.00": ""
-*da.PageSize w198h90/2.75x1.25": ""
-*da.PageSize w216h72/3.00x1.00": ""
-*da.PageSize w216h90/3.00x1.25": ""
-*da.PageSize w216h144/3.00x2.00": ""
-*da.PageSize w216h216/3.00x3.00": ""
-*da.PageSize w216h360/3.00x5.00": ""
-*da.PageSize w234h144/3.25x2.00": ""
-*da.PageSize w234h360/3.25x5.00": ""
-*da.PageSize w234h396/3.25x5.50": ""
-*da.PageSize w234h419/3.25x5.83": ""
-*da.PageSize w234h563/3.25x7.83": ""
-*da.PageSize w252h72/3.50x1.00": ""
-*da.PageSize w288h72/4.00x1.00": ""
-*da.PageSize w288h144/4.00x2.00": ""
-*da.PageSize w288h180/4.00x2.50": ""
-*da.PageSize w288h216/4.00x3.00": ""
-*da.PageSize w288h288/4.00x4.00": ""
-*da.PageSize w288h360/4.00x5.00": ""
-*da.PageSize w288h432/4.00x6.00": ""
-*da.PageSize w288h468/4.00x6.50": ""
-*da.PageSize w288h936/4.00x13.00": ""
-*da.Translation Resolution/Resolution: ""
-*da.Resolution 203dpi/203dpi: ""
-*da.Resolution 300dpi/300dpi: ""
-*da.Resolution 600dpi/600dpi: ""
-*da.Translation PrinterSettings/Printer Settings: ""
-*da.Translation Darkness/Darkness: ""
-*da.Darkness -1/Printerstandard: ""
-*da.Darkness 1/1: ""
-*da.Darkness 2/2: ""
-*da.Darkness 3/3: ""
-*da.Darkness 4/4: ""
-*da.Darkness 5/5: ""
-*da.Darkness 6/6: ""
-*da.Darkness 7/7: ""
-*da.Darkness 8/8: ""
-*da.Darkness 9/9: ""
-*da.Darkness 10/10: ""
-*da.Darkness 11/11: ""
-*da.Darkness 12/12: ""
-*da.Darkness 13/13: ""
-*da.Darkness 14/14: ""
-*da.Darkness 15/15: ""
-*da.Darkness 16/16: ""
-*da.Darkness 17/17: ""
-*da.Darkness 18/18: ""
-*da.Darkness 19/19: ""
-*da.Darkness 20/20: ""
-*da.Darkness 21/21: ""
-*da.Darkness 22/22: ""
-*da.Darkness 23/23: ""
-*da.Darkness 24/24: ""
-*da.Darkness 25/25: ""
-*da.Darkness 26/26: ""
-*da.Darkness 27/27: ""
-*da.Darkness 28/28: ""
-*da.Darkness 29/29: ""
-*da.Darkness 30/30: ""
-*da.Translation zePrintRate/Print Rate: ""
-*da.zePrintRate Default/Printerstandard: ""
-*da.zePrintRate 1/1 inch/sec.: ""
-*da.zePrintRate 1.5/1.5 inch/sec.: ""
-*da.zePrintRate 2/2 inches/sec.: ""
-*da.zePrintRate 2.5/2.5 inches/sec.: ""
-*de.Translation Manufacturer/Zebra: ""
-*de.Translation ModelName/Zebra EPL1 Label Printer: ""
-*de.Translation ShortNickName/Zebra EPL1 Label Printer: ""
-*de.Translation NickName/Zebra EPL1 Label Printer, 1.4: ""
-*de.Translation PageSize/Media Size: ""
-*de.PageSize w90h18/1.25x0.25": ""
-*de.PageSize w90h162/1.25x2.25": ""
-*de.PageSize w108h18/1.50x0.25": ""
-*de.PageSize w108h36/1.50x0.50": ""
-*de.PageSize w108h72/1.50x1.00": ""
-*de.PageSize w108h144/1.50x2.00": ""
-*de.PageSize w144h26/2.00x0.37": ""
-*de.PageSize w144h36/2.00x0.50": ""
-*de.PageSize w144h72/2.00x1.00": ""
-*de.PageSize w144h90/2.00x1.25": ""
-*de.PageSize w144h288/2.00x4.00": ""
-*de.PageSize w144h396/2.00x5.50": ""
-*de.PageSize w162h36/2.25x0.50": ""
-*de.PageSize w162h90/2.25x1.25": ""
-*de.PageSize w162h288/2.25x4.00": ""
-*de.PageSize w162h396/2.25x5.50": ""
-*de.PageSize w171h396/2.38x5.50": ""
-*de.PageSize w180h72/2.50x1.00": ""
-*de.PageSize w180h144/2.50x2.00": ""
-*de.PageSize w198h90/2.75x1.25": ""
-*de.PageSize w216h72/3.00x1.00": ""
-*de.PageSize w216h90/3.00x1.25": ""
-*de.PageSize w216h144/3.00x2.00": ""
-*de.PageSize w216h216/3.00x3.00": ""
-*de.PageSize w216h360/3.00x5.00": ""
-*de.PageSize w234h144/3.25x2.00": ""
-*de.PageSize w234h360/3.25x5.00": ""
-*de.PageSize w234h396/3.25x5.50": ""
-*de.PageSize w234h419/3.25x5.83": ""
-*de.PageSize w234h563/3.25x7.83": ""
-*de.PageSize w252h72/3.50x1.00": ""
-*de.PageSize w288h72/4.00x1.00": ""
-*de.PageSize w288h144/4.00x2.00": ""
-*de.PageSize w288h180/4.00x2.50": ""
-*de.PageSize w288h216/4.00x3.00": ""
-*de.PageSize w288h288/4.00x4.00": ""
-*de.PageSize w288h360/4.00x5.00": ""
-*de.PageSize w288h432/4.00x6.00": ""
-*de.PageSize w288h468/4.00x6.50": ""
-*de.PageSize w288h936/4.00x13.00": ""
-*de.Translation Resolution/Resolution: ""
-*de.Resolution 203dpi/203dpi: ""
-*de.Resolution 300dpi/300dpi: ""
-*de.Resolution 600dpi/600dpi: ""
-*de.Translation PrinterSettings/Printer Settings: ""
-*de.Translation Darkness/Darkness: ""
-*de.Darkness -1/Druckerstandard: ""
-*de.Darkness 1/1: ""
-*de.Darkness 2/2: ""
-*de.Darkness 3/3: ""
-*de.Darkness 4/4: ""
-*de.Darkness 5/5: ""
-*de.Darkness 6/6: ""
-*de.Darkness 7/7: ""
-*de.Darkness 8/8: ""
-*de.Darkness 9/9: ""
-*de.Darkness 10/10: ""
-*de.Darkness 11/11: ""
-*de.Darkness 12/12: ""
-*de.Darkness 13/13: ""
-*de.Darkness 14/14: ""
-*de.Darkness 15/15: ""
-*de.Darkness 16/16: ""
-*de.Darkness 17/17: ""
-*de.Darkness 18/18: ""
-*de.Darkness 19/19: ""
-*de.Darkness 20/20: ""
-*de.Darkness 21/21: ""
-*de.Darkness 22/22: ""
-*de.Darkness 23/23: ""
-*de.Darkness 24/24: ""
-*de.Darkness 25/25: ""
-*de.Darkness 26/26: ""
-*de.Darkness 27/27: ""
-*de.Darkness 28/28: ""
-*de.Darkness 29/29: ""
-*de.Darkness 30/30: ""
-*de.Translation zePrintRate/Print Rate: ""
-*de.zePrintRate Default/Druckerstandard: ""
-*de.zePrintRate 1/1 inch/sec.: ""
-*de.zePrintRate 1.5/1.5 inch/sec.: ""
-*de.zePrintRate 2/2 inches/sec.: ""
-*de.zePrintRate 2.5/2.5 inches/sec.: ""
-*es.Translation Manufacturer/Zebra: ""
-*es.Translation ModelName/Zebra EPL1 Label Printer: ""
-*es.Translation ShortNickName/Zebra EPL1 Label Printer: ""
-*es.Translation NickName/Zebra EPL1 Label Printer, 1.4: ""
-*es.Translation PageSize/Media Size: ""
-*es.PageSize w90h18/1.25x0.25": ""
-*es.PageSize w90h162/1.25x2.25": ""
-*es.PageSize w108h18/1.50x0.25": ""
-*es.PageSize w108h36/1.50x0.50": ""
-*es.PageSize w108h72/1.50x1.00": ""
-*es.PageSize w108h144/1.50x2.00": ""
-*es.PageSize w144h26/2.00x0.37": ""
-*es.PageSize w144h36/2.00x0.50": ""
-*es.PageSize w144h72/2.00x1.00": ""
-*es.PageSize w144h90/2.00x1.25": ""
-*es.PageSize w144h288/2.00x4.00": ""
-*es.PageSize w144h396/2.00x5.50": ""
-*es.PageSize w162h36/2.25x0.50": ""
-*es.PageSize w162h90/2.25x1.25": ""
-*es.PageSize w162h288/2.25x4.00": ""
-*es.PageSize w162h396/2.25x5.50": ""
-*es.PageSize w171h396/2.38x5.50": ""
-*es.PageSize w180h72/2.50x1.00": ""
-*es.PageSize w180h144/2.50x2.00": ""
-*es.PageSize w198h90/2.75x1.25": ""
-*es.PageSize w216h72/3.00x1.00": ""
-*es.PageSize w216h90/3.00x1.25": ""
-*es.PageSize w216h144/3.00x2.00": ""
-*es.PageSize w216h216/3.00x3.00": ""
-*es.PageSize w216h360/3.00x5.00": ""
-*es.PageSize w234h144/3.25x2.00": ""
-*es.PageSize w234h360/3.25x5.00": ""
-*es.PageSize w234h396/3.25x5.50": ""
-*es.PageSize w234h419/3.25x5.83": ""
-*es.PageSize w234h563/3.25x7.83": ""
-*es.PageSize w252h72/3.50x1.00": ""
-*es.PageSize w288h72/4.00x1.00": ""
-*es.PageSize w288h144/4.00x2.00": ""
-*es.PageSize w288h180/4.00x2.50": ""
-*es.PageSize w288h216/4.00x3.00": ""
-*es.PageSize w288h288/4.00x4.00": ""
-*es.PageSize w288h360/4.00x5.00": ""
-*es.PageSize w288h432/4.00x6.00": ""
-*es.PageSize w288h468/4.00x6.50": ""
-*es.PageSize w288h936/4.00x13.00": ""
-*es.Translation Resolution/Resolution: ""
-*es.Resolution 203dpi/203dpi: ""
-*es.Resolution 300dpi/300dpi: ""
-*es.Resolution 600dpi/600dpi: ""
-*es.Translation PrinterSettings/Printer Settings: ""
-*es.Translation Darkness/Darkness: ""
-*es.Darkness -1/Impresora por defecto: ""
-*es.Darkness 1/1: ""
-*es.Darkness 2/2: ""
-*es.Darkness 3/3: ""
-*es.Darkness 4/4: ""
-*es.Darkness 5/5: ""
-*es.Darkness 6/6: ""
-*es.Darkness 7/7: ""
-*es.Darkness 8/8: ""
-*es.Darkness 9/9: ""
-*es.Darkness 10/10: ""
-*es.Darkness 11/11: ""
-*es.Darkness 12/12: ""
-*es.Darkness 13/13: ""
-*es.Darkness 14/14: ""
-*es.Darkness 15/15: ""
-*es.Darkness 16/16: ""
-*es.Darkness 17/17: ""
-*es.Darkness 18/18: ""
-*es.Darkness 19/19: ""
-*es.Darkness 20/20: ""
-*es.Darkness 21/21: ""
-*es.Darkness 22/22: ""
-*es.Darkness 23/23: ""
-*es.Darkness 24/24: ""
-*es.Darkness 25/25: ""
-*es.Darkness 26/26: ""
-*es.Darkness 27/27: ""
-*es.Darkness 28/28: ""
-*es.Darkness 29/29: ""
-*es.Darkness 30/30: ""
-*es.Translation zePrintRate/Print Rate: ""
-*es.zePrintRate Default/Impresora por defecto: ""
-*es.zePrintRate 1/1 inch/sec.: ""
-*es.zePrintRate 1.5/1.5 inch/sec.: ""
-*es.zePrintRate 2/2 inches/sec.: ""
-*es.zePrintRate 2.5/2.5 inches/sec.: ""
-*fi.Translation Manufacturer/Zebra: ""
-*fi.Translation ModelName/Zebra EPL1 Label Printer: ""
-*fi.Translation ShortNickName/Zebra EPL1 Label Printer: ""
-*fi.Translation NickName/Zebra EPL1 Label Printer, 1.4: ""
-*fi.Translation PageSize/Media Size: ""
-*fi.PageSize w90h18/1.25x0.25": ""
-*fi.PageSize w90h162/1.25x2.25": ""
-*fi.PageSize w108h18/1.50x0.25": ""
-*fi.PageSize w108h36/1.50x0.50": ""
-*fi.PageSize w108h72/1.50x1.00": ""
-*fi.PageSize w108h144/1.50x2.00": ""
-*fi.PageSize w144h26/2.00x0.37": ""
-*fi.PageSize w144h36/2.00x0.50": ""
-*fi.PageSize w144h72/2.00x1.00": ""
-*fi.PageSize w144h90/2.00x1.25": ""
-*fi.PageSize w144h288/2.00x4.00": ""
-*fi.PageSize w144h396/2.00x5.50": ""
-*fi.PageSize w162h36/2.25x0.50": ""
-*fi.PageSize w162h90/2.25x1.25": ""
-*fi.PageSize w162h288/2.25x4.00": ""
-*fi.PageSize w162h396/2.25x5.50": ""
-*fi.PageSize w171h396/2.38x5.50": ""
-*fi.PageSize w180h72/2.50x1.00": ""
-*fi.PageSize w180h144/2.50x2.00": ""
-*fi.PageSize w198h90/2.75x1.25": ""
-*fi.PageSize w216h72/3.00x1.00": ""
-*fi.PageSize w216h90/3.00x1.25": ""
-*fi.PageSize w216h144/3.00x2.00": ""
-*fi.PageSize w216h216/3.00x3.00": ""
-*fi.PageSize w216h360/3.00x5.00": ""
-*fi.PageSize w234h144/3.25x2.00": ""
-*fi.PageSize w234h360/3.25x5.00": ""
-*fi.PageSize w234h396/3.25x5.50": ""
-*fi.PageSize w234h419/3.25x5.83": ""
-*fi.PageSize w234h563/3.25x7.83": ""
-*fi.PageSize w252h72/3.50x1.00": ""
-*fi.PageSize w288h72/4.00x1.00": ""
-*fi.PageSize w288h144/4.00x2.00": ""
-*fi.PageSize w288h180/4.00x2.50": ""
-*fi.PageSize w288h216/4.00x3.00": ""
-*fi.PageSize w288h288/4.00x4.00": ""
-*fi.PageSize w288h360/4.00x5.00": ""
-*fi.PageSize w288h432/4.00x6.00": ""
-*fi.PageSize w288h468/4.00x6.50": ""
-*fi.PageSize w288h936/4.00x13.00": ""
-*fi.Translation Resolution/Resolution: ""
-*fi.Resolution 203dpi/203dpi: ""
-*fi.Resolution 300dpi/300dpi: ""
-*fi.Resolution 600dpi/600dpi: ""
-*fi.Translation PrinterSettings/Printer Settings: ""
-*fi.Translation Darkness/Darkness: ""
-*fi.Darkness -1/Nopea: ""
-*fi.Darkness 1/1: ""
-*fi.Darkness 2/2: ""
-*fi.Darkness 3/3: ""
-*fi.Darkness 4/4: ""
-*fi.Darkness 5/5: ""
-*fi.Darkness 6/6: ""
-*fi.Darkness 7/7: ""
-*fi.Darkness 8/8: ""
-*fi.Darkness 9/9: ""
-*fi.Darkness 10/10: ""
-*fi.Darkness 11/11: ""
-*fi.Darkness 12/12: ""
-*fi.Darkness 13/13: ""
-*fi.Darkness 14/14: ""
-*fi.Darkness 15/15: ""
-*fi.Darkness 16/16: ""
-*fi.Darkness 17/17: ""
-*fi.Darkness 18/18: ""
-*fi.Darkness 19/19: ""
-*fi.Darkness 20/20: ""
-*fi.Darkness 21/21: ""
-*fi.Darkness 22/22: ""
-*fi.Darkness 23/23: ""
-*fi.Darkness 24/24: ""
-*fi.Darkness 25/25: ""
-*fi.Darkness 26/26: ""
-*fi.Darkness 27/27: ""
-*fi.Darkness 28/28: ""
-*fi.Darkness 29/29: ""
-*fi.Darkness 30/30: ""
-*fi.Translation zePrintRate/Print Rate: ""
-*fi.zePrintRate Default/Nopea: ""
-*fi.zePrintRate 1/1 inch/sec.: ""
-*fi.zePrintRate 1.5/1.5 inch/sec.: ""
-*fi.zePrintRate 2/2 inches/sec.: ""
-*fi.zePrintRate 2.5/2.5 inches/sec.: ""
-*fr.Translation Manufacturer/Zebra: ""
-*fr.Translation ModelName/Zebra EPL1 Label Printer: ""
-*fr.Translation ShortNickName/Zebra EPL1 Label Printer: ""
-*fr.Translation NickName/Zebra EPL1 Label Printer, 1.4: ""
-*fr.Translation PageSize/Media Size: ""
-*fr.PageSize w90h18/1.25x0.25": ""
-*fr.PageSize w90h162/1.25x2.25": ""
-*fr.PageSize w108h18/1.50x0.25": ""
-*fr.PageSize w108h36/1.50x0.50": ""
-*fr.PageSize w108h72/1.50x1.00": ""
-*fr.PageSize w108h144/1.50x2.00": ""
-*fr.PageSize w144h26/2.00x0.37": ""
-*fr.PageSize w144h36/2.00x0.50": ""
-*fr.PageSize w144h72/2.00x1.00": ""
-*fr.PageSize w144h90/2.00x1.25": ""
-*fr.PageSize w144h288/2.00x4.00": ""
-*fr.PageSize w144h396/2.00x5.50": ""
-*fr.PageSize w162h36/2.25x0.50": ""
-*fr.PageSize w162h90/2.25x1.25": ""
-*fr.PageSize w162h288/2.25x4.00": ""
-*fr.PageSize w162h396/2.25x5.50": ""
-*fr.PageSize w171h396/2.38x5.50": ""
-*fr.PageSize w180h72/2.50x1.00": ""
-*fr.PageSize w180h144/2.50x2.00": ""
-*fr.PageSize w198h90/2.75x1.25": ""
-*fr.PageSize w216h72/3.00x1.00": ""
-*fr.PageSize w216h90/3.00x1.25": ""
-*fr.PageSize w216h144/3.00x2.00": ""
-*fr.PageSize w216h216/3.00x3.00": ""
-*fr.PageSize w216h360/3.00x5.00": ""
-*fr.PageSize w234h144/3.25x2.00": ""
-*fr.PageSize w234h360/3.25x5.00": ""
-*fr.PageSize w234h396/3.25x5.50": ""
-*fr.PageSize w234h419/3.25x5.83": ""
-*fr.PageSize w234h563/3.25x7.83": ""
-*fr.PageSize w252h72/3.50x1.00": ""
-*fr.PageSize w288h72/4.00x1.00": ""
-*fr.PageSize w288h144/4.00x2.00": ""
-*fr.PageSize w288h180/4.00x2.50": ""
-*fr.PageSize w288h216/4.00x3.00": ""
-*fr.PageSize w288h288/4.00x4.00": ""
-*fr.PageSize w288h360/4.00x5.00": ""
-*fr.PageSize w288h432/4.00x6.00": ""
-*fr.PageSize w288h468/4.00x6.50": ""
-*fr.PageSize w288h936/4.00x13.00": ""
-*fr.Translation Resolution/Resolution: ""
-*fr.Resolution 203dpi/203dpi: ""
-*fr.Resolution 300dpi/300dpi: ""
-*fr.Resolution 600dpi/600dpi: ""
-*fr.Translation PrinterSettings/Printer Settings: ""
-*fr.Translation Darkness/Darkness: ""
-*fr.Darkness -1/Imprimante par défaut: ""
-*fr.Darkness 1/1: ""
-*fr.Darkness 2/2: ""
-*fr.Darkness 3/3: ""
-*fr.Darkness 4/4: ""
-*fr.Darkness 5/5: ""
-*fr.Darkness 6/6: ""
-*fr.Darkness 7/7: ""
-*fr.Darkness 8/8: ""
-*fr.Darkness 9/9: ""
-*fr.Darkness 10/10: ""
-*fr.Darkness 11/11: ""
-*fr.Darkness 12/12: ""
-*fr.Darkness 13/13: ""
-*fr.Darkness 14/14: ""
-*fr.Darkness 15/15: ""
-*fr.Darkness 16/16: ""
-*fr.Darkness 17/17: ""
-*fr.Darkness 18/18: ""
-*fr.Darkness 19/19: ""
-*fr.Darkness 20/20: ""
-*fr.Darkness 21/21: ""
-*fr.Darkness 22/22: ""
-*fr.Darkness 23/23: ""
-*fr.Darkness 24/24: ""
-*fr.Darkness 25/25: ""
-*fr.Darkness 26/26: ""
-*fr.Darkness 27/27: ""
-*fr.Darkness 28/28: ""
-*fr.Darkness 29/29: ""
-*fr.Darkness 30/30: ""
-*fr.Translation zePrintRate/Print Rate: ""
-*fr.zePrintRate Default/Imprimante par défaut: ""
-*fr.zePrintRate 1/1 inch/sec.: ""
-*fr.zePrintRate 1.5/1.5 inch/sec.: ""
-*fr.zePrintRate 2/2 inches/sec.: ""
-*fr.zePrintRate 2.5/2.5 inches/sec.: ""
-*it.Translation Manufacturer/Zebra: ""
-*it.Translation ModelName/Zebra EPL1 Label Printer: ""
-*it.Translation ShortNickName/Zebra EPL1 Label Printer: ""
-*it.Translation NickName/Zebra EPL1 Label Printer, 1.4: ""
-*it.Translation PageSize/Media Size: ""
-*it.PageSize w90h18/1.25x0.25": ""
-*it.PageSize w90h162/1.25x2.25": ""
-*it.PageSize w108h18/1.50x0.25": ""
-*it.PageSize w108h36/1.50x0.50": ""
-*it.PageSize w108h72/1.50x1.00": ""
-*it.PageSize w108h144/1.50x2.00": ""
-*it.PageSize w144h26/2.00x0.37": ""
-*it.PageSize w144h36/2.00x0.50": ""
-*it.PageSize w144h72/2.00x1.00": ""
-*it.PageSize w144h90/2.00x1.25": ""
-*it.PageSize w144h288/2.00x4.00": ""
-*it.PageSize w144h396/2.00x5.50": ""
-*it.PageSize w162h36/2.25x0.50": ""
-*it.PageSize w162h90/2.25x1.25": ""
-*it.PageSize w162h288/2.25x4.00": ""
-*it.PageSize w162h396/2.25x5.50": ""
-*it.PageSize w171h396/2.38x5.50": ""
-*it.PageSize w180h72/2.50x1.00": ""
-*it.PageSize w180h144/2.50x2.00": ""
-*it.PageSize w198h90/2.75x1.25": ""
-*it.PageSize w216h72/3.00x1.00": ""
-*it.PageSize w216h90/3.00x1.25": ""
-*it.PageSize w216h144/3.00x2.00": ""
-*it.PageSize w216h216/3.00x3.00": ""
-*it.PageSize w216h360/3.00x5.00": ""
-*it.PageSize w234h144/3.25x2.00": ""
-*it.PageSize w234h360/3.25x5.00": ""
-*it.PageSize w234h396/3.25x5.50": ""
-*it.PageSize w234h419/3.25x5.83": ""
-*it.PageSize w234h563/3.25x7.83": ""
-*it.PageSize w252h72/3.50x1.00": ""
-*it.PageSize w288h72/4.00x1.00": ""
-*it.PageSize w288h144/4.00x2.00": ""
-*it.PageSize w288h180/4.00x2.50": ""
-*it.PageSize w288h216/4.00x3.00": ""
-*it.PageSize w288h288/4.00x4.00": ""
-*it.PageSize w288h360/4.00x5.00": ""
-*it.PageSize w288h432/4.00x6.00": ""
-*it.PageSize w288h468/4.00x6.50": ""
-*it.PageSize w288h936/4.00x13.00": ""
-*it.Translation Resolution/Resolution: ""
-*it.Resolution 203dpi/203dpi: ""
-*it.Resolution 300dpi/300dpi: ""
-*it.Resolution 600dpi/600dpi: ""
-*it.Translation PrinterSettings/Printer Settings: ""
-*it.Translation Darkness/Darkness: ""
-*it.Darkness -1/Impostazioni predefinite stampante: ""
-*it.Darkness 1/1: ""
-*it.Darkness 2/2: ""
-*it.Darkness 3/3: ""
-*it.Darkness 4/4: ""
-*it.Darkness 5/5: ""
-*it.Darkness 6/6: ""
-*it.Darkness 7/7: ""
-*it.Darkness 8/8: ""
-*it.Darkness 9/9: ""
-*it.Darkness 10/10: ""
-*it.Darkness 11/11: ""
-*it.Darkness 12/12: ""
-*it.Darkness 13/13: ""
-*it.Darkness 14/14: ""
-*it.Darkness 15/15: ""
-*it.Darkness 16/16: ""
-*it.Darkness 17/17: ""
-*it.Darkness 18/18: ""
-*it.Darkness 19/19: ""
-*it.Darkness 20/20: ""
-*it.Darkness 21/21: ""
-*it.Darkness 22/22: ""
-*it.Darkness 23/23: ""
-*it.Darkness 24/24: ""
-*it.Darkness 25/25: ""
-*it.Darkness 26/26: ""
-*it.Darkness 27/27: ""
-*it.Darkness 28/28: ""
-*it.Darkness 29/29: ""
-*it.Darkness 30/30: ""
-*it.Translation zePrintRate/Print Rate: ""
-*it.zePrintRate Default/Impostazioni predefinite stampante: ""
-*it.zePrintRate 1/1 inch/sec.: ""
-*it.zePrintRate 1.5/1.5 inch/sec.: ""
-*it.zePrintRate 2/2 inches/sec.: ""
-*it.zePrintRate 2.5/2.5 inches/sec.: ""
-*ja.Translation Manufacturer/Zebra: ""
-*ja.Translation ModelName/Zebra EPL1 Label Printer: ""
-*ja.Translation ShortNickName/Zebra EPL1 Label Printer: ""
-*ja.Translation NickName/Zebra EPL1 Label Printer, 1.4: ""
-*ja.Translation PageSize/Media Size: ""
-*ja.PageSize w90h18/1.25x0.25": ""
-*ja.PageSize w90h162/1.25x2.25": ""
-*ja.PageSize w108h18/1.50x0.25": ""
-*ja.PageSize w108h36/1.50x0.50": ""
-*ja.PageSize w108h72/1.50x1.00": ""
-*ja.PageSize w108h144/1.50x2.00": ""
-*ja.PageSize w144h26/2.00x0.37": ""
-*ja.PageSize w144h36/2.00x0.50": ""
-*ja.PageSize w144h72/2.00x1.00": ""
-*ja.PageSize w144h90/2.00x1.25": ""
-*ja.PageSize w144h288/2.00x4.00": ""
-*ja.PageSize w144h396/2.00x5.50": ""
-*ja.PageSize w162h36/2.25x0.50": ""
-*ja.PageSize w162h90/2.25x1.25": ""
-*ja.PageSize w162h288/2.25x4.00": ""
-*ja.PageSize w162h396/2.25x5.50": ""
-*ja.PageSize w171h396/2.38x5.50": ""
-*ja.PageSize w180h72/2.50x1.00": ""
-*ja.PageSize w180h144/2.50x2.00": ""
-*ja.PageSize w198h90/2.75x1.25": ""
-*ja.PageSize w216h72/3.00x1.00": ""
-*ja.PageSize w216h90/3.00x1.25": ""
-*ja.PageSize w216h144/3.00x2.00": ""
-*ja.PageSize w216h216/3.00x3.00": ""
-*ja.PageSize w216h360/3.00x5.00": ""
-*ja.PageSize w234h144/3.25x2.00": ""
-*ja.PageSize w234h360/3.25x5.00": ""
-*ja.PageSize w234h396/3.25x5.50": ""
-*ja.PageSize w234h419/3.25x5.83": ""
-*ja.PageSize w234h563/3.25x7.83": ""
-*ja.PageSize w252h72/3.50x1.00": ""
-*ja.PageSize w288h72/4.00x1.00": ""
-*ja.PageSize w288h144/4.00x2.00": ""
-*ja.PageSize w288h180/4.00x2.50": ""
-*ja.PageSize w288h216/4.00x3.00": ""
-*ja.PageSize w288h288/4.00x4.00": ""
-*ja.PageSize w288h360/4.00x5.00": ""
-*ja.PageSize w288h432/4.00x6.00": ""
-*ja.PageSize w288h468/4.00x6.50": ""
-*ja.PageSize w288h936/4.00x13.00": ""
-*ja.Translation Resolution/Resolution: ""
-*ja.Resolution 203dpi/203dpi: ""
-*ja.Resolution 300dpi/300dpi: ""
-*ja.Resolution 600dpi/600dpi: ""
-*ja.Translation PrinterSettings/Printer Settings: ""
-*ja.Translation Darkness/Darkness: ""
-*ja.Darkness -1/システムデフォルト: ""
-*ja.Darkness 1/1: ""
-*ja.Darkness 2/2: ""
-*ja.Darkness 3/3: ""
-*ja.Darkness 4/4: ""
-*ja.Darkness 5/5: ""
-*ja.Darkness 6/6: ""
-*ja.Darkness 7/7: ""
-*ja.Darkness 8/8: ""
-*ja.Darkness 9/9: ""
-*ja.Darkness 10/10: ""
-*ja.Darkness 11/11: ""
-*ja.Darkness 12/12: ""
-*ja.Darkness 13/13: ""
-*ja.Darkness 14/14: ""
-*ja.Darkness 15/15: ""
-*ja.Darkness 16/16: ""
-*ja.Darkness 17/17: ""
-*ja.Darkness 18/18: ""
-*ja.Darkness 19/19: ""
-*ja.Darkness 20/20: ""
-*ja.Darkness 21/21: ""
-*ja.Darkness 22/22: ""
-*ja.Darkness 23/23: ""
-*ja.Darkness 24/24: ""
-*ja.Darkness 25/25: ""
-*ja.Darkness 26/26: ""
-*ja.Darkness 27/27: ""
-*ja.Darkness 28/28: ""
-*ja.Darkness 29/29: ""
-*ja.Darkness 30/30: ""
-*ja.Translation zePrintRate/Print Rate: ""
-*ja.zePrintRate Default/システムデフォルト: ""
-*ja.zePrintRate 1/1 inch/sec.: ""
-*ja.zePrintRate 1.5/1.5 inch/sec.: ""
-*ja.zePrintRate 2/2 inches/sec.: ""
-*ja.zePrintRate 2.5/2.5 inches/sec.: ""
-*ko.Translation Manufacturer/Zebra: ""
-*ko.Translation ModelName/Zebra EPL1 Label Printer: ""
-*ko.Translation ShortNickName/Zebra EPL1 Label Printer: ""
-*ko.Translation NickName/Zebra EPL1 Label Printer, 1.4: ""
-*ko.Translation PageSize/Page Size: ""
-*ko.PageSize w90h18/1.25x0.25": ""
-*ko.PageSize w90h162/1.25x2.25": ""
-*ko.PageSize w108h18/1.50x0.25": ""
-*ko.PageSize w108h36/1.50x0.50": ""
-*ko.PageSize w108h72/1.50x1.00": ""
-*ko.PageSize w108h144/1.50x2.00": ""
-*ko.PageSize w144h26/2.00x0.37": ""
-*ko.PageSize w144h36/2.00x0.50": ""
-*ko.PageSize w144h72/2.00x1.00": ""
-*ko.PageSize w144h90/2.00x1.25": ""
-*ko.PageSize w144h288/2.00x4.00": ""
-*ko.PageSize w144h396/2.00x5.50": ""
-*ko.PageSize w162h36/2.25x0.50": ""
-*ko.PageSize w162h90/2.25x1.25": ""
-*ko.PageSize w162h288/2.25x4.00": ""
-*ko.PageSize w162h396/2.25x5.50": ""
-*ko.PageSize w171h396/2.38x5.50": ""
-*ko.PageSize w180h72/2.50x1.00": ""
-*ko.PageSize w180h144/2.50x2.00": ""
-*ko.PageSize w198h90/2.75x1.25": ""
-*ko.PageSize w216h72/3.00x1.00": ""
-*ko.PageSize w216h90/3.00x1.25": ""
-*ko.PageSize w216h144/3.00x2.00": ""
-*ko.PageSize w216h216/3.00x3.00": ""
-*ko.PageSize w216h360/3.00x5.00": ""
-*ko.PageSize w234h144/3.25x2.00": ""
-*ko.PageSize w234h360/3.25x5.00": ""
-*ko.PageSize w234h396/3.25x5.50": ""
-*ko.PageSize w234h419/3.25x5.83": ""
-*ko.PageSize w234h563/3.25x7.83": ""
-*ko.PageSize w252h72/3.50x1.00": ""
-*ko.PageSize w288h72/4.00x1.00": ""
-*ko.PageSize w288h144/4.00x2.00": ""
-*ko.PageSize w288h180/4.00x2.50": ""
-*ko.PageSize w288h216/4.00x3.00": ""
-*ko.PageSize w288h288/4.00x4.00": ""
-*ko.PageSize w288h360/4.00x5.00": ""
-*ko.PageSize w288h432/4.00x6.00": ""
-*ko.PageSize w288h468/4.00x6.50": ""
-*ko.PageSize w288h936/4.00x13.00": ""
-*ko.Translation Resolution/Resolution: ""
-*ko.Resolution 203dpi/203dpi: ""
-*ko.Resolution 300dpi/300dpi: ""
-*ko.Resolution 600dpi/600dpi: ""
-*ko.Translation PrinterSettings/Printer Settings: ""
-*ko.Translation Darkness/Darkness: ""
-*ko.Darkness -1/빠르게: ""
-*ko.Darkness 1/1: ""
-*ko.Darkness 2/2: ""
-*ko.Darkness 3/3: ""
-*ko.Darkness 4/4: ""
-*ko.Darkness 5/5: ""
-*ko.Darkness 6/6: ""
-*ko.Darkness 7/7: ""
-*ko.Darkness 8/8: ""
-*ko.Darkness 9/9: ""
-*ko.Darkness 10/10: ""
-*ko.Darkness 11/11: ""
-*ko.Darkness 12/12: ""
-*ko.Darkness 13/13: ""
-*ko.Darkness 14/14: ""
-*ko.Darkness 15/15: ""
-*ko.Darkness 16/16: ""
-*ko.Darkness 17/17: ""
-*ko.Darkness 18/18: ""
-*ko.Darkness 19/19: ""
-*ko.Darkness 20/20: ""
-*ko.Darkness 21/21: ""
-*ko.Darkness 22/22: ""
-*ko.Darkness 23/23: ""
-*ko.Darkness 24/24: ""
-*ko.Darkness 25/25: ""
-*ko.Darkness 26/26: ""
-*ko.Darkness 27/27: ""
-*ko.Darkness 28/28: ""
-*ko.Darkness 29/29: ""
-*ko.Darkness 30/30: ""
-*ko.Translation zePrintRate/Print Rate: ""
-*ko.zePrintRate Default/빠르게: ""
-*ko.zePrintRate 1/1 inch/sec.: ""
-*ko.zePrintRate 1.5/1.5 inch/sec.: ""
-*ko.zePrintRate 2/2 inches/sec.: ""
-*ko.zePrintRate 2.5/2.5 inches/sec.: ""
-*nl.Translation Manufacturer/Zebra: ""
-*nl.Translation ModelName/Zebra EPL1 Label Printer: ""
-*nl.Translation ShortNickName/Zebra EPL1 Label Printer: ""
-*nl.Translation NickName/Zebra EPL1 Label Printer, 1.4: ""
-*nl.Translation PageSize/Media Size: ""
-*nl.PageSize w90h18/1.25x0.25": ""
-*nl.PageSize w90h162/1.25x2.25": ""
-*nl.PageSize w108h18/1.50x0.25": ""
-*nl.PageSize w108h36/1.50x0.50": ""
-*nl.PageSize w108h72/1.50x1.00": ""
-*nl.PageSize w108h144/1.50x2.00": ""
-*nl.PageSize w144h26/2.00x0.37": ""
-*nl.PageSize w144h36/2.00x0.50": ""
-*nl.PageSize w144h72/2.00x1.00": ""
-*nl.PageSize w144h90/2.00x1.25": ""
-*nl.PageSize w144h288/2.00x4.00": ""
-*nl.PageSize w144h396/2.00x5.50": ""
-*nl.PageSize w162h36/2.25x0.50": ""
-*nl.PageSize w162h90/2.25x1.25": ""
-*nl.PageSize w162h288/2.25x4.00": ""
-*nl.PageSize w162h396/2.25x5.50": ""
-*nl.PageSize w171h396/2.38x5.50": ""
-*nl.PageSize w180h72/2.50x1.00": ""
-*nl.PageSize w180h144/2.50x2.00": ""
-*nl.PageSize w198h90/2.75x1.25": ""
-*nl.PageSize w216h72/3.00x1.00": ""
-*nl.PageSize w216h90/3.00x1.25": ""
-*nl.PageSize w216h144/3.00x2.00": ""
-*nl.PageSize w216h216/3.00x3.00": ""
-*nl.PageSize w216h360/3.00x5.00": ""
-*nl.PageSize w234h144/3.25x2.00": ""
-*nl.PageSize w234h360/3.25x5.00": ""
-*nl.PageSize w234h396/3.25x5.50": ""
-*nl.PageSize w234h419/3.25x5.83": ""
-*nl.PageSize w234h563/3.25x7.83": ""
-*nl.PageSize w252h72/3.50x1.00": ""
-*nl.PageSize w288h72/4.00x1.00": ""
-*nl.PageSize w288h144/4.00x2.00": ""
-*nl.PageSize w288h180/4.00x2.50": ""
-*nl.PageSize w288h216/4.00x3.00": ""
-*nl.PageSize w288h288/4.00x4.00": ""
-*nl.PageSize w288h360/4.00x5.00": ""
-*nl.PageSize w288h432/4.00x6.00": ""
-*nl.PageSize w288h468/4.00x6.50": ""
-*nl.PageSize w288h936/4.00x13.00": ""
-*nl.Translation Resolution/Resolution: ""
-*nl.Resolution 203dpi/203dpi: ""
-*nl.Resolution 300dpi/300dpi: ""
-*nl.Resolution 600dpi/600dpi: ""
-*nl.Translation PrinterSettings/Printer Settings: ""
-*nl.Translation Darkness/Darkness: ""
-*nl.Darkness -1/Printerstandaard: ""
-*nl.Darkness 1/1: ""
-*nl.Darkness 2/2: ""
-*nl.Darkness 3/3: ""
-*nl.Darkness 4/4: ""
-*nl.Darkness 5/5: ""
-*nl.Darkness 6/6: ""
-*nl.Darkness 7/7: ""
-*nl.Darkness 8/8: ""
-*nl.Darkness 9/9: ""
-*nl.Darkness 10/10: ""
-*nl.Darkness 11/11: ""
-*nl.Darkness 12/12: ""
-*nl.Darkness 13/13: ""
-*nl.Darkness 14/14: ""
-*nl.Darkness 15/15: ""
-*nl.Darkness 16/16: ""
-*nl.Darkness 17/17: ""
-*nl.Darkness 18/18: ""
-*nl.Darkness 19/19: ""
-*nl.Darkness 20/20: ""
-*nl.Darkness 21/21: ""
-*nl.Darkness 22/22: ""
-*nl.Darkness 23/23: ""
-*nl.Darkness 24/24: ""
-*nl.Darkness 25/25: ""
-*nl.Darkness 26/26: ""
-*nl.Darkness 27/27: ""
-*nl.Darkness 28/28: ""
-*nl.Darkness 29/29: ""
-*nl.Darkness 30/30: ""
-*nl.Translation zePrintRate/Print Rate: ""
-*nl.zePrintRate Default/Printerstandaard: ""
-*nl.zePrintRate 1/1 inch/sec.: ""
-*nl.zePrintRate 1.5/1.5 inch/sec.: ""
-*nl.zePrintRate 2/2 inches/sec.: ""
-*nl.zePrintRate 2.5/2.5 inches/sec.: ""
-*no.Translation Manufacturer/Zebra: ""
-*no.Translation ModelName/Zebra EPL1 Label Printer: ""
-*no.Translation ShortNickName/Zebra EPL1 Label Printer: ""
-*no.Translation NickName/Zebra EPL1 Label Printer, 1.4: ""
-*no.Translation PageSize/Media Size: ""
-*no.PageSize w90h18/1.25x0.25": ""
-*no.PageSize w90h162/1.25x2.25": ""
-*no.PageSize w108h18/1.50x0.25": ""
-*no.PageSize w108h36/1.50x0.50": ""
-*no.PageSize w108h72/1.50x1.00": ""
-*no.PageSize w108h144/1.50x2.00": ""
-*no.PageSize w144h26/2.00x0.37": ""
-*no.PageSize w144h36/2.00x0.50": ""
-*no.PageSize w144h72/2.00x1.00": ""
-*no.PageSize w144h90/2.00x1.25": ""
-*no.PageSize w144h288/2.00x4.00": ""
-*no.PageSize w144h396/2.00x5.50": ""
-*no.PageSize w162h36/2.25x0.50": ""
-*no.PageSize w162h90/2.25x1.25": ""
-*no.PageSize w162h288/2.25x4.00": ""
-*no.PageSize w162h396/2.25x5.50": ""
-*no.PageSize w171h396/2.38x5.50": ""
-*no.PageSize w180h72/2.50x1.00": ""
-*no.PageSize w180h144/2.50x2.00": ""
-*no.PageSize w198h90/2.75x1.25": ""
-*no.PageSize w216h72/3.00x1.00": ""
-*no.PageSize w216h90/3.00x1.25": ""
-*no.PageSize w216h144/3.00x2.00": ""
-*no.PageSize w216h216/3.00x3.00": ""
-*no.PageSize w216h360/3.00x5.00": ""
-*no.PageSize w234h144/3.25x2.00": ""
-*no.PageSize w234h360/3.25x5.00": ""
-*no.PageSize w234h396/3.25x5.50": ""
-*no.PageSize w234h419/3.25x5.83": ""
-*no.PageSize w234h563/3.25x7.83": ""
-*no.PageSize w252h72/3.50x1.00": ""
-*no.PageSize w288h72/4.00x1.00": ""
-*no.PageSize w288h144/4.00x2.00": ""
-*no.PageSize w288h180/4.00x2.50": ""
-*no.PageSize w288h216/4.00x3.00": ""
-*no.PageSize w288h288/4.00x4.00": ""
-*no.PageSize w288h360/4.00x5.00": ""
-*no.PageSize w288h432/4.00x6.00": ""
-*no.PageSize w288h468/4.00x6.50": ""
-*no.PageSize w288h936/4.00x13.00": ""
-*no.Translation Resolution/Resolution: ""
-*no.Resolution 203dpi/203dpi: ""
-*no.Resolution 300dpi/300dpi: ""
-*no.Resolution 600dpi/600dpi: ""
-*no.Translation PrinterSettings/Printer Settings: ""
-*no.Translation Darkness/Darkness: ""
-*no.Darkness -1/Skriverstandard: ""
-*no.Darkness 1/1: ""
-*no.Darkness 2/2: ""
-*no.Darkness 3/3: ""
-*no.Darkness 4/4: ""
-*no.Darkness 5/5: ""
-*no.Darkness 6/6: ""
-*no.Darkness 7/7: ""
-*no.Darkness 8/8: ""
-*no.Darkness 9/9: ""
-*no.Darkness 10/10: ""
-*no.Darkness 11/11: ""
-*no.Darkness 12/12: ""
-*no.Darkness 13/13: ""
-*no.Darkness 14/14: ""
-*no.Darkness 15/15: ""
-*no.Darkness 16/16: ""
-*no.Darkness 17/17: ""
-*no.Darkness 18/18: ""
-*no.Darkness 19/19: ""
-*no.Darkness 20/20: ""
-*no.Darkness 21/21: ""
-*no.Darkness 22/22: ""
-*no.Darkness 23/23: ""
-*no.Darkness 24/24: ""
-*no.Darkness 25/25: ""
-*no.Darkness 26/26: ""
-*no.Darkness 27/27: ""
-*no.Darkness 28/28: ""
-*no.Darkness 29/29: ""
-*no.Darkness 30/30: ""
-*no.Translation zePrintRate/Print Rate: ""
-*no.zePrintRate Default/Skriverstandard: ""
-*no.zePrintRate 1/1 inch/sec.: ""
-*no.zePrintRate 1.5/1.5 inch/sec.: ""
-*no.zePrintRate 2/2 inches/sec.: ""
-*no.zePrintRate 2.5/2.5 inches/sec.: ""
-*pt.Translation Manufacturer/Zebra: ""
-*pt.Translation ModelName/Zebra EPL1 Label Printer: ""
-*pt.Translation ShortNickName/Zebra EPL1 Label Printer: ""
-*pt.Translation NickName/Zebra EPL1 Label Printer, 1.4: ""
-*pt.Translation PageSize/Media Size: ""
-*pt.PageSize w90h18/1.25x0.25": ""
-*pt.PageSize w90h162/1.25x2.25": ""
-*pt.PageSize w108h18/1.50x0.25": ""
-*pt.PageSize w108h36/1.50x0.50": ""
-*pt.PageSize w108h72/1.50x1.00": ""
-*pt.PageSize w108h144/1.50x2.00": ""
-*pt.PageSize w144h26/2.00x0.37": ""
-*pt.PageSize w144h36/2.00x0.50": ""
-*pt.PageSize w144h72/2.00x1.00": ""
-*pt.PageSize w144h90/2.00x1.25": ""
-*pt.PageSize w144h288/2.00x4.00": ""
-*pt.PageSize w144h396/2.00x5.50": ""
-*pt.PageSize w162h36/2.25x0.50": ""
-*pt.PageSize w162h90/2.25x1.25": ""
-*pt.PageSize w162h288/2.25x4.00": ""
-*pt.PageSize w162h396/2.25x5.50": ""
-*pt.PageSize w171h396/2.38x5.50": ""
-*pt.PageSize w180h72/2.50x1.00": ""
-*pt.PageSize w180h144/2.50x2.00": ""
-*pt.PageSize w198h90/2.75x1.25": ""
-*pt.PageSize w216h72/3.00x1.00": ""
-*pt.PageSize w216h90/3.00x1.25": ""
-*pt.PageSize w216h144/3.00x2.00": ""
-*pt.PageSize w216h216/3.00x3.00": ""
-*pt.PageSize w216h360/3.00x5.00": ""
-*pt.PageSize w234h144/3.25x2.00": ""
-*pt.PageSize w234h360/3.25x5.00": ""
-*pt.PageSize w234h396/3.25x5.50": ""
-*pt.PageSize w234h419/3.25x5.83": ""
-*pt.PageSize w234h563/3.25x7.83": ""
-*pt.PageSize w252h72/3.50x1.00": ""
-*pt.PageSize w288h72/4.00x1.00": ""
-*pt.PageSize w288h144/4.00x2.00": ""
-*pt.PageSize w288h180/4.00x2.50": ""
-*pt.PageSize w288h216/4.00x3.00": ""
-*pt.PageSize w288h288/4.00x4.00": ""
-*pt.PageSize w288h360/4.00x5.00": ""
-*pt.PageSize w288h432/4.00x6.00": ""
-*pt.PageSize w288h468/4.00x6.50": ""
-*pt.PageSize w288h936/4.00x13.00": ""
-*pt.Translation Resolution/Resolution: ""
-*pt.Resolution 203dpi/203dpi: ""
-*pt.Resolution 300dpi/300dpi: ""
-*pt.Resolution 600dpi/600dpi: ""
-*pt.Translation PrinterSettings/Printer Settings: ""
-*pt.Translation Darkness/Darkness: ""
-*pt.Darkness -1/Rápido: ""
-*pt.Darkness 1/1: ""
-*pt.Darkness 2/2: ""
-*pt.Darkness 3/3: ""
-*pt.Darkness 4/4: ""
-*pt.Darkness 5/5: ""
-*pt.Darkness 6/6: ""
-*pt.Darkness 7/7: ""
-*pt.Darkness 8/8: ""
-*pt.Darkness 9/9: ""
-*pt.Darkness 10/10: ""
-*pt.Darkness 11/11: ""
-*pt.Darkness 12/12: ""
-*pt.Darkness 13/13: ""
-*pt.Darkness 14/14: ""
-*pt.Darkness 15/15: ""
-*pt.Darkness 16/16: ""
-*pt.Darkness 17/17: ""
-*pt.Darkness 18/18: ""
-*pt.Darkness 19/19: ""
-*pt.Darkness 20/20: ""
-*pt.Darkness 21/21: ""
-*pt.Darkness 22/22: ""
-*pt.Darkness 23/23: ""
-*pt.Darkness 24/24: ""
-*pt.Darkness 25/25: ""
-*pt.Darkness 26/26: ""
-*pt.Darkness 27/27: ""
-*pt.Darkness 28/28: ""
-*pt.Darkness 29/29: ""
-*pt.Darkness 30/30: ""
-*pt.Translation zePrintRate/Print Rate: ""
-*pt.zePrintRate Default/Rápido: ""
-*pt.zePrintRate 1/1 inch/sec.: ""
-*pt.zePrintRate 1.5/1.5 inch/sec.: ""
-*pt.zePrintRate 2/2 inches/sec.: ""
-*pt.zePrintRate 2.5/2.5 inches/sec.: ""
-*pt_BR.Translation Manufacturer/Zebra: ""
-*pt_BR.Translation ModelName/Zebra EPL1 Label Printer: ""
-*pt_BR.Translation ShortNickName/Zebra EPL1 Label Printer: ""
-*pt_BR.Translation NickName/Zebra EPL1 Label Printer, 1.4: ""
-*pt_BR.Translation PageSize/Media Size: ""
-*pt_BR.PageSize w90h18/1.25x0.25": ""
-*pt_BR.PageSize w90h162/1.25x2.25": ""
-*pt_BR.PageSize w108h18/1.50x0.25": ""
-*pt_BR.PageSize w108h36/1.50x0.50": ""
-*pt_BR.PageSize w108h72/1.50x1.00": ""
-*pt_BR.PageSize w108h144/1.50x2.00": ""
-*pt_BR.PageSize w144h26/2.00x0.37": ""
-*pt_BR.PageSize w144h36/2.00x0.50": ""
-*pt_BR.PageSize w144h72/2.00x1.00": ""
-*pt_BR.PageSize w144h90/2.00x1.25": ""
-*pt_BR.PageSize w144h288/2.00x4.00": ""
-*pt_BR.PageSize w144h396/2.00x5.50": ""
-*pt_BR.PageSize w162h36/2.25x0.50": ""
-*pt_BR.PageSize w162h90/2.25x1.25": ""
-*pt_BR.PageSize w162h288/2.25x4.00": ""
-*pt_BR.PageSize w162h396/2.25x5.50": ""
-*pt_BR.PageSize w171h396/2.38x5.50": ""
-*pt_BR.PageSize w180h72/2.50x1.00": ""
-*pt_BR.PageSize w180h144/2.50x2.00": ""
-*pt_BR.PageSize w198h90/2.75x1.25": ""
-*pt_BR.PageSize w216h72/3.00x1.00": ""
-*pt_BR.PageSize w216h90/3.00x1.25": ""
-*pt_BR.PageSize w216h144/3.00x2.00": ""
-*pt_BR.PageSize w216h216/3.00x3.00": ""
-*pt_BR.PageSize w216h360/3.00x5.00": ""
-*pt_BR.PageSize w234h144/3.25x2.00": ""
-*pt_BR.PageSize w234h360/3.25x5.00": ""
-*pt_BR.PageSize w234h396/3.25x5.50": ""
-*pt_BR.PageSize w234h419/3.25x5.83": ""
-*pt_BR.PageSize w234h563/3.25x7.83": ""
-*pt_BR.PageSize w252h72/3.50x1.00": ""
-*pt_BR.PageSize w288h72/4.00x1.00": ""
-*pt_BR.PageSize w288h144/4.00x2.00": ""
-*pt_BR.PageSize w288h180/4.00x2.50": ""
-*pt_BR.PageSize w288h216/4.00x3.00": ""
-*pt_BR.PageSize w288h288/4.00x4.00": ""
-*pt_BR.PageSize w288h360/4.00x5.00": ""
-*pt_BR.PageSize w288h432/4.00x6.00": ""
-*pt_BR.PageSize w288h468/4.00x6.50": ""
-*pt_BR.PageSize w288h936/4.00x13.00": ""
-*pt_BR.Translation Resolution/Resolution: ""
-*pt_BR.Resolution 203dpi/203dpi: ""
-*pt_BR.Resolution 300dpi/300dpi: ""
-*pt_BR.Resolution 600dpi/600dpi: ""
-*pt_BR.Translation PrinterSettings/Printer Settings: ""
-*pt_BR.Translation Darkness/Darkness: ""
-*pt_BR.Darkness -1/Rápido: ""
-*pt_BR.Darkness 1/1: ""
-*pt_BR.Darkness 2/2: ""
-*pt_BR.Darkness 3/3: ""
-*pt_BR.Darkness 4/4: ""
-*pt_BR.Darkness 5/5: ""
-*pt_BR.Darkness 6/6: ""
-*pt_BR.Darkness 7/7: ""
-*pt_BR.Darkness 8/8: ""
-*pt_BR.Darkness 9/9: ""
-*pt_BR.Darkness 10/10: ""
-*pt_BR.Darkness 11/11: ""
-*pt_BR.Darkness 12/12: ""
-*pt_BR.Darkness 13/13: ""
-*pt_BR.Darkness 14/14: ""
-*pt_BR.Darkness 15/15: ""
-*pt_BR.Darkness 16/16: ""
-*pt_BR.Darkness 17/17: ""
-*pt_BR.Darkness 18/18: ""
-*pt_BR.Darkness 19/19: ""
-*pt_BR.Darkness 20/20: ""
-*pt_BR.Darkness 21/21: ""
-*pt_BR.Darkness 22/22: ""
-*pt_BR.Darkness 23/23: ""
-*pt_BR.Darkness 24/24: ""
-*pt_BR.Darkness 25/25: ""
-*pt_BR.Darkness 26/26: ""
-*pt_BR.Darkness 27/27: ""
-*pt_BR.Darkness 28/28: ""
-*pt_BR.Darkness 29/29: ""
-*pt_BR.Darkness 30/30: ""
-*pt_BR.Translation zePrintRate/Print Rate: ""
-*pt_BR.zePrintRate Default/Rápido: ""
-*pt_BR.zePrintRate 1/1 inch/sec.: ""
-*pt_BR.zePrintRate 1.5/1.5 inch/sec.: ""
-*pt_BR.zePrintRate 2/2 inches/sec.: ""
-*pt_BR.zePrintRate 2.5/2.5 inches/sec.: ""
-*sv.Translation Manufacturer/Zebra: ""
-*sv.Translation ModelName/Zebra EPL1 Label Printer: ""
-*sv.Translation ShortNickName/Zebra EPL1 Label Printer: ""
-*sv.Translation NickName/Zebra EPL1 Label Printer, 1.4: ""
-*sv.Translation PageSize/Media Size: ""
-*sv.PageSize w90h18/1.25x0.25": ""
-*sv.PageSize w90h162/1.25x2.25": ""
-*sv.PageSize w108h18/1.50x0.25": ""
-*sv.PageSize w108h36/1.50x0.50": ""
-*sv.PageSize w108h72/1.50x1.00": ""
-*sv.PageSize w108h144/1.50x2.00": ""
-*sv.PageSize w144h26/2.00x0.37": ""
-*sv.PageSize w144h36/2.00x0.50": ""
-*sv.PageSize w144h72/2.00x1.00": ""
-*sv.PageSize w144h90/2.00x1.25": ""
-*sv.PageSize w144h288/2.00x4.00": ""
-*sv.PageSize w144h396/2.00x5.50": ""
-*sv.PageSize w162h36/2.25x0.50": ""
-*sv.PageSize w162h90/2.25x1.25": ""
-*sv.PageSize w162h288/2.25x4.00": ""
-*sv.PageSize w162h396/2.25x5.50": ""
-*sv.PageSize w171h396/2.38x5.50": ""
-*sv.PageSize w180h72/2.50x1.00": ""
-*sv.PageSize w180h144/2.50x2.00": ""
-*sv.PageSize w198h90/2.75x1.25": ""
-*sv.PageSize w216h72/3.00x1.00": ""
-*sv.PageSize w216h90/3.00x1.25": ""
-*sv.PageSize w216h144/3.00x2.00": ""
-*sv.PageSize w216h216/3.00x3.00": ""
-*sv.PageSize w216h360/3.00x5.00": ""
-*sv.PageSize w234h144/3.25x2.00": ""
-*sv.PageSize w234h360/3.25x5.00": ""
-*sv.PageSize w234h396/3.25x5.50": ""
-*sv.PageSize w234h419/3.25x5.83": ""
-*sv.PageSize w234h563/3.25x7.83": ""
-*sv.PageSize w252h72/3.50x1.00": ""
-*sv.PageSize w288h72/4.00x1.00": ""
-*sv.PageSize w288h144/4.00x2.00": ""
-*sv.PageSize w288h180/4.00x2.50": ""
-*sv.PageSize w288h216/4.00x3.00": ""
-*sv.PageSize w288h288/4.00x4.00": ""
-*sv.PageSize w288h360/4.00x5.00": ""
-*sv.PageSize w288h432/4.00x6.00": ""
-*sv.PageSize w288h468/4.00x6.50": ""
-*sv.PageSize w288h936/4.00x13.00": ""
-*sv.Translation Resolution/Resolution: ""
-*sv.Resolution 203dpi/203dpi: ""
-*sv.Resolution 300dpi/300dpi: ""
-*sv.Resolution 600dpi/600dpi: ""
-*sv.Translation PrinterSettings/Printer Settings: ""
-*sv.Translation Darkness/Darkness: ""
-*sv.Darkness -1/Skrivarstandard: ""
-*sv.Darkness 1/1: ""
-*sv.Darkness 2/2: ""
-*sv.Darkness 3/3: ""
-*sv.Darkness 4/4: ""
-*sv.Darkness 5/5: ""
-*sv.Darkness 6/6: ""
-*sv.Darkness 7/7: ""
-*sv.Darkness 8/8: ""
-*sv.Darkness 9/9: ""
-*sv.Darkness 10/10: ""
-*sv.Darkness 11/11: ""
-*sv.Darkness 12/12: ""
-*sv.Darkness 13/13: ""
-*sv.Darkness 14/14: ""
-*sv.Darkness 15/15: ""
-*sv.Darkness 16/16: ""
-*sv.Darkness 17/17: ""
-*sv.Darkness 18/18: ""
-*sv.Darkness 19/19: ""
-*sv.Darkness 20/20: ""
-*sv.Darkness 21/21: ""
-*sv.Darkness 22/22: ""
-*sv.Darkness 23/23: ""
-*sv.Darkness 24/24: ""
-*sv.Darkness 25/25: ""
-*sv.Darkness 26/26: ""
-*sv.Darkness 27/27: ""
-*sv.Darkness 28/28: ""
-*sv.Darkness 29/29: ""
-*sv.Darkness 30/30: ""
-*sv.Translation zePrintRate/Print Rate: ""
-*sv.zePrintRate Default/Skrivarstandard: ""
-*sv.zePrintRate 1/1 inch/sec.: ""
-*sv.zePrintRate 1.5/1.5 inch/sec.: ""
-*sv.zePrintRate 2/2 inches/sec.: ""
-*sv.zePrintRate 2.5/2.5 inches/sec.: ""
-*zh.Translation Manufacturer/Zebra: ""
-*zh.Translation ModelName/Zebra EPL1 Label Printer: ""
-*zh.Translation ShortNickName/Zebra EPL1 Label Printer: ""
-*zh.Translation NickName/Zebra EPL1 Label Printer, 1.4: ""
-*zh.Translation PageSize/Page Size: ""
-*zh.PageSize w90h18/1.25x0.25": ""
-*zh.PageSize w90h162/1.25x2.25": ""
-*zh.PageSize w108h18/1.50x0.25": ""
-*zh.PageSize w108h36/1.50x0.50": ""
-*zh.PageSize w108h72/1.50x1.00": ""
-*zh.PageSize w108h144/1.50x2.00": ""
-*zh.PageSize w144h26/2.00x0.37": ""
-*zh.PageSize w144h36/2.00x0.50": ""
-*zh.PageSize w144h72/2.00x1.00": ""
-*zh.PageSize w144h90/2.00x1.25": ""
-*zh.PageSize w144h288/2.00x4.00": ""
-*zh.PageSize w144h396/2.00x5.50": ""
-*zh.PageSize w162h36/2.25x0.50": ""
-*zh.PageSize w162h90/2.25x1.25": ""
-*zh.PageSize w162h288/2.25x4.00": ""
-*zh.PageSize w162h396/2.25x5.50": ""
-*zh.PageSize w171h396/2.38x5.50": ""
-*zh.PageSize w180h72/2.50x1.00": ""
-*zh.PageSize w180h144/2.50x2.00": ""
-*zh.PageSize w198h90/2.75x1.25": ""
-*zh.PageSize w216h72/3.00x1.00": ""
-*zh.PageSize w216h90/3.00x1.25": ""
-*zh.PageSize w216h144/3.00x2.00": ""
-*zh.PageSize w216h216/3.00x3.00": ""
-*zh.PageSize w216h360/3.00x5.00": ""
-*zh.PageSize w234h144/3.25x2.00": ""
-*zh.PageSize w234h360/3.25x5.00": ""
-*zh.PageSize w234h396/3.25x5.50": ""
-*zh.PageSize w234h419/3.25x5.83": ""
-*zh.PageSize w234h563/3.25x7.83": ""
-*zh.PageSize w252h72/3.50x1.00": ""
-*zh.PageSize w288h72/4.00x1.00": ""
-*zh.PageSize w288h144/4.00x2.00": ""
-*zh.PageSize w288h180/4.00x2.50": ""
-*zh.PageSize w288h216/4.00x3.00": ""
-*zh.PageSize w288h288/4.00x4.00": ""
-*zh.PageSize w288h360/4.00x5.00": ""
-*zh.PageSize w288h432/4.00x6.00": ""
-*zh.PageSize w288h468/4.00x6.50": ""
-*zh.PageSize w288h936/4.00x13.00": ""
-*zh.Translation Resolution/Resolution: ""
-*zh.Resolution 203dpi/203dpi: ""
-*zh.Resolution 300dpi/300dpi: ""
-*zh.Resolution 600dpi/600dpi: ""
-*zh.Translation PrinterSettings/Printer Settings: ""
-*zh.Translation Darkness/Darkness: ""
-*zh.Darkness -1/Printer's Current Setting: ""
-*zh.Darkness 1/1: ""
-*zh.Darkness 2/2: ""
-*zh.Darkness 3/3: ""
-*zh.Darkness 4/4: ""
-*zh.Darkness 5/5: ""
-*zh.Darkness 6/6: ""
-*zh.Darkness 7/7: ""
-*zh.Darkness 8/8: ""
-*zh.Darkness 9/9: ""
-*zh.Darkness 10/10: ""
-*zh.Darkness 11/11: ""
-*zh.Darkness 12/12: ""
-*zh.Darkness 13/13: ""
-*zh.Darkness 14/14: ""
-*zh.Darkness 15/15: ""
-*zh.Darkness 16/16: ""
-*zh.Darkness 17/17: ""
-*zh.Darkness 18/18: ""
-*zh.Darkness 19/19: ""
-*zh.Darkness 20/20: ""
-*zh.Darkness 21/21: ""
-*zh.Darkness 22/22: ""
-*zh.Darkness 23/23: ""
-*zh.Darkness 24/24: ""
-*zh.Darkness 25/25: ""
-*zh.Darkness 26/26: ""
-*zh.Darkness 27/27: ""
-*zh.Darkness 28/28: ""
-*zh.Darkness 29/29: ""
-*zh.Darkness 30/30: ""
-*zh.Translation zePrintRate/Print Rate: ""
-*zh.zePrintRate Default/Printer's Current Setting: ""
-*zh.zePrintRate 1/1 inch/sec.: ""
-*zh.zePrintRate 1.5/1.5 inch/sec.: ""
-*zh.zePrintRate 2/2 inches/sec.: ""
-*zh.zePrintRate 2.5/2.5 inches/sec.: ""
-*zh_TW.Translation Manufacturer/Zebra: ""
-*zh_TW.Translation ModelName/Zebra EPL1 Label Printer: ""
-*zh_TW.Translation ShortNickName/Zebra EPL1 Label Printer: ""
-*zh_TW.Translation NickName/Zebra EPL1 Label Printer, 1.4: ""
-*zh_TW.Translation PageSize/Page Size: ""
-*zh_TW.PageSize w90h18/1.25x0.25": ""
-*zh_TW.PageSize w90h162/1.25x2.25": ""
-*zh_TW.PageSize w108h18/1.50x0.25": ""
-*zh_TW.PageSize w108h36/1.50x0.50": ""
-*zh_TW.PageSize w108h72/1.50x1.00": ""
-*zh_TW.PageSize w108h144/1.50x2.00": ""
-*zh_TW.PageSize w144h26/2.00x0.37": ""
-*zh_TW.PageSize w144h36/2.00x0.50": ""
-*zh_TW.PageSize w144h72/2.00x1.00": ""
-*zh_TW.PageSize w144h90/2.00x1.25": ""
-*zh_TW.PageSize w144h288/2.00x4.00": ""
-*zh_TW.PageSize w144h396/2.00x5.50": ""
-*zh_TW.PageSize w162h36/2.25x0.50": ""
-*zh_TW.PageSize w162h90/2.25x1.25": ""
-*zh_TW.PageSize w162h288/2.25x4.00": ""
-*zh_TW.PageSize w162h396/2.25x5.50": ""
-*zh_TW.PageSize w171h396/2.38x5.50": ""
-*zh_TW.PageSize w180h72/2.50x1.00": ""
-*zh_TW.PageSize w180h144/2.50x2.00": ""
-*zh_TW.PageSize w198h90/2.75x1.25": ""
-*zh_TW.PageSize w216h72/3.00x1.00": ""
-*zh_TW.PageSize w216h90/3.00x1.25": ""
-*zh_TW.PageSize w216h144/3.00x2.00": ""
-*zh_TW.PageSize w216h216/3.00x3.00": ""
-*zh_TW.PageSize w216h360/3.00x5.00": ""
-*zh_TW.PageSize w234h144/3.25x2.00": ""
-*zh_TW.PageSize w234h360/3.25x5.00": ""
-*zh_TW.PageSize w234h396/3.25x5.50": ""
-*zh_TW.PageSize w234h419/3.25x5.83": ""
-*zh_TW.PageSize w234h563/3.25x7.83": ""
-*zh_TW.PageSize w252h72/3.50x1.00": ""
-*zh_TW.PageSize w288h72/4.00x1.00": ""
-*zh_TW.PageSize w288h144/4.00x2.00": ""
-*zh_TW.PageSize w288h180/4.00x2.50": ""
-*zh_TW.PageSize w288h216/4.00x3.00": ""
-*zh_TW.PageSize w288h288/4.00x4.00": ""
-*zh_TW.PageSize w288h360/4.00x5.00": ""
-*zh_TW.PageSize w288h432/4.00x6.00": ""
-*zh_TW.PageSize w288h468/4.00x6.50": ""
-*zh_TW.PageSize w288h936/4.00x13.00": ""
-*zh_TW.Translation Resolution/Resolution: ""
-*zh_TW.Resolution 203dpi/203dpi: ""
-*zh_TW.Resolution 300dpi/300dpi: ""
-*zh_TW.Resolution 600dpi/600dpi: ""
-*zh_TW.Translation PrinterSettings/Printer Settings: ""
-*zh_TW.Translation Darkness/Darkness: ""
-*zh_TW.Darkness -1/快速: ""
-*zh_TW.Darkness 1/1: ""
-*zh_TW.Darkness 2/2: ""
-*zh_TW.Darkness 3/3: ""
-*zh_TW.Darkness 4/4: ""
-*zh_TW.Darkness 5/5: ""
-*zh_TW.Darkness 6/6: ""
-*zh_TW.Darkness 7/7: ""
-*zh_TW.Darkness 8/8: ""
-*zh_TW.Darkness 9/9: ""
-*zh_TW.Darkness 10/10: ""
-*zh_TW.Darkness 11/11: ""
-*zh_TW.Darkness 12/12: ""
-*zh_TW.Darkness 13/13: ""
-*zh_TW.Darkness 14/14: ""
-*zh_TW.Darkness 15/15: ""
-*zh_TW.Darkness 16/16: ""
-*zh_TW.Darkness 17/17: ""
-*zh_TW.Darkness 18/18: ""
-*zh_TW.Darkness 19/19: ""
-*zh_TW.Darkness 20/20: ""
-*zh_TW.Darkness 21/21: ""
-*zh_TW.Darkness 22/22: ""
-*zh_TW.Darkness 23/23: ""
-*zh_TW.Darkness 24/24: ""
-*zh_TW.Darkness 25/25: ""
-*zh_TW.Darkness 26/26: ""
-*zh_TW.Darkness 27/27: ""
-*zh_TW.Darkness 28/28: ""
-*zh_TW.Darkness 29/29: ""
-*zh_TW.Darkness 30/30: ""
-*zh_TW.Translation zePrintRate/Print Rate: ""
-*zh_TW.zePrintRate Default/快速: ""
-*zh_TW.zePrintRate 1/1 inch/sec.: ""
-*zh_TW.zePrintRate 1.5/1.5 inch/sec.: ""
-*zh_TW.zePrintRate 2/2 inches/sec.: ""
-*zh_TW.zePrintRate 2.5/2.5 inches/sec.: ""
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(1.05)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
-*Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
-*Font Bookman-Demi: Standard "(1.05)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
-*Font Bookman-Light: Standard "(1.05)" Standard ROM
-*Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
-*Font Courier: Standard "(1.05)" Standard ROM
-*Font Courier-Bold: Standard "(1.05)" Standard ROM
-*Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Courier-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica: Standard "(1.05)" Standard ROM
-*Font Helvetica-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
-*Font Palatino-Bold: Standard "(1.05)" Standard ROM
-*Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Palatino-Italic: Standard "(1.05)" Standard ROM
-*Font Palatino-Roman: Standard "(1.05)" Standard ROM
-*Font Symbol: Special "(001.005)" Special ROM
-*Font Times-Bold: Standard "(1.05)" Standard ROM
-*Font Times-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Times-Italic: Standard "(1.05)" Standard ROM
-*Font Times-Roman: Standard "(1.05)" Standard ROM
-*Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
-*Font ZapfDingbats: Special "(001.005)" Special ROM
-*% End of ZEBRAEP1.PPD, 62118 bytes.
diff --git a/ppd/zebraep2.ppd b/ppd/zebraep2.ppd
deleted file mode 100644 (file)
index ce2e2ca..0000000
+++ /dev/null
@@ -1,1758 +0,0 @@
-*PPD-Adobe: "4.3"
-*% PPD file for EPL2 Label Printer with CUPS.
-*% Created by the CUPS PPD Compiler v1.2.4.
-*% Copyright 2007 by Apple Inc.
-*% Copyright 1997-2007 by Easy Software Products.
-*% 
-*% These coded instructions, statements, and computer programs are the
-*% property of Apple Inc. and are protected by Federal copyright
-*% law.  Distribution and use rights are outlined in the file "LICENSE.txt"
-*% which should have been included with this file.  If this file is
-*% file is missing or damaged, see the license at "http://www.cups.org/".
-*FormatVersion: "4.3"
-*FileVersion: "1.4"
-*LanguageVersion: English
-*LanguageEncoding: ISOLatin1
-*PCFileName: "ZEBRAEP2.PPD"
-*Product: "(ESP Ghostscript)"
-*Product: "(GPL Ghostscript)"
-*Manufacturer: "Zebra"
-*ModelName: "Zebra EPL2 Label Printer"
-*ShortNickName: "Zebra EPL2 Label Printer"
-*NickName: "Zebra EPL2 Label Printer, 1.4"
-*PSVersion: "(3010.000) 81504"
-*PSVersion: "(3010.000) 860"
-*LanguageLevel: "3"
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*FileSystem: False
-*Throughput: "8"
-*LandscapeOrientation: Plus90
-*TTRasterizer: Type42
-*% Driver-defined attributes...
-*cupsVersion: 1.4
-*cupsModelNumber: 17
-*cupsManualCopies: False
-*cupsFilter: "application/vnd.cups-raster 50 rastertolabel"
-*cupsLanguages: "en da de es fi fr it ja ko nl no pt pt_BR sv zh zh_TW"
-*OpenUI *PageSize/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageSize
-*DefaultPageSize: w288h360
-*PageSize w90h18/1.25x0.25": "<</PageSize[90 18]/ImagingBBox null>>setpagedevice"
-*PageSize w90h162/1.25x2.25": "<</PageSize[90 162]/ImagingBBox null>>setpagedevice"
-*PageSize w108h18/1.50x0.25": "<</PageSize[108 18]/ImagingBBox null>>setpagedevice"
-*PageSize w108h36/1.50x0.50": "<</PageSize[108 36]/ImagingBBox null>>setpagedevice"
-*PageSize w108h72/1.50x1.00": "<</PageSize[108 72]/ImagingBBox null>>setpagedevice"
-*PageSize w108h144/1.50x2.00": "<</PageSize[108 144]/ImagingBBox null>>setpagedevice"
-*PageSize w144h26/2.00x0.37": "<</PageSize[144 26]/ImagingBBox null>>setpagedevice"
-*PageSize w144h36/2.00x0.50": "<</PageSize[144 36]/ImagingBBox null>>setpagedevice"
-*PageSize w144h72/2.00x1.00": "<</PageSize[144 72]/ImagingBBox null>>setpagedevice"
-*PageSize w144h90/2.00x1.25": "<</PageSize[144 90]/ImagingBBox null>>setpagedevice"
-*PageSize w144h288/2.00x4.00": "<</PageSize[144 288]/ImagingBBox null>>setpagedevice"
-*PageSize w144h396/2.00x5.50": "<</PageSize[144 396]/ImagingBBox null>>setpagedevice"
-*PageSize w162h36/2.25x0.50": "<</PageSize[162 36]/ImagingBBox null>>setpagedevice"
-*PageSize w162h90/2.25x1.25": "<</PageSize[162 90]/ImagingBBox null>>setpagedevice"
-*PageSize w162h288/2.25x4.00": "<</PageSize[162 288]/ImagingBBox null>>setpagedevice"
-*PageSize w162h396/2.25x5.50": "<</PageSize[162 396]/ImagingBBox null>>setpagedevice"
-*PageSize w171h396/2.38x5.50": "<</PageSize[171 396]/ImagingBBox null>>setpagedevice"
-*PageSize w180h72/2.50x1.00": "<</PageSize[180 72]/ImagingBBox null>>setpagedevice"
-*PageSize w180h144/2.50x2.00": "<</PageSize[180 144]/ImagingBBox null>>setpagedevice"
-*PageSize w198h90/2.75x1.25": "<</PageSize[198 90]/ImagingBBox null>>setpagedevice"
-*PageSize w216h72/3.00x1.00": "<</PageSize[216 72]/ImagingBBox null>>setpagedevice"
-*PageSize w216h90/3.00x1.25": "<</PageSize[216 90]/ImagingBBox null>>setpagedevice"
-*PageSize w216h144/3.00x2.00": "<</PageSize[216 144]/ImagingBBox null>>setpagedevice"
-*PageSize w216h216/3.00x3.00": "<</PageSize[216 216]/ImagingBBox null>>setpagedevice"
-*PageSize w216h360/3.00x5.00": "<</PageSize[216 360]/ImagingBBox null>>setpagedevice"
-*PageSize w234h144/3.25x2.00": "<</PageSize[234 144]/ImagingBBox null>>setpagedevice"
-*PageSize w234h360/3.25x5.00": "<</PageSize[234 360]/ImagingBBox null>>setpagedevice"
-*PageSize w234h396/3.25x5.50": "<</PageSize[234 396]/ImagingBBox null>>setpagedevice"
-*PageSize w234h419/3.25x5.83": "<</PageSize[234 419]/ImagingBBox null>>setpagedevice"
-*PageSize w234h563/3.25x7.83": "<</PageSize[234 563]/ImagingBBox null>>setpagedevice"
-*PageSize w252h72/3.50x1.00": "<</PageSize[252 72]/ImagingBBox null>>setpagedevice"
-*PageSize w288h72/4.00x1.00": "<</PageSize[288 72]/ImagingBBox null>>setpagedevice"
-*PageSize w288h144/4.00x2.00": "<</PageSize[288 144]/ImagingBBox null>>setpagedevice"
-*PageSize w288h180/4.00x2.50": "<</PageSize[288 180]/ImagingBBox null>>setpagedevice"
-*PageSize w288h216/4.00x3.00": "<</PageSize[288 216]/ImagingBBox null>>setpagedevice"
-*PageSize w288h288/4.00x4.00": "<</PageSize[288 288]/ImagingBBox null>>setpagedevice"
-*PageSize w288h360/4.00x5.00": "<</PageSize[288 360]/ImagingBBox null>>setpagedevice"
-*PageSize w288h432/4.00x6.00": "<</PageSize[288 432]/ImagingBBox null>>setpagedevice"
-*PageSize w288h468/4.00x6.50": "<</PageSize[288 468]/ImagingBBox null>>setpagedevice"
-*PageSize w288h936/4.00x13.00": "<</PageSize[288 936]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageSize
-*OpenUI *PageRegion/Media Size: PickOne
-*OrderDependency: 10 AnySetup *PageRegion
-*DefaultPageRegion: w288h360
-*PageRegion w90h18/1.25x0.25": "<</PageSize[90 18]/ImagingBBox null>>setpagedevice"
-*PageRegion w90h162/1.25x2.25": "<</PageSize[90 162]/ImagingBBox null>>setpagedevice"
-*PageRegion w108h18/1.50x0.25": "<</PageSize[108 18]/ImagingBBox null>>setpagedevice"
-*PageRegion w108h36/1.50x0.50": "<</PageSize[108 36]/ImagingBBox null>>setpagedevice"
-*PageRegion w108h72/1.50x1.00": "<</PageSize[108 72]/ImagingBBox null>>setpagedevice"
-*PageRegion w108h144/1.50x2.00": "<</PageSize[108 144]/ImagingBBox null>>setpagedevice"
-*PageRegion w144h26/2.00x0.37": "<</PageSize[144 26]/ImagingBBox null>>setpagedevice"
-*PageRegion w144h36/2.00x0.50": "<</PageSize[144 36]/ImagingBBox null>>setpagedevice"
-*PageRegion w144h72/2.00x1.00": "<</PageSize[144 72]/ImagingBBox null>>setpagedevice"
-*PageRegion w144h90/2.00x1.25": "<</PageSize[144 90]/ImagingBBox null>>setpagedevice"
-*PageRegion w144h288/2.00x4.00": "<</PageSize[144 288]/ImagingBBox null>>setpagedevice"
-*PageRegion w144h396/2.00x5.50": "<</PageSize[144 396]/ImagingBBox null>>setpagedevice"
-*PageRegion w162h36/2.25x0.50": "<</PageSize[162 36]/ImagingBBox null>>setpagedevice"
-*PageRegion w162h90/2.25x1.25": "<</PageSize[162 90]/ImagingBBox null>>setpagedevice"
-*PageRegion w162h288/2.25x4.00": "<</PageSize[162 288]/ImagingBBox null>>setpagedevice"
-*PageRegion w162h396/2.25x5.50": "<</PageSize[162 396]/ImagingBBox null>>setpagedevice"
-*PageRegion w171h396/2.38x5.50": "<</PageSize[171 396]/ImagingBBox null>>setpagedevice"
-*PageRegion w180h72/2.50x1.00": "<</PageSize[180 72]/ImagingBBox null>>setpagedevice"
-*PageRegion w180h144/2.50x2.00": "<</PageSize[180 144]/ImagingBBox null>>setpagedevice"
-*PageRegion w198h90/2.75x1.25": "<</PageSize[198 90]/ImagingBBox null>>setpagedevice"
-*PageRegion w216h72/3.00x1.00": "<</PageSize[216 72]/ImagingBBox null>>setpagedevice"
-*PageRegion w216h90/3.00x1.25": "<</PageSize[216 90]/ImagingBBox null>>setpagedevice"
-*PageRegion w216h144/3.00x2.00": "<</PageSize[216 144]/ImagingBBox null>>setpagedevice"
-*PageRegion w216h216/3.00x3.00": "<</PageSize[216 216]/ImagingBBox null>>setpagedevice"
-*PageRegion w216h360/3.00x5.00": "<</PageSize[216 360]/ImagingBBox null>>setpagedevice"
-*PageRegion w234h144/3.25x2.00": "<</PageSize[234 144]/ImagingBBox null>>setpagedevice"
-*PageRegion w234h360/3.25x5.00": "<</PageSize[234 360]/ImagingBBox null>>setpagedevice"
-*PageRegion w234h396/3.25x5.50": "<</PageSize[234 396]/ImagingBBox null>>setpagedevice"
-*PageRegion w234h419/3.25x5.83": "<</PageSize[234 419]/ImagingBBox null>>setpagedevice"
-*PageRegion w234h563/3.25x7.83": "<</PageSize[234 563]/ImagingBBox null>>setpagedevice"
-*PageRegion w252h72/3.50x1.00": "<</PageSize[252 72]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h72/4.00x1.00": "<</PageSize[288 72]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h144/4.00x2.00": "<</PageSize[288 144]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h180/4.00x2.50": "<</PageSize[288 180]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h216/4.00x3.00": "<</PageSize[288 216]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h288/4.00x4.00": "<</PageSize[288 288]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h360/4.00x5.00": "<</PageSize[288 360]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h432/4.00x6.00": "<</PageSize[288 432]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h468/4.00x6.50": "<</PageSize[288 468]/ImagingBBox null>>setpagedevice"
-*PageRegion w288h936/4.00x13.00": "<</PageSize[288 936]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageRegion
-*DefaultImageableArea: w288h360
-*ImageableArea w90h18/1.25x0.25": "0.00 0.00 90.00 18.00"
-*ImageableArea w90h162/1.25x2.25": "0.00 0.00 90.00 162.00"
-*ImageableArea w108h18/1.50x0.25": "0.00 0.00 108.00 18.00"
-*ImageableArea w108h36/1.50x0.50": "0.00 0.00 108.00 36.00"
-*ImageableArea w108h72/1.50x1.00": "0.00 0.00 108.00 72.00"
-*ImageableArea w108h144/1.50x2.00": "0.00 0.00 108.00 144.00"
-*ImageableArea w144h26/2.00x0.37": "0.00 0.00 144.00 26.00"
-*ImageableArea w144h36/2.00x0.50": "0.00 0.00 144.00 36.00"
-*ImageableArea w144h72/2.00x1.00": "0.00 0.00 144.00 72.00"
-*ImageableArea w144h90/2.00x1.25": "0.00 0.00 144.00 90.00"
-*ImageableArea w144h288/2.00x4.00": "0.00 0.00 144.00 288.00"
-*ImageableArea w144h396/2.00x5.50": "0.00 0.00 144.00 396.00"
-*ImageableArea w162h36/2.25x0.50": "0.00 0.00 162.00 36.00"
-*ImageableArea w162h90/2.25x1.25": "0.00 0.00 162.00 90.00"
-*ImageableArea w162h288/2.25x4.00": "0.00 0.00 162.00 288.00"
-*ImageableArea w162h396/2.25x5.50": "0.00 0.00 162.00 396.00"
-*ImageableArea w171h396/2.38x5.50": "0.00 0.00 171.00 396.00"
-*ImageableArea w180h72/2.50x1.00": "0.00 0.00 180.00 72.00"
-*ImageableArea w180h144/2.50x2.00": "0.00 0.00 180.00 144.00"
-*ImageableArea w198h90/2.75x1.25": "0.00 0.00 198.00 90.00"
-*ImageableArea w216h72/3.00x1.00": "0.00 0.00 216.00 72.00"
-*ImageableArea w216h90/3.00x1.25": "0.00 0.00 216.00 90.00"
-*ImageableArea w216h144/3.00x2.00": "0.00 0.00 216.00 144.00"
-*ImageableArea w216h216/3.00x3.00": "0.00 0.00 216.00 216.00"
-*ImageableArea w216h360/3.00x5.00": "0.00 0.00 216.00 360.00"
-*ImageableArea w234h144/3.25x2.00": "0.00 0.00 234.00 144.00"
-*ImageableArea w234h360/3.25x5.00": "0.00 0.00 234.00 360.00"
-*ImageableArea w234h396/3.25x5.50": "0.00 0.00 234.00 396.00"
-*ImageableArea w234h419/3.25x5.83": "0.00 0.00 234.00 419.00"
-*ImageableArea w234h563/3.25x7.83": "0.00 0.00 234.00 563.00"
-*ImageableArea w252h72/3.50x1.00": "0.00 0.00 252.00 72.00"
-*ImageableArea w288h72/4.00x1.00": "0.00 0.00 288.00 72.00"
-*ImageableArea w288h144/4.00x2.00": "0.00 0.00 288.00 144.00"
-*ImageableArea w288h180/4.00x2.50": "0.00 0.00 288.00 180.00"
-*ImageableArea w288h216/4.00x3.00": "0.00 0.00 288.00 216.00"
-*ImageableArea w288h288/4.00x4.00": "0.00 0.00 288.00 288.00"
-*ImageableArea w288h360/4.00x5.00": "0.00 0.00 288.00 360.00"
-*ImageableArea w288h432/4.00x6.00": "0.00 0.00 288.00 432.00"
-*ImageableArea w288h468/4.00x6.50": "0.00 0.00 288.00 468.00"
-*ImageableArea w288h936/4.00x13.00": "0.00 0.00 288.00 936.00"
-*DefaultPaperDimension: w288h360
-*PaperDimension w90h18/1.25x0.25": "90.00 18.00"
-*PaperDimension w90h162/1.25x2.25": "90.00 162.00"
-*PaperDimension w108h18/1.50x0.25": "108.00 18.00"
-*PaperDimension w108h36/1.50x0.50": "108.00 36.00"
-*PaperDimension w108h72/1.50x1.00": "108.00 72.00"
-*PaperDimension w108h144/1.50x2.00": "108.00 144.00"
-*PaperDimension w144h26/2.00x0.37": "144.00 26.00"
-*PaperDimension w144h36/2.00x0.50": "144.00 36.00"
-*PaperDimension w144h72/2.00x1.00": "144.00 72.00"
-*PaperDimension w144h90/2.00x1.25": "144.00 90.00"
-*PaperDimension w144h288/2.00x4.00": "144.00 288.00"
-*PaperDimension w144h396/2.00x5.50": "144.00 396.00"
-*PaperDimension w162h36/2.25x0.50": "162.00 36.00"
-*PaperDimension w162h90/2.25x1.25": "162.00 90.00"
-*PaperDimension w162h288/2.25x4.00": "162.00 288.00"
-*PaperDimension w162h396/2.25x5.50": "162.00 396.00"
-*PaperDimension w171h396/2.38x5.50": "171.00 396.00"
-*PaperDimension w180h72/2.50x1.00": "180.00 72.00"
-*PaperDimension w180h144/2.50x2.00": "180.00 144.00"
-*PaperDimension w198h90/2.75x1.25": "198.00 90.00"
-*PaperDimension w216h72/3.00x1.00": "216.00 72.00"
-*PaperDimension w216h90/3.00x1.25": "216.00 90.00"
-*PaperDimension w216h144/3.00x2.00": "216.00 144.00"
-*PaperDimension w216h216/3.00x3.00": "216.00 216.00"
-*PaperDimension w216h360/3.00x5.00": "216.00 360.00"
-*PaperDimension w234h144/3.25x2.00": "234.00 144.00"
-*PaperDimension w234h360/3.25x5.00": "234.00 360.00"
-*PaperDimension w234h396/3.25x5.50": "234.00 396.00"
-*PaperDimension w234h419/3.25x5.83": "234.00 419.00"
-*PaperDimension w234h563/3.25x7.83": "234.00 563.00"
-*PaperDimension w252h72/3.50x1.00": "252.00 72.00"
-*PaperDimension w288h72/4.00x1.00": "288.00 72.00"
-*PaperDimension w288h144/4.00x2.00": "288.00 144.00"
-*PaperDimension w288h180/4.00x2.50": "288.00 180.00"
-*PaperDimension w288h216/4.00x3.00": "288.00 216.00"
-*PaperDimension w288h288/4.00x4.00": "288.00 288.00"
-*PaperDimension w288h360/4.00x5.00": "288.00 360.00"
-*PaperDimension w288h432/4.00x6.00": "288.00 432.00"
-*PaperDimension w288h468/4.00x6.50": "288.00 468.00"
-*PaperDimension w288h936/4.00x13.00": "288.00 936.00"
-*MaxMediaWidth: "288.00"
-*MaxMediaHeight: "3600.00"
-*HWMargins: 0.00 0.00 0.00 0.00
-*CustomPageSize True: "pop pop pop <</PageSize[5 -2 roll]/ImagingBBox null>>setpagedevice"
-*ParamCustomPageSize Width: 1 points 36.00 288.00
-*ParamCustomPageSize Height: 2 points 36.00 3600.00
-*ParamCustomPageSize WidthOffset: 3 points 0 0
-*ParamCustomPageSize HeightOffset: 4 points 0 0
-*ParamCustomPageSize Orientation: 5 int 0 0
-*RequiresPageRegion All: True
-*OpenUI *Resolution: PickOne
-*OrderDependency: 10.0 AnySetup *Resolution
-*DefaultResolution: 203dpi
-*Resolution 203dpi: "<</HWResolution[203 203]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*Resolution 300dpi: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*Resolution 600dpi: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
-*CloseUI: *Resolution
-*OpenUI *MediaType/Media Type: PickOne
-*OrderDependency: 20.0 AnySetup *MediaType
-*DefaultMediaType: Saved
-*MediaType Saved/Printer Default: ""
-*MediaType Thermal/Thermal Transfer Media: "<</MediaType(Thermal)>>setpagedevice"
-*MediaType Direct/Direct Thermal Media: "<</MediaType(Direct)>>setpagedevice"
-*CloseUI: *MediaType
-*OpenGroup: PrinterSettings/Printer Settings
-*OpenUI *Darkness: PickOne
-*OrderDependency: 20.0 AnySetup *Darkness
-*DefaultDarkness: -1
-*Darkness -1/Printer Default: "<</cupsCompression -1>>setpagedevice"
-*Darkness 1: "<</cupsCompression 4>>setpagedevice"
-*Darkness 2: "<</cupsCompression 7>>setpagedevice"
-*Darkness 3: "<</cupsCompression 10>>setpagedevice"
-*Darkness 4: "<</cupsCompression 14>>setpagedevice"
-*Darkness 5: "<</cupsCompression 17>>setpagedevice"
-*Darkness 6: "<</cupsCompression 20>>setpagedevice"
-*Darkness 7: "<</cupsCompression 24>>setpagedevice"
-*Darkness 8: "<</cupsCompression 27>>setpagedevice"
-*Darkness 9: "<</cupsCompression 30>>setpagedevice"
-*Darkness 10: "<</cupsCompression 34>>setpagedevice"
-*Darkness 11: "<</cupsCompression 37>>setpagedevice"
-*Darkness 12: "<</cupsCompression 40>>setpagedevice"
-*Darkness 13: "<</cupsCompression 44>>setpagedevice"
-*Darkness 14: "<</cupsCompression 47>>setpagedevice"
-*Darkness 15: "<</cupsCompression 50>>setpagedevice"
-*Darkness 16: "<</cupsCompression 54>>setpagedevice"
-*Darkness 17: "<</cupsCompression 57>>setpagedevice"
-*Darkness 18: "<</cupsCompression 60>>setpagedevice"
-*Darkness 19: "<</cupsCompression 64>>setpagedevice"
-*Darkness 20: "<</cupsCompression 67>>setpagedevice"
-*Darkness 21: "<</cupsCompression 70>>setpagedevice"
-*Darkness 22: "<</cupsCompression 74>>setpagedevice"
-*Darkness 23: "<</cupsCompression 77>>setpagedevice"
-*Darkness 24: "<</cupsCompression 80>>setpagedevice"
-*Darkness 25: "<</cupsCompression 84>>setpagedevice"
-*Darkness 26: "<</cupsCompression 87>>setpagedevice"
-*Darkness 27: "<</cupsCompression 90>>setpagedevice"
-*Darkness 28: "<</cupsCompression 94>>setpagedevice"
-*Darkness 29: "<</cupsCompression 97>>setpagedevice"
-*Darkness 30: "<</cupsCompression 100>>setpagedevice"
-*CloseUI: *Darkness
-*OpenUI *zePrintRate/Print Rate: PickOne
-*OrderDependency: 20.0 AnySetup *zePrintRate
-*DefaultzePrintRate: Default
-*zePrintRate Default/Printer Default: ""
-*zePrintRate 1/1 inch/sec.: ""
-*zePrintRate 1.5/1.5 inch/sec.: ""
-*zePrintRate 2/2 inches/sec.: ""
-*zePrintRate 2.5/2.5 inches/sec.: ""
-*zePrintRate 3/3 inches/sec.: ""
-*zePrintRate 4/4 inches/sec.: ""
-*zePrintRate 5/5 inches/sec.: ""
-*zePrintRate 6/6 inches/sec.: ""
-*CloseUI: *zePrintRate
-*CloseGroup: PrinterSettings
-*da.Translation Manufacturer/Zebra: ""
-*da.Translation ModelName/Zebra EPL2 Label Printer: ""
-*da.Translation ShortNickName/Zebra EPL2 Label Printer: ""
-*da.Translation NickName/Zebra EPL2 Label Printer, 1.4: ""
-*da.Translation PageSize/Media Size: ""
-*da.PageSize w90h18/1.25x0.25": ""
-*da.PageSize w90h162/1.25x2.25": ""
-*da.PageSize w108h18/1.50x0.25": ""
-*da.PageSize w108h36/1.50x0.50": ""
-*da.PageSize w108h72/1.50x1.00": ""
-*da.PageSize w108h144/1.50x2.00": ""
-*da.PageSize w144h26/2.00x0.37": ""
-*da.PageSize w144h36/2.00x0.50": ""
-*da.PageSize w144h72/2.00x1.00": ""
-*da.PageSize w144h90/2.00x1.25": ""
-*da.PageSize w144h288/2.00x4.00": ""
-*da.PageSize w144h396/2.00x5.50": ""
-*da.PageSize w162h36/2.25x0.50": ""
-*da.PageSize w162h90/2.25x1.25": ""
-*da.PageSize w162h288/2.25x4.00": ""
-*da.PageSize w162h396/2.25x5.50": ""
-*da.PageSize w171h396/2.38x5.50": ""
-*da.PageSize w180h72/2.50x1.00": ""
-*da.PageSize w180h144/2.50x2.00": ""
-*da.PageSize w198h90/2.75x1.25": ""
-*da.PageSize w216h72/3.00x1.00": ""
-*da.PageSize w216h90/3.00x1.25": ""
-*da.PageSize w216h144/3.00x2.00": ""
-*da.PageSize w216h216/3.00x3.00": ""
-*da.PageSize w216h360/3.00x5.00": ""
-*da.PageSize w234h144/3.25x2.00": ""
-*da.PageSize w234h360/3.25x5.00": ""
-*da.PageSize w234h396/3.25x5.50": ""
-*da.PageSize w234h419/3.25x5.83": ""
-*da.PageSize w234h563/3.25x7.83": ""
-*da.PageSize w252h72/3.50x1.00": ""
-*da.PageSize w288h72/4.00x1.00": ""
-*da.PageSize w288h144/4.00x2.00": ""
-*da.PageSize w288h180/4.00x2.50": ""
-*da.PageSize w288h216/4.00x3.00": ""
-*da.PageSize w288h288/4.00x4.00": ""
-*da.PageSize w288h360/4.00x5.00": ""
-*da.PageSize w288h432/4.00x6.00": ""
-*da.PageSize w288h468/4.00x6.50": ""
-*da.PageSize w288h936/4.00x13.00": ""
-*da.Translation Resolution/Resolution: ""
-*da.Resolution 203dpi/203dpi: ""
-*da.Resolution 300dpi/300dpi: ""
-*da.Resolution 600dpi/600dpi: ""
-*da.Translation MediaType/Media Type: ""
-*da.MediaType Saved/Printerstandard: ""
-*da.MediaType Thermal/Thermal Transfer Media: ""
-*da.MediaType Direct/Direct Thermal Media: ""
-*da.Translation PrinterSettings/Printer Settings: ""
-*da.Translation Darkness/Darkness: ""
-*da.Darkness -1/Printerstandard: ""
-*da.Darkness 1/1: ""
-*da.Darkness 2/2: ""
-*da.Darkness 3/3: ""
-*da.Darkness 4/4: ""
-*da.Darkness 5/5: ""
-*da.Darkness 6/6: ""
-*da.Darkness 7/7: ""
-*da.Darkness 8/8: ""
-*da.Darkness 9/9: ""
-*da.Darkness 10/10: ""
-*da.Darkness 11/11: ""
-*da.Darkness 12/12: ""
-*da.Darkness 13/13: ""
-*da.Darkness 14/14: ""
-*da.Darkness 15/15: ""
-*da.Darkness 16/16: ""
-*da.Darkness 17/17: ""
-*da.Darkness 18/18: ""
-*da.Darkness 19/19: ""
-*da.Darkness 20/20: ""
-*da.Darkness 21/21: ""
-*da.Darkness 22/22: ""
-*da.Darkness 23/23: ""
-*da.Darkness 24/24: ""
-*da.Darkness 25/25: ""
-*da.Darkness 26/26: ""
-*da.Darkness 27/27: ""
-*da.Darkness 28/28: ""
-*da.Darkness 29/29: ""
-*da.Darkness 30/30: ""
-*da.Translation zePrintRate/Print Rate: ""
-*da.zePrintRate Default/Printerstandard: ""
-*da.zePrintRate 1/1 inch/sec.: ""
-*da.zePrintRate 1.5/1.5 inch/sec.: ""
-*da.zePrintRate 2/2 inches/sec.: ""
-*da.zePrintRate 2.5/2.5 inches/sec.: ""
-*da.zePrintRate 3/3 inches/sec.: ""
-*da.zePrintRate 4/4 inches/sec.: ""
-*da.zePrintRate 5/5 inches/sec.: ""
-*da.zePrintRate 6/6 inches/sec.: ""
-*de.Translation Manufacturer/Zebra: ""
-*de.Translation ModelName/Zebra EPL2 Label Printer: ""
-*de.Translation ShortNickName/Zebra EPL2 Label Printer: ""
-*de.Translation NickName/Zebra EPL2 Label Printer, 1.4: ""
-*de.Translation PageSize/Media Size: ""
-*de.PageSize w90h18/1.25x0.25": ""
-*de.PageSize w90h162/1.25x2.25": ""
-*de.PageSize w108h18/1.50x0.25": ""
-*de.PageSize w108h36/1.50x0.50": ""
-*de.PageSize w108h72/1.50x1.00": ""
-*de.PageSize w108h144/1.50x2.00": ""
-*de.PageSize w144h26/2.00x0.37": ""
-*de.PageSize w144h36/2.00x0.50": ""
-*de.PageSize w144h72/2.00x1.00": ""
-*de.PageSize w144h90/2.00x1.25": ""
-*de.PageSize w144h288/2.00x4.00": ""
-*de.PageSize w144h396/2.00x5.50": ""
-*de.PageSize w162h36/2.25x0.50": ""
-*de.PageSize w162h90/2.25x1.25": ""
-*de.PageSize w162h288/2.25x4.00": ""
-*de.PageSize w162h396/2.25x5.50": ""
-*de.PageSize w171h396/2.38x5.50": ""
-*de.PageSize w180h72/2.50x1.00": ""
-*de.PageSize w180h144/2.50x2.00": ""
-*de.PageSize w198h90/2.75x1.25": ""
-*de.PageSize w216h72/3.00x1.00": ""
-*de.PageSize w216h90/3.00x1.25": ""
-*de.PageSize w216h144/3.00x2.00": ""
-*de.PageSize w216h216/3.00x3.00": ""
-*de.PageSize w216h360/3.00x5.00": ""
-*de.PageSize w234h144/3.25x2.00": ""
-*de.PageSize w234h360/3.25x5.00": ""
-*de.PageSize w234h396/3.25x5.50": ""
-*de.PageSize w234h419/3.25x5.83": ""
-*de.PageSize w234h563/3.25x7.83": ""
-*de.PageSize w252h72/3.50x1.00": ""
-*de.PageSize w288h72/4.00x1.00": ""
-*de.PageSize w288h144/4.00x2.00": ""
-*de.PageSize w288h180/4.00x2.50": ""
-*de.PageSize w288h216/4.00x3.00": ""
-*de.PageSize w288h288/4.00x4.00": ""
-*de.PageSize w288h360/4.00x5.00": ""
-*de.PageSize w288h432/4.00x6.00": ""
-*de.PageSize w288h468/4.00x6.50": ""
-*de.PageSize w288h936/4.00x13.00": ""
-*de.Translation Resolution/Resolution: ""
-*de.Resolution 203dpi/203dpi: ""
-*de.Resolution 300dpi/300dpi: ""
-*de.Resolution 600dpi/600dpi: ""
-*de.Translation MediaType/Media Type: ""
-*de.MediaType Saved/Druckerstandard: ""
-*de.MediaType Thermal/Thermal Transfer Media: ""
-*de.MediaType Direct/Direct Thermal Media: ""
-*de.Translation PrinterSettings/Printer Settings: ""
-*de.Translation Darkness/Darkness: ""
-*de.Darkness -1/Druckerstandard: ""
-*de.Darkness 1/1: ""
-*de.Darkness 2/2: ""
-*de.Darkness 3/3: ""
-*de.Darkness 4/4: ""
-*de.Darkness 5/5: ""
-*de.Darkness 6/6: ""
-*de.Darkness 7/7: ""
-*de.Darkness 8/8: ""
-*de.Darkness 9/9: ""
-*de.Darkness 10/10: ""
-*de.Darkness 11/11: ""
-*de.Darkness 12/12: ""
-*de.Darkness 13/13: ""
-*de.Darkness 14/14: ""
-*de.Darkness 15/15: ""
-*de.Darkness 16/16: ""
-*de.Darkness 17/17: ""
-*de.Darkness 18/18: ""
-*de.Darkness 19/19: ""
-*de.Darkness 20/20: ""
-*de.Darkness 21/21: ""
-*de.Darkness 22/22: ""
-*de.Darkness 23/23: ""
-*de.Darkness 24/24: ""
-*de.Darkness 25/25: ""
-*de.Darkness 26/26: ""
-*de.Darkness 27/27: ""
-*de.Darkness 28/28: ""
-*de.Darkness 29/29: ""
-*de.Darkness 30/30: ""
-*de.Translation zePrintRate/Print Rate: ""
-*de.zePrintRate Default/Druckerstandard: ""
-*de.zePrintRate 1/1 inch/sec.: ""
-*de.zePrintRate 1.5/1.5 inch/sec.: ""
-*de.zePrintRate 2/2 inches/sec.: ""
-*de.zePrintRate 2.5/2.5 inches/sec.: ""
-*de.zePrintRate 3/3 inches/sec.: ""
-*de.zePrintRate 4/4 inches/sec.: ""
-*de.zePrintRate 5/5 inches/sec.: ""
-*de.zePrintRate 6/6 inches/sec.: ""
-*es.Translation Manufacturer/Zebra: ""
-*es.Translation ModelName/Zebra EPL2 Label Printer: ""
-*es.Translation ShortNickName/Zebra EPL2 Label Printer: ""
-*es.Translation NickName/Zebra EPL2 Label Printer, 1.4: ""
-*es.Translation PageSize/Media Size: ""
-*es.PageSize w90h18/1.25x0.25": ""
-*es.PageSize w90h162/1.25x2.25": ""
-*es.PageSize w108h18/1.50x0.25": ""
-*es.PageSize w108h36/1.50x0.50": ""
-*es.PageSize w108h72/1.50x1.00": ""
-*es.PageSize w108h144/1.50x2.00": ""
-*es.PageSize w144h26/2.00x0.37": ""
-*es.PageSize w144h36/2.00x0.50": ""
-*es.PageSize w144h72/2.00x1.00": ""
-*es.PageSize w144h90/2.00x1.25": ""
-*es.PageSize w144h288/2.00x4.00": ""
-*es.PageSize w144h396/2.00x5.50": ""
-*es.PageSize w162h36/2.25x0.50": ""
-*es.PageSize w162h90/2.25x1.25": ""
-*es.PageSize w162h288/2.25x4.00": ""
-*es.PageSize w162h396/2.25x5.50": ""
-*es.PageSize w171h396/2.38x5.50": ""
-*es.PageSize w180h72/2.50x1.00": ""
-*es.PageSize w180h144/2.50x2.00": ""
-*es.PageSize w198h90/2.75x1.25": ""
-*es.PageSize w216h72/3.00x1.00": ""
-*es.PageSize w216h90/3.00x1.25": ""
-*es.PageSize w216h144/3.00x2.00": ""
-*es.PageSize w216h216/3.00x3.00": ""
-*es.PageSize w216h360/3.00x5.00": ""
-*es.PageSize w234h144/3.25x2.00": ""
-*es.PageSize w234h360/3.25x5.00": ""
-*es.PageSize w234h396/3.25x5.50": ""
-*es.PageSize w234h419/3.25x5.83": ""
-*es.PageSize w234h563/3.25x7.83": ""
-*es.PageSize w252h72/3.50x1.00": ""
-*es.PageSize w288h72/4.00x1.00": ""
-*es.PageSize w288h144/4.00x2.00": ""
-*es.PageSize w288h180/4.00x2.50": ""
-*es.PageSize w288h216/4.00x3.00": ""
-*es.PageSize w288h288/4.00x4.00": ""
-*es.PageSize w288h360/4.00x5.00": ""
-*es.PageSize w288h432/4.00x6.00": ""
-*es.PageSize w288h468/4.00x6.50": ""
-*es.PageSize w288h936/4.00x13.00": ""
-*es.Translation Resolution/Resolution: ""
-*es.Resolution 203dpi/203dpi: ""
-*es.Resolution 300dpi/300dpi: ""
-*es.Resolution 600dpi/600dpi: ""
-*es.Translation MediaType/Media Type: ""
-*es.MediaType Saved/Impresora por defecto: ""
-*es.MediaType Thermal/Thermal Transfer Media: ""
-*es.MediaType Direct/Direct Thermal Media: ""
-*es.Translation PrinterSettings/Printer Settings: ""
-*es.Translation Darkness/Darkness: ""
-*es.Darkness -1/Impresora por defecto: ""
-*es.Darkness 1/1: ""
-*es.Darkness 2/2: ""
-*es.Darkness 3/3: ""
-*es.Darkness 4/4: ""
-*es.Darkness 5/5: ""
-*es.Darkness 6/6: ""
-*es.Darkness 7/7: ""
-*es.Darkness 8/8: ""
-*es.Darkness 9/9: ""
-*es.Darkness 10/10: ""
-*es.Darkness 11/11: ""
-*es.Darkness 12/12: ""
-*es.Darkness 13/13: ""
-*es.Darkness 14/14: ""
-*es.Darkness 15/15: ""
-*es.Darkness 16/16: ""
-*es.Darkness 17/17: ""
-*es.Darkness 18/18: ""
-*es.Darkness 19/19: ""
-*es.Darkness 20/20: ""
-*es.Darkness 21/21: ""
-*es.Darkness 22/22: ""
-*es.Darkness 23/23: ""
-*es.Darkness 24/24: ""
-*es.Darkness 25/25: ""
-*es.Darkness 26/26: ""
-*es.Darkness 27/27: ""
-*es.Darkness 28/28: ""
-*es.Darkness 29/29: ""
-*es.Darkness 30/30: ""
-*es.Translation zePrintRate/Print Rate: ""
-*es.zePrintRate Default/Impresora por defecto: ""
-*es.zePrintRate 1/1 inch/sec.: ""
-*es.zePrintRate 1.5/1.5 inch/sec.: ""
-*es.zePrintRate 2/2 inches/sec.: ""
-*es.zePrintRate 2.5/2.5 inches/sec.: ""
-*es.zePrintRate 3/3 inches/sec.: ""
-*es.zePrintRate 4/4 inches/sec.: ""
-*es.zePrintRate 5/5 inches/sec.: ""
-*es.zePrintRate 6/6 inches/sec.: ""
-*fi.Translation Manufacturer/Zebra: ""
-*fi.Translation ModelName/Zebra EPL2 Label Printer: ""
-*fi.Translation ShortNickName/Zebra EPL2 Label Printer: ""
-*fi.Translation NickName/Zebra EPL2 Label Printer, 1.4: ""
-*fi.Translation PageSize/Media Size: ""
-*fi.PageSize w90h18/1.25x0.25": ""
-*fi.PageSize w90h162/1.25x2.25": ""
-*fi.PageSize w108h18/1.50x0.25": ""
-*fi.PageSize w108h36/1.50x0.50": ""
-*fi.PageSize w108h72/1.50x1.00": ""
-*fi.PageSize w108h144/1.50x2.00": ""
-*fi.PageSize w144h26/2.00x0.37": ""
-*fi.PageSize w144h36/2.00x0.50": ""
-*fi.PageSize w144h72/2.00x1.00": ""
-*fi.PageSize w144h90/2.00x1.25": ""
-*fi.PageSize w144h288/2.00x4.00": ""
-*fi.PageSize w144h396/2.00x5.50": ""
-*fi.PageSize w162h36/2.25x0.50": ""
-*fi.PageSize w162h90/2.25x1.25": ""
-*fi.PageSize w162h288/2.25x4.00": ""
-*fi.PageSize w162h396/2.25x5.50": ""
-*fi.PageSize w171h396/2.38x5.50": ""
-*fi.PageSize w180h72/2.50x1.00": ""
-*fi.PageSize w180h144/2.50x2.00": ""
-*fi.PageSize w198h90/2.75x1.25": ""
-*fi.PageSize w216h72/3.00x1.00": ""
-*fi.PageSize w216h90/3.00x1.25": ""
-*fi.PageSize w216h144/3.00x2.00": ""
-*fi.PageSize w216h216/3.00x3.00": ""
-*fi.PageSize w216h360/3.00x5.00": ""
-*fi.PageSize w234h144/3.25x2.00": ""
-*fi.PageSize w234h360/3.25x5.00": ""
-*fi.PageSize w234h396/3.25x5.50": ""
-*fi.PageSize w234h419/3.25x5.83": ""
-*fi.PageSize w234h563/3.25x7.83": ""
-*fi.PageSize w252h72/3.50x1.00": ""
-*fi.PageSize w288h72/4.00x1.00": ""
-*fi.PageSize w288h144/4.00x2.00": ""
-*fi.PageSize w288h180/4.00x2.50": ""
-*fi.PageSize w288h216/4.00x3.00": ""
-*fi.PageSize w288h288/4.00x4.00": ""
-*fi.PageSize w288h360/4.00x5.00": ""
-*fi.PageSize w288h432/4.00x6.00": ""
-*fi.PageSize w288h468/4.00x6.50": ""
-*fi.PageSize w288h936/4.00x13.00": ""
-*fi.Translation Resolution/Resolution: ""
-*fi.Resolution 203dpi/203dpi: ""
-*fi.Resolution 300dpi/300dpi: ""
-*fi.Resolution 600dpi/600dpi: ""
-*fi.Translation MediaType/Media Type: ""
-*fi.MediaType Saved/Nopea: ""
-*fi.MediaType Thermal/Thermal Transfer Media: ""
-*fi.MediaType Direct/Direct Thermal Media: ""
-*fi.Translation PrinterSettings/Printer Settings: ""
-*fi.Translation Darkness/Darkness: ""
-*fi.Darkness -1/Nopea: ""
-*fi.Darkness 1/1: ""
-*fi.Darkness 2/2: ""
-*fi.Darkness 3/3: ""
-*fi.Darkness 4/4: ""
-*fi.Darkness 5/5: ""
-*fi.Darkness 6/6: ""
-*fi.Darkness 7/7: ""
-*fi.Darkness 8/8: ""
-*fi.Darkness 9/9: ""
-*fi.Darkness 10/10: ""
-*fi.Darkness 11/11: ""
-*fi.Darkness 12/12: ""
-*fi.Darkness 13/13: ""
-*fi.Darkness 14/14: ""
-*fi.Darkness 15/15: ""
-*fi.Darkness 16/16: ""
-*fi.Darkness 17/17: ""
-*fi.Darkness 18/18: ""
-*fi.Darkness 19/19: ""
-*fi.Darkness 20/20: ""
-*fi.Darkness 21/21: ""
-*fi.Darkness 22/22: ""
-*fi.Darkness 23/23: ""
-*fi.Darkness 24/24: ""
-*fi.Darkness 25/25: ""
-*fi.Darkness 26/26: ""
-*fi.Darkness 27/27: ""
-*fi.Darkness 28/28: ""
-*fi.Darkness 29/29: ""
-*fi.Darkness 30/30: ""
-*fi.Translation zePrintRate/Print Rate: ""
-*fi.zePrintRate Default/Nopea: ""
-*fi.zePrintRate 1/1 inch/sec.: ""
-*fi.zePrintRate 1.5/1.5 inch/sec.: ""
-*fi.zePrintRate 2/2 inches/sec.: ""
-*fi.zePrintRate 2.5/2.5 inches/sec.: ""
-*fi.zePrintRate 3/3 inches/sec.: ""
-*fi.zePrintRate 4/4 inches/sec.: ""
-*fi.zePrintRate 5/5 inches/sec.: ""
-*fi.zePrintRate 6/6 inches/sec.: ""
-*fr.Translation Manufacturer/Zebra: ""
-*fr.Translation ModelName/Zebra EPL2 Label Printer: ""
-*fr.Translation ShortNickName/Zebra EPL2 Label Printer: ""
-*fr.Translation NickName/Zebra EPL2 Label Printer, 1.4: ""
-*fr.Translation PageSize/Media Size: ""
-*fr.PageSize w90h18/1.25x0.25": ""
-*fr.PageSize w90h162/1.25x2.25": ""
-*fr.PageSize w108h18/1.50x0.25": ""
-*fr.PageSize w108h36/1.50x0.50": ""
-*fr.PageSize w108h72/1.50x1.00": ""
-*fr.PageSize w108h144/1.50x2.00": ""
-*fr.PageSize w144h26/2.00x0.37": ""
-*fr.PageSize w144h36/2.00x0.50": ""
-*fr.PageSize w144h72/2.00x1.00": ""
-*fr.PageSize w144h90/2.00x1.25": ""
-*fr.PageSize w144h288/2.00x4.00": ""
-*fr.PageSize w144h396/2.00x5.50": ""
-*fr.PageSize w162h36/2.25x0.50": ""
-*fr.PageSize w162h90/2.25x1.25": ""
-*fr.PageSize w162h288/2.25x4.00": ""
-*fr.PageSize w162h396/2.25x5.50": ""
-*fr.PageSize w171h396/2.38x5.50": ""
-*fr.PageSize w180h72/2.50x1.00": ""
-*fr.PageSize w180h144/2.50x2.00": ""
-*fr.PageSize w198h90/2.75x1.25": ""
-*fr.PageSize w216h72/3.00x1.00": ""
-*fr.PageSize w216h90/3.00x1.25": ""
-*fr.PageSize w216h144/3.00x2.00": ""
-*fr.PageSize w216h216/3.00x3.00": ""
-*fr.PageSize w216h360/3.00x5.00": ""
-*fr.PageSize w234h144/3.25x2.00": ""
-*fr.PageSize w234h360/3.25x5.00": ""
-*fr.PageSize w234h396/3.25x5.50": ""
-*fr.PageSize w234h419/3.25x5.83": ""
-*fr.PageSize w234h563/3.25x7.83": ""
-*fr.PageSize w252h72/3.50x1.00": ""
-*fr.PageSize w288h72/4.00x1.00": ""
-*fr.PageSize w288h144/4.00x2.00": ""
-*fr.PageSize w288h180/4.00x2.50": ""
-*fr.PageSize w288h216/4.00x3.00": ""
-*fr.PageSize w288h288/4.00x4.00": ""
-*fr.PageSize w288h360/4.00x5.00": ""
-*fr.PageSize w288h432/4.00x6.00": ""
-*fr.PageSize w288h468/4.00x6.50": ""
-*fr.PageSize w288h936/4.00x13.00": ""
-*fr.Translation Resolution/Resolution: ""
-*fr.Resolution 203dpi/203dpi: ""
-*fr.Resolution 300dpi/300dpi: ""
-*fr.Resolution 600dpi/600dpi: ""
-*fr.Translation MediaType/Media Type: ""
-*fr.MediaType Saved/Imprimante par défaut: ""
-*fr.MediaType Thermal/Thermal Transfer Media: ""
-*fr.MediaType Direct/Direct Thermal Media: ""
-*fr.Translation PrinterSettings/Printer Settings: ""
-*fr.Translation Darkness/Darkness: ""
-*fr.Darkness -1/Imprimante par défaut: ""
-*fr.Darkness 1/1: ""
-*fr.Darkness 2/2: ""
-*fr.Darkness 3/3: ""
-*fr.Darkness 4/4: ""
-*fr.Darkness 5/5: ""
-*fr.Darkness 6/6: ""
-*fr.Darkness 7/7: ""
-*fr.Darkness 8/8: ""
-*fr.Darkness 9/9: ""
-*fr.Darkness 10/10: ""
-*fr.Darkness 11/11: ""
-*fr.Darkness 12/12: ""
-*fr.Darkness 13/13: ""
-*fr.Darkness 14/14: ""
-*fr.Darkness 15/15: ""
-*fr.Darkness 16/16: ""
-*fr.Darkness 17/17: ""
-*fr.Darkness 18/18: ""
-*fr.Darkness 19/19: ""
-*fr.Darkness 20/20: ""
-*fr.Darkness 21/21: ""
-*fr.Darkness 22/22: ""
-*fr.Darkness 23/23: ""
-*fr.Darkness 24/24: ""
-*fr.Darkness 25/25: ""
-*fr.Darkness 26/26: ""
-*fr.Darkness 27/27: ""
-*fr.Darkness 28/28: ""
-*fr.Darkness 29/29: ""
-*fr.Darkness 30/30: ""
-*fr.Translation zePrintRate/Print Rate: ""
-*fr.zePrintRate Default/Imprimante par défaut: ""
-*fr.zePrintRate 1/1 inch/sec.: ""
-*fr.zePrintRate 1.5/1.5 inch/sec.: ""
-*fr.zePrintRate 2/2 inches/sec.: ""
-*fr.zePrintRate 2.5/2.5 inches/sec.: ""
-*fr.zePrintRate 3/3 inches/sec.: ""
-*fr.zePrintRate 4/4 inches/sec.: ""
-*fr.zePrintRate 5/5 inches/sec.: ""
-*fr.zePrintRate 6/6 inches/sec.: ""
-*it.Translation Manufacturer/Zebra: ""
-*it.Translation ModelName/Zebra EPL2 Label Printer: ""
-*it.Translation ShortNickName/Zebra EPL2 Label Printer: ""
-*it.Translation NickName/Zebra EPL2 Label Printer, 1.4: ""
-*it.Translation PageSize/Media Size: ""
-*it.PageSize w90h18/1.25x0.25": ""
-*it.PageSize w90h162/1.25x2.25": ""
-*it.PageSize w108h18/1.50x0.25": ""
-*it.PageSize w108h36/1.50x0.50": ""
-*it.PageSize w108h72/1.50x1.00": ""
-*it.PageSize w108h144/1.50x2.00": ""
-*it.PageSize w144h26/2.00x0.37": ""
-*it.PageSize w144h36/2.00x0.50": ""
-*it.PageSize w144h72/2.00x1.00": ""
-*it.PageSize w144h90/2.00x1.25": ""
-*it.PageSize w144h288/2.00x4.00": ""
-*it.PageSize w144h396/2.00x5.50": ""
-*it.PageSize w162h36/2.25x0.50": ""
-*it.PageSize w162h90/2.25x1.25": ""
-*it.PageSize w162h288/2.25x4.00": ""
-*it.PageSize w162h396/2.25x5.50": ""
-*it.PageSize w171h396/2.38x5.50": ""
-*it.PageSize w180h72/2.50x1.00": ""
-*it.PageSize w180h144/2.50x2.00": ""
-*it.PageSize w198h90/2.75x1.25": ""
-*it.PageSize w216h72/3.00x1.00": ""
-*it.PageSize w216h90/3.00x1.25": ""
-*it.PageSize w216h144/3.00x2.00": ""
-*it.PageSize w216h216/3.00x3.00": ""
-*it.PageSize w216h360/3.00x5.00": ""
-*it.PageSize w234h144/3.25x2.00": ""
-*it.PageSize w234h360/3.25x5.00": ""
-*it.PageSize w234h396/3.25x5.50": ""
-*it.PageSize w234h419/3.25x5.83": ""
-*it.PageSize w234h563/3.25x7.83": ""
-*it.PageSize w252h72/3.50x1.00": ""
-*it.PageSize w288h72/4.00x1.00": ""
-*it.PageSize w288h144/4.00x2.00": ""
-*it.PageSize w288h180/4.00x2.50": ""
-*it.PageSize w288h216/4.00x3.00": ""
-*it.PageSize w288h288/4.00x4.00": ""
-*it.PageSize w288h360/4.00x5.00": ""
-*it.PageSize w288h432/4.00x6.00": ""
-*it.PageSize w288h468/4.00x6.50": ""
-*it.PageSize w288h936/4.00x13.00": ""
-*it.Translation Resolution/Resolution: ""
-*it.Resolution 203dpi/203dpi: ""
-*it.Resolution 300dpi/300dpi: ""
-*it.Resolution 600dpi/600dpi: ""
-*it.Translation MediaType/Media Type: ""
-*it.MediaType Saved/Impostazioni predefinite stampante: ""
-*it.MediaType Thermal/Thermal Transfer Media: ""
-*it.MediaType Direct/Direct Thermal Media: ""
-*it.Translation PrinterSettings/Printer Settings: ""
-*it.Translation Darkness/Darkness: ""
-*it.Darkness -1/Impostazioni predefinite stampante: ""
-*it.Darkness 1/1: ""
-*it.Darkness 2/2: ""
-*it.Darkness 3/3: ""
-*it.Darkness 4/4: ""
-*it.Darkness 5/5: ""
-*it.Darkness 6/6: ""
-*it.Darkness 7/7: ""
-*it.Darkness 8/8: ""
-*it.Darkness 9/9: ""
-*it.Darkness 10/10: ""
-*it.Darkness 11/11: ""
-*it.Darkness 12/12: ""
-*it.Darkness 13/13: ""
-*it.Darkness 14/14: ""
-*it.Darkness 15/15: ""
-*it.Darkness 16/16: ""
-*it.Darkness 17/17: ""
-*it.Darkness 18/18: ""
-*it.Darkness 19/19: ""
-*it.Darkness 20/20: ""
-*it.Darkness 21/21: ""
-*it.Darkness 22/22: ""
-*it.Darkness 23/23: ""
-*it.Darkness 24/24: ""
-*it.Darkness 25/25: ""
-*it.Darkness 26/26: ""
-*it.Darkness 27/27: ""
-*it.Darkness 28/28: ""
-*it.Darkness 29/29: ""
-*it.Darkness 30/30: ""
-*it.Translation zePrintRate/Print Rate: ""
-*it.zePrintRate Default/Impostazioni predefinite stampante: ""
-*it.zePrintRate 1/1 inch/sec.: ""
-*it.zePrintRate 1.5/1.5 inch/sec.: ""
-*it.zePrintRate 2/2 inches/sec.: ""
-*it.zePrintRate 2.5/2.5 inches/sec.: ""
-*it.zePrintRate 3/3 inches/sec.: ""
-*it.zePrintRate 4/4 inches/sec.: ""
-*it.zePrintRate 5/5 inches/sec.: ""
-*it.zePrintRate 6/6 inches/sec.: ""
-*ja.Translation Manufacturer/Zebra: ""
-*ja.Translation ModelName/Zebra EPL2 Label Printer: ""
-*ja.Translation ShortNickName/Zebra EPL2 Label Printer: ""
-*ja.Translation NickName/Zebra EPL2 Label Printer, 1.4: ""
-*ja.Translation PageSize/Media Size: ""
-*ja.PageSize w90h18/1.25x0.25": ""
-*ja.PageSize w90h162/1.25x2.25": ""
-*ja.PageSize w108h18/1.50x0.25": ""
-*ja.PageSize w108h36/1.50x0.50": ""
-*ja.PageSize w108h72/1.50x1.00": ""
-*ja.PageSize w108h144/1.50x2.00": ""
-*ja.PageSize w144h26/2.00x0.37": ""
-*ja.PageSize w144h36/2.00x0.50": ""
-*ja.PageSize w144h72/2.00x1.00": ""
-*ja.PageSize w144h90/2.00x1.25": ""
-*ja.PageSize w144h288/2.00x4.00": ""
-*ja.PageSize w144h396/2.00x5.50": ""
-*ja.PageSize w162h36/2.25x0.50": ""
-*ja.PageSize w162h90/2.25x1.25": ""
-*ja.PageSize w162h288/2.25x4.00": ""
-*ja.PageSize w162h396/2.25x5.50": ""
-*ja.PageSize w171h396/2.38x5.50": ""
-*ja.PageSize w180h72/2.50x1.00": ""
-*ja.PageSize w180h144/2.50x2.00": ""
-*ja.PageSize w198h90/2.75x1.25": ""
-*ja.PageSize w216h72/3.00x1.00": ""
-*ja.PageSize w216h90/3.00x1.25": ""
-*ja.PageSize w216h144/3.00x2.00": ""
-*ja.PageSize w216h216/3.00x3.00": ""
-*ja.PageSize w216h360/3.00x5.00": ""
-*ja.PageSize w234h144/3.25x2.00": ""
-*ja.PageSize w234h360/3.25x5.00": ""
-*ja.PageSize w234h396/3.25x5.50": ""
-*ja.PageSize w234h419/3.25x5.83": ""
-*ja.PageSize w234h563/3.25x7.83": ""
-*ja.PageSize w252h72/3.50x1.00": ""
-*ja.PageSize w288h72/4.00x1.00": ""
-*ja.PageSize w288h144/4.00x2.00": ""
-*ja.PageSize w288h180/4.00x2.50": ""
-*ja.PageSize w288h216/4.00x3.00": ""
-*ja.PageSize w288h288/4.00x4.00": ""
-*ja.PageSize w288h360/4.00x5.00": ""
-*ja.PageSize w288h432/4.00x6.00": ""
-*ja.PageSize w288h468/4.00x6.50": ""
-*ja.PageSize w288h936/4.00x13.00": ""
-*ja.Translation Resolution/Resolution: ""
-*ja.Resolution 203dpi/203dpi: ""
-*ja.Resolution 300dpi/300dpi: ""
-*ja.Resolution 600dpi/600dpi: ""
-*ja.Translation MediaType/Media Type: ""
-*ja.MediaType Saved/システムデフォルト: ""
-*ja.MediaType Thermal/Thermal Transfer Media: ""
-*ja.MediaType Direct/Direct Thermal Media: ""
-*ja.Translation PrinterSettings/Printer Settings: ""
-*ja.Translation Darkness/Darkness: ""
-*ja.Darkness -1/システムデフォルト: ""
-*ja.Darkness 1/1: ""
-*ja.Darkness 2/2: ""
-*ja.Darkness 3/3: ""
-*ja.Darkness 4/4: ""
-*ja.Darkness 5/5: ""
-*ja.Darkness 6/6: ""
-*ja.Darkness 7/7: ""
-*ja.Darkness 8/8: ""
-*ja.Darkness 9/9: ""
-*ja.Darkness 10/10: ""
-*ja.Darkness 11/11: ""
-*ja.Darkness 12/12: ""
-*ja.Darkness 13/13: ""
-*ja.Darkness 14/14: ""
-*ja.Darkness 15/15: ""
-*ja.Darkness 16/16: ""
-*ja.Darkness 17/17: ""
-*ja.Darkness 18/18: ""
-*ja.Darkness 19/19: ""
-*ja.Darkness 20/20: ""
-*ja.Darkness 21/21: ""
-*ja.Darkness 22/22: ""
-*ja.Darkness 23/23: ""
-*ja.Darkness 24/24: ""
-*ja.Darkness 25/25: ""
-*ja.Darkness 26/26: ""
-*ja.Darkness 27/27: ""
-*ja.Darkness 28/28: ""
-*ja.Darkness 29/29: ""
-*ja.Darkness 30/30: ""
-*ja.Translation zePrintRate/Print Rate: ""
-*ja.zePrintRate Default/システムデフォルト: ""
-*ja.zePrintRate 1/1 inch/sec.: ""
-*ja.zePrintRate 1.5/1.5 inch/sec.: ""
-*ja.zePrintRate 2/2 inches/sec.: ""
-*ja.zePrintRate 2.5/2.5 inches/sec.: ""
-*ja.zePrintRate 3/3 inches/sec.: ""
-*ja.zePrintRate 4/4 inches/sec.: ""
-*ja.zePrintRate 5/5 inches/sec.: ""
-*ja.zePrintRate 6/6 inches/sec.: ""
-*ko.Translation Manufacturer/Zebra: ""
-*ko.Translation ModelName/Zebra EPL2 Label Printer: ""
-*ko.Translation ShortNickName/Zebra EPL2 Label Printer: ""
-*ko.Translation NickName/Zebra EPL2 Label Printer, 1.4: ""
-*ko.Translation PageSize/Page Size: ""
-*ko.PageSize w90h18/1.25x0.25": ""
-*ko.PageSize w90h162/1.25x2.25": ""
-*ko.PageSize w108h18/1.50x0.25": ""
-*ko.PageSize w108h36/1.50x0.50": ""
-*ko.PageSize w108h72/1.50x1.00": ""
-*ko.PageSize w108h144/1.50x2.00": ""
-*ko.PageSize w144h26/2.00x0.37": ""
-*ko.PageSize w144h36/2.00x0.50": ""
-*ko.PageSize w144h72/2.00x1.00": ""
-*ko.PageSize w144h90/2.00x1.25": ""
-*ko.PageSize w144h288/2.00x4.00": ""
-*ko.PageSize w144h396/2.00x5.50": ""
-*ko.PageSize w162h36/2.25x0.50": ""
-*ko.PageSize w162h90/2.25x1.25": ""
-*ko.PageSize w162h288/2.25x4.00": ""
-*ko.PageSize w162h396/2.25x5.50": ""
-*ko.PageSize w171h396/2.38x5.50": ""
-*ko.PageSize w180h72/2.50x1.00": ""
-*ko.PageSize w180h144/2.50x2.00": ""
-*ko.PageSize w198h90/2.75x1.25": ""
-*ko.PageSize w216h72/3.00x1.00": ""
-*ko.PageSize w216h90/3.00x1.25": ""
-*ko.PageSize w216h144/3.00x2.00": ""
-*ko.PageSize w216h216/3.00x3.00": ""
-*ko.PageSize w216h360/3.00x5.00": ""
-*ko.PageSize w234h144/3.25x2.00": ""
-*ko.PageSize w234h360/3.25x5.00": ""
-*ko.PageSize w234h396/3.25x5.50": ""
-*ko.PageSize w234h419/3.25x5.83": ""
-*ko.PageSize w234h563/3.25x7.83": ""
-*ko.PageSize w252h72/3.50x1.00": ""
-*ko.PageSize w288h72/4.00x1.00": ""
-*ko.PageSize w288h144/4.00x2.00": ""
-*ko.PageSize w288h180/4.00x2.50": ""
-*ko.PageSize w288h216/4.00x3.00": ""
-*ko.PageSize w288h288/4.00x4.00": ""
-*ko.PageSize w288h360/4.00x5.00": ""
-*ko.PageSize w288h432/4.00x6.00": ""
-*ko.PageSize w288h468/4.00x6.50": ""
-*ko.PageSize w288h936/4.00x13.00": ""
-*ko.Translation Resolution/Resolution: ""
-*ko.Resolution 203dpi/203dpi: ""
-*ko.Resolution 300dpi/300dpi: ""
-*ko.Resolution 600dpi/600dpi: ""
-*ko.Translation MediaType/Media Type: ""
-*ko.MediaType Saved/빠르게: ""
-*ko.MediaType Thermal/Thermal Transfer Media: ""
-*ko.MediaType Direct/Direct Thermal Media: ""
-*ko.Translation PrinterSettings/Printer Settings: ""
-*ko.Translation Darkness/Darkness: ""
-*ko.Darkness -1/빠르게: ""
-*ko.Darkness 1/1: ""
-*ko.Darkness 2/2: ""
-*ko.Darkness 3/3: ""
-*ko.Darkness 4/4: ""
-*ko.Darkness 5/5: ""
-*ko.Darkness 6/6: ""
-*ko.Darkness 7/7: ""
-*ko.Darkness 8/8: ""
-*ko.Darkness 9/9: ""
-*ko.Darkness 10/10: ""
-*ko.Darkness 11/11: ""
-*ko.Darkness 12/12: ""
-*ko.Darkness 13/13: ""
-*ko.Darkness 14/14: ""
-*ko.Darkness 15/15: ""
-*ko.Darkness 16/16: ""
-*ko.Darkness 17/17: ""
-*ko.Darkness 18/18: ""
-*ko.Darkness 19/19: ""
-*ko.Darkness 20/20: ""
-*ko.Darkness 21/21: ""
-*ko.Darkness 22/22: ""
-*ko.Darkness 23/23: ""
-*ko.Darkness 24/24: ""
-*ko.Darkness 25/25: ""
-*ko.Darkness 26/26: ""
-*ko.Darkness 27/27: ""
-*ko.Darkness 28/28: ""
-*ko.Darkness 29/29: ""
-*ko.Darkness 30/30: ""
-*ko.Translation zePrintRate/Print Rate: ""
-*ko.zePrintRate Default/빠르게: ""
-*ko.zePrintRate 1/1 inch/sec.: ""
-*ko.zePrintRate 1.5/1.5 inch/sec.: ""
-*ko.zePrintRate 2/2 inches/sec.: ""
-*ko.zePrintRate 2.5/2.5 inches/sec.: ""
-*ko.zePrintRate 3/3 inches/sec.: ""
-*ko.zePrintRate 4/4 inches/sec.: ""
-*ko.zePrintRate 5/5 inches/sec.: ""
-*ko.zePrintRate 6/6 inches/sec.: ""
-*nl.Translation Manufacturer/Zebra: ""
-*nl.Translation ModelName/Zebra EPL2 Label Printer: ""
-*nl.Translation ShortNickName/Zebra EPL2 Label Printer: ""
-*nl.Translation NickName/Zebra EPL2 Label Printer, 1.4: ""
-*nl.Translation PageSize/Media Size: ""
-*nl.PageSize w90h18/1.25x0.25": ""
-*nl.PageSize w90h162/1.25x2.25": ""
-*nl.PageSize w108h18/1.50x0.25": ""
-*nl.PageSize w108h36/1.50x0.50": ""
-*nl.PageSize w108h72/1.50x1.00": ""
-*nl.PageSize w108h144/1.50x2.00": ""
-*nl.PageSize w144h26/2.00x0.37": ""
-*nl.PageSize w144h36/2.00x0.50": ""
-*nl.PageSize w144h72/2.00x1.00": ""
-*nl.PageSize w144h90/2.00x1.25": ""
-*nl.PageSize w144h288/2.00x4.00": ""
-*nl.PageSize w144h396/2.00x5.50": ""
-*nl.PageSize w162h36/2.25x0.50": ""
-*nl.PageSize w162h90/2.25x1.25": ""
-*nl.PageSize w162h288/2.25x4.00": ""
-*nl.PageSize w162h396/2.25x5.50": ""
-*nl.PageSize w171h396/2.38x5.50": ""
-*nl.PageSize w180h72/2.50x1.00": ""
-*nl.PageSize w180h144/2.50x2.00": ""
-*nl.PageSize w198h90/2.75x1.25": ""
-*nl.PageSize w216h72/3.00x1.00": ""
-*nl.PageSize w216h90/3.00x1.25": ""
-*nl.PageSize w216h144/3.00x2.00": ""
-*nl.PageSize w216h216/3.00x3.00": ""
-*nl.PageSize w216h360/3.00x5.00": ""
-*nl.PageSize w234h144/3.25x2.00": ""
-*nl.PageSize w234h360/3.25x5.00": ""
-*nl.PageSize w234h396/3.25x5.50": ""
-*nl.PageSize w234h419/3.25x5.83": ""
-*nl.PageSize w234h563/3.25x7.83": ""
-*nl.PageSize w252h72/3.50x1.00": ""
-*nl.PageSize w288h72/4.00x1.00": ""
-*nl.PageSize w288h144/4.00x2.00": ""
-*nl.PageSize w288h180/4.00x2.50": ""
-*nl.PageSize w288h216/4.00x3.00": ""
-*nl.PageSize w288h288/4.00x4.00": ""
-*nl.PageSize w288h360/4.00x5.00": ""
-*nl.PageSize w288h432/4.00x6.00": ""
-*nl.PageSize w288h468/4.00x6.50": ""
-*nl.PageSize w288h936/4.00x13.00": ""
-*nl.Translation Resolution/Resolution: ""
-*nl.Resolution 203dpi/203dpi: ""
-*nl.Resolution 300dpi/300dpi: ""
-*nl.Resolution 600dpi/600dpi: ""
-*nl.Translation MediaType/Media Type: ""
-*nl.MediaType Saved/Printerstandaard: ""
-*nl.MediaType Thermal/Thermal Transfer Media: ""
-*nl.MediaType Direct/Direct Thermal Media: ""
-*nl.Translation PrinterSettings/Printer Settings: ""
-*nl.Translation Darkness/Darkness: ""
-*nl.Darkness -1/Printerstandaard: ""
-*nl.Darkness 1/1: ""
-*nl.Darkness 2/2: ""
-*nl.Darkness 3/3: ""
-*nl.Darkness 4/4: ""
-*nl.Darkness 5/5: ""
-*nl.Darkness 6/6: ""
-*nl.Darkness 7/7: ""
-*nl.Darkness 8/8: ""
-*nl.Darkness 9/9: ""
-*nl.Darkness 10/10: ""
-*nl.Darkness 11/11: ""
-*nl.Darkness 12/12: ""
-*nl.Darkness 13/13: ""
-*nl.Darkness 14/14: ""
-*nl.Darkness 15/15: ""
-*nl.Darkness 16/16: ""
-*nl.Darkness 17/17: ""
-*nl.Darkness 18/18: ""
-*nl.Darkness 19/19: ""
-*nl.Darkness 20/20: ""
-*nl.Darkness 21/21: ""
-*nl.Darkness 22/22: ""
-*nl.Darkness 23/23: ""
-*nl.Darkness 24/24: ""
-*nl.Darkness 25/25: ""
-*nl.Darkness 26/26: ""
-*nl.Darkness 27/27: ""
-*nl.Darkness 28/28: ""
-*nl.Darkness 29/29: ""
-*nl.Darkness 30/30: ""
-*nl.Translation zePrintRate/Print Rate: ""
-*nl.zePrintRate Default/Printerstandaard: ""
-*nl.zePrintRate 1/1 inch/sec.: ""
-*nl.zePrintRate 1.5/1.5 inch/sec.: ""
-*nl.zePrintRate 2/2 inches/sec.: ""
-*nl.zePrintRate 2.5/2.5 inches/sec.: ""
-*nl.zePrintRate 3/3 inches/sec.: ""
-*nl.zePrintRate 4/4 inches/sec.: ""
-*nl.zePrintRate 5/5 inches/sec.: ""
-*nl.zePrintRate 6/6 inches/sec.: ""
-*no.Translation Manufacturer/Zebra: ""
-*no.Translation ModelName/Zebra EPL2 Label Printer: ""
-*no.Translation ShortNickName/Zebra EPL2 Label Printer: ""
-*no.Translation NickName/Zebra EPL2 Label Printer, 1.4: ""
-*no.Translation PageSize/Media Size: ""
-*no.PageSize w90h18/1.25x0.25": ""
-*no.PageSize w90h162/1.25x2.25": ""
-*no.PageSize w108h18/1.50x0.25": ""
-*no.PageSize w108h36/1.50x0.50": ""
-*no.PageSize w108h72/1.50x1.00": ""
-*no.PageSize w108h144/1.50x2.00": ""
-*no.PageSize w144h26/2.00x0.37": ""
-*no.PageSize w144h36/2.00x0.50": ""
-*no.PageSize w144h72/2.00x1.00": ""
-*no.PageSize w144h90/2.00x1.25": ""
-*no.PageSize w144h288/2.00x4.00": ""
-*no.PageSize w144h396/2.00x5.50": ""
-*no.PageSize w162h36/2.25x0.50": ""
-*no.PageSize w162h90/2.25x1.25": ""
-*no.PageSize w162h288/2.25x4.00": ""
-*no.PageSize w162h396/2.25x5.50": ""
-*no.PageSize w171h396/2.38x5.50": ""
-*no.PageSize w180h72/2.50x1.00": ""
-*no.PageSize w180h144/2.50x2.00": ""
-*no.PageSize w198h90/2.75x1.25": ""
-*no.PageSize w216h72/3.00x1.00": ""
-*no.PageSize w216h90/3.00x1.25": ""
-*no.PageSize w216h144/3.00x2.00": ""
-*no.PageSize w216h216/3.00x3.00": ""
-*no.PageSize w216h360/3.00x5.00": ""
-*no.PageSize w234h144/3.25x2.00": ""
-*no.PageSize w234h360/3.25x5.00": ""
-*no.PageSize w234h396/3.25x5.50": ""
-*no.PageSize w234h419/3.25x5.83": ""
-*no.PageSize w234h563/3.25x7.83": ""
-*no.PageSize w252h72/3.50x1.00": ""
-*no.PageSize w288h72/4.00x1.00": ""
-*no.PageSize w288h144/4.00x2.00": ""
-*no.PageSize w288h180/4.00x2.50": ""
-*no.PageSize w288h216/4.00x3.00": ""
-*no.PageSize w288h288/4.00x4.00": ""
-*no.PageSize w288h360/4.00x5.00": ""
-*no.PageSize w288h432/4.00x6.00": ""
-*no.PageSize w288h468/4.00x6.50": ""
-*no.PageSize w288h936/4.00x13.00": ""
-*no.Translation Resolution/Resolution: ""
-*no.Resolution 203dpi/203dpi: ""
-*no.Resolution 300dpi/300dpi: ""
-*no.Resolution 600dpi/600dpi: ""
-*no.Translation MediaType/Media Type: ""
-*no.MediaType Saved/Skriverstandard: ""
-*no.MediaType Thermal/Thermal Transfer Media: ""
-*no.MediaType Direct/Direct Thermal Media: ""
-*no.Translation PrinterSettings/Printer Settings: ""
-*no.Translation Darkness/Darkness: ""
-*no.Darkness -1/Skriverstandard: ""
-*no.Darkness 1/1: ""
-*no.Darkness 2/2: ""
-*no.Darkness 3/3: ""
-*no.Darkness 4/4: ""
-*no.Darkness 5/5: ""
-*no.Darkness 6/6: ""
-*no.Darkness 7/7: ""
-*no.Darkness 8/8: ""
-*no.Darkness 9/9: ""
-*no.Darkness 10/10: ""
-*no.Darkness 11/11: ""
-*no.Darkness 12/12: ""
-*no.Darkness 13/13: ""
-*no.Darkness 14/14: ""
-*no.Darkness 15/15: ""
-*no.Darkness 16/16: ""
-*no.Darkness 17/17: ""
-*no.Darkness 18/18: ""
-*no.Darkness 19/19: ""
-*no.Darkness 20/20: ""
-*no.Darkness 21/21: ""
-*no.Darkness 22/22: ""
-*no.Darkness 23/23: ""
-*no.Darkness 24/24: ""
-*no.Darkness 25/25: ""
-*no.Darkness 26/26: ""
-*no.Darkness 27/27: ""
-*no.Darkness 28/28: ""
-*no.Darkness 29/29: ""
-*no.Darkness 30/30: ""
-*no.Translation zePrintRate/Print Rate: ""
-*no.zePrintRate Default/Skriverstandard: ""
-*no.zePrintRate 1/1 inch/sec.: ""
-*no.zePrintRate 1.5/1.5 inch/sec.: ""
-*no.zePrintRate 2/2 inches/sec.: ""
-*no.zePrintRate 2.5/2.5 inches/sec.: ""
-*no.zePrintRate 3/3 inches/sec.: ""
-*no.zePrintRate 4/4 inches/sec.: ""
-*no.zePrintRate 5/5 inches/sec.: ""
-*no.zePrintRate 6/6 inches/sec.: ""
-*pt.Translation Manufacturer/Zebra: ""
-*pt.Translation ModelName/Zebra EPL2 Label Printer: ""
-*pt.Translation ShortNickName/Zebra EPL2 Label Printer: ""
-*pt.Translation NickName/Zebra EPL2 Label Printer, 1.4: ""
-*pt.Translation PageSize/Media Size: ""
-*pt.PageSize w90h18/1.25x0.25": ""
-*pt.PageSize w90h162/1.25x2.25": ""
-*pt.PageSize w108h18/1.50x0.25": ""
-*pt.PageSize w108h36/1.50x0.50": ""
-*pt.PageSize w108h72/1.50x1.00": ""
-*pt.PageSize w108h144/1.50x2.00": ""
-*pt.PageSize w144h26/2.00x0.37": ""
-*pt.PageSize w144h36/2.00x0.50": ""
-*pt.PageSize w144h72/2.00x1.00": ""
-*pt.PageSize w144h90/2.00x1.25": ""
-*pt.PageSize w144h288/2.00x4.00": ""
-*pt.PageSize w144h396/2.00x5.50": ""
-*pt.PageSize w162h36/2.25x0.50": ""
-*pt.PageSize w162h90/2.25x1.25": ""
-*pt.PageSize w162h288/2.25x4.00": ""
-*pt.PageSize w162h396/2.25x5.50": ""
-*pt.PageSize w171h396/2.38x5.50": ""
-*pt.PageSize w180h72/2.50x1.00": ""
-*pt.PageSize w180h144/2.50x2.00": ""
-*pt.PageSize w198h90/2.75x1.25": ""
-*pt.PageSize w216h72/3.00x1.00": ""
-*pt.PageSize w216h90/3.00x1.25": ""
-*pt.PageSize w216h144/3.00x2.00": ""
-*pt.PageSize w216h216/3.00x3.00": ""
-*pt.PageSize w216h360/3.00x5.00": ""
-*pt.PageSize w234h144/3.25x2.00": ""
-*pt.PageSize w234h360/3.25x5.00": ""
-*pt.PageSize w234h396/3.25x5.50": ""
-*pt.PageSize w234h419/3.25x5.83": ""
-*pt.PageSize w234h563/3.25x7.83": ""
-*pt.PageSize w252h72/3.50x1.00": ""
-*pt.PageSize w288h72/4.00x1.00": ""
-*pt.PageSize w288h144/4.00x2.00": ""
-*pt.PageSize w288h180/4.00x2.50": ""
-*pt.PageSize w288h216/4.00x3.00": ""
-*pt.PageSize w288h288/4.00x4.00": ""
-*pt.PageSize w288h360/4.00x5.00": ""
-*pt.PageSize w288h432/4.00x6.00": ""
-*pt.PageSize w288h468/4.00x6.50": ""
-*pt.PageSize w288h936/4.00x13.00": ""
-*pt.Translation Resolution/Resolution: ""
-*pt.Resolution 203dpi/203dpi: ""
-*pt.Resolution 300dpi/300dpi: ""
-*pt.Resolution 600dpi/600dpi: ""
-*pt.Translation MediaType/Media Type: ""
-*pt.MediaType Saved/Rápido: ""
-*pt.MediaType Thermal/Thermal Transfer Media: ""
-*pt.MediaType Direct/Direct Thermal Media: ""
-*pt.Translation PrinterSettings/Printer Settings: ""
-*pt.Translation Darkness/Darkness: ""
-*pt.Darkness -1/Rápido: ""
-*pt.Darkness 1/1: ""
-*pt.Darkness 2/2: ""
-*pt.Darkness 3/3: ""
-*pt.Darkness 4/4: ""
-*pt.Darkness 5/5: ""
-*pt.Darkness 6/6: ""
-*pt.Darkness 7/7: ""
-*pt.Darkness 8/8: ""
-*pt.Darkness 9/9: ""
-*pt.Darkness 10/10: ""
-*pt.Darkness 11/11: ""
-*pt.Darkness 12/12: ""
-*pt.Darkness 13/13: ""
-*pt.Darkness 14/14: ""
-*pt.Darkness 15/15: ""
-*pt.Darkness 16/16: ""
-*pt.Darkness 17/17: ""
-*pt.Darkness 18/18: ""
-*pt.Darkness 19/19: ""
-*pt.Darkness 20/20: ""
-*pt.Darkness 21/21: ""
-*pt.Darkness 22/22: ""
-*pt.Darkness 23/23: ""
-*pt.Darkness 24/24: ""
-*pt.Darkness 25/25: ""
-*pt.Darkness 26/26: ""
-*pt.Darkness 27/27: ""
-*pt.Darkness 28/28: ""
-*pt.Darkness 29/29: ""
-*pt.Darkness 30/30: ""
-*pt.Translation zePrintRate/Print Rate: ""
-*pt.zePrintRate Default/Rápido: ""
-*pt.zePrintRate 1/1 inch/sec.: ""
-*pt.zePrintRate 1.5/1.5 inch/sec.: ""
-*pt.zePrintRate 2/2 inches/sec.: ""
-*pt.zePrintRate 2.5/2.5 inches/sec.: ""
-*pt.zePrintRate 3/3 inches/sec.: ""
-*pt.zePrintRate 4/4 inches/sec.: ""
-*pt.zePrintRate 5/5 inches/sec.: ""
-*pt.zePrintRate 6/6 inches/sec.: ""
-*pt_BR.Translation Manufacturer/Zebra: ""
-*pt_BR.Translation ModelName/Zebra EPL2 Label Printer: ""
-*pt_BR.Translation ShortNickName/Zebra EPL2 Label Printer: ""
-*pt_BR.Translation NickName/Zebra EPL2 Label Printer, 1.4: ""
-*pt_BR.Translation PageSize/Media Size: ""
-*pt_BR.PageSize w90h18/1.25x0.25": ""
-*pt_BR.PageSize w90h162/1.25x2.25": ""
-*pt_BR.PageSize w108h18/1.50x0.25": ""
-*pt_BR.PageSize w108h36/1.50x0.50": ""
-*pt_BR.PageSize w108h72/1.50x1.00": ""
-*pt_BR.PageSize w108h144/1.50x2.00": ""
-*pt_BR.PageSize w144h26/2.00x0.37": ""
-*pt_BR.PageSize w144h36/2.00x0.50": ""
-*pt_BR.PageSize w144h72/2.00x1.00": ""
-*pt_BR.PageSize w144h90/2.00x1.25": ""
-*pt_BR.PageSize w144h288/2.00x4.00": ""
-*pt_BR.PageSize w144h396/2.00x5.50": ""
-*pt_BR.PageSize w162h36/2.25x0.50": ""
-*pt_BR.PageSize w162h90/2.25x1.25": ""
-*pt_BR.PageSize w162h288/2.25x4.00": ""
-*pt_BR.PageSize w162h396/2.25x5.50": ""
-*pt_BR.PageSize w171h396/2.38x5.50": ""
-*pt_BR.PageSize w180h72/2.50x1.00": ""
-*pt_BR.PageSize w180h144/2.50x2.00": ""
-*pt_BR.PageSize w198h90/2.75x1.25": ""
-*pt_BR.PageSize w216h72/3.00x1.00": ""
-*pt_BR.PageSize w216h90/3.00x1.25": ""
-*pt_BR.PageSize w216h144/3.00x2.00": ""
-*pt_BR.PageSize w216h216/3.00x3.00": ""
-*pt_BR.PageSize w216h360/3.00x5.00": ""
-*pt_BR.PageSize w234h144/3.25x2.00": ""
-*pt_BR.PageSize w234h360/3.25x5.00": ""
-*pt_BR.PageSize w234h396/3.25x5.50": ""
-*pt_BR.PageSize w234h419/3.25x5.83": ""
-*pt_BR.PageSize w234h563/3.25x7.83": ""
-*pt_BR.PageSize w252h72/3.50x1.00": ""
-*pt_BR.PageSize w288h72/4.00x1.00": ""
-*pt_BR.PageSize w288h144/4.00x2.00": ""
-*pt_BR.PageSize w288h180/4.00x2.50": ""
-*pt_BR.PageSize w288h216/4.00x3.00": ""
-*pt_BR.PageSize w288h288/4.00x4.00": ""
-*pt_BR.PageSize w288h360/4.00x5.00": ""
-*pt_BR.PageSize w288h432/4.00x6.00": ""
-*pt_BR.PageSize w288h468/4.00x6.50": ""
-*pt_BR.PageSize w288h936/4.00x13.00": ""
-*pt_BR.Translation Resolution/Resolution: ""
-*pt_BR.Resolution 203dpi/203dpi: ""
-*pt_BR.Resolution 300dpi/300dpi: ""
-*pt_BR.Resolution 600dpi/600dpi: ""
-*pt_BR.Translation MediaType/Media Type: ""
-*pt_BR.MediaType Saved/Rápido: ""
-*pt_BR.MediaType Thermal/Thermal Transfer Media: ""
-*pt_BR.MediaType Direct/Direct Thermal Media: ""
-*pt_BR.Translation PrinterSettings/Printer Settings: ""
-*pt_BR.Translation Darkness/Darkness: ""
-*pt_BR.Darkness -1/Rápido: ""
-*pt_BR.Darkness 1/1: ""
-*pt_BR.Darkness 2/2: ""
-*pt_BR.Darkness 3/3: ""
-*pt_BR.Darkness 4/4: ""
-*pt_BR.Darkness 5/5: ""
-*pt_BR.Darkness 6/6: ""
-*pt_BR.Darkness 7/7: ""
-*pt_BR.Darkness 8/8: ""
-*pt_BR.Darkness 9/9: ""
-*pt_BR.Darkness 10/10: ""
-*pt_BR.Darkness 11/11: ""
-*pt_BR.Darkness 12/12: ""
-*pt_BR.Darkness 13/13: ""
-*pt_BR.Darkness 14/14: ""
-*pt_BR.Darkness 15/15: ""
-*pt_BR.Darkness 16/16: ""
-*pt_BR.Darkness 17/17: ""
-*pt_BR.Darkness 18/18: ""
-*pt_BR.Darkness 19/19: ""
-*pt_BR.Darkness 20/20: ""
-*pt_BR.Darkness 21/21: ""
-*pt_BR.Darkness 22/22: ""
-*pt_BR.Darkness 23/23: ""
-*pt_BR.Darkness 24/24: ""
-*pt_BR.Darkness 25/25: ""
-*pt_BR.Darkness 26/26: ""
-*pt_BR.Darkness 27/27: ""
-*pt_BR.Darkness 28/28: ""
-*pt_BR.Darkness 29/29: ""
-*pt_BR.Darkness 30/30: ""
-*pt_BR.Translation zePrintRate/Print Rate: ""
-*pt_BR.zePrintRate Default/Rápido: ""
-*pt_BR.zePrintRate 1/1 inch/sec.: ""
-*pt_BR.zePrintRate 1.5/1.5 inch/sec.: ""
-*pt_BR.zePrintRate 2/2 inches/sec.: ""
-*pt_BR.zePrintRate 2.5/2.5 inches/sec.: ""
-*pt_BR.zePrintRate 3/3 inches/sec.: ""
-*pt_BR.zePrintRate 4/4 inches/sec.: ""
-*pt_BR.zePrintRate 5/5 inches/sec.: ""
-*pt_BR.zePrintRate 6/6 inches/sec.: ""
-*sv.Translation Manufacturer/Zebra: ""
-*sv.Translation ModelName/Zebra EPL2 Label Printer: ""
-*sv.Translation ShortNickName/Zebra EPL2 Label Printer: ""
-*sv.Translation NickName/Zebra EPL2 Label Printer, 1.4: ""
-*sv.Translation PageSize/Media Size: ""
-*sv.PageSize w90h18/1.25x0.25": ""
-*sv.PageSize w90h162/1.25x2.25": ""
-*sv.PageSize w108h18/1.50x0.25": ""
-*sv.PageSize w108h36/1.50x0.50": ""
-*sv.PageSize w108h72/1.50x1.00": ""
-*sv.PageSize w108h144/1.50x2.00": ""
-*sv.PageSize w144h26/2.00x0.37": ""
-*sv.PageSize w144h36/2.00x0.50": ""
-*sv.PageSize w144h72/2.00x1.00": ""
-*sv.PageSize w144h90/2.00x1.25": ""
-*sv.PageSize w144h288/2.00x4.00": ""
-*sv.PageSize w144h396/2.00x5.50": ""
-*sv.PageSize w162h36/2.25x0.50": ""
-*sv.PageSize w162h90/2.25x1.25": ""
-*sv.PageSize w162h288/2.25x4.00": ""
-*sv.PageSize w162h396/2.25x5.50": ""
-*sv.PageSize w171h396/2.38x5.50": ""
-*sv.PageSize w180h72/2.50x1.00": ""
-*sv.PageSize w180h144/2.50x2.00": ""
-*sv.PageSize w198h90/2.75x1.25": ""
-*sv.PageSize w216h72/3.00x1.00": ""
-*sv.PageSize w216h90/3.00x1.25": ""
-*sv.PageSize w216h144/3.00x2.00": ""
-*sv.PageSize w216h216/3.00x3.00": ""
-*sv.PageSize w216h360/3.00x5.00": ""
-*sv.PageSize w234h144/3.25x2.00": ""
-*sv.PageSize w234h360/3.25x5.00": ""
-*sv.PageSize w234h396/3.25x5.50": ""
-*sv.PageSize w234h419/3.25x5.83": ""
-*sv.PageSize w234h563/3.25x7.83": ""
-*sv.PageSize w252h72/3.50x1.00": ""
-*sv.PageSize w288h72/4.00x1.00": ""
-*sv.PageSize w288h144/4.00x2.00": ""
-*sv.PageSize w288h180/4.00x2.50": ""
-*sv.PageSize w288h216/4.00x3.00": ""
-*sv.PageSize w288h288/4.00x4.00": ""
-*sv.PageSize w288h360/4.00x5.00": ""
-*sv.PageSize w288h432/4.00x6.00": ""
-*sv.PageSize w288h468/4.00x6.50": ""
-*sv.PageSize w288h936/4.00x13.00": ""
-*sv.Translation Resolution/Resolution: ""
-*sv.Resolution 203dpi/203dpi: ""
-*sv.Resolution 300dpi/300dpi: ""
-*sv.Resolution 600dpi/600dpi: ""
-*sv.Translation MediaType/Media Type: ""
-*sv.MediaType Saved/Skrivarstandard: ""
-*sv.MediaType Thermal/Thermal Transfer Media: ""
-*sv.MediaType Direct/Direct Thermal Media: ""
-*sv.Translation PrinterSettings/Printer Settings: ""
-*sv.Translation Darkness/Darkness: ""
-*sv.Darkness -1/Skrivarstandard: ""
-*sv.Darkness 1/1: ""
-*sv.Darkness 2/2: ""
-*sv.Darkness 3/3: ""
-*sv.Darkness 4/4: ""
-*sv.Darkness 5/5: ""
-*sv.Darkness 6/6: ""
-*sv.Darkness 7/7: ""
-*sv.Darkness 8/8: ""
-*sv.Darkness 9/9: ""
-*sv.Darkness 10/10: ""
-*sv.Darkness 11/11: ""
-*sv.Darkness 12/12: ""
-*sv.Darkness 13/13: ""
-*sv.Darkness 14/14: ""
-*sv.Darkness 15/15: ""
-*sv.Darkness 16/16: ""
-*sv.Darkness 17/17: ""
-*sv.Darkness 18/18: ""
-*sv.Darkness 19/19: ""
-*sv.Darkness 20/20: ""
-*sv.Darkness 21/21: ""
-*sv.Darkness 22/22: ""
-*sv.Darkness 23/23: ""
-*sv.Darkness 24/24: ""
-*sv.Darkness 25/25: ""
-*sv.Darkness 26/26: ""
-*sv.Darkness 27/27: ""
-*sv.Darkness 28/28: ""
-*sv.Darkness 29/29: ""
-*sv.Darkness 30/30: ""
-*sv.Translation zePrintRate/Print Rate: ""
-*sv.zePrintRate Default/Skrivarstandard: ""
-*sv.zePrintRate 1/1 inch/sec.: ""
-*sv.zePrintRate 1.5/1.5 inch/sec.: ""
-*sv.zePrintRate 2/2 inches/sec.: ""
-*sv.zePrintRate 2.5/2.5 inches/sec.: ""
-*sv.zePrintRate 3/3 inches/sec.: ""
-*sv.zePrintRate 4/4 inches/sec.: ""
-*sv.zePrintRate 5/5 inches/sec.: ""
-*sv.zePrintRate 6/6 inches/sec.: ""
-*zh.Translation Manufacturer/Zebra: ""
-*zh.Translation ModelName/Zebra EPL2 Label Printer: ""
-*zh.Translation ShortNickName/Zebra EPL2 Label Printer: ""
-*zh.Translation NickName/Zebra EPL2 Label Printer, 1.4: ""
-*zh.Translation PageSize/Page Size: ""
-*zh.PageSize w90h18/1.25x0.25": ""
-*zh.PageSize w90h162/1.25x2.25": ""
-*zh.PageSize w108h18/1.50x0.25": ""
-*zh.PageSize w108h36/1.50x0.50": ""
-*zh.PageSize w108h72/1.50x1.00": ""
-*zh.PageSize w108h144/1.50x2.00": ""
-*zh.PageSize w144h26/2.00x0.37": ""
-*zh.PageSize w144h36/2.00x0.50": ""
-*zh.PageSize w144h72/2.00x1.00": ""
-*zh.PageSize w144h90/2.00x1.25": ""
-*zh.PageSize w144h288/2.00x4.00": ""
-*zh.PageSize w144h396/2.00x5.50": ""
-*zh.PageSize w162h36/2.25x0.50": ""
-*zh.PageSize w162h90/2.25x1.25": ""
-*zh.PageSize w162h288/2.25x4.00": ""
-*zh.PageSize w162h396/2.25x5.50": ""
-*zh.PageSize w171h396/2.38x5.50": ""
-*zh.PageSize w180h72/2.50x1.00": ""
-*zh.PageSize w180h144/2.50x2.00": ""
-*zh.PageSize w198h90/2.75x1.25": ""
-*zh.PageSize w216h72/3.00x1.00": ""
-*zh.PageSize w216h90/3.00x1.25": ""
-*zh.PageSize w216h144/3.00x2.00": ""
-*zh.PageSize w216h216/3.00x3.00": ""
-*zh.PageSize w216h360/3.00x5.00": ""
-*zh.PageSize w234h144/3.25x2.00": ""
-*zh.PageSize w234h360/3.25x5.00": ""
-*zh.PageSize w234h396/3.25x5.50": ""
-*zh.PageSize w234h419/3.25x5.83": ""
-*zh.PageSize w234h563/3.25x7.83": ""
-*zh.PageSize w252h72/3.50x1.00": ""
-*zh.PageSize w288h72/4.00x1.00": ""
-*zh.PageSize w288h144/4.00x2.00": ""
-*zh.PageSize w288h180/4.00x2.50": ""
-*zh.PageSize w288h216/4.00x3.00": ""
-*zh.PageSize w288h288/4.00x4.00": ""
-*zh.PageSize w288h360/4.00x5.00": ""
-*zh.PageSize w288h432/4.00x6.00": ""
-*zh.PageSize w288h468/4.00x6.50": ""
-*zh.PageSize w288h936/4.00x13.00": ""
-*zh.Translation Resolution/Resolution: ""
-*zh.Resolution 203dpi/203dpi: ""
-*zh.Resolution 300dpi/300dpi: ""
-*zh.Resolution 600dpi/600dpi: ""
-*zh.Translation MediaType/Media Type: ""
-*zh.MediaType Saved/Printer's Current Setting: ""
-*zh.MediaType Thermal/Thermal Transfer Media: ""
-*zh.MediaType Direct/Direct Thermal Media: ""
-*zh.Translation PrinterSettings/Printer Settings: ""
-*zh.Translation Darkness/Darkness: ""
-*zh.Darkness -1/Printer's Current Setting: ""
-*zh.Darkness 1/1: ""
-*zh.Darkness 2/2: ""
-*zh.Darkness 3/3: ""
-*zh.Darkness 4/4: ""
-*zh.Darkness 5/5: ""
-*zh.Darkness 6/6: ""
-*zh.Darkness 7/7: ""
-*zh.Darkness 8/8: ""
-*zh.Darkness 9/9: ""
-*zh.Darkness 10/10: ""
-*zh.Darkness 11/11: ""
-*zh.Darkness 12/12: ""
-*zh.Darkness 13/13: ""
-*zh.Darkness 14/14: ""
-*zh.Darkness 15/15: ""
-*zh.Darkness 16/16: ""
-*zh.Darkness 17/17: ""
-*zh.Darkness 18/18: ""
-*zh.Darkness 19/19: ""
-*zh.Darkness 20/20: ""
-*zh.Darkness 21/21: ""
-*zh.Darkness 22/22: ""
-*zh.Darkness 23/23: ""
-*zh.Darkness 24/24: ""
-*zh.Darkness 25/25: ""
-*zh.Darkness 26/26: ""
-*zh.Darkness 27/27: ""
-*zh.Darkness 28/28: ""
-*zh.Darkness 29/29: ""
-*zh.Darkness 30/30: ""
-*zh.Translation zePrintRate/Print Rate: ""
-*zh.zePrintRate Default/Printer's Current Setting: ""
-*zh.zePrintRate 1/1 inch/sec.: ""
-*zh.zePrintRate 1.5/1.5 inch/sec.: ""
-*zh.zePrintRate 2/2 inches/sec.: ""
-*zh.zePrintRate 2.5/2.5 inches/sec.: ""
-*zh.zePrintRate 3/3 inches/sec.: ""
-*zh.zePrintRate 4/4 inches/sec.: ""
-*zh.zePrintRate 5/5 inches/sec.: ""
-*zh.zePrintRate 6/6 inches/sec.: ""
-*zh_TW.Translation Manufacturer/Zebra: ""
-*zh_TW.Translation ModelName/Zebra EPL2 Label Printer: ""
-*zh_TW.Translation ShortNickName/Zebra EPL2 Label Printer: ""
-*zh_TW.Translation NickName/Zebra EPL2 Label Printer, 1.4: ""
-*zh_TW.Translation PageSize/Page Size: ""
-*zh_TW.PageSize w90h18/1.25x0.25": ""
-*zh_TW.PageSize w90h162/1.25x2.25": ""
-*zh_TW.PageSize w108h18/1.50x0.25": ""
-*zh_TW.PageSize w108h36/1.50x0.50": ""
-*zh_TW.PageSize w108h72/1.50x1.00": ""
-*zh_TW.PageSize w108h144/1.50x2.00": ""
-*zh_TW.PageSize w144h26/2.00x0.37": ""
-*zh_TW.PageSize w144h36/2.00x0.50": ""
-*zh_TW.PageSize w144h72/2.00x1.00": ""
-*zh_TW.PageSize w144h90/2.00x1.25": ""
-*zh_TW.PageSize w144h288/2.00x4.00": ""
-*zh_TW.PageSize w144h396/2.00x5.50": ""
-*zh_TW.PageSize w162h36/2.25x0.50": ""
-*zh_TW.PageSize w162h90/2.25x1.25": ""
-*zh_TW.PageSize w162h288/2.25x4.00": ""
-*zh_TW.PageSize w162h396/2.25x5.50": ""
-*zh_TW.PageSize w171h396/2.38x5.50": ""
-*zh_TW.PageSize w180h72/2.50x1.00": ""
-*zh_TW.PageSize w180h144/2.50x2.00": ""
-*zh_TW.PageSize w198h90/2.75x1.25": ""
-*zh_TW.PageSize w216h72/3.00x1.00": ""
-*zh_TW.PageSize w216h90/3.00x1.25": ""
-*zh_TW.PageSize w216h144/3.00x2.00": ""
-*zh_TW.PageSize w216h216/3.00x3.00": ""
-*zh_TW.PageSize w216h360/3.00x5.00": ""
-*zh_TW.PageSize w234h144/3.25x2.00": ""
-*zh_TW.PageSize w234h360/3.25x5.00": ""
-*zh_TW.PageSize w234h396/3.25x5.50": ""
-*zh_TW.PageSize w234h419/3.25x5.83": ""
-*zh_TW.PageSize w234h563/3.25x7.83": ""
-*zh_TW.PageSize w252h72/3.50x1.00": ""
-*zh_TW.PageSize w288h72/4.00x1.00": ""
-*zh_TW.PageSize w288h144/4.00x2.00": ""
-*zh_TW.PageSize w288h180/4.00x2.50": ""
-*zh_TW.PageSize w288h216/4.00x3.00": ""
-*zh_TW.PageSize w288h288/4.00x4.00": ""
-*zh_TW.PageSize w288h360/4.00x5.00": ""
-*zh_TW.PageSize w288h432/4.00x6.00": ""
-*zh_TW.PageSize w288h468/4.00x6.50": ""
-*zh_TW.PageSize w288h936/4.00x13.00": ""
-*zh_TW.Translation Resolution/Resolution: ""
-*zh_TW.Resolution 203dpi/203dpi: ""
-*zh_TW.Resolution 300dpi/300dpi: ""
-*zh_TW.Resolution 600dpi/600dpi: ""
-*zh_TW.Translation MediaType/Media Type: ""
-*zh_TW.MediaType Saved/快速: ""
-*zh_TW.MediaType Thermal/Thermal Transfer Media: ""
-*zh_TW.MediaType Direct/Direct Thermal Media: ""
-*zh_TW.Translation PrinterSettings/Printer Settings: ""
-*zh_TW.Translation Darkness/Darkness: ""
-*zh_TW.Darkness -1/快速: ""
-*zh_TW.Darkness 1/1: ""
-*zh_TW.Darkness 2/2: ""
-*zh_TW.Darkness 3/3: ""
-*zh_TW.Darkness 4/4: ""
-*zh_TW.Darkness 5/5: ""
-*zh_TW.Darkness 6/6: ""
-*zh_TW.Darkness 7/7: ""
-*zh_TW.Darkness 8/8: ""
-*zh_TW.Darkness 9/9: ""
-*zh_TW.Darkness 10/10: ""
-*zh_TW.Darkness 11/11: ""
-*zh_TW.Darkness 12/12: ""
-*zh_TW.Darkness 13/13: ""
-*zh_TW.Darkness 14/14: ""
-*zh_TW.Darkness 15/15: ""
-*zh_TW.Darkness 16/16: ""
-*zh_TW.Darkness 17/17: ""
-*zh_TW.Darkness 18/18: ""
-*zh_TW.Darkness 19/19: ""
-*zh_TW.Darkness 20/20: ""
-*zh_TW.Darkness 21/21: ""
-*zh_TW.Darkness 22/22: ""
-*zh_TW.Darkness 23/23: ""
-*zh_TW.Darkness 24/24: ""
-*zh_TW.Darkness 25/25: ""
-*zh_TW.Darkness 26/26: ""
-*zh_TW.Darkness 27/27: ""
-*zh_TW.Darkness 28/28: ""
-*zh_TW.Darkness 29/29: ""
-*zh_TW.Darkness 30/30: ""
-*zh_TW.Translation zePrintRate/Print Rate: ""
-*zh_TW.zePrintRate Default/快速: ""
-*zh_TW.zePrintRate 1/1 inch/sec.: ""
-*zh_TW.zePrintRate 1.5/1.5 inch/sec.: ""
-*zh_TW.zePrintRate 2/2 inches/sec.: ""
-*zh_TW.zePrintRate 2.5/2.5 inches/sec.: ""
-*zh_TW.zePrintRate 3/3 inches/sec.: ""
-*zh_TW.zePrintRate 4/4 inches/sec.: ""
-*zh_TW.zePrintRate 5/5 inches/sec.: ""
-*zh_TW.zePrintRate 6/6 inches/sec.: ""
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(1.05)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
-*Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
-*Font Bookman-Demi: Standard "(1.05)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
-*Font Bookman-Light: Standard "(1.05)" Standard ROM
-*Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
-*Font Courier: Standard "(1.05)" Standard ROM
-*Font Courier-Bold: Standard "(1.05)" Standard ROM
-*Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Courier-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica: Standard "(1.05)" Standard ROM
-*Font Helvetica-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
-*Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
-*Font Palatino-Bold: Standard "(1.05)" Standard ROM
-*Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Palatino-Italic: Standard "(1.05)" Standard ROM
-*Font Palatino-Roman: Standard "(1.05)" Standard ROM
-*Font Symbol: Special "(001.005)" Special ROM
-*Font Times-Bold: Standard "(1.05)" Standard ROM
-*Font Times-BoldItalic: Standard "(1.05)" Standard ROM
-*Font Times-Italic: Standard "(1.05)" Standard ROM
-*Font Times-Roman: Standard "(1.05)" Standard ROM
-*Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
-*Font ZapfDingbats: Special "(001.005)" Special ROM
-*% End of ZEBRAEP2.PPD, 67437 bytes.
index d6792081760c2aeea83d1d07a6df1f91bb282f7a..24611c4376bfbacd211228cd3958296ed3afaf13 100644 (file)
@@ -118,6 +118,10 @@ install:   all install-data install-headers install-libs install-exec
 
 install-data:
        $(INSTALL_DIR) $(DATADIR)/drv
+       $(INSTALL_DATA) sample.drv $(DATADIR)/drv
+       if test `uname` = Darwin; then \
+               $(INSTALL_DIR) /Library/Printers/PPDs.drv; \
+       fi
 
 
 #
@@ -203,7 +207,11 @@ uninstall:
        $(RM) $(BINDIR)/ppdpo
        $(RM) $(SERVERBIN)/driver/drv
        $(RMDIR) $(SERVERBIN)/driver
+       $(RM) $(DATADIR)/drv/sample.drv
        $(RMDIR) $(DATADIR)/drv
+       if test `uname` = Darwin; then \
+               $(RMDIR) /Library/Printers/PPDs.drv; \
+       fi
        $(RM) $(LIBDIR)/libcupsppdc.1.dylib
        $(RM) $(LIBDIR)/libcupsppdc.a
        $(RM) $(LIBDIR)/libcupsppdc.dylib
similarity index 100%
rename from ppd/sample.drv
rename to ppdc/sample.drv
index c9e5d28d25080bcf16804daca1358da4bc08ef3d..9676778602ac3e5943acbc3a6528d09a3c6cadce 100755 (executable)
@@ -164,8 +164,8 @@ root=`dirname $cwd`
 # will usually cause tests to fail erroneously...
 #
 
-typeset +x LPDEST
-typeset +x PRINTER
+unset LPDEST
+unset PRINTER
 
 #
 # See if we want to use valgrind...