From 122ac293efe13a9a33d04a9b227e7eaa0094b6df Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Fri, 23 Dec 2005 04:36:50 +0000 Subject: [PATCH] r682: Reword some of the setting descriptions --- includes/settings.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/settings.php b/includes/settings.php index 2ba5c34..14dbea0 100755 --- a/includes/settings.php +++ b/includes/settings.php @@ -30,10 +30,10 @@ $settingconfig = array(); $define['general'] = $lang->string('General Options'); -$config['allownewreg'] = array('general', 'allownewreg', 'yesno', 1, false, $lang->string('Allow New Registrations'), $lang->string('If this is set to no, no new users will be allowed to register.')); +$config['allownewreg'] = array('general', 'allownewreg', 'yesno', 1, false, $lang->string('Allow New Registrations'), $lang->string('If this is set to yes, then new users will be allowed to register.')); $config['verifyemail'] = array('general', 'verifyemail', 'yesno', 0, false, $lang->string('Require Activation Email'), $lang->string('Setting this to yes will force all new users to verify their account with an email activation link.')); $config['moderatenewusers'] = array('general', 'moderatenewusers', 'yesno', 0, false, $lang->string('Moderate New Users'), $lang->string('All new users will have to be approved by the administration before being able to have normal user rights.')); -$config['sendwelcomemail'] = array('general', 'sendwelcomemail', 'yesno', 1, false, $lang->string('Send New Use Welcome Email'), $lang->string('Setting this option to yes will send all new users, after they\'ve been verified, a welcoming email.')); +$config['sendwelcomemail'] = array('general', 'sendwelcomemail', 'yesno', 1, false, $lang->string('Send New Use Welcome Email'), $lang->string('Setting this option to yes will send each new verified user a welcome email.')); $config['webmasteremail'] = array('general', 'webmasteremail', 'textbox', '', false, $lang->string('Webmaster Email Address'), $lang->string('The email address from which emails will be sent out.')); $config['trackertitle'] = array('general', 'trackertitle', 'textbox', '', false, $lang->string('Tracker Title'), $lang->string('The global name of the bug tracker. Example: Iris Studios Bug Tracker')); $config['trackerurl'] = array('general', 'trackerurl', 'textbox', '', false, $lang->string('Tracker Base URL'), $lang->string('The base URL of the tracker. This is used when creating external links to the tracker. Be sure that this does not end in a trailing slash ("/").
Example: http://www.iris-studios.com/bugs')); -- 2.22.5