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,
- ALDNDR.BP~ 37967 "ALDUS\NEDERL" CHECKDATE,
- ALDNDR.NF~ 52 "ALDUS\NEDERL" CHECKDATE,
- ALDNDR00.VP~ 305152 "ALDUS\NEDERL" CHECKDATE,
- ALDNDR.UD~ 1024 "ALDUS\NEDERL" NOREPLACE,
- aldsetup.exe 169216 CHECKDATE,
- aldsetrs.rsl 29184 CHECKDATE,
- readme.txt 30343,
- DICT4720.ctl 4743,
- aldwpls.dl~ 151792 CHECKDATE
- }
-
-
- DISK "Dict Disk 2"
- {
- (C)ALDUS.'91 62,
- ALDITL.BP~ 33123 "ALDUS\ITALIANO" CHECKDATE,
- ALDITL.NF~ 49 "ALDUS\ITALIANO" CHECKDATE,
- ALDITL00.VP~ 321536 "ALDUS\ITALIANO" CHECKDATE,
- ALDITL.UD~ 1024 "ALDUS\ITALIANO" NOREPLACE,
- ALDFRN00.VP~ 244736 "ALDUS\FRANCAIS" CHECKDATE,
- ALDFRN.BP~ 37426 "ALDUS\FRANCAIS" CHECKDATE,
- ALDFRN.NF~ 49 "ALDUS\FRANCAIS" CHECKDATE,
- ALDFRN.UD~ 1024 "ALDUS\FRANCAIS" NOREPLACE,
- ALDDTS.BP~ 40172 "ALDUS\DEUTSCH" CHECKDATE,
- ALDDTS.NF~ 48 "ALDUS\DEUTSCH" CHECKDATE,
- ALDDTS00.VP~ 299008 "ALDUS\DEUTSCH" CHECKDATE,
- ALDDTS.UD~ 1024 "ALDUS\DEUTSCH" NOREPLACE
- }
-
-
- /* 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 one or more of the dictionaries listed below."
- }
- ITEMS MIN 1
- {
- ALDFRN.BP~+ALDFRN.UD~+ALDFRN.NF~+ALDFRN00.VP~ "FranĪais" "FRANCAIS" "3",
- ALDDTS.BP~+ALDDTS.UD~+ALDDTS.NF~+ALDDTS00.VP~ "Deutsch" "DEUTSCH" "2",
- ALDITL.BP~+ALDITL.UD~+ALDITL.NF~+ALDITL00.VP~ "Italiano" "ITALIANO" "5",
- ALDNDR.BP~+ALDNDR.UD~+ALDNDR.NF~+ALDNDR00.VP~ "Nederlands" "NEDERL" "10"
- }
- HELP
- {
- "Select the dictionaries you want to install."
- "You can install more than one set of dictionaries."
- "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
- }
- }
-
-
-