browserLanguages.xhtml (2521B)
1 <?xml version="1.0"?> 2 3 <!-- This Source Code Form is subject to the terms of the Mozilla Public 4 - License, v. 2.0. If a copy of the MPL was not distributed with this 5 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 6 7 <?csp default-src chrome:; style-src chrome: 'unsafe-inline'; ?> 8 9 <window 10 type="child" 11 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 12 xmlns:html="http://www.w3.org/1999/xhtml" 13 data-l10n-id="browser-languages-window2" 14 data-l10n-attrs="title, style" 15 > 16 <dialog id="BrowserLanguagesDialog" buttons="accept,cancel"> 17 <linkset> 18 <html:link rel="stylesheet" href="chrome://global/skin/global.css" /> 19 <html:link 20 rel="stylesheet" 21 href="chrome://browser/skin/preferences/preferences.css" 22 /> 23 24 <html:link rel="localization" href="branding/brand.ftl" /> 25 <html:link rel="localization" href="browser/preferences/languages.ftl" /> 26 </linkset> 27 28 <script src="chrome://browser/content/utilityOverlay.js" /> 29 <script src="chrome://global/content/preferencesBindings.js" /> 30 <script src="chrome://browser/content/preferences/dialogs/browserLanguages.js" /> 31 32 <description data-l10n-id="browser-languages-description" /> 33 34 <box class="languages-grid"> 35 <richlistbox id="selectedLocales" /> 36 <vbox> 37 <button 38 id="up" 39 class="action-button" 40 disabled="true" 41 data-l10n-id="languages-customize-moveup" 42 /> 43 <button 44 id="down" 45 class="action-button" 46 disabled="true" 47 data-l10n-id="languages-customize-movedown" 48 /> 49 <button 50 id="remove" 51 class="action-button" 52 disabled="true" 53 data-l10n-id="languages-customize-remove" 54 /> 55 </vbox> 56 57 <menulist 58 id="availableLocales" 59 class="available-locales-list" 60 data-l10n-id="browser-languages-select-language" 61 data-l10n-attrs="placeholder,label" 62 > 63 <menupopup /> 64 </menulist> 65 <button 66 id="add" 67 class="add-browser-language action-button" 68 data-l10n-id="languages-customize-add" 69 disabled="true" 70 /> 71 </box> 72 <hbox 73 id="warning-message" 74 class="message-bar message-bar-warning" 75 hidden="true" 76 > 77 <html:img class="message-bar-icon" /> 78 <description 79 class="message-bar-description" 80 data-l10n-id="browser-languages-error" 81 /> 82 </hbox> 83 </dialog> 84 </window>