MediaWiki:Gadget-Message-names.js

From Old School Near-Reality Wiki
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
 1 /*
 2  * Add a toolboox link to display the current page with MediaWiki message names replacing their text
 3  * Adapted from  https://en.wikipedia.org/wiki/MediaWiki:Gadget-ShowMessageNames.js
 4  */
 5 $(function() {
 6   mw.util.addPortletLink(
 7     'p-tb',
 8     location.href.replace( location.hash, '' ) + ( location.search ? '&' : '?' ) + 'uselang=qqx',
 9     'Message names',
10     't-messagenames',
11     'Display the current page with MediaWiki message names replacing their text'
12   );
13 });