'$sender_email'=>array('sender_email',t("Sender Email"),$a->config['sender_email'],"The email address your server shall use to send notification emails from.","","","email"),
'$shortcut_icon'=>array('shortcut_icon',t("Shortcut icon"),get_config('system','shortcut_icon'),"Link to an icon that will be used for browsers."),
'$touch_icon'=>array('touch_icon',t("Touch icon"),get_config('system','touch_icon'),"Link to an icon that will be used for tablets and mobiles."),
'$info'=>array('info',t('Additional Info'),$info,t('For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo.')),
'$theme'=>array('theme',t("System theme"),get_config('system','theme'),t("Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"),$theme_choices),
@ -645,7 +664,8 @@ function admin_page_site(&$a) {
'$no_openid'=>array('no_openid',t("OpenID support"),!get_config('system','no_openid'),t("OpenID support for registration and logins.")),
'$no_regfullname'=>array('no_regfullname',t("Fullname check"),!get_config('system','no_regfullname'),t("Force users to register with a space between firstname and lastname in Full name, as an antispam measure")),
'$no_community_page'=>array('no_community_page',t("Show Community Page"),!get_config('system','no_community_page'),t("Display a Community page showing all recent public postings on this site.")),
'$community_page_style'=>array('community_page_style',t("Community Page Style"),get_config('system','community_page_style'),t("Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."),$community_page_style_choices),
'$max_author_posts_community_page'=>array('max_author_posts_community_page',t("Posts per user on community page"),get_config('system','max_author_posts_community_page'),t("The maximum number of posts per user on the community page. (Not valid for 'Global Community')")),
'$ostatus_disabled'=>array('ostatus_disabled',t("Enable OStatus support"),!get_config('system','ostatus_disabled'),t("Provide built-in OStatus \x28StatusNet, GNU Social etc.\x29 compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed.")),
'$ostatus_poll_interval'=>array('ostatus_poll_interval',t("OStatus conversation completion interval"),(string)intval(get_config('system','ostatus_poll_interval')),t("How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."),$ostatus_poll_choices),
@ -660,6 +680,7 @@ function admin_page_site(&$a) {
'$use_fulltext_engine'=>array('use_fulltext_engine',t("Use MySQL full text engine"),get_config('system','use_fulltext_engine'),t("Activates the full text engine. Speeds up search - but can only search for four and more characters.")),
'$suppress_language'=>array('suppress_language',t("Suppress Language"),get_config('system','suppress_language'),t("Suppress language information in meta information about a posting.")),
'$suppress_tags'=>array('suppress_tags',t("Suppress Tags"),get_config('system','suppress_tags'),t("Suppress showing a list of hashtags at the end of the posting.")),
'$itemcache'=>array('itemcache',t("Path to item cache"),get_config('system','itemcache'),"The item caches buffers generated bbcode and external images."),
'$itemcache_duration'=>array('itemcache_duration',t("Cache duration in seconds"),get_config('system','itemcache_duration'),t("How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1.")),
'$max_comments'=>array('max_comments',t("Maximum numbers of comments per post"),get_config('system','max_comments'),t("How much comments should be shown for each post? Default value is 100.")),
@ -668,6 +689,7 @@ function admin_page_site(&$a) {
'$basepath'=>array('basepath',t("Base path to installation"),get_config('system','basepath'),"If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."),
'$proxy_disabled'=>array('proxy_disabled',t("Disable picture proxy"),get_config('system','proxy_disabled'),t("The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith.")),
'$old_pager'=>array('old_pager',t("Enable old style pager"),get_config('system','old_pager'),t("The old style pager has page numbers but slows down massively the page speed.")),
'$only_tag_search'=>array('only_tag_search',t("Only search in tags"),get_config('system','only_tag_search'),t("On large systems the text search can slow down the system extremely.")),
'$relocate_url'=>array('relocate_url',t("New base url"),$a->get_baseurl(),"Change base url for this server. Sends relocate message to all DFRN contacts of all users."),