diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-05-13 15:59:22 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-05-13 15:59:22 +0000 |
commit | 3773f8d81c53dd0508325d6380ee49569951a61f (patch) | |
tree | c3ac0a4d080375bb325f140d0de66c33db703f80 /mod/diagnostics/languages | |
parent | cf07718b4e44cb2711380a0ceb37de1031a5d4a8 (diff) | |
download | elgg-3773f8d81c53dd0508325d6380ee49569951a61f.tar.gz elgg-3773f8d81c53dd0508325d6380ee49569951a61f.tar.bz2 |
Refs #1009: Enhancements to diagnostics tool to use the test framework.
git-svn-id: https://code.elgg.org/elgg/trunk@3286 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/diagnostics/languages')
-rw-r--r-- | mod/diagnostics/languages/en.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mod/diagnostics/languages/en.php b/mod/diagnostics/languages/en.php index 79d35e938..5d19824bd 100644 --- a/mod/diagnostics/languages/en.php +++ b/mod/diagnostics/languages/en.php @@ -12,8 +12,21 @@ $english = array( 'diagnostics' => 'System diagnostics', + 'diagnostics:unittester' => 'Unit tests', 'diagnostics:description' => 'The following diagnostic report is useful for diagnosing any problems with Elgg, and should be attached to any bug reports you file.', + 'diagnostics:unittester:description' => 'The following are diagnostic tests which are registered by plugins and may be performed in order to debug parts of the Elgg framework.', + + 'diagnostics:test:executetest' => 'Execute test', + 'diagnostics:test:executeall' => 'Execute All', + 'diagnostics:unittester:notests' => 'Sorry, there are no unit test modules currently installed.', + 'diagnostics:unittester:testnotfound' => 'Sorry, the report could not be generated because that test was not found', + + 'diagnostics:unittester:testresult:nottestclass' => 'FAIL - Result not a test class', + 'diagnostics:unittester:testresult:fail' => 'FAIL', + 'diagnostics:unittester:testresult:success' => 'FAIL', + + 'diagnostics:unittester:report' => 'Test report for %s', 'diagnostics:download' => 'Download .txt', |