echo "<h2>Languages</h2>";
}
require_once "../tools/translations/class/LanguageSet.class.php";
$langObj = new LanguageSet();
$langq = new SQLQuery($langObj->table);
$langq->international = true;
$langq->debug = $debug;
$langq->reset_table($possibleLanguages, array("keycode"));
if ($debug) {
    $langObj->testPrint();
}
if ($debug) {
    echo "<h2>Text Elements</h2>";
}
require_once "../tools/translations/class/SurveyTextElementSet.class.php";
$textObj = new SurveyTextElementSet();
$textObj->debug = $debug;
$textObj->create();
if ($debug) {
    $textObj->testPrint();
}
if ($debug) {
    echo "<h2>Translations</h2>";
}
require_once "../tools/translations/class/TranslationSet.class.php";
$transObj = new TranslationSet();
$transObj->debug = $debug;
$transObj->create();
if ($debug) {
    $transObj->testPrint();
}