Index: trunk/extensions/Translate/groups/mediawiki-defines.txt |
— | — | @@ -1258,6 +1258,9 @@ |
1259 | 1259 | Short Url |
1260 | 1260 | aliasfile = ShortUrl/ShortUrl.alias.php |
1261 | 1261 | |
| 1262 | +Shout Box |
| 1263 | +ignored = shoutbox-url, shoutbox-url-with-css |
| 1264 | + |
1262 | 1265 | Show Processlist |
1263 | 1266 | aliasfile = ShowProcesslist/ShowProcesslist.alias.php |
1264 | 1267 | |
Index: trunk/extensions/ShoutBox/ShoutBox.i18n.php |
— | — | @@ -12,6 +12,7 @@ |
13 | 13 | * @author Jim R. Wilson |
14 | 14 | */ |
15 | 15 | $messages['en'] = array( |
| 16 | + 'shoutbox-desc' => 'Adds a parser function for embedding your own shoutbox', |
16 | 17 | 'shoutbox-missing-params' => 'ShoutBox is missing a required parameter.', |
17 | 18 | 'shoutbox-bad-params' => 'ShoutBox received a bad parameter.', |
18 | 19 | 'shoutbox-unparsable-param-string' => 'ShoutBox received the unparsable parameter string "<tt>$1</tt>".', |
— | — | @@ -20,4 +21,4 @@ |
21 | 22 | 'shoutbox-illegal-height' => 'ShoutBox received the illegal height parameter "$1".', |
22 | 23 | 'shoutbox-url' => 'http://$1.shoutbox.us/?LANG=US', |
23 | 24 | 'shoutbox-url-with-css' => 'http://$1.shoutbox.us/?LANG=US&extcss=$2', |
24 | | -); |
\ No newline at end of file |
| 25 | +); |
Index: trunk/extensions/ShoutBox/ShoutBox.php |
— | — | @@ -55,11 +55,12 @@ |
56 | 56 | |
57 | 57 | # Credits |
58 | 58 | $wgExtensionCredits['parserhook'][] = array( |
| 59 | + 'path' => __FILE__, |
59 | 60 | 'name' => 'ShoutBox', |
60 | | - 'version' => '0.2.1', |
| 61 | + 'version' => '0.2.2', |
61 | 62 | 'author' => array( 'Jim R. Wilson', 'Jack Phoenix' ), |
62 | 63 | 'url' => 'http://www.mediawiki.org/wiki/Extension:ShoutBox', |
63 | | - 'description' => 'Adds a parser function for embedding your own shoutbox', |
| 64 | + 'descriptionmsg' => 'shoutbox-desc', |
64 | 65 | ); |
65 | 66 | |
66 | 67 | // Configuration settings |