<?php
// :ONEDAY: we should exclude the languages that already have translations for them
// set title
// should support multiple languages
$GLOBALS['CLN_PAGE_TITLE'] = 'Select Language';
?>
<form name="SelectLanguage" action="<?php echo appendToURL(cleanURL($GLOBALS['path']), 'editKoId=' . $this->koId . '&editProcess=' . $this->currentEditProcess); ?>" method="post">
<p>Choose the language you want to translate this Block into using the list below.</p>
<?php
foreach ($GLOBALS['languages'] as $langId => $langName) {
echo '<p><input type="radio" name="langChoice" value="' . $langId . '" /> ' . $langName . '</p>';
}
?>
<div class="grRow">
<input class="grFormInput" type="submit" id="selectLanguage" name="selectLanguage" value="Select and Return" />
<input class="grFormInput" type="submit" name="ReturnToPanel" value="<?php echo ADMIN_BTN_CANCEL_RETURN; ?>" />
</div>
</form>