diff --git a/lib/plugins/config/lang/en/lang.php b/lib/plugins/config/lang/en/lang.php
index d404277bca02ca0d7e9767d098922ba2ce6c1d15..cb13a5a12b29dfb7a674542b20df3bb7f05eb871 100644
--- a/lib/plugins/config/lang/en/lang.php
+++ b/lib/plugins/config/lang/en/lang.php
@@ -8,7 +8,7 @@
 
 // for admin plugins, the menu prompt to be displayed in the admin menu
 // if set here, the plugin doesn't need to override the getMenuText() method
-$lang['menu']       = 'Configuration Settings'; 
+$lang['menu']       = 'Configuration Settings';
 
 $lang['error']      = 'Settings not updated due to an invalid value, please review your changes and resubmit.
                        <br />The incorrect value(s) will be shown surrounded by a red border.';
@@ -17,83 +17,86 @@ $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.';
 
-// settings prompts
-$lang['umask']       = 'global permission mask';     //set the umask for new files
-$lang['fmode']       = 'file creation mode';         //directory mask accordingly
-$lang['dmode']       = 'directory creation mode';    //directory mask accordingly
-$lang['lang']        = 'language';           //your language
-$lang['basedir']     = 'base directory';     //absolute dir from serveroot - blank for autodetection
-$lang['baseurl']     = 'base url';           //URL to server including protocol - blank for autodetect
-$lang['savedir']     = 'save directory';     //where to store all the files
-$lang['start']       = 'start page name';    //name of start page
-$lang['title']       = 'wiki title';         //what to show in the title
-$lang['template']    = 'template';           //see tpl directory
-$lang['fullpath']    = 'use full path';      //show full path of the document or relative to datadir only? 0|1
-$lang['recent']      = 'recent changes';     //how many entries to show in recent
-$lang['breadcrumbs'] = 'breadcrumbs';        //how many recent visited pages to show
-$lang['typography']  = 'typography';         //convert quotes, dashes and stuff to typographic equivalents? 0|1
-$lang['htmlok']      = 'allow embedded html';//may raw HTML be embedded? This may break layout and XHTML validity 0|1
-$lang['phpok']       = 'allow embedded php'; //may PHP code be embedded? Never do this on the internet! 0|1
-$lang['dformat']     = 'date format';        //dateformat accepted by PHPs date() function
-$lang['signature']   = 'signature';          //signature see wiki:langig for details
-$lang['toptoclevel'] = 'top toc level';      //Level starting with and below to include in AutoTOC (max. 5)
-$lang['maxtoclevel'] = 'max toc level';      //Up to which level include into AutoTOC (max. 5)
-$lang['maxseclevel'] = 'max section edit level';   //Up to which level create editable sections (max. 5)
-$lang['camelcase']   = 'use camelcase for links';  //Use CamelCase for linking? (I don't like it) 0|1
-$lang['deaccent']    = 'deaccent in pagenames';    //convert accented chars to unaccented ones in pagenames?
-$lang['useheading']  = 'use first heading';        //use the first heading in a page as its name
-$lang['refcheck']    = 'media reference check';    //check for references before deleting media files
-$lang['refshow']     = 'media references to show'; //how many references should be shown, 5 is a good value
-$lang['allowdebug']  = 'allow debug (disable!)';   //make debug possible, disable after install! 0|1
-
-$lang['usewordblock']= 'block spam based on words';  //block spam based on words? 0|1
-$lang['indexdelay']  = 'time delay before indexing'; //allow indexing after this time (seconds) default is 5 days
-$lang['relnofollow'] = 'use rel="nofollow"';         //use rel="nofollow" for external links?
-$lang['mailguard']   = 'obfuscate email addresses';  //obfuscate email addresses against spam harvesters?
-
-/* Authentication Options - read http://www.splitbrain.org/dokuwiki/wiki:acl */
-$lang['useacl']      = 'use ACL';                //Use Access Control Lists to restrict access?
-$lang['openregister']= 'open register';          //Should users to be allowed to register?
-$lang['autopasswd']  = 'autogenerate passwords'; //autogenerate passwords and email them to user
-$lang['resendpasswd']= 'allow resend password';  //allow resend password function?
-$lang['authtype']    = 'authentication backend'; //which authentication backend should be used
-$lang['passcrypt']   = 'password encryption';    //Used crypt method (smd5,md5,sha1,ssha,crypt,mysql,my411)
-$lang['defaultgroup']= 'default group';          //Default groups new Users are added to
-$lang['superuser']   = 'superuser';              //The admin can be user or @group
-$lang['profileconfirm'] = 'profile confirm';     //Require current password to langirm changes to user profile
+
+/* -------------------- Config Options --------------------------- */
+
+$lang['umask']       = 'global permission mask';
+$lang['fmode']       = 'file creation mode';
+$lang['dmode']       = 'directory creation mode';
+$lang['lang']        = 'language';
+$lang['basedir']     = 'base directory';
+$lang['baseurl']     = 'base url';
+$lang['savedir']     = 'save directory';
+$lang['start']       = 'start page name';
+$lang['title']       = 'wiki title';
+$lang['template']    = 'template';
+$lang['fullpath']    = 'use full path';
+$lang['recent']      = 'recent changes';
+$lang['breadcrumbs'] = 'breadcrumbs';
+$lang['youarehere']  = 'hierarchical breadcrumbs';
+$lang['typography']  = 'typography';
+$lang['htmlok']      = 'allow embedded html';
+$lang['phpok']       = 'allow embedded php';
+$lang['dformat']     = 'date format';
+$lang['signature']   = 'signature';
+$lang['toptoclevel'] = 'top toc level';
+$lang['maxtoclevel'] = 'max toc level';
+$lang['maxseclevel'] = 'max section edit level';
+$lang['camelcase']   = 'use camelcase for links';
+$lang['deaccent']    = 'deaccent in pagenames';
+$lang['useheading']  = 'use first heading';
+$lang['refcheck']    = 'media reference check';
+$lang['refshow']     = 'media references to show';
+$lang['allowdebug']  = 'allow debug (disable!)';
+
+$lang['usewordblock']= 'block spam based on words';
+$lang['indexdelay']  = 'time delay before indexing';
+$lang['relnofollow'] = 'use rel="nofollow"';
+$lang['mailguard']   = 'obfuscate email addresses';
+
+/* Authentication Options */
+$lang['useacl']      = 'use ACL';
+$lang['openregister']= 'open register';
+$lang['autopasswd']  = 'autogenerate passwords';
+$lang['resendpasswd']= 'allow resend password';
+$lang['authtype']    = 'authentication backend';
+$lang['passcrypt']   = 'password encryption';
+$lang['defaultgroup']= 'default group';
+$lang['superuser']   = 'superuser';
+$lang['profileconfirm'] = 'profile confirm';
 
 /* Advanced Options */
