aboutsummaryrefslogtreecommitdiffstats
path: root/mod/profile.php
diff options
context:
space:
mode:
authorTobias Diekershoff <tobias.diekershoff@gmx.net>2011-03-22 06:50:47 +0100
committerTobias Diekershoff <tobias.diekershoff@gmx.net>2011-03-22 06:50:47 +0100
commit767b4f30f7ee114b1cfd66e68fa959ac033b5667 (patch)
tree6df1045c07a3297d6e43550e37dda43d0ac925d2 /mod/profile.php
parent8fbde780b37e3d5eeb2ee672a3474b3701eb9645 (diff)
parentee11a74d0b7cff5061a4d498f8ecd15e55b91b07 (diff)
downloadvolse-hubzilla-767b4f30f7ee114b1cfd66e68fa959ac033b5667.tar.gz
volse-hubzilla-767b4f30f7ee114b1cfd66e68fa959ac033b5667.tar.bz2
volse-hubzilla-767b4f30f7ee114b1cfd66e68fa959ac033b5667.zip
Merge branch 'master' of git://github.com/friendika/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');