Diferencia entre revisiones de «MediaWiki:Gadget-mySandbox.js»

De WikiEducator
Saltar a: navegación, buscar
m (1 revisión: import from en.WE after update to MW 1.23+)
(translate Sandbox -> Taller)
 
Línea 22: Línea 22:
 
// Costomize/Translate this to your needs
 
// Costomize/Translate this to your needs
 
conf = {
 
conf = {
subpageName: 'Sandbox',
+
subpageName: 'Taller',
portletLabel: 'Sandbox',
+
portletLabel: 'Taller',
portletTooltip: 'Go to your sandbox',
+
portletTooltip: 'Tu taller',
 
editintroPagename: 'Template:User_sandbox',
 
editintroPagename: 'Template:User_sandbox',
 
preloadPagename: 'Template:User_sandbox/preload'
 
preloadPagename: 'Template:User_sandbox/preload'

Última revisión de 21:45 3 sep 2014

/*  _____________________________________________________________________________
 * |                                                                             |
 * |                    === WARNING: GLOBAL GADGET FILE ===                      |
 * |                  Changes to this page affect many users.                    |
 * | Please discuss changes on the talk page or on [[WT:Gadget]] before editing. |
 * |_____________________________________________________________________________|
 */
 
 
/**
 * Add a "My sandbox" link to the personal portlet menu.
 * Dependencies: mediawiki.util, mediawiki.Title, mediawiki.Uri
 *
 * @source mediawiki.org/wiki/Snippets/MySandbox
 * @version 2
 */
( function ( mw, $ ) {
 
	$( document ).ready( function () {
		var conf, title, url;
 
		// Costomize/Translate this to your needs
		conf = {
			subpageName: 'Taller',
			portletLabel: 'Taller',
			portletTooltip: 'Tu taller',
			editintroPagename: 'Template:User_sandbox',
			preloadPagename: 'Template:User_sandbox/preload'
		};
		// Don't alter the code below
 
		// Use Special:MyPage (as opposed to mw.user.getName()) so that it
		// works for logged-out users as well.
		title = new mw.Title( 'Special:MyPage/' + conf.subpageName );
 
		url = new mw.Uri( title.getUrl() );
		url.extend({
			action: 'edit',
			redlink: 1,
			editintro: new mw.Title( conf.editintroPagename ),
			preload: new mw.Title( conf.preloadPagename )
		});
 
		mw.util.addPortletLink(
			'p-personal',
			url,
			conf.portletLabel,
			'pt-mysandbox',
			conf.portletTooltip,
			null,
			'#pt-preferences'
		);
	});
}( mediaWiki, jQuery ) );