Merge "user: Allow "CAS update failed" exceptions to be normalised"
[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 () {
8 $.fn.confirmable.defaultOptions.i18n = {
9 space: mw.message( 'word-separator' ).text(),
10 confirm: mw.message( 'confirmable-confirm', mw.user ).text(),
11 yes: mw.message( 'confirmable-yes' ).text(),
12 no: mw.message( 'confirmable-no' ).text(),
13 yesTitle: undefined,
14 noTitle: undefined
15 };
16 }() );