protected function statusText()
{
+ // TRANS: Leave this message unchanged.
$pattern = _m('"%s"');
$url = $this->notice->bestUrl();
$suffix = ' ' . $url;
public function getText()
{
+ // TRANS: Tooltip for image to share a notice on Twitter.
return _m('Share on Twitter');
}
public function getText()
{
$host = parse_url($this->baseurl, PHP_URL_HOST);
+ // TRANS: Tooltip for image to share a notice on another platform (other than Twitter or Facebook).
+ // TRANS: %s is a host name.
return sprintf(_m('Share on %s'), $host);
}
return $this->baseurl . '/notice/new?' .
http_build_query($args, null, '&');
}
-
}
class FacebookShareTarget extends NoticeShareTarget
public function getText()
{
+ // TRANS: Tooltip for image to share a notice on Facebook.
return _m('Share on Facebook');
}
{
$args = array(
'u' => $this->notice->bestUrl(),
+ // TRANS: %s is notice content that is shared on Twitter, Facebook or another platform.
't' => sprintf(_m('"%s"'), $this->notice->content),
);
return 'http://www.facebook.com/sharer.php?' .
http_build_query($args, null, '&');
}
-}
\ No newline at end of file
+
+ /**
+ * Provide plugin version information.
+ *
+ * This data is used when showing the version page.
+ *
+ * @param array &$versions array of version data arrays; see EVENTS.txt
+ *
+ * @return boolean hook value
+ */
+ function onPluginVersion(&$versions)
+ {
+ $url = 'http://status.net/wiki/Plugin:ShareNotice';
+
+ $versions[] = array('name' => 'ShareNotice',
+ 'version' => STATUSNET_VERSION,
+ 'author' => 'Brion Vibber',
+ 'homepage' => $url,
+ 'rawdescription' =>
+ // TRANS: Plugin description.
+ _m('This plugin allows sharing of notices to Twitter, Facebook and other platforms.'));
+
+ return true;
+ }
+}