]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
typo fix in format string
authorBrion Vibber <brion@pobox.com>
Wed, 30 Mar 2011 00:00:00 +0000 (17:00 -0700)
committerBrion Vibber <brion@pobox.com>
Wed, 30 Mar 2011 00:00:00 +0000 (17:00 -0700)
plugins/Bookmark/showbookmark.php

index 27f24876a7f6a2abe99137e82929a46c70d27990..40005c087f4edaa52f9da8f9216e81373bd2b821 100644 (file)
@@ -82,7 +82,7 @@ class ShowbookmarkAction extends ShownoticeAction
     {
         // TRANS: Title for bookmark.
         // TRANS: %1$s is a user nickname, %2$s is a bookmark title.
-        return sprintf(_('%1s$\'s bookmark for "%2$s"'),
+        return sprintf(_('%1$s\'s bookmark for "%2$s"'),
                        $this->user->nickname,
                        $this->bookmark->title);
     }