PHPackages                             mediawiki/lingo - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. mediawiki/lingo

ActiveMediawiki-extension[Utility &amp; Helpers](/categories/utility)

mediawiki/lingo
===============

Provides hover-over tool tips on wiki pages from terms defined on a wiki page

3.3.0(6mo ago)675.1k↑1083.3%51GPL-2.0-or-laterJavaScript

Since Mar 3Pushed 2w ago1 watchersCompare

[ Source](https://github.com/wikimedia/mediawiki-extensions-Lingo)[ Packagist](https://packagist.org/packages/mediawiki/lingo)[ Docs](https://www.mediawiki.org/wiki/Extension:Lingo)[ RSS](/packages/mediawiki-lingo/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependencies (6)Versions (41)Used By (1)

Lingo
=====

[](#lingo)

[![Build Status](https://camo.githubusercontent.com/7250dfd199e475072164ec8d7e8785c62848d3fa5719e8de7ad22a9f6c480f29/68747470733a2f2f7472617669732d63692e6f72672f77696b696d656469612f6d6564696177696b692d657874656e73696f6e732d4c696e676f2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/wikimedia/mediawiki-extensions-Lingo/builds)[![Code Coverage](https://camo.githubusercontent.com/03669148440ef2e720c7c086f615e0f22b1edb0a28e6543f1689d56cafdf6ad4/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f77696b696d656469612f6d6564696177696b692d657874656e73696f6e732d4c696e676f2f6261646765732f636f7665726167652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/wikimedia/mediawiki-extensions-Lingo/?branch=master)[![Code Quality](https://camo.githubusercontent.com/52884bff22118ff6f48859b7f94048090b75e6d177224cb79fd7747060804b0f/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f77696b696d656469612f6d6564696177696b692d657874656e73696f6e732d4c696e676f2f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/wikimedia/mediawiki-extensions-Lingo/?branch=master)[![Dependency Status](https://camo.githubusercontent.com/5261b1548661e01a644cd6c5207fba7922a93ac1e7723dde59873804519e703a/68747470733a2f2f7777772e76657273696f6e6579652e636f6d2f7068702f6d6564696177696b693a6c696e676f2f62616467652e706e67)](https://www.versioneye.com/php/mediawiki:lingo)[![Latest Stable Version](https://camo.githubusercontent.com/44dba318b2c214c7bad1fd0b91281a909892de4b5d63236ce91aa52ad359de2d/68747470733a2f2f706f7365722e707567782e6f72672f6d6564696177696b692f6c696e676f2f76657273696f6e2e706e67)](https://packagist.org/packages/mediawiki/lingo)[![Packagist download count](https://camo.githubusercontent.com/c753a498feaddf0f0ee083193e9a00b06b2c5febb5d97706380b0f14adfb112e/68747470733a2f2f706f7365722e707567782e6f72672f6d6564696177696b692f6c696e676f2f642f746f74616c2e706e67)](https://packagist.org/packages/mediawiki/lingo)

Lingo is a glossary extension to MediaWiki, that lets you define abbreviations and their definitions on a wiki page. It displays these definitions whenever an abbreviation is hovered over in an article.

See  for online documentation.

Installation &amp; Activation
-----------------------------

[](#installation--activation)

The recommended way to install this extension is by using [Composer](https://getcomposer.org/).

1. Add the following to the MediaWiki `composer.local.json` file

```
{
	"require": {
		"mediawiki/lingo": "^3.0"
	}
}
```

2. Run `php composer.phar update mediawiki/lingo` from the MediaWiki installation directory.
3. Add the following code to your LocalSettings.php:

```
wfLoadExtension('Lingo');
```

Updating
--------

[](#updating)

Run `php composer.phar update mediawiki/lingo` from the MediaWiki installation directory.

Customization
-------------

[](#customization)

Add the following to `LocalSettings.php` and uncomment/modify as needed:

```
$wgHooks['SetupAfterCache'][] = function() {

    // specify a different name for the terminology page (Default: 'Terminology' (or localised version). See MediaWiki:Lingo-terminologypagename.)
    //$GLOBALS['wgexLingoPage'] = 'Terminology';

    // specify that each term should be annotated only once per page (Default: false)
    //$GLOBALS['wgexLingoDisplayOnce'] = false;

    // specify what namespaces should or should not be used (Default: Empty, i.e. use all namespaces)
    //$GLOBALS['wgexLingoUseNamespaces'][NS_SPECIAL] = false;

    // set default cache type (Default: null, i.e. use main cache)
    //$GLOBALS['wgexLingoCacheType'] = CACHE_NONE;

    // use ApprovedRevs extension on the Terminology page (Default: false)
    //$GLOBALS['wgexLingoEnableApprovedRevs'] = true;

};
```

Usage
-----

[](#usage)

By default Lingo will mark up any page that is not in a forbidden namespace. To exclude a page from markup you can include **NOGLOSSARY** anywhere in the article. In some cases it may be necessary to exclude portions of a page, e.g. because Lingo interferes with some JavaScript. This can be achieved by wrapping the part in an HTML element (e.g. a span or a div) and specify class="noglossary".

### Terminology page

[](#terminology-page)

Create the page "Terminology" (no namespace), and insert some entries using the following syntax:

;FTP:File Transport Protocol ;AAAAA:American Association Against Acronym Abuse ;ACK:Acknowledge ;AFAIK:As Far As I Know ;AWGTHTGTATA:Are We Going To Have To Go Through All This Again ;HTTP:HyperText Transfer Protocol

Running tests
-------------

[](#running-tests)

From the `Lingo` directory run

```
php ../../tests/phpunit/phpunit.php  --group extensions-lingo -c phpunit.xml.dist
```

Reporting bugs
--------------

[](#reporting-bugs)

Comments, questions and suggestions should be sent or posted to:

- the Lingo discussion page: [https://www.mediawiki.org/wiki/Extension\_talk:Lingo](https://www.mediawiki.org/wiki/Extension_talk:Lingo)
- the maintainer:

Credits
-------

[](#credits)

Lingo is a rewrite of Extension:Terminology, written by BarkerJr with modifications by Benjamin Kahn. It was originally written by Barry Coughlan and is currently maintained by Stephan Gambke.

License
-------

[](#license)

[GNU General Public License 2.0](https://www.gnu.org/copyleft/gpl.html) or later.

###  Health Score

59

—

FairBetter than 98% of packages

Maintenance84

Actively maintained with recent releases

Popularity37

Limited adoption so far

Community30

Small or concentrated contributor base

Maturity75

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~287 days

Recently: every ~266 days

Total

16

Last Release

189d ago

Major Versions

1.2.0 → 2.0.02016-03-09

2.0.3 → 3.0.02018-05-06

PHP version history (4 changes)1.0.0PHP &gt;=5.3.0

2.0.0PHP &gt;=5.3.2

3.0.0PHP &gt;=5.5

3.1.1PHP &gt;=7.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/05e03b274e4924bf511416ec2f343c76609b8f3856e1d7804fc96f1338ce5bc3?d=identicon)[s7eph4n](/maintainers/s7eph4n)

![](https://www.gravatar.com/avatar/bfa0b884c7078fb560aecc8f0f496740e89b9b0bf467c3e3597b52fece985b76?d=identicon)[vedmaka](/maintainers/vedmaka)

![](https://www.gravatar.com/avatar/1a8dceaddc353458cd46c8059fe44219691368fd890e29371363035f669d25a9?d=identicon)[WikiTeq](/maintainers/WikiTeq)

---

Top Contributors

[![translatewiki](https://avatars.githubusercontent.com/u/24829418?v=4)](https://github.com/translatewiki "translatewiki (157 commits)")[![s7eph4n](https://avatars.githubusercontent.com/u/2829850?v=4)](https://github.com/s7eph4n "s7eph4n (111 commits)")[![umherirrender](https://avatars.githubusercontent.com/u/1174884?v=4)](https://github.com/umherirrender "umherirrender (25 commits)")[![thiemowmde](https://avatars.githubusercontent.com/u/6576639?v=4)](https://github.com/thiemowmde "thiemowmde (14 commits)")[![legoktm](https://avatars.githubusercontent.com/u/81392?v=4)](https://github.com/legoktm "legoktm (10 commits)")[![hashar](https://avatars.githubusercontent.com/u/281689?v=4)](https://github.com/hashar "hashar (9 commits)")[![hexmode](https://avatars.githubusercontent.com/u/43581?v=4)](https://github.com/hexmode "hexmode (5 commits)")[![reedy](https://avatars.githubusercontent.com/u/67615?v=4)](https://github.com/reedy "reedy (4 commits)")[![YOUR1](https://avatars.githubusercontent.com/u/3681016?v=4)](https://github.com/YOUR1 "YOUR1 (3 commits)")[![FlorianSW](https://avatars.githubusercontent.com/u/4892966?v=4)](https://github.com/FlorianSW "FlorianSW (3 commits)")[![Jayprakash-SE](https://avatars.githubusercontent.com/u/19777712?v=4)](https://github.com/Jayprakash-SE "Jayprakash-SE (3 commits)")[![kizule](https://avatars.githubusercontent.com/u/28963303?v=4)](https://github.com/kizule "kizule (3 commits)")[![mwjames](https://avatars.githubusercontent.com/u/1245473?v=4)](https://github.com/mwjames "mwjames (3 commits)")[![paladox](https://avatars.githubusercontent.com/u/5727000?v=4)](https://github.com/paladox "paladox (3 commits)")[![xSavitar](https://avatars.githubusercontent.com/u/4872561?v=4)](https://github.com/xSavitar "xSavitar (3 commits)")[![jdforrester](https://avatars.githubusercontent.com/u/881572?v=4)](https://github.com/jdforrester "jdforrester (2 commits)")[![mary-kate](https://avatars.githubusercontent.com/u/2213994?v=4)](https://github.com/mary-kate "mary-kate (2 commits)")[![atdt](https://avatars.githubusercontent.com/u/376462?v=4)](https://github.com/atdt "atdt (2 commits)")[![siebrand](https://avatars.githubusercontent.com/u/210297?v=4)](https://github.com/siebrand "siebrand (2 commits)")[![bawolff](https://avatars.githubusercontent.com/u/6529932?v=4)](https://github.com/bawolff "bawolff (2 commits)")

---

Tags

mediawikiextensionwikiglossaryterminology

### Embed Badge

![Health badge](/badges/mediawiki-lingo/health.svg)

```
[![Health](https://phpackages.com/badges/mediawiki-lingo/health.svg)](https://phpackages.com/packages/mediawiki-lingo)
```

###  Alternatives

[mediawiki/semantic-glossary

A terminology markup extension with a Semantic MediaWiki back-end

1452.6k](/packages/mediawiki-semantic-glossary)[helsingborg-stad/municipio

A bootstrap theme for creating municipality sites.

4028.5k10](/packages/helsingborg-stad-municipio)[starcitizentools/citizen-skin

A beautiful, usable, responsive MediaWiki skin with in-depth extension support. Originally developed for the Star Citizen Wiki.

3376.6k](/packages/starcitizentools-citizen-skin)[mediawiki/maps

Adds various mapping features to MediaWiki

84152.3k3](/packages/mediawiki-maps)[mediawiki/chameleon-skin

A highly flexible MediaWiki skin using Bootstrap 5

12585.7k2](/packages/mediawiki-chameleon-skin)[mediawiki/page-forms

Forms for creating and editing wiki pages.

2380.7k2](/packages/mediawiki-page-forms)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
