<content-language>

Content Language

That part of the metadata of a standards document that identifies the official language(s) used in this standard.

Remarks

Best Practice: This element should appear once for each official language used in the document. For Best Practice, the element content should be the two-letter ISO 639 code for the language, for example, “en” for English, “de” for German, or “es” for Spanish.
ISO Note: Content of the Element: For ISO standards documents, the content (in 2016) of this element should always be one of “en”, “fr”, “ru”, “es”, or “ar”.
ISO Note: Related <language> Element: For ISO-related standards only, the <language> element (that is part of the ISO-specific <doc-ident> element) provides the same language information as the <content-language> element, sometimes in a different form. For monolingual documents, <language> and <content-language> will have the same content. However, in each ISO standards document, while the <content-language> element may repeat, there must be a single <language> element, so for documents written in more than one official language, the <language> element will contain a comma-separated (no whitespace) list of language codes for example: “en,fr,de”.

Related Elements

How to Tag the Language: In NISO STS, there are several ways to describe the natural language of the content of an element:
  • Content Language Element: The <content-language> element, in the metadata of a standards document (inside <std-ident>), identifies the official language(s) used in this standards document. The element appears once for each official language used in the document. For Best Practice, the element content should be the two-letter ISO 639 code for the language, for example, “en” for English, “de” for German, or “es” for Spanish.
  • XML Lang Language Attribute: The @xml:lang attribute can be put on many elements, to indicate the language of the element. This is an inherited value, so that element and all of its children will be in the named language, unless specifically overridden with another @xml:lang attribute.
  • Language Element: For ISO-related processing only, the <language> element (inside the <doc-ident> element in the metadata of a standards document) identifies the official language(s) used in this standards document. This element allows more than one language value to be named. Best Practice Note: the <content-language> element should be used in addition to this element.

Attributes

Model Description

Text, numbers, or special characters, zero or more

This element may be contained in:

Example 1

...
<std-meta>
 <title-wrap>...</title-wrap>
 <std-ident>...</std-ident>   
 <std-org-group>...</std-org-group>
 <content-language>en</content-language>
 <release-date date-type="published" std-type="revised" 
   iso-8601-date="2013-10-21">October 21, 2013</release-date>
 <meta-date type="date-of-issuance" iso-8601-date="2013-10-21">October 21, 2013</meta-date>
 ...
</std-meta>
...

Example 2

Content language in an ISO standard:
...
<iso-meta id="profile.int">
 <title-wrap>...</title-wrap>
 <doc-ident>...</doc-ident>
 <std-ident>
  <originator>ISO</originator>
  <doc-type>is</doc-type>
  <doc-number>2560</doc-number>
  <part-number></part-number>
  <edition>3</edition>
  <version>...</version>
 </std-ident>
 <content-language>en</content-language>
 ...
</iso-meta>
...