home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / util / rexx / arexxsupervisor / installcatalog < prev    next >
Encoding:
Text File  |  1994-06-21  |  1.1 KB  |  36 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 "*NARexxSupervisor is able to operate in your language provided"
  10. echo "that the good catalog is available. These catalogs can be installed"
  11. echo "by copying the directory named "Catalogs" which is available on"
  12. echo "this disk into the same directory as the main program. You may"
  13. echo "also prefer to copy the catalog(s) to your LOCALE:Catalogs/<lang>"
  14. echo "directories (on your system disk), which is the job of this script."
  15. ask "Do you want to continue ?"
  16. IF NOT WARN
  17. echo "*NWell, bye then."
  18. Skip Exit
  19. ENDIF
  20.  
  21. echo "*NSo you want me to copy some catalog files to your system disk..."
  22. echo "By the way, you have to tell me which languages you want to copy"
  23. echo "(except for english, which is the builtin language):*N"
  24.  
  25. ask "Copy the french (français) catalog file ?"
  26. IF WARN
  27. echo "*NCopying..." NOLINE
  28. copy Catalogs/Français/ARexxSupervisor.catalog to LOCALE:Catalogs/Français/ARexxSupervisor.catalog
  29. echo "Done."
  30. ENDIF
  31.  
  32. echo "*NAll done."
  33.  
  34. Lab Exit
  35. Quit
  36.