diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-15 02:07:22 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-15 02:07:22 +0000 |
commit | e1e9ccd8d3f8a0d773ed7af4fb886781fd45cb3a (patch) | |
tree | 735ba973f656f573253e2deb89ab9f05c5a5c38b /mod/developers/languages/en.php | |
parent | 002417221f727d93b20eebc40bb85509d1584880 (diff) | |
download | elgg-e1e9ccd8d3f8a0d773ed7af4fb886781fd45cb3a.tar.gz elgg-e1e9ccd8d3f8a0d773ed7af4fb886781fd45cb3a.tar.bz2 |
Fixes #3009 a bare bones developer tools settings
git-svn-id: http://code.elgg.org/elgg/trunk@8713 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/developers/languages/en.php')
-rw-r--r-- | mod/developers/languages/en.php | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/mod/developers/languages/en.php b/mod/developers/languages/en.php index 8bc1f596a..41bdcdddb 100644 --- a/mod/developers/languages/en.php +++ b/mod/developers/languages/en.php @@ -12,13 +12,18 @@ $english = array( // settings 'developers:label:simple_cache' => 'Use simple cache', - 'developers:help:simple_cache' => 'Turn off this file cache when developing', - 'developers:label:views_cache' => 'Use view path cache', - 'developers:help:views_cache' => 'Turn this off when developing', + 'developers:help:simple_cache' => 'Turn off the file cache when developing. Otherwise, changes to your views (including css) will be ignored.', + 'developers:label:view_path_cache' => 'Use view path cache', + 'developers:help:view_path_cache' => 'Turn this off when developing. Otherwise, new views in your plugins will not be registered.', 'developers:label:debug_level' => "Trace level", - 'developers:help:debug_level' => "", - 'developers:label:' => '', - 'developers:help:' => '', + 'developers:help:debug_level' => "This controls the amount of information logged. See elgg_log() for more information.", + 'developers:label:display_errors' => 'Display fatal PHP errors', + 'developers:help:display_errors' => "By default, Elgg's .htaccess file supresses the display of fatal errors.", + + 'developers:debug:off' => 'Off', + 'developers:debug:error' => 'Error', + 'developers:debug:warning' => 'Warning', + 'developers:debug:notice' => 'Notice', // theme preview 'theme_preview:general' => 'General', |