summaryrefslogtreecommitdiffstats
path: root/toolkit/mozapps/extensions/test/addons/test_locale/install.rdf
blob: d8d027b93ff52ec98530420d22ab3d3bbf822ae8 (plain)
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
<?xml version="1.0"?>

<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
     xmlns:em="http://www.mozilla.org/2004/em-rdf#">

  <Description about="urn:mozilla:install-manifest">
    <em:id>addon1@tests.mozilla.org</em:id>
    <em:version>1.0</em:version>

    <em:targetApplication>
      <Description>
        <em:id>xpcshell@tests.mozilla.org</em:id>
        <em:minVersion>1</em:minVersion>
        <em:maxVersion>1</em:maxVersion>
      </Description>
    </em:targetApplication>

    <em:localized>
      <Description em:locale="fr-FR">
        <em:locale/>                    <!-- Should be ignored and not fail -->
        <em:name>fr-FR Name</em:name>
        <em:description>fr-FR Description</em:description>
        <em:contributor>Fr Contributor 1</em:contributor>
        <em:contributor>Fr Contributor 2</em:contributor>
        <em:contributor>Fr Contributor 3</em:contributor>
      </Description>
    </em:localized>

    <em:localized>
      <Description em:locale="de-DE">
        <em:name>de-DE Name</em:name>
      </Description>
    </em:localized>

    <em:localized>
      <Description em:locale="es-ES">
        <em:name>es-ES Name</em:name>
        <em:description>es-ES Description</em:description>
      </Description>
    </em:localized>

    <!-- Subsequent definitions for the same locale should be ignored -->
    <em:localized>
      <Description em:locale="fr-FR">
        <em:name>Repeated locale</em:name>
      </Description>
    </em:localized>

    <!-- Properties with no listed locale should be ignored -->
    <em:localized>
      <Description>
        <em:name>Missing locale</em:name>
      </Description>
    </em:localized>

    <!-- Front End MetaData -->
    <em:name>Fallback Name</em:name>
    <em:description>Fallback Description</em:description>

  </Description>
</RDF>