Localisation updates from https://translatewiki.net.
[T119942Repr.git] / BoilerPlate.php
blob4f9a370f6aca4f6c1cb843e0efa30d26026260e3
1 <?php
3 if ( function_exists( 'wfLoadExtension' ) ) {
4 wfLoadExtension( 'BoilerPlate' );
5 // Keep i18n globals so mergeMessageFileList.php doesn't break
6 $wgMessagesDirs['BoilerPlate'] = __DIR__ . '/i18n';
7 $wgExtensionMessagesFiles['BoilerPlateAlias'] = __DIR__ . '/BoilerPlate.i18n.alias.php';
8 wfWarn(
9 'Deprecated PHP entry point used for BoilerPlate extension. Please use wfLoadExtension ' .
10 'instead, see https://www.mediawiki.org/wiki/Extension_registration for more details.'
12 return true;
13 } else {
14 die( 'This version of the BoilerPlate extension requires MediaWiki 1.25+' );