source: main/trunk/release-kits/kits/rk2/installer/antinstall-config.xml

Last change on this file was 37940, checked in by anupama, 9 months ago

Two more languages were translated for all installers (GS2 too) and the GS2 installer now should list them also.

File size: 4.4 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE installer PUBLIC "-//tp23 //DTD Ant Installer Config//EN" "http://antinstaller.sf.net/dtd/antinstall-config-0.8.dtd">
3<installer
4 ui="swing,text"
5 verbose="true"
6 debug="false"
7 lookAndFeel="org.tp23.jgoodies.plaf.plastic.PlasticXPLookAndFeel"
8 name="Greenstone@version@ Installer"
9 windowIcon="/resources/icon.png"
10 defaultImageResource="/resources/header.png"
11 minJavaVersion="1.4">
12
13 <!-- select language page -->
14 <page type="input" name="language-selector" displayText="">
15 <comment name="language-selector-explanation"/>
16 <select property="language" defaultValue="en" displayText="" useAsLocale="true">
17 <option value="en" text="English"/>
18 <option value="fr" text="Français (French)"/>
19 <option value="es" text="Español (Spanish)"/>
20 <option value="de" text="Deutsch (German)"/>
21 <option value="ru" text="русскОй язык (Russian)"/>
22 <option value="zh" text="äž­æ–‡ (Chinese)"/>
23 <option value="ar" text="Arabic"/>
24 <option value="gu" text="ગુજરટ઀ી (Gujarati)"/>
25 <option value="ja" text="日本語 (Japanese)"/>
26 <option value="kk" text="Қазақ (Kazakh)"/>
27 <option value="pl" text="Polski (Polish)"/>
28 <option value="ka" text="Georgian"/>
29 <option value="hy" text="Armenian"/>
30 </select>
31 </page>
32
33 <!-- intro page -->
34 <page type="input" name="intro" displayText="">
35 <comment name="welcome"/>
36 </page>
37
38 <!-- licence page -->
39 <page type="license" name="license" resource="/LICENSE.txt" displayText="" />
40
41 <!-- install destination page -->
42 <page type="input" name="destination" displayText="">
43
44 <!-- if linux|mac -->
45 <directory property="installDir"
46 defaultValue="/usr/local/Greenstone,${env.HOME}/Greenstone"
47 create="true"
48 displayText=""
49 flagFile="_uninst"
50 flagFileExistsProperty="ISInstallDetected"
51 />
52 <!-- /if -->
53 <!-- if windows -->
54 <directory property="installDir"
55 defaultValue="C:\Program Files\Greenstone,${env.HOMEDRIVE}\${env.HOMEPATH}\Greenstone"
56 create="true"
57 displayText=""
58 flagFile="_uninst"
59 flagFileExistsProperty="ISInstallDetected"
60 />
61 <!-- /if -->
62
63 </page>
64
65 <!-- don't budge if installshield installation found -->
66 <page type="input" name="dontBudge" displayText="" ifProperty="(${ISInstallDetected}==true)" showNextButton="false">
67 <comment name="is-install-detected"/>
68 </page>
69
70 <!-- components -->
71 <page type="input" name="selector" displayText="">
72 <comment name="choose-components"/>
73
74 <!-- if linux|windows|mac -->
75 <target
76 target="Initialising"
77 diskRequirement="x"
78 defaultValue="true"
79 displayText="x"
80 force="true"
81 hidden="true"/>
82 <!-- /if -->
83
84 <target
85 target="Installing Core System"
86 diskRequirement="@component.size.core@"
87 displayText=""
88 defaultValue="true"
89 force="true"/>
90
91 <target
92 target="Installing Apache Web Server"
93 diskRequirement="@component.size.httpd@"
94 displayText=""
95 defaultValue="true"/>
96
97 <target
98 target="Installing ImageMagick"
99 diskRequirement="@component.size.imagemagick@"
100 defaultValue="true"
101 displayText=""/>
102
103 <!-- if windows|mac -->
104 <target
105 target="Installing Ghostscript"
106 diskRequirement="@component.size.ghostscript@"
107 defaultValue="true"
108 displayText=""/>
109 <!-- /if -->
110
111
112 <!-- start cdrom -->
113 <!-- the size of this component has to be maintained manually as we can't
114 know at compile time how big the documented examples are -->
115 <target
116 target="Installing Documented Examples"
117 diskRequirement="108 MB"
118 defaultValue="true"
119 displayText=""/>
120 <!-- end cdrom -->
121
122 <!-- if windows -->
123 <target
124 target="Installing Start Menu Shortcuts"
125 diskRequirement="~10 KB"
126 defaultValue="true"
127 displayText=""/>
128 <!-- /if -->
129
130 </page>
131
132 <!-- page to ask if we should enable admin pages -->
133 <page type="input" name="admin-pages" displayText="">
134 <comment name="admin-expl"/>
135 <comment name="admin-expl-2"/>
136 <comment name="admin-expl-3"/>
137 <checkbox property="enable.admin.pages" displayText="" defaultValue="false"/>
138 </page>
139
140 <!-- only if they said yes above, set a password -->
141 <page type="input" name="admin-password" displayText="" ifProperty="(${enable.admin.pages}==true)" target="Configuring Administration Pages">
142 <comment name="admin-password-expl"/>
143 <validated property="admin.password" defaultValue="" displayText="" regex="^.{3,20}$"/>
144 </page>
145
146 <!-- progress page -->
147 <page type="progress" name="progress" showTargets="true" displayText=""/>
148
149</installer>
Note: See TracBrowser for help on using the repository browser.