fullPageTranslationsPanel.inc.xhtml (6285B)
1 <!-- This Source Code Form is subject to the terms of the Mozilla Public 2 - License, v. 2.0. If a copy of the MPL was not distributed with this 3 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 4 5 <html:template id="template-translations-panel"> 6 <panel id="full-page-translations-panel" 7 class="panel-no-padding translations-panel" 8 type="arrow" 9 role="alertdialog" 10 noautofocus="true" 11 orient="vertical"> 12 <panelmultiview id="full-page-translations-panel-multiview" 13 mainViewId="full-page-translations-panel-view-default"> 14 <panelview id="full-page-translations-panel-view-default" 15 class="PanelUI-subView translations-panel-view" 16 role="document" 17 aria-labelledby="full-page-translations-panel-header" 18 mainview-with-header="true" 19 has-custom-header="true"> 20 <hbox class="panel-header translations-panel-header"> 21 <html:h1 class="translations-panel-header-wrapper"> 22 <html:span id="full-page-translations-panel-header"></html:span> 23 </html:h1> 24 <toolbarbutton id="translations-panel-settings" 25 class="panel-info-button translations-panel-settings-gear-icon" 26 data-l10n-id="translations-panel-settings-button" 27 closemenu="none"/> 28 </hbox> 29 30 <vbox class="translations-panel-content"> 31 <html:div id="full-page-translations-panel-intro"> 32 <html:span data-l10n-id="translations-panel-intro-description"></html:span> 33 <html:a id="full-page-translations-panel-intro-learn-more-link" 34 is="moz-support-link" 35 data-l10n-id="translations-panel-learn-more-link" 36 support-page="website-translation" /> 37 </html:div> 38 <vbox id="full-page-translations-panel-lang-selection"> 39 <label data-l10n-id="translations-panel-from-label" id="full-page-translations-panel-from-label"></label> 40 <menulist id="full-page-translations-panel-from" 41 flex="1" 42 value="detect" 43 size="large" 44 aria-labelledby="full-page-translations-panel-from-label"> 45 <menupopup id="full-page-translations-panel-from-menupopup" 46 class="translations-panel-language-menupopup-from"> 47 <menuitem data-l10n-id="translations-panel-choose-language" value=""></menuitem> 48 <!-- The list of <menuitem> will be dynamically inserted. --> 49 </menupopup> 50 </menulist> 51 52 <label data-l10n-id="translations-panel-to-label" id="full-page-translations-panel-to-label"></label> 53 <menulist id="full-page-translations-panel-to" 54 flex="1" 55 value="detect" 56 size="large" 57 aria-labelledby="full-page-translations-panel-to-label"> 58 <menupopup id="full-page-translations-panel-to-menupopup" 59 class="translations-panel-language-menupopup-to"> 60 <menuitem data-l10n-id="translations-panel-choose-language" value=""></menuitem> 61 <!-- The list of <menuitem> will be dynamically inserted. --> 62 </menupopup> 63 </menulist> 64 </vbox> 65 66 <vbox id="full-page-translations-panel-error" hidden="true"> 67 <hbox class="translations-panel-error-header"> 68 <image class="translations-panel-error-icon translations-panel-error-header-icon" /> 69 <description id="full-page-translations-panel-error-message"></description> 70 </hbox> 71 <hbox id="full-page-translations-panel-error-message-hint"></hbox> 72 <hbox pack="end"> 73 <button id="full-page-translations-panel-translate-hint-action" /> 74 </hbox> 75 </vbox> 76 </vbox> 77 78 <html:moz-button-group class="panel-footer translations-panel-footer translations-panel-button-group"> 79 <button id="full-page-translations-panel-restore-button" 80 class="footer-button" 81 data-l10n-id="translations-panel-restore-button"> 82 </button> 83 <button id="full-page-translations-panel-cancel" 84 class="footer-button" 85 data-l10n-id="translations-panel-translate-cancel"> 86 </button> 87 <button id="full-page-translations-panel-translate" 88 class="footer-button" 89 data-l10n-id="translations-panel-translate-button" 90 default="true"> 91 </button> 92 </html:moz-button-group> 93 </panelview> 94 95 <panelview id="full-page-translations-panel-view-unsupported-language" 96 class="PanelUI-subView translations-panel-view" 97 role="document" 98 aria-labelledby="full-page-translations-panel-unsupported-language-header" 99 has-custom-header="true"> 100 <hbox class="panel-header translations-panel-header"> 101 <image class="translations-panel-error-icon" /> 102 <html:h1 id="full-page-translations-panel-unsupported-language-header"> 103 <html:span data-l10n-id="translations-panel-error-unsupported"></html:span> 104 </html:h1> 105 </hbox> 106 107 <vbox class="translations-panel-content"> 108 <html:div> 109 <html:span id="full-page-translations-panel-error-unsupported-hint"></html:span> 110 <html:a id="full-page-translations-panel-unsupported-learn-more-link" 111 is="moz-support-link" 112 data-l10n-id="translations-panel-learn-more-link" 113 support-page="website-translation" /> 114 </html:div> 115 </vbox> 116 117 <html:moz-button-group class="panel-footer translations-panel-footer"> 118 <button id="full-page-translations-panel-change-source-language" 119 class="footer-button" 120 data-l10n-id="translations-panel-error-change-button"> 121 </button> 122 <button id="full-page-translations-panel-dismiss-error" 123 class="footer-button" 124 data-l10n-id="translations-panel-error-dismiss-button" 125 default="true"> 126 </button> 127 </html:moz-button-group> 128 </panelview> 129 </panelmultiview> 130 </panel> 131 </html:template>