diff options
author | drebs <drebs@leap.se> | 2013-11-05 15:12:33 -0200 |
---|---|---|
committer | drebs <drebs@leap.se> | 2013-11-05 15:12:33 -0200 |
commit | 2a71d0c9b74c69f8c195f219a82b689685b6d110 (patch) | |
tree | 6791fd14b2ae80861bdd5abc357aec9c42bf16c3 /install.rdf.template | |
parent | 67da5669f7a7ef88849d810109f3095bbf6f2ddd (diff) | |
parent | ff4b0a8fec805ff7b93354f8e8175f91f8de3bb5 (diff) |
Merge branch 'release-0.0.2'0.0.2
Diffstat (limited to 'install.rdf.template')
-rw-r--r-- | install.rdf.template | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/install.rdf.template b/install.rdf.template new file mode 100644 index 0000000..e447a3e --- /dev/null +++ b/install.rdf.template @@ -0,0 +1,61 @@ +<?xml version="1.0"?> +<!-- +Bitmask XUL extension +Copyright © 2013 The LEAP Encryption Access Project + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see <http://www.gnu.org/licenses/>. +--> + + +<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>bitmask-thunderbird@leap.se</em:id> + <em:name>Bitmask Thunderbird Extension</em:name> + <em:version>__VERSION__</em:version> + <em:creator>LEAP developers</em:creator> + <em:type>2</em:type> <!-- type=extension --> + + <em:targetApplication> + <Description> + <em:id>{3550f703-e582-4d05-9a08-453d09bdfdc6}</em:id> + <em:minVersion>24.0</em:minVersion> + <em:maxVersion>24.*</em:maxVersion> + </Description> + </em:targetApplication> + <!-- here is an example for future localizations ; + em: name, em:description, em:creator + should probably be overridden --> + <em:localized> + <Description> + <em:locale>en-US</em:locale> + <em:name>Bitmask</em:name> + <em:description>Configure Bitmask encrypted mail accounts. + </em:description> + <em:creator>The LEAP Encryption Access Project</em:creator> + </Description> + </em:localized> + <em:localized> + <Description> + <em:locale>es-ES</em:locale> + <em:name>Bitmask</em:name> + <em:description>Configura cuentas Bitmask de correo cifrado. + </em:description> + <em:creator>El projecto LEAP, Encryption Access Project</em:creator> + </Description> + </em:localized> + + </Description> +</RDF> |