Is it ok to have this kind of meta declarations in the head section of a XHTML document?
<meta name="keywords" lang="en" content="..."/>
<meta name="description" lang="en" content="..."/>
<meta name="keywords" lang="ro" content="..."/>
<meta name="description" lang="ro" content="..."/>
<meta name="keywords" lang="fr" content="..."/>
<meta name="description" lang="fr" content="..."/>
etc
Basically is it good to have all at once, or should I just put two by two depending on what language is selected?
Thank you.