mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-30 00:55:00 +00:00
44 lines
1.3 KiB
JavaScript
44 lines
1.3 KiB
JavaScript
|
/*
|
||
|
* VisualEditor user interface MWWikitextConvertConfirmDialog class.
|
||
|
*
|
||
|
* @copyright 2011-2018 VisualEditor Team and others; see AUTHORS.txt
|
||
|
* @license The MIT License (MIT); see LICENSE.txt
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Dialog for letting the user choose whether to convert probable-wikitext
|
||
|
*
|
||
|
* @class
|
||
|
* @extends OO.ui.MessageDialog
|
||
|
*
|
||
|
* @constructor
|
||
|
* @param {Object} [config] Configuration options
|
||
|
*/
|
||
|
ve.ui.MWWikitextConvertConfirmDialog = function VeUiMWWikitextConvertConfirmDialog( config ) {
|
||
|
// Parent constructor
|
||
|
ve.ui.MWWikitextConvertConfirmDialog.super.call( this, config );
|
||
|
};
|
||
|
|
||
|
/* Inheritance */
|
||
|
|
||
|
OO.inheritClass( ve.ui.MWWikitextConvertConfirmDialog, OO.ui.MessageDialog );
|
||
|
|
||
|
/* Static Properties */
|
||
|
|
||
|
ve.ui.MWWikitextConvertConfirmDialog.static.name = 'wikitextconvertconfirm';
|
||
|
|
||
|
ve.ui.MWWikitextConvertConfirmDialog.static.title =
|
||
|
OO.ui.deferMsg( 'visualeditor-wikitextconvert-title' );
|
||
|
|
||
|
ve.ui.MWWikitextConvertConfirmDialog.static.message =
|
||
|
OO.ui.deferMsg( 'visualeditor-wikitextconvert-message' );
|
||
|
|
||
|
ve.ui.MWWikitextConvertConfirmDialog.static.actions = [
|
||
|
{ action: 'convert', label: OO.ui.deferMsg( 'visualeditor-wikitextconvert-convert' ) },
|
||
|
{ action: 'plain', label: OO.ui.deferMsg( 'visualeditor-wikitextconvert-plain' ), flags: [ 'primary', 'progressive' ] }
|
||
|
];
|
||
|
|
||
|
/* Registration */
|
||
|
|
||
|
ve.ui.windowFactory.register( ve.ui.MWWikitextConvertConfirmDialog );
|