Index: trunk/extensions/Description2/Description2.i18n.php |
— | — | @@ -0,0 +1,17 @@ |
| 2 | +<?php |
| 3 | +/** |
| 4 | + * Internationalisation for Description2 extension |
| 5 | + * |
| 6 | + * @file |
| 7 | + * @ingroup Extensions |
| 8 | + */ |
| 9 | + |
| 10 | +$messages = array(); |
| 11 | + |
| 12 | +/** English |
| 13 | + * @author Daniel Friesen |
| 14 | + */ |
| 15 | +$messages['en'] = array( |
| 16 | + 'description2-desc' => 'Adds a description meta-tag to MediaWiki pages and into the ParserOutput for other extensions to use', |
| 17 | +); |
| 18 | + |
Property changes on: trunk/extensions/Description2/Description2.i18n.php |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 19 | + native |
Index: trunk/extensions/Description2/Description2.php |
— | — | @@ -28,12 +28,15 @@ |
29 | 29 | $wgExtensionCredits['other'][] = array( |
30 | 30 | 'path' => __FILE__, |
31 | 31 | 'name' => 'Description2', |
32 | | - 'version' => "0.1", |
| 32 | + 'version' => '0.1.1', |
33 | 33 | 'author' => 'Daniel Friesen', |
34 | 34 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Description2', |
35 | | - 'description' => 'Adds a description meta-tag to MW pages and into the ParserOutput for other extensions to use', |
| 35 | + 'descriptionmsg' => 'description2-desc', |
36 | 36 | ); |
37 | 37 | |
| 38 | +$dir = dirname( __FILE__ ); |
| 39 | +$wgExtensionMessagesFiles['Description2'] = $dir . '/Description2.i18n.php'; |
| 40 | + |
38 | 41 | $wgHooks['ParserAfterTidy'][] = 'egDescription2ParserAfterTidy'; |
39 | 42 | function egDescription2ParserAfterTidy( &$parser, &$text ) { |
40 | 43 | global $wgContLang; |
Index: trunk/extensions/Translate/groups/mediawiki-defines.txt |
— | — | @@ -323,6 +323,8 @@ |
324 | 324 | aliasfile = DeleteQueue/DeleteQueue.alias.php |
325 | 325 | optional = deletequeue-prod-reasons, deletequeue-speedy-reasons |
326 | 326 | |
| 327 | +Description2 |
| 328 | + |
327 | 329 | Did You Mean |
328 | 330 | |
329 | 331 | Discussion Threading |