<?xml version="1.0" ?>
<!DOCTYPE dict [ 
<!ELEMENT dict (term)* >
<!ELEMENT term (word, description) >
<!ELEMENT word (#PCDATA) >
<!ATTLIST term lang (en|fr|jp|ru) "en" >
<!ELEMENT description (#PCDATA) >
]>

<dict>
<term>
   <word>soup </word>
   <opie />
   <description> description of soup </description>
</term>
<term lang="fr">
    <word>soupe </word>
   <description> un description du soup </description>
</term>
</dict>

