1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
# 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/.
<html:template id="paneQrExport" xmlns="http://www.w3.org/1999/xhtml">
<div class="subcategory" data-category="paneQrExport">
<h1 data-l10n-id="qr-export-pane-header"></h1>
</div>
# groupbox and xul label for search functionality.
<xul:groupbox
id="qrExportContent"
data-category="paneQrExport"
data-hidden-from-search="true"
>
<xul:label class="search-header" hidden="true">
<h2 data-l10n-id="qr-export-pane-header"></h2>
</xul:label>
<section id="qrExportIntro">
<p data-l10n-id="qr-export-description"></p>
<p
class="qr-small"
data-l10n-id="qr-export-get-app"
>
<a
data-l10n-name="app-link"
href="https://play.google.com/store/apps/details?id=net.thunderbird.android&referrer=utm_campaign%3Dcross_device_import%26utm_medium%3Ddesktop%26utm_source%3Dthunderbird%26utm_content%3Dlink"
></a>
</p>
<h2 data-l10n-id="qr-export-create"></h2>
<form id="qrExportIntroForm" class="qr-panel" action="">
<h3 data-l10n-id="qr-export-select-accounts"></h3>
<section class="qr-subpanel">
<header class="inset">
<h4
id="qrExportAccountsLegend"
class="inset-icon"
data-l10n-id="qr-export-accounts-legend"
></h4>
<button
id="qrExportSelectAll"
type="button"
disabled="disabled"
data-l10n-id="qr-export-select-all-accounts"
></button>
</header>
<ul id="qrExportAccountsList" class="inset"></ul>
<p
id="qrExportNoAccounts"
data-l10n-id="qr-export-no-accounts"
class="qr-small inset"
>
<a
data-l10n-name="account-support-link"
href="https://support.thunderbird.net/kb/thunderbird-android-import"
></a>
</p>
</section>
<section id="qrExportPasswordsSection">
<h4
id="qrExportSecurityLegend"
class="inset inset-icon"
data-l10n-id="qr-export-security-legend"
></h4>
<div class="inset">
<input
id="qrExportIncludePasswords"
type="checkbox"
checked="checked"
/><label
for="qrExportIncludePasswords"
data-l10n-id="qr-export-include-passwords"
></label>
</div>
<p
id="qrExportOauthWarning"
class="inset inset-icon"
data-l10n-id="qr-export-oauth-warning"
hidden="hidden"
></p>
<p
id="qrExportSecurityHint"
class="inset inset-icon"
data-l10n-id="qr-export-security-hint"
></p>
<p data-l10n-id="qr-export-security-warning" class="qr-warn inset"></p>
</section>
<div class="qr-nav">
<button
id="qrExportStart"
type="submit"
disabled="disabled"
data-l10n-id="qr-export-start-export"
class="end"
></button>
</div>
</form>
</section>
<section id="qrExportCodes" hidden="hidden">
<p id="qrExportScanDescription"></p>
<ol class="qr-panel">
<li data-l10n-id="qr-export-scan-step1"></li>
<li data-l10n-id="qr-export-scan-step2"></li>
<li data-l10n-id="qr-export-scan-step3"></li>
<li data-l10n-id="qr-export-scan-step4-revision"></li>
</ol>
<section class="qr-panel">
<qr-code-wizard id="qrCodeWizard"></qr-code-wizard>
<div class="qr-nav">
<button
id="qrExportCodesBack"
type="button"
data-l10n-id="qr-export-back"
></button>
<button
id="qrExportCodesNext"
type="button"
class="primary"
data-l10n-id="qr-export-next"
></button>
</div>
</section>
</section>
<section id="qrExportSummary" hidden="hidden">
<p data-l10n-id="qr-export-summary-description"></p>
<div class="qr-panel">
<h2 data-l10n-id="qr-export-summary-title"></h2>
<ul id="qrExportSummaryList">
<li id="qrExportSummaryQrCodes"></li>
<li>
<span id="qrExportSummaryAccounts"></span>
<ul id="qrExportSummaryAccountList"></ul>
</li>
<li id="qrExportSummaryPasswords"></li>
</ul>
</div>
<button
id="qrExportRestart"
data-l10n-id="qr-export-more-accounts"
type="button"
></button>
</section>
</xul:groupbox>
</html:template>
<html:template id="qrAccountItem" xmlns="http://www.w3.org/1999/xhtml">
<li>
<label>
<input type="checkbox" checked="checked" />
</label>
</li>
</html:template>
<html:template id="qrCodeWizardTemplate" xmlns="http://www.w3.org/1999/xhtml">
<figure>
<figcaption></figcaption>
<img alt="" src="" />
</figure>
</html:template>
|