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