forked from science-ation/science-ation
Change text
This commit is contained in:
parent
be475e6dce
commit
a28b56f526
@ -85,7 +85,7 @@ if ($newstatus != 'complete') {
|
|||||||
echo happy(i18n('Name Check Complete'));
|
echo happy(i18n('Name Check Complete'));
|
||||||
}
|
}
|
||||||
|
|
||||||
echo i18n('Every year there is one participant who realizes that his/her name
|
echo i18n('Every year there is one participant who realizes that their name
|
||||||
is spelled wrong after certificates are printed and plaques are engraved. This
|
is spelled wrong after certificates are printed and plaques are engraved. This
|
||||||
page has been created in an effort to ensure you are not that student. It is
|
page has been created in an effort to ensure you are not that student. It is
|
||||||
difficult to re-print certificates and even harder to re-engrave a plaque.');
|
difficult to re-print certificates and even harder to re-engrave a plaque.');
|
||||||
@ -105,6 +105,7 @@ echo '<br /><br />';
|
|||||||
echo '<table class="summarytable">';
|
echo '<table class="summarytable">';
|
||||||
foreach ($student_display_name AS $sn)
|
foreach ($student_display_name AS $sn)
|
||||||
echo "<tr><td><span style=\"font-size: 4.0em; font-weight: bold\"> $sn </span></td></tr>";
|
echo "<tr><td><span style=\"font-size: 4.0em; font-weight: bold\"> $sn </span></td></tr>";
|
||||||
|
|
||||||
echo '</table>';
|
echo '</table>';
|
||||||
echo '<br /><br />';
|
echo '<br /><br />';
|
||||||
echo i18n('Please confirm that:');
|
echo i18n('Please confirm that:');
|
||||||
@ -115,16 +116,29 @@ echo "<input type=\"hidden\" name=\"action\" value=\"save\">\n";
|
|||||||
|
|
||||||
$ch = ($newstatus == 'complete') ? 'checked="checked"' : '';
|
$ch = ($newstatus == 'complete') ? 'checked="checked"' : '';
|
||||||
|
|
||||||
echo "<input type=\"checkbox\" name=\"spelling\" value=\"yes\" $ch /> " . i18n('My name is correctly spelled');
|
if (count($student_display_name) == 1) {
|
||||||
echo '<br />';
|
echo "<input type=\"checkbox\" name=\"spelling\" value=\"yes\" $ch /> " . i18n('My name is correctly spelled');
|
||||||
echo "<input type=\"checkbox\" name=\"caps\" value=\"yes\" $ch /> " . i18n('The correct letters are capitalized and in lower-case.');
|
echo '<br />';
|
||||||
echo '<br />';
|
echo "<input type=\"checkbox\" name=\"caps\" value=\"yes\" $ch /> " . i18n('The correct letters are capitalized and in lower-case.');
|
||||||
echo "<input type=\"checkbox\" name=\"punc\" value=\"yes\" $ch /> " . i18n('Any required punctuation and accents are present and correct.');
|
echo '<br />';
|
||||||
echo '<br />';
|
echo "<input type=\"checkbox\" name=\"punc\" value=\"yes\" $ch /> " . i18n('Any required punctuation and accents are present and correct.');
|
||||||
echo '<br />';
|
echo '<br />';
|
||||||
|
echo '<br />';
|
||||||
|
|
||||||
echo '<input type="submit" value="' . i18n('My Name is Correct') . "\" />\n";
|
echo '<input type="submit" value="' . i18n('My Name is Correct') . "\" />\n";
|
||||||
echo '</form>';
|
echo '</form>';
|
||||||
|
} else {
|
||||||
|
echo "<input type=\"checkbox\" name=\"spelling\" value=\"yes\" $ch /> " . i18n('The names are correctly spelled');
|
||||||
|
echo '<br />';
|
||||||
|
echo "<input type=\"checkbox\" name=\"caps\" value=\"yes\" $ch /> " . i18n('The correct letters are capitalized and in lower-case.');
|
||||||
|
echo '<br />';
|
||||||
|
echo "<input type=\"checkbox\" name=\"punc\" value=\"yes\" $ch /> " . i18n('Any required punctuation and accents are present and correct.');
|
||||||
|
echo '<br />';
|
||||||
|
echo '<br />';
|
||||||
|
|
||||||
|
echo '<input type="submit" value="' . i18n('The names are Correct') . "\" />\n";
|
||||||
|
echo '</form>';
|
||||||
|
}
|
||||||
|
|
||||||
send_footer();
|
send_footer();
|
||||||
?>
|
?>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user