Add context for different uses of "%1$s (%2$s)"

This commit is contained in:
Siebrand Mazeland
2010-11-02 23:08:59 +01:00
parent 5bd6458f00
commit a65362f7fa
3 changed files with 4 additions and 4 deletions

View File

@@ -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;
}