diff options
author | Ben Coburn <btcoburn@silicodon.net> | 2006-05-10 08:57:32 +0200 |
---|---|---|
committer | Ben Coburn <btcoburn@silicodon.net> | 2006-05-10 08:57:32 +0200 |
commit | 4fa2dffce72d182e25295de4947077cf52ba1f2b (patch) | |
tree | 1a7696b07a918bac334a554875c03822961826f5 /lib/plugins/config/lang/en | |
parent | 78da9018bbdec7aaf2bcb46d67883cb14de25de4 (diff) | |
download | rpg-4fa2dffce72d182e25295de4947077cf52ba1f2b.tar.gz rpg-4fa2dffce72d182e25295de4947077cf52ba1f2b.tar.bz2 |
config plugin ui organization
- organizes the configuration settings list into chunks
- provides a table of contents for the configuration chunks
- provides one chunk for each plugin with configurable settings
- provides one chunk for the active template (if it has settings)
- provides the config file setting as a tool-tip on the setting label
ex. $conf['start']
- provides for localization of useful strings
- generates a "smart" fallback name for plugins and templates
- plugin and template sections are only shown if they have settings
- current configuration list is organized into chunks
Note: There are NEW strings to translate into the non-english language files.
darcs-hash:20060510065732-05dcb-398d5c7efa7981f690d97a25a5110b1f39be9f8e.gz
Diffstat (limited to 'lib/plugins/config/lang/en')
-rw-r--r-- | lib/plugins/config/lang/en/lang.php | 29 |
1 files changed, 25 insertions, 4 deletions
diff --git a/lib/plugins/config/lang/en/lang.php b/lib/plugins/config/lang/en/lang.php index 4e033594a..a19a71d0d 100644 --- a/lib/plugins/config/lang/en/lang.php +++ b/lib/plugins/config/lang/en/lang.php @@ -17,6 +17,27 @@ $lang['nochoice'] = '(no other choices available)'; $lang['locked'] = 'The settings file can not be updated, if this is unintentional, <br /> ensure the local settings file name and permissions are correct.'; +/* --- Config Setting Headers --- */ +$lang['_configuration_manager'] = 'Configuration Manager'; //same as heading in intro.txt +$lang['_header_dokuwiki'] = 'DokuWiki Settings'; +$lang['_header_plugin'] = 'Plugin Settings'; +$lang['_header_template'] = 'Template Settings'; + +/* --- Config Setting Groups --- */ +$lang['_basic'] = 'Basic Settings'; +$lang['_display'] = 'Display Settings'; +$lang['_authentication'] = 'Authentication Settings'; +$lang['_anti_spam'] = 'Anti-Spam Settings'; +$lang['_editing'] = 'Editing Settings'; +$lang['_links'] = 'Link Settings'; +$lang['_advanced'] = 'Advanced Settings'; +$lang['_network'] = 'Network Settings'; +// The settings group name for plugins and templates can be set with +// plugin_settings_name and template_settings_name respectively. If one +// of these lang properties is not set, the group name will be generated +// from the plugin or template name and the localized suffix. +$lang['_plugin_sufix'] = 'Plugin Settings'; +$lang['_template_sufix'] = 'Template Settings'; /* -------------------- Config Options --------------------------- */ @@ -49,8 +70,8 @@ $lang['refshow'] = 'Number of media references to show'; $lang['allowdebug'] = 'Allow debug <b>disable if not needed!</b>'; $lang['usewordblock']= 'Block spam based on wordlist'; -$lang['indexdelay'] = 'Time delay before indexing'; -$lang['relnofollow'] = 'Use rel="nofollow"'; +$lang['indexdelay'] = 'Time delay before indexing (sec)'; +$lang['relnofollow'] = 'Use rel="nofollow" on external links'; $lang['mailguard'] = 'Obfuscate email addresses'; /* Authentication Options */ @@ -102,10 +123,10 @@ $lang['proxy____host'] = 'Proxy servername'; $lang['proxy____port'] = 'Proxy port'; $lang['proxy____user'] = 'Proxy user name'; $lang['proxy____pass'] = 'Proxy password'; -$lang['proxy____ssl'] = 'use ssl to connect to Proxy'; +$lang['proxy____ssl'] = 'Use ssl to connect to Proxy'; /* Safemode Hack */ -$lang['safemodehack'] = 'enable safemode hack'; +$lang['safemodehack'] = 'Enable safemode hack'; $lang['ftp____host'] = 'FTP server for safemode hack'; $lang['ftp____port'] = 'FTP port for safemode hack'; $lang['ftp____user'] = 'FTP user name for safemode hack'; |