Localisation updates from https://translatewiki.net.

Change-Id: I470d703be145e19d334e9797ffb1c4cd18fa3c7d
1 file changed
tree: 49d206d39d0eb3ebbe988f313454438cc4d44b8a
  1. .phan/
  2. docs/
  3. i18n/
  4. includes/
  5. modules/
  6. tests/
  7. .eslintrc.json
  8. .gitignore
  9. .gitreview
  10. .phpcs.xml
  11. .stylelintrc.json
  12. CODE_OF_CONDUCT.md
  13. composer.json
  14. COPYING
  15. Doxyfile
  16. extension.json
  17. GlobalWatchlist.alias.php
  18. Gruntfile.js
  19. jsdoc.json
  20. package-lock.json
  21. package.json
  22. README.md
README.md

GlobalWatchlist

The GlobalWatchlist extension provides a basic interface to view one's watchlists on multiple wikis at once.

It is being developed as part of a grant from the Wikimedia Foundation.

Installation

To install the extension, download the code from this repository and put it in the extensions/ folder of a Mediawiki installation. Then add the following code to the LocalSettings.php file.

wfLoadExtension( 'GlobalWatchlist' );

Configuration

The extension currently defines the following configuration values:

  • wgGlobalWatchlistWikibaseSite

Set this to the base URL of the site for which Wikibase labels should be fetched, or false for not trying to fetch Wikibase labels from any site.

By default, the value is false.

  • wgGlobalWatchlistUseVue

Set this to true to enable the Vue version of the JavaScript for Special:GlobalWatchlist.

By default, the value is false.

Use

The extension provides two new special pages.

Special:GlobalWatchlist

Visiting Special:GlobalWatchlist with this extension enabled shows the user a basic view of their watchlists on multiple wikis. Users can choose which wikis to show, as well as apply filters to the changes shown, in Special:GlobalWatchlistSettings. Further documentation is available at docs/GlobalWatchlist.md.

Special:GlobalWatchlistSettings

Visiting Special:GlobalWatchlistSettings with this extension enabled allows users to configure their global watchlist, including which sites to include. Further documentation is available at docs/Settings.md.