home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 6 / 06.iso / b / b006 / 4.ddi / DICT4720.CTL < prev    next >
Encoding:
Text File  |  1991-06-17  |  4.3 KB  |  151 lines

  1. /**[f******************************************************************
  2.  * Dictionary install set control file
  3.  *
  4.  * Copyright (C) 1990 Aldus Corporation.  All rights reserved.
  5.  * Company confidential.
  6.  *
  7.  * ABSTRACT:
  8.  * This is the PC installer (aldsetup) control file for PageMaker 4.0.
  9.  *
  10.  * All product-specific text goes in the .CTL file.  Nothing in the .RC
  11.  * file should be product-specific.  Both the .CTL and the .RC files
  12.  * must be localized.
  13.  *
  14.  * When localizing, only text in "double quotes" need be translated.
  15.  * (Although, if the names of files on the distribution diskettes have
  16.  * been changed, they'll have to be changed in this control file too.)
  17.  *
  18.  * $Revision:   1.20  $
  19.  * $Date:   13 Nov 1990 16:03:36  $
  20.  **f]*****************************************************************/
  21.  
  22. /* The PRODUCT command is required.
  23.  */
  24. PRODUCT "PageMaker 4.0"
  25.  
  26. VERSIONREQ "1.01"     /* minimum installer version required */
  27.  
  28. /* There is one DISK statement for each distribution disk.  It gives
  29.  * the name by which the user will be asked for the disk, and a list
  30.  * of the files on the disk.  In addition to the file names, the list
  31.  * of files contains the sizes of the files (uncompressed, in bytes)
  32.  * and the subdirectories in which the files can be found.  If the
  33.  * file is in the root, the subdirectory can be left off.  The options
  34.  * CHECKDATE or NOREPLACE can be specified after the subdirectory.  Lines
  35.  * are separated by commas.
  36.  *
  37.  * This part of the control file will be created automatically by the
  38.  * Disk Builder Utility.
  39.  */
  40.  
  41. DISK "Dict Disk 1"
  42.    {
  43.    (C)ALDUS.'91         62,
  44.    ALDUKN.BP~        35700  "ALDUS\LEGAL"  CHECKDATE,
  45.    ALDUKL.NF~           51  "ALDUS\LEGAL"  CHECKDATE,
  46.    ALDUKL01.VP~     290816  "ALDUS\LEGAL"  CHECKDATE,
  47.    ALDUKL.UD~         1024  "ALDUS\LEGAL"  NOREPLACE,
  48.    aldsetup.exe     169216  CHECKDATE,
  49.    aldsetrs.rsl      29184  CHECKDATE,
  50.    Readme.txt        30343,
  51.    DICT412.ctl        4538,
  52.    aldwpls.dl~      151792  CHECKDATE
  53.    }
  54.  
  55.  
  56. DISK "Dict Disk 2"
  57.    {
  58.    (C)ALDUS.'91         62,
  59.    ALDUKM.NF~           51  "ALDUS\LEG-MED"  CHECKDATE,
  60.    ALDUKM02.VP~     367616  "ALDUS\LEG-MED"  CHECKDATE,
  61.    ALDUKM.UD~         1024  "ALDUS\LEG-MED"  NOREPLACE,
  62.    ALDUKN00.VP~     259072  "ALDUS\STANDARD"  CHECKDATE,
  63.    ALDUKN.NF~           58  "ALDUS\STANDARD"  CHECKDATE,
  64.    ALDUKN.UD~         1024  "ALDUS\STANDARD"  NOREPLACE
  65.    }
  66.  
  67.  
  68.  
  69. /* Specify the initial values for installer variables.  The lines of
  70.  * text are the prompts to be used in CONFIRMDIR commands.
  71.  */
  72.  
  73.  
  74. PACKAGE PROLOGUE "" SELECTED INVISIBLE
  75.     {
  76.     /* Initialize the var MustReboot.  It is later set to TRUE if the user
  77.      * chooses to have the installer modify his or her system files
  78.      */
  79.     SET MustReboot "FALSE"
  80.  
  81.     SET ReadmeMenu "FALSE"      /* Set to TRUE when menu item added */
  82.     GETALDDIR AldDir
  83.     CONCAT AldDir "SETUP" SetupDir
  84.  
  85.  
  86.     /*  Add the README menu item to the VIEW menu       */
  87.     ONINSTALL
  88.         {
  89.         if ReadmeMenu EQS "FALSE"
  90.             {
  91.             WINDOWSMENU SetupDir "README.TXT" "&README.TXT" 
  92.             SET ReadmeMenu "TRUE"
  93.             }
  94.         }
  95.     }   /* end of Prologue pkg */
  96.  
  97.  
  98. PACKAGE Dictionaries "Dictionaries" SELECTED 
  99.     {
  100.     CONFIRMDIR AldDir
  101.     /* Install dictionaries */
  102.     SELECT2 LANGUAGES "Select Dictionary Languages" AldDir
  103.     {
  104.     TEXT
  105.         {
  106.         "You can install only one of the dictionaries listed below."
  107.         }
  108.     ITEMS MIN 1
  109.         {
  110.          ALDUKN.BP~+ALDUKN.UD~+ALDUKN.NF~+ALDUKN00.VP~ "UK Standard" "UKENGLSH" "6",
  111.          ALDUKN.BP~+ALDUKL.UD~+ALDUKL.NF~+ALDUKL01.VP~ "UK Legal" "UKENGLSH" "6",
  112.          ALDUKN.BP~+ALDUKM.UD~+ALDUKM.NF~+ALDUKM02.VP~ "UK Medical" "UKENGLSH" "6"
  113.         }
  114.     HELP
  115.         {
  116.         "Select the dictionaries you want to install."
  117.         "You can install only one of the dictionaries in the list."
  118.         "Both the Legal-Medical and Legal dictionaries contain"
  119.         "the base UK English dictionary."
  120.         "Clicking the Cancel button will bring you back to the"
  121.         "Main Window and allow you to begin the installation again."
  122.         }
  123.     } 
  124.     FILES AldDir
  125.         {
  126.         ALDWPLS.DL~
  127.         }
  128.     FILES SetupDir
  129.         {
  130.         README.txt
  131.         }
  132.     }
  133.  
  134. DIALOG Successful "OK"
  135. {
  136.     TEXT
  137.     {
  138.     "Installation complete."
  139.     }
  140. }
  141.  
  142. PACKAGE Last "" SELECTED INVISIBLE
  143.     {
  144.     ONINSTALL
  145.         {
  146.         DISPLAY Successful
  147.         }
  148.     }
  149.  
  150.  
  151.