From 2b28cae42dac5923b7aefbf7d038bb6736a965d6 Mon Sep 17 00:00:00 2001 From: jerome Date: Wed, 27 May 2009 03:05:54 +0000 Subject: [PATCH] community Hub MDL-19313 fix hard coded string for registration form title, merged from 1.9 --- admin/register.php | 2 +- lang/en_utf8/moodle.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/admin/register.php b/admin/register.php index 5acb8d8256..7c3264f2a1 100644 --- a/admin/register.php +++ b/admin/register.php @@ -45,7 +45,7 @@ echo "
\n"; echo '
'; - echo 'Registration Information'; + echo ''.get_string("registrationinfotitle").''; echo "\n"; echo "\n"; diff --git a/lang/en_utf8/moodle.php b/lang/en_utf8/moodle.php index 908de47adc..416c34bf36 100644 --- a/lang/en_utf8/moodle.php +++ b/lang/en_utf8/moodle.php @@ -1294,6 +1294,7 @@ for important notifications such as security alerts and new releases of Moodle.< picture of the Moodle community as a whole.

If you choose, you can allow your site name, country and URL to be added to the public list of Moodle Sites.

All new registrations are verified manually before they are added to the list, but once you are added you can update your registration (and your entry on the public list) at any time by resubmitting this form.

'; +$string['registrationinfotitle'] = 'Registration Information'; $string['registrationno'] = 'No, I do not want to receive email'; $string['registrationsend'] = 'Send registration information to moodle.org'; $string['registrationyes'] = 'Yes, please notify me about important issues'; -- 2.39.5