https://bugzilla.wikimedia.org/show_bug.cgi?id=47395

--- Comment #3 from Helder <[email protected]> ---
Confirmed. I tested the following code on Google Chrome console

mw.loader.using( 'mediawiki.jqueryMsg', function(){
  mw.messages.set( {
    bug47395a: '[[$1|Text]]',
    bug47395b: '[[link|$1]]'
  } );
  alert(
    mw.message( 'bug47395a', 'ABC' ).plain() + ': ' +
    mw.message( 'bug47395a', 'ABC' ).parse() + '\n' +
    mw.message( 'bug47395b', 'ABC' ).plain() + ': ' +
    mw.message( 'bug47395b', 'ABC' ).parse()
  );
} );

and got the following message on Portuguese Wikipedia:

[[ABC|Text]]: bug47395a: Parse error at position 0 in input: [[$1|Text]]
[[link|ABC]]: <a title="link" href="/wiki/link">ABC</a>

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to