X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fnewmember.php;h=aa55c3a098804f7e77e696e07167ecf35c9c7ad1;hb=724f9c80e79783957d75d011a0393f6d6bb1949e;hp=bc1fb75085c5cd27788aa9aea06cc41227bc2027;hpb=00c548cc8f91b6087fa923da7b939a0fa2c264dc;p=friendica.git diff --git a/mod/newmember.php b/mod/newmember.php index bc1fb75085..aa55c3a098 100644 --- a/mod/newmember.php +++ b/mod/newmember.php @@ -3,41 +3,82 @@ function newmember_content(&$a) { - $o = '

' . t('Welcome to Friendika') . '

'; + $o = '

' . t('Welcome to Friendica') . '

'; $o .= '

' . t('New Member Checklist') . '

'; $o .= '
'; - $o .= t('We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page.'); + $o .= t('We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear.'); + + $o .= '

' . t('Getting Started') . '

'; $o .= ''; + + $o .= '

' . t('Settings') . '

'; + + $o .= ''; + + $o .= '

' . t('Profile') . '

'; + + $o .= ''; - if(in_array('facebook', $a->plugins)) - $o .= '
  • ' . '' . t("Authorise the Facebook Connector if you currently have a Facebook account and we will \x28optionally\x29 import all your Facebook friends and conversations.") . '
  • ' . EOL; + $o .= '

    ' . t('Connecting') . '

    '; + + $o .= ''; - $o .= '
  • ' . '' . t('Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors.') . '
  • ' . EOL; + $o .= '

    ' . t('Groups') . '

    '; - $o .= '
  • ' . '' . t('Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships.') . '
  • ' . EOL; + $o .= ''; + + $o .= '

    ' . t('Getting Help') . '

    '; + + $o .= ''; $o .= '
    '; return $o; -} \ No newline at end of file +}