summaryrefslogtreecommitdiff
path: root/resources/src/jquery/jquery.confirmable.mediawiki.js
blob: d4a106e37aea0c302d2d15867132799a5926426d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*!
 * jQuery confirmable plugin customization for MediaWiki
 *
 * This file serves to inject our localised messages into it.
 */

( function ( mw, $ ) {
	$.fn.confirmable.defaultOptions.i18n = {
		space: mw.message( 'word-separator' ).text(),
		confirm: mw.message( 'confirmable-confirm', mw.user ).text(),
		yes: mw.message( 'confirmable-yes' ).text(),
		no: mw.message( 'confirmable-no' ).text()
	};
}( mediaWiki, jQuery ) );