]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Add context for different uses of "%1$s (%2$s)"
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Tue, 2 Nov 2010 22:08:59 +0000 (23:08 +0100)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Tue, 2 Nov 2010 22:08:59 +0000 (23:08 +0100)
actions/invite.php
classes/Profile.php
lib/command.php

index 2779437e0c3ccc1fb94f6eff8cc3efc4425d5e5c..e9adb3b7f93255cca5aa0234566857416a1b42c0 100644 (file)
@@ -142,7 +142,7 @@ class InviteAction extends CurrentUserDesignAction
             $this->elementStart('ul');
             foreach ($this->already as $other) {
                 // TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
-                $this->element('li', null, sprintf(_('%1$s (%2$s)'), $other->nickname, $other->email));
+                $this->element('li', null, sprintf(_m('INVITE','%1$s (%2$s)'), $other->nickname, $other->email));
             }
             $this->elementEnd('ul');
         }
@@ -156,7 +156,7 @@ class InviteAction extends CurrentUserDesignAction
             $this->elementStart('ul');
             foreach ($this->subbed as $other) {
                 // TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-                $this->element('li', null, sprintf(_('%1$s (%2$s)'), $other->nickname, $other->email));
+                $this->element('li', null, sprintf(_m('INVITE','%1$s (%2$s)'), $other->nickname, $other->email));
             }
             $this->elementEnd('ul');
         }
index 064ba551c4bf6de46047989e3b7a3cad8dba1a70..d580e12355a2e09fe3586b2f7a97210c9848ea3f 100644 (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;
         }
index 329617b3bc5bf2d051ec9683c0eebd15db56e5cb..ae69f04a1366b80d990110344374db868c40ef09 100644 (file)
@@ -423,7 +423,7 @@ class WhoisCommand extends Command
 
         // TRANS: Whois output.
         // TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
-        $whois = sprintf(_("%1\$s (%2\$s)"), $recipient->nickname,
+        $whois = sprintf(_m('WHOIS',"%1\$s (%2\$s)"), $recipient->nickname,
                          $recipient->profileurl);
         if ($recipient->fullname) {
             // TRANS: Whois output. %s is the full name of the queried user.