X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fnewmember.php;h=cd59cc780c23ccf7116cf90091ff49d3558b2d55;hb=f6917dd8f494769c8f0f0c53d2105175d9cf6ad6;hp=1ef0985066e1971bdedee1e4a2ba80b02aeb2297;hpb=4530f4ac9db4a3f9d53ef34ee7a185e2b31cc9be;p=friendica.git diff --git a/mod/newmember.php b/mod/newmember.php index 1ef0985066..cd59cc780c 100644 --- a/mod/newmember.php +++ b/mod/newmember.php @@ -1,83 +1,58 @@ ' . t('Welcome to Friendica') . ''; - - $o .= '

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

'; - +/** + * @file mod/newmember.php + */ +use Friendica\App; +use Friendica\Core\Config; +use Friendica\Core\L10n; + +function newmember_content(App $a) +{ + $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 .= '
'; return $o;