X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FMapstraction%2Fusermap.php;h=99a43e538a5c81fb09ac551fec98b101450ba936;hb=9d42137024027eeded76016d4708439395983870;hp=54412146ee49cb001e14a4c8695c5835e640fc27;hpb=d8d9edfc990a20f67421e40a7d3055a58697a002;p=quix0rs-gnu-social.git diff --git a/plugins/Mapstraction/usermap.php b/plugins/Mapstraction/usermap.php index 54412146ee..99a43e538a 100644 --- a/plugins/Mapstraction/usermap.php +++ b/plugins/Mapstraction/usermap.php @@ -61,11 +61,14 @@ class UsermapAction extends MapAction $base = $this->profile->getFancyName(); if ($this->page == 1) { - // @todo CHECKME: inconsisten with paged variant below. " map" missing. - return $base; + // TRANS: Title for map widget. + // TRANS: %s is a user name. + return sprintf(_m('%s map'),$base); } else { // @todo CHECKME: Is the part ", page %2$d" relevant here? - return sprintf(_m("%s map, page %d"), + // 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); }