r98643 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r98642‎ | r98643 | r98644 >
Date:23:23, 1 October 2011
Author:jeroendedauw
Status:deferred
Tags:
Comment:
i18n fix
Modified paths:
  • /trunk/extensions/Validator/Validator.php (modified) (history)
  • /trunk/extensions/Validator/includes/parserHooks/Validator_Describe.php (modified) (history)

Diff [purge]

Index: trunk/extensions/Validator/includes/parserHooks/Validator_Describe.php
@@ -170,7 +170,7 @@
171171 }
172172 }
173173
174 - $description .= $this->msg( 'validator-describe-aliases', 'parsemag', $wgLang->listToText( $aliases ), count( $aliases ) );
 174+ $description .= $this->msg( 'validator-describe-aliases', $wgLang->listToText( $aliases ), count( $aliases ) );
175175 $description .= "\n\n";
176176 }
177177
Index: trunk/extensions/Validator/Validator.php
@@ -25,7 +25,7 @@
2626 die( 'Not an entry point.' );
2727 }
2828
29 -define( 'Validator_VERSION', '0.4.11' );
 29+define( 'Validator_VERSION', '0.4.12 alpha' );
3030
3131 // Register the internationalization file.
3232 $wgExtensionMessagesFiles['Validator'] = dirname( __FILE__ ) . '/Validator.i18n.php';