X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fnewmember.php;h=c2ffe6464ed3fd2c96ba0c079c69774953ca3d80;hb=41663c7592abe55a958632c3a48265e0a8544d2b;hp=0dcdb8bd87ee0faec583bfc68e8bf6c00c841469;hpb=cd1724eb9ef4e07ced4c9019dd7bad55dc21abce;p=friendica.git diff --git a/mod/newmember.php b/mod/newmember.php index 0dcdb8bd87..c2ffe6464e 100644 --- a/mod/newmember.php +++ b/mod/newmember.php @@ -1,56 +1,61 @@ ' . t('Welcome to Friendica') . ''; - $o .= '

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

'; +function newmember_content(App $a) +{ + $o = '
'; + $o .= '

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

'; + $o .= '

' . L10n::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. 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 .= L10n::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 .= '

' . L10n::t('Getting Started') . '

'; $o .= ''; - $o .= '

' . t('Settings') . '

'; + $o .= '

' . L10n::t('Settings') . '

'; $o .= ''; - $o .= '

' . t('Profile') . '

'; + $o .= '

' . L10n::t('Profile') . '

'; $o .= ''; - $o .= '

' . t('Connecting') . '

'; + $o .= '

' . L10n::t('Connecting') . '

'; $o .= ''; - $o .= '

' . t('Groups') . '

'; + $o .= '

' . L10n::t('Groups') . '

'; $o .= ''; - $o .= '

' . t('Getting Help') . '

'; + $o .= '

' . L10n::t('Getting Help') . '

'; $o .= ''; $o .= '
'; + $o .= '
'; return $o; }