Previous Topic

Next Topic

Book Contents

Translations

Purpose

Defines a set of translated strings for the translatable attributes of a study component. A Translations definition is a child of the study component for which it provides translated strings. The Translations element must be the last child element in the study component definition. If you translate any attributes, include translation definitions for all translatable attributes that are part of the study component definition.

Note: When you use a Translations element, the LANGUAGE attribute of the associated study component is required.

Syntax

<TRANSLATIONS>

<TRANSLATION* attributes/>

</TRANSLATIONS>

Children

A Translations element must include one or more Translation definitions. Each Translation element represents the translation of one attribute of a study component into the language of one locale.

Examples

The following example illustrates the translation of an item question and label into Spanish and German.

<ITEM refname="itmCardio"

LANGUAGE="en-US"

QUESTION="Cardiovascular"

LABEL="Cardio"

CALCULATED="false"

ITEMREQUIRED="true"

SDVREQUIRED="true"

<CONTROLREF REFNAME="PEFstatus"/>

<TRANSLATIONS>

<TRANSLATION NAME="QUESTION" LOCALE="es-ES" DISPLAYTEXT="Sistema cardiovascular"/>

<TRANSLATION NAME="QUESTION" LOCALE="de-DE" DISPLAYTEXT="Herz-Kreislauf-System"/>

<TRANSLATION NAME="LABEL" LOCALE="es-ES" DISPLAYTEXT="Cardiovascular"/>

<TRANSLATION NAME="LABEL" LOCALE="de-DE" DISPLAYTEXT="Herz-Kreislauf"/>

</TRANSLATIONS>

<ITEM/>

Send Feedback