aboutsummaryrefslogtreecommitdiffstats
path: root/mod/profile.php
diff options
context:
space:
mode:
authorFabio Comuni <fabrix.xm@gmail.com>2011-03-23 14:04:35 +0100
committerFabio Comuni <fabrix.xm@gmail.com>2011-03-23 14:04:35 +0100
commit1f1fe4d5be45599b92846e95ac1d8a1134ee3cd1 (patch)
tree629a2c3cb457293bbe77c956011ad370aa087a78 /mod/profile.php
parent4a1426934968384d10a38f335a1c0c49b058dc2d (diff)
parent93504896155d74fc42f6bf60cb61d65295f6b911 (diff)
downloadvolse-hubzilla-1f1fe4d5be45599b92846e95ac1d8a1134ee3cd1.tar.gz
volse-hubzilla-1f1fe4d5be45599b92846e95ac1d8a1134ee3cd1.tar.bz2
volse-hubzilla-1f1fe4d5be45599b92846e95ac1d8a1134ee3cd1.zip
Merge branch 'master' of github.com:fabrixxm/friendika
Diffstat (limited to 'mod/profile.php')
-rw-r--r--mod/profile.php12
1 files changed, 10 insertions, 2 deletions
diff --git a/mod/profile.php b/mod/profile.php
index 1053e4a1e..4b5f92a1f 100644
--- a/mod/profile.php
+++ b/mod/profile.php
@@ -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');