Index: trunk/extensions/SkinPerNamespace/SkinPerNamespace.i18n.php |
— | — | @@ -0,0 +1,19 @@ |
| 2 | +<?php |
| 3 | +/** |
| 4 | + * Internationalisation file for SkinPerNamespace extension. |
| 5 | + * |
| 6 | + * @file |
| 7 | + * @ingroup Extensions |
| 8 | + */ |
| 9 | + |
| 10 | +$messages = array(); |
| 11 | + |
| 12 | +$messages['en'] = array( |
| 13 | + 'skinpernamespace-desc' => 'Allows a per-namespace skin', |
| 14 | +); |
| 15 | + |
| 16 | +/** Message documentation (Message documentation) */ |
| 17 | +$messages['qqq'] = array( |
| 18 | + 'skinpernamespace-desc' => '{{desc}}', |
| 19 | +); |
| 20 | + |
Property changes on: trunk/extensions/SkinPerNamespace/SkinPerNamespace.i18n.php |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 21 | + native |
Index: trunk/extensions/SkinPerNamespace/SkinPerNamespace.php |
— | — | @@ -17,11 +17,13 @@ |
18 | 18 | 'name' => 'SkinPerNamespace', |
19 | 19 | 'url' => 'https://www.mediawiki.org/wiki/Extension:SkinPerNamespace', |
20 | 20 | 'version' => '2012-02-18', |
21 | | - 'description' => 'Allow a per-namespace skin', |
| 21 | + 'descriptionmsg' => 'skinpernamespace-desc', |
22 | 22 | 'author' => 'Alexandre Emsenhuber', |
23 | 23 | |
24 | 24 | ); |
25 | 25 | |
| 26 | +$wgExtensionMessagesFiles['SkinPerNamespace'] = dirname( __FILE__ ) . "/SkinPerNamespace.i18n.php"; |
| 27 | + |
26 | 28 | // Configuration part, you can copy it to your LocalSettings.php and change it |
27 | 29 | // there, *not* here. Also modify it after including this file or you won't see |
28 | 30 | // any changes. |