diff options
author | Friendika <info@friendika.com> | 2011-03-18 05:07:42 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-03-18 05:07:42 -0700 |
commit | 9838245c6c9b2e311650b53a1c3aa1ef778ef935 (patch) | |
tree | ceb9f5edd50cd039e28362a59c4c2d354bb88e67 /mod/viewcontacts.php | |
parent | 43234a667878327a825914070884161c6d57271e (diff) | |
parent | e307846c2d89cf450ed2e7ddf8f325f5f4581f8f (diff) | |
download | volse-hubzilla-9838245c6c9b2e311650b53a1c3aa1ef778ef935.tar.gz volse-hubzilla-9838245c6c9b2e311650b53a1c3aa1ef778ef935.tar.bz2 volse-hubzilla-9838245c6c9b2e311650b53a1c3aa1ef778ef935.zip |
Merge branch 'gettext' of https://github.com/fabrixxm/friendika into fabrixxm-gettext
Diffstat (limited to 'mod/viewcontacts.php')
-rw-r--r-- | mod/viewcontacts.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/viewcontacts.php b/mod/viewcontacts.php index 90ff85b9d..063637bf9 100644 --- a/mod/viewcontacts.php +++ b/mod/viewcontacts.php @@ -41,9 +41,10 @@ function viewcontacts_content(&$a) { $o .= replace_macros($tpl, array( '$id' => $rr['id'], - '$alt_text' => t('Visit ') . $rr['name'] . t('\'s profile'), + '$alt_text' => t('Visit $username\'s profile'), '$thumb' => $rr['thumb'], '$name' => substr($rr['name'],0,20), + '$username' => $rr['name'], '$url' => $rr['url'] )); } |