]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/Mapstraction/usermap.php
More info for a proper, fancy-url lighttpd setup
[quix0rs-gnu-social.git] / plugins / Mapstraction / usermap.php
index 094334f6056f0d51e3ef69626827e9885b46042e..99a43e538a5c81fb09ac551fec98b101450ba936 100644 (file)
@@ -42,10 +42,8 @@ if (!defined('STATUSNET')) {
  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  * @link     http://status.net/
  */
-
 class UsermapAction extends MapAction
 {
-
     function prepare($args)
     {
         if(parent::prepare($args)) {
@@ -60,16 +58,17 @@ class UsermapAction extends MapAction
 
     function title()
     {
-        if (!empty($this->profile->fullname)) {
-            $base = $this->profile->fullname . ' (' . $this->user->nickname . ') ';
-        } else {
-            $base = $this->user->nickname;
-        }
+        $base = $this->profile->getFancyName();
 
         if ($this->page == 1) {
-            return $base;
+            // TRANS: Title for map widget.
+            // TRANS: %s is a user name.
+            return sprintf(_m('%s map'),$base);
         } else {
-            return sprintf(_m("%s map, page %d"),
+            // @todo CHECKME: Is the part ", page %2$d" relevant here?
+            // TRANS: Title for map widget.
+            // TRANS: %1$s is a user name, %2$d is a page nember.
+            return sprintf(_m("%1$s map, page %2$d"),
                            $base,
                            $this->page);
         }