my attempts to localize an appcast have failed... essentially i'd like for the sparkle updater to load different release notes per language.
currently, loading the app in both french and english will only load the english release notes...
Code:
<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle" version="1.5b5">
<channel>
<item>
<language>en</language>
<enclosure url="http://www.mysite.com/app.dmg" type="application/x-diskcopy" sparkle:version="2.0"/>
<sparkle:releaseNotesLink>http://www.mysite.com/[B]ReleaseNotes-EN.html[/B]</sparkle:releaseNotesLink>
</item>
<item>
<language>fr</language>
<enclosure url="http://www.mysite.com/app.dmg" type="application/x-diskcopy" sparkle:version="2.0"/>
<sparkle:releaseNotesLink>http://www.mysite.com/[B]ReleaseNotes-FR.html[/B]</sparkle:releaseNotesLink>
</item>
</channel>
</rss>
currently, loading the app in both french and english will only load the english release notes...