2007-03-22 10:30:00 -07:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
|
|
|
|
|
|
|
<!DOCTYPE wizard [
|
|
|
|
<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
|
|
|
|
%brandDTD;
|
|
|
|
<!ENTITY % profileDTD SYSTEM "chrome://mozapps/locale/profile/createProfileWizard.dtd">
|
|
|
|
%profileDTD;
|
|
|
|
]>
|
|
|
|
|
|
|
|
<wizard id="createProfileWizard"
|
|
|
|
title="&newprofile.title;"
|
|
|
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
|
|
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
|
|
onwizardfinish="return onFinish();"
|
|
|
|
onload="initWizard();"
|
|
|
|
style="&window.size;">
|
|
|
|
|
|
|
|
<stringbundle id="bundle_profileManager"
|
|
|
|
src="chrome://mozapps/locale/profile/profileSelection.properties"/>
|
|
|
|
|
2007-05-23 11:08:10 -07:00
|
|
|
<script type="application/javascript" src="chrome://mozapps/content/profile/createProfileWizard.js"/>
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
<wizardpage id="explanation" onpageshow="enableNextButton();">
|
|
|
|
<description>&profileCreationExplanation_1.text;</description>
|
|
|
|
<description>&profileCreationExplanation_2.text;</description>
|
|
|
|
<description>&profileCreationExplanation_3.text;</description>
|
|
|
|
<spacer flex="1"/>
|
2007-06-24 05:00:15 -07:00
|
|
|
#ifdef XP_MACOSX
|
2007-03-22 10:30:00 -07:00
|
|
|
<description>&profileCreationExplanation_4Mac.text;</description>
|
2007-06-24 05:00:15 -07:00
|
|
|
#else
|
|
|
|
#ifdef XP_UNIX
|
|
|
|
<description>&profileCreationExplanation_4Gnome.text;</description>
|
|
|
|
#else
|
|
|
|
<description>&profileCreationExplanation_4.text;</description>
|
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
</wizardpage>
|
|
|
|
|
|
|
|
<wizardpage id="createProfile" onpageshow="initSecondWizardPage();">
|
|
|
|
<description>&profileCreationIntro.text;</description>
|
|
|
|
|
|
|
|
<label accesskey="&profilePrompt.accesskey;" control="ProfileName">&profilePrompt.label;</label>
|
|
|
|
<textbox id="profileName" value="&profileDefaultName;"
|
|
|
|
oninput="updateProfileName(this.value);"/>
|
|
|
|
|
|
|
|
<separator/>
|
|
|
|
|
|
|
|
<description>&profileDirectoryExplanation.text;</description>
|
|
|
|
|
|
|
|
<vbox class="indent" flex="1" style="overflow: auto;">
|
|
|
|
<description id="profileDisplay">*</description>
|
|
|
|
</vbox>
|
|
|
|
|
|
|
|
<hbox>
|
|
|
|
<button label="&button.choosefolder.label;" oncommand="chooseProfileFolder();"
|
|
|
|
accesskey="&button.choosefolder.accesskey;"/>
|
|
|
|
|
|
|
|
<button id="useDefault" label="&button.usedefault.label;"
|
|
|
|
oncommand="setDisplayToDefaultFolder(); updateProfileDisplay();"
|
|
|
|
accesskey="&button.usedefault.accesskey;" disabled="true"/>
|
|
|
|
</hbox>
|
|
|
|
|
|
|
|
<separator/>
|
|
|
|
|
|
|
|
<description id="finishText">*</description>
|
|
|
|
</wizardpage>
|
|
|
|
|
|
|
|
</wizard>
|