Commit | Line | Data |
---|---|---|
301cbe3a DM |
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. | |
13 | // | |
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/>. | |
16 | ||
17 | /** | |
18 | * Strings for tool_behat | |
19 | * | |
20 | * @package tool_behat | |
21 | * @copyright 2012 David Monllaó | |
22 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | |
23 | */ | |
24 | ||
cb9c703c | 25 | $string['aim'] = 'This administration tool helps developers and test writers to create .feature files describing Moodle\'s functionalities and run them automatically.'; |
ff2ec29b | 26 | $string['allavailablesteps'] = 'All the available steps definitions'; |
d46340eb | 27 | $string['giveninfo'] = 'Given. Processes to set up the environment'; |
cb9c703c | 28 | $string['infoheading'] = 'Info'; |
95167121 | 29 | $string['installinfo'] = 'Read {$a} for installation and tests execution info'; |
475ac3f8 | 30 | $string['moreinfoin'] = 'More info in {$a}'; |
95167121 DM |
31 | $string['newstepsinfo'] = 'Read {$a} for info about how to add new steps definitions'; |
32 | $string['newtestsinfo'] = 'Read {$a} for info about how to write new tests'; | |
ff2ec29b | 33 | $string['nostepsdefinitions'] = 'There aren\'t steps definitions matching this filters'; |
33005f68 | 34 | $string['pluginname'] = 'Acceptance testing'; |
33063f2e | 35 | $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}"'; |
d46340eb DM |
36 | $string['stepsdefinitionscomponent'] = 'Area'; |
37 | $string['stepsdefinitionscontains'] = 'Contains'; | |
38 | $string['stepsdefinitionsfilters'] = 'Steps definitions'; | |
39 | $string['stepsdefinitionstype'] = 'Type'; | |
40 | $string['theninfo'] = 'Then. Checkings to ensure the outcomes are the expected ones'; | |
5a255660 | 41 | $string['unknownexceptioninfo'] = 'There was a problem with Selenium or your browser. Please ensure you are using the latest version of Selenium. Error:'; |
d46340eb DM |
42 | $string['viewsteps'] = 'Filter'; |
43 | $string['wheninfo'] = 'When. Actions that provokes an event'; | |
6fe3986d | 44 | $string['wrongbehatsetup'] = 'Something is wrong with behat setup, ensure:<ul> |
573eb117 | 45 | <li>You ran "php admin/tool/behat/cli/init.php" from your moodle root directory</li> |
6fe3986d | 46 | <li>vendor/bin/behat file has execution permissions</li></ul>'; |