aboutsummaryrefslogtreecommitdiff
path: root/mod/diagnostics/languages
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-02-17 15:32:23 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-02-17 15:32:23 +0000
commitccb5a69319a6a367988534296c678c8abf322879 (patch)
tree39e16ed3a8f4c70e68cd6bc9ac76b49d177d5ad8 /mod/diagnostics/languages
parent287ea7790c170e4f5c13c721e759f1a37ed5ef02 (diff)
downloadelgg-ccb5a69319a6a367988534296c678c8abf322879.tar.gz
elgg-ccb5a69319a6a367988534296c678c8abf322879.tar.bz2
Fixes #1526: Big honking warning added to unit tests. Getter test also deletes its subtypes now.
git-svn-id: http://code.elgg.org/elgg/trunk@3945 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/diagnostics/languages')
-rw-r--r--mod/diagnostics/languages/en.php31
1 files changed, 16 insertions, 15 deletions
diff --git a/mod/diagnostics/languages/en.php b/mod/diagnostics/languages/en.php
index 2562c10b8..ae72564d7 100644
--- a/mod/diagnostics/languages/en.php
+++ b/mod/diagnostics/languages/en.php
@@ -1,44 +1,45 @@
<?php
/**
* Elgg diagnostics language pack.
- *
+ *
* @package ElggDiagnostics
* @author Curverider Ltd
* @link http://elgg.com/
*/
$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:unittester:description' => 'Unit tests are useful to detect errors introduced by new plugins or modifications to Elgg.',
+
+ 'diagnostics:unittester:description' => 'Unit tests check Elgg Core for broken or buggy APIs.',
'diagnostics:unittester:debug' => 'The site must be in debug mode to run unit tests.',
-
+ 'diagnostics:unittester:warning' => 'WARNING: These tests can leave behind debugging objects in your database. DO NOT USE ON A PRODUCTION SITE!',
+
'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' => 'SUCCESS',
-
+
'diagnostics:unittest:example' => 'Example unit test, only available in debug mode.',
-
+
'diagnostics:unittester:report' => 'Test report for %s',
-
+
'diagnostics:download' => 'Download .txt',
-
-
+
+
'diagnostics:header' => '========================================================================
Elgg Diagnostic Report
Generated %s by %s
========================================================================
-
+
',
'diagnostics:report:basic' => '
Elgg Release %s, version %s
@@ -63,8 +64,8 @@ Global variables:
%s
------------------------------------------------------------------------',
-
+
);
-
+
add_translation("en",$english);
?> \ No newline at end of file