%PDF- %PDF-
Direktori : /www/varak.net/wiki.varak.net/extensions/Translate/resources/js/ |
Current File : /www/varak.net/wiki.varak.net/extensions/Translate/resources/js/ext.translate.parsers.js |
/*! * A set of simple tools for partial parsing and formatting of translatable * messages. * * @author Niklas Laxström * @license GPL-2.0-or-later */ ( function ( $, mw ) { 'use strict'; mw.translate = mw.translate || {}; mw.translate = $.extend( mw.translate, { /** * Formats some common wikitext elements. * * @param {string} text Message text * @param {string} [key] Message key * @return {string} Formatted text in html */ formatMessageGently: function ( text, key ) { var externals, protocols = mw.config.get( 'wgUrlProtocols' ); // Try to keep simple. text = $( '<div>' ).text( text ).html(); // Hack for page translation page titles if ( text && key && key.match( /\/Page_display_title$/ ) ) { text = '=' + text + '='; } text = text.replace( /^(=+)(.*?)(=+)/, function ( match, p1, p2, p3 ) { var len = Math.min( p1.length, p3.length, 6 ); return $( '<div>' ).append( $( '<h' + len + '>' ).html( p2 ) ).html(); } ); text = text.replace( /(^\*.*(\n|$))+/gm, function ( match ) { match = match.replace( /^\*(.*)/gm, function ( match, p1 ) { return $( '<div>' ).append( $( '<li>' ).html( p1 ) ).html(); } ); return $( '<div>' ).append( $( '<ul>' ).html( match ) ).html(); } ); text = text.replace( /(^#.*(\n|$))+/gm, function ( match ) { match = match.replace( /^#(.*)/gm, function ( match, p1 ) { return $( '<div>' ).append( $( '<li>' ).html( p1 ) ).html(); } ); return $( '<div>' ).append( $( '<ol>' ).html( match ) ).html(); } ); text = text.replace( /\[\[([^\]|]+?)\|(.+?)\]\]/g, function ( match, p1, p2 ) { var link = $( '<a>' ).html( p2 ).prop( 'href', mw.util.getUrl( p1 ) ); return $( '<div>' ).append( link ).html(); } ); text = text.replace( /\[\[(.+?)\]\]/g, function ( match, p1 ) { var link = $( '<a>' ).html( p1 ).prop( 'href', mw.util.getUrl( p1 ) ); return $( '<div>' ).append( link ).html(); } ); externals = new RegExp( '\\[((' + protocols + ')[^ ]+) (.+?)\\]', 'g' ); text = text.replace( externals, function ( match, p1, p2, p3 ) { var link = $( '<a>' ).html( p3 ).prop( 'href', p1 ); return $( '<div>' ).append( link ).html(); } ); text = text.replace( /'''(.+?)'''/g, function ( match, p1 ) { return $( '<div>' ).append( $( '<strong>' ).html( p1 ) ).html(); } ); text = text.replace( /''(.+?)''/g, function ( match, p1 ) { return $( '<div>' ).append( $( '<em>' ).html( p1 ) ).html(); } ); text = text.replace( /\n\n/gm, '<br />' ); return text; } } ); }( jQuery, mediaWiki ) );