Change text

This commit is contained in:
patrick 2025-02-16 05:58:23 +00:00
parent be475e6dce
commit a28b56f526

View File

@ -85,7 +85,7 @@ if ($newstatus != '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
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.');
@ -105,6 +105,7 @@ echo '<br /><br />';
echo '<table class="summarytable">';
foreach ($student_display_name AS $sn)
echo "<tr><td><span style=\"font-size: 4.0em; font-weight: bold\">&nbsp;$sn&nbsp;</span></td></tr>";
echo '</table>';
echo '<br /><br />';
echo i18n('Please confirm that:');
@ -115,16 +116,29 @@ echo "<input type=\"hidden\" name=\"action\" value=\"save\">\n";
$ch = ($newstatus == 'complete') ? 'checked="checked"' : '';
echo "<input type=\"checkbox\" name=\"spelling\" value=\"yes\" $ch /> " . i18n('My name is 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 />';
if (count($student_display_name) == 1) {
echo "<input type=\"checkbox\" name=\"spelling\" value=\"yes\" $ch /> " . i18n('My name is 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('My Name is Correct') . "\" />\n";
echo '</form>';
echo '<input type="submit" value="' . i18n('My Name is Correct') . "\" />\n";
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();
?>