1a0c3b0eaSlarsch8<?php 2a0c3b0eaSlarsch8/** 3a0c3b0eaSlarsch8 * Danish language file 4a0c3b0eaSlarsch8 * 5a0c3b0eaSlarsch8 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 6a0c3b0eaSlarsch8 * @author Lars Næsbye Christensen <larsnaesbye@stud.ku.dk> 7a0c3b0eaSlarsch8 */ 8a0c3b0eaSlarsch8 9a0c3b0eaSlarsch8// for admin plugins, the menu prompt to be displayed in the admin menu 10a0c3b0eaSlarsch8// if set here, the plugin doesn't need to override the getMenuText() method 11a0c3b0eaSlarsch8$lang['menu'] = 'Konfigurationsindstillinger'; 12a0c3b0eaSlarsch8 13a0c3b0eaSlarsch8$lang['error'] = 'Indstillingerne blev ikke opdateret på grund af en ugyldig værdi, gennemse venligst dine ændringer og gem dem igen. 14a0c3b0eaSlarsch8 <br />De(n) ugyldig(e) værdie(r) vil blive rammet ind med rødt.'; 15a0c3b0eaSlarsch8$lang['updated'] = 'Indstillingerne blev opdateret korrekt.'; 16a0c3b0eaSlarsch8$lang['nochoice'] = '(ingen andre valgmuligheder)'; 17a0c3b0eaSlarsch8$lang['locked'] = 'Indstillingsfilen kunne ikke opdateres, hvis dette er en fejl, <br /> 18a0c3b0eaSlarsch8 sørg da for at den lokale indstillingsfils navn og rettigheder er korrekte.'; 19a0c3b0eaSlarsch8 203524d3a0Slarsch8 213524d3a0Slarsch8/* -------------------- Config Options --------------------------- */ 223524d3a0Slarsch8 23*81b576bdSlarsch8//$lang['fmode'] = 'File creation mode'; 24*81b576bdSlarsch8//$lang['dmode'] = 'Directory creation mode'; 25*81b576bdSlarsch8$lang['lang'] = 'Sprog'; 26*81b576bdSlarsch8//$lang['basedir'] = 'Base directory'; 27*81b576bdSlarsch8//$lang['baseurl'] = 'Base URL'; 28*81b576bdSlarsch8//$lang['savedir'] = 'Directory for saving data'; 29*81b576bdSlarsch8$lang['start'] = 'Startsidens navn'; 30*81b576bdSlarsch8$lang['title'] = 'Wiki titel'; 31*81b576bdSlarsch8$lang['template'] = 'Skabelon'; 32*81b576bdSlarsch8//$lang['fullpath'] = 'Reveal full path of pages in the footer'; 33*81b576bdSlarsch8$lang['recent'] = 'Nylige ændringer'; 34*81b576bdSlarsch8$lang['breadcrumbs'] = 'Stilængde'; 35*81b576bdSlarsch8$lang['youarehere'] = 'Hierarkisk sti'; 36*81b576bdSlarsch8$lang['typography'] = 'Typografiske erstatninger'; 37*81b576bdSlarsch8$lang['htmlok'] = 'Tillad indlejret HTML'; 38*81b576bdSlarsch8$lang['phpok'] = 'Tillad indlejret PHP'; 39*81b576bdSlarsch8$lang['dformat'] = 'Datoformat (se PHP\'s <a href="http://www.php.net/date">date</a> funktion)'; 40*81b576bdSlarsch8$lang['signature'] = 'Signatur'; 41*81b576bdSlarsch8//$lang['toptoclevel'] = 'Top level for table of contents'; 42*81b576bdSlarsch8//$lang['maxtoclevel'] = 'Maximum level for table of contents'; 43*81b576bdSlarsch8//$lang['maxseclevel'] = 'Maximum section edit level'; 44*81b576bdSlarsch8$lang['camelcase'] = 'Brug CamelCase til links'; 45*81b576bdSlarsch8//$lang['deaccent'] = 'Clean pagenames'; 46*81b576bdSlarsch8//$lang['useheading'] = 'Use first heading for pagenames'; 47*81b576bdSlarsch8//$lang['refcheck'] = 'Media reference check'; 48*81b576bdSlarsch8//$lang['refshow'] = 'Number of media references to show'; 49*81b576bdSlarsch8$lang['allowdebug'] = 'Tillad debugging <b>slå fra hvis unødvendig!</b>'; 50*81b576bdSlarsch8 51*81b576bdSlarsch8$lang['usewordblock']= 'Bloker spam baseret på ordliste'; 52*81b576bdSlarsch8//$lang['indexdelay'] = 'Time delay before indexing'; 53*81b576bdSlarsch8$lang['relnofollow'] = 'Brug rel="nofollow"'; 54*81b576bdSlarsch8//$lang['mailguard'] = 'Obfuscate email addresses'; 55*81b576bdSlarsch8 56*81b576bdSlarsch8/* Authentication Options */ 57*81b576bdSlarsch8//$lang['useacl'] = 'Use access control lists'; 58*81b576bdSlarsch8//$lang['openregister']= 'Allow everyon to register'; 59*81b576bdSlarsch8//$lang['autopasswd'] = 'Autogenerate passwords'; 60*81b576bdSlarsch8//$lang['resendpasswd']= 'Allow resend password'; 61*81b576bdSlarsch8//$lang['authtype'] = 'Authentication backend'; 62*81b576bdSlarsch8//$lang['passcrypt'] = 'Password encryption method'; 63*81b576bdSlarsch8//$lang['defaultgroup']= 'Default group'; 64*81b576bdSlarsch8$lang['superuser'] = 'Superbruger'; 65*81b576bdSlarsch8//$lang['profileconfirm'] = 'Confirm profile changes with password'; 66*81b576bdSlarsch8 67*81b576bdSlarsch8/* Advanced Options */ 68*81b576bdSlarsch8//$lang['userewrite'] = 'Use nice URLs'; 69*81b576bdSlarsch8//$lang['useslash'] = 'Use slash as namespace separator in URLs'; 70*81b576bdSlarsch8//$lang['sepchar'] = 'Page name word separator'; 71*81b576bdSlarsch8//$lang['canonical'] = 'Use fully canonical URLs'; 72*81b576bdSlarsch8//$lang['autoplural'] = 'Check for plural forms in links'; 73*81b576bdSlarsch8//$lang['usegzip'] = 'Use gzip (for attic)'; 74*81b576bdSlarsch8//$lang['cachetime'] = 'Maximum age for cache (sec)'; 75*81b576bdSlarsch8$lang['purgeonadd'] = 'Ryd cache når nye sider tilføjes'; 76*81b576bdSlarsch8//$lang['locktime'] = 'Maximum age for lock files (sec)'; 77*81b576bdSlarsch8//$lang['notify'] = 'Send change notifications to this email address'; 78*81b576bdSlarsch8$lang['mailfrom'] = 'Email adresse til brug for automatiske mails'; 79*81b576bdSlarsch8$lang['gdlib'] = 'GD Lib version'; 80*81b576bdSlarsch8//$lang['im_convert'] = 'Path to ImageMagick\'s convert tool'; 81*81b576bdSlarsch8$lang['spellchecker']= 'Slå stavekontrol til'; 82*81b576bdSlarsch8//$lang['subscribers'] = 'Enable page subscription support'; 83*81b576bdSlarsch8$lang['compress'] = 'Komprimer CSS og Javascript filer'; 84*81b576bdSlarsch8//$lang['hidepages'] = 'Hide matching pages (regular expressions)'; 85*81b576bdSlarsch8$lang['send404'] = 'Send "HTTP 404/Page Not Found" for ikke-eksisterende sider'; 86*81b576bdSlarsch8$lang['sitemap'] = 'Generer Google sitemap (dage)'; 87*81b576bdSlarsch8 88*81b576bdSlarsch8$lang['rss_type'] = 'XML feed type'; 89*81b576bdSlarsch8$lang['rss_linkto'] = 'XML feed linker til'; 90*81b576bdSlarsch8 91*81b576bdSlarsch8/* Target options */ 92*81b576bdSlarsch8$lang['target____wiki'] = 'Destinationsvindue til interne links';/$lang['target____interwiki'] = 'Destinationsvindue til interwiki links'; 93*81b576bdSlarsch8$lang['target____extern'] = 'Destinationsvindue til externe links'; 94*81b576bdSlarsch8$lang['target____media'] = 'Destinationsvindue til medie links'; 95*81b576bdSlarsch8$lang['target____windows'] = 'Destinationsvindue til Windows links'; 96*81b576bdSlarsch8 97*81b576bdSlarsch8/* Proxy Options */ 98*81b576bdSlarsch8$lang['proxy____host'] = 'Proxy servernavn'; 99*81b576bdSlarsch8$lang['proxy____port'] = 'Proxy port'; 100*81b576bdSlarsch8$lang['proxy____user'] = 'Proxy brugernavn'; 101*81b576bdSlarsch8$lang['proxy____pass'] = 'Proxy password'; 102*81b576bdSlarsch8$lang['proxy____ssl'] = 'Brug SSL til at forbinde til proxy'; 103*81b576bdSlarsch8 104*81b576bdSlarsch8/* Safemode Hack */ 105*81b576bdSlarsch8//$lang['safemodehack'] = 'enable safemode hack'; 106*81b576bdSlarsch8//$lang['ftp____host'] = 'FTP server for safemode hack'; 107*81b576bdSlarsch8//$lang['ftp____port'] = 'FTP port for safemode hack'; 108*81b576bdSlarsch8//$lang['ftp____user'] = 'FTP user name for safemode hack'; 109*81b576bdSlarsch8//$lang['ftp____pass'] = 'FTP password for safemode hack'; 110*81b576bdSlarsch8//$lang['ftp____root'] = 'FTP root directory for safemode hack'; 111*81b576bdSlarsch8 1128bfc2a4aSlarsch8/* userewrite options */ 1138bfc2a4aSlarsch8$lang['userewrite_o_0'] = 'ingen'; 1148bfc2a4aSlarsch8$lang['userewrite_o_1'] = 'htaccess'; 1153524d3a0Slarsch8$lang['userewrite_o_2'] = 'Dokuwiki intern'; 1163524d3a0Slarsch8 1173524d3a0Slarsch8/* deaccent options */ 1183524d3a0Slarsch8$lang['deaccent_o_0'] = 'fra'; 1193524d3a0Slarsch8$lang['deaccent_o_1'] = 'fjern accenter'; 1203524d3a0Slarsch8$lang['deaccent_o_2'] = 'romaniser'; 1218bfc2a4aSlarsch8 1228bfc2a4aSlarsch8/* gdlib options */ 1238bfc2a4aSlarsch8$lang['gdlib_o_0'] = 'GD Lib ikke tilstede'; 1248bfc2a4aSlarsch8$lang['gdlib_o_1'] = 'version 1.x'; 1258bfc2a4aSlarsch8$lang['gdlib_o_2'] = 'automatisk detektering'; 1268bfc2a4aSlarsch8 1278bfc2a4aSlarsch8/* rss_type options */ 1288bfc2a4aSlarsch8$lang['rss_type_o_rss'] = 'RSS 0.91'; 1298bfc2a4aSlarsch8$lang['rss_type_o_rss1'] = 'RSS 1.0'; 1308bfc2a4aSlarsch8$lang['rss_type_o_rss2'] = 'RSS 2.0'; 1318bfc2a4aSlarsch8$lang['rss_type_o_atom'] = 'Atom 0.3'; 1328bfc2a4aSlarsch8 1338bfc2a4aSlarsch8/* rss_linkto options */ 1348bfc2a4aSlarsch8$lang['rss_linkto_o_diff'] = 'liste over forskelle'; 1358bfc2a4aSlarsch8$lang['rss_linkto_o_page'] = 'den redigerede side'; 1368bfc2a4aSlarsch8$lang['rss_linkto_o_rev'] = 'liste over ændringer'; 1378bfc2a4aSlarsch8$lang['rss_linkto_o_current'] = 'den nuværende side'; 1388bfc2a4aSlarsch8 139