15 lines
316 B
PHP
15 lines
316 B
PHP
<?php
|
|
/**
|
|
* Internationalisation file for log tests.
|
|
*
|
|
* @file
|
|
*/
|
|
|
|
$messages = array();
|
|
|
|
$messages['en'] = array(
|
|
'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',
|
|
);
|