Changes

/**
* [[VP:Qadjetlər/Vikianbara birbaşa keçid]]
* @source: http://www.mediawiki.org/wiki/Snippets/Direct_imagelinks_to_Commons
*/

if( mw.config.get( 'wgNamespaceNumber', 0 ) >= 0 ){
$( function() {
var commonsBase = '//commons.wikimedia.org/wiki/File:',
localBase = mw.util.getUrl( mw.config.get( 'wgFormattedNamespaces' )['6'] + ':' ),
commonsBaseScript = '//commons.wikimedia.org/w/index.php?title=File:',
localBaseScript = mw.util.wikiScript() + '?title=' + mw.util.wikiUrlencode( mw.config.get( 'wgFormattedNamespaces' )['6'] + ':' ),
uploadBaseRe = new RegExp( '^' + mw.RegExp.escape( '//upload.wikimedia.org/wikipedia/commons/' ) );

$( 'a.image' ).attr( 'href', function( i, currVal ) {
if ( uploadBaseRe.test( $(this).find( 'img' ).attr( 'src' ) ) ) {
var url = currVal.replace( localBase, commonsBase ).replace( localBaseScript, commonsBaseScript );
url += ( /\?/.test(url) ? '&' : '?' ) + 'uselang=az';
return url;
}
});
});
}