File: translation.xul

package info (click to toggle)
thunderbird 1%3A60.9.0-1~deb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,339,492 kB
  • sloc: cpp: 5,457,040; ansic: 2,360,385; python: 596,167; asm: 340,963; java: 326,296; xml: 258,830; sh: 84,445; makefile: 23,705; perl: 17,317; objc: 3,768; yacc: 1,766; ada: 1,681; lex: 1,364; pascal: 1,264; cs: 879; exp: 527; php: 436; lisp: 258; ruby: 153; awk: 152; sed: 53; csh: 27
file content (88 lines) | stat: -rw-r--r-- 3,751 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
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">&noTranslationForLanguages2.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">&noTranslationForSites2.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.siteName2.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>