moodle/lang/en_utf8/simpletest.php

42 lines
2.5 KiB
PHP
Raw Normal View History

<?PHP // $Id$
2007-08-30 20:19:58 +00:00
// simpletest.php - created with Moodle 1.7 beta + (2006101003)
$string['all'] = 'ALL';
$string['addconfigprefix'] = 'Add prefix to config file';
$string['deletingnoninsertedrecord'] = 'Trying to delete a record that was not inserted by these unit tests (id $a->id in table $a->table).';
$string['deletingnoninsertedrecords'] = 'Trying to delete records that were not inserted by these unit tests (from table $a->table).';
2007-08-30 20:19:58 +00:00
$string['exception'] = 'Exception';
$string['fail'] = 'Fail';
$string['ignorefile'] = 'Ignore tests in the file';
$string['ignorethisfile'] = 'Re-run the tests ignoring this test file.';
$string['moodleunittests'] = 'Moodle unit tests: $a';
$string['notice'] = 'Notice';
$string['onlytest'] = 'Only run tests in';
$string['pass'] = 'Pass';
$string['pathdoesnotexist'] = 'The path \'$a\' does not exist.';
$string['prefix'] = 'Unit test tables prefix';
$string['prefixnotset'] = 'The unit test database table prefix is not configured. Fill and submit this form to add it to config.php.';
2007-08-30 20:19:58 +00:00
$string['retest'] = 'Re-run the tests';
$string['retestonlythisfile'] = 'Re-run only this test file.';
$string['runall'] = 'Run the tests from all the test files.';
$string['runat'] = 'Run at $a.';
$string['rundbtests'] = 'Run the database tests too.';
2007-08-30 20:19:58 +00:00
$string['runonlyfile'] = 'Run only the tests in this file';
$string['runonlyfolder'] = 'Run only the tests in this folder';
$string['runtests'] = 'Run tests';
$string['rununittests'] = 'Run the unit tests';
$string['showpasses'] = 'Show passes as well as fails.';
$string['showsearch'] = 'Show the search for test files.';
$string['stacktrace'] = 'Stack trace:';
$string['summary'] = '{$a->run}/{$a->total} test cases complete: <strong>{$a->passes}</strong> passes, <strong>{$a->fails}</strong> fails and <strong>{$a->exceptions}</strong> exceptions.';
$string['tablesnotsetup'] = 'Unit test tables are not yet built. Do you want to build them now?.';
$string['testtablescsvfileunwritable'] = 'The test tables CSV file is not writable ($a->filename)';
2007-08-30 20:19:58 +00:00
$string['thorough'] = 'Run a thorough test (may be slow).';
$string['updatingnoninsertedrecord'] = 'Trying to update a record that was not inserted by these unit tests (id $a->id in table $a->table).';
2007-08-30 20:19:58 +00:00
$string['uncaughtexception'] = 'Uncaught exception [{$a->getMessage()}] in [{$a->getFile()}:{$a->getLine()}] TESTS ABORTED.';
$string['unittests'] = 'Unit tests';
$string['version'] = 'Using <a href=\"http://sourceforge.net/projects/simpletest/\">SimpleTest</a> version $a.';
?>