home *** CD-ROM | disk | FTP | other *** search
- /**[f******************************************************************
- * Dictionary install set control file
- *
- * Copyright (C) 1990 Aldus Corporation. All rights reserved.
- * Company confidential.
- *
- * ABSTRACT:
- * This is the PC installer (aldsetup) control file for PageMaker 4.0.
- *
- * All product-specific text goes in the .CTL file. Nothing in the .RC
- * file should be product-specific. Both the .CTL and the .RC files
- * must be localized.
- *
- * When localizing, only text in "double quotes" need be translated.
- * (Although, if the names of files on the distribution diskettes have
- * been changed, they'll have to be changed in this control file too.)
- *
- * $Revision: 1.20 $
- * $Date: 13 Nov 1990 16:03:36 $
- **f]*****************************************************************/
-
- /* The PRODUCT command is required.
- */
- PRODUCT "PageMaker 4.0"
-
- VERSIONREQ "1.01" /* minimum installer version required */
-
- /* There is one DISK statement for each distribution disk. It gives
- * the name by which the user will be asked for the disk, and a list
- * of the files on the disk. In addition to the file names, the list
- * of files contains the sizes of the files (uncompressed, in bytes)
- * and the subdirectories in which the files can be found. If the
- * file is in the root, the subdirectory can be left off. The options
- * CHECKDATE or NOREPLACE can be specified after the subdirectory. Lines
- * are separated by commas.
- *
- * This part of the control file will be created automatically by the
- * Disk Builder Utility.
- */
-
- DISK "Dict Disk 1"
- {
- (C)ALDUS.'91 62,
- ALDUSN00.VP~ 340992 "ALDUS\STANDARD" CHECKDATE,
- ALDUSN.BP~ 35710 "ALDUS\STANDARD" CHECKDATE,
- ALDUSN.NF~ 51 "ALDUS\STANDARD" CHECKDATE,
- ALDUSN.UD~ 1024 "ALDUS\STANDARD" NOREPLACE,
- aldsetup.exe 170048 CHECKDATE,
- aldsetrs.rsl 30208 CHECKDATE,
- readme.txt 30343,
- DICT4720.ctl 4608,
- aldwpls.dl~ 151792 CHECKDATE
- }
-
-
- DISK "Dict Disk 2"
- {
- (C)ALDUS.'91 62,
- ALDUSM.UD~ 1024 "ALDUS\LEG-MED" NOREPLACE,
- ALDUSN.BP~ 35710 "ALDUS\LEG-MED" CHECKDATE,
- ALDUSM.NF~ 51 "ALDUS\LEG-MED" CHECKDATE,
- ALDUSM02.VP~ 431104 "ALDUS\LEG-MED" CHECKDATE
- }
-
-
- DISK "Dict Disk 3"
- {
- (C)ALDUS.'91 62,
- ALDUSN.BP~ 35710 "ALDUS\LEGAL" CHECKDATE,
- ALDUSL.NF~ 51 "ALDUS\LEGAL" CHECKDATE,
- ALDUSL.UD~ 1024 "ALDUS\LEGAL" NOREPLACE,
- ALDUSL01.VP~ 387072 "ALDUS\LEGAL" CHECKDATE
- }
-
-
- /* Specify the initial values for installer variables. The lines of
- * text are the prompts to be used in CONFIRMDIR commands.
- */
-
-
- PACKAGE PROLOGUE "" SELECTED INVISIBLE
- {
- /* Initialize the var MustReboot. It is later set to TRUE if the user
- * chooses to have the installer modify his or her system files
- */
- SET MustReboot "FALSE"
-
- SET ReadmeMenu "FALSE" /* Set to TRUE when menu item added */
- GETALDDIR AldDir
- CONCAT AldDir "SETUP" SetupDir
-
-
- /* Add the README menu item to the VIEW menu */
- ONINSTALL
- {
- if ReadmeMenu EQS "FALSE"
- {
- WINDOWSMENU SetupDir "README.TXT" "&README.TXT"
- SET ReadmeMenu "TRUE"
- }
- }
- } /* end of Prologue pkg */
-
-
-
- PACKAGE Dictionaries "Dictionaries" SELECTED
- {
- CONFIRMDIR AldDir
- /* Install dictionaries */
- SELECT2 LANGUAGES "Select Dictionary Languages" AldDir
- {
- TEXT
- {
- "You can install only one of the dictionaries listed below."
- }
- ITEMS MIN 1
- {
- ALDUSN.BP~+ALDUSN.UD~+ALDUSN.NF~+ALDUSN00.VP~ "US Standard" "USENGLSH" "1",
- ALDUSN.BP~+ALDUSL.UD~+ALDUSL.NF~+ALDUSL01.VP~ "US Legal" "USENGLSH" "1",
- ALDUSN.BP~+ALDUSM.UD~+ALDUSM.NF~+ALDUSM02.VP~ "US Legal-Medical" "USENGLSH" "1"
- }
- HELP
- {
- "Select the dictionaries you want to install."
- "You can install only one of the dictionaries in the list."
- "Both the Legal-Medical and Legal dictionaries contain"
- "the base US English dictionary."
- "Clicking the Cancel button will bring you back to the"
- "Main Window and allow you to begin the installation again."
- }
- }
- FILES AldDir
- {
- ALDWPLS.DL~
- }
- FILES SetupDir
- {
- README.txt
- }
- }
-
- DIALOG Successful "OK"
- {
- TEXT
- {
- "Installation complete."
- }
- }
-
- PACKAGE Last "" SELECTED INVISIBLE
- {
- ONINSTALL
- {
- DISPLAY Successful
- }
- }
-
-
-