In Dublin Core, as example, how can I express the document title in two language?
From what I have found I could:
<meta name="dc.language" content="en">
<meta name="dc.language" content="fr">
<meta name="dc.title" content="English Title">
<meta name="dc.title" content="Titre en français">
But, is there a way to specify witch title is in witch language as (my own invention):
<meta name="dc.language" content="en">
<meta name="dc.language" content="fr">
<meta name="dc.title" content="English Title" language="en">
<meta name="dc.title" content="Titre en français" language="fr">
Edit: After some more research in directions given by comments and answers. I found, that this is look my answer (Recommendation 9):
<dc:subject xml:lang="en">seafood</dc:subject>
<dc:subject xml:lang="fr">fruits de mer</dc:subject>
And that the dc.language should only be the language that my document is published.
HTML defines the
lang
attribute.