Per wikitech-l consensus: https://lists.wikimedia.org/pipermail/wikitech-l/2016-February/084821.html Notes: * Disabled CallTimePassByReference due to false positives (T127163) Change-Id: I2c8ce713ce6600a0bb7bf67537c87044c7a45c4b
15 lines
306 B
PHP
15 lines
306 B
PHP
<?php
|
|
/**
|
|
* Internationalisation file for log tests.
|
|
*
|
|
* @file
|
|
*/
|
|
|
|
$messages = [];
|
|
|
|
$messages['en'] = [
|
|
'log-name-phpunit' => 'PHPUnit-log',
|
|
'log-description-phpunit' => 'Log for PHPUnit-tests',
|
|
'logentry-phpunit-test' => '$1 {{GENDER:$2|tests}} with page $3',
|
|
'logentry-phpunit-param' => '$4',
|
|
];
|