Merge branch 'install_21_STABLE' of git://git.moodle.cz/moodle-install into MOODLE_21...
[moodle.git] / lang / en / simpletest.php
blob7054213bfc623be15ca767dfef3e7ebd20689d01
1 <?php
3 // This file is part of Moodle - http://moodle.org/
4 //
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 /**
19 * Strings for component 'simpletest', language 'en', branch 'MOODLE_20_STABLE'
21 * @package simpletest
22 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 $string['addconfigprefix'] = 'Add prefix to config file';
27 $string['all'] = 'ALL';
28 $string['codecoverageanalysis'] = 'Perform code coverage analysis.';
29 $string['codecoveragecompletereport'] = '(view code coverage complete report)';
30 $string['codecoveragedisabled'] = 'Cannot enable code coverage in this server (missing xdebug extension).';
31 $string['codecoveragelatestdetails'] = '(on {$a->date}, with {$a->files} files, {$a->percentage} covered)';
32 $string['codecoveragelatestreport'] = 'view latest code coverage complete report';
33 $string['confignonwritable'] = 'The file config.php is not writeable by the web server. Either change its permissions, or edit it with the appropriate user account, and add the following line before the closing php tag: <br />
34 $CFG->unittestprefix = \'tst_\' // Change tst_ to a prefix of your choice, different from $CFG->prefix';
35 $string['coveredlines'] = 'Covered lines';
36 $string['coveredpercentage'] = 'Overall code coverage';
37 $string['deletingnoninsertedrecord'] = 'Trying to delete a record that was not inserted by these unit tests (id {$a->id} in table {$a->table}).';
38 $string['deletingnoninsertedrecords'] = 'Trying to delete records that were not inserted by these unit tests (from table {$a->table}).';
39 $string['droptesttables'] = 'Drop test tables';
40 $string['exception'] = 'Exception';
41 $string['executablelines'] = 'Executable lines';
42 $string['fail'] = 'Fail';
43 $string['ignorefile'] = 'Ignore tests in the file';
44 $string['ignorethisfile'] = 'Re-run the tests ignoring this test file.';
45 $string['installtesttables'] = 'Install test tables';
46 $string['moodleunittests'] = 'Moodle unit tests: {$a}';
47 $string['notice'] = 'Notice';
48 $string['onlytest'] = 'Only run tests in';
49 $string['pass'] = 'Pass';
50 $string['pathdoesnotexist'] = 'The path \'{$a}\' does not exist.';
51 $string['prefix'] = 'Unit test tables prefix';
52 $string['prefixnotset'] = 'The unit test database table prefix is not configured. Fill and submit this form to add it to config.php.';
53 $string['reinstalltesttables'] = 'Reinstall test tables';
54 $string['retest'] = 'Re-run the tests';
55 $string['retestonlythisfile'] = 'Re-run only this test file.';
56 $string['runall'] = 'Run the tests from all the test files.';
57 $string['runat'] = 'Run at {$a}.';
58 $string['runonlyfile'] = 'Run only the tests in this file';
59 $string['runonlyfolder'] = 'Run only the tests in this folder';
60 $string['runtests'] = 'Run tests';
61 $string['rununittests'] = 'Run the unit tests';
62 $string['showpasses'] = 'Show passes as well as fails.';
63 $string['showsearch'] = 'Show the search for test files.';
64 $string['skip'] = 'Skip';
65 $string['stacktrace'] = 'Stack trace:';
66 $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.';
67 $string['tablesnotsetup'] = 'Unit test tables are not yet built. Do you want to build them now?.';
68 $string['testdboperations'] = 'Test database operations';
69 $string['testtablescsvfileunwritable'] = 'The test tables CSV file is not writable ({$a->filename})';
70 $string['testtablesneedupgrade'] = 'The test DB tables need to be upgraded. Do you wish to proceed with the upgrade now?';
71 $string['testtablesok'] = 'The test DB tables were successfully installed.';
72 $string['thorough'] = 'Run a thorough test (may be slow).';
73 $string['timetakes'] = 'Time taken: {$a}.';
74 $string['totallines'] = 'Total lines';
75 $string['uncaughtexception'] = 'Uncaught exception [{$a->getMessage()}] in [{$a->getFile()}:{$a->getLine()}] TESTS ABORTED.';
76 $string['uncoveredlines'] = 'Uncovered lines';
77 $string['unittestprefixsetting'] = 'Unit test prefix: <strong>{$a->unittestprefix}</strong> (Edit config.php to modify this).';
78 $string['unittests'] = 'Unit tests';
79 $string['updatingnoninsertedrecord'] = 'Trying to update a record that was not inserted by these unit tests (id {$a->id} in table {$a->table}).';
80 $string['version'] = 'Using <a href="http://sourceforge.net/projects/simpletest/">SimpleTest</a> version {$a}.';