diff options
author | Brion Vibber <brion@pobox.com> | 2010-11-03 16:09:49 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-11-03 16:09:49 -0700 |
commit | b716d01a41c54c06676a1e54a48c36e05755a247 (patch) | |
tree | 822280a837809452c94905b2beb1d91a760752c7 /classes/Profile.php | |
parent | 0229c22d2358933758fea98284349a871106b3bd (diff) | |
parent | 28e009898f6ce6dd72471a5ae4abbc91e6b00193 (diff) |
Merge branch '0.9.x' into 1.0.x
Diffstat (limited to 'classes/Profile.php')
-rw-r--r-- | classes/Profile.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Profile.php b/classes/Profile.php index 545950a9e..b56e508c6 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; } |