2004-06-14 00:17:48 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!-- -*- Mode: SGML; indent-tabs-mode: nil; -*- -->
|
|
|
|
<!--
|
|
|
|
|
2012-05-21 11:12:37 +00:00
|
|
|
This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
2004-06-14 00:17:48 +00:00
|
|
|
|
|
|
|
<?xml-stylesheet href="chrome://mozapps/skin/profile/profileSelection.css" type="text/css"?>
|
|
|
|
|
|
|
|
<!DOCTYPE window [
|
2005-03-10 18:44:11 +00:00
|
|
|
<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
|
2004-06-14 00:17:48 +00:00
|
|
|
%brandDTD;
|
|
|
|
<!ENTITY % profileDTD SYSTEM "chrome://mozapps/locale/profile/profileSelection.dtd">
|
|
|
|
%profileDTD;
|
|
|
|
]>
|
|
|
|
|
|
|
|
<dialog
|
|
|
|
id="profileWindow"
|
|
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
|
|
class="non-resizable"
|
|
|
|
title="&windowtitle.label;"
|
|
|
|
orient="vertical"
|
|
|
|
buttons="accept,cancel"
|
|
|
|
style="width: 30em;"
|
|
|
|
onload="startup();"
|
|
|
|
ondialogaccept="return acceptDialog()"
|
2007-11-13 16:22:59 +00:00
|
|
|
ondialogcancel="return exitDialog()"
|
2004-06-14 00:17:48 +00:00
|
|
|
buttonlabelaccept="&start.label;"
|
|
|
|
buttonlabelcancel="&exit.label;">
|
|
|
|
|
|
|
|
<stringbundle id="bundle_profileManager"
|
|
|
|
src="chrome://mozapps/locale/profile/profileSelection.properties"/>
|
|
|
|
<stringbundle id="bundle_brand"
|
2005-03-10 04:38:35 +00:00
|
|
|
src="chrome://branding/locale/brand.properties"/>
|
2004-06-14 00:17:48 +00:00
|
|
|
|
2007-05-23 18:08:10 +00:00
|
|
|
<script type="application/javascript" src="chrome://mozapps/content/profile/profileSelection.js"/>
|
2004-06-14 00:17:48 +00:00
|
|
|
|
|
|
|
<description class="label">&pmDescription.label;</description>
|
|
|
|
|
|
|
|
<separator class="thin"/>
|
|
|
|
|
|
|
|
<hbox class="profile-box indent" flex="1">
|
|
|
|
|
|
|
|
<vbox id="managebuttons">
|
|
|
|
<button id="newbutton" label="&newButton.label;"
|
|
|
|
accesskey="&newButton.accesskey;" oncommand="CreateProfileWizard();"/>
|
|
|
|
<button id="renbutton" label="&renameButton.label;"
|
|
|
|
accesskey="&renameButton.accesskey;" oncommand="RenameProfile();"/>
|
|
|
|
<button id="delbutton" label="&deleteButton.label;"
|
|
|
|
accesskey="&deleteButton.accesskey;" oncommand="ConfirmDelete();"/>
|
|
|
|
</vbox>
|
|
|
|
|
|
|
|
<separator flex="1"/>
|
|
|
|
|
|
|
|
<vbox flex="1">
|
2006-08-06 05:32:42 +00:00
|
|
|
<listbox id="profiles" rows="5" seltype="single"
|
2004-06-14 00:17:48 +00:00
|
|
|
ondblclick="onProfilesDblClick(event)"
|
|
|
|
onkeypress="onProfilesKey(event);">
|
|
|
|
</listbox>
|
|
|
|
|
2004-09-06 17:08:42 +00:00
|
|
|
<!-- Bug 257777 -->
|
2004-06-14 00:17:48 +00:00
|
|
|
<checkbox id="offlineState" label="&offlineState.label;" accesskey="&offlineState.accesskey;"/>
|
|
|
|
|
|
|
|
<checkbox id="autoSelectLastProfile" label="&autoSelect.label;"
|
|
|
|
accesskey="&autoSelect.accesskey;"/>
|
|
|
|
</vbox>
|
|
|
|
|
|
|
|
</hbox>
|
|
|
|
</dialog>
|