[ Index ]
 

Code source de DokuWiki 2006-11-06

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/lib/plugins/config/lang/en/ -> lang.php (source)

   1  <?php
   2  /**
   3   * english language file
   4   *
   5   * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
   6   * @author     Christopher Smith <chris@jalakai.co.uk>
   7   */
   8  
   9  // for admin plugins, the menu prompt to be displayed in the admin menu
  10  // if set here, the plugin doesn't need to override the getMenuText() method
  11  $lang['menu']       = 'Configuration Settings';
  12  
  13  $lang['error']      = 'Settings not updated due to an invalid value, please review your changes and resubmit.
  14                         <br />The incorrect value(s) will be shown surrounded by a red border.';
  15  $lang['updated']    = 'Settings updated successfully.';
  16  $lang['nochoice']   = '(no other choices available)';
  17  $lang['locked']     = 'The settings file can not be updated, if this is unintentional, <br />
  18                         ensure the local settings file name and permissions are correct.';
  19  
  20  /* --- Config Setting Headers --- */
  21  $lang['_configuration_manager'] = 'Configuration Manager'; //same as heading in intro.txt
  22  $lang['_header_dokuwiki'] = 'DokuWiki Settings';
  23  $lang['_header_plugin'] = 'Plugin Settings';
  24  $lang['_header_template'] = 'Template Settings';
  25  $lang['_header_undefined'] = 'Undefined Settings';
  26  
  27  /* --- Config Setting Groups --- */
  28  $lang['_basic'] = 'Basic Settings';
  29  $lang['_display'] = 'Display Settings';
  30  $lang['_authentication'] = 'Authentication Settings';
  31  $lang['_anti_spam'] = 'Anti-Spam Settings';
  32  $lang['_editing'] = 'Editing Settings';
  33  $lang['_links'] = 'Link Settings';
  34  $lang['_media'] = 'Media Settings';
  35  $lang['_advanced'] = 'Advanced Settings';
  36  $lang['_network'] = 'Network Settings';
  37  // The settings group name for plugins and templates can be set with
  38  // plugin_settings_name and template_settings_name respectively. If one
  39  // of these lang properties is not set, the group name will be generated
  40  // from the plugin or template name and the localized suffix.
  41  $lang['_plugin_sufix'] = 'Plugin Settings';
  42  $lang['_template_sufix'] = 'Template Settings';
  43  
  44  /* --- Undefined Setting Messages --- */
  45  $lang['_msg_setting_undefined'] = 'No setting metadata.';
  46  $lang['_msg_setting_no_class'] = 'No setting class.';
  47  $lang['_msg_setting_no_default'] = 'No default value.';
  48  
  49  /* -------------------- Config Options --------------------------- */
  50  
  51  $lang['fmode']       = 'File creation mode';
  52  $lang['dmode']       = 'Directory creation mode';
  53  $lang['lang']        = 'Language';
  54  $lang['basedir']     = 'Base directory';
  55  $lang['baseurl']     = 'Base URL';
  56  $lang['savedir']     = 'Directory for saving data';
  57  $lang['start']       = 'Start page name';
  58  $lang['title']       = 'Wiki title';
  59  $lang['template']    = 'Template';
  60  $lang['fullpath']    = 'Reveal full path of pages in the footer';
  61  $lang['recent']      = 'Recent changes';
  62  $lang['breadcrumbs'] = 'Number of breadcrumbs';
  63  $lang['youarehere']  = 'Hierarchical breadcrumbs';
  64  $lang['typography']  = 'Do typographical replacements';
  65  $lang['htmlok']      = 'Allow embedded HTML';
  66  $lang['phpok']       = 'Allow embedded PHP';
  67  $lang['dformat']     = 'Date format (see PHP\'s <a href="http://www.php.net/date">date</a> function)';
  68  $lang['signature']   = 'Signature';
  69  $lang['toptoclevel'] = 'Top level for table of contents';
  70  $lang['maxtoclevel'] = 'Maximum level for table of contents';
  71  $lang['maxseclevel'] = 'Maximum section edit level';
  72  $lang['camelcase']   = 'Use CamelCase for links';
  73  $lang['deaccent']    = 'Clean pagenames';
  74  $lang['useheading']  = 'Use first heading for pagenames';
  75  $lang['refcheck']    = 'Media reference check';
  76  $lang['refshow']     = 'Number of media references to show';
  77  $lang['allowdebug']  = 'Allow debug <b>disable if not needed!</b>';
  78  
  79  $lang['usewordblock']= 'Block spam based on wordlist';
  80  $lang['indexdelay']  = 'Time delay before indexing (sec)';
  81  $lang['relnofollow'] = 'Use rel="nofollow" on external links';
  82  $lang['mailguard']   = 'Obfuscate email addresses';
  83  
  84  /* Authentication Options */
  85  $lang['useacl']      = 'Use access control lists';
  86  $lang['autopasswd']  = 'Autogenerate passwords';
  87  $lang['authtype']    = 'Authentication backend';
  88  $lang['passcrypt']   = 'Password encryption method';
  89  $lang['defaultgroup']= 'Default group';
  90  $lang['superuser']   = 'Superuser';
  91  $lang['profileconfirm'] = 'Confirm profile changes with password';
  92  $lang['disableactions'] = 'Disable DokuWiki actions';
  93  $lang['disableactions_check'] = 'Check';
  94  $lang['disableactions_subscription'] = 'Subscribe/Unsubscribe';
  95  $lang['disableactions_wikicode'] = 'View source/Export Raw';
  96  $lang['disableactions_other'] = 'Other actions (comma separated)';
  97  
  98  /* Advanced Options */
  99  $lang['updatecheck'] = 'Check for updates and security warnings? DokuWiki needs to contact splitbrain.org for this feature.';
 100  $lang['userewrite']  = 'Use nice URLs';
 101  $lang['useslash']    = 'Use slash as namespace separator in URLs';
 102  $lang['usedraft']    = 'Automatically save a draft while editing';
 103  $lang['sepchar']     = 'Page name word separator';
 104  $lang['canonical']   = 'Use fully canonical URLs';
 105  $lang['autoplural']  = 'Check for plural forms in links';
 106  $lang['compression'] = 'Compression method for attic files';
 107  $lang['cachetime']   = 'Maximum age for cache (sec)';
 108  $lang['locktime']    = 'Maximum age for lock files (sec)';
 109  $lang['fetchsize']   = 'Maximum size (bytes) fetch.php may download from extern';
 110  $lang['notify']      = 'Send change notifications to this email address';
 111  $lang['registernotify'] = 'Send info on newly registered users to this email address';
 112  $lang['mailfrom']    = 'Email address to use for automatic mails';
 113  $lang['gzip_output'] = 'Use gzip Content-Encoding for xhtml';
 114  $lang['gdlib']       = 'GD Lib version';
 115  $lang['im_convert']  = 'Path to ImageMagick\'s convert tool';
 116  $lang['jpg_quality'] = 'JPG compression quality (0-100)';
 117  $lang['spellchecker']= 'Enable spellchecker';
 118  $lang['subscribers'] = 'Enable page subscription support';
 119  $lang['compress']    = 'Compact CSS and javascript output';
 120  $lang['hidepages']   = 'Hide matching pages (regular expressions)';
 121  $lang['send404']     = 'Send "HTTP 404/Page Not Found" for non existing pages';
 122  $lang['sitemap']     = 'Generate Google sitemap (days)';
 123  
 124  $lang['rss_type']    = 'XML feed type';
 125  $lang['rss_linkto']  = 'XML feed links to';
 126  $lang['rss_update']  = 'XML feed update interval (sec)';
 127  $lang['recent_days'] = 'How many recent changes to keep (days)';
 128  
 129  /* Target options */
 130  $lang['target____wiki']      = 'Target window for internal links';
 131  $lang['target____interwiki'] = 'Target window for interwiki links';
 132  $lang['target____extern']    = 'Target window for external links';
 133  $lang['target____media']     = 'Target window for media links';
 134  $lang['target____windows']   = 'Target window for windows links';
 135  
 136  /* Proxy Options */
 137  $lang['proxy____host'] = 'Proxy servername';
 138  $lang['proxy____port'] = 'Proxy port';
 139  $lang['proxy____user'] = 'Proxy user name';
 140  $lang['proxy____pass'] = 'Proxy password';
 141  $lang['proxy____ssl']  = 'Use ssl to connect to Proxy';
 142  
 143  /* Safemode Hack */
 144  $lang['safemodehack'] = 'Enable safemode hack';
 145  $lang['ftp____host'] = 'FTP server for safemode hack';
 146  $lang['ftp____port'] = 'FTP port for safemode hack';
 147  $lang['ftp____user'] = 'FTP user name for safemode hack';
 148  $lang['ftp____pass'] = 'FTP password for safemode hack';
 149  $lang['ftp____root'] = 'FTP root directory for safemode hack';
 150  
 151  /* userewrite options */
 152  $lang['userewrite_o_0'] = 'none';
 153  $lang['userewrite_o_1'] = '.htaccess';
 154  $lang['userewrite_o_2'] = 'DokuWiki internal';
 155  
 156  /* deaccent options */
 157  $lang['deaccent_o_0'] = 'off';
 158  $lang['deaccent_o_1'] = 'remove accents';
 159  $lang['deaccent_o_2'] = 'romanize';
 160  
 161  /* gdlib options */
 162  $lang['gdlib_o_0'] = 'GD Lib not available';
 163  $lang['gdlib_o_1'] = 'Version 1.x';
 164  $lang['gdlib_o_2'] = 'Autodetection';
 165  
 166  /* rss_type options */
 167  $lang['rss_type_o_rss']  = 'RSS 0.91';
 168  $lang['rss_type_o_rss1'] = 'RSS 1.0';
 169  $lang['rss_type_o_rss2'] = 'RSS 2.0';
 170  $lang['rss_type_o_atom'] = 'Atom 0.3';
 171  
 172  /* rss_linkto options */
 173  $lang['rss_linkto_o_diff']    = 'difference view';
 174  $lang['rss_linkto_o_page']    = 'the revised page';
 175  $lang['rss_linkto_o_rev']     = 'list of revisions';
 176  $lang['rss_linkto_o_current'] = 'the current page';
 177  
 178  /* compression options */
 179  $lang['compression_o_0']   = 'none';
 180  $lang['compression_o_gz']  = 'gzip';
 181  $lang['compression_o_bz2'] = 'bz2';
 182  


Généré le : Tue Apr 3 20:47:31 2007 par Balluche grâce à PHPXref 0.7