diff options
author | Friendika <info@friendika.com> | 2011-03-08 04:06:37 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-03-08 04:06:37 -0800 |
commit | c248b28f922603ec135fea903a9ec3f0ef63c935 (patch) | |
tree | c95a609f98511bf14eca86e263dd9b24640cf628 /mod/register.php | |
parent | bc7035408a17437eb46457389d8911512812b8fd (diff) | |
download | volse-hubzilla-c248b28f922603ec135fea903a9ec3f0ef63c935.tar.gz volse-hubzilla-c248b28f922603ec135fea903a9ec3f0ef63c935.tar.bz2 volse-hubzilla-c248b28f922603ec135fea903a9ec3f0ef63c935.zip |
indicate preference to register/communicate-with real people and not fictitious entities.
Diffstat (limited to 'mod/register.php')
-rw-r--r-- | mod/register.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mod/register.php b/mod/register.php index 97038def0..13d770fda 100644 --- a/mod/register.php +++ b/mod/register.php @@ -401,6 +401,8 @@ function register_content(&$a) { $oidlabel = t("Your OpenID \x28optional\x29: "); } + $realpeople = t('Members of this network prefer to communicate with real people who use their real names.'); + if(get_config('system','publish_all')) { $profile_publish_reg = '<input type="hidden" name="profile_publish_reg" value="1" />'; } @@ -423,6 +425,7 @@ function register_content(&$a) { $o = load_view_file("view/register.tpl"); $o = replace_macros($o, array( '$oidhtml' => $oidhtml, + '$realpeople' => $realpeople, '$regtitle' => t('Registration'), '$registertext' =>((x($a->config,'register_text')) ? '<div class="error-message">' . $a->config['register_text'] . '</div>' @@ -433,7 +436,7 @@ function register_content(&$a) { '$openid' => $openid_url, '$namelabel' => t('Your Full Name ' . "\x28" . 'e.g. Joe Smith' . "\x29" . ': '), '$addrlabel' => t('Your Email Address: '), - '$nickdesc' => t('Choose a profile nickname. This must begin with a text character. Your global profile locator will then be \'<strong>nickname@$sitename</strong>\'.'), + '$nickdesc' => t('Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \'<strong>nickname@$sitename</strong>\'.'), '$nicklabel' => t('Choose a nickname: '), '$photo' => $photo, '$publish' => $profile_publish, |