toolkit/mozapps/extensions/test/addons/test_locale/install.rdf

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 <?xml version="1.0"?>
     3 <RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
     4      xmlns:em="http://www.mozilla.org/2004/em-rdf#">
     6   <Description about="urn:mozilla:install-manifest">
     7     <em:id>addon1@tests.mozilla.org</em:id>
     8     <em:version>1.0</em:version>
    10     <em:targetApplication>
    11       <Description>
    12         <em:id>xpcshell@tests.mozilla.org</em:id>
    13         <em:minVersion>1</em:minVersion>
    14         <em:maxVersion>1</em:maxVersion>
    15       </Description>
    16     </em:targetApplication>
    18     <em:localized>
    19       <Description em:locale="fr-FR">
    20         <em:locale/>                    <!-- Should be ignored and not fail -->
    21         <em:name>fr-FR Name</em:name>
    22         <em:description>fr-FR Description</em:description>
    23         <em:contributor>Fr Contributor 1</em:contributor>
    24         <em:contributor>Fr Contributor 2</em:contributor>
    25         <em:contributor>Fr Contributor 3</em:contributor>
    26       </Description>
    27     </em:localized>
    29     <em:localized>
    30       <Description em:locale="de-DE">
    31         <em:name>de-DE Name</em:name>
    32       </Description>
    33     </em:localized>
    35     <em:localized>
    36       <Description em:locale="es-ES">
    37         <em:name>es-ES Name</em:name>
    38         <em:description>es-ES Description</em:description>
    39       </Description>
    40     </em:localized>
    42     <!-- Subsequent definitions for the same locale should be ignored -->
    43     <em:localized>
    44       <Description em:locale="fr-FR">
    45         <em:name>Repeated locale</em:name>
    46       </Description>
    47     </em:localized>
    49     <!-- Properties with no listed locale should be ignored -->
    50     <em:localized>
    51       <Description>
    52         <em:name>Missing locale</em:name>
    53       </Description>
    54     </em:localized>
    56     <!-- Front End MetaData -->
    57     <em:name>Fallback Name</em:name>
    58     <em:description>Fallback Description</em:description>
    60   </Description>
    61 </RDF>

mercurial