diff --git a/LocalWiki.php b/LocalWiki.php index ef9742a0ee..ee5b0fe297 100644 --- a/LocalWiki.php +++ b/LocalWiki.php @@ -35,6 +35,17 @@ function onSkinAddFooterLinks( Skin $skin, string $key, array &$footerItems ) { } } + break; + case 'dlfmwiki': + $wgHooks['TranslatePostInitGroups'][] = function ( &$list, &$deps, &$autoload ) { + $id = 'local-sys-msg'; + $mg = new WikiMessageGroup( $id, 'local-messages' ); + $mg->setLabel( 'Local System Messagss' ); + $mg->setDescription( 'Messages used specially on this wiki.' ); + $list[$id] = $mg; + return true; + }; + break; case 'dmlwikiwiki': $wgHooks['SpecialPage_initList'][] = 'onSpecialPage_initList';