diff --git a/Popups.i18n.php b/Popups.i18n.php new file mode 100644 index 000000000..1c475091c --- /dev/null +++ b/Popups.i18n.php @@ -0,0 +1,35 @@ +. + * + * @file + * @ingroup extensions + */ + +$messages = array(); + +/** + * English + */ +$messages['en'] = array( + 'popups-desc' => 'Displays popups when you hover over article links', +); + +/** Message documentation (Message documentation) + */ +$messages['qqq'] = array( + 'popups-desc' => '{{desc|name=Popups|url=https://www.mediawiki.org/wiki/Extension:Popups}}', +); diff --git a/Popups.php b/Popups.php new file mode 100644 index 000000000..ae9e2df4a --- /dev/null +++ b/Popups.php @@ -0,0 +1,33 @@ +. + * + * @file + * @ingroup extensions + */ + +$localBasePath = dirname( __DIR__ ) . '/Popups'; +$remoteExtPath = 'Popups'; + +$wgExtensionCredits['other'][] = array( + 'author' => array( 'Prateek Saxena', 'Yair Rand' ), + 'descriptionmsg' => 'popups-desc', + 'name' => 'Popups', + 'path' => __FILE__, + 'url' => 'https://www.mediawiki.org/wiki/Extension:Popups', +); + +$wgExtensionMessagesFiles['Popups'] = __DIR__ . '/Popups.i18n.php';