mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-07 03:38:51 +02:00
Differential Revision: https://phabricator.services.mozilla.com/D53125 --HG-- rename : browser/components/preferences/applicationManager.xul => browser/components/preferences/applicationManager.xhtml rename : browser/components/preferences/blocklists.xul => browser/components/preferences/blocklists.xhtml rename : browser/components/preferences/browserLanguages.xul => browser/components/preferences/browserLanguages.xhtml rename : browser/components/preferences/clearSiteData.xul => browser/components/preferences/clearSiteData.xhtml rename : browser/components/preferences/colors.xul => browser/components/preferences/colors.xhtml rename : browser/components/preferences/connection.xul => browser/components/preferences/connection.xhtml rename : browser/components/preferences/containers.xul => browser/components/preferences/containers.xhtml rename : browser/components/preferences/fonts.xul => browser/components/preferences/fonts.xhtml rename : browser/components/preferences/in-content/containers.inc.xul => browser/components/preferences/in-content/containers.inc.xhtml rename : browser/components/preferences/in-content/fxaPairDevice.xul => browser/components/preferences/in-content/fxaPairDevice.xhtml rename : browser/components/preferences/in-content/home.inc.xul => browser/components/preferences/in-content/home.inc.xhtml rename : browser/components/preferences/in-content/main.inc.xul => browser/components/preferences/in-content/main.inc.xhtml rename : browser/components/preferences/in-content/preferences.xul => browser/components/preferences/in-content/preferences.xhtml rename : browser/components/preferences/in-content/privacy.inc.xul => browser/components/preferences/in-content/privacy.inc.xhtml rename : browser/components/preferences/in-content/search.inc.xul => browser/components/preferences/in-content/search.inc.xhtml rename : browser/components/preferences/in-content/searchResults.inc.xul => browser/components/preferences/in-content/searchResults.inc.xhtml rename : browser/components/preferences/in-content/sync.inc.xul => browser/components/preferences/in-content/sync.inc.xhtml rename : browser/components/preferences/in-content/syncChooseWhatToSync.xul => browser/components/preferences/in-content/syncChooseWhatToSync.xhtml rename : browser/components/preferences/languages.xul => browser/components/preferences/languages.xhtml rename : browser/components/preferences/permissions.xul => browser/components/preferences/permissions.xhtml rename : browser/components/preferences/sanitize.xul => browser/components/preferences/sanitize.xhtml rename : browser/components/preferences/selectBookmark.xul => browser/components/preferences/selectBookmark.xhtml rename : browser/components/preferences/siteDataRemoveSelected.xul => browser/components/preferences/siteDataRemoveSelected.xhtml rename : browser/components/preferences/siteDataSettings.xul => browser/components/preferences/siteDataSettings.xhtml rename : browser/components/preferences/sitePermissions.xul => browser/components/preferences/sitePermissions.xhtml rename : browser/components/preferences/translation.xul => browser/components/preferences/translation.xhtml rename : toolkit/mozapps/preferences/changemp.xul => toolkit/mozapps/preferences/changemp.xhtml rename : toolkit/mozapps/preferences/removemp.xul => toolkit/mozapps/preferences/removemp.xhtml rename : toolkit/mozapps/update/content/history.xul => toolkit/mozapps/update/content/history.xhtml extra : moz-landing-system : lando
89 lines
3.5 KiB
HTML
89 lines
3.5 KiB
HTML
<?xml version="1.0"?>
|
|
|
|
<!-- 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/. -->
|
|
|
|
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://browser/skin/preferences/preferences.css" type="text/css"?>
|
|
|
|
<window id="TranslationDialog"
|
|
windowtype="Browser:TranslationExceptions"
|
|
data-l10n-id="translation-window"
|
|
data-l10n-attrs="title, style"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
|
onload="gTranslationExceptions.onLoad();"
|
|
onunload="gTranslationExceptions.uninit();"
|
|
persist="screenX screenY width height"
|
|
onkeypress="gTranslationExceptions.onWindowKeyPress(event);">
|
|
|
|
<linkset>
|
|
<html:link rel="localization" href="browser/preferences/translation.ftl"/>
|
|
</linkset>
|
|
|
|
<script src="chrome://browser/content/preferences/translation.js"/>
|
|
|
|
<keyset>
|
|
<key data-l10n-id="translation-close-key" modifiers="accel" oncommand="window.close();"/>
|
|
</keyset>
|
|
|
|
<vbox class="contentPane">
|
|
<vbox flex="1">
|
|
<label id="languagesLabel"
|
|
data-l10n-id="translation-languages-disabled-desc"
|
|
control="permissionsTree"/>
|
|
<separator class="thin"/>
|
|
<tree id="languagesTree" flex="1" style="height: 12em;"
|
|
hidecolumnpicker="true"
|
|
onkeypress="gTranslationExceptions.onLanguageKeyPress(event)"
|
|
onselect="gTranslationExceptions.onLanguageSelected();">
|
|
<treecols>
|
|
<treecol id="languageCol" data-l10n-id="translation-languages-column" flex="1"/>
|
|
</treecols>
|
|
<treechildren/>
|
|
</tree>
|
|
</vbox>
|
|
<hbox class="actionButtons" align="end">
|
|
<button id="removeLanguage" disabled="true"
|
|
data-l10n-id="translation-languages-button-remove"
|
|
icon="remove"
|
|
oncommand="gTranslationExceptions.onLanguageDeleted();"/>
|
|
<button id="removeAllLanguages"
|
|
data-l10n-id="translation-languages-button-remove-all"
|
|
icon="clear"
|
|
oncommand="gTranslationExceptions.onAllLanguagesDeleted();"/>
|
|
<spacer flex="1"/>
|
|
</hbox>
|
|
<separator/>
|
|
<vbox flex="1">
|
|
<label id="languagesLabel"
|
|
data-l10n-id="translation-sites-disabled-desc"
|
|
control="permissionsTree"/>
|
|
<separator class="thin"/>
|
|
<tree id="sitesTree" flex="1" style="height: 12em;"
|
|
hidecolumnpicker="true"
|
|
onkeypress="gTranslationExceptions.onSiteKeyPress(event)"
|
|
onselect="gTranslationExceptions.onSiteSelected();">
|
|
<treecols>
|
|
<treecol id="siteCol" data-l10n-id="translation-sites-column" flex="1"/>
|
|
</treecols>
|
|
<treechildren/>
|
|
</tree>
|
|
</vbox>
|
|
</vbox>
|
|
|
|
<hbox class="actionButtons" align="end">
|
|
<button id="removeSite" disabled="true"
|
|
data-l10n-id="translation-sites-button-remove"
|
|
icon="remove"
|
|
oncommand="gTranslationExceptions.onSiteDeleted();"/>
|
|
<button id="removeAllSites"
|
|
data-l10n-id="translation-sites-button-remove-all"
|
|
icon="clear"
|
|
oncommand="gTranslationExceptions.onAllSitesDeleted();"/>
|
|
<spacer flex="1"/>
|
|
<button oncommand="window.close();" icon="close"
|
|
data-l10n-id="translation-button-close"/>
|
|
</hbox>
|
|
</window>
|