jeb
jeb

Reputation: 173

Dublin Core metadata - Describing document in two languages

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

Answers (2)

saun4frsh
saun4frsh

Reputation: 383

Link to Generate DC.Meta tags : http://www.dublincoregenerator.com/generator_nq.html

Upvotes: 0

unor
unor

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

Related Questions