> Search the archives for past conversations on use of dc:lang vs
> xml:lang. There
> are different situations for each. I've never really seen a
> decent wrap up that
> resolves which is most useful when, let alone how to express them in
> combinations.
A wrap up:
Use xml:lang to state the language of the actual content of the XML.
Use dc:language to state the language of what you are talking about.
Most often these would be the same language:
<item rdf:about="someResource">
<description xml:lang="en">Some resource.</description>
<dc:language>en</dc:language>
...
</item>
But it is worth stating both, firstly because some applications may only
care about the xml:lang of the description, and some only about the language
of the resource, and secondly because they *can* be different.
<item rdf:about="someFrenchResource">
<description xml:lang="en">Some French resource.</description>
<dc:language>fr</dc:language>
...
</item>