Merge "SpecialActiveusers: Use Config objects instead of globals"
[lhc/web/wiklou.git] / resources / src / jquery / jquery.confirmable.mediawiki.js
1 /*!
2 * jQuery confirmable plugin customization for MediaWiki
3 *
4 * This file serves to inject our localised messages into it.
5 */
6
7 ( function ( mw, $ ) {
8 $.fn.confirmable.defaultOptions.i18n = {
9 confirm: mw.message( 'confirmable-confirm', mw.user ).text(),
10 yes: mw.message( 'confirmable-yes' ).text(),
11 no: mw.message( 'confirmable-no' ).text()
12 };
13 }( mediaWiki, jQuery ) );