Index: trunk/extensions/ProxyConnect/ProxyConnect.i18n.php |
— | — | @@ -0,0 +1,14 @@ |
| 2 | +<?php |
| 3 | +/** |
| 4 | + * Internationalisation file for extension ProxyConnect. |
| 5 | + * |
| 6 | + * @file |
| 7 | + * @ingroup Extensions |
| 8 | + */ |
| 9 | + |
| 10 | +$messages = array(); |
| 11 | + |
| 12 | +$messages['en'] = array( |
| 13 | + 'proxyconnect-desc' => 'Implements the server side functionality of Proxy Connect', |
| 14 | +); |
| 15 | + |
Property changes on: trunk/extensions/ProxyConnect/ProxyConnect.i18n.php |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 16 | + native |
Index: trunk/extensions/ProxyConnect/ProxyConnect.php |
— | — | @@ -16,13 +16,18 @@ |
17 | 17 | |
18 | 18 | // Extension credits that will show up on Special:Version |
19 | 19 | $wgExtensionCredits['special'][] = array( |
| 20 | + 'path' => __FILE__, |
20 | 21 | 'name' => 'ProxyConnect', |
21 | | - 'version' => '1.0', |
| 22 | + 'version' => '1.0.1', |
22 | 23 | 'author' => 'Travis Derouin', |
23 | | - 'description' => 'Implements the server side functionality of Proxy Connect', |
24 | 24 | 'url' => 'http://www.mediawiki.org/wiki/Extension:ProxyConnect', |
| 25 | + 'descriptionmsg' => 'proxyconnect-desc', |
25 | 26 | ); |
26 | 27 | |
27 | 28 | // Set up the new special page |
28 | 29 | $wgSpecialPages['ProxyConnect'] = 'ProxyConnect'; |
29 | | -$wgAutoloadClasses['ProxyConnect'] = dirname( __FILE__ ) . '/ProxyConnect.body.php'; |
| 30 | + |
| 31 | +$dir = dirname( __FILE__ ); |
| 32 | +$wgAutoloadClasses['ProxyConnect'] = $dir. '/ProxyConnect.body.php'; |
| 33 | +$wgExtensionMessagesFiles['ProxyConnect'] = $dir . '/ProxyConnect.i18n.php'; |
| 34 | + |
Index: trunk/extensions/Translate/groups/mediawiki-defines.txt |
— | — | @@ -909,6 +909,8 @@ |
910 | 910 | Protect Section |
911 | 911 | descmsg = protectsection_desc |
912 | 912 | |
| 913 | +Proxy Connect |
| 914 | + |
913 | 915 | PSI NoTocNum |
914 | 916 | magicfile = PSINoTocNum/PSINoTocNum.i18n.magic.php |
915 | 917 | |