summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorSiebrand Mazeland <s.mazeland@xs4all.nl>2010-11-02 23:08:59 +0100
committerSiebrand Mazeland <s.mazeland@xs4all.nl>2010-11-02 23:08:59 +0100
commita65362f7fa2e1ea92414fce391ea0f9624f0d100 (patch)
treee105a2b7910f38f0c17267946eae47be4312770d /classes
parent5bd6458f0097f8aaf4a60593c0f405e53bb1b6e9 (diff)
Add context for different uses of "%1$s (%2$s)"
Diffstat (limited to 'classes')
-rw-r--r--classes/Profile.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Profile.php b/classes/Profile.php
index 064ba551c..d580e1235 100644
--- a/classes/Profile.php
+++ b/classes/Profile.php
@@ -161,7 +161,7 @@ class Profile extends Memcached_DataObject
{
if ($this->fullname) {
// TRANS: Full name of a profile or group followed by nickname in parens
- return sprintf(_('%1$s (%2$s)'), $this->fullname, $this->nickname);
+ return sprintf(_m('FANCYNAME','%1$s (%2$s)'), $this->fullname, $this->nickname);
} else {
return $this->nickname;
}