-$lang['userewrite']  = 'use nice URLs';             //this makes nice URLs: 0: off 1: .htaccess 2: internal
-$lang['useslash']    = 'use slash';                 //use slash instead of colon? only when rewrite is on
-$lang['sepchar']     = 'page name word separator';  //word separator character in page names; may be a
-$lang['canonical']   = 'use fully canonical URLs';  //Should all URLs use full canonical http://... style?
-$lang['autoplural']  = 'auto-plural';               //try (non)plural form of nonexisting files?
-$lang['usegzip']     = 'use gzip (for attic)';      //gzip old revisions?
-$lang['cachetime']   = 'max. age for cache (sec)';  //maximum age for cachefile in seconds (defaults to a day)
-$lang['purgeonadd']  = 'purge cache on add';        //purge cache when a new file is added (needed for up to date links)
-$lang['locktime']    = 'max. age for lock files (sec)';  //maximum age for lockfiles (defaults to 15 minutes)
-$lang['notify']      = 'notify email address';      //send change info to this email (leave blank for nobody)
-$lang['mailfrom']    = 'wiki mail from';            //use this email when sending mails
-$lang['gdlib']       = 'GD Lib version';              //the GDlib version (0, 1 or 2) 2 tries to autodetect
-$lang['im_convert']  = 'imagemagick path';            //path to ImageMagicks convert (will be used instead of GD)
-$lang['spellchecker']= 'enable spellchecker';         //enable Spellchecker (needs PHP >= 4.3.0 and aspell installed)
-$lang['subscribers'] = 'enable subscription support'; //enable change notice subscription support
-$lang['compress']    = 'Compress CSS & javascript files';  //Strip whitespaces and comments from Styles and JavaScript? 1|0
-$lang['hidepages']   = 'Hide matching pages (regex)';      //Regexp for pages to be skipped from RSS, Search and Recent Changes
-$lang['send404']     = 'Send "HTTP404/Page Not Found"';    //Send a HTTP 404 status for non existing pages?
-$lang['sitemap']     = 'Generate google sitemap (days)';   //Create a google sitemap? How often? In days.
-
-$lang['rss_type']    = 'rss feed type';             //type of RSS feed to provide, by default:
-$lang['rss_linkto']  = 'rss links to';              //what page RSS entries link to:
-
-//Set target to use when creating links - leave empty for same window
+$lang['userewrite']  = 'use nice URLs';
+$lang['useslash']    = 'use slash';
+$lang['sepchar']     = 'page name word separator';
+$lang['canonical']   = 'use fully canonical URLs';
+$lang['autoplural']  = 'auto-plural';
+$lang['usegzip']     = 'use gzip (for attic)';
+$lang['cachetime']   = 'max. age for cache (sec)';
+$lang['purgeonadd']  = 'purge cache on add';
+$lang['locktime']    = 'max. age for lock files (sec)';
+$lang['notify']      = 'notify email address';
+$lang['mailfrom']    = 'wiki mail from';
+$lang['gdlib']       = 'GD Lib version';
+$lang['im_convert']  = 'imagemagick path';
+$lang['spellchecker']= 'enable spellchecker';
+$lang['subscribers'] = 'enable subscription support';
+$lang['compress']    = 'Compress CSS & javascript files';
+$lang['hidepages']   = 'Hide matching pages (regex)';
+$lang['send404']     = 'Send "HTTP 404/Page Not Found"';
+$lang['sitemap']     = 'Generate google sitemap (days)';
+
+$lang['rss_type']    = 'rss feed type';
+$lang['rss_linkto']  = 'rss links to';
+
+/* Target options */
 $lang['target____wiki']      = 'target for internal links';
 $lang['target____interwiki'] = 'target for interwiki links';
 $lang['target____extern']    = 'target for external links';
 $lang['target____media']     = 'target for media links';
 $lang['target____windows']   = 'target for windows links';
 
-//Proxy setup - if your Server needs a proxy to access the web set these
+/* Proxy Options */
 $lang['proxy____host'] = 'proxy - host';
 $lang['proxy____port'] = 'proxy - port';
 $lang['proxy____user'] = 'proxy - user name';
@@ -101,7 +104,7 @@ $lang['proxy____pass'] = 'proxy - password';
 $lang['proxy____ssl']  = 'proxy - ssl';
 
 /* Safemode Hack */
-$lang['safemodehack'] = 'enable safemode hack';  //read http://wiki.splitbrain.org/wiki:safemodehack !
+$lang['safemodehack'] = 'enable safemode hack';
 $lang['ftp____host'] = 'ftp - host';
 $lang['ftp____port'] = 'ftp - port';
 $lang['ftp____user'] = 'ftp - user name';
@@ -113,6 +116,11 @@ $lang['userewrite_o_0'] = 'none';
 $lang['userewrite_o_1'] = 'htaccess';
 $lang['userewrite_o_2'] = 'dokuwiki';
 
+/* deaccent options */
+$lang['deaccent_o_0'] = 'off';
+$lang['deaccent_o_1'] = 'remove accents';
+$lang['deaccent_o_2'] = 'romanize';
+
 /* gdlib options */
 $lang['gdlib_o_0'] = 'GD Lib not available';
 $lang['gdlib_o_1'] = 'version 1.x';