Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -3414,7 +3414,7 @@ |
3415 | 3415 | 'javascripttest-pagetext-noframework' => 'This page is reserved for running JavaScript tests.', |
3416 | 3416 | 'javascripttest-pagetext-unknownframework' => 'Unknown testing framework "$1".', |
3417 | 3417 | 'javascripttest-pagetext-frameworks' => 'Please choose one of the following testing frameworks: $1', |
3418 | | -'javascripttest-pagetext-skins' => 'Available skins', |
| 3418 | +'javascripttest-pagetext-skins' => 'Choose a skin to run the tests with:', |
3419 | 3419 | 'javascripttest-qunit-name' => 'QUnit', # do not translate or duplicate this message to other languages |
3420 | 3420 | 'javascripttest-qunit-intro' => 'See [$1 testing documentation] on mediawiki.org.', |
3421 | 3421 | 'javascripttest-qunit-heading' => 'MediaWiki JavaScript QUnit test suite', |
Index: trunk/phase3/resources/mediawiki.special/mediawiki.special.javaScriptTest.js |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | |
11 | 11 | var $html = $( '<p><label for="useskin">' |
12 | 12 | + mw.message( 'javascripttest-pagetext-skins' ).escaped() |
13 | | - + mw.message( 'colon-separator' ).plain() |
| 13 | + + ' ' |
14 | 14 | + '</label></p>' ), |
15 | 15 | select = '<select name="useskin" id="useskin">'; |
16 | 16 | |