X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FForceGroup%2FForceGroupPlugin.php;h=fb98644846b8278922a06748cdfb37ab3696ffc2;hb=e79034e163967a375aee8a9afff54fd9c37030dd;hp=e0a04fccacac1ffe0f77f0e4ae32976e3fae09ac;hpb=6e58a926e3b3889d96df37c71f4aa090700041fd;p=quix0rs-gnu-social.git diff --git a/plugins/ForceGroup/ForceGroupPlugin.php b/plugins/ForceGroup/ForceGroupPlugin.php index e0a04fccac..fb98644846 100644 --- a/plugins/ForceGroup/ForceGroupPlugin.php +++ b/plugins/ForceGroup/ForceGroupPlugin.php @@ -73,10 +73,36 @@ class ForceGroupPlugin extends Plugin Event::handle('EndJoinGroup', array($group, $user)); } } catch (Exception $e) { - throw new ServerException(sprintf(_('Could not join user %1$s to group %2$s.'), + // TRANS: Server exception. + // TRANS: %1$s is a user nickname, %2$s is a group nickname. + throw new ServerException(sprintf(_m('Could not join user %1$s to group %2$s.'), $user->nickname, $group->nickname)); } } } } + + /** + * 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:ForceGroup'; + + $versions[] = array('name' => 'ForceGroup', + 'version' => STATUSNET_VERSION, + 'author' => 'Brion Vibber', + 'homepage' => $url, + 'rawdescription' => + // TRANS: Plugin description. + _m('Allows forced group memberships and forces all notices to appear in groups that users were forced in.')); + + return true; + } }