MDL-38007 behat: Refining error texts
[moodle.git] / admin / tool / behat / lang / en / tool_behat.php
blob6c4f29650d0b1b8fcc1462cfe7c980bef9559dd9
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 /**
18 * Strings for tool_behat
20 * @package tool_behat
21 * @copyright 2012 David MonllaĆ³
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 $string['allavailablesteps'] = 'All the available steps definitions';
26 $string['giveninfo'] = 'Given. Processes to set up the environment';
27 $string['installinfo'] = 'Read {$a} for installation and tests execution info';
28 $string['moreinfoin'] = 'More info in {$a}';
29 $string['newstepsinfo'] = 'Read {$a} for info about how to add new steps definitions';
30 $string['newtestsinfo'] = 'Read {$a} for info about how to write new tests';
31 $string['nostepsdefinitions'] = 'There aren\'t steps definitions matching this filters';
32 $string['pluginname'] = 'Acceptance testing';
33 $string['runclitool'] = 'To list the steps definitions you need to run the Behat CLI tool to create the $CFG->behat_dataroot directory. Go to your moodle dirroot and run "{$a}"';
34 $string['stepsdefinitionscomponent'] = 'Area';
35 $string['stepsdefinitionscontains'] = 'Contains';
36 $string['stepsdefinitionsfilters'] = 'Steps definitions';
37 $string['stepsdefinitionstype'] = 'Type';
38 $string['theninfo'] = 'Then. Checkings to ensure the outcomes are the expected ones';
39 $string['viewsteps'] = 'Filter';
40 $string['wheninfo'] = 'When. Actions that provokes an event';
41 $string['wrongbehatsetup'] = 'Something is wrong with behat setup, ensure:<ul>
42 <li>You ran "curl http://getcomposer.org/installer | php"</li>
43 <li>You ran "php composer.phar install --dev"</li>
44 <li>vendor/bin/behat file has execution permissions</li></ul>';