home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 2 / goldfish_vol2_cd1.bin / files / util / rexx / arexxsuper / installcatalog < prev    next >
Text File  |  1994-03-05  |  649b  |  24 lines

  1. echo "Welcome to the ARexxSupervisor installation script.*N"
  2.  
  3. version >NIL: exec.library 37
  4. IF WARN
  5. echo "You need Kickstart 2.04 to use ARexxSupervisor, sorry !"
  6. skip Exit
  7. ENDIF
  8.  
  9. echo "*NFor ARexxSupervisor to operate in your language, I must copy"
  10. echo "a catalog file to your system disk for each language supported"
  11. echo "(except for english, which is the builtin language).*N"
  12.  
  13. ask "Copy the french (français) catalog file ?"
  14. IF WARN
  15. echo "*NCopying..." NOLINE
  16. copy Catalogs/Français/ARexxSupervisor.catalog to LOCALE:Catalogs/Français/ARexxSupervisor.catalog
  17. echo "Done."
  18. ENDIF
  19.  
  20. echo "*NAll done."
  21.  
  22. Lab Exit
  23. Quit
  24.