]> git.mxchange.org Git - friendica.git/blobdiff - mod/profile.php
remove items from export - too much memory consumed, will have to stream items,photos
[friendica.git] / mod / profile.php
index 1053e4a1e643a060313ff79bfce14106e56da8fb..4b5f92a1fc0614ae49396918f03d5d6a6d3bbfee 100644 (file)
@@ -98,7 +98,10 @@ function profile_content(&$a, $update = 0) {
 
                $o .= replace_macros($tpl,array(
                        '$url' => $a->get_baseurl() . '/' . $a->cmd,
-                       '$phototab' => $a->get_baseurl() . '/photos/' . $a->profile['nickname']
+                       '$phototab' => $a->get_baseurl() . '/photos/' . $a->profile['nickname'],
+                       '$status' => t('Status'),
+                       '$profile' => t('Profile'),
+                       '$photos' => t('Photos')
                ));
 
 
@@ -130,7 +133,12 @@ function profile_content(&$a, $update = 0) {
                        $a->page['htmlhead'] .= replace_macros($tpl, array(
                                '$baseurl' => $a->get_baseurl(),
                                '$geotag'  => $geotag,
-                               '$nickname' => $a->profile['nickname']
+                               '$nickname' => $a->profile['nickname'],
+                               '$linkurl' => t('Please enter a link URL:'),
+                               '$utubeurl' => t('Please enter a YouTube link:'),
+                               '$vidurl' => t("Please enter a video\x28.ogg\x29 link/URL:"),
+                               '$audurl' => t("Please enter an audio\x28.ogg\x29 link/URL:"),
+                               '$whereareu' => t('Where are you right now?') 
                        ));
 
                        require_once('include/acl_selectors.php');