Index: trunk/extensions/Translate/groups/mediawiki-defines.txt |
— | — | @@ -706,6 +706,8 @@ |
707 | 707 | |
708 | 708 | Ldap Authentication |
709 | 709 | |
| 710 | +Lingo |
| 711 | + |
710 | 712 | Link OpenID |
711 | 713 | optional = linkopenid-prefs, linkopenid-prefstext-xrdsurl |
712 | 714 | |
Index: trunk/extensions/Lingo/Lingo.i18n.php |
— | — | @@ -0,0 +1,14 @@ |
| 2 | +<?php |
| 3 | +/** |
| 4 | + * Internationalisation file for extension Lingo. |
| 5 | + * |
| 6 | + * @file |
| 7 | + * @ingroup Extensions |
| 8 | + */ |
| 9 | + |
| 10 | +$messages = array(); |
| 11 | + |
| 12 | +$messages['en'] = array( |
| 13 | + 'lingo-desc' => 'Provides hover-over tool tips on pages from words defined on the [[Terminology]] page' |
| 14 | +); |
| 15 | + |
Property changes on: trunk/extensions/Lingo/Lingo.i18n.php |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 16 | + native |
Index: trunk/extensions/Lingo/Lingo.php |
— | — | @@ -24,7 +24,7 @@ |
25 | 25 | 'name' => 'Lingo', |
26 | 26 | 'author' => array('Barry Coughlan', '[http://www.mediawiki.org/wiki/User:F.trott Stephan Gambke]'), |
27 | 27 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Lingo', |
28 | | - 'description' => 'Provides hover-over tool tips on articles from words defined on the [[Terminology]] page', |
| 28 | + 'descriptionmsg' => 'lingo-desc', |
29 | 29 | 'version' => LINGO_VERSION, |
30 | 30 | ); |
31 | 31 | |