From a28b56f526d6d093bcc47181b871b855e997b43a Mon Sep 17 00:00:00 2001 From: patrick Date: Sun, 16 Feb 2025 05:58:23 +0000 Subject: [PATCH] Change text --- register_participants_namecheck.php | 34 ++++++++++++++++++++--------- 1 file changed, 24 insertions(+), 10 deletions(-) diff --git a/register_participants_namecheck.php b/register_participants_namecheck.php index 668e6dcf..bd29bb92 100644 --- a/register_participants_namecheck.php +++ b/register_participants_namecheck.php @@ -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 '

'; echo ''; foreach ($student_display_name AS $sn) echo ""; + echo '
 $sn 
'; echo '

'; echo i18n('Please confirm that:'); @@ -115,16 +116,29 @@ echo "\n"; $ch = ($newstatus == 'complete') ? 'checked="checked"' : ''; -echo " " . i18n('My name is correctly spelled'); -echo '
'; -echo " " . i18n('The correct letters are capitalized and in lower-case.'); -echo '
'; -echo " " . i18n('Any required punctuation and accents are present and correct.'); -echo '
'; -echo '
'; +if (count($student_display_name) == 1) { + echo " " . i18n('My name is correctly spelled'); + echo '
'; + echo " " . i18n('The correct letters are capitalized and in lower-case.'); + echo '
'; + echo " " . i18n('Any required punctuation and accents are present and correct.'); + echo '
'; + echo '
'; -echo '\n"; -echo ''; + echo '\n"; + echo ''; +} else { + echo " " . i18n('The names are correctly spelled'); + echo '
'; + echo " " . i18n('The correct letters are capitalized and in lower-case.'); + echo '
'; + echo " " . i18n('Any required punctuation and accents are present and correct.'); + echo '
'; + echo '
'; + + echo '\n"; + echo ''; +} send_footer(); ?>