On 5/9/10 12:46 AM, "Erik Wilde" <[email protected]> wrote:
> you're right that there only can be one title, which is bad for
> internationalization, but makes life easier for consumers. as unfortunate as
> it is, it's not going to change (i guess), so you will just have to make peace
> with this design. maybe use one feed per language? not great, but correct and
> probably a pattern you'll see in many places...
you could either link the entire feed to a translated feed, or link just the
entry to a translated entry document. I'd do the former generally.
<feed>
<link rel="alternate" type="application/atom+xml"
hreflang="fr" href="http://example.org/fr/feed.xml"/>
<entry>
<link rel="alternate" type="application/atom+xml"
hreflang="fr" href="http://example.org/fr/entry.xml"/>
</entry>
</feed>