<?xml version="1.0" encoding="UTF-8"?>

<flowchart xmlns="http://wizard4j.org/flowchart">
<root>
 <switch name="language" label="Which is your language of preference?" help="This determines the language in which you will be questioned and greeted.">
   <branch label="English" name="english" selected="true">
     <input name="firstname" type="string" label="What's your first name?"/>
   </branch>
   <branch label="French" name="french">
     <input name="firstname" type="string" label="Quel est votre prénom?"/>
   </branch>
   <branch label="German" name="german">
     <input name="firstname" type="string" label="Was ist Ihr Vorname?"/>
   </branch>
   <branch label="Spanish" name="spanish">
     <input name="firstname" type="string" label="¿Cuál es tu nombre?"/>
   </branch>
 </switch>
</root>
</flowchart>
