home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #4 / Amiga Plus CD - 2000 - No. 4.iso / Tools / Grafik / Viewer / MetaView / MetaView.install < prev    next >
Encoding:
Text File  |  2000-02-08  |  101.9 KB  |  4,401 lines

  1. ;************************************************
  2. ;$VER: MetaView Install 2.8 (12.12.1999)
  3. ;Copyright ©1996-99 Henk Jonas
  4. ;
  5. ;   English         by  Henk Jonas
  6. ;   Deutsch         by  Henk Jonas
  7. ;   Spanish         by  Dámaso D. Estévez (12.12.99)
  8. ;   Hrvatski        by  Ivan Kosak (11.01.2000)
  9. ;
  10. ;
  11. ;************************************************
  12.  
  13. (set @app-name "MetaView V2.8")
  14. (set @sourcedir (pathonly @icon))
  15. (set #wbversion (getversion "libs:version.library"))
  16. (set #wbversion (/ #wbversion 65536))
  17.  
  18. (if (< #wbversion 38)
  19.  (abort (cat "\n\nAmigaDOS 2.1 or better is needed for this software.\n"
  20.              "Este programa necesita AmigaDOS 2.1 o versión superior.\n"
  21.              "Dieses Programm braucht mindestens AmigaDOS 2.1."))
  22. )
  23.  
  24. ;************************************************
  25. ;
  26. ; which language should i use?
  27. ;
  28. ;************************************************
  29.  
  30. (set #language-number 0)
  31. (if (= @language "deutsch")
  32.   (set #language-number 1)
  33. )
  34. (if (= @language "español")
  35.   (set #language-number 2)
  36. )
  37. (if (= @language "polski")
  38.   (set #language-number 3)
  39. )
  40. (if (= @language "ceská")
  41.   (set #language-number 4)
  42. )
  43. (if (= @language "catalá")
  44.   (set #language-number 5)
  45. )
  46. (if (= @language "hrvatski")
  47.   (set #language-number 6)
  48. )
  49. (if (= 2 @user-level)
  50.   (
  51.     (set #language-number
  52.       (askchoice
  53.         (prompt (cat "Please choose your favorite language for the installation.\n"
  54.                      "Por favor, elija el idioma del guión instalador.\n"
  55.                      "Bitte wählen Sie die Sprache, in der die Installation ablaufen soll.\n"
  56.                      "Izaberite jezik za instalaciju."))
  57.         (choices "pEnglish" "Deutsch" "Español" "Polski" "Ceská" "Catalá" "Hrvatski")
  58.         (default #language-number)
  59.         (help @askchoice-help)
  60.       )
  61.     )
  62.   )
  63. )
  64.  
  65. ;************************************************
  66. ;
  67. ; now the texts for the different languages
  68. ;
  69. ;************************************************
  70. ;
  71. ; english texts for the install script
  72. ;
  73. ;************************************************
  74. ;/**/
  75.  
  76.   (set #YES "Yes")
  77.   (set #NO  "No")
  78.   (set #text_copy "Copy")
  79.   (set #text_skip "Skip")
  80.   (set #text_update "Update")
  81.  
  82.   (set #text_present
  83.      (cat
  84.         "Henk Jonas\n present:\n\n MetaView\n\n"
  85.         "This programm shows and converts gfx-metafile,\n"
  86.         "uses the 'amigametaformat.library'\n and is SHAREWARE."
  87.      )
  88.   )
  89.   (set #text_programm_update
  90.      (cat
  91.         "I found the MetaView drawer,\n"
  92.         "leave the path in the parent directory\n"
  93.         "of the MetaView drawer for\n"
  94.         "updating an existing MetaView installation."
  95.      )
  96.   )
  97.   (set #text_new
  98.      (cat
  99.         "Please choose the destination for MetaView.\n"
  100.         "I will create a MetaView drawer there,\n"
  101.         "if it does not exist."
  102.      )
  103.   )
  104.   (set #text_drawer
  105.      (cat
  106.         "I am creating the drawer 'MetaView'."
  107.      )
  108.   )
  109.   (set #text_library
  110.      (cat
  111.         "Now I will install the 'amigametaformat.library'."
  112.      )
  113.   )
  114.   (set #help_library
  115.      (cat
  116.         "This library are needed for this programm.\n"
  117.         "It is very importent to install this!"
  118.      )
  119.   )
  120.   (set #text_driver
  121.      (cat
  122.         "Now I will install the different Outputdrivers for the 'amigametaformat.library'."
  123.      )
  124.   )
  125.   (set #help_driver
  126.      (cat
  127.         "the options:\n"
  128.         "* Strip       : the driver for all renderings, like screen, ILBM, printer etc.\n"
  129.         "* AMF         : are for output as Amiga Metafile Format.\n"
  130.         "* CGM         : are for output as Computer Graphics Metafile.\n"
  131.         "* EPS         : are for output as Encapsulated PostScript.\n"
  132.         "* GEM         : are for output as GEM Metafile.\n"
  133.         "* WordWorth   : create ARexx scripts, for use in WordWorth.\n"
  134.         "* DR2D        : are for output as DR2D (for PageStream, DrawStudio...)\n"
  135.         "* HPGL        : are for output as HPGL (for Plotters)\n"
  136.         "* AI          : are for output as AdobeIllustrator\n"
  137.         "* JMF         : are for output as JavaMetaFile (for www-publishing)\n"
  138.         "* WMF         : are for output as WindowsMetaFile\n"
  139.         "* FIG         : are for output as XFIG file\n"
  140.      )
  141.   )
  142.   (set #text_strip
  143.      (cat
  144.         "Now I will install the stripdriver for 'amigametaformat.library'."
  145.      )
  146.   )
  147.   (set #help_strip
  148.      (cat
  149.         "strip for all renderings on screen, printer and ILBM-output\n"
  150.      )
  151.   )
  152.   (set #text_file
  153.      (cat
  154.         "Now I will install the filedriver for 'amigametaformat.library'."
  155.      )
  156.   )
  157.   (set #help_file
  158.      (cat
  159.         "file for saving as Amiga Meta Format Metafile\n"
  160.      )
  161.   )
  162.   (set #text_cgm
  163.      (cat
  164.         "Now I will install the CGMdriver for 'amigametaformat.library'."
  165.      )
  166.   )
  167.   (set #help_cgm
  168.      (cat
  169.         "CGM for saving as Computer Graphics Metafile\n"
  170.      )
  171.   )
  172.   (set #text_eps
  173.      (cat
  174.         "Now I will install the EPSdriver for 'amigametaformat.library'."
  175.      )
  176.   )
  177.   (set #help_eps
  178.      (cat
  179.         "EPS for saving as Encapsulated PostScript\n"
  180.      )
  181.   )
  182.   (set #text_gem
  183.      (cat
  184.         "Now I will install the GEMdriver for 'amigametaformat.library'."
  185.      )
  186.   )
  187.   (set #help_gem
  188.      (cat
  189.         "GEM for saving as GEM Metafile\n"
  190.      )
  191.   )
  192.   (set #text_ww
  193.      (cat
  194.         "Now I will install the WordWorth-ARexx-driver for 'amigametaformat.library'."
  195.      )
  196.   )
  197.   (set #help_ww
  198.      (cat
  199.         "WordWorth-ARexx-driver for creating WordWorth-ARexx-script\n"
  200.      )
  201.   )
  202.   (set #text_dr2d
  203.      (cat
  204.         "Now I will install the DR2D-driver for 'amigametaformat.library'."
  205.      )
  206.   )
  207.   (set #help_dr2d
  208.      (cat
  209.         "DR2D-driver for creating DR2D-Output\n"
  210.      )
  211.   )
  212.   (set #text_hpgl
  213.      (cat
  214.         "Now I will install the HPGL-driver for 'amigametaformat.library'."
  215.      )
  216.   )
  217.   (set #help_hpgl
  218.      (cat
  219.         "HPGL-driver for creating HPGL-Output\n"
  220.      )
  221.   )
  222.   (set #text_ai
  223.      (cat
  224.         "Now I will install the AI-driver for 'amigametaformat.library'."
  225.      )
  226.   )
  227.   (set #help_ai
  228.      (cat
  229.         "AI-driver for creating AI-Output\n"
  230.      )
  231.   )
  232.   (set #text_jmf
  233.      (cat
  234.         "Now I will install the JMF-driver for 'amigametaformat.library'."
  235.      )
  236.   )
  237.   (set #help_jmf
  238.      (cat
  239.         "JMF-driver for creating JMF-Output\n"
  240.      )
  241.   )
  242.   (set #text_wmf
  243.      (cat
  244.         "Now I will install the WMF-driver for 'amigametaformat.library'."
  245.      )
  246.   )
  247.   (set #help_wmf
  248.      (cat
  249.         "WMF-driver for creating WMF-Output\n"
  250.      )
  251.   )
  252.   (set #text_fig
  253.      (cat
  254.         "Now I will install the FIG-driver for 'amigametaformat.library'."
  255.      )
  256.   )
  257.   (set #help_fig
  258.      (cat
  259.         "FIG-driver for creating FIG-Output\n"
  260.      )
  261.   )
  262.   (set #text_programm
  263.      (cat
  264.         "copy programm"
  265.      )
  266.   )
  267.   (set #help_programm
  268.      (cat
  269.         "Now, I will copy the programm."
  270.      )
  271.   )
  272.   (set #text_doc
  273.      (cat
  274.         "copy documentation"
  275.      )
  276.   )
  277.   (set #help_doc
  278.      (cat
  279.         "Now, I will copy the documentation.\n"
  280.         "This textfile is obsolete, use the guide instead."
  281.      )
  282.   )
  283.   (set #text_guide
  284.      (cat
  285.         "Now I will copy the guide for MetaView.\n"
  286.         "What is your favorite language?"
  287.      )
  288.   )
  289.   (set #text_english_guide
  290.      (cat
  291.         "copy English MetaView.guide"
  292.      )
  293.   )
  294.   (set #help_english_guide
  295.      (cat
  296.         "Now, I will copy the English MetaView.guide."
  297.      )
  298.   )
  299.   (set #text_german_guide
  300.      (cat
  301.         "copy German MetaView.guide"
  302.      )
  303.   )
  304.   (set #help_german_guide
  305.      (cat
  306.         "Now, I will copy the German MetaView.guide."
  307.      )
  308.   )
  309.   (set #text_spanish_guide
  310.      (cat
  311.         "copy Spanish MetaView.guide"
  312.      )
  313.   )
  314.   (set #help_spanish_guide
  315.      (cat
  316.         "Now, I will copy the Spanish MetaView.guide."
  317.      )
  318.   )
  319.   (set #text_polish_guide
  320.      (cat
  321.         "copy Polish MetaView.guide"
  322.      )
  323.   )
  324.   (set #help_polish_guide
  325.      (cat
  326.         "Now, I will copy the Polish MetaView.guide."
  327.      )
  328.   )
  329.   (set #text_czech_guide
  330.      (cat
  331.         "copy Czech MetaView.guide"
  332.      )
  333.   )
  334.   (set #help_czech_guide
  335.      (cat
  336.         "Now, I will copy the Czech MetaView.guide."
  337.      )
  338.   )
  339.     (set #text_catalan_guide
  340.        (cat
  341.           "copy Catalan MetaView.guide"
  342.        )
  343.     )
  344.     (set #help_catalan_guide
  345.        (cat
  346.           "Now, I will copy the Catalan MetaView.guide."
  347.        )
  348.     )
  349.   (set #text_readme
  350.      (cat
  351.         "copy amigametaformat.readme"
  352.      )
  353.   )
  354.   (set #help_readme
  355.      (cat
  356.         "Now, I will copy the amigametaformat.readme."
  357.      )
  358.   )
  359.   (set #text_arexx
  360.      (cat
  361.         "copy ARexx-Examples"
  362.      )
  363.   )
  364.   (set #help_arexx
  365.      (cat
  366.         "Now, I will copy some ARexx-Examples."
  367.      )
  368.   )
  369.   (set #text_ds
  370.      (cat
  371.         "Do you have DrawStudio installed,\n"
  372.         "and want to im- and export gfx\n"
  373.         "with MetaView?"
  374.      )
  375.   )
  376.   (set #help_ds
  377.      (cat
  378.         "I want to install two ARexx scripts for import and export\n"
  379.         "graphics in DrawStudio with MetaView."
  380.      )
  381.   )
  382.   (set #text_ds_path
  383.      (cat
  384.         "Please choose the DrawStudio ARexx scripts drawer."
  385.      )
  386.   )
  387.   (set #help_ds_path
  388.      (cat
  389.         "I want to install two ARexx scripts for import and export\n"
  390.         "graphics in DrawStudio with MetaView."
  391.      )
  392.   )
  393.   (set #text_ds_import
  394.      (cat
  395.         "copying DrawStudio import script"
  396.      )
  397.   )
  398.   (set #text_ds_export
  399.      (cat
  400.         "copying DrawStudio export script"
  401.      )
  402.   )
  403.   (set #text_pgs
  404.      (cat
  405.         "Do you have PageStream 3.x installed,\n"
  406.         "and want to import gfx with MetaView?"
  407.      )
  408.   )
  409.   (set #help_pgs
  410.      (cat
  411.         "I want to install one ARexx script for import\n"
  412.         "graphics in PageStream with MetaView."
  413.      )
  414.   )
  415.   (set #text_pgs_path
  416.      (cat
  417.         "Please choose the PageStream ARexx scripts drawer."
  418.      )
  419.   )
  420.   (set #help_pgs_path
  421.      (cat
  422.         "I want to install one ARexx script for import\n"
  423.         "graphics in PageStream with MetaView."
  424.      )
  425.   )
  426.   (set #text_pgs_import
  427.      (cat
  428.         "copying PageStream import script"
  429.      )
  430.   )
  431.   (set #text_ww
  432.      (cat
  433.         "Do you have WordWorth installed,\n"
  434.         "and want to import gfx with MetaView?"
  435.      )
  436.   )
  437.   (set #help_ww
  438.      (cat
  439.         "I want to install one ARexx script for import\n"
  440.         "graphics in WordWorth with MetaView."
  441.      )
  442.   )
  443.   (set #text_ww_path
  444.      (cat
  445.         "Please choose the WordWorth ARexx scripts drawer."
  446.      )
  447.   )
  448.   (set #help_ww_path
  449.      (cat
  450.         "I want to install one ARexx script for import\n"
  451.         "graphics in WordWorth with MetaView."
  452.      )
  453.   )
  454.   (set #text_ww_import
  455.      (cat
  456.         "copying WordWorth import script"
  457.      )
  458.   )
  459.   (set #text_fw
  460.      (cat
  461.         "Do you have FinalWriter installed,\n"
  462.         "and want to import gfx with MetaView?"
  463.      )
  464.   )
  465.   (set #help_fw
  466.      (cat
  467.         "I want to install one ARexx script for import\n"
  468.         "graphics in FinalWriter with MetaView."
  469.      )
  470.   )
  471.   (set #text_fw_path
  472.      (cat
  473.         "Please choose the FinalWriter ARexx scripts drawer."
  474.      )
  475.   )
  476.   (set #help_fw_path
  477.      (cat
  478.         "I want to install one ARexx script for import\n"
  479.         "graphics in FinalWriter with MetaView."
  480.      )
  481.   )
  482.   (set #text_fw_import
  483.      (cat
  484.         "copying FinalWriter import script"
  485.      )
  486.   )
  487.   (set #text_examples
  488.      (cat
  489.         "Should I copy the example files?"
  490.      )
  491.   )
  492.   (set #text_examples_copy
  493.      (cat
  494.         "copy Examples"
  495.      )
  496.   )
  497.   (set #help_examples_copy
  498.      (cat
  499.         "Now, I want to copy some Examples."
  500.      )
  501.   )
  502.   (set #text_setpatch
  503.      (cat
  504.         "I want to copy a new SetPatch (43.6) to your 'c:' directory.\n"
  505.         "This Software are published from Amiga Technologie and\n"
  506.         "fix also a bug on 'mathieeesingbas.library' in Kick 3.1.\n"
  507.         "The old 'c:SetPatch' will renamed to 'c:SetPatch.old'."
  508.      )
  509.   )
  510.   (set #help_setpatch
  511.      (cat
  512.         "Press 'Copy' to install the new SetPatch and 'Skip' for not install.\n"
  513.         "You are advised to install this Patch.\n"
  514.         "But if you get a GURU on MetaView-startup you must!"
  515.      )
  516.   )
  517.   (set #text_setpatch_copy
  518.      (cat
  519.         "copy new SetPatch"
  520.      )
  521.   )
  522.   (set #text_tabs_copy
  523.      (cat
  524.         "copy tabs.gadget"
  525.      )
  526.   )
  527.   (set #text_variable
  528.      (cat
  529.         "Should I update the MetaView.path environment variable?"
  530.      )
  531.   )
  532.   (set #help_variable
  533.      (cat
  534.         "The ARexxScripts and the MetaView.datatype will use the variable for locate the executable."
  535.      )
  536.   )
  537.   (set #text_envarc
  538.      (cat
  539.         "Create ENVARC: variable with path of MetaView"
  540.      )
  541.   )
  542.   (set #help_envarc
  543.      (cat
  544.         "The variable will be stored resetproof in ENVARC:."
  545.       )
  546.   )
  547.   (set #text_env
  548.      (cat
  549.         "Create ENV: variable with path of MetaView"
  550.      )
  551.   )
  552.   (set #help_env
  553.      (cat
  554.         "The variable will be stored for instant use in ENV:."
  555.      )
  556.   )
  557.   (set #text_keyfile
  558.      (cat
  559.         "copy keyfile"
  560.      )
  561.   )
  562.   (set #help_keyfile
  563.      (cat
  564.         "Now I copy the keyfile."
  565.      )
  566.   )
  567.   (set #text_register
  568.      (cat
  569.         "Don`t forget to register!\n\n"
  570.         "Please send $20 or 30,- DM to me:\n\n"
  571.         "Henk Jonas\n"
  572.         "Zionskirchstr. 28\n"
  573.         "10119 Berlin\n"
  574.         "Germany"
  575.      )
  576.   )
  577.   (set #help_register
  578.      (cat
  579.         "Look at MetaView.readme, MetaView.doc "
  580.         "or MetaView.guide for register."
  581.      )
  582.   )
  583.   (set #text_thanx
  584.      (cat
  585.         "Thank you for registering MetaView!"
  586.      )
  587.   )
  588. ;/**/
  589.  
  590. ;************************************************
  591. ;
  592. ; deutsche Texte für die Installation
  593. ;
  594. ;************************************************
  595. ;/**/
  596.  
  597. (debug #language-number)
  598. (if (= #language-number 1)
  599.   (
  600.     (set #YES "Ja")
  601.     (set #NO  "Nein")
  602.     (set #text_copy "Kopiere")
  603.     (set #text_skip "Überspringe")
  604.     (set #text_update "Erneuere")
  605.  
  606.     (set #text_present
  607.        (cat
  608.            "Henk Jonas\n presentiert:\n\n MetaView\n\n"
  609.            "Dieses Programm zeigt Vektorgrafiken an\n"
  610.            "und konvertiert diese,\n"
  611.            "benutzt die 'amigametaformat.library'\n und ist SHAREWARE.\n"
  612.            "\n*Die Texte der Installation wurden übersetzt von:*\n"
  613.            "\n*Henk Jonas - subvcbhd@linux.zrz.tu-berlin.de*\n"
  614.        )
  615.     )
  616.     (set #text_programm_update
  617.        (cat
  618.           "Es wurde die MetaView-Schublade gefunden. "
  619.           "Belasse den Pfad im übergeordneten Verzeichnis der MetaView-Schublade, "
  620.           "um die existierende MetaView-Installation "
  621.           "auf den neusten Stand zu bringen."
  622.        )
  623.     )
  624.     (set #text_new
  625.        (cat
  626.           "Bitte wähle das Zielverzeichnis für MetaView aus. "
  627.           "Es wird eine Schublade mit dem Namen MetaView erzeugt, "
  628.           "wenn in dem Verzeichnis noch keine vorhanden ist."
  629.        )
  630.     )
  631.     (set #text_drawer
  632.        (cat
  633.           "Es wird die Schublade 'MetaView' erzeugt."
  634.        )
  635.     )
  636.     (set #text_library
  637.        (cat
  638.           "Nun wird die 'amigametaformat.library' installiert."
  639.        )
  640.     )
  641.     (set #help_library
  642.        (cat
  643.           "Diese Bibliothek wird von MetaView gebraucht. "
  644.           "Es ist sehr wichtig, sie zu installieren!"
  645.        )
  646.     )
  647.     (set #text_driver
  648.        (cat
  649.           "Nun werden die verschiedenen Ausgabetreiber für die 'amigametaformat.library' installiert."
  650.        )
  651.     )
  652.     (set #help_driver
  653.        (cat
  654.           "Die Optionen:\n"
  655.           "* Strip       : der Treiber für Bildschirm, Drucker und ILBM-Speicherung\n"
  656.           "* AMF         : für die Ausgabe als Amiga Metafile Format.\n"
  657.           "* CGM         : für die Ausgabe als Computer Graphics Metafile.\n"
  658.           "* EPS         : für die Ausgabe als Encapsulated PostScript.\n"
  659.           "* GEM         : für die Ausgabe als GEM Metafile.\n"
  660.           "* WordWorth   : erzeugt ARexx-Skripte, um sie in WordWorth zu benutzen.\n"
  661.           "* DR2D        : für die Ausgabe als DR2D (für PageStream, DrawStudio...)\n"
  662.           "* HPGL        : für die Ausgabe als HPGL (für Plotter)\n"
  663.           "* AI          : für die Ausgabe als AdobeIllustrator\n"
  664.           "* JMF         : für die Ausgabe als JavaMetaFile (für WWW-Veröffentlichungen)\n"
  665.           "* WMF         : für die Ausgabe als WindowsMetaFile\n"
  666.           "* FIG         : für die Ausgabe als XFIG Datei\n"
  667.        )
  668.     )
  669.     (set #text_strip
  670.        (cat
  671.           "Nun wird der strip-Treiber der 'amigametaformat.library' installiert."
  672.        )
  673.     )
  674.     (set #help_strip
  675.        (cat
  676.           "'strip' für alle Ausgaben auf dem Bildschirm, dem Drucker und Speichern als ILBM\n"
  677.        )
  678.     )
  679.     (set #text_file
  680.        (cat
  681.           "Nun wird der file-Treiber der 'amigametaformat.library' installiert."
  682.        )
  683.     )
  684.     (set #help_file
  685.        (cat
  686.           "'file' zum Speichern als Amiga Meta Format Grafikdatei\n"
  687.        )
  688.     )
  689.     (set #text_cgm
  690.        (cat
  691.           "Nun wird der CGM -Treiber der 'amigametaformat.library' installiert."
  692.        )
  693.     )
  694.     (set #help_cgm
  695.        (cat
  696.           "'CGM' zum Speichern als Computer Graphics Metafile\n"
  697.        )
  698.     )
  699.     (set #text_eps
  700.        (cat
  701.           "Nun wird der EPS-Treiber der 'amigametaformat.library' installiert."
  702.        )
  703.     )
  704.     (set #help_eps
  705.        (cat
  706.           "'EPS' zum Speichern als Encapsulated PostScript\n"
  707.        )
  708.     )
  709.     (set #text_gem
  710.        (cat
  711.           "Nun wird der GEM-Treiber der 'amigametaformat.library' installiert."
  712.        )
  713.     )
  714.     (set #help_gem
  715.        (cat
  716.           "'GEM' zum Speichern als GEM Grafikdatei\n"
  717.        )
  718.     )
  719.     (set #text_ww
  720.        (cat
  721.           "Nun wird der WordWorth-ARexx-Treiber der 'amigametaformat.library' installiert."
  722.        )
  723.     )
  724.     (set #help_ww
  725.        (cat
  726.           "WordWorth-ARexx-Treiber erzeugt WordWorth-ARexx-Skripte\n"
  727.        )
  728.     )
  729.     (set #text_dr2d
  730.        (cat
  731.           "Nun wird der DR2D-Treiber der 'amigametaformat.library' installiert."
  732.        )
  733.     )
  734.     (set #help_dr2d
  735.        (cat
  736.           "'DR2D' zum Speichern als DR2D Grafikdatei\n"
  737.        )
  738.     )
  739.     (set #text_hpgl
  740.        (cat
  741.           "Nun wird der HPGL-Treiber der 'amigametaformat.library' installiert."
  742.        )
  743.     )
  744.     (set #help_hpgl
  745.        (cat
  746.           "'HPGL' zum Speichern als HPGL Grafikdatei\n"
  747.        )
  748.     )
  749.     (set #text_ai
  750.        (cat
  751.           "Nun wird der AI-Treiber der 'amigametaformat.library' installiert."
  752.        )
  753.     )
  754.     (set #help_ai
  755.        (cat
  756.           "'AI' zum Speichern von Adobe Illustrator Grafikdateien\n"
  757.        )
  758.     )
  759.     (set #text_jmf
  760.        (cat
  761.           "Nun wird der JMF-Treiber der 'amigametaformat.library' installiert."
  762.        )
  763.     )
  764.     (set #help_jmf
  765.        (cat
  766.           "'JMF' zum Speichern von JMF Grafikdateien\n"
  767.        )
  768.     )
  769.     (set #text_wmf
  770.        (cat
  771.           "Nun wird der WMF-Treiber der 'amigametaformat.library' installiert."
  772.        )
  773.     )
  774.     (set #help_wmf
  775.        (cat
  776.           "'WMF' zum Speichern von WMF Grafikdateien\n"
  777.        )
  778.     )
  779.     (set #text_fig
  780.        (cat
  781.           "Nun wird der FIG-Treiber der 'amigametaformat.library' installiert."
  782.        )
  783.     )
  784.     (set #help_fig
  785.        (cat
  786.           "'FIG' zum Speichern von FIG Grafikdateien\n"
  787.        )
  788.     )
  789.     (set #text_programm
  790.        (cat
  791.           "kopiere das Programm"
  792.        )
  793.     )
  794.     (set #help_programm
  795.        (cat
  796.           "Nun wird das Programm kopiert."
  797.        )
  798.     )
  799.     (set #text_doc
  800.        (cat
  801.           "kopiere Dokumentation"
  802.        )
  803.     )
  804.     (set #help_doc
  805.        (cat
  806.           "Nun wird die Dokumentation kopiert.\n"
  807.           "Diese Textdatei ist veraltet und es sollte statt dessen das Guide benutzt werden."
  808.        )
  809.     )
  810.     (set #text_guide
  811.        (cat
  812.           "Nun wird die Hilfedatei (Guide) für MetaView kopiert. "
  813.           "Was ist Deine bevorzugte Sprache?"
  814.        )
  815.     )
  816.     (set #text_english_guide
  817.        (cat
  818.           "kopiere englisches MetaView.guide"
  819.        )
  820.     )
  821.     (set #help_english_guide
  822.        (cat
  823.           "Nun wird das englische MetaView.guide kopiert."
  824.        )
  825.     )
  826.     (set #text_german_guide
  827.        (cat
  828.           "kopiere deutsches MetaView.guide"
  829.        )
  830.     )
  831.     (set #help_german_guide
  832.        (cat
  833.           "Nun wird das deutsche MetaView.guide kopiert."
  834.        )
  835.     )
  836.     (set #text_spanish_guide
  837.        (cat
  838.           "kopiere spanisches MetaView.guide"
  839.        )
  840.     )
  841.     (set #help_spanish_guide
  842.        (cat
  843.           "Nun wird das spanische MetaView.guide kopiert."
  844.        )
  845.     )
  846.     (set #text_polish_guide
  847.        (cat
  848.           "kopiere polnisches MetaView.guide"
  849.        )
  850.     )
  851.     (set #help_polish_guide
  852.        (cat
  853.           "Nun wird das polnische MetaView.guide kopiert."
  854.        )
  855.     )
  856.     (set #text_czech_guide
  857.        (cat
  858.           "kopiere tschechisches MetaView.guide"
  859.        )
  860.     )
  861.     (set #help_czech_guide
  862.        (cat
  863.           "Nun wird das tschechische MetaView.guide kopiert."
  864.        )
  865.     )
  866.     (set #text_catalan_guide
  867.        (cat
  868.           "kopiere katalonisches MetaView.guide"
  869.        )
  870.     )
  871.     (set #help_catalan_guide
  872.        (cat
  873.           "Nun wird das katalonische MetaView.guide kopiert."
  874.        )
  875.     )
  876.     (set #text_readme
  877.        (cat
  878.           "kopiere amigametaformat.readme"
  879.        )
  880.     )
  881.     (set #help_readme
  882.        (cat
  883.           "Nun wird die Datei 'amigametaformat.readme' kopiert."
  884.        )
  885.     )
  886.     (set #text_arexx
  887.        (cat
  888.           "kopiere ARexx-Beispiele"
  889.        )
  890.     )
  891.     (set #help_arexx
  892.        (cat
  893.           "Nun werden einige Beispiele für die Benutzung von MetaView und "
  894.           "der Skriptsprache ARexx kopiert."
  895.        )
  896.     )
  897.     (set #text_ds
  898.        (cat
  899.           "Hast Du DrawStudio installiert "
  900.           "und möchtest Grafiken mittels "
  901.           "MetaView importieren und exportieren?"
  902.        )
  903.     )
  904.     (set #help_ds
  905.        (cat
  906.           "Zwei ARexx-Skripte zum Im- und Export von Grafiken"
  907.           "in DrawStudio mittels MetaView sollen kopiert werden."
  908.        )
  909.     )
  910.     (set #text_ds_path
  911.        (cat
  912.           "Bitte wähle das Verzeichnis, in dem DrawStudio seine ARexx-Skripte aufbewahrt."
  913.        )
  914.     )
  915.     (set #help_ds_path
  916.        (cat
  917.           "Es werden zwei ARexx-Skripte zum Im- und Export von Grafiken "
  918.           "in DrawStudio mittels MetaView kopiert."
  919.        )
  920.     )
  921.     (set #text_ds_import
  922.        (cat
  923.           "kopiere DrawStudio Import-Skript"
  924.        )
  925.     )
  926.     (set #text_ds_export
  927.        (cat
  928.           "kopiere DrawStudio Export-Skript"
  929.        )
  930.     )
  931.     (set #text_pgs
  932.        (cat
  933.           "Hast Du PageStream 3.x installiert "
  934.           "und möchtest Grafiken mittels MetaView importieren?"
  935.        )
  936.     )
  937.     (set #help_pgs
  938.        (cat
  939.           "Es soll ein ARexx-Skript zum Import "
  940.           "von Grafiken in PageStream mittels MetaView kopiert werden."
  941.        )
  942.     )
  943.     (set #text_pgs_path
  944.        (cat
  945.           "Bitte wähle das Verzeichnis aus, in den PageStream seine ARexx-Skripte ablegt."
  946.        )
  947.     )
  948.     (set #help_pgs_path
  949.        (cat
  950.           "Es soll ein ARexx-Skript zum Import "
  951.           "von Grafiken in PageStream mittels MetaView kopiert werden."
  952.        )
  953.     )
  954.     (set #text_pgs_import
  955.        (cat
  956.           "kopiere PageStream Import-Skript"
  957.        )
  958.     )
  959.     (set #text_ww
  960.        (cat
  961.           "Hast Du WordWorth installiert "
  962.           "und möchtest Grafiken mittels MetaView importieren?"
  963.        )
  964.     )
  965.     (set #help_ww
  966.        (cat
  967.           "Es soll ein ARexx-Skript zum Import "
  968.           "von Grafiken in WordWorth mittels MetaView kopiert werden."
  969.        )
  970.     )
  971.     (set #text_ww_path
  972.        (cat
  973.           "Bitte wähle das Verzeichnis aus, in den WordWorth seine ARexx-Skripte ablegt."
  974.        )
  975.     )
  976.     (set #help_ww_path
  977.        (cat
  978.           "Es soll ein ARexx-Skript zum Import "
  979.           "von Grafiken in WordWorth mittels MetaView kopiert werden."
  980.        )
  981.     )
  982.     (set #text_ww_import
  983.        (cat
  984.           "kopiere WordWorth Import-Skript"
  985.        )
  986.     )
  987.     (set #text_fw
  988.        (cat
  989.           "Hast Du FinalWriter installiert "
  990.           "und möchtest Grafiken mittels MetaView importieren?"
  991.        )
  992.     )
  993.     (set #help_fw
  994.        (cat
  995.           "Es soll ein ARexx-Skript zum Import "
  996.           "von Grafiken in FinalWriter mittels MetaView kopiert werden."
  997.        )
  998.     )
  999.     (set #text_fw_path
  1000.        (cat
  1001.           "Bitte wähle das Verzeichnis aus, in den FinalWriter seine ARexx-Skripte ablegt."
  1002.        )
  1003.     )
  1004.     (set #help_fw_path
  1005.        (cat
  1006.           "Es soll ein ARexx-Skript zum Import "
  1007.           "von Grafiken in FinalWriter mittels MetaView kopiert werden."
  1008.        )
  1009.     )
  1010.     (set #text_fw_import
  1011.        (cat
  1012.           "kopiere FinalWriter Import-Skript"
  1013.        )
  1014.     )
  1015.     (set #text_examples
  1016.        (cat
  1017.           "Sollen einige Beispieldateien kopiert werden?"
  1018.        )
  1019.     )
  1020.     (set #text_examples_copy
  1021.        (cat
  1022.           "kopiere Beispieldateien"
  1023.        )
  1024.     )
  1025.     (set #help_examples_copy
  1026.        (cat
  1027.           "Es werden einige Beispieldateien kopiert."
  1028.        )
  1029.     )
  1030.     (set #text_setpatch
  1031.        (cat
  1032.           "Es soll ein neuer SetPatch-Befehl (43.6) in Dein 'c:' Verzeichnis kopiert werden.\n"
  1033.           "Dieser Befehl wurde von Amiga Technologie veröffentlicht und "
  1034.           "behebt unteranderem einen Fehler in der 'mathieeesingbas.library' in Kick 3.1.\n"
  1035.           "Der alte 'c:SetPatch' wird umbenannt nach 'c:SetPatch.old'."
  1036.        )
  1037.     )
  1038.     (set #help_setpatch
  1039.        (cat
  1040.           "Wähle 'Kopiere', um den neuen SetPatch-Befehl zu installieren, oder 'Überspringe', um ihn nicht zu installieren.\n"
  1041.           "Du solltest diesen Befehl installieren.\n"
  1042.           "Wenn direkt beim Starten von MetaView eine GURU erscheint, behebt dieser Befehl das Problem!"
  1043.        )
  1044.     )
  1045.     (set #text_setpatch_copy
  1046.        (cat
  1047.           "kopiere neuen SetPatch-Befehl"
  1048.        )
  1049.     )
  1050.     (set #text_tabs_copy
  1051.        (cat
  1052.           "kopiere tabs.gadget"
  1053.        )
  1054.     )
  1055.     (set #text_variable
  1056.        (cat
  1057.           "Soll die 'MetaView.path' Umgebungsvariable erneuert werden?"
  1058.        )
  1059.     )
  1060.     (set #help_variable
  1061.        (cat
  1062.           "Die ARexx-Skripte und der MetaView.datatype benutzen diese Variable, um das Programm 'MetaView' zu finden."
  1063.        )
  1064.     )
  1065.     (set #text_envarc
  1066.        (cat
  1067.           "erzeuge Variable in ENVARC: mit Pfad von MetaView"
  1068.        )
  1069.     )
  1070.     (set #help_envarc
  1071.        (cat
  1072.           "Die Variable wird resetfest in ENVARC: gespeichert."
  1073.         )
  1074.     )
  1075.     (set #text_env
  1076.        (cat
  1077.           "erzeuge Variable in ENV: mit Pfad von MetaView"
  1078.        )
  1079.     )
  1080.     (set #help_env
  1081.        (cat
  1082.           "Die Variable wird für sofortige Benutzung in ENV: gespeichert."
  1083.        )
  1084.     )
  1085.     (set #text_keyfile
  1086.        (cat
  1087.           "kopiere Keyfile"
  1088.        )
  1089.     )
  1090.     (set #help_keyfile
  1091.        (cat
  1092.           "Es wird das Keyfile kopiert."
  1093.        )
  1094.     )
  1095.     (set #text_register
  1096.        (cat
  1097.           "Bitte vergiß nicht Dich registrieren zu lassen, wenn Du das Programm öfter benutzt.\n\n"
  1098.           "Bitte sende dazu $20 oder 30,- DM an mich:\n\n"
  1099.           "Henk Jonas\n"
  1100.           "Zionskirchstr. 28\n"
  1101.           "10119 Berlin\n"
  1102.           "Deutschland"
  1103.        )
  1104.     )
  1105.     (set #help_register
  1106.        (cat
  1107.           "Siehe in die Dateien MetaView.readme, MetaView.doc "
  1108.           "oder MetaView.guide nach, wie Du Dich registrieren lassen kannst."
  1109.        )
  1110.     )
  1111.     (set #text_thanx
  1112.        (cat
  1113.           "Vielen Dank, daß Du Dich für MetaView registrieren lassen hast."
  1114.        )
  1115.     )
  1116.   )
  1117. )
  1118. ;/**/
  1119.  
  1120. ;************************************************
  1121. ;
  1122. ; spanish - español ;)
  1123. ;
  1124. ;************************************************
  1125. ;/**/
  1126.  
  1127. (if (= #language-number 2)
  1128.   (
  1129.     (set #YES "Sí")
  1130.     (set #NO  "No")
  1131.     (set #text_copy "Copiar")
  1132.     (set #text_skip "Saltar esta parte")
  1133.     (set #text_update "Actualizar")
  1134.  
  1135.     (set #text_present
  1136.        (cat
  1137.           "Henk Jonas\n presenta:\n\n MetaView\n\n"
  1138.           "Este programa, que es SHAREWARE, muestra\n"
  1139.           "y convierte ficheros gráficos vectoriales,\n"
  1140.           "gracias a la biblioteca `amigametaformat.library'.\n\n"
  1141.           "\n*Guión instalador traducido al español por:*\n"
  1142.           "*Dámaso D. Estévez <amidde@arrakis.es>*\n"
  1143.        )
  1144.     )
  1145.     (set #text_programm_update
  1146.        (cat
  1147.           "Se ha encontrado el cajón MetaView: elija como camino\n"
  1148.           "de acceso el del directorio en el que se encuentra\n"
  1149.           "dicho cajón para actualizar la versión ya instalada."
  1150.        )
  1151.     )
  1152.     (set #text_new
  1153.        (cat
  1154.           "Por favor, elija el directorio de destino de MetaView:\n"
  1155.           "se creará allí el cajón MetaView, si éste aún no existe."
  1156.        )
  1157.     )
  1158.     (set #text_drawer
  1159.        (cat
  1160.           "Se está creando un cajón llamado `MetaView'."
  1161.        )
  1162.     )
  1163.     (set #text_library
  1164.        (cat
  1165.           "Ahora se instalará la biblioteca `amigametaformat.library'."
  1166.        )
  1167.     )
  1168.     (set #help_library
  1169.        (cat
  1170.           "\nEsta  biblioteca es necesaria para el programa... "
  1171.           "¡así que es básica su instalación!"
  1172.        )
  1173.     )
  1174.     (set #text_driver
  1175.        (cat
  1176.           "Ahora se instalarán los diferentes módulos de salida"
  1177.           "de la biblioteca `amigametaformat.library'."
  1178.        )
  1179.     )
  1180.     (set #help_driver
  1181.        (cat
  1182.           "\nMódulos disponibles:\n\n"
  1183.           "* Strip       : genera cualquier imagen, ya sea en pantalla, ILBM, impresora, etc.\n"
  1184.           "* AMF         : genera ficheros en formato `Amiga Metafile Format'.\n"
  1185.           "* CGM         : genera ficheros en formato `Computer Graphics Metafile'.\n"
  1186.           "* EPS         : genera ficheros en formato `Encapsulated PostScript'.\n"
  1187.           "* GEM         : genera ficheros en formato `GEM Metafile'.\n"
  1188.           "* WordWorth   : crear guiones ARexx, para usar con WordWorth.\n"
  1189.           "* DR2D        : genera ficheros en formato DR2D (PageStream, DrawStudio...)\n"
  1190.           "* HPGL        : genera ficheros en formato HPGL (trazadores)\n"
  1191.           "* AI          : genera ficheros en formato `AdobeIllustrator'\n"
  1192.           "* JMF         : genera ficheros en formato `JavaMetaFile' (autoedición HTML)\n"
  1193.           "* WMF         : genera ficheros en formato `WindowsMetaFile'\n"
  1194.           "* FIG         : genera ficheros en formato `XFIG'\n"
  1195.        )
  1196.     )
  1197.     (set #text_strip
  1198.        (cat
  1199.           "Ahora se instalará el módulo auxiliar de bandas de la biblioteca `amigametaformat.library'."
  1200.        )
  1201.     )
  1202.     (set #help_strip
  1203.        (cat
  1204.           "\nMódulo para dividir en bandas todas las imágenes enviada a pantalla, impresora o fichero ILBM\n"
  1205.        )
  1206.     )
  1207.     (set #text_file
  1208.        (cat
  1209.           "Ahora se instalará el módulo auxiliar de ficheros de la biblioteca `amigametaformat.library'."
  1210.        )
  1211.     )
  1212.     (set #help_file
  1213.        (cat
  1214.           "\nMódulo para guardar ficheros con formato Amiga Meta Format Metafile\n"
  1215.        )
  1216.     )
  1217.     (set #text_cgm
  1218.        (cat
  1219.           "Ahora se instalará el módulo auxiliar CGM de la biblioteca `amigametaformat.library'."
  1220.        )
  1221.     )
  1222.     (set #help_cgm
  1223.        (cat
  1224.           "\nMódulo para guardar ficheros con formato CGM\n"
  1225.        )
  1226.     )
  1227.     (set #text_eps
  1228.        (cat
  1229.           "Ahora se instalará el módulo auxiliar EPS de la biblioteca `amigametaformat.library'."
  1230.        )
  1231.     )
  1232.     (set #help_eps
  1233.        (cat
  1234.           "\nMódulo para guardar ficheros con formato EPS\n"
  1235.        )
  1236.     )
  1237.     (set #text_gem
  1238.        (cat
  1239.           "Ahora se instalará el módulo auxiliar GEM de la biblioteca `amigametaformat.library'."
  1240.        )
  1241.     )
  1242.     (set #help_gem
  1243.        (cat
  1244.           "\nMódulo para guardar ficheros con formato GEM\n"
  1245.        )
  1246.     )
  1247.     (set #text_ww
  1248.        (cat
  1249.           "Ahora se instalará el módulo auxiliar WordWorth-ARexx de la biblioteca `amigametaformat.library'."
  1250.        )
  1251.     )
  1252.     (set #help_ww
  1253.        (cat
  1254.           "\nMódulo para la creación de guiones WordWorth-ARexx\n"
  1255.        )
  1256.     )
  1257.     (set #text_dr2d
  1258.        (cat
  1259.           "Ahora se instalará el módulo auxiliar DR2D de la biblioteca `amigametaformat.library'."
  1260.        )
  1261.     )
  1262.     (set #help_dr2d
  1263.        (cat
  1264.           "\nMódulo para la creación de ficheros DR2D\n"
  1265.        )
  1266.     )
  1267.     (set #text_hpgl
  1268.        (cat
  1269.           "Ahora se instalará el módulo auxiliar HPGL de la biblioteca `amigametaformat.library'."
  1270.        )
  1271.     )
  1272.     (set #help_hpgl
  1273.        (cat
  1274.           "\nMódulo para la creación de ficheros HPGL\n"
  1275.        )
  1276.     )
  1277.     (set #text_ai
  1278.        (cat
  1279.           "Ahora se instalará el módulo auxiliar AI de la biblioteca `amigametaformat.library'."
  1280.        )
  1281.     )
  1282.     (set #help_ai
  1283.        (cat
  1284.           "\nMódulo para la creación de ficheros AI\n"
  1285.        )
  1286.     )
  1287.     (set #text_jmf
  1288.        (cat
  1289.           "Ahora se instalará el módulo auxiliar JMF de la biblioteca `amigametaformat.library'."
  1290.        )
  1291.     )
  1292.     (set #help_jmf
  1293.        (cat
  1294.           "\nMódulo para la creación de fichero JMF\n"
  1295.        )
  1296.     )
  1297.     (set #text_wmf
  1298.        (cat
  1299.           "Ahora se instalará el módulo auxiliar WMF de la biblioteca `amigametaformat.library'."
  1300.        )
  1301.     )
  1302.     (set #help_wmf
  1303.        (cat
  1304.           "\nMódulo para la creación de ficheros WMF\n"
  1305.        )
  1306.     )
  1307.     (set #text_fig
  1308.        (cat
  1309.           "Ahora se instalará el módulo auxiliar FIG de la biblioteca `amigametaformat.library'."
  1310.        )
  1311.     )
  1312.     (set #help_fig
  1313.        (cat
  1314.           "\nMódulo para la creación de ficheros FIG\n"
  1315.        )
  1316.     )
  1317.     (set #text_programm
  1318.        (cat
  1319.           "Copiar programa"
  1320.        )
  1321.     )
  1322.     (set #help_programm
  1323.        (cat
  1324.           "\nAhora se procederá a copiar el programa."
  1325.        )
  1326.     )
  1327.     (set #text_doc
  1328.        (cat
  1329.           "Copiar documentación"
  1330.        )
  1331.     )
  1332.     (set #help_doc
  1333.        (cat
  1334.           "\nAhora se procederá a copiar la documentación "
  1335.           "(este fichero de texto ha quedado obsoleto, "
  1336.           "utilice el fichero guía en su lugar)."
  1337.        )
  1338.     )
  1339.     (set #text_guide
  1340.        (cat
  1341.           "Ahora se procederá a copiar la documentación\n"
  1342.           "de MetaView. ¿Qué idioma prefiere?"
  1343.        )
  1344.     )
  1345.     (set #text_english_guide
  1346.        (cat
  1347.           "Copiar MetaView.guide en inglés"
  1348.        )
  1349.     )
  1350.     (set #help_english_guide
  1351.        (cat
  1352.           "\nAhora se copiará la versión inglesa del fichero de documentación `MetaView.guide'."
  1353.        )
  1354.     )
  1355.     (set #text_german_guide
  1356.        (cat
  1357.           "Copiar MetaView.guide en alemán"
  1358.        )
  1359.     )
  1360.     (set #help_german_guide
  1361.        (cat
  1362.           "\nAhora se copiará la versión alemana del fichero de documentación `MetaView.guide'."
  1363.        )
  1364.     )
  1365.     (set #text_spanish_guide
  1366.        (cat
  1367.           "Copiar MetaView.guide en español"
  1368.        )
  1369.     )
  1370.     (set #help_spanish_guide
  1371.        (cat
  1372.           "\nAhora se copiaré la versión en español del fichero de documentación `MetaView.guide'."
  1373.        )
  1374.     )
  1375.     (set #text_polish_guide
  1376.        (cat
  1377.           "Copiar MetaView.guide en polaco"
  1378.        )
  1379.     )
  1380.     (set #help_polish_guide
  1381.        (cat
  1382.           "\nAhora se copiará la versión polaca del fichero de documentación `MetaView.guide'."
  1383.        )
  1384.     )
  1385.     (set #text_czech_guide
  1386.        (cat
  1387.           "Copiar MetaView.guide en checo"
  1388.        )
  1389.     )
  1390.     (set #help_czech_guide
  1391.        (cat
  1392.           "\nAhora se copiará la versión checa del fichero de documentación `MetaView.guide'."
  1393.        )
  1394.     )
  1395.     (set #text_catalan_guide
  1396.        (cat
  1397.           "Copiar MetaView.guide en catalán"
  1398.        )
  1399.     )
  1400.     (set #help_catalan_guide
  1401.        (cat
  1402.           "\nAhora se copiará la versión en catalán del fichero de documentación `MetaView.guide'."
  1403.        )
  1404.     )
  1405.     (set #text_readme
  1406.        (cat
  1407.           "Copiar el fichero `amigametaformat.readme'"
  1408.        )
  1409.     )
  1410.     (set #help_readme
  1411.        (cat
  1412.           "\nAhora se copiará el fichero 'amigametaformat.readme'."
  1413.        )
  1414.     )
  1415.     (set #text_arexx
  1416.        (cat
  1417.           "Copiar ejemplos ARexx"
  1418.        )
  1419.     )
  1420.     (set #help_arexx
  1421.        (cat
  1422.           "\nAhora se copiarán los ejemplos ARexx."
  1423.        )
  1424.     )
  1425.     (set #text_ds
  1426.        (cat
  1427.           "¿Tiene instalado el programa DrawStudio y quiere\n"
  1428.           "(im|ex)portar gráficos ayudado por MetaView?"
  1429.        )
  1430.     )
  1431.     (set #help_ds
  1432.        (cat
  1433.           "\nAhora se procederá a instalar un par de guiones ARexx para que el programa "
  1434.           "DrawStudio pueda importar/exportar gráficos ayudado de MetaView."
  1435.        )
  1436.     )
  1437.     (set #text_ds_path
  1438.        (cat
  1439.           "Por favor, elija el cajón donde residen\n"
  1440.           "los guiones ARexx de DrawStudio."
  1441.        )
  1442.     )
  1443.     (set #help_ds_path
  1444.        (cat
  1445.           "\nHa solicitado instalar un par de guiones ARexx para que el programa "
  1446.           "DrawStudio pueda importar/exportar gráficos ayudado de MetaView... "
  1447.           "y para ello se necesita que indique el camino de acceso correspondiente."
  1448.        )
  1449.     )
  1450.     (set #text_ds_import
  1451.        (cat
  1452.           "Copiar guión de importación para DrawStudio"
  1453.        )
  1454.     )
  1455.     (set #text_ds_export
  1456.        (cat
  1457.           "Copiar guión de exportación para DrawStudio"
  1458.        )
  1459.     )
  1460.     (set #text_pgs
  1461.        (cat
  1462.           "¿Tiene instalado el programa PageStream 3.x y\n"
  1463.           "quiere importar gráficos ayudado por MetaView?"
  1464.        )
  1465.     )
  1466.     (set #help_pgs
  1467.        (cat
  1468.           "\nAhora se procederá a instalar un guión ARexx para que el programa PageStream "
  1469.           "pueda importar gráficos ayudado de MetaView."
  1470.        )
  1471.     )
  1472.     (set #text_pgs_path
  1473.        (cat
  1474.           "Por favor, elija el cajón donde residen\n"
  1475.           "los guiones ARexx de PageStream."
  1476.        )
  1477.     )
  1478.     (set #help_pgs_path
  1479.        (cat
  1480.           "\nHa solicitado instalar un guión ARexx para que el programa PageStream "
  1481.           "pueda importar gráficos ayudado de MetaView... y para ello "
  1482.           "se necesita que indique el camino de acceso correspondiente."
  1483.        )
  1484.     )
  1485.     (set #text_pgs_import
  1486.        (cat
  1487.           "Copiar guión de importación para PageStream"
  1488.        )
  1489.     )
  1490.     (set #text_ww
  1491.        (cat
  1492.           "¿Tiene instalado el programa WordWorth y\n"
  1493.           "quiere importar gráficos ayudado por MetaView?"
  1494.        )
  1495.     )
  1496.     (set #help_ww
  1497.        (cat
  1498.           "\nAhora se procederá a instalar un guión ARexx para que el programa WordWorth "
  1499.           "pueda importar gráficos ayudado de MetaView."
  1500.        )
  1501.     )
  1502.     (set #text_ww_path
  1503.        (cat
  1504.           "Por favor, elija el cajón donde residen\n"
  1505.           "los guiones ARexx de WordWorth."
  1506.        )
  1507.     )
  1508.     (set #help_ww_path
  1509.        (cat
  1510.           "\nHa solicitado instalar un guión ARexx para que el programa WordWorth "
  1511.           "pueda importar gráficos ayudado de MetaView... y para ello "
  1512.           "se necesita que indique el camino de acceso correspondiente."
  1513.        )
  1514.     )
  1515.     (set #text_ww_import
  1516.        (cat
  1517.           "Copiar guión de importación para WordWorth"
  1518.        )
  1519.     )
  1520.     (set #text_fw
  1521.        (cat
  1522.           "¿Tiene instalado el programa FinalWriter y\n"
  1523.           "quiere importar gráficos ayudado por MetaView?"
  1524.        )
  1525.     )
  1526.     (set #help_fw
  1527.        (cat
  1528.           "\nAhora se procederá a instalar un guión ARexx para que el programa FinalWriter "
  1529.           "pueda importar gráficos ayudado de MetaView."
  1530.        )
  1531.     )
  1532.     (set #text_fw_path
  1533.        (cat
  1534.           "Por favor, elija el cajón donde residen\n"
  1535.           "los guiones ARexx de FinalWriter."
  1536.        )
  1537.     )
  1538.     (set #help_fw_path
  1539.        (cat
  1540.           "\nHa solicitado instalar un guión ARexx para que el programa FinalWriter "
  1541.           "pueda importar gráficos ayudado de MetaView... y para ello "
  1542.           "se necesita que indique el camino de acceso correspondiente."
  1543.        )
  1544.     )
  1545.     (set #text_fw_import
  1546.        (cat
  1547.           "Copiar guión de importación para FinalWriter"
  1548.        )
  1549.     )
  1550.     (set #text_examples
  1551.        (cat
  1552.           "¿Quiere que copie los ficheros de ejemplo?"
  1553.        )
  1554.     )
  1555.     (set #text_examples_copy
  1556.        (cat
  1557.           "Copiar ficheros de ejemplo"
  1558.        )
  1559.     )
  1560.     (set #help_examples_copy
  1561.        (cat
  1562.           "\nAhora se van a copiar algunos ejemplos en el directorio `Examples'."
  1563.        )
  1564.     )
  1565.     (set #text_setpatch
  1566.        (cat
  1567.           "Ahora se procederá a copiar una nueva versión de `SetPatch' (43.6) en el "
  1568.           "directorio `c:' de su sistema (este programa ha sido publicado por Amiga "
  1569.           "Technologies y corrige algunos errores de la biblioteca "
  1570.           "`mathieeesingbas.library' disponible con la Kickstart 3.1): "
  1571.           "la versión antigua `c:SetPatch' será renombrada como `c:SetPatch.old'."
  1572.        )
  1573.     )
  1574.     (set #help_setpatch
  1575.        (cat
  1576.           "\nPresione el botón `Copiar'/`Copy' para instalar el nuevo `SetPatch' "
  1577.           "o `Saltar esta parte' para no hacerlo.\nPersonalmente, le recomiendo "
  1578.           "que lo instale, pero si al poner en marcha MetaView se produce un gurú, "
  1579.           "¡tendrá que instalarlo forzosamente!"
  1580.        )
  1581.     )
  1582.     (set #text_setpatch_copy
  1583.        (cat
  1584.           "Copiar nueva versión de `SetPatch'"
  1585.        )
  1586.     )
  1587.     (set #text_tabs_copy
  1588.        (cat
  1589.           "Copiar elemento de la\ninterfaz gráfica `tabs.gadget'"
  1590.        )
  1591.     )
  1592.     (set #text_variable
  1593.        (cat
  1594.           "¿Debería ser actualizada la variable de entorno `MetaView.path'?"
  1595.        )
  1596.     )
  1597.     (set #help_variable
  1598.        (cat
  1599.           "\nLos guiones ARexx y el módulo "MetaView.datatype" utilizarán la variable de entorno para localizar el ejecutable."
  1600.        )
  1601.     )
  1602.     (set #text_envarc
  1603.        (cat
  1604.           "Se crearé una variable en `ENVARC:' que contiene el camino de acceso a MetaView"
  1605.        )
  1606.     )
  1607.     (set #help_envarc
  1608.        (cat
  1609.           "\nLa variable de entorno será almacenada en `ENVARC:' de manera que sus contenidos se conservarán aunque se reinicie el sistema."
  1610.         )
  1611.     )
  1612.     (set #text_env
  1613.        (cat
  1614.           "Se creará una variable en `ENV:' que contiene el camino de acceso a MetaView."
  1615.        )
  1616.     )
  1617.     (set #help_env
  1618.        (cat
  1619.           "\nLa variable de entorno será almacenada en `ENV:' para que sea utilizada en la sesión actual."
  1620.        )
  1621.     )
  1622.     (set #text_keyfile
  1623.        (cat
  1624.           "Copiar fichero llave"
  1625.        )
  1626.     )
  1627.     (set #help_keyfile
  1628.        (cat
  1629.           "\nAhora se copiará el fichero llave (¡recuerde que éste es personal e instranferible!)."
  1630.        )
  1631.     )
  1632.     (set #text_register
  1633.        (cat
  1634.           "¡No olvide registrarse!\n\n"
  1635.           "Por favor, envíe\n20 dólares EE.UU. o\n30 marcos alemanes a:\n\n"
  1636.           "Henk Jonas\n"
  1637.           "Zionskirchstr. 28\n"
  1638.           "10119 Berlin\n"
  1639.           "Germany"
  1640.        )
  1641.     )
  1642.     (set #help_register
  1643.        (cat
  1644.           "\nConsulte los ficheros `MetaView.readme', `MetaView.doc' "
  1645.           "o `MetaView.guide' para obtener (más) información de cómo registrarse."
  1646.        )
  1647.     )
  1648.     (set #text_thanx
  1649.        (cat
  1650.           "¡Gracias por registrar MetaView!"
  1651.        )
  1652.     )
  1653.   )
  1654. )
  1655. ;/**/
  1656.  
  1657. ;************************************************
  1658. ;
  1659. ; polnisch
  1660. ;
  1661. ;************************************************
  1662. ;/**/
  1663.  
  1664. (if (= #language-number 3)
  1665.   (
  1666.     (set #YES "Yes")
  1667.     (set #NO  "No")
  1668.     (set #text_copy "Copy")
  1669.     (set #text_skip "Skip")
  1670.     (set #text_update "Update")
  1671.  
  1672.     (set #text_present
  1673.        (cat
  1674.           "Henk Jonas\n present:\n\n MetaView\n\n"
  1675.           "This programm shows and converts gfx-metafile,\n"
  1676.           "uses the 'amigametaformat.library'\n and is SHAREWARE."
  1677.            ;"\n*Translated bla,bla,bla:*\n"
  1678.            ;"*Your Name - Your EMail*\n"
  1679.        )
  1680.     )
  1681.     (set #text_programm_update
  1682.        (cat
  1683.           "I found the MetaView drawer,\n"
  1684.           "leave the path in the parent directory\n"
  1685.           "of the MetaView drawer for\n"
  1686.           "updating an existing MetaView installation."
  1687.        )
  1688.     )
  1689.     (set #text_new
  1690.        (cat
  1691.           "Please choose the destination for MetaView.\n"
  1692.           "I will create a MetaView drawer there,\n"
  1693.           "if it does not exist."
  1694.        )
  1695.     )
  1696.     (set #text_drawer
  1697.        (cat
  1698.           "I am creating the drawer 'MetaView'."
  1699.        )
  1700.     )
  1701.     (set #text_library
  1702.        (cat
  1703.           "Now I will install the 'amigametaformat.library'."
  1704.        )
  1705.     )
  1706.     (set #help_library
  1707.        (cat
  1708.           "This library are needed for this programm.\n"
  1709.           "It is very importent to install this!"
  1710.        )
  1711.     )
  1712.     (set #text_driver
  1713.        (cat
  1714.           "Now I will install the different Outputdrivers for the 'amigametaformat.library'."
  1715.        )
  1716.     )
  1717.     (set #help_driver
  1718.        (cat
  1719.           "the options:\n"
  1720.           "* Strip       : the driver for all renderings, like screen, ILBM, printer etc.\n"
  1721.           "* AMF         : are for output as Amiga Metafile Format.\n"
  1722.           "* CGM         : are for output as Computer Graphics Metafile.\n"
  1723.           "* EPS         : are for output as Encapsulated PostScript.\n"
  1724.           "* GEM         : are for output as GEM Metafile.\n"
  1725.           "* WordWorth   : create ARexx scripts, for use in WordWorth.\n"
  1726.           "* DR2D        : are for output as DR2D (for PageStream, DrawStudio...)\n"
  1727.           "* HPGL        : are for output as HPGL (for Plotters)\n"
  1728.           "* AI          : are for output as AdobeIllustrator\n"
  1729.           "* JMF         : are for output as JavaMetaFile (for www-publishing)\n"
  1730.           "* WMF         : are for output as WindowsMetaFile\n"
  1731.           "* FIG         : are for output as XFIG file\n"
  1732.        )
  1733.     )
  1734.     (set #text_strip
  1735.        (cat
  1736.           "Now I will install the stripdriver for 'amigametaformat.library'."
  1737.        )
  1738.     )
  1739.     (set #help_strip
  1740.        (cat
  1741.           "strip for all renderings on screen, printer and ILBM-output\n"
  1742.        )
  1743.     )
  1744.     (set #text_file
  1745.        (cat
  1746.           "Now I will install the filedriver for 'amigametaformat.library'."
  1747.        )
  1748.     )
  1749.     (set #help_file
  1750.        (cat
  1751.           "file for saving as Amiga Meta Format Metafile\n"
  1752.        )
  1753.     )
  1754.     (set #text_cgm
  1755.        (cat
  1756.           "Now I will install the CGMdriver for 'amigametaformat.library'."
  1757.        )
  1758.     )
  1759.     (set #help_cgm
  1760.        (cat
  1761.           "CGM for saving as Computer Graphics Metafile\n"
  1762.        )
  1763.     )
  1764.     (set #text_eps
  1765.        (cat
  1766.           "Now I will install the EPSdriver for 'amigametaformat.library'."
  1767.        )
  1768.     )
  1769.     (set #help_eps
  1770.        (cat
  1771.           "EPS for saving as Encapsulated PostScript\n"
  1772.        )
  1773.     )
  1774.     (set #text_gem
  1775.        (cat
  1776.           "Now I will install the GEMdriver for 'amigametaformat.library'."
  1777.        )
  1778.     )
  1779.     (set #help_gem
  1780.        (cat
  1781.           "GEM for saving as GEM Metafile\n"
  1782.        )
  1783.     )
  1784.     (set #text_ww
  1785.        (cat
  1786.           "Now I will install the WordWorth-ARexx-driver for 'amigametaformat.library'."
  1787.        )
  1788.     )
  1789.     (set #help_ww
  1790.        (cat
  1791.           "WordWorth-ARexx-driver for creating WordWorth-ARexx-script\n"
  1792.        )
  1793.     )
  1794.     (set #text_dr2d
  1795.        (cat
  1796.           "Now I will install the DR2D-driver for 'amigametaformat.library'."
  1797.        )
  1798.     )
  1799.     (set #help_dr2d
  1800.        (cat
  1801.           "DR2D-driver for creating DR2D-Output\n"
  1802.        )
  1803.     )
  1804.     (set #text_hpgl
  1805.        (cat
  1806.           "Now I will install the HPGL-driver for 'amigametaformat.library'."
  1807.        )
  1808.     )
  1809.     (set #help_hpgl
  1810.        (cat
  1811.           "HPGL-driver for creating HPGL-Output\n"
  1812.        )
  1813.     )
  1814.     (set #text_ai
  1815.        (cat
  1816.           "Now I will install the AI-driver for 'amigametaformat.library'."
  1817.        )
  1818.     )
  1819.     (set #help_ai
  1820.        (cat
  1821.           "AI-driver for creating AI-Output\n"
  1822.        )
  1823.     )
  1824.     (set #text_jmf
  1825.        (cat
  1826.           "Now I will install the JMF-driver for 'amigametaformat.library'."
  1827.        )
  1828.     )
  1829.     (set #help_jmf
  1830.        (cat
  1831.           "JMF-driver for creating JMF-Output\n"
  1832.        )
  1833.     )
  1834.     (set #text_wmf
  1835.        (cat
  1836.           "Now I will install the WMF-driver for 'amigametaformat.library'."
  1837.        )
  1838.     )
  1839.     (set #help_wmf
  1840.        (cat
  1841.           "WMF-driver for creating WMF-Output\n"
  1842.        )
  1843.     )
  1844.     (set #text_fig
  1845.        (cat
  1846.           "Now I will install the FIG-driver for 'amigametaformat.library'."
  1847.        )
  1848.     )
  1849.     (set #help_fig
  1850.        (cat
  1851.           "FIG-driver for creating FIG-Output\n"
  1852.        )
  1853.     )
  1854.     (set #text_programm
  1855.        (cat
  1856.           "copy programm"
  1857.        )
  1858.     )
  1859.     (set #help_programm
  1860.        (cat
  1861.           "Now, I will copy the programm."
  1862.        )
  1863.     )
  1864.     (set #text_doc
  1865.        (cat
  1866.           "copy documentation"
  1867.        )
  1868.     )
  1869.     (set #help_doc
  1870.        (cat
  1871.           "Now, I will copy the documentation.\n"
  1872.           "This textfile is obsolete, use the guide instead."
  1873.        )
  1874.     )
  1875.     (set #text_guide
  1876.        (cat
  1877.           "Now I will copy the guide for MetaView.\n"
  1878.           "What is your favorite language?"
  1879.        )
  1880.     )
  1881.     (set #text_english_guide
  1882.        (cat
  1883.           "copy English MetaView.guide"
  1884.        )
  1885.     )
  1886.     (set #help_english_guide
  1887.        (cat
  1888.           "Now, I will copy the English MetaView.guide."
  1889.        )
  1890.     )
  1891.     (set #text_german_guide
  1892.        (cat
  1893.           "copy German MetaView.guide"
  1894.        )
  1895.     )
  1896.     (set #help_german_guide
  1897.        (cat
  1898.           "Now, I will copy the German MetaView.guide."
  1899.        )
  1900.     )
  1901.     (set #text_spanish_guide
  1902.        (cat
  1903.           "copy Spanish MetaView.guide"
  1904.        )
  1905.     )
  1906.     (set #help_spanish_guide
  1907.        (cat
  1908.           "Now, I will copy the Spanish MetaView.guide."
  1909.        )
  1910.     )
  1911.     (set #text_polish_guide
  1912.        (cat
  1913.           "copy Polish MetaView.guide"
  1914.        )
  1915.     )
  1916.     (set #help_polish_guide
  1917.        (cat
  1918.           "Now, I will copy the Polish MetaView.guide."
  1919.        )
  1920.     )
  1921.     (set #text_czech_guide
  1922.        (cat
  1923.           "copy Czech MetaView.guide"
  1924.        )
  1925.     )
  1926.     (set #help_czech_guide
  1927.        (cat
  1928.           "Now, I will copy the Czech MetaView.guide."
  1929.        )
  1930.     )
  1931.     (set #text_catalan_guide
  1932.        (cat
  1933.           "copy Catalan MetaView.guide"
  1934.        )
  1935.     )
  1936.     (set #help_catalan_guide
  1937.        (cat
  1938.           "Now, I will copy the Catalan MetaView.guide."
  1939.        )
  1940.     )
  1941.     (set #text_readme
  1942.        (cat
  1943.           "copy amigametaformat.readme"
  1944.        )
  1945.     )
  1946.     (set #help_readme
  1947.        (cat
  1948.           "Now, I will copy the amigametaformat.readme."
  1949.        )
  1950.     )
  1951.     (set #text_arexx
  1952.        (cat
  1953.           "copy ARexx-Examples"
  1954.        )
  1955.     )
  1956.     (set #help_arexx
  1957.        (cat
  1958.           "Now, I will copy some ARexx-Examples."
  1959.        )
  1960.     )
  1961.     (set #text_ds
  1962.        (cat
  1963.           "Do you have DrawStudio installed,\n"
  1964.           "and want to im- and export gfx\n"
  1965.           "with MetaView?"
  1966.        )
  1967.     )
  1968.     (set #help_ds
  1969.        (cat
  1970.           "I want to install two ARexx scripts for import and export\n"
  1971.           "graphics in DrawStudio with MetaView."
  1972.        )
  1973.     )
  1974.     (set #text_ds_path
  1975.        (cat
  1976.           "Please choose the DrawStudio ARexx scripts drawer."
  1977.        )
  1978.     )
  1979.     (set #help_ds_path
  1980.        (cat
  1981.           "I want to install two ARexx scripts for import and export\n"
  1982.           "graphics in DrawStudio with MetaView."
  1983.        )
  1984.     )
  1985.     (set #text_ds_import
  1986.        (cat
  1987.           "copying DrawStudio import script"
  1988.        )
  1989.     )
  1990.     (set #text_ds_export
  1991.        (cat
  1992.           "copying DrawStudio export script"
  1993.        )
  1994.     )
  1995.     (set #text_pgs
  1996.        (cat
  1997.           "Do you have PageStream 3.x installed,\n"
  1998.           "and want to import gfx with MetaView?"
  1999.        )
  2000.     )
  2001.     (set #help_pgs
  2002.        (cat
  2003.           "I want to install one ARexx script for import\n"
  2004.           "graphics in PageStream with MetaView."
  2005.        )
  2006.     )
  2007.     (set #text_pgs_path
  2008.        (cat
  2009.           "Please choose the PageStream ARexx scripts drawer."
  2010.        )
  2011.     )
  2012.     (set #help_pgs_path
  2013.        (cat
  2014.           "I want to install one ARexx script for import\n"
  2015.           "graphics in PageStream with MetaView."
  2016.        )
  2017.     )
  2018.     (set #text_pgs_import
  2019.        (cat
  2020.           "copying PageStream import script"
  2021.        )
  2022.     )
  2023.     (set #text_ww
  2024.        (cat
  2025.           "Do you have WordWorth installed,\n"
  2026.           "and want to import gfx with MetaView?"
  2027.        )
  2028.     )
  2029.     (set #help_ww
  2030.        (cat
  2031.           "I want to install one ARexx script for import\n"
  2032.           "graphics in WordWorth with MetaView."
  2033.        )
  2034.     )
  2035.     (set #text_ww_path
  2036.        (cat
  2037.           "Please choose the WordWorth ARexx scripts drawer."
  2038.        )
  2039.     )
  2040.     (set #help_ww_path
  2041.        (cat
  2042.           "I want to install one ARexx script for import\n"
  2043.           "graphics in WordWorth with MetaView."
  2044.        )
  2045.     )
  2046.     (set #text_ww_import
  2047.        (cat
  2048.           "copying WordWorth import script"
  2049.        )
  2050.     )
  2051.     (set #text_fw
  2052.        (cat
  2053.           "Do you have FinalWriter installed,\n"
  2054.           "and want to import gfx with MetaView?"
  2055.        )
  2056.     )
  2057.     (set #help_fw
  2058.        (cat
  2059.           "I want to install one ARexx script for import\n"
  2060.           "graphics in FinalWriter with MetaView."
  2061.        )
  2062.     )
  2063.     (set #text_fw_path
  2064.        (cat
  2065.           "Please choose the FinalWriter ARexx scripts drawer."
  2066.        )
  2067.     )
  2068.     (set #help_fw_path
  2069.        (cat
  2070.           "I want to install one ARexx script for import\n"
  2071.           "graphics in FinalWriter with MetaView."
  2072.        )
  2073.     )
  2074.     (set #text_fw_import
  2075.        (cat
  2076.           "copying FinalWriter import script"
  2077.        )
  2078.     )
  2079.     (set #text_examples
  2080.        (cat
  2081.           "Should I copy the example files?"
  2082.        )
  2083.     )
  2084.     (set #text_examples_copy
  2085.        (cat
  2086.           "copy Examples"
  2087.        )
  2088.     )
  2089.     (set #help_examples_copy
  2090.        (cat
  2091.           "Now, I want to copy some Examples."
  2092.        )
  2093.     )
  2094.     (set #text_setpatch
  2095.        (cat
  2096.           "I want to copy a new SetPatch (43.6) to your 'c:' directory.\n"
  2097.           "This Software are published from Amiga Technologie and\n"
  2098.           "fix also a bug on 'mathieeesingbas.library' in Kick 3.1.\n"
  2099.           "The old 'c:SetPatch' will renamed to 'c:SetPatch.old'."
  2100.        )
  2101.     )
  2102.     (set #help_setpatch
  2103.        (cat
  2104.           "Press 'Copy' to install the new SetPatch and 'Skip' for not install.\n"
  2105.           "You are advised to install this Patch.\n"
  2106.           "But if you get a GURU on MetaView-startup you must!"
  2107.        )
  2108.     )
  2109.     (set #text_setpatch_copy
  2110.        (cat
  2111.           "copy new SetPatch"
  2112.        )
  2113.     )
  2114.     (set #text_tabs_copy
  2115.        (cat
  2116.           "copy tabs.gadget"
  2117.        )
  2118.     )
  2119.     (set #text_variable
  2120.        (cat
  2121.           "Should I update the MetaView.path environment variable?"
  2122.        )
  2123.     )
  2124.     (set #help_variable
  2125.        (cat
  2126.           "The ARexxScripts and the MetaView.datatype will use the variable for locate the executable."
  2127.        )
  2128.     )
  2129.     (set #text_envarc
  2130.        (cat
  2131.           "Create ENVARC: variable with path of MetaView"
  2132.        )
  2133.     )
  2134.     (set #help_envarc
  2135.        (cat
  2136.           "The variable will be stored resetproof in ENVARC:."
  2137.         )
  2138.     )
  2139.     (set #text_env
  2140.        (cat
  2141.           "Create ENV: variable with path of MetaView"
  2142.        )
  2143.     )
  2144.     (set #help_env
  2145.        (cat
  2146.           "The variable will be stored for instant use in ENV:."
  2147.        )
  2148.     )
  2149.     (set #text_keyfile
  2150.        (cat
  2151.           "copy keyfile"
  2152.        )
  2153.     )
  2154.     (set #help_keyfile
  2155.        (cat
  2156.           "Now I copy the keyfile."
  2157.        )
  2158.     )
  2159.     (set #text_register
  2160.        (cat
  2161.           "Don`t forget to register!\n\n"
  2162.           "Please send $20 or 30,- DM to me:\n\n"
  2163.           "Henk Jonas\n"
  2164.           "Zionskirchstr. 28\n"
  2165.           "10119 Berlin\n"
  2166.           "Germany"
  2167.        )
  2168.     )
  2169.     (set #help_register
  2170.        (cat
  2171.           "Look at MetaView.readme, MetaView.doc "
  2172.           "or MetaView.guide for register."
  2173.        )
  2174.     )
  2175.     (set #text_thanx
  2176.        (cat
  2177.           "Thank you for registering MetaView!"
  2178.        )
  2179.     )
  2180.   )
  2181. )
  2182. ;/**/
  2183.  
  2184. ;************************************************
  2185. ;
  2186. ; tschechisch
  2187. ;
  2188. ;************************************************
  2189. ;/**/
  2190.  
  2191. (if (= #language-number 4)
  2192.   (
  2193.     (set #YES "Yes")
  2194.     (set #NO  "No")
  2195.     (set #text_copy "Copy")
  2196.     (set #text_skip "Skip")
  2197.     (set #text_update "Update")
  2198.  
  2199.     (set #text_present
  2200.        (cat
  2201.           "Henk Jonas\n present:\n\n MetaView\n\n"
  2202.           "This programm shows and converts gfx-metafile,\n"
  2203.           "uses the 'amigametaformat.library'\n and is SHAREWARE."
  2204.            ;"\n*Translated bla,bla,bla:*\n"
  2205.            ;"*Your Name - Your EMail*\n"
  2206.        )
  2207.     )
  2208.     (set #text_programm_update
  2209.        (cat
  2210.           "I found the MetaView drawer,\n"
  2211.           "leave the path in the parent directory\n"
  2212.           "of the MetaView drawer for\n"
  2213.           "updating an existing MetaView installation."
  2214.        )
  2215.     )
  2216.     (set #text_new
  2217.        (cat
  2218.           "Please choose the destination for MetaView.\n"
  2219.           "I will create a MetaView drawer there,\n"
  2220.           "if it does not exist."
  2221.        )
  2222.     )
  2223.     (set #text_drawer
  2224.        (cat
  2225.           "I am creating the drawer 'MetaView'."
  2226.        )
  2227.     )
  2228.     (set #text_library
  2229.        (cat
  2230.           "Now I will install the 'amigametaformat.library'."
  2231.        )
  2232.     )
  2233.     (set #help_library
  2234.        (cat
  2235.           "This library are needed for this programm.\n"
  2236.           "It is very importent to install this!"
  2237.        )
  2238.     )
  2239.     (set #text_driver
  2240.        (cat
  2241.           "Now I will install the different Outputdrivers for the 'amigametaformat.library'."
  2242.        )
  2243.     )
  2244.     (set #help_driver
  2245.        (cat
  2246.           "the options:\n"
  2247.           "* Strip       : the driver for all renderings, like screen, ILBM, printer etc.\n"
  2248.           "* AMF         : are for output as Amiga Metafile Format.\n"
  2249.           "* CGM         : are for output as Computer Graphics Metafile.\n"
  2250.           "* EPS         : are for output as Encapsulated PostScript.\n"
  2251.           "* GEM         : are for output as GEM Metafile.\n"
  2252.           "* WordWorth   : create ARexx scripts, for use in WordWorth.\n"
  2253.           "* DR2D        : are for output as DR2D (for PageStream, DrawStudio...)\n"
  2254.           "* HPGL        : are for output as HPGL (for Plotters)\n"
  2255.           "* AI          : are for output as AdobeIllustrator\n"
  2256.           "* JMF         : are for output as JavaMetaFile (for www-publishing)\n"
  2257.           "* WMF         : are for output as WindowsMetaFile\n"
  2258.           "* FIG         : are for output as XFIG file\n"
  2259.        )
  2260.     )
  2261.     (set #text_strip
  2262.        (cat
  2263.           "Now I will install the stripdriver for 'amigametaformat.library'."
  2264.        )
  2265.     )
  2266.     (set #help_strip
  2267.        (cat
  2268.           "strip for all renderings on screen, printer and ILBM-output\n"
  2269.        )
  2270.     )
  2271.     (set #text_file
  2272.        (cat
  2273.           "Now I will install the filedriver for 'amigametaformat.library'."
  2274.        )
  2275.     )
  2276.     (set #help_file
  2277.        (cat
  2278.           "file for saving as Amiga Meta Format Metafile\n"
  2279.        )
  2280.     )
  2281.     (set #text_cgm
  2282.        (cat
  2283.           "Now I will install the CGMdriver for 'amigametaformat.library'."
  2284.        )
  2285.     )
  2286.     (set #help_cgm
  2287.        (cat
  2288.           "CGM for saving as Computer Graphics Metafile\n"
  2289.        )
  2290.     )
  2291.     (set #text_eps
  2292.        (cat
  2293.           "Now I will install the EPSdriver for 'amigametaformat.library'."
  2294.        )
  2295.     )
  2296.     (set #help_eps
  2297.        (cat
  2298.           "EPS for saving as Encapsulated PostScript\n"
  2299.        )
  2300.     )
  2301.     (set #text_gem
  2302.        (cat
  2303.           "Now I will install the GEMdriver for 'amigametaformat.library'."
  2304.        )
  2305.     )
  2306.     (set #help_gem
  2307.        (cat
  2308.           "GEM for saving as GEM Metafile\n"
  2309.        )
  2310.     )
  2311.     (set #text_ww
  2312.        (cat
  2313.           "Now I will install the WordWorth-ARexx-driver for 'amigametaformat.library'."
  2314.        )
  2315.     )
  2316.     (set #help_ww
  2317.        (cat
  2318.           "WordWorth-ARexx-driver for creating WordWorth-ARexx-script\n"
  2319.        )
  2320.     )
  2321.     (set #text_dr2d
  2322.        (cat
  2323.           "Now I will install the DR2D-driver for 'amigametaformat.library'."
  2324.        )
  2325.     )
  2326.     (set #help_dr2d
  2327.        (cat
  2328.           "DR2D-driver for creating DR2D-Output\n"
  2329.        )
  2330.     )
  2331.     (set #text_hpgl
  2332.        (cat
  2333.           "Now I will install the HPGL-driver for 'amigametaformat.library'."
  2334.        )
  2335.     )
  2336.     (set #help_hpgl
  2337.        (cat
  2338.           "HPGL-driver for creating HPGL-Output\n"
  2339.        )
  2340.     )
  2341.     (set #text_ai
  2342.        (cat
  2343.           "Now I will install the AI-driver for 'amigametaformat.library'."
  2344.        )
  2345.     )
  2346.     (set #help_ai
  2347.        (cat
  2348.           "AI-driver for creating AI-Output\n"
  2349.        )
  2350.     )
  2351.     (set #text_jmf
  2352.        (cat
  2353.           "Now I will install the JMF-driver for 'amigametaformat.library'."
  2354.        )
  2355.     )
  2356.     (set #help_jmf
  2357.        (cat
  2358.           "JMF-driver for creating JMF-Output\n"
  2359.        )
  2360.     )
  2361.     (set #text_wmf
  2362.        (cat
  2363.           "Now I will install the WMF-driver for 'amigametaformat.library'."
  2364.        )
  2365.     )
  2366.     (set #help_wmf
  2367.        (cat
  2368.           "WMF-driver for creating WMF-Output\n"
  2369.        )
  2370.     )
  2371.     (set #text_fig
  2372.        (cat
  2373.           "Now I will install the FIG-driver for 'amigametaformat.library'."
  2374.        )
  2375.     )
  2376.     (set #help_fig
  2377.        (cat
  2378.           "FIG-driver for creating FIG-Output\n"
  2379.        )
  2380.     )
  2381.     (set #text_programm
  2382.        (cat
  2383.           "copy programm"
  2384.        )
  2385.     )
  2386.     (set #help_programm
  2387.        (cat
  2388.           "Now, I will copy the programm."
  2389.        )
  2390.     )
  2391.     (set #text_doc
  2392.        (cat
  2393.           "copy documentation"
  2394.        )
  2395.     )
  2396.     (set #help_doc
  2397.        (cat
  2398.           "Now, I will copy the documentation.\n"
  2399.           "This textfile is obsolete, use the guide instead."
  2400.        )
  2401.     )
  2402.     (set #text_guide
  2403.        (cat
  2404.           "Now I will copy the guide for MetaView.\n"
  2405.           "What is your favorite language?"
  2406.        )
  2407.     )
  2408.     (set #text_english_guide
  2409.        (cat
  2410.           "copy English MetaView.guide"
  2411.        )
  2412.     )
  2413.     (set #help_english_guide
  2414.        (cat
  2415.           "Now, I will copy the English MetaView.guide."
  2416.        )
  2417.     )
  2418.     (set #text_german_guide
  2419.        (cat
  2420.           "copy German MetaView.guide"
  2421.        )
  2422.     )
  2423.     (set #help_german_guide
  2424.        (cat
  2425.           "Now, I will copy the German MetaView.guide."
  2426.        )
  2427.     )
  2428.     (set #text_spanish_guide
  2429.        (cat
  2430.           "copy Spanish MetaView.guide"
  2431.        )
  2432.     )
  2433.     (set #help_spanish_guide
  2434.        (cat
  2435.           "Now, I will copy the Spanish MetaView.guide."
  2436.        )
  2437.     )
  2438.     (set #text_polish_guide
  2439.        (cat
  2440.           "copy Polish MetaView.guide"
  2441.        )
  2442.     )
  2443.     (set #help_polish_guide
  2444.        (cat
  2445.           "Now, I will copy the Polish MetaView.guide."
  2446.        )
  2447.     )
  2448.     (set #text_czech_guide
  2449.        (cat
  2450.           "copy Czech MetaView.guide"
  2451.        )
  2452.     )
  2453.     (set #help_czech_guide
  2454.        (cat
  2455.           "Now, I will copy the Czech MetaView.guide."
  2456.        )
  2457.     )
  2458.     (set #text_catalan_guide
  2459.        (cat
  2460.           "copy Catalan MetaView.guide"
  2461.        )
  2462.     )
  2463.     (set #help_catalan_guide
  2464.        (cat
  2465.           "Now, I will copy the Catalan MetaView.guide."
  2466.        )
  2467.     )
  2468.     (set #text_readme
  2469.        (cat
  2470.           "copy amigametaformat.readme"
  2471.        )
  2472.     )
  2473.     (set #help_readme
  2474.        (cat
  2475.           "Now, I will copy the amigametaformat.readme."
  2476.        )
  2477.     )
  2478.     (set #text_arexx
  2479.        (cat
  2480.           "copy ARexx-Examples"
  2481.        )
  2482.     )
  2483.     (set #help_arexx
  2484.        (cat
  2485.           "Now, I will copy some ARexx-Examples."
  2486.        )
  2487.     )
  2488.     (set #text_ds
  2489.        (cat
  2490.           "Do you have DrawStudio installed,\n"
  2491.           "and want to im- and export gfx\n"
  2492.           "with MetaView?"
  2493.        )
  2494.     )
  2495.     (set #help_ds
  2496.        (cat
  2497.           "I want to install two ARexx scripts for import and export\n"
  2498.           "graphics in DrawStudio with MetaView."
  2499.        )
  2500.     )
  2501.     (set #text_ds_path
  2502.        (cat
  2503.           "Please choose the DrawStudio ARexx scripts drawer."
  2504.        )
  2505.     )
  2506.     (set #help_ds_path
  2507.        (cat
  2508.           "I want to install two ARexx scripts for import and export\n"
  2509.           "graphics in DrawStudio with MetaView."
  2510.        )
  2511.     )
  2512.     (set #text_ds_import
  2513.        (cat
  2514.           "copying DrawStudio import script"
  2515.        )
  2516.     )
  2517.     (set #text_ds_export
  2518.        (cat
  2519.           "copying DrawStudio export script"
  2520.        )
  2521.     )
  2522.     (set #text_pgs
  2523.        (cat
  2524.           "Do you have PageStream 3.x installed,\n"
  2525.           "and want to import gfx with MetaView?"
  2526.        )
  2527.     )
  2528.     (set #help_pgs
  2529.        (cat
  2530.           "I want to install one ARexx script for import\n"
  2531.           "graphics in PageStream with MetaView."
  2532.        )
  2533.     )
  2534.     (set #text_pgs_path
  2535.        (cat
  2536.           "Please choose the PageStream ARexx scripts drawer."
  2537.        )
  2538.     )
  2539.     (set #help_pgs_path
  2540.        (cat
  2541.           "I want to install one ARexx script for import\n"
  2542.           "graphics in PageStream with MetaView."
  2543.        )
  2544.     )
  2545.     (set #text_pgs_import
  2546.        (cat
  2547.           "copying PageStream import script"
  2548.        )
  2549.     )
  2550.     (set #text_ww
  2551.        (cat
  2552.           "Do you have WordWorth installed,\n"
  2553.           "and want to import gfx with MetaView?"
  2554.        )
  2555.     )
  2556.     (set #help_ww
  2557.        (cat
  2558.           "I want to install one ARexx script for import\n"
  2559.           "graphics in WordWorth with MetaView."
  2560.        )
  2561.     )
  2562.     (set #text_ww_path
  2563.        (cat
  2564.           "Please choose the WordWorth ARexx scripts drawer."
  2565.        )
  2566.     )
  2567.     (set #help_ww_path
  2568.        (cat
  2569.           "I want to install one ARexx script for import\n"
  2570.           "graphics in WordWorth with MetaView."
  2571.        )
  2572.     )
  2573.     (set #text_ww_import
  2574.        (cat
  2575.           "copying WordWorth import script"
  2576.        )
  2577.     )
  2578.     (set #text_fw
  2579.        (cat
  2580.           "Do you have FinalWriter installed,\n"
  2581.           "and want to import gfx with MetaView?"
  2582.        )
  2583.     )
  2584.     (set #help_fw
  2585.        (cat
  2586.           "I want to install one ARexx script for import\n"
  2587.           "graphics in FinalWriter with MetaView."
  2588.        )
  2589.     )
  2590.     (set #text_fw_path
  2591.        (cat
  2592.           "Please choose the FinalWriter ARexx scripts drawer."
  2593.        )
  2594.     )
  2595.     (set #help_fw_path
  2596.        (cat
  2597.           "I want to install one ARexx script for import\n"
  2598.           "graphics in FinalWriter with MetaView."
  2599.        )
  2600.     )
  2601.     (set #text_fw_import
  2602.        (cat
  2603.           "copying FinalWriter import script"
  2604.        )
  2605.     )
  2606.     (set #text_examples
  2607.        (cat
  2608.           "Should I copy the example files?"
  2609.        )
  2610.     )
  2611.     (set #text_examples_copy
  2612.        (cat
  2613.           "copy Examples"
  2614.        )
  2615.     )
  2616.     (set #help_examples_copy
  2617.        (cat
  2618.           "Now, I want to copy some Examples."
  2619.        )
  2620.     )
  2621.     (set #text_setpatch
  2622.        (cat
  2623.           "I want to copy a new SetPatch (43.6) to your 'c:' directory.\n"
  2624.           "This Software are published from Amiga Technologie and\n"
  2625.           "fix also a bug on 'mathieeesingbas.library' in Kick 3.1.\n"
  2626.           "The old 'c:SetPatch' will renamed to 'c:SetPatch.old'."
  2627.        )
  2628.     )
  2629.     (set #help_setpatch
  2630.        (cat
  2631.           "Press 'Copy' to install the new SetPatch and 'Skip' for not install.\n"
  2632.           "You are advised to install this Patch.\n"
  2633.           "But if you get a GURU on MetaView-startup you must!"
  2634.        )
  2635.     )
  2636.     (set #text_setpatch_copy
  2637.        (cat
  2638.           "copy new SetPatch"
  2639.        )
  2640.     )
  2641.     (set #text_tabs_copy
  2642.        (cat
  2643.           "copy tabs.gadget"
  2644.        )
  2645.     )
  2646.     (set #text_variable
  2647.        (cat
  2648.           "Should I update the MetaView.path environment variable?"
  2649.        )
  2650.     )
  2651.     (set #help_variable
  2652.        (cat
  2653.           "The ARexxScripts and the MetaView.datatype will use the variable for locate the executable."
  2654.        )
  2655.     )
  2656.     (set #text_envarc
  2657.        (cat
  2658.           "Create ENVARC: variable with path of MetaView"
  2659.        )
  2660.     )
  2661.     (set #help_envarc
  2662.        (cat
  2663.           "The variable will be stored resetproof in ENVARC:."
  2664.         )
  2665.     )
  2666.     (set #text_env
  2667.        (cat
  2668.           "Create ENV: variable with path of MetaView"
  2669.        )
  2670.     )
  2671.     (set #help_env
  2672.        (cat
  2673.           "The variable will be stored for instant use in ENV:."
  2674.        )
  2675.     )
  2676.     (set #text_keyfile
  2677.        (cat
  2678.           "copy keyfile"
  2679.        )
  2680.     )
  2681.     (set #help_keyfile
  2682.        (cat
  2683.           "Now I copy the keyfile."
  2684.        )
  2685.     )
  2686.     (set #text_register
  2687.        (cat
  2688.           "Don`t forget to register!\n\n"
  2689.           "Please send $20 or 30,- DM to me:\n\n"
  2690.           "Henk Jonas\n"
  2691.           "Zionskirchstr. 28\n"
  2692.           "10119 Berlin\n"
  2693.           "Germany"
  2694.        )
  2695.     )
  2696.     (set #help_register
  2697.        (cat
  2698.           "Look at MetaView.readme, MetaView.doc "
  2699.           "or MetaView.guide for register."
  2700.        )
  2701.     )
  2702.     (set #text_thanx
  2703.        (cat
  2704.           "Thank you for registering MetaView!"
  2705.        )
  2706.     )
  2707.   )
  2708. )
  2709. ;/**/
  2710.  
  2711. ;************************************************
  2712. ;
  2713. ; catalanisch
  2714. ;
  2715. ;************************************************
  2716. ;/**/
  2717.  
  2718. (if (= #language-number 4)
  2719.   (
  2720.     (set #YES "Yes")
  2721.     (set #NO  "No")
  2722.     (set #text_copy "Copy")
  2723.     (set #text_skip "Skip")
  2724.     (set #text_update "Update")
  2725.  
  2726.     (set #text_present
  2727.        (cat
  2728.           "Henk Jonas\n present:\n\n MetaView\n\n"
  2729.           "This programm shows and converts gfx-metafile,\n"
  2730.           "uses the 'amigametaformat.library'\n and is SHAREWARE."
  2731.            ;"\n*Translated bla,bla,bla:*\n"
  2732.            ;"*Your Name - Your EMail*\n"
  2733.        )
  2734.     )
  2735.     (set #text_programm_update
  2736.        (cat
  2737.           "I found the MetaView drawer,\n"
  2738.           "leave the path in the parent directory\n"
  2739.           "of the MetaView drawer for\n"
  2740.           "updating an existing MetaView installation."
  2741.        )
  2742.     )
  2743.     (set #text_new
  2744.        (cat
  2745.           "Please choose the destination for MetaView.\n"
  2746.           "I will create a MetaView drawer there,\n"
  2747.           "if it does not exist."
  2748.        )
  2749.     )
  2750.     (set #text_drawer
  2751.        (cat
  2752.           "I am creating the drawer 'MetaView'."
  2753.        )
  2754.     )
  2755.     (set #text_library
  2756.        (cat
  2757.           "Now I will install the 'amigametaformat.library'."
  2758.        )
  2759.     )
  2760.     (set #help_library
  2761.        (cat
  2762.           "This library are needed for this programm.\n"
  2763.           "It is very importent to install this!"
  2764.        )
  2765.     )
  2766.     (set #text_driver
  2767.        (cat
  2768.           "Now I will install the different Outputdrivers for the 'amigametaformat.library'."
  2769.        )
  2770.     )
  2771.     (set #help_driver
  2772.        (cat
  2773.           "the options:\n"
  2774.           "* Strip       : the driver for all renderings, like screen, ILBM, printer etc.\n"
  2775.           "* AMF         : are for output as Amiga Metafile Format.\n"
  2776.           "* CGM         : are for output as Computer Graphics Metafile.\n"
  2777.           "* EPS         : are for output as Encapsulated PostScript.\n"
  2778.           "* GEM         : are for output as GEM Metafile.\n"
  2779.           "* WordWorth   : create ARexx scripts, for use in WordWorth.\n"
  2780.           "* DR2D        : are for output as DR2D (for PageStream, DrawStudio...)\n"
  2781.           "* HPGL        : are for output as HPGL (for Plotters)\n"
  2782.           "* AI          : are for output as AdobeIllustrator\n"
  2783.           "* JMF         : are for output as JavaMetaFile (for www-publishing)\n"
  2784.           "* WMF         : are for output as WindowsMetaFile\n"
  2785.           "* FIG         : are for output as XFIG file\n"
  2786.        )
  2787.     )
  2788.     (set #text_strip
  2789.        (cat
  2790.           "Now I will install the stripdriver for 'amigametaformat.library'."
  2791.        )
  2792.     )
  2793.     (set #help_strip
  2794.        (cat
  2795.           "strip for all renderings on screen, printer and ILBM-output\n"
  2796.        )
  2797.     )
  2798.     (set #text_file
  2799.        (cat
  2800.           "Now I will install the filedriver for 'amigametaformat.library'."
  2801.        )
  2802.     )
  2803.     (set #help_file
  2804.        (cat
  2805.           "file for saving as Amiga Meta Format Metafile\n"
  2806.        )
  2807.     )
  2808.     (set #text_cgm
  2809.        (cat
  2810.           "Now I will install the CGMdriver for 'amigametaformat.library'."
  2811.        )
  2812.     )
  2813.     (set #help_cgm
  2814.        (cat
  2815.           "CGM for saving as Computer Graphics Metafile\n"
  2816.        )
  2817.     )
  2818.     (set #text_eps
  2819.        (cat
  2820.           "Now I will install the EPSdriver for 'amigametaformat.library'."
  2821.        )
  2822.     )
  2823.     (set #help_eps
  2824.        (cat
  2825.           "EPS for saving as Encapsulated PostScript\n"
  2826.        )
  2827.     )
  2828.     (set #text_gem
  2829.        (cat
  2830.           "Now I will install the GEMdriver for 'amigametaformat.library'."
  2831.        )
  2832.     )
  2833.     (set #help_gem
  2834.        (cat
  2835.           "GEM for saving as GEM Metafile\n"
  2836.        )
  2837.     )
  2838.     (set #text_ww
  2839.        (cat
  2840.           "Now I will install the WordWorth-ARexx-driver for 'amigametaformat.library'."
  2841.        )
  2842.     )
  2843.     (set #help_ww
  2844.        (cat
  2845.           "WordWorth-ARexx-driver for creating WordWorth-ARexx-script\n"
  2846.        )
  2847.     )
  2848.     (set #text_dr2d
  2849.        (cat
  2850.           "Now I will install the DR2D-driver for 'amigametaformat.library'."
  2851.        )
  2852.     )
  2853.     (set #help_dr2d
  2854.        (cat
  2855.           "DR2D-driver for creating DR2D-Output\n"
  2856.        )
  2857.     )
  2858.     (set #text_hpgl
  2859.        (cat
  2860.           "Now I will install the HPGL-driver for 'amigametaformat.library'."
  2861.        )
  2862.     )
  2863.     (set #help_hpgl
  2864.        (cat
  2865.           "HPGL-driver for creating HPGL-Output\n"
  2866.        )
  2867.     )
  2868.     (set #text_ai
  2869.        (cat
  2870.           "Now I will install the AI-driver for 'amigametaformat.library'."
  2871.        )
  2872.     )
  2873.     (set #help_ai
  2874.        (cat
  2875.           "AI-driver for creating AI-Output\n"
  2876.        )
  2877.     )
  2878.     (set #text_jmf
  2879.        (cat
  2880.           "Now I will install the JMF-driver for 'amigametaformat.library'."
  2881.        )
  2882.     )
  2883.     (set #help_jmf
  2884.        (cat
  2885.           "JMF-driver for creating JMF-Output\n"
  2886.        )
  2887.     )
  2888.     (set #text_wmf
  2889.        (cat
  2890.           "Now I will install the WMF-driver for 'amigametaformat.library'."
  2891.        )
  2892.     )
  2893.     (set #help_wmf
  2894.        (cat
  2895.           "WMF-driver for creating WMF-Output\n"
  2896.        )
  2897.     )
  2898.     (set #text_fig
  2899.        (cat
  2900.           "Now I will install the FIG-driver for 'amigametaformat.library'."
  2901.        )
  2902.     )
  2903.     (set #help_fig
  2904.        (cat
  2905.           "FIG-driver for creating FIG-Output\n"
  2906.        )
  2907.     )
  2908.     (set #text_programm
  2909.        (cat
  2910.           "copy programm"
  2911.        )
  2912.     )
  2913.     (set #help_programm
  2914.        (cat
  2915.           "Now, I will copy the programm."
  2916.        )
  2917.     )
  2918.     (set #text_doc
  2919.        (cat
  2920.           "copy documentation"
  2921.        )
  2922.     )
  2923.     (set #help_doc
  2924.        (cat
  2925.           "Now, I will copy the documentation.\n"
  2926.           "This textfile is obsolete, use the guide instead."
  2927.        )
  2928.     )
  2929.     (set #text_guide
  2930.        (cat
  2931.           "Now I will copy the guide for MetaView.\n"
  2932.           "What is your favorite language?"
  2933.        )
  2934.     )
  2935.     (set #text_english_guide
  2936.        (cat
  2937.           "copy English MetaView.guide"
  2938.        )
  2939.     )
  2940.     (set #help_english_guide
  2941.        (cat
  2942.           "Now, I will copy the English MetaView.guide."
  2943.        )
  2944.     )
  2945.     (set #text_german_guide
  2946.        (cat
  2947.           "copy German MetaView.guide"
  2948.        )
  2949.     )
  2950.     (set #help_german_guide
  2951.        (cat
  2952.           "Now, I will copy the German MetaView.guide."
  2953.        )
  2954.     )
  2955.     (set #text_spanish_guide
  2956.        (cat
  2957.           "copy Spanish MetaView.guide"
  2958.        )
  2959.     )
  2960.     (set #help_spanish_guide
  2961.        (cat
  2962.           "Now, I will copy the Spanish MetaView.guide."
  2963.        )
  2964.     )
  2965.     (set #text_polish_guide
  2966.        (cat
  2967.           "copy Polish MetaView.guide"
  2968.        )
  2969.     )
  2970.     (set #help_polish_guide
  2971.        (cat
  2972.           "Now, I will copy the Polish MetaView.guide."
  2973.        )
  2974.     )
  2975.     (set #text_czech_guide
  2976.        (cat
  2977.           "copy Czech MetaView.guide"
  2978.        )
  2979.     )
  2980.     (set #help_czech_guide
  2981.        (cat
  2982.           "Now, I will copy the Czech MetaView.guide."
  2983.        )
  2984.     )
  2985.     (set #text_catalan_guide
  2986.        (cat
  2987.           "copy Catalan MetaView.guide"
  2988.        )
  2989.     )
  2990.     (set #help_catalan_guide
  2991.        (cat
  2992.           "Now, I will copy the Catalan MetaView.guide."
  2993.        )
  2994.     )
  2995.     (set #text_readme
  2996.        (cat
  2997.           "copy amigametaformat.readme"
  2998.        )
  2999.     )
  3000.     (set #help_readme
  3001.        (cat
  3002.           "Now, I will copy the amigametaformat.readme."
  3003.        )
  3004.     )
  3005.     (set #text_arexx
  3006.        (cat
  3007.           "copy ARexx-Examples"
  3008.        )
  3009.     )
  3010.     (set #help_arexx
  3011.        (cat
  3012.           "Now, I will copy some ARexx-Examples."
  3013.        )
  3014.     )
  3015.     (set #text_ds
  3016.        (cat
  3017.           "Do you have DrawStudio installed,\n"
  3018.           "and want to im- and export gfx\n"
  3019.           "with MetaView?"
  3020.        )
  3021.     )
  3022.     (set #help_ds
  3023.        (cat
  3024.           "I want to install two ARexx scripts for import and export\n"
  3025.           "graphics in DrawStudio with MetaView."
  3026.        )
  3027.     )
  3028.     (set #text_ds_path
  3029.        (cat
  3030.           "Please choose the DrawStudio ARexx scripts drawer."
  3031.        )
  3032.     )
  3033.     (set #help_ds_path
  3034.        (cat
  3035.           "I want to install two ARexx scripts for import and export\n"
  3036.           "graphics in DrawStudio with MetaView."
  3037.        )
  3038.     )
  3039.     (set #text_ds_import
  3040.        (cat
  3041.           "copying DrawStudio import script"
  3042.        )
  3043.     )
  3044.     (set #text_ds_export
  3045.        (cat
  3046.           "copying DrawStudio export script"
  3047.        )
  3048.     )
  3049.     (set #text_pgs
  3050.        (cat
  3051.           "Do you have PageStream 3.x installed,\n"
  3052.           "and want to import gfx with MetaView?"
  3053.        )
  3054.     )
  3055.     (set #help_pgs
  3056.        (cat
  3057.           "I want to install one ARexx script for import\n"
  3058.           "graphics in PageStream with MetaView."
  3059.        )
  3060.     )
  3061.     (set #text_pgs_path
  3062.        (cat
  3063.           "Please choose the PageStream ARexx scripts drawer."
  3064.        )
  3065.     )
  3066.     (set #help_pgs_path
  3067.        (cat
  3068.           "I want to install one ARexx script for import\n"
  3069.           "graphics in PageStream with MetaView."
  3070.        )
  3071.     )
  3072.     (set #text_pgs_import
  3073.        (cat
  3074.           "copying PageStream import script"
  3075.        )
  3076.     )
  3077.     (set #text_ww
  3078.        (cat
  3079.           "Do you have WordWorth installed,\n"
  3080.           "and want to import gfx with MetaView?"
  3081.        )
  3082.     )
  3083.     (set #help_ww
  3084.        (cat
  3085.           "I want to install one ARexx script for import\n"
  3086.           "graphics in WordWorth with MetaView."
  3087.        )
  3088.     )
  3089.     (set #text_ww_path
  3090.        (cat
  3091.           "Please choose the WordWorth ARexx scripts drawer."
  3092.        )
  3093.     )
  3094.     (set #help_ww_path
  3095.        (cat
  3096.           "I want to install one ARexx script for import\n"
  3097.           "graphics in WordWorth with MetaView."
  3098.        )
  3099.     )
  3100.     (set #text_ww_import
  3101.        (cat
  3102.           "copying WordWorth import script"
  3103.        )
  3104.     )
  3105.     (set #text_fw
  3106.        (cat
  3107.           "Do you have FinalWriter installed,\n"
  3108.           "and want to import gfx with MetaView?"
  3109.        )
  3110.     )
  3111.     (set #help_fw
  3112.        (cat
  3113.           "I want to install one ARexx script for import\n"
  3114.           "graphics in FinalWriter with MetaView."
  3115.        )
  3116.     )
  3117.     (set #text_fw_path
  3118.        (cat
  3119.           "Please choose the FinalWriter ARexx scripts drawer."
  3120.        )
  3121.     )
  3122.     (set #help_fw_path
  3123.        (cat
  3124.           "I want to install one ARexx script for import\n"
  3125.           "graphics in FinalWriter with MetaView."
  3126.        )
  3127.     )
  3128.     (set #text_fw_import
  3129.        (cat
  3130.           "copying FinalWriter import script"
  3131.        )
  3132.     )
  3133.     (set #text_examples
  3134.        (cat
  3135.           "Should I copy the example files?"
  3136.        )
  3137.     )
  3138.     (set #text_examples_copy
  3139.        (cat
  3140.           "copy Examples"
  3141.        )
  3142.     )
  3143.     (set #help_examples_copy
  3144.        (cat
  3145.           "Now, I want to copy some Examples."
  3146.        )
  3147.     )
  3148.     (set #text_setpatch
  3149.        (cat
  3150.           "I want to copy a new SetPatch (43.6) to your 'c:' directory.\n"
  3151.           "This Software are published from Amiga Technologie and\n"
  3152.           "fix also a bug on 'mathieeesingbas.library' in Kick 3.1.\n"
  3153.           "The old 'c:SetPatch' will renamed to 'c:SetPatch.old'."
  3154.        )
  3155.     )
  3156.     (set #help_setpatch
  3157.        (cat
  3158.           "Press 'Copy' to install the new SetPatch and 'Skip' for not install.\n"
  3159.           "You are advised to install this Patch.\n"
  3160.           "But if you get a GURU on MetaView-startup you must!"
  3161.        )
  3162.     )
  3163.     (set #text_setpatch_copy
  3164.        (cat
  3165.           "copy new SetPatch"
  3166.        )
  3167.     )
  3168.     (set #text_tabs_copy
  3169.        (cat
  3170.           "copy tabs.gadget"
  3171.        )
  3172.     )
  3173.     (set #text_variable
  3174.        (cat
  3175.           "Should I update the MetaView.path environment variable?"
  3176.        )
  3177.     )
  3178.     (set #help_variable
  3179.        (cat
  3180.           "The ARexxScripts and the MetaView.datatype will use the variable for locate the executable."
  3181.        )
  3182.     )
  3183.     (set #text_envarc
  3184.        (cat
  3185.           "Create ENVARC: variable with path of MetaView"
  3186.        )
  3187.     )
  3188.     (set #help_envarc
  3189.        (cat
  3190.           "The variable will be stored resetproof in ENVARC:."
  3191.         )
  3192.     )
  3193.     (set #text_env
  3194.        (cat
  3195.           "Create ENV: variable with path of MetaView"
  3196.        )
  3197.     )
  3198.     (set #help_env
  3199.        (cat
  3200.           "The variable will be stored for instant use in ENV:."
  3201.        )
  3202.     )
  3203.     (set #text_keyfile
  3204.        (cat
  3205.           "copy keyfile"
  3206.        )
  3207.     )
  3208.     (set #help_keyfile
  3209.        (cat
  3210.           "Now I copy the keyfile."
  3211.        )
  3212.     )
  3213.     (set #text_register
  3214.        (cat
  3215.           "Don`t forget to register!\n\n"
  3216.           "Please send $20 or 30,- DM to me:\n\n"
  3217.           "Henk Jonas\n"
  3218.           "Zionskirchstr. 28\n"
  3219.           "10119 Berlin\n"
  3220.           "Germany"
  3221.        )
  3222.     )
  3223.     (set #help_register
  3224.        (cat
  3225.           "Look at MetaView.readme, MetaView.doc "
  3226.           "or MetaView.guide for register."
  3227.        )
  3228.     )
  3229.     (set #text_thanx
  3230.        (cat
  3231.           "Thank you for registering MetaView!"
  3232.        )
  3233.     )
  3234.   )
  3235. )
  3236. ;/**/
  3237.  
  3238. ;************************************************
  3239. ;
  3240. ; hrvatski (croatian)
  3241. ;
  3242. ;************************************************
  3243. ;/**/
  3244.  
  3245.   (set #YES "Da")
  3246.   (set #NO  "Ne")
  3247.   (set #text_copy "Kopiraj")
  3248.   (set #text_skip "Preskoèi")
  3249.   (set #text_update "Obnovi")
  3250.  
  3251.   (set #text_present
  3252.      (cat
  3253.         "Henk Jonas\n predstavlja:\n\n MetaView\n\n"
  3254.         "Ovaj program prikazuje i konvertira grafièke-metadatoteke,\n"
  3255.         "koristeæi 'amigametaformat.library'\n To je SHAREWARE program."
  3256.      )
  3257.   )
  3258.   (set #text_programm_update
  3259.      (cat
  3260.         "Na¹ao sam MetaView imenik,\n"
  3261.         "ostavite put u roditeljskom imeniku\n"
  3262.         "MetaView imenika da bi\n"
  3263.         "obnovili postojeæu MetaView instalaciju."
  3264.      )
  3265.   )
  3266.   (set #text_new
  3267.      (cat
  3268.         "Molim vas da izaberete odredi¹te za MetaView.\n"
  3269.         "Tamo æu stvoriti MetaView imenik,\n"
  3270.         "ako veæ ne postoji."
  3271.      )
  3272.   )
  3273.   (set #text_drawer
  3274.      (cat
  3275.         "Stvaram imenik 'MetaView'."
  3276.      )
  3277.   )
  3278.   (set #text_library
  3279.      (cat
  3280.         "Sad æu instalirati 'amigametaformat.library'."
  3281.      )
  3282.   )
  3283.   (set #help_library
  3284.      (cat
  3285.         "Ovaj library je neophodan za ovaj program.\n"
  3286.         "Jako je va¾no da ga instalirate!"
  3287.      )
  3288.   )
  3289.   (set #text_driver
  3290.      (cat
  3291.         "Sad æu instalirati razne Izlazne drivere za 'amigametaformat.library'."
  3292.      )
  3293.   )
  3294.   (set #help_driver
  3295.      (cat
  3296.         "the options:\n"
  3297.         "* Strip       : driver za sva rendanja, kao ekrani, ILBM, printer itd.\n"
  3298.         "* AMF         : je za izlaz kao Amiga Metafile Format.\n"
  3299.         "* CGM         : je za izlaz kao Computer Graphics Metafile.\n"
  3300.         "* EPS         : je za izlaz kao Encapsulated PostScript.\n"
  3301.         "* GEM         : je za izlaz kao GEM Metafile.\n"
  3302.         "* WordWorth   : stvaranje ARexx skripti, za kori¹tenje u WordWorth-u.\n"
  3303.         "* DR2D        : je za izlaz kao DR2D (za PageStream, DrawStudio...)\n"
  3304.         "* HPGL        : je za izlaz kao HPGL (za Plottere)\n"
  3305.         "* AI          : je za izlaz kao AdobeIllustrator\n"
  3306.         "* JMF         : je za izlaz kao JavaMetaFile (za www-objavu)\n"
  3307.         "* WMF         : je za izlaz kao WindowsMetaFile\n"
  3308.         "* FIG         : je za izlaz kao XFIG datoteka\n"
  3309.      )
  3310.   )
  3311.   (set #text_strip
  3312.      (cat
  3313.         "Sad æu instalirati stripdriver za 'amigametaformat.library'."
  3314.      )
  3315.   )
  3316.   (set #help_strip
  3317.      (cat
  3318.         "strip za sva rendanja na ekranu, printeru i ILBM-izlazu\n"
  3319.      )
  3320.   )
  3321.   (set #text_file
  3322.      (cat
  3323.         "Sad æu instalirati filedriver za 'amigametaformat.library'."
  3324.      )
  3325.   )
  3326.   (set #help_file
  3327.      (cat
  3328.         "file za snimanje kao Amiga Meta Format Metafile\n"
  3329.      )
  3330.   )
  3331.   (set #text_cgm
  3332.      (cat
  3333.         "Sad æu instalirati CGMdriver za 'amigametaformat.library'."
  3334.      )
  3335.   )
  3336.   (set #help_cgm
  3337.      (cat
  3338.         "CGM za snimanje kao Computer Graphics Metafile\n"
  3339.      )
  3340.   )
  3341.   (set #text_eps
  3342.      (cat
  3343.         "Sad æu instalirati EPSdriver za 'amigametaformat.library'."
  3344.      )
  3345.   )
  3346.   (set #help_eps
  3347.      (cat
  3348.         "EPS za snimanje kao Encapsulated PostScript\n"
  3349.      )
  3350.   )
  3351.   (set #text_gem
  3352.      (cat
  3353.         "Sad æu instalirati GEMdriver za 'amigametaformat.library'."
  3354.      )
  3355.   )
  3356.   (set #help_gem
  3357.      (cat
  3358.         "GEM za snimanje kao GEM Metafile\n"
  3359.      )
  3360.   )
  3361.   (set #text_ww
  3362.      (cat
  3363.         "Sad æu instalirati WordWorth-ARexx-driver za 'amigametaformat.library'."
  3364.      )
  3365.   )
  3366.   (set #help_ww
  3367.      (cat
  3368.         "WordWorth-ARexx-driver za stvaranje WordWorth-ARexx-skripti\n"
  3369.      )
  3370.   )
  3371.   (set #text_dr2d
  3372.      (cat
  3373.         "Sad æu instalirati DR2D-driver za 'amigametaformat.library'."
  3374.      )
  3375.   )
  3376.   (set #help_dr2d
  3377.      (cat
  3378.         "DR2D-driver za stvaranje DR2D-Izlaza\n"
  3379.      )
  3380.   )
  3381.   (set #text_hpgl
  3382.      (cat
  3383.         "Sad æu instalirati HPGL-driver za 'amigametaformat.library'."
  3384.      )
  3385.   )
  3386.   (set #help_hpgl
  3387.      (cat
  3388.         "HPGL-driver za stvaranje HPGL-Izlaza\n"
  3389.      )
  3390.   )
  3391.   (set #text_ai
  3392.      (cat
  3393.         "Sad æu instalirati AI-driver za 'amigametaformat.library'."
  3394.      )
  3395.   )
  3396.   (set #help_ai
  3397.      (cat
  3398.         "AI-driver za stvaranje AI-Izlaza\n"
  3399.      )
  3400.   )
  3401.   (set #text_jmf
  3402.      (cat
  3403.         "Sad æu instalirati JMF-driver za 'amigametaformat.library'."
  3404.      )
  3405.   )
  3406.   (set #help_jmf
  3407.      (cat
  3408.         "JMF-driver za stvaranje JMF-Izlaza\n"
  3409.      )
  3410.   )
  3411.   (set #text_wmf
  3412.      (cat
  3413.         "Sad æu instalirati WMF-driver za 'amigametaformat.library'."
  3414.      )
  3415.   )
  3416.   (set #help_wmf
  3417.      (cat
  3418.         "WMF-driver za stvaranje WMF-Izlaza\n"
  3419.      )
  3420.   )
  3421.   (set #text_fig
  3422.      (cat
  3423.         "Sad æu instalirati FIG-driver za 'amigametaformat.library'."
  3424.      )
  3425.   )
  3426.   (set #help_fig
  3427.      (cat
  3428.         "FIG-driver za stvaranje FIG-Izlaza\n"
  3429.      )
  3430.   )
  3431.   (set #text_programm
  3432.      (cat
  3433.         "Kopiranje programa"
  3434.      )
  3435.   )
  3436.   (set #help_programm
  3437.      (cat
  3438.         "Sad æu kopirati program."
  3439.      )
  3440.   )
  3441.   (set #text_doc
  3442.      (cat
  3443.         "Kopiranje dokumentacije"
  3444.      )
  3445.   )
  3446.   (set #help_doc
  3447.      (cat
  3448.         "Sad æu kopirati dokumentaciju.\n"
  3449.         "Ova tekstualna datoteka je neva¾na, bolje koristite guide."
  3450.      )
  3451.   )
  3452.   (set #text_guide
  3453.      (cat
  3454.         "Sad æu kopirati guide za MetaView.\n"
  3455.         "Koji jezik ¾elite?"
  3456.      )
  3457.   )
  3458.   (set #text_english_guide
  3459.      (cat
  3460.         "kopiranje Engleskog MetaView.guide"
  3461.      )
  3462.   )
  3463.   (set #help_english_guide
  3464.      (cat
  3465.         "Sad æu kopirati Engleski MetaView.guide."
  3466.      )
  3467.   )
  3468.   (set #text_german_guide
  3469.      (cat
  3470.         "kopiranje Njemaèkog MetaView.guide"
  3471.      )
  3472.   )
  3473.   (set #help_german_guide
  3474.      (cat
  3475.         "Sad æu kopirati Njemaèki MetaView.guide."
  3476.      )
  3477.   )
  3478.   (set #text_spanish_guide
  3479.      (cat
  3480.         "kopiranje ©panjolskog MetaView.guide"
  3481.      )
  3482.   )
  3483.   (set #help_spanish_guide
  3484.      (cat
  3485.         "Sad æu kopirati ©panjolski MetaView.guide."
  3486.      )
  3487.   )
  3488.   (set #text_polish_guide
  3489.      (cat
  3490.         "kopiranje Poljskog MetaView.guide"
  3491.      )
  3492.   )
  3493.   (set #help_polish_guide
  3494.      (cat
  3495.         "Sad æu kopirati Poljski MetaView.guide."
  3496.      )
  3497.   )
  3498.   (set #text_czech_guide
  3499.      (cat
  3500.         "kopiranje Èe¹kog MetaView.guide"
  3501.      )
  3502.   )
  3503.   (set #help_czech_guide
  3504.      (cat
  3505.         "Sad æu kopirati Èe¹ki MetaView.guide."
  3506.      )
  3507.   )
  3508.     (set #text_catalan_guide
  3509.        (cat
  3510.           "kopiranje Katalanskog MetaView.guide"
  3511.        )
  3512.     )
  3513.     (set #help_catalan_guide
  3514.        (cat
  3515.           "Sad æu kopirati Katalanski MetaView.guide."
  3516.        )
  3517.     )
  3518.     (set #text_hrvatski_guide
  3519.        (cat
  3520.           "kopiranje Katalanskog MetaView.guide"
  3521.        )
  3522.     )
  3523.     (set #help_hrvatski_guide
  3524.        (cat
  3525.           "Sad æu kopirati Katalanski MetaView.guide."
  3526.        )
  3527.     )
  3528.   (set #text_readme
  3529.      (cat
  3530.         "kopiranje amigametaformat.readme"
  3531.      )
  3532.   )
  3533.   (set #help_readme
  3534.      (cat
  3535.         "Sad æu kopirati amigametaformat.readme."
  3536.      )
  3537.   )
  3538.   (set #text_arexx
  3539.      (cat
  3540.         "kopiranje ARexx-Primjera"
  3541.      )
  3542.   )
  3543.   (set #help_arexx
  3544.      (cat
  3545.         "Sad æu kopirati neke ARexx-Primjere."
  3546.      )
  3547.   )
  3548.   (set #text_ds
  3549.      (cat
  3550.         "Da li imate instaliran DrawStudio,\n"
  3551.         "i ¾elite uvoziti i izvoziti gfx\n"
  3552.         "sa MetaView?"
  3553.      )
  3554.   )
  3555.   (set #help_ds
  3556.      (cat
  3557.         "®elim instalirati dvije ARexx skripte za uvoz i izvoz\n"
  3558.         "grafike u DrawStudio sa MetaView."
  3559.      )
  3560.   )
  3561.   (set #text_ds_path
  3562.      (cat
  3563.         "Molim izaberite imenik sa DrawStudio ARexx skriptama."
  3564.      )
  3565.   )
  3566.   (set #help_ds_path
  3567.      (cat
  3568.         "®elim instalirati dvije ARexx skripte za uvoz i izvoz\n"
  3569.         "grafike u DrawStudio sa MetaView."
  3570.      )
  3571.   )
  3572.   (set #text_ds_import
  3573.      (cat
  3574.         "kopiram DrawStudio uvoznu skriptu"
  3575.      )
  3576.   )
  3577.   (set #text_ds_export
  3578.      (cat
  3579.         "kopiram DrawStudio izvoznu skriptu"
  3580.      )
  3581.   )
  3582.   (set #text_pgs
  3583.      (cat
  3584.         "Da li imate instaliran PageStream 3.x,\n"
  3585.         "i ¾elite uvoziti gfx sa MetaView?"
  3586.      )
  3587.   )
  3588.   (set #help_pgs
  3589.      (cat
  3590.         "®elim instalirati jednu ARexx skriptu za uvoz\n"
  3591.         "grafike u PageStream sa MetaView."
  3592.      )
  3593.   )
  3594.   (set #text_pgs_path
  3595.      (cat
  3596.         "Molim izaberite imenik sa PageStream ARexx skriptama."
  3597.      )
  3598.   )
  3599.   (set #help_pgs_path
  3600.      (cat
  3601.         "®elim instalirati jednu ARexx skriptu za uvoz\n"
  3602.         "grafike u PageStream sa MetaView."
  3603.      )
  3604.   )
  3605.   (set #text_pgs_import
  3606.      (cat
  3607.         "kopiram PageStream uvoznu skriptu"
  3608.      )
  3609.   )
  3610.   (set #text_ww
  3611.      (cat
  3612.         "Da li imate instaliran WordWorth,\n"
  3613.         "i ¾elite uvoziti gfx sa MetaView?"
  3614.      )
  3615.   )
  3616.   (set #help_ww
  3617.      (cat
  3618.         "®elim instalirati jednu ARexx skriptu za uvoz\n"
  3619.         "grafike u WordWorth sa MetaView."
  3620.      )
  3621.   )
  3622.   (set #text_ww_path
  3623.      (cat
  3624.         "Molim izaberite imenik sa WordWorth ARexx skriptama."
  3625.      )
  3626.   )
  3627.   (set #help_ww_path
  3628.      (cat
  3629.         "®elim instalirati jednu ARexx skriptu za uvoz\n"
  3630.         "grafike u WordWorth sa MetaView."
  3631.      )
  3632.   )
  3633.   (set #text_ww_import
  3634.      (cat
  3635.         "kopiram WordWorth uvoznu skriptu"
  3636.      )
  3637.   )
  3638.   (set #text_fw
  3639.      (cat
  3640.         "Da li imate instaliran FinalWriter,\n"
  3641.         "i ¾elite uvoziti gfx sa MetaView?"
  3642.      )
  3643.   )
  3644.   (set #help_fw
  3645.      (cat
  3646.         "®elim instalirati jednu ARexx skriptu za uvoz\n"
  3647.         "grafike u FinalWriter sa MetaView."
  3648.      )
  3649.   )
  3650.   (set #text_fw_path
  3651.      (cat
  3652.         "Molim izaberite imenik sa FinalWriter ARexx skriptama."
  3653.      )
  3654.   )
  3655.   (set #help_fw_path
  3656.      (cat
  3657.         "®elim instalirati jednu ARexx skriptu za uvoz\n"
  3658.         "grafike u FinalWriter sa MetaView."
  3659.      )
  3660.   )
  3661.   (set #text_fw_import
  3662.      (cat
  3663.         "kopiram FinalWriter uvoznu skriptu"
  3664.      )
  3665.   )
  3666.   (set #text_examples
  3667.      (cat
  3668.         "Da li da kopiram datoteke s primjerima?"
  3669.      )
  3670.   )
  3671.   (set #text_examples_copy
  3672.      (cat
  3673.         "kopiranje Primjera"
  3674.      )
  3675.   )
  3676.   (set #help_examples_copy
  3677.      (cat
  3678.         "®elim kopirati neke Primjere."
  3679.      )
  3680.   )
  3681.   (set #text_setpatch
  3682.      (cat
  3683.         "®elim kopirati novi SetPatch (43.6) na va¹ 'c:' imenik.\n"
  3684.         "Ovaj Software je izdan od Amiga Technologie i\n"
  3685.         "takoðer ispravlja kre¹ku na 'mathieeesingbas.library' i Kick 3.1.\n"
  3686.         "Stari 'c:SetPatch' æe biti preimenovan u 'c:SetPatch.old'."
  3687.      )
  3688.   )
  3689.   (set #help_setpatch
  3690.      (cat
  3691.         "Stisnite 'Kopiraj' da bi instalirali novi SetPatch i 'Preskoèi' da ga ne instalirate.\n"
  3692.         "Savjetujemo vam da instalirate ovu Zakrpu (Patch).\n"
  3693.         "Ali ako dobijete GURU pri pokretanju MetaView-a onda to morate uèiniti!"
  3694.      )
  3695.   )
  3696.   (set #text_setpatch_copy
  3697.      (cat
  3698.         "kopiram novi SetPatch"
  3699.      )
  3700.   )
  3701.   (set #text_tabs_copy
  3702.      (cat
  3703.         "kopiram tabs.gadget"
  3704.      )
  3705.   )
  3706.   (set #text_variable
  3707.      (cat
  3708.         "Da li da obnovim MetaView.path environment variablu?"
  3709.      )
  3710.   )
  3711.   (set #help_variable
  3712.      (cat
  3713.         "ARexxSkripte i MetaView.datatype æe koristiti varijablu\n"
  3714.         "da bi locirali izvr¹nu datoteku."
  3715.      )
  3716.   )
  3717.   (set #text_envarc
  3718.      (cat
  3719.         "Stvaram ENVARC: varijabla sa putem do MetaView-a"
  3720.      )
  3721.   )
  3722.   (set #help_envarc
  3723.      (cat
  3724.         "Varijabla æe se pohraniti u reset-pre¾ivljeni ENVARC:."
  3725.       )
  3726.   )
  3727.   (set #text_env
  3728.      (cat
  3729.         "Stvaram ENV: varijabla sa putem do MetaView-a"
  3730.      )
  3731.   )
  3732.   (set #help_env
  3733.      (cat
  3734.         "Varijabla æe se pohraniti za istovremenu primjenu u ENV:."
  3735.      )
  3736.   )
  3737.   (set #text_keyfile
  3738.      (cat
  3739.         "kopiram keyfile"
  3740.      )
  3741.   )
  3742.   (set #help_keyfile
  3743.      (cat
  3744.         "Sad æu kopirati keyfile."
  3745.      )
  3746.   )
  3747.   (set #text_register
  3748.      (cat
  3749.         "Ne zaboravite se registrirati!\n\n"
  3750.         "Molim vas po¹aljite $20 ili 30,- DM meni:\n\n"
  3751.         "Henk Jonas\n"
  3752.         "Zionskirchstr. 28\n"
  3753.         "10119 Berlin\n"
  3754.         "Germany"
  3755.      )
  3756.   )
  3757.   (set #help_register
  3758.      (cat
  3759.         "Pogledajte u MetaView.readme, MetaView.doc "
  3760.         "ili MetaView.guide za registriranje."
  3761.      )
  3762.   )
  3763.   (set #text_thanx
  3764.      (cat
  3765.         "Hvala vam ¹to ste registrirali MetaView!"
  3766.      )
  3767.   )
  3768. ;/**/
  3769.  
  3770. ;************************************************
  3771. ;
  3772. ; now starts the installation
  3773. ;
  3774. ;************************************************
  3775.  
  3776. (message #text_present)
  3777. (set #user-level @user-level)
  3778. (set #defaultdir "ram:")
  3779. (if (= 1 (exists ("envarc:MetaView.path")))
  3780.   (
  3781.     (set #defaultdir (expandpath (tackon (pathonly (getenv "MetaView.path")) "/")))
  3782.     (set @parentdir
  3783.       (askdir
  3784.         (prompt #text_programm_update)
  3785.         (help @askdir-help)
  3786.         (default #defaultdir)
  3787.       )
  3788.     )
  3789.   )
  3790.   (
  3791.     (user 2)
  3792.     (set @parentdir
  3793.       (askdir
  3794.         (prompt #text_new)
  3795.         (help @askdir-help)
  3796.         (default #defaultdir)
  3797.       )
  3798.     )
  3799.     (user #user-level)
  3800.   )
  3801. )
  3802.  
  3803. (set @default-dest (tackon @parentdir "MetaView"))
  3804.  
  3805. (makedir @default-dest
  3806.   (prompt #text_drawer)
  3807.   (help @makedir-help)
  3808.   (infos)
  3809. )
  3810.  
  3811. (complete 5)
  3812.  
  3813. (copylib 
  3814.   (prompt #text_library)
  3815.   (source (tackon @sourcedir "libs/amigametaformat.library"))
  3816.   (dest  "libs:")
  3817.   (optional "nofail" "force" "askuser")
  3818.   (help #help_library)
  3819. )
  3820.  
  3821. (complete 10)
  3822.  
  3823. (set #driver
  3824.   (askoptions
  3825.     (prompt #text_driver)
  3826.     (choices "pStrip" "AMF" "CGM" "EPS" "GEM" "WordWorth" "DR2D" "HPGL" "AI" "JMF" "WMF" "FIG")
  3827.     (help #help_driver)
  3828.   )
  3829. )
  3830.  
  3831. (complete 20)
  3832.  
  3833. (makedir "libs:AMF")
  3834.  
  3835. (if (IN #driver 0)
  3836.   (copylib 
  3837.     (prompt #text_strip)
  3838.     (source (tackon @sourcedir "libs/AMF/amigametaformat-strip.driver"))
  3839.     (dest  "libs:AMF/")
  3840.     (optional "nofail" "force" "askuser")
  3841.     (help #help_strip)
  3842.   )
  3843. )
  3844.  
  3845. (complete 21)
  3846.  
  3847. (if (IN #driver 1)
  3848.   (copylib 
  3849.     (prompt #text_file)
  3850.     (source (tackon @sourcedir "libs/AMF/amigametaformat-file.driver"))
  3851.     (dest  "libs:AMF/")
  3852.     (optional "nofail" "force" "askuser")
  3853.     (help #help_file)
  3854.   )
  3855. )
  3856.  
  3857. (complete 22)
  3858.  
  3859. (if (IN #driver 2)
  3860.   (copylib 
  3861.     (prompt #text_cgm)
  3862.     (source (tackon @sourcedir "libs/AMF/amigametaformat-cgm.driver"))
  3863.     (dest  "libs:AMF/")
  3864.     (optional "nofail" "force" "askuser")
  3865.     (help #help_cgm)
  3866.   )
  3867. )
  3868.  
  3869. (complete 23)
  3870.  
  3871. (if (IN #driver 3)
  3872.   (copylib 
  3873.     (prompt #text_eps)
  3874.     (source (tackon @sourcedir "libs/AMF/amigametaformat-eps.driver"))
  3875.     (dest  "libs:AMF/")
  3876.     (optional "nofail" "force" "askuser")
  3877.     (help #help_eps)
  3878.   )
  3879. )
  3880.  
  3881. (complete 24)
  3882.  
  3883. (if (IN #driver 4)
  3884.   (copylib 
  3885.     (prompt #text_gem)
  3886.     (source (tackon @sourcedir "libs/AMF/amigametaformat-gem.driver"))
  3887.     (dest  "libs:AMF/")
  3888.     (optional "nofail" "force" "askuser")
  3889.     (help #help_gem)
  3890.   )
  3891. )
  3892.  
  3893. (complete 25)
  3894.  
  3895. (if (IN #driver 5)
  3896.   (copylib 
  3897.     (prompt #text_ww)
  3898.     (source (tackon @sourcedir "libs/AMF/amigametaformat-ww.driver"))
  3899.     (dest  "libs:AMF/")
  3900.     (optional "nofail" "force" "askuser")
  3901.     (help #help_ww)
  3902.   )
  3903. )
  3904.  
  3905. (complete 26)
  3906.  
  3907. (if (IN #driver 6)
  3908.   (copylib 
  3909.     (prompt #text_dr2d)
  3910.     (source (tackon @sourcedir "libs/AMF/amigametaformat-dr2d.driver"))
  3911.     (dest  "libs:AMF/")
  3912.     (optional "nofail" "force" "askuser")
  3913.     (help #help_dr2d)
  3914.   )
  3915. )
  3916.  
  3917. (complete 27)
  3918.  
  3919. (if (IN #driver 7)
  3920.   (copylib 
  3921.     (prompt #text_hpgl)
  3922.     (source (tackon @sourcedir "libs/AMF/amigametaformat-hpgl.driver"))
  3923.     (dest  "libs:AMF/")
  3924.     (optional "nofail" "force" "askuser")
  3925.     (help #help_hpgl)
  3926.   )
  3927. )
  3928.  
  3929. (complete 28)
  3930.  
  3931. (if (IN #driver 8)
  3932.   (copylib 
  3933.     (prompt #text_ai)
  3934.     (source (tackon @sourcedir "libs/AMF/amigametaformat-ai.driver"))
  3935.     (dest  "libs:AMF/")
  3936.     (optional "nofail" "force" "askuser")
  3937.     (help #help_ai)
  3938.   )
  3939. )
  3940.  
  3941. (complete 29)
  3942.  
  3943. (if (IN #driver 9)
  3944.   (copylib 
  3945.     (prompt #text_jmf)
  3946.     (source (tackon @sourcedir "libs/AMF/amigametaformat-jmf.driver"))
  3947.     (dest  "libs:AMF/")
  3948.     (optional "nofail" "force" "askuser")
  3949.     (help #help_jmf)
  3950.   )
  3951. )
  3952.  
  3953. (complete 30)
  3954.  
  3955. (if (IN #driver 10)
  3956.   (copylib 
  3957.     (prompt #text_wmf)
  3958.     (source (tackon @sourcedir "libs/AMF/amigametaformat-wmf.driver"))
  3959.     (dest  "libs:AMF/")
  3960.     (optional "nofail" "force" "askuser")
  3961.     (help #help_wmf)
  3962.   )
  3963. )
  3964.  
  3965. (complete 31)
  3966.  
  3967. (if (IN #driver 11)
  3968.   (copylib 
  3969.     (prompt #text_fig)
  3970.     (source (tackon @sourcedir "libs/AMF/amigametaformat-xfig.driver"))
  3971.     (dest  "libs:AMF/")
  3972.     (optional "nofail" "force" "askuser")
  3973.     (help #help_fig)
  3974.   )
  3975. )
  3976.  
  3977. (complete 40)
  3978.  
  3979. (copyfiles
  3980.   (prompt #text_programm)
  3981.   (source (tackon @sourcedir "MetaView"))
  3982.   (dest @default-dest)
  3983.   (infos)
  3984.   (confirm)
  3985.   (help #help_programm)
  3986. )
  3987.  
  3988. (protect
  3989.   (tackon @default-dest "MetaView") "+e"
  3990. )
  3991.  
  3992. (complete 50)
  3993.  
  3994. (copyfiles
  3995.   (prompt #text_doc)
  3996.   (source (tackon @sourcedir "MetaView.doc"))
  3997.   (dest @default-dest)
  3998.   (infos)
  3999.   (confirm)
  4000.   (help #help_doc)
  4001. )
  4002.  
  4003. (complete 60)
  4004.  
  4005. (set #language
  4006.   (askoptions
  4007.     (prompt #text_guide)
  4008.     (choices "pEnglish" "Deutsch" "Español" "Polski" "Ceská" "Catalá" "Hrvatski")
  4009.     (default (shiftleft 1 #language-number))
  4010.     (help @askoptions-help)
  4011.   )
  4012. )
  4013.  
  4014. (complete 61)
  4015.  
  4016. (if (IN #language 0)
  4017.   (copyfiles
  4018.     (prompt #text_english_guide)
  4019.     (source (tackon @sourcedir "MetaView.guide"))
  4020.     (dest @default-dest)
  4021.     (infos)
  4022.     (help #help_english_guide)
  4023.   )
  4024. )
  4025.  
  4026. (complete 62)
  4027.  
  4028. (if (IN #language 1)
  4029.   (copyfiles
  4030.     (prompt #text_german_guide)
  4031.     (source (tackon @sourcedir "translations/MetaView_deutsch.guide"))
  4032.     (dest @default-dest)
  4033.     (infos)
  4034.     (help #help_german_guide)
  4035.   )
  4036. )
  4037.  
  4038. (complete 63)
  4039.  
  4040. (if (IN #language 2)
  4041.   (copyfiles
  4042.     (prompt #text_spanish_guide)
  4043.     (source (tackon @sourcedir "translations/MetaView_espanol.guide"))
  4044.     (dest @default-dest)
  4045.     (infos)
  4046.     (help #help_spanish_guide)
  4047.   )
  4048. )
  4049.  
  4050. (complete 64)
  4051.  
  4052. (if (IN #language 3)
  4053.   (copyfiles
  4054.     (prompt #text_polish_guide)
  4055.     (source (tackon @sourcedir "translations/MetaView_polski.guide"))
  4056.     (dest @default-dest)
  4057.     (infos)
  4058.     (help #help_polish_guide)
  4059.   )
  4060. )
  4061.  
  4062. (complete 65)
  4063.  
  4064. (if (IN #language 4)
  4065.   (copyfiles
  4066.     (prompt #text_czech_guide)
  4067.     (source (tackon @sourcedir "translations/MetaView_ceska.guide"))
  4068.     (dest @default-dest)
  4069.     (infos)
  4070.     (help #help_czech_guide)
  4071.   )
  4072. )
  4073.  
  4074. (complete 66)
  4075.  
  4076. (if (IN #language 5)
  4077.   (copyfiles
  4078.     (prompt #text_catalan_guide)
  4079.     (source (tackon @sourcedir "translations/MetaView_catalá.guide"))
  4080.     (dest @default-dest)
  4081.     (infos)
  4082.     (help #help_catalan_guide)
  4083.   )
  4084. )
  4085.  
  4086. (complete 67)
  4087.  
  4088. (if (IN #language 6)
  4089.   (copyfiles
  4090.     (prompt #text_hrvatski_guide)
  4091.     (source (tackon @sourcedir "translations/MetaView_hrvatski.guide"))
  4092.     (dest @default-dest)
  4093.     (infos)
  4094.     (help #help_hrvatski_guide)
  4095.   )
  4096. )
  4097.  
  4098. (complete 68)
  4099.  
  4100. (copyfiles
  4101.   (source (tackon @sourcedir "MetaView_Main.ilbm"))
  4102.   (dest @default-dest)
  4103. )
  4104.  
  4105. (copyfiles
  4106.   (source (tackon @sourcedir "MetaView_Font.ilbm"))
  4107.   (dest @default-dest)
  4108. )
  4109.  
  4110. (complete 69)
  4111.  
  4112. (copyfiles
  4113.   (source (tackon @sourcedir "MetaView_ILBM.ilbm"))
  4114.   (dest @default-dest)
  4115. )
  4116.  
  4117. (copyfiles
  4118.   (source (tackon @sourcedir "MetaView_Print.ilbm"))
  4119.   (dest @default-dest)
  4120. )
  4121.  
  4122. (complete 70)
  4123.  
  4124. (copyfiles
  4125.   (source (tackon @sourcedir "MetaView_Plot.ilbm"))
  4126.   (dest @default-dest)
  4127. )
  4128.  
  4129. (copyfiles
  4130.   (source (tackon @sourcedir "MetaView_PS.ilbm"))
  4131.   (dest @default-dest)
  4132. )
  4133.  
  4134. (copyfiles
  4135.   (source (tackon @sourcedir "MetaView_Settings.ilbm"))
  4136.   (dest @default-dest)
  4137. )
  4138.  
  4139. (complete 71)
  4140.  
  4141. (copyfiles
  4142.   (prompt #text_readme)
  4143.   (source (tackon @sourcedir "libs/amigametaformat.readme"))
  4144.   (dest @default-dest)
  4145.   (infos)
  4146.   (confirm)
  4147.   (help #help_readme)
  4148. )
  4149.  
  4150. (copyfiles
  4151.   (source (tackon @sourcedir "gadgets"))
  4152.   (dest (tackon @default-dest "gadgets"))
  4153.   (files)
  4154.   (all)
  4155.   (infos)
  4156. )
  4157.  
  4158. (complete 75)
  4159.  
  4160. (copyfiles
  4161.   (source (tackon @sourcedir "SlideShowMV"))
  4162.   (dest @default-dest)
  4163.   (infos)
  4164. )
  4165.  
  4166. (protect
  4167.   (tackon @default-dest "SlideShowMV") "+e"
  4168. )
  4169.  
  4170. (complete 80)
  4171.  
  4172. (copyfiles
  4173.   (prompt #text_arexx)
  4174.   (source (tackon @sourcedir "ARexx-Examples"))
  4175.   (dest (tackon @default-dest "ARexx-Examples"))
  4176.   (files)
  4177.   (all)
  4178.   (infos)
  4179.   (confirm)
  4180.   (help #help_arexx)
  4181. )
  4182.  
  4183. (user 2)
  4184. (if (= 1 (askbool
  4185.             (prompt #text_ds)
  4186.             (choices #YES #NO)
  4187.             (help #help_ds)
  4188.          )
  4189.     )
  4190.     (
  4191.        (set #dspath
  4192.           (askdir
  4193.             (prompt #text_ds_path)
  4194.             (help #help_ds_path)
  4195.             (default "Rexx:")
  4196.             (disk)
  4197.           )
  4198.        )
  4199.        (copyfiles
  4200.          (prompt #text_ds_import)
  4201.          (source (tackon @sourcedir "ARexx-Examples/DrawStudio_Import.dsrx"))
  4202.          (dest #dspath)
  4203.        )
  4204.        (copyfiles
  4205.          (prompt #text_ds_export)
  4206.          (source (tackon @sourcedir "ARexx-Examples/DrawStudio_Export.dsrx"))
  4207.          (dest #dspath)
  4208.        )
  4209.     )
  4210. )
  4211.  
  4212. (if (= 1 (askbool
  4213.             (prompt #text_pgs)
  4214.             (choices #YES #NO)
  4215.             (help #help_pgs)
  4216.          )
  4217.     )
  4218.     (
  4219.        (set #pspath
  4220.           (askdir
  4221.             (prompt #text_pgs_path)
  4222.             (help #help_pgs_path)
  4223.             (default "Rexx:")
  4224.             (disk)
  4225.           )
  4226.        )
  4227.        (copyfiles
  4228.          (prompt #text_pgs_import)
  4229.          (source (tackon @sourcedir "ARexx-Examples/PageStream_Import.rexx"))
  4230.          (dest #pspath)
  4231.        )
  4232.     )
  4233. )
  4234.  
  4235. (if (= 1 (askbool
  4236.             (prompt #text_ww)
  4237.             (choices #YES #NO)
  4238.             (help #help_ww)
  4239.          )
  4240.     )
  4241.     (
  4242.        (set #wwpath
  4243.           (askdir
  4244.             (prompt #text_ww_path)
  4245.             (help #help_ww_path)
  4246.             (default "Rexx:")
  4247.             (disk)
  4248.           )
  4249.        )
  4250.        (copyfiles
  4251.          (prompt #text_ww_import)
  4252.          (source (tackon @sourcedir "ARexx-Examples/WordWorth_Import_gfx.rexx"))
  4253.          (dest #wwpath)
  4254.        )
  4255.     )
  4256. )
  4257.  
  4258. (if (= 1 (askbool
  4259.             (prompt #text_fw)
  4260.             (choices #YES #NO)
  4261.             (help #help_fw)
  4262.          )
  4263.     )
  4264.     (
  4265.        (set #fwpath
  4266.           (askdir
  4267.             (prompt #text_fw_path)
  4268.             (help #help_fw_path)
  4269.             (default "Rexx:")
  4270.             (disk)
  4271.           )
  4272.        )
  4273.        (copyfiles
  4274.          (prompt #text_fw_import)
  4275.          (source (tackon @sourcedir "ARexx-Examples/FinalWriter_Import.rexx"))
  4276.          (dest #fwpath)
  4277.        )
  4278.     )
  4279. )
  4280. (user #user-level)
  4281.  
  4282.  
  4283. (if (= 1 (askbool
  4284.             (prompt #text_examples)
  4285.             (choices #text_copy #text_skip)
  4286.             (help @askbool-help)
  4287.             (default 1)
  4288.          )
  4289.     )
  4290.     (copyfiles
  4291.       (prompt #text_examples_copy)
  4292.       (source (tackon @sourcedir "Examples"))
  4293.       (dest (tackon @default-dest "Examples"))
  4294.       (files)
  4295.       (all)
  4296.       (infos)
  4297.       (help #help_examples_copy)
  4298.     )
  4299. )
  4300.  
  4301. (complete 85)
  4302.  
  4303. (set #osvernum (getversion))
  4304. (set #osver (/ #osvernum 65536))
  4305. (set #osrev (- #osvernum (* #osver 65536) ) )
  4306. (set #oldpatchvernum (getversion "c:SetPatch"))
  4307. (set #newpatchvernum (getversion (tackon @sourcedir "SetPatch43_6/SetPatch")))
  4308.  
  4309. (if (AND (> #osver 39) (< #oldpatchvernum #newpatchvernum))
  4310.   (if (= 1 (askbool
  4311.               (prompt #text_setpatch)
  4312.               (choices #text_copy #text_skip)
  4313.               (help #help_setpatch)
  4314.               (default 1)
  4315.            )
  4316.       )
  4317.       (
  4318.         (rename "c:SetPatch" "c:SetPatch.old")
  4319.         (copylib
  4320.           (prompt #text_setpatch_copy)
  4321.           (source (tackon @sourcedir "SetPatch43_6/SetPatch"))
  4322.           (dest  "c:")
  4323.           (optional "nofail" "force" "askuser")
  4324.           (help @copylib-help)
  4325.         )
  4326.       )
  4327.       (protect
  4328.         "c:SetPatch" "+e"
  4329.       )
  4330.   )
  4331. )
  4332.  
  4333. (if (> #osver 38)
  4334.   (copylib
  4335.      (prompt #text_tabs_copy)
  4336.      (source (tackon @sourcedir "libs/gadgets/tabs.gadget"))
  4337.      (dest  "libs:gadgets/")
  4338.      (optional "nofail" "force" "askuser")
  4339.      (help @copylib-help)
  4340.   )
  4341. )
  4342.  
  4343. (complete 90)
  4344.  
  4345. (set #result 1)
  4346.  
  4347. (if (= 1 (exists ("envarc:MetaView.path")))
  4348.   (set #result (askbool
  4349.               (prompt #text_variable)
  4350.               (choices #text_update #text_skip)
  4351.               (help #help_variable)
  4352.               (default 1)
  4353.           )
  4354.   )
  4355. )
  4356.  
  4357. (if (= 1 #result)
  4358.     (
  4359.       (textfile
  4360.         (prompt #text_envarc)
  4361.         (dest "envarc:MetaView.path")
  4362.         (append (tackon @default-dest "Metaview"))
  4363.         (confirm)
  4364.         (help #help_envarc)
  4365.       )
  4366.       (textfile
  4367.         (prompt #text_env)
  4368.         (dest "env:MetaView.path")
  4369.         (append (tackon @default-dest "Metaview"))
  4370.         (confirm)
  4371.         (help #help_env)
  4372.       )
  4373.     )
  4374. )
  4375.  
  4376. (complete 95)
  4377.  
  4378. (user 2)
  4379. (if (= 1 (exists (tackon @sourcedir "keyfile.metaview")))
  4380.     (copyfiles
  4381.       (prompt #text_keyfile)
  4382.       (source (tackon @sourcedir "keyfile.metaview"))
  4383.       (dest @default-dest)
  4384.       (infos)
  4385.       (help #help_keyfile)
  4386.     )
  4387. )
  4388. (if (= 0 (exists (tackon @default-dest "keyfile.metaview")))
  4389.     (message #text_register
  4390.        (help #help_register)
  4391.     )
  4392. )
  4393. (if (= 1 (exists (tackon @default-dest "keyfile.metaview")))
  4394.     (message
  4395.        #text_thanx
  4396.     )
  4397. )
  4398.  
  4399. (complete 100)
  4400.  
  4401.