Reputation: 173
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.
Upvotes: 0
Views: 412
Reputation: 383
Link to Generate DC.Meta tags : http://www.dublincoregenerator.com/generator_nq.html
Upvotes: 0
Reputation: 96737
HTML defines the lang
attribute.
<meta name="dc.title" content="English Title" lang="en">
<meta name="dc.title" content="Titre en français" lang="fr">
Upvotes: 2