aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/language/en/acp
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2006-03-25 14:16:17 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2006-03-25 14:16:17 +0000
commitd1676cb6bf7c0ae5addf3cc954c636f9a6cbaf41 (patch)
tree93348b36766ec01214ccecd9d09ef9dddfa2910f /phpBB/language/en/acp
parent7f497764e1f40419f1dcacecc6762bebf588bcbf (diff)
downloadforums-d1676cb6bf7c0ae5addf3cc954c636f9a6cbaf41.tar
forums-d1676cb6bf7c0ae5addf3cc954c636f9a6cbaf41.tar.gz
forums-d1676cb6bf7c0ae5addf3cc954c636f9a6cbaf41.tar.bz2
forums-d1676cb6bf7c0ae5addf3cc954c636f9a6cbaf41.tar.xz
forums-d1676cb6bf7c0ae5addf3cc954c636f9a6cbaf41.zip
my attempt to fix custom profile fields
- added the load settings for custom profile fields - re-added our famous make_clickable function - removed group_by clauses (due to the lang id selection the group by clause is no more needed) I hope that i have not just created new bugs. ;) git-svn-id: file:///svn/phpbb/trunk@5712 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/language/en/acp')
-rw-r--r--phpBB/language/en/acp/board.php20
1 files changed, 15 insertions, 5 deletions
diff --git a/phpBB/language/en/acp/board.php b/phpBB/language/en/acp/board.php
index f0c7f9d030..996dac986a 100644
--- a/phpBB/language/en/acp/board.php
+++ b/phpBB/language/en/acp/board.php
@@ -150,18 +150,28 @@ $lang = array_merge($lang, array(
// Load settings
$lang = array_merge($lang, array(
'ACP_LOAD_SETTINGS_EXPLAIN' => 'Here you can enable and disable certain board functions to reduce the amount of processing required. On most servers there is no need to disable any functions. However on certain systems or in shared hosting environments it may be beneficial to disable capabilities you do not really need. You can also specify limits for system load and active sessions beyond which the board will go offline.',
- 'LIMIT_LOAD' => 'Limit system load',
- 'LIMIT_LOAD_EXPLAIN' => 'If the 1 minute system load exceeds this value the board will go offline, 1.0 equals ~100% utilisation of one processor. This only functions on UNIX based servers.',
- 'LIMIT_SESSIONS' => 'Limit sessions',
- 'LIMIT_SESSIONS_EXPLAIN' => 'If the number of sessions exceeds this value within a one minute period the board will go offline. Set to 0 for unlimited sessions.',
- 'LOAD_USER_ACTIVITY' => 'Show users activity',
+
+ 'CUSTOM_PROFILE_FIELDS' => 'Custom Profile Fields',
+
+ 'LIMIT_LOAD' => 'Limit system load',
+ 'LIMIT_LOAD_EXPLAIN' => 'If the 1 minute system load exceeds this value the board will go offline, 1.0 equals ~100% utilisation of one processor. This only functions on UNIX based servers.',
+ 'LIMIT_SESSIONS' => 'Limit sessions',
+ 'LIMIT_SESSIONS_EXPLAIN' => 'If the number of sessions exceeds this value within a one minute period the board will go offline. Set to 0 for unlimited sessions.',
+ 'LOAD_CPF_MEMBERLIST' => 'Display custom profile fields in memberlist',
+ 'LOAD_CPF_VIEWPROFILE' => 'Display custom profile fields in user profiles',
+ 'LOAD_CPF_VIEWTOPIC' => 'Display custom profile fields on viewtopic',
+ 'LOAD_USER_ACTIVITY' => 'Show users activity',
'LOAD_USER_ACTIVITY_EXPLAIN' => 'Displays active topic/forum in user profiles and user control panel. It is recommended to disable this on boards with more than one million posts.',
+
'ONLINE_LENGTH' => 'View online time span',
'ONLINE_LENGTH_EXPLAIN' => 'Time in minutes after which inactive users will not appear in viewonline listings, lower equals less processing.',
+
'RECOMPILE_TEMPLATES' => 'Recompile stale templates',
'RECOMPILE_TEMPLATES_EXPLAIN' => 'Check for updated template files on filesystem and recompile.',
+
'SESSION_LENGTH' => 'Session length',
'SESSION_LENGTH_EXPLAIN' => 'Sessions will expire after this time, in seconds.',
+
'YES_POST_MARKING' => 'Enable dotted topics',
'YES_POST_MARKING_EXPLAIN' => 'Indicates whether user has posted to a topic.',
'YES_READ_MARKING' => 'Enable server-side topic marking',