2010-08-02 16:37:56 -07:00
|
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
|
|
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
|
#
|
|
|
|
|
# The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
|
# 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
|
# the License. You may obtain a copy of the License at
|
|
|
|
|
# http://www.mozilla.org/MPL/
|
|
|
|
|
#
|
|
|
|
|
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
|
# for the specific language governing rights and limitations under the
|
|
|
|
|
# License.
|
|
|
|
|
#
|
|
|
|
|
# The Original Code is Weave.
|
|
|
|
|
#
|
|
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
|
# Mozilla Foundation.
|
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 2009
|
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
|
#
|
|
|
|
|
# Contributor(s):
|
|
|
|
|
# Edward Lee <edilee@mozilla.com>
|
|
|
|
|
# Mike Connor <mconnor@mozilla.com>
|
|
|
|
|
# Paul O’Shannessy <paul@oshannessy.com>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
# Philipp von Weitershausen <philipp@weitershausen.de>
|
2010-08-02 16:37:56 -07:00
|
|
|
|
#
|
|
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
|
|
|
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
|
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
|
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
|
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
|
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
|
# the provisions above, a recipient may use your version of this file under
|
|
|
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
|
#
|
|
|
|
|
# ***** END LICENSE BLOCK *****
|
|
|
|
|
|
|
|
|
|
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
|
|
|
|
<?xml-stylesheet href="chrome://browser/skin/syncSetup.css" type="text/css"?>
|
|
|
|
|
<?xml-stylesheet href="chrome://browser/skin/syncCommon.css" type="text/css"?>
|
|
|
|
|
|
|
|
|
|
<!DOCTYPE window [
|
|
|
|
|
<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
|
|
|
|
|
<!ENTITY % syncBrandDTD SYSTEM "chrome://browser/locale/syncBrand.dtd">
|
|
|
|
|
<!ENTITY % syncSetupDTD SYSTEM "chrome://browser/locale/syncSetup.dtd">
|
|
|
|
|
%brandDTD;
|
|
|
|
|
%syncBrandDTD;
|
|
|
|
|
%syncSetupDTD;
|
|
|
|
|
]>
|
|
|
|
|
<wizard id="accountSetup" title="&accountSetupTitle.label;"
|
|
|
|
|
windowtype="Weave:AccountSetup"
|
|
|
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
|
|
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
|
|
|
|
onwizardnext="return gSyncSetup.onWizardAdvance()"
|
|
|
|
|
onwizardback="return gSyncSetup.onWizardBack()"
|
|
|
|
|
onwizardfinish="gSyncSetup.onWizardFinish()"
|
|
|
|
|
onwizardcancel="gSyncSetup.onWizardCancel()"
|
|
|
|
|
onload="gSyncSetup.init()">
|
|
|
|
|
|
|
|
|
|
<script type="application/javascript"
|
|
|
|
|
src="chrome://browser/content/syncSetup.js"/>
|
|
|
|
|
<script type="application/javascript"
|
|
|
|
|
src="chrome://browser/content/syncUtils.js"/>
|
|
|
|
|
<script type="application/javascript"
|
|
|
|
|
src="chrome://browser/content/utilityOverlay.js"/>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
<script type="application/javascript"
|
|
|
|
|
src="chrome://global/content/printUtils.js"/>
|
2010-08-02 16:37:56 -07:00
|
|
|
|
|
|
|
|
|
<wizardpage id="pickSetupType"
|
2010-09-07 18:37:46 -07:00
|
|
|
|
label="&syncBrand.fullName.label;"
|
2010-08-02 16:37:56 -07:00
|
|
|
|
onpageshow="gSyncSetup.onPageShow()">
|
2010-09-07 18:37:46 -07:00
|
|
|
|
<vbox align="center" flex="1">
|
|
|
|
|
<description style="padding: 0 7em;">
|
|
|
|
|
&setup.pickSetupType.description;
|
|
|
|
|
</description>
|
|
|
|
|
<spacer flex="1"/>
|
|
|
|
|
<button id="newAccount"
|
|
|
|
|
class="accountChoiceButton"
|
|
|
|
|
label="&button.createNewAccount.label;"
|
|
|
|
|
oncommand="gSyncSetup.startNewAccountSetup()"
|
|
|
|
|
align="center"/>
|
|
|
|
|
<spacer flex="3"/>
|
|
|
|
|
</vbox>
|
|
|
|
|
<separator class="groove"/>
|
|
|
|
|
<vbox align="center" flex="1">
|
|
|
|
|
<spacer flex="3"/>
|
2010-12-09 18:28:25 -08:00
|
|
|
|
<label value="&setup.haveAccount.label;" />
|
|
|
|
|
<spacer flex="1"/>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
<button id="existingAccount"
|
|
|
|
|
class="accountChoiceButton"
|
2010-12-09 18:28:25 -08:00
|
|
|
|
label="&button.connect.label;"
|
2010-09-07 18:37:46 -07:00
|
|
|
|
oncommand="gSyncSetup.useExistingAccount()"/>
|
|
|
|
|
<spacer flex="3"/>
|
|
|
|
|
</vbox>
|
2010-08-02 16:37:56 -07:00
|
|
|
|
</wizardpage>
|
|
|
|
|
|
2010-09-07 18:37:46 -07:00
|
|
|
|
<wizardpage label="&setup.newAccountDetailsPage.title.label;"
|
2010-08-02 16:37:56 -07:00
|
|
|
|
id="newAccountStart"
|
2010-09-07 18:37:46 -07:00
|
|
|
|
onextra1="gSyncSetup.onSyncOptions()"
|
2010-08-02 16:37:56 -07:00
|
|
|
|
onpageshow="gSyncSetup.onPageShow();">
|
|
|
|
|
<grid>
|
|
|
|
|
<columns>
|
|
|
|
|
<column/>
|
|
|
|
|
<column class="inputColumn" flex="1"/>
|
|
|
|
|
</columns>
|
|
|
|
|
<rows>
|
2010-09-15 06:55:04 -07:00
|
|
|
|
<row id="emailRow" align="center">
|
|
|
|
|
<label value="&setup.emailAddress.label;"
|
|
|
|
|
accesskey="&setup.emailAddress.accesskey;"
|
|
|
|
|
control="weaveEmail"/>
|
|
|
|
|
<textbox id="weaveEmail"
|
2010-10-08 08:57:04 -07:00
|
|
|
|
oninput="gSyncSetup.onEmailInput()"/>
|
2010-08-02 16:37:56 -07:00
|
|
|
|
</row>
|
2010-09-15 06:55:04 -07:00
|
|
|
|
<row id="emailFeedbackRow" align="center" hidden="true">
|
2010-08-02 16:37:56 -07:00
|
|
|
|
<spacer/>
|
|
|
|
|
<hbox>
|
|
|
|
|
<image class="statusIcon"/>
|
|
|
|
|
<label class="status" value=" "/>
|
|
|
|
|
</hbox>
|
|
|
|
|
</row>
|
|
|
|
|
<row id="passwordRow" align="center">
|
|
|
|
|
<label value="&signIn.password.label;"
|
|
|
|
|
accesskey="&signIn.password.accesskey;"
|
|
|
|
|
control="weavePassword"/>
|
|
|
|
|
<textbox id="weavePassword"
|
|
|
|
|
type="password"
|
|
|
|
|
onchange="gSyncSetup.onPasswordChange()"/>
|
|
|
|
|
</row>
|
|
|
|
|
<row id="confirmRow" align="center">
|
|
|
|
|
<label value="&setup.confirmPassword.label;"
|
|
|
|
|
accesskey="&setup.confirmPassword.accesskey;"
|
|
|
|
|
control="weavePasswordConfirm"/>
|
|
|
|
|
<textbox id="weavePasswordConfirm"
|
|
|
|
|
type="password"
|
|
|
|
|
onchange="gSyncSetup.onPasswordChange()"/>
|
|
|
|
|
</row>
|
|
|
|
|
<row id="passwordFeedbackRow" align="center" hidden="true">
|
|
|
|
|
<spacer/>
|
|
|
|
|
<hbox>
|
|
|
|
|
<image class="statusIcon"/>
|
|
|
|
|
<label class="status" value=" "/>
|
|
|
|
|
</hbox>
|
|
|
|
|
</row>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
<row align="center">
|
2010-12-09 18:28:25 -08:00
|
|
|
|
<label control="server"
|
2010-09-07 18:37:46 -07:00
|
|
|
|
value="&server.label;"/>
|
2010-12-09 18:28:25 -08:00
|
|
|
|
<menulist id="server"
|
|
|
|
|
oncommand="gSyncSetup.onServerCommand()"
|
|
|
|
|
oninput="gSyncSetup.onServerInput()">
|
2010-09-07 18:37:46 -07:00
|
|
|
|
<menupopup>
|
|
|
|
|
<menuitem label="&serverType.main.label;"
|
|
|
|
|
value="main"/>
|
2010-12-09 18:28:25 -08:00
|
|
|
|
<menuitem label="&serverType.custom2.label;"
|
2010-09-07 18:37:46 -07:00
|
|
|
|
value="custom"/>
|
|
|
|
|
</menupopup>
|
|
|
|
|
</menulist>
|
|
|
|
|
</row>
|
|
|
|
|
<row id="serverFeedbackRow" align="center" hidden="true">
|
|
|
|
|
<spacer/>
|
|
|
|
|
<hbox>
|
|
|
|
|
<image class="statusIcon"/>
|
|
|
|
|
<label class="status" value=" "/>
|
|
|
|
|
</hbox>
|
|
|
|
|
</row>
|
2010-08-02 16:37:56 -07:00
|
|
|
|
<row id="TOSRow" align="center">
|
|
|
|
|
<spacer/>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
<hbox align="center">
|
2010-08-02 16:37:56 -07:00
|
|
|
|
<checkbox id="tos"
|
|
|
|
|
accesskey="&setup.tosAgree1.accesskey;"
|
|
|
|
|
oncommand="gSyncSetup.checkFields();"/>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
<description id="tosDesc"
|
|
|
|
|
onclick="document.getElementById('tos').focus();
|
|
|
|
|
document.getElementById('tos').click()">
|
2010-08-02 16:37:56 -07:00
|
|
|
|
&setup.tosAgree1.label;
|
|
|
|
|
<label class="text-link inline-link"
|
|
|
|
|
onclick="event.stopPropagation();gSyncUtils.openToS();"
|
|
|
|
|
value="&setup.tosLink.label;"/>
|
|
|
|
|
&setup.tosAgree2.label;
|
|
|
|
|
<label class="text-link inline-link"
|
|
|
|
|
onclick="event.stopPropagation();gSyncUtils.openPrivacyPolicy();"
|
|
|
|
|
value="&setup.ppLink.label;"/>
|
|
|
|
|
&setup.tosAgree3.label;
|
|
|
|
|
</description>
|
|
|
|
|
</hbox>
|
|
|
|
|
</row>
|
|
|
|
|
</rows>
|
|
|
|
|
</grid>
|
|
|
|
|
</wizardpage>
|
|
|
|
|
|
2010-09-07 18:37:46 -07:00
|
|
|
|
<wizardpage label="&setup.newSyncKeyPage.title.label;"
|
2010-09-07 18:37:46 -07:00
|
|
|
|
onextra1="gSyncSetup.onSyncOptions()"
|
2010-08-02 16:37:56 -07:00
|
|
|
|
onpageshow="gSyncSetup.onPageShow();">
|
|
|
|
|
<description>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
&setup.newSyncKeyPage.description.label;
|
2010-08-02 16:37:56 -07:00
|
|
|
|
</description>
|
|
|
|
|
<spacer/>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
|
2010-09-07 18:37:46 -07:00
|
|
|
|
<groupbox>
|
2010-11-30 20:39:32 -08:00
|
|
|
|
<label value="&syncKeyEntry.label;"
|
|
|
|
|
accesskey="&syncKeyEntry.accesskey;"
|
|
|
|
|
control="weavePassphrase"/>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
<textbox id="weavePassphrase"
|
2010-11-30 20:39:32 -08:00
|
|
|
|
readonly="true"
|
|
|
|
|
onfocus="this.select();"/>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
</groupbox>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
|
2010-09-07 18:37:46 -07:00
|
|
|
|
<groupbox align="center">
|
2010-09-07 18:37:46 -07:00
|
|
|
|
<description>&syncKeyBackup.description;</description>
|
|
|
|
|
<hbox>
|
2010-10-14 02:12:33 -07:00
|
|
|
|
<button id="printSyncKeyButton"
|
|
|
|
|
label="&button.syncKeyBackup.print.label;"
|
2010-09-07 18:37:46 -07:00
|
|
|
|
accesskey="&button.syncKeyBackup.print.accesskey;"
|
2010-11-30 20:39:32 -08:00
|
|
|
|
oncommand="gSyncUtils.passphrasePrint('weavePassphrase');"/>
|
2010-10-14 02:12:33 -07:00
|
|
|
|
<button id="saveSyncKeyButton"
|
|
|
|
|
label="&button.syncKeyBackup.save.label;"
|
2010-09-07 18:37:46 -07:00
|
|
|
|
accesskey="&button.syncKeyBackup.save.accesskey;"
|
2010-11-30 20:39:32 -08:00
|
|
|
|
oncommand="gSyncUtils.passphraseSave('weavePassphrase');"/>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
</hbox>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
</groupbox>
|
2010-08-02 16:37:56 -07:00
|
|
|
|
</wizardpage>
|
|
|
|
|
|
2010-09-07 18:37:46 -07:00
|
|
|
|
<wizardpage label="&setup.captchaPage2.title.label;"
|
|
|
|
|
onextra1="gSyncSetup.onSyncOptions()">
|
|
|
|
|
<vbox flex="1" align="center">
|
|
|
|
|
<browser height="150"
|
|
|
|
|
width="450"
|
|
|
|
|
id="captcha"
|
|
|
|
|
type="content"
|
|
|
|
|
disablehistory="true"/>
|
|
|
|
|
<spacer flex="1"/>
|
|
|
|
|
<hbox id="captchaFeedback" hidden="true">
|
|
|
|
|
<image class="statusIcon"/>
|
|
|
|
|
<label class="status" value=" "/>
|
|
|
|
|
</hbox>
|
|
|
|
|
<spacer flex="3"/>
|
|
|
|
|
</vbox>
|
2010-08-02 16:37:56 -07:00
|
|
|
|
</wizardpage>
|
|
|
|
|
|
2010-12-09 18:28:25 -08:00
|
|
|
|
<wizardpage id="addDevice"
|
|
|
|
|
label="&addDevice.title.label;"
|
|
|
|
|
onextra1="gSyncSetup.onSyncOptions()"
|
|
|
|
|
onpageshow="gSyncSetup.onPageShow()">
|
|
|
|
|
<description>
|
|
|
|
|
&addDevice.setup.description.label;
|
|
|
|
|
<label class="text-link"
|
|
|
|
|
value="&addDevice.showMeHow.label;"
|
|
|
|
|
href="https://services.mozilla.com/sync/help/easy-setup"/>
|
|
|
|
|
</description>
|
|
|
|
|
<description>&addDevice.setup.enterCode.label;</description>
|
|
|
|
|
<spacer flex="1"/>
|
|
|
|
|
<vbox align="center" flex="1">
|
|
|
|
|
<textbox id="easySetupPIN1"
|
|
|
|
|
class="pin"
|
|
|
|
|
value=""
|
|
|
|
|
disabled="true"
|
|
|
|
|
/>
|
|
|
|
|
<textbox id="easySetupPIN2"
|
|
|
|
|
class="pin"
|
|
|
|
|
value=""
|
|
|
|
|
disabled="true"
|
|
|
|
|
/>
|
|
|
|
|
<textbox id="easySetupPIN3"
|
|
|
|
|
class="pin"
|
|
|
|
|
value=""
|
|
|
|
|
disabled="true"
|
|
|
|
|
/>
|
|
|
|
|
</vbox>
|
|
|
|
|
<spacer flex="3"/>
|
|
|
|
|
<label class="text-link"
|
|
|
|
|
value="&addDevice.dontHaveDevice.label;"
|
|
|
|
|
onclick="gSyncSetup.manualSetup();"/>
|
|
|
|
|
</wizardpage>
|
|
|
|
|
|
|
|
|
|
<wizardpage id="existingAccount"
|
|
|
|
|
label="&setup.signInPage.title.label;"
|
2010-09-07 18:37:46 -07:00
|
|
|
|
onextra1="gSyncSetup.onSyncOptions()"
|
2010-08-02 16:37:56 -07:00
|
|
|
|
onpageshow="gSyncSetup.onPageShow()">
|
|
|
|
|
<grid>
|
|
|
|
|
<columns>
|
|
|
|
|
<column/>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
<column class="inputColumn" flex="1"/>
|
2010-08-02 16:37:56 -07:00
|
|
|
|
</columns>
|
|
|
|
|
<rows>
|
2010-09-15 06:55:04 -07:00
|
|
|
|
<row id="existingAccountRow" align="center">
|
|
|
|
|
<label id="existingAccountLabel"
|
2010-12-09 18:28:25 -08:00
|
|
|
|
value="&signIn.account2.label;"
|
|
|
|
|
accesskey="&signIn.account2.accesskey;"
|
2010-09-15 06:55:04 -07:00
|
|
|
|
control="existingAccount"/>
|
|
|
|
|
<textbox id="existingAccountName"
|
2010-08-02 16:37:56 -07:00
|
|
|
|
oninput="gSyncSetup.checkFields(event)"
|
|
|
|
|
onchange="gSyncSetup.checkFields(event)"/>
|
|
|
|
|
</row>
|
|
|
|
|
<row id="existingPasswordRow" align="center">
|
|
|
|
|
<label id="existingPasswordLabel"
|
|
|
|
|
value="&signIn.password.label;"
|
|
|
|
|
accesskey="&signIn.password.accesskey;"
|
|
|
|
|
control="existingPassword"/>
|
|
|
|
|
<textbox id="existingPassword"
|
|
|
|
|
type="password"
|
|
|
|
|
onkeyup="gSyncSetup.checkFields(event)"
|
|
|
|
|
onchange="gSyncSetup.checkFields(event)"/>
|
|
|
|
|
</row>
|
2010-12-09 18:28:25 -08:00
|
|
|
|
<row id="existingPasswordFeedbackRow" align="center" hidden="true">
|
|
|
|
|
<spacer/>
|
2010-08-02 16:37:56 -07:00
|
|
|
|
<hbox>
|
|
|
|
|
<image class="statusIcon"/>
|
2010-12-09 18:28:25 -08:00
|
|
|
|
<vbox>
|
|
|
|
|
<label class="status" value=" "/>
|
|
|
|
|
<label class="text-link"
|
|
|
|
|
value="&resetPassword.label;"
|
|
|
|
|
onclick="gSyncUtils.resetPassword(); return false;"/>
|
|
|
|
|
</vbox>
|
2010-08-02 16:37:56 -07:00
|
|
|
|
</hbox>
|
|
|
|
|
</row>
|
2010-12-09 18:28:25 -08:00
|
|
|
|
<row align="center">
|
|
|
|
|
<label control="existingServer"
|
|
|
|
|
value="&server.label;"/>
|
|
|
|
|
<menulist id="existingServer"
|
|
|
|
|
oncommand="gSyncSetup.onExistingServerCommand()"
|
|
|
|
|
oninput="gSyncSetup.onExistingServerInput()">
|
|
|
|
|
<menupopup>
|
|
|
|
|
<menuitem label="&serverType.main.label;"
|
|
|
|
|
value="main"/>
|
|
|
|
|
<menuitem label="&serverType.custom2.label;"
|
|
|
|
|
value="custom"/>
|
|
|
|
|
</menupopup>
|
|
|
|
|
</menulist>
|
|
|
|
|
</row>
|
|
|
|
|
<row id="existingServerFeedbackRow" align="center" hidden="true">
|
2010-08-02 16:37:56 -07:00
|
|
|
|
<spacer/>
|
2010-12-09 18:28:25 -08:00
|
|
|
|
<hbox>
|
|
|
|
|
<image class="statusIcon"/>
|
|
|
|
|
<vbox>
|
|
|
|
|
<label class="status" value=" "/>
|
|
|
|
|
</vbox>
|
|
|
|
|
</hbox>
|
2010-08-02 16:37:56 -07:00
|
|
|
|
</row>
|
|
|
|
|
</rows>
|
|
|
|
|
</grid>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
|
2010-12-09 18:28:25 -08:00
|
|
|
|
<groupbox>
|
|
|
|
|
<label id="existingPassphraseLabel"
|
|
|
|
|
value="&signIn.syncKey.label;"
|
|
|
|
|
accesskey="&signIn.syncKey.accesskey;"
|
|
|
|
|
control="existingPassphrase"/>
|
|
|
|
|
<textbox id="existingPassphrase"
|
|
|
|
|
onkeyup="gSyncSetup.onPassphraseKeyUp(event)"
|
|
|
|
|
onchange="gSyncSetup.checkFields()"/>
|
|
|
|
|
<hbox id="login-throbber" hidden="true">
|
|
|
|
|
<image/>
|
|
|
|
|
<label value="&verifying.label;"/>
|
2010-08-02 16:37:56 -07:00
|
|
|
|
</hbox>
|
2010-12-09 18:28:25 -08:00
|
|
|
|
<vbox align="left" id="existingPassphraseFeedbackRow" hidden="true">
|
|
|
|
|
<hbox>
|
|
|
|
|
<image class="statusIcon"/>
|
|
|
|
|
<vbox>
|
|
|
|
|
<label class="status" value=" "/>
|
|
|
|
|
<label class="text-link"
|
|
|
|
|
value="&lostSyncKey.label;"
|
|
|
|
|
onclick="gSyncUtils.resetPassphrase(); return false;"/>
|
|
|
|
|
</vbox>
|
|
|
|
|
</hbox>
|
|
|
|
|
</vbox>
|
|
|
|
|
</groupbox>
|
|
|
|
|
|
|
|
|
|
<vbox id="passphraseHelpBox">
|
|
|
|
|
<description>
|
|
|
|
|
&existingSyncKey.description;
|
|
|
|
|
<label class="text-link"
|
|
|
|
|
value="&addDevice.showMeHow.label;"
|
|
|
|
|
href="https://services.mozilla.com/sync/help/manual-setup"/>
|
|
|
|
|
</description>
|
2010-08-02 16:37:56 -07:00
|
|
|
|
</vbox>
|
|
|
|
|
</wizardpage>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
|
|
|
|
|
<wizardpage id="syncOptionsPage"
|
|
|
|
|
label="&setup.optionsPage.title;"
|
2010-08-02 16:37:56 -07:00
|
|
|
|
onpageshow="gSyncSetup.onPageShow()">
|
2010-09-07 18:37:46 -07:00
|
|
|
|
<groupbox id="syncOptions">
|
|
|
|
|
<grid>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
<columns>
|
|
|
|
|
<column/>
|
|
|
|
|
<column flex="1" style="-moz-margin-end: 2px"/>
|
|
|
|
|
</columns>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
<rows>
|
|
|
|
|
<row align="center">
|
|
|
|
|
<label value="&syncComputerName.label;"
|
|
|
|
|
accesskey="&syncComputerName.accesskey;"
|
|
|
|
|
control="syncComputerName"/>
|
|
|
|
|
<textbox id="syncComputerName" flex="1"
|
|
|
|
|
onchange="gSyncUtils.changeName(this)"/>
|
|
|
|
|
</row>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
<row>
|
|
|
|
|
<label value="&syncMy.label;" />
|
|
|
|
|
<vbox>
|
|
|
|
|
<checkbox label="&engine.bookmarks.label;"
|
|
|
|
|
accesskey="&engine.bookmarks.accesskey;"
|
|
|
|
|
id="engine.bookmarks"
|
|
|
|
|
checked="true"/>
|
|
|
|
|
<checkbox label="&engine.passwords.label;"
|
|
|
|
|
accesskey="&engine.passwords.accesskey;"
|
|
|
|
|
id="engine.passwords"
|
|
|
|
|
checked="true"/>
|
|
|
|
|
<checkbox label="&engine.prefs.label;"
|
|
|
|
|
accesskey="&engine.prefs.accesskey;"
|
|
|
|
|
id="engine.prefs"
|
|
|
|
|
checked="true"/>
|
|
|
|
|
<checkbox label="&engine.history.label;"
|
|
|
|
|
accesskey="&engine.history.accesskey;"
|
|
|
|
|
id="engine.history"
|
|
|
|
|
checked="true"/>
|
|
|
|
|
<checkbox label="&engine.tabs.label;"
|
|
|
|
|
accesskey="&engine.tabs.accesskey;"
|
|
|
|
|
id="engine.tabs"
|
|
|
|
|
checked="true"/>
|
|
|
|
|
</vbox>
|
|
|
|
|
</row>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
</rows>
|
|
|
|
|
</grid>
|
|
|
|
|
</groupbox>
|
|
|
|
|
|
|
|
|
|
<groupbox id="mergeOptions">
|
2010-08-02 16:37:56 -07:00
|
|
|
|
<radiogroup id="mergeChoiceRadio" pack="start">
|
2010-09-07 18:37:46 -07:00
|
|
|
|
<grid>
|
|
|
|
|
<columns>
|
|
|
|
|
<column/>
|
|
|
|
|
<column flex="1"/>
|
|
|
|
|
</columns>
|
|
|
|
|
<rows>
|
|
|
|
|
<row align="center">
|
|
|
|
|
<radio id="resetClient"
|
|
|
|
|
class="mergeChoiceButton"
|
|
|
|
|
aria-labelledby="resetClientLabel"/>
|
|
|
|
|
<label id="resetClientLabel" control="resetClient">
|
|
|
|
|
<html:strong>&choice2.merge.recommended.label;</html:strong>
|
|
|
|
|
&choice2.merge.main.label;
|
|
|
|
|
</label>
|
|
|
|
|
</row>
|
|
|
|
|
<row align="center">
|
|
|
|
|
<radio id="wipeClient"
|
|
|
|
|
class="mergeChoiceButton"
|
|
|
|
|
aria-labelledby="wipeClientLabel"/>
|
|
|
|
|
<label id="wipeClientLabel"
|
|
|
|
|
control="wipeClient"
|
|
|
|
|
value="&choice2.client.main.label;"/>
|
|
|
|
|
</row>
|
|
|
|
|
<row align="center">
|
|
|
|
|
<radio id="wipeRemote"
|
|
|
|
|
class="mergeChoiceButton"
|
|
|
|
|
aria-labelledby="wipeRemoteLabel"/>
|
|
|
|
|
<label id="wipeRemoteLabel"
|
|
|
|
|
control="wipeRemote"
|
|
|
|
|
value="&choice2.server.main.label;"/>
|
|
|
|
|
</row>
|
|
|
|
|
</rows>
|
|
|
|
|
</grid>
|
|
|
|
|
</radiogroup>
|
|
|
|
|
</groupbox>
|
2010-08-02 16:37:56 -07:00
|
|
|
|
</wizardpage>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
|
|
|
|
|
<wizardpage id="syncOptionsConfirm"
|
|
|
|
|
label="&setup.optionsConfirmPage.title;"
|
|
|
|
|
onpageshow="gSyncSetup.onPageShow()">
|
2010-08-02 16:37:56 -07:00
|
|
|
|
<deck id="chosenActionDeck">
|
2010-09-07 18:37:46 -07:00
|
|
|
|
<vbox id="chosenActionMerge" class="confirm">
|
2010-08-02 16:37:56 -07:00
|
|
|
|
<description class="normal">
|
|
|
|
|
&confirm.merge.label;
|
|
|
|
|
</description>
|
|
|
|
|
</vbox>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
<vbox id="chosenActionWipeClient" class="confirm">
|
2010-08-02 16:37:56 -07:00
|
|
|
|
<description class="normal">
|
2010-11-10 09:36:47 -08:00
|
|
|
|
&confirm.client2.label;
|
2010-08-02 16:37:56 -07:00
|
|
|
|
</description>
|
|
|
|
|
<separator class="thin"/>
|
|
|
|
|
<vbox id="dataList">
|
|
|
|
|
<label class="data indent" id="bookmarkCount"/>
|
|
|
|
|
<label class="data indent" id="historyCount"/>
|
|
|
|
|
<label class="data indent" id="passwordCount"/>
|
2010-11-10 09:36:47 -08:00
|
|
|
|
<label class="data indent" id="prefsWipe"
|
|
|
|
|
value="&engine.prefs.label;"/>
|
2010-08-02 16:37:56 -07:00
|
|
|
|
</vbox>
|
|
|
|
|
<separator class="thin"/>
|
|
|
|
|
<description class="normal">
|
|
|
|
|
&confirm.client.moreinfo.label;
|
|
|
|
|
</description>
|
|
|
|
|
</vbox>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
<vbox id="chosenActionWipeServer" class="confirm">
|
2010-08-02 16:37:56 -07:00
|
|
|
|
<description class="normal">
|
2010-11-10 09:36:47 -08:00
|
|
|
|
&confirm.server2.label;
|
2010-08-02 16:37:56 -07:00
|
|
|
|
</description>
|
|
|
|
|
<separator class="thin"/>
|
|
|
|
|
<vbox id="clientList">
|
|
|
|
|
</vbox>
|
|
|
|
|
</vbox>
|
|
|
|
|
</deck>
|
|
|
|
|
</wizardpage>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
|
|
|
|
|
<wizardpage label="&setup.successPage.title;"
|
2010-08-02 16:37:56 -07:00
|
|
|
|
id="successfulSetup"
|
2010-09-07 18:37:46 -07:00
|
|
|
|
onextra1="gSyncSetup.onSyncOptions()"
|
2010-08-02 16:37:56 -07:00
|
|
|
|
onpageshow="gSyncSetup.onPageShow()">
|
2010-09-07 18:37:46 -07:00
|
|
|
|
<vbox align="center">
|
|
|
|
|
<image id="successPageIcon"/>
|
|
|
|
|
</vbox>
|
|
|
|
|
<separator/>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
<description class="normal">
|
|
|
|
|
<html:span id="firstSyncAction">replace me</html:span>
|
|
|
|
|
<html:strong id="firstSyncActionWarning">replace me</html:strong>
|
|
|
|
|
<html:span id="firstSyncActionChange">replace me</html:span>
|
|
|
|
|
</description>
|
2010-08-02 16:37:56 -07:00
|
|
|
|
<description>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
&continueUsing.label;
|
2010-08-02 16:37:56 -07:00
|
|
|
|
</description>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
<separator flex="1"/>
|
2010-08-02 16:37:56 -07:00
|
|
|
|
</wizardpage>
|
|
|
|
|
</wizard>
|
|
|
|
|
|