tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

builtinBridgeDialog.xhtml (3414B)


      1 <?xml version="1.0" encoding="UTF-8"?>
      2 
      3 <?csp default-src chrome: ?>
      4 
      5 <window
      6  type="child"
      7  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
      8  xmlns:html="http://www.w3.org/1999/xhtml"
      9  data-l10n-id="built-in-dialog-title"
     10 >
     11  <dialog id="torPreferences-builtinBridge-dialog" buttons="accept,cancel">
     12    <linkset>
     13      <html:link rel="stylesheet" href="chrome://global/skin/global.css" />
     14      <html:link
     15        rel="stylesheet"
     16        href="chrome://browser/skin/preferences/preferences.css"
     17      />
     18      <html:link
     19        rel="stylesheet"
     20        href="chrome://browser/content/torpreferences/torPreferences.css"
     21      />
     22 
     23      <html:link rel="localization" href="branding/brand.ftl" />
     24      <html:link rel="localization" href="toolkit/global/tor-browser.ftl" />
     25    </linkset>
     26 
     27    <script src="chrome://browser/content/torpreferences/builtinBridgeDialog.js" />
     28 
     29    <description data-l10n-id="built-in-dialog-introduction"></description>
     30    <radiogroup id="torPreferences-builtinBridge-typeSelection">
     31      <vbox class="builtin-bridges-option">
     32        <hbox>
     33          <!-- The radio option is described by both the "Current bridge" label
     34          - and the full description. If the "Connected" label is hidden, then
     35           - only the latter description should contribute. -->
     36          <radio
     37            value="obfs4"
     38            data-l10n-id="built-in-dialog-obfs4-radio-option2"
     39          />
     40          <html:span class="bridge-status-badge">
     41            <html:div class="bridge-status-icon"></html:div>
     42            <html:span
     43              class="torPreferences-current-bridge-label"
     44              data-l10n-id="built-in-dialog-current-bridge-label"
     45            >
     46            </html:span>
     47          </html:span>
     48        </hbox>
     49        <html:div
     50          class="indent builtin-bridges-option-description"
     51          data-l10n-id="tor-bridges-built-in-obfs4-description"
     52        >
     53        </html:div>
     54      </vbox>
     55      <vbox class="builtin-bridges-option">
     56        <hbox>
     57          <radio
     58            value="snowflake"
     59            data-l10n-id="built-in-dialog-snowflake-radio-option2"
     60          />
     61          <html:span class="bridge-status-badge">
     62            <html:div class="bridge-status-icon"></html:div>
     63            <html:span
     64              class="torPreferences-current-bridge-label"
     65              data-l10n-id="built-in-dialog-current-bridge-label"
     66            >
     67            </html:span>
     68          </html:span>
     69        </hbox>
     70        <html:div
     71          class="indent builtin-bridges-option-description"
     72          data-l10n-id="tor-bridges-built-in-snowflake-description"
     73        >
     74        </html:div>
     75      </vbox>
     76      <vbox class="builtin-bridges-option">
     77        <hbox>
     78          <radio
     79            value="meek"
     80            data-l10n-id="built-in-dialog-meek-radio-option2"
     81          />
     82          <html:span class="bridge-status-badge">
     83            <html:div class="bridge-status-icon"></html:div>
     84            <html:span
     85              class="torPreferences-current-bridge-label"
     86              data-l10n-id="built-in-dialog-current-bridge-label"
     87            >
     88            </html:span>
     89          </html:span>
     90        </hbox>
     91        <html:div
     92          class="indent builtin-bridges-option-description"
     93          data-l10n-id="tor-bridges-built-in-meek-description"
     94        >
     95        </html:div>
     96      </vbox>
     97    </radiogroup>
     98  </dialog>
     99 </window>