diff options
author | Antoine Musso <hashar@users.mediawiki.org> | 2012-01-04 10:51:57 +0000 |
---|---|---|
committer | Antoine Musso <hashar@users.mediawiki.org> | 2012-01-04 10:51:57 +0000 |
commit | d160b37edad0061040b6e3f93f1c76452968f690 (patch) | |
tree | b366beee6ebac64a060677d9e147699226bedb98 | |
parent | 16b811c80356cdd5344bd61845cb2af86ce83454 (diff) | |
download | mediawikicore-d160b37edad0061040b6e3f93f1c76452968f690.tar.gz mediawikicore-d160b37edad0061040b6e3f93f1c76452968f690.zip |
JSTesting: javascripttest-pagetext-skin msg
* added colon in the message
* reworded message
Follow r107919
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/108010
-rw-r--r-- | languages/messages/MessagesEn.php | 2 | ||||
-rw-r--r-- | resources/mediawiki.special/mediawiki.special.javaScriptTest.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/languages/messages/MessagesEn.php b/languages/messages/MessagesEn.php index 2c36bfe92aed..937a5ba51911 100644 --- a/languages/messages/MessagesEn.php +++ b/languages/messages/MessagesEn.php @@ -3414,7 +3414,7 @@ Please try again.', 'javascripttest-pagetext-noframework' => 'This page is reserved for running JavaScript tests.', 'javascripttest-pagetext-unknownframework' => 'Unknown testing framework "$1".', 'javascripttest-pagetext-frameworks' => 'Please choose one of the following testing frameworks: $1', -'javascripttest-pagetext-skins' => 'Available skins', +'javascripttest-pagetext-skins' => 'Choose a skin to run the tests with:', 'javascripttest-qunit-name' => 'QUnit', # do not translate or duplicate this message to other languages 'javascripttest-qunit-intro' => 'See [$1 testing documentation] on mediawiki.org.', 'javascripttest-qunit-heading' => 'MediaWiki JavaScript QUnit test suite', diff --git a/resources/mediawiki.special/mediawiki.special.javaScriptTest.js b/resources/mediawiki.special/mediawiki.special.javaScriptTest.js index a342989c2440..d413f602cb8b 100644 --- a/resources/mediawiki.special/mediawiki.special.javaScriptTest.js +++ b/resources/mediawiki.special/mediawiki.special.javaScriptTest.js @@ -9,7 +9,7 @@ jQuery( document ).ready( function( $ ) { var $html = $( '<p><label for="useskin">' + mw.message( 'javascripttest-pagetext-skins' ).escaped() - + mw.message( 'colon-separator' ).plain() + + ' ' + '</label></p>' ), select = '<select name="useskin" id="useskin">'; |