home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 5
/
FreshFish_July-August1994.bin
/
bbs
/
biz
/
videomaxe-4.33.lha
/
VideoMaxe
/
InstallVM
< prev
next >
Wrap
Text File
|
1994-04-16
|
25KB
|
710 lines
; $VER: InstallVM 03.00 (16 Apr 1994) © Stephan Sürken
; ----------------------
; TEXTS INITILIZATION
; all texts in a row: 1st english default, then all other langs
; TEXTS
(set startupMessage (cat "\n\nInstaller script for VideoMaxe 04.33\n\n"
"VideoMaxe is ShareWare (see documentation)!\n\n"
"© Stephan Sürken 1993, 1994"))
(if (= @language "deutsch") (
(set startupMessage (cat "\n\nInstaller Skript für VideoMaxe 04.33\n\n"
"VideoMaxe ist ShareWare (siehe Dokumentation)!\n\n"
"© Stephan Sürken 1993, 1994"))))
; yes
(set yesTxt "Yes")
(if (= @language "deutsch") ((set yesTxt "Ja")))
; no
(set noTxt "No")
(if (= @language "deutsch") ((set noTxt "Nein")))
; minorUpdate
(set minorUpdateTxt "Minor update")
(if (= @language "deutsch") ((set minorUpdateTxt "Kleines Update")))
; newInstallation
(set newInstallationTxt "New installation")
(if (= @language "deutsch") ((set newInstallationTxt "Neuinstallation")))
; updateFiles
(set updateFilesTxt "Update data files")
(if (= @language "deutsch") ((set updateFilesTxt "Daten-Dateien updaten")))
; all versions with file format changes to current version
(set vm3XXTxt "VideoMaxe 03.XX")
(set vm420Txt "VideoMaxe 04.20")
; all (6) file types
(set projectFileTxt "project file")
(if (= @language "deutsch") ((set projectFileTxt "Projekt-Datei")))
(set maskListFileTxt "mask list file")
(if (= @language "deutsch") ((set maskListFileTxt "Maskenlisten-Datei")))
(set vRecFileTxt "video recorder file")
(if (= @language "deutsch") ((set vRecFileTxt "Videorekorder-Datei")))
(set prtPrefsFileTxt "printer preferences file")
(if (= @language "deutsch") ((set prtPrefsFileTxt "Drucker-Einstellungen-Datei")))
(set vmPrefsFileTxt "VideoMaxe preferences file")
(if (= @language "deutsch") ((set vmPrefsFileTxt "VideoMaxe-Einstellungen-Datei")))
(set loPrefsFileTxt "layout preferences file")
(if (= @language "deutsch") ((set loPrefsFileTxt "Layout-Einstellungen-Datei")))
; HELPS
; steps
(set stepsHelp
(cat "\n"
"This window lets you choose the steps this script should "
"perform. It can be used for four main purposes:\n\n"
"o STEP 0: accomplish a minor update\n"
"o STEP 1: accomplish a complete new installation\n"
"o STEP 2: update older VideoMaxe files\n\n"
" You can freely choose which steps should actually be "
"performed, except that steps 0 and 1 mutually exclude "
"themselves.\n\n"
"Explanation of the steps:\n\n"
"o STEP 0: Will only copy the VideoMaxe program file, "
"the new documentation files and the language "
"localization files. With this variant, some new environmental "
"features of the new release (like even better icons, even "
"better example files, etc.) may stay invisible, but you "
"maintain your used installation. Note that you possibly -- "
"exactly then, when there have been file format changes "
"with this new release (see Docs.) -- have to update (some "
"of) your data files using step 2.\n\n"
"o STEP 1: Will accomlish a complete new installation "
"of VideoMaxe. Use this if you are a new user (or "
"updating from the 3.XX version).\n"
"Choose this too if you are not sure what to select, "
"as this will in any case produce a runable installation "
"of the new version.\n"
"o STEP 2: Lets you update VideoMaxe files of (all) "
"older versions. You need this only if there have been "
"file format changes with this release (compared to your "
"now-installed version). If you are not sure however, "
"simply try if you can still load the old files with "
"the new installed VideoMaxe -- if you can't, just re-run "
"this script and update!\n\n"))
(if (= @language "deutsch") (
(set stepsHelp
(cat "\n"
"Mit diesem Fenster können Sie wählen, welche Schritte "
"Sie mit diesem Script ausführen wollen. Folgende Schritte "
"sind wählbar:\n\n"
"o SCHRITT 0: 'kleines' Update durchführen\n"
"o SCHRITT 1: komplette Neuinstallation\n"
"o SCHRITT 2: alte VideoMaxe-Dateien updaten\n\n"
" Sie können frei beliebige Schritte wählen, die dann "
"tasächlich ausgeführt werden (lediglich Schritt 0 und 1 "
"schließen sich gegenseitig aus).\n\n"
"Erklärung der einzelnen Schritte:\n\n"
"o SCHRITT 0: Nur die VideoMaxe-Programm-Datei, "
"die neuen Dokumentationsdateien und die "
"Sprachbeschreibungsdateien (VideoMaxe.catalog-files) "
"werden kopiert. Bei diese Variante können zwar "
"Umgebungs-'Features' der neuen Release (z.B. neue, noch "
"tollere Ikonen, neue, noch tollere Beispieldateien, etc.) "
"verlorengehen, sie behalten aber Ihre 'gewohnte' "
"Installation bei. Beachten Sie, daß Sie -- wenn sich Datei-"
"Formate geändert haben (siehe Dok.) -- dann anschließend "
"noch Schritt (2) durchführen sollten.\n"
"o SCHRITT 1: Führt eine vollständige Neuinstallation von "
"VideoMaxe durch. Benutzen Sie diese Variante, wenn Sie ein "
"neuer Benutzer sind (oder von 3.XX-Versionen von VideoMaxe "
"updaten).\n"
"Wählen Sie diese Variante auch, wenn Sie nicht sicher "
"sind, was Sie wählen sollen -- Sie erhalten am Ende "
"in jedem Fall eine lauffähige Installation.\n"
"o SCHRITT 2: Mit diesem Schritt können Sie Dateien von "
"(allen!) älteren Versionen von VideoMaxe auf das Format "
"der aktuellen Version bringen. Dies ist natürlich nur "
"notwendig, wenn die Dateiformate sich mit der jetzt zu "
"installierenden Version geändert habe (siehe Dok.). Sind "
"Sie -warum auch immer- nicht sicher, probieren Sie einfach "
"aus, ob Sie Ihre Dateien vom neu installierten VideoMaxe "
"noch laden können -- wenn nicht, einfach diese Skript "
"erneut starten und Dateien updaten!\n\n"))))
; destDirHelp
(set destDirHelp
(cat "\n"
"Into the directory you choose here all files "
"important for VideoMaxe are placed during the "
"installation procedure.\n"
"Note that this directory must be empty, so "
"normally you will create a new directory at "
"this point.\n\n"))
(if (= @language "deutsch") (
(set destDirHelp
(cat "\n"
"In das hier zu wählende Verzeichnis werden während "
"der Installation alle zu VideoMaxe gehörenden Dateien "
"plaziert (mit evtl. einigen Ausnahmen).\n"
"Beachten Sie, daß das Verzeichnis leer sein muß. Im "
"Normalfall sollten Sie hier also ein neues Verzeichnis "
"anlegen.\n\n"))))
; langHelp
(set langHelp
(cat "\n"
"Since OS 2.1, the Amiga can operate in different "
"languages if the application supports them. VideoMaxe "
"up to now supports English (as default, `built-in` "
"language), German (Deutsch) and French (Français).\n"
"Simply check the languages you want VideoMaxe to "
"support.\n\n"))
(if (= @language "deutsch") (
(set langHelp
(cat "\n"
"Seit OS 2.1 kann der Amiga in mehreren Sprachen operieren, "
"wenn die entsprechende Applikation dies unterstützt. "
"VideoMaxe unterstützt zur Zeit die Sprachen Englisch (ist "
"'eingebaut', braucht also nicht installiert zu werden), "
"Deutsch und Französisch.\n"
"Wählen Sie einfach alle Sprachen aus, die Sie mit VideoMaxe "
"benutzen wollen.\n\n"))))
; exampleFilesHelp
(set exampleFilesHelp
(cat "\n"
"VideoMaxe comes with various example files:\n\n"
"`Projects' contains example project files.\n "
"`MaskList' contains example mask list files.\n "
"`PrtPrefs' contains example