mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
ba455643fc
Update dialogs and inspectors for breaking change in VE core New changes: a553012 [BREAKING CHANGE] Merge dialog and inspector actions into window actions f9a0419 Localisation updates from https://translatewiki.net. cbe81a0 Fix path to spinner in ve.ui.SpecialCharacterInspector.css Change-Id: Icf90ace6442364283b66b234e3c78fc65212f070
51 lines
1.2 KiB
JavaScript
51 lines
1.2 KiB
JavaScript
/*!
|
|
* VisualEditor UserInterface MWGalleryInspector class.
|
|
*
|
|
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/*global mw */
|
|
|
|
/**
|
|
* MediaWiki gallery inspector.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.MWExtensionInspector
|
|
*
|
|
* @constructor
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWGalleryInspector = function VeUiMWGalleryInspector( config ) {
|
|
// Parent constructor
|
|
ve.ui.MWExtensionInspector.call( this, config );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWGalleryInspector, ve.ui.MWExtensionInspector );
|
|
|
|
/* Static properties */
|
|
|
|
ve.ui.MWGalleryInspector.static.name = 'gallery';
|
|
|
|
ve.ui.MWGalleryInspector.static.icon = 'gallery';
|
|
|
|
ve.ui.MWGalleryInspector.static.title =
|
|
OO.ui.deferMsg( 'visualeditor-mwgalleryinspector-title' );
|
|
|
|
ve.ui.MWGalleryInspector.static.nodeModel = ve.dm.MWGalleryNode;
|
|
|
|
/* Methods */
|
|
|
|
/** */
|
|
ve.ui.MWGalleryInspector.prototype.getInputPlaceholder = function () {
|
|
// 'File:' is always in content language
|
|
return mw.config.get( 'wgFormattedNamespaces' )['6'] + ':' +
|
|
ve.msg( 'visualeditor-mwgalleryinspector-placeholder' );
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.windowFactory.register( ve.ui.MWGalleryInspector );
|