xbmcbackup/addon.xml
sphere 38ae42a4ac fixed language tag
The language tag in addon.xml is meant for the language of the content it provides (not for the translations it has).
It is mainly used for hiding "foreign language addons" - this addon doesn't provide content and is meant to be usable in all languages.
2012-08-06 11:34:41 +02:00

17 lines
867 B
XML

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.xbmcbackup"
name="XBMC Backup" version="0.1.2" provider-name="robweber">
<requires>
<import addon="xbmc.python" version="2.0"/>
</requires>
<extension point="xbmc.python.script" library="default.py">
<provides>executable</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Backup and restore your XBMC database and configuration files in the event of a crash or file corruption.</summary>
<description lang="en">Ever hosed your XBMC configuration and wished you'd had a backup? Now you can with one easy click. You can export your database, playlist, thumbnails, addons and other configuration details to any source writeable by XBMC.</description>
<platform>all</platform>
<language></language>
</extension>
</addon>