Index: trunk/extensions/LdapAuthentication/LdapAuthentication.i18n.php |
— | — | @@ -0,0 +1,16 @@ |
| 2 | +<?php |
| 3 | +/** |
| 4 | + * Internationalisation file for extension LdapAuthentication. |
| 5 | + * |
| 6 | + * @addtogroup Extensions |
| 7 | + */ |
| 8 | + |
| 9 | +$messages = array(); |
| 10 | + |
| 11 | +/** English |
| 12 | + * @author Ryan Lane |
| 13 | + */ |
| 14 | +$messages['en'] = array( |
| 15 | + 'ldapauthentication-desc' => 'LDAP authentication plugin with support for multiple LDAP authentication methods', |
| 16 | +); |
| 17 | + |
Property changes on: trunk/extensions/LdapAuthentication/LdapAuthentication.i18n.php |
___________________________________________________________________ |
Name: svn:eol-style |
1 | 18 | + native |
Index: trunk/extensions/LdapAuthentication/LdapAuthentication.php |
— | — | @@ -45,13 +45,18 @@ |
46 | 46 | * Add extension information to Special:Version |
47 | 47 | */ |
48 | 48 | $wgExtensionCredits['other'][] = array( |
| 49 | + 'path' => __FILE__, |
49 | 50 | 'name' => 'LDAP Authentication Plugin', |
50 | 51 | 'version' => '1.2b (alpha)', |
51 | 52 | 'author' => 'Ryan Lane', |
52 | 53 | 'description' => 'LDAP Authentication plugin with support for multiple LDAP authentication methods', |
| 54 | + 'descriptionmsg' => 'ldapauthentication-desc', |
53 | 55 | 'url' => 'http://www.mediawiki.org/wiki/Extension:LDAP_Authentication', |
54 | | - ); |
| 56 | +); |
55 | 57 | |
| 58 | +$dir = dirname(__FILE__) . '/'; |
| 59 | +$wgExtensionMessagesFiles['LdapAuthentication'] = $dir . 'LdapAuthentication.i18n.php'; |
| 60 | + |
56 | 61 | //constants for search base |
57 | 62 | define("GROUPDN", 0); |
58 | 63 | define("USERDN", 1); |
Index: trunk/extensions/Translate/groups/mediawiki-defines.txt |
— | — | @@ -569,6 +569,8 @@ |
570 | 570 | |
571 | 571 | Latex Doc |
572 | 572 | |
| 573 | +LDAP authentication |
| 574 | + |
573 | 575 | Link OpenID |
574 | 576 | optional = linkopenid-prefs, linkopenid-prefstext-xrdsurl |
575 | 577 | |