home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 6 / 06.iso / b / b006 / 8.ddi / DICT4720.CTL < prev    next >
Encoding:
Text File  |  1991-06-17  |  4.4 KB  |  156 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.    ALDNRS.BP~        32252  "ALDUS\NORSK"  CHECKDATE,
  45.    ALDNRS.NF~           46  "ALDUS\NORSK"  CHECKDATE,
  46.    ALDNRS00.VP~     482304  "ALDUS\NORSK"  CHECKDATE,
  47.    ALDNRS.UD~         1024  "ALDUS\NORSK"  NOREPLACE,
  48.    aldsetup.exe     169216  CHECKDATE,
  49.    aldsetrs.rsl      29184  CHECKDATE,
  50.    DICT4720.ctl       4405,
  51.    readme.txt        30343
  52.    }
  53.  
  54.  
  55. DISK "Dict Disk 2"
  56.    {
  57.    (C)ALDUS.'91         62,
  58.    aldwpls.dl~      151792  CHECKDATE,
  59.    ALDDNS00.VP~     523264  "ALDUS\DANSK"  CHECKDATE,
  60.    ALDDNS.BP~        33037  "ALDUS\DANSK"  CHECKDATE,
  61.    ALDDNS.NF~           46  "ALDUS\DANSK"  CHECKDATE,
  62.    ALDDNS.UD~         1024  "ALDUS\DANSK"  NOREPLACE
  63.    }
  64.  
  65.  
  66. DISK "Dict Disk 3"
  67.    {
  68.    (C)ALDUS.'91         62,
  69.    ALDSVN.BP~        36729  "ALDUS\SVENSKA"  CHECKDATE,
  70.    ALDSVN.NF~           48  "ALDUS\SVENSKA"  CHECKDATE,
  71.    ALDSVN00.VP~     686080  "ALDUS\SVENSKA"  CHECKDATE,
  72.    ALDSVN.UD~         1024  "ALDUS\SVENSKA"  NOREPLACE
  73.    }
  74.  
  75.  
  76. /* Specify the initial values for installer variables.  The lines of
  77.  * text are the prompts to be used in CONFIRMDIR commands.
  78.  */
  79.  
  80.  
  81. PACKAGE PROLOGUE "" SELECTED INVISIBLE
  82.     {
  83.     /* Initialize the var MustReboot.  It is later set to TRUE if the user
  84.      * chooses to have the installer modify his or her system files
  85.      */
  86.     SET MustReboot "FALSE"
  87.  
  88.     SET ReadmeMenu "FALSE"      /* Set to TRUE when menu item added */
  89.     GETALDDIR AldDir
  90.     CONCAT AldDir "SETUP" SetupDir
  91.  
  92.  
  93.     /*  Add the README menu item to the VIEW menu       */
  94.     ONINSTALL
  95.         {
  96.         if ReadmeMenu EQS "FALSE"
  97.             {
  98.             WINDOWSMENU SetupDir "README.TXT" "&README.TXT" 
  99.             SET ReadmeMenu "TRUE"
  100.             }
  101.         }
  102.     }   /* end of Prologue pkg */
  103.  
  104.  
  105. PACKAGE Dictionaries "Dictionaries" SELECTED 
  106.     {
  107.     CONFIRMDIR AldDir
  108.     /* Install dictionaries */
  109.     SELECT2 LANGUAGES "Select Dictionary Languages" AldDir
  110.     {
  111.     TEXT
  112.         {
  113.         "You can install one or more of the dictionaries listed below."
  114.         }
  115.     ITEMS MIN 1
  116.         {
  117.          ALDDNS.BP~+ALDDNS.UD~+ALDDNS.NF~+ALDDNS00.VP~ "Dansk" "DANSK" "8",
  118.          ALDNRS.BP~+ALDNRS.UD~+ALDNRS.NF~+ALDNRS00.VP~ "Norsk" "NORSK" "9",
  119.          ALDSVN.BP~+ALDSVN.UD~+ALDSVN.NF~+ALDSVN00.VP~ "Svenska" "SVENSKA" "7"
  120.         }
  121.     HELP
  122.         {
  123.         "Select the dictionaries you want to install."
  124.         "You can install more than one set of dictionaries."
  125.         "Clicking the Cancel button will bring you back to the"
  126.         "Main Window and allow you to begin the installation again."
  127.         }
  128.     } 
  129.     FILES AldDir
  130.         {
  131.         ALDWPLS.DL~
  132.         }
  133.     FILES SetupDir
  134.         {
  135.         README.txt
  136.         }
  137.     }
  138.  
  139. DIALOG Successful "OK"
  140. {
  141.     TEXT
  142.     {
  143.     "Installation complete."
  144.     }
  145. }
  146.  
  147. PACKAGE Last "" SELECTED INVISIBLE
  148.     {
  149.     ONINSTALL
  150.         {
  151.         DISPLAY Successful
  152.         }
  153.     }
  154.  
  155.  
  156.