Index: trunk/extensions/Translate/SpecialLanguageStats.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | if ( !defined( 'MEDIAWIKI' ) ) die(); |
| 4 | + |
4 | 5 | /** |
5 | 6 | * Implements a special page which givens translation statistics for a given |
6 | 7 | * set of message groups. Message group names can be entered (pipe separated) |
Index: trunk/extensions/Translate/SpecialFirstSteps.php |
— | — | @@ -1,4 +1,6 @@ |
2 | 2 | <?php |
| 3 | +if ( !defined( 'MEDIAWIKI' ) ) die(); |
| 4 | + |
3 | 5 | /** |
4 | 6 | * @author Niklas Laxström |
5 | 7 | * @copyright Copyright © 2010 Niklas Laxström |
Index: trunk/extensions/Translate/SpecialImportTranslations.php |
— | — | @@ -1,4 +1,6 @@ |
2 | 2 | <?php |
| 3 | +if ( !defined( 'MEDIAWIKI' ) ) die(); |
| 4 | + |
3 | 5 | /** |
4 | 6 | * Special page to import po files exported using Translate extension. |
5 | 7 | * |
Index: trunk/extensions/Translate/SpecialSupportedLanguages.php |
— | — | @@ -1,4 +1,6 @@ |
2 | 2 | <?php |
| 3 | +if ( !defined( 'MEDIAWIKI' ) ) die(); |
| 4 | + |
3 | 5 | /** |
4 | 6 | * @author Niklas Laxström |
5 | 7 | * @copyright Copyright © 2010 Niklas Laxström |
Index: trunk/extensions/Translate/SpecialTranslationStats.php |
— | — | @@ -1,4 +1,5 @@ |
2 | 2 | <?php |
| 3 | +if ( !defined( 'MEDIAWIKI' ) ) die(); |
3 | 4 | |
4 | 5 | class SpecialTranslationStats extends SpecialPage { |
5 | 6 | |