diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-07-18 08:24:24 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-07-18 08:24:24 +0200 |
commit | fc61780b35af913801d72086456f493f63197da6 (patch) | |
tree | f85891288a7bd988da9f0f15ae64e5c63f00d493 /application/basilisk/components/preferences/translation.xul | |
parent | 69f7f9e5f1475891ce11cc4f431692f965b0cd30 (diff) | |
parent | 50d3e596bbe89c95615f96eb71f6bc5be737a1db (diff) | |
download | UXP-9ccb235f04529c1ec345d87dad6521cb567d20bb.tar UXP-9ccb235f04529c1ec345d87dad6521cb567d20bb.tar.gz UXP-9ccb235f04529c1ec345d87dad6521cb567d20bb.tar.lz UXP-9ccb235f04529c1ec345d87dad6521cb567d20bb.tar.xz UXP-9ccb235f04529c1ec345d87dad6521cb567d20bb.zip |
Merge commit '50d3e596bbe89c95615f96eb71f6bc5be737a1db' into Basilisk-releasev2018.07.18
# Conflicts:
# browser/app/profile/firefox.js
# browser/components/preferences/jar.mn
Diffstat (limited to 'application/basilisk/components/preferences/translation.xul')
-rw-r--r-- | application/basilisk/components/preferences/translation.xul | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/application/basilisk/components/preferences/translation.xul b/application/basilisk/components/preferences/translation.xul new file mode 100644 index 000000000..b5dfd1b9b --- /dev/null +++ b/application/basilisk/components/preferences/translation.xul @@ -0,0 +1,88 @@ +<?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"?> + +<!DOCTYPE dialog SYSTEM "chrome://browser/locale/preferences/translation.dtd"> + +<window id="TranslationDialog" class="windowDialog" + windowtype="Browser:TranslationExceptions" + title="&window.title;" + xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" + style="width: &window.width;;" + onload="gTranslationExceptions.onLoad();" + onunload="gTranslationExceptions.uninit();" + persist="screenX screenY width height" + onkeypress="gTranslationExceptions.onWindowKeyPress(event);"> + + <script src="chrome://browser/content/preferences/translation.js"/> + + <stringbundle id="bundlePreferences" + src="chrome://browser/locale/preferences/preferences.properties"/> + + <keyset> + <key key="&windowClose.key;" modifiers="accel" oncommand="window.close();"/> + </keyset> + + <vbox class="largeDialogContainer"> + <vbox class="contentPane" flex="1"> + <label id="languagesLabel" control="permissionsTree">&noTranslationForLanguages.label;</label> + <separator class="thin"/> + <tree id="languagesTree" flex="1" style="height: 12em;" + hidecolumnpicker="true" + onkeypress="gTranslationExceptions.onLanguageKeyPress(event)" + onselect="gTranslationExceptions.onLanguageSelected();"> + <treecols> + <treecol id="languageCol" label="&treehead.languageName.label;" flex="1"/> + </treecols> + <treechildren/> + </tree> + </vbox> + <hbox align="end"> + <hbox class="actionButtons" flex="1"> + <button id="removeLanguage" disabled="true" + accesskey="&removeLanguage.accesskey;" + icon="remove" label="&removeLanguage.label;" + oncommand="gTranslationExceptions.onLanguageDeleted();"/> + <button id="removeAllLanguages" + icon="clear" label="&removeAllLanguages.label;" + accesskey="&removeAllLanguages.accesskey;" + oncommand="gTranslationExceptions.onAllLanguagesDeleted();"/> + <spacer flex="1"/> + </hbox> + </hbox> + <separator/> + <vbox class="contentPane" flex="1"> + <label id="languagesLabel" control="permissionsTree">&noTranslationForSites.label;</label> + <separator class="thin"/> + <tree id="sitesTree" flex="1" style="height: 12em;" + hidecolumnpicker="true" + onkeypress="gTranslationExceptions.onSiteKeyPress(event)" + onselect="gTranslationExceptions.onSiteSelected();"> + <treecols> + <treecol id="siteCol" label="&treehead.siteName.label;" flex="1"/> + </treecols> + <treechildren/> + </tree> + </vbox> + </vbox> + <hbox align="end"> + <hbox class="actionButtons" flex="1"> + <button id="removeSite" disabled="true" + accesskey="&removeSite.accesskey;" + icon="remove" label="&removeSite.label;" + oncommand="gTranslationExceptions.onSiteDeleted();"/> + <button id="removeAllSites" + icon="clear" label="&removeAllSites.label;" + accesskey="&removeAllSites.accesskey;" + oncommand="gTranslationExceptions.onAllSitesDeleted();"/> + <spacer flex="1"/> + <button oncommand="close();" icon="close" + label="&button.close.label;" accesskey="&button.close.accesskey;"/> + </hbox> + </hbox> +</window> |