mirror of
https://github.com/robweber/xbmcbackup.git
synced 2025-07-14 12:52:16 +02:00

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.
17 lines
867 B
XML
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>
|