|
1 <html> |
|
2 <head> |
|
3 <title>ExperienceUI Documentation Content Frame</title> |
|
4 <link rel=stylesheet href=style.css type=text/css> |
|
5 <script type=text/javascript src=cmd.js></script> |
|
6 </head> |
|
7 |
|
8 <body bgcolor="#FFFFFF" style="background-color:#FFFFFF;margin:0px;padding:0px"> |
|
9 |
|
10 <table border=0 width=100% height=100%> |
|
11 |
|
12 <tr> |
|
13 |
|
14 <td valign=top style=margin:10px;padding:10px> |
|
15 |
|
16 <font face=Verdana style=font-size:8pt> |
|
17 |
|
18 <!-- READ ME FIRST --> |
|
19 <a name=read1st id=read1st></a> |
|
20 <p style=margin-left:0.00in> |
|
21 <h1>Uninstaller Strings</h1> |
|
22 </p> |
|
23 <p style=margin-left:0.20in> |
|
24 When you define a custom string, it is usually applied to the installer (i. e. not the uninstaller) only. To make a custom string that applies to the uninstaller, define the string as normal, but add UN after the XPUI_ part of the define. An example would be XPUI_COMPONENTSPAGE_TITLE becomes XPUI_<b>UN</b>COMPONENTSPAGE_TITLE. Note that this does not apply to macros; to insert, for example, the welcome page into your uninstaller, insert XPUI_PAGEMODE_UNINST and then XPUI_PAGE_WELCOME.<br> |
|
25 <br> |
|
26 Starting with ExperienceUI 1.1, you can define a string before inserting a language to change the default text for every page. Defining a string and then inserting the associated page will change the text only for that page. In other words, if you define "XPUI_DIRECTORYPAGE_TITLE" and then insert the English language, every directory page in the installer will use that define. But, if you define "XPUI_DIRECTORYPAGE_TITLE" and the insert the directory page, only that instance of the directory page will have the custom title. The UN prefix still applies to per-page settings.<br> |
|
27 <br> |
|
28 Some settings are per-page-only. These settings are only reflected in one instance of a page, and the default settings are either static or can only be changed with a different command. Example: XPUI_COMPONENTSPAGE_TEXT_INSTTYPE, when defined, only changes the text next to the install type combo box on the first instance of the components page that is inserted after the define. On subsequent components pages, this new setting will be ignored (in fact, after the first components page that is inserted, this setting will be !undef'ed). Of course, you can define the setting for as many components pages as you want. |
|
29 <br> |
|
30 </p> |
|
31 </div> |
|
32 |
|
33 <!-- WELCOME PAGE --> |
|
34 <a name=welcome id=welcome></a> |
|
35 <p style=margin-left:0.00in> |
|
36 <h1>Welcome Page Settings</h1> |
|
37 </p> |
|
38 <script type=text/javascript> |
|
39 define('XPUI_WELCOMEPAGE_TITLE', '"Header Top"', 'The top layer of text on the header.', '"Welcome"'); |
|
40 define('XPUI_WELCOMEPAGE_SUBTITLE', '"Header Bottom"', 'The bottom layer of text on the header.', '"Welcome top <NAME> Setup."'); |
|
41 define('XPUI_WELCOMEPAGE_CAPTION', ': Text', 'The text added to the window caption.', '" " [blank string]'); |
|
42 define('XPUI_WELCOMEPAGE_TEXT_TOP', '"Page Top"', 'The text at the top of the page, shown in large text.', '"Welcome to the <NAME> Setup wizard"'); |
|
43 define('XPUI_WELCOMEPAGE_TEXT', '"Page Main"', 'The text on the body of the page.', '<div style=margin-left:0.6in;>This wizard will guide you through the installation of <NAME>$\\n<br>$\\n<br>It is recommended that you close all other applications before starting Setup. This will make it possible to update relevant system files without having to reboot your computer.")</div>'); |
|
44 </script> |
|
45 </div> |
|
46 |
|
47 <!-- WELCOME PAGE 2 --> |
|
48 <a name=welcome2 id=welcome2></a> |
|
49 <p style=margin-left:0.00in> |
|
50 <h1>InstallShield®-style Welcome Page Settings</h1> |
|
51 </p> |
|
52 <p style=margin-left:0.20in><b>Note:</b> The XPUI_WELCOMEPAGESTYLE2_* defines are deprecated. Use the ones below, instead.</p> |
|
53 <script type=text/javascript> |
|
54 define('XPUI_WELCOMEPAGE2_TITLE', '"Header Top"', 'The top layer of text on the header.', '"Welcome"'); |
|
55 define('XPUI_WELCOMEPAGE2_SUBTITLE', '"Header Bottom"', 'The bottom layer of text on the header.', '"Welcome top <NAME> Setup."'); |
|
56 define('XPUI_WELCOMEPAGE2_CAPTION', ': Text', 'The text added to the window caption.', '" " [blank string]'); |
|
57 define('XPUI_WELCOMEPAGE2_TEXT_TOP', '"Page Top"', 'The text at the top of the page, shown in bold face.', '"Welcome to the NSIS Setup Wizard for <NAME>."'); |
|
58 define('XPUI_WELCOMEPAGE2_TEXT', '"Page Main"', 'The text on the body of the page.', '"Welcome to <NAME> Setup. This will install <NAME> on your computer."'); |
|
59 </script> |
|
60 </div> |
|
61 |
|
62 <!-- LICENSE PAGE --> |
|
63 <a name=license id=license></a> |
|
64 <p style=margin-left:0.00in> |
|
65 <h1>License Page Settings</h1> |
|
66 </p> |
|
67 |
|
68 <script type=text/javascript> |
|
69 define('XPUI_LICENSEPAGE_TITLE', '"Header Top"', 'The top layer of text on the header.', '"License Agreement"'); |
|
70 define('XPUI_LICENSEPAGE_SUBTITLE', '"Header Bottom"', 'The bottom layer of text on the header.', '"Please review the license agreement before installing <NAME>."'); |
|
71 define('XPUI_LICENSEPAGE_CAPTION', ': Text', 'The text added to the window caption.', '": License Agreement'); |
|
72 define('XPUI_LICENSEPAGE_TEXT_TOP', '"Page Top"', 'The text at the top of the page.', '"Press Page Down to see the rest of the agreement."'); |
|
73 define('XPUI_LICENSEPAGE_TEXT_BOTTOM', '"Page Main"', 'The text at the bottom of the page.', '"If you accept all the terms of the agreement, click on I Agree to continue. You must accept the agreement to install <NAME>."'); |
|
74 </script> |
|
75 |
|
76 <a name=licensefs id=licensefs></a> |
|
77 <h2 style=margin-left:0.2in>Force Selection options</h2> |
|
78 <script type=text/javascript> |
|
79 define('XPUI_LICENSEPAGE_CHECKBOX', 'No parameters (true/false define)', 'Define this to require the user to select a check box to indicate that he/she accepts the license agreement.', 'true/<b>false</b>'); |
|
80 </script> |
|
81 <div style=margin-left:0.60in> |
|
82 <script type=text/javascript> |
|
83 define('XPUI_LICENSEPAGE_CHECKBOX_TEXT', '"Checkbox Text"', 'The text for the "I Agree" check box.', '"I accept the terms in the license agreement"'); |
|
84 </script> |
|
85 </div> |
|
86 <script type=text/javascript> |
|
87 define('XPUI_LICENSEPAGE_RADIOBUTTONS', 'No parameters (true/false define)', 'Define this to require the user to select a radio button to indicate that he/she accepts the license agreement.', 'true/<b>false</b>'); |
|
88 </script> |
|
89 <div style=margin-left:0.60in> |
|
90 <script type=text/javascript> |
|
91 define('XPUI_LICENSEPAGE_RADIOBUTTONS_TEXT_AGREE', '"Agree Button Text"', 'The text for the "I Agree" radio button.', '"I accept the terms in the License agreement"'); |
|
92 define('XPUI_LICENSEPAGE_RADIOBUTTONS_TEXT_DECLINE', '"Decline Button Text"', 'The text for the "I do not agree" radio button.', '"I do not accept the terms in the license agreement."'); |
|
93 </script> |
|
94 </div> |
|
95 <script type=text/javascript> |
|
96 define('XPUI_LICENSEPAGE_RESET', 'No parameters (true/false define)', 'Define this to reset the checkbox or radio buttons every time the license page is run (for example, when the user clicks Back.)', 'true/<b>false</b>'); |
|
97 </script> |
|
98 |
|
99 <!-- COMPONENTS PAGE --> |
|
100 <a name=components id=components></a> |
|
101 <p style=margin-left:0.00in> |
|
102 <h1>Components Page Settings</h1> |
|
103 </p> |
|
104 <script type=text/javascript> |
|
105 define('XPUI_COMPONENTSPAGE_TITLE', '"Header Top"', 'The top layer of text on the header.', '"Choose Components"'); |
|
106 define('XPUI_COMPONENTSPAGE_SUBTITLE', '"Header Bottom"', 'The bottom layer of text on the header.', '"Choose which components of <NAME> should be installed."'); |
|
107 define('XPUI_COMPONENTSPAGE_CAPTION', ': Text', 'The text added to the window caption.', '": Select Components'); |
|
108 define('XPUI_COMPONENTSPAGE_NODESC', 'No parameters (true/false define)', 'Don\'t show the description area on the Components page. The ExperienceUI doesn\'t require a separate UI for this, it just uses ShowWindow to hide controls 1042 and 1043.', 'not definesd'); |
|
109 define('XPUI_COMPONENTSPAGE_TEXT_DESCRIPTION_TITLE', '"GroupBox Text"', 'The text on the group box around the description area', '"Description"'); |
|
110 define('XPUI_COMPONENTSPAGE_TEXT_DESCRIPTION_INFO', '"Description Idle Text"', 'The text that shows when the user\'s cursor is not over a component.', '"Hover your mouse over a component to see its description."'); |
|
111 define('XPUI_COMPONENTSPAGE_TEXT_TOP', '"Text"', 'The text at the top of the Components Page. <b>This is a per-page-only define.</b>', '$(^ComponentsText)'); |
|
112 define('XPUI_COMPONENTSPAGE_TEXT_INSTTYPE', '"Text"', 'The text next to the "install type" combo box. <b>This is a per-page-only define.</b>', '$(^ComponentsSubText1)'); |
|
113 define('XPUI_COMPONENTSPAGE_TEXT_SECLIST', '', 'The text next to the list of sections. <b>This is a per-page-only define.</b>', '$(^ComponentsSubText2)'); |
|
114 define('XPUI_COMPONENTSPAGE_TEXT_SECLIST_NOINSTTYPE', '', 'The text next to the list of sections. This string is used only when there are no InstTypes. <b>This is a per-page-only define.</b>', '$(^ComponentsSubText2)'); |
|
115 </script> |
|
116 <p style=margin-left:0.2in> |
|
117 <b>NOTE:</b> Use the ComponentText command to set the <b>default</b> main text on every components page.<br> |
|
118 </p> |
|
119 <br> |
|
120 |
|
121 <!-- DIRECTORY PAGE --> |
|
122 <a name=directory id=directory></a> |
|
123 <p style=margin-left:0.00in> |
|
124 <h1>Directory Page Settings</h1> |
|
125 </p> |
|
126 <script type=text/javascript> |
|
127 define('XPUI_DIRECTORYPAGE_TITLE', '"Header Top"', 'The top layer of text on the header.', '"Choose installation location"'); |
|
128 define('XPUI_DIRECTORYPAGE_SUBTITLE', '"Header Bottom"', 'The bottom layer of text on the header.', '"Choose the folder in which to install <NAME>"'); |
|
129 define('XPUI_DIRECTORYPAGE_CAPTION', '": Text"', 'The text added to the window caption.', '": Select Installation Folder"'); |
|
130 define('XPUI_DIRECTORYPAGE_TEXT_TOP', '"Page Top"', 'The text at the top of the page.', '<div style=margin-left:0.6in>Setup will install <NAME> in the following folder. To install in this folder, leave the text below as-is. To install in a different folder, enter one below, or click Browse. $_CLICK<sup>1</sup></div>'); |
|
131 define('XPUI_DIRECTORYPAGE_TEXT_DESTINATION', '"Group Box Text"', 'The text on the group box around the folder text box and the Browse button.', '"Installation Directory"'); |
|
132 define('XPUI_DIRECTORYPAGE_TEXT_BROWSE', '"Browse Btn Text"', 'The text on the Browse button.', '"Browse"'); |
|
133 define('XPUI_DIRECTORYPAGE_TEXT_BROWSEDIALOG', '"Browse Dialog Text"', 'The text on the graphical folder selection dialog.', '"Please select a folder:"'); |
|
134 </script> |
|
135 <p style=margin-left:0.20in> |
|
136 <font size=1><sup>1</sup>$_CLICK is an internal NSIS variable that changes to say, "Click Next to continue" or "Click Install to start the installation" depending on whether the InstFiles page is next or not.</font> |
|
137 </p> |
|
138 |
|
139 <!-- START MENU PAGE --> |
|
140 <a name=startmenu id=startmenu></a> |
|
141 <p style=margin-left:0.00in> |
|
142 <h1>Start Menu Page Settings</h1> |
|
143 </p> |
|
144 |
|
145 <p style=margin-left:0.2in> |
|
146 |
|
147 For information on the Start Menu page, please see the <a href=startmenu.htm>Start Menu Page documentation</a>. |
|
148 |
|
149 </p> |
|
150 |
|
151 <!-- INSTCONFIRM PAGE --> |
|
152 <a name=instconfirm id=instconfirm></a> |
|
153 <p style=margin-left:0.00in> |
|
154 <h1>Install Confirm Page Settings</h1> |
|
155 </p> |
|
156 |
|
157 <script type=text/javascript> |
|
158 define('XPUI_INSTCONFIRMPAGE_TITLE', '"Header Top"', 'The top layer of text on the header.', '"Confirm Installation"'); |
|
159 define('XPUI_INSTCONFIRMPAGE_SUBTITLE', '"Header Bottom"', 'The bottom layer of text on the header.', '"Setup has finished gathering information and is ready to install <NAME>."'); |
|
160 define('XPUI_INSTCONFIRMPAGE_CAPTION', '": Text"', 'The text added to the window caption.', '": Confirm Installation"'); |
|
161 define('XPUI_INSTCONFIRMPAGE_TEXT_TOP', '"Page Top"', 'The text at the top of the page.', '"Setup is ready to install <NAME> on your computer."'); |
|
162 define('XPUI_INSTCONFIRMPAGE_TEXT_BOTTOM', '"Page Main"', 'The text on the body of the page.', '$_CLICK'); |
|
163 </script> |
|
164 |
|
165 <!-- INSTFILES PAGE --> |
|
166 <a name=instfiles id=instfiles></a> |
|
167 <p style=margin-left:0.00in> |
|
168 <h1>InstFiles Page Settings</h1> |
|
169 </p> |
|
170 |
|
171 <script type=text/javascript> |
|
172 define('XPUI_INSTFILESPAGE_TITLE', '"Header Top"', 'The top layer of text on the header.', '"Installing"'); |
|
173 define('XPUI_INSTFILESPAGE_SUBTITLE', '"Header Bottom"', 'The bottom layer of text on the header.', '"Please wait while <NAME> is being installed."'); |
|
174 define('XPUI_INSTFILESPAGE_CAPTION', '": Text"', 'The text added to the window caption.', '": Copying Files"'); |
|
175 </script> |
|
176 |
|
177 <!-- INSTSUCCESS PAGE --> |
|
178 <a name=instsuccess id=instsuccess></a> |
|
179 <p style=margin-left:0.00in> |
|
180 <h1>Install Success Page Settings</h1> |
|
181 </p> |
|
182 |
|
183 <script type=text/javascript> |
|
184 define('XPUI_INSTSUCCESSPAGE_TITLE', '"Header Top"', 'The top layer of text on the header.', '"Installation Complete"'); |
|
185 define('XPUI_INSTSUCCESSPAGE_SUBTITLE', '"Header Bottom"', 'The bottom layer of text on the header.', '"Setup has successfully installed <NAME> on your computer."'); |
|
186 define('XPUI_INSTSUCCESSPAGE_CAPTION', '": Text"', 'The text added to the window caption.', '": Installation Successful"'); |
|
187 define('XPUI_INSTSUCCESSPAGE_TEXT_TOP', '"Page Top"', 'The text at the top of the page.', '"Setup has successfully installed <NAME> on your computer."'); |
|
188 define('XPUI_INSTSUCCESSPAGE_TEXT_BOTTOM', '"Page Main"', 'The text on the body of the page.', '"Click Close to exit."'); |
|
189 </script> |
|
190 |
|
191 <!-- FINISH PAGE --> |
|
192 <a name=finish id=finish></a> |
|
193 <p style=margin-left:0.00in> |
|
194 <h1>Finish Page Settings</h1> |
|
195 </p> |
|
196 <script type=text/javascript> |
|
197 define('XPUI_FINISHPAGE_TITLE', '"Header Top"', 'The top layer of text on the header.', '"Installation Complete"'); |
|
198 define('XPUI_FINISHPAGE_SUBTITLE', '"Header Bottom"', 'The bottom layer of text on the header. (Default:"Setup has successfully installed <NAME> on your computer."'); |
|
199 define('XPUI_FINISHPAGE_CAPTION', '": Your Text Here"', 'The text added to the window caption.', '": Installation Successful"'); |
|
200 define('XPUI_FINISHPAGE_TEXT_TOP', '"Page Top"', 'The text at the top of the page.', '"Completing the <NAME> Setup Wizard"'); |
|
201 define('XPUI_FINISHPAGE_TEXT', '"Page Main"', 'The text on the body of the page.', '<br><br><div style=margin-left:0.6in>Setup has successfully installed <NAME> on your computer.$\\n<br>$n<br>Please click <XPUI_BUTTONTEXT_CLOSE> to exit.</div>'); |
|
202 define('XPUI_FINISHPAGE_TEXT_USE_TOP_ALT', 'No parameters (true/false define)', 'Define this to use the alternative text style at the top of the page.', 'true/<b>false</b>'); |
|
203 define('XPUI_FINISHPAGE_TEXT_TOP_ALT', '"Text"', 'The text used at the top of the page for the alternative style.', '"NSIS Setup Wizard Complete"'); |
|
204 |
|
205 define('XPUI_FINISHPAGE_RUN', 'No parameters (true/false define)', 'Define this setting to have the installer run a program after the user closes the finish page.', 'true/<b>false</b>'); |
|
206 document.write('<div style=margin-left:0.3in>'); |
|
207 define('XPUI_FINISHPAGE_TEXT_RUN', '"Text"', 'The text used on the main page when both run support <i>and</i> documentation support options are turned on.', '"Setup has successfully installed <NAME> on your computer.$\\n<br>$\\n<br>Which actions do you want to perform?"'); |
|
208 define('XPUI_FINISHPAGE_CHECKBOX_RUN', '"Text"', 'The text used for the "Run Program Now" checkbox.', '"Run <NAME> now"'); |
|
209 define('XPUI_FINISHPAGE_RUN_FILE', '$INSTDIR\\Path_to_your_program.exe', 'The file that is run.', '<no default setting>'); |
|
210 define('XPUI_FINISHPAGE_RUN_FUNCTION', 'Function_name', 'The function that is called after the finish page. You do not need to define an on/off value for this; it is done automatically.', '<no default value>'); |
|
211 define('XPUI_FINISHPAGE_RUN_NOTCHECKED', 'No parameters (true/false define)', 'Define this to not check the Run Program checkbox by default.', 'true/<b>false</b>'); |
|
212 document.write('</div>'); |
|
213 define('XPUI_FINISHPAGE_DOCS', '"Text"', 'Define this setting to have the installer show a documentation file after the user closes the finish page.', 'true/<b>false</b>'); |
|
214 document.write('<div style=margin-left:0.3in>'); |
|
215 define('XPUI_FINISHPAGE_CHECKBOX_DOCS', '"Text"', 'The text used for the "Show Readme Now" checkbox.', '"View the documentation for <NAME> now"'); |
|
216 define('XPUI_FINISHPAGE_DOCS_FILE', '$INSTDIR\\Path_to_your_docs.htm', 'The file that is opened.', '<no default value>'); |
|
217 define('XPUI_FINISHPAGE_DOCS_FUNCTION', 'Function_name', 'The function that is called after the finish page. You do not need to define an on/off value for this; it is done automatically.', '<no default value>'); |
|
218 define('XPUI_FINISHPAGE_DOCS_NOTCHECKED', 'No parameters (true/false define)', 'Define this to not check the Show Documentation checkbox by default.', 'true/<b>false</b>'); |
|
219 document.write('</div>'); |
|
220 document.write('<p style=margin-left:0.20in><b>Reboot Support</b></p>'); |
|
221 document.write('<div style=margin-left:0.3in>'); |
|
222 define('XPUI_FINISHPAGE_REBOOT_FORCE', 'No parameters (true/false define)', 'Define this to force the finish page to prompt the user for a reboot.', 'true/<b>false</b>'); |
|
223 define('XPUI_FINISHPAGE_NOREBOOT', 'No parameters (true/false define)', 'Define this to keep the installer from asking for a reboot even if the reboot flag is set. Otherwise, the installer will ask for a reboot if the flag is set, and continue normally if it is not.', 'true/<b>false</b>'); |
|
224 define('XPUI_FINISHPAGE_TEXT_REBOOT', '"Text"', 'The text shown on the page when a reboot is required.', '<div style=margin-left:0.4in>"Setup has finished copying files to your computer.$\\n<br>$\\n<br>To finish the installation, you must restart your computer. Do you want to restart your computer now?"</div>'); |
|
225 define('XPUI_FINISHPAGE_REBOOT_MESSAGEBOX', '"Text"', 'The text shown on the message box that asks for reboot confirmation.', '<div style=margin-left:0.4in>"Setup is about to reboot your computer.$\\n<br>$\\n<br>Please save and close all open files and documents, and click OK to reboot your computer."</div>'); |
|
226 document.write('</div><p style=margin-left:0.20in><b>Link Support</b></p>'); |
|
227 document.write('<div style=margin-left:0.3in>'); |
|
228 define('XPUI_FINISHPAGE_LINK', 'No parameters (true/false define)', 'Shows a link at the bottom of the Finish page.', 'true/<b>false</b>'); |
|
229 define('XPUI_FINISHPAGE_LINK_TEXT', '"Text"', 'The text shown for the link at the bottom of the page.', '<no default value>'); |
|
230 define('XPUI_FINISHPAGE_LINK_FUNCTION', 'Function_name', 'The function called when the link is clicked. Use this to open your install directory, go to a web site, etc.', '""'); |
|
231 document.write('</div>'); |
|
232 </script> |
|
233 |
|
234 <!-- ABORT PAGE --> |
|
235 <a name=abort id=abort></a> |
|
236 <p style=margin-left:0.00in> |
|
237 <h1>Abort Page Settings</h1> |
|
238 </p> |
|
239 |
|
240 <script type=text/javascript> |
|
241 define('XPUI_ABORTPAGE_TITLE', '"Header Top"', 'The top layer of text on the header.', '"Installation Aborted"'); |
|
242 define('XPUI_ABORTPAGE_SUBTITLE', '"Header Bottom"', 'The bottom layer of text on the header.', '"<NAME> Setup was not completed successfully."'); |
|
243 define('XPUI_ABORTPAGE_CAPTION', '": Text"', 'The text added to the window caption.', '": Installation Cancelled"'); |
|
244 define('XPUI_ABORTPAGE_TEXT_TOP', '"Page Top"', 'The text at the top of the page.', '"NSIS Setup Wizard Complete"'); |
|
245 define('XPUI_ABORTPAGE_TEXT', '"Page Main"', 'The text on the body of the page.', '<div style=margin-left:0.6in;>"The wizard was interrupted before $(^Name) could be completely installed.$\\n<br>$\\n<br>Your system has not been modified. To install this program at a later time, please run this wizard again.$\n<br>$\\n<br>$\\n<br>$\\n<br>$\\n<br>Please click Close to exit the Setup Wizard."</div>'); |
|
246 </script> |
|
247 |
|
248 <!-- NSIS UNINSTCONFIRM PAGE --> |
|
249 <a name=nsisunc id=nsisunc></a> |
|
250 <p style=margin-left:0.00in> |
|
251 <h1>Uninstall Confirm Page Settings</h1> |
|
252 </p> |
|
253 |
|
254 <script type=text/javascript> |
|
255 define('XPUI_UNINSTCONFIRMPAGE_NSIS_TITLE', '"Header Top"', 'The top layer of text on the header.', '"Uninstall <NAME>"'); |
|
256 define('XPUI_UNINSTCONFIRMPAGE_NSIS_SUBTITLE', '"Header Bottom"', 'The bottom layer of text on the header.', '"Remove <NAME> from your computer"'); |
|
257 define('XPUI_UNINSTCONFIRMPAGE_NSIS_CAPTION', '": Text"', 'The text added to the window caption.', '": Confirm Uninstall"'); |
|
258 define('XPUI_UNINSTCONFIRMPAGE_NSIS_TEXT_TOP', '"Page Top"', 'The text at the top of the page.', '"<NAME> will be uninstalled from the following folder. Click Uninstall to start the uninstallation."'); |
|
259 define('XPUI_UNINSTCONFIRMPAGE_NSIS_TEXT_FOLDER', '"Group Box Text"', 'The text next to the folder indicator text box.', '"Uninstalling from:"'); |
|
260 </script> |
|
261 |
|
262 </font> |
|
263 |
|
264 </td> |
|
265 |
|
266 </tr> |
|
267 |
|
268 <tr> |
|
269 |
|
270 <td valign=bottom style=margin:0px;padding:0px> |
|
271 |
|
272 <p class=footer>Copyright © 2004-2006 Dan Fuhry. All rights except those explicitly given in the <a href=license_agreement.htm style=color:#A0A0D0 onmouseover="this.style.color='#A0A0A0'" onmouseout="this.style.color='#A0A0D0'">license agreement</a> reserved.</p> |
|
273 |
|
274 </td> |
|
275 |
|
276 </tr> |
|
277 |
|
278 </table> |
|
279 |
|
280 </body> |
|
281 |
|
282 </html> |