xref: /dokuwiki/lib/plugins/config/lang/de/lang.php (revision abcc3801dff527c2603a3a2aadf43561ca6722ed)
1262065efSAndreas Gohr<?php
2262065efSAndreas Gohr/**
3262065efSAndreas Gohr * German language file
4262065efSAndreas Gohr *
5262065efSAndreas Gohr * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6262065efSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
7262065efSAndreas Gohr */
8*abcc3801SAndreas Gohr$lang['menu']                    = 'Konfiguration';
9*abcc3801SAndreas Gohr$lang['error']                   = 'Die Einstellungen wurden wegen einer fehlerhaften Eingabe nicht gespeichert.
10262065efSAndreas Gohr                           <br />Bitte überprüfen sie die rot umrandeten Eingaben und speichern Sie erneut.';
11*abcc3801SAndreas Gohr$lang['updated']                 = 'Einstellungen erfolgreich gespeichert.';
12*abcc3801SAndreas Gohr$lang['nochoice']                = '(keine Auswahlmöglichkeiten vorhanden)';
13*abcc3801SAndreas Gohr$lang['locked']                  = 'Die Konfigurationsdatei kann nicht geändert werden, wenn dies unbeabsichtigt ist
14262065efSAndreas Gohr                           <br />überprüfen Sie, dass die Dateiberechtigungen korrekt gesetzt sind.';
15*abcc3801SAndreas Gohr$lang['_configuration_manager']  = 'Konfiguration';
16*abcc3801SAndreas Gohr$lang['_header_dokuwiki']        = 'DokuWiki-Konfiguration';
17*abcc3801SAndreas Gohr$lang['_header_plugin']          = 'Plugin-Konfiguration';
18*abcc3801SAndreas Gohr$lang['_header_template']        = 'Template-Konfiguration';
19*abcc3801SAndreas Gohr$lang['_header_undefined']       = 'Unbekannte Einstellungen';
20*abcc3801SAndreas Gohr$lang['_basic']                  = 'Grund-Konfiguration';
21*abcc3801SAndreas Gohr$lang['_display']                = 'Anzeige-Konfiguration';
22*abcc3801SAndreas Gohr$lang['_authentication']         = 'Authentifizierungs-Konfiguration';
23*abcc3801SAndreas Gohr$lang['_anti_spam']              = 'Anti-Spam-Konfiguration';
24*abcc3801SAndreas Gohr$lang['_editing']                = 'Bearbeitungs-Konfiguration';
25*abcc3801SAndreas Gohr$lang['_links']                  = 'Link-Konfiguration';
26*abcc3801SAndreas Gohr$lang['_media']                  = 'Medien-Konfiguration';
27*abcc3801SAndreas Gohr$lang['_advanced']               = 'Erweiterte Konfiguration';
28*abcc3801SAndreas Gohr$lang['_network']                = 'Netzwerk-Konfiguration';
29*abcc3801SAndreas Gohr$lang['_plugin_sufix']           = 'Plugin Konfiguration';
30*abcc3801SAndreas Gohr$lang['_template_sufix']         = 'Template Konfiguration';
31*abcc3801SAndreas Gohr$lang['_msg_setting_undefined']  = 'Keine Konfigurationsmetadaten.';
32*abcc3801SAndreas Gohr$lang['_msg_setting_no_class']   = 'Keine Konfigurationsklasse.';
33*abcc3801SAndreas Gohr$lang['_msg_setting_no_default'] = 'Kein Standardwert.';
34*abcc3801SAndreas Gohr$lang['fmode']                   = 'Rechte für neue Dateien';
35*abcc3801SAndreas Gohr$lang['dmode']                   = 'Rechte für neue Verzeichnisse';
36*abcc3801SAndreas Gohr$lang['lang']                    = 'Sprache';
37*abcc3801SAndreas Gohr$lang['basedir']                 = 'Installationsverzeichnis';
38*abcc3801SAndreas Gohr$lang['baseurl']                 = 'Installationspfad (URL)';
39*abcc3801SAndreas Gohr$lang['savedir']                 = 'Speicherverzeichnis';
40*abcc3801SAndreas Gohr$lang['start']                   = 'Startseitenname';
41*abcc3801SAndreas Gohr$lang['title']                   = 'Titel des Wikis';
42*abcc3801SAndreas Gohr$lang['template']                = 'Designvorlage (Template)';
43*abcc3801SAndreas Gohr$lang['fullpath']                = 'Den kompletten Dateipfad im Footer anzeigen';
44*abcc3801SAndreas Gohr$lang['recent']                  = 'Anzahl der Einträge in der Änderungsliste';
45*abcc3801SAndreas Gohr$lang['breadcrumbs']             = 'Anzahl der Einträge im "Krümelpfad"';
46*abcc3801SAndreas Gohr$lang['youarehere']              = 'Hierarchische Pfadnavigation verwenden';
47*abcc3801SAndreas Gohr$lang['typography']              = 'Typographische Ersetzungen';
48*abcc3801SAndreas Gohr$lang['htmlok']                  = 'HTML erlauben';
49*abcc3801SAndreas Gohr$lang['phpok']                   = 'PHP erlauben';
50*abcc3801SAndreas Gohr$lang['dformat']                 = 'Datumsformat (Siehe PHP <a href="http://www.php.net/date">date</a> Funktion)';
51*abcc3801SAndreas Gohr$lang['signature']               = 'Signatur';
52*abcc3801SAndreas Gohr$lang['toptoclevel']             = 'Inhaltsverzeichnis bei dieser Überschriftsgröße beginnen';
53*abcc3801SAndreas Gohr$lang['maxtoclevel']             = 'Maximale Überschriftsgröße für Inhaltsverzeichnis';
54*abcc3801SAndreas Gohr$lang['maxseclevel']             = 'Abschnitte bis zu dieser Stufe einzeln editierbar machen';
55*abcc3801SAndreas Gohr$lang['camelcase']               = 'CamelCase-Verlinkungen verwenden';
56*abcc3801SAndreas Gohr$lang['deaccent']                = 'Seitennamen bereinigen';
57*abcc3801SAndreas Gohr$lang['useheading']              = 'Erste Überschrift als Seitennamen verwenden';
58*abcc3801SAndreas Gohr$lang['refcheck']                = 'Auf Verwendung beim Löschen von Media-Dateien testen';
59*abcc3801SAndreas Gohr$lang['refshow']                 = 'Wieviele Verwendungsorte der Media-Datei zeigen';
60*abcc3801SAndreas Gohr$lang['allowdebug']              = 'Debug-Ausgaben erlauben <b>Abschalten wenn nicht benötigt!</b>';
61*abcc3801SAndreas Gohr$lang['usewordblock']            = 'Spam-Blocking benutzen';
62*abcc3801SAndreas Gohr$lang['indexdelay']              = 'Zeit bevor Suchmaschinenindexierung erlaubt ist';
63*abcc3801SAndreas Gohr$lang['relnofollow']             = 'rel="nofollow" verwenden';
64*abcc3801SAndreas Gohr$lang['mailguard']               = 'E-Mail-Adressen schützen';
65*abcc3801SAndreas Gohr$lang['iexssprotect']            = 'Hochgeladene Dateien auf bösartigen JavaScript- und HTML-Code untersuchen.';
66*abcc3801SAndreas Gohr$lang['useacl']                  = 'Zugangskontrolle verwenden';
67*abcc3801SAndreas Gohr$lang['autopasswd']              = 'Passwort automatisch generieren';
68*abcc3801SAndreas Gohr$lang['authtype']                = 'Authentifizierungsmechanismus';
69*abcc3801SAndreas Gohr$lang['passcrypt']               = 'Verschlüsselungsmechanismus';
70*abcc3801SAndreas Gohr$lang['defaultgroup']            = 'Standardgruppe';
71*abcc3801SAndreas Gohr$lang['superuser']               = 'Administrator';
72*abcc3801SAndreas Gohr$lang['manager']                 = 'Manager - Eine Gruppe oder Nutzer mit Zugriff auf einige Administrationswerkzeuge.';
73*abcc3801SAndreas Gohr$lang['profileconfirm']          = 'Profiländerung nur nach Passwortbestätigung';
74*abcc3801SAndreas Gohr$lang['disableactions']          = 'DokuWiki-Aktionen deaktivieren';
75*abcc3801SAndreas Gohr$lang['disableactions_check']    = 'Check';
76*abcc3801SAndreas Gohr$lang['disableactions_subscription'] = 'Seiten-Abonnements';
77*abcc3801SAndreas Gohr$lang['disableactions_wikicode'] = 'Quelltext betrachten/exportieren';
78*abcc3801SAndreas Gohr$lang['disableactions_other']    = 'Andere Aktionen (durch Komma getrennt)';
79*abcc3801SAndreas Gohr$lang['sneaky_index']            = 'Standardmäßig zeigt DokuWiki alle Namensräume in der Übersicht. Wenn diese Option aktiviert wird, werden alle Namensräume, für die der Benutzer keine Lese-Rechte hat, nicht angezeigt. Dies kann unter Umständen dazu führen, das lesbare Unter-Namensräume nicht angezeigt werden und macht die Übersicht evtl. unbrauchbar in Kombination mit bestimmten ACL Einstellungen.';
80*abcc3801SAndreas Gohr$lang['auth_security_timeout']   = 'Authentifikations-Timeout (Sekunden)';
81*abcc3801SAndreas Gohr$lang['updatecheck']             = 'Automatisch auf Updates und Sicherheitswarnungen prüfen? DokuWiki muss sich dafür mit splitbrain.org verbinden.';
82*abcc3801SAndreas Gohr$lang['userewrite']              = 'URL rewriting';
83*abcc3801SAndreas Gohr$lang['useslash']                = 'Schrägstrich (/) als Namensraumtrenner in URLs verwenden';
84*abcc3801SAndreas Gohr$lang['usedraft']                = 'Während des Bearbeitens automatisch Zwischenentwürfe speichern';
85*abcc3801SAndreas Gohr$lang['sepchar']                 = 'Worttrenner für Seitennamen in URLs';
86*abcc3801SAndreas Gohr$lang['canonical']               = 'Immer Links mit vollständigen URLs erzeugen';
87*abcc3801SAndreas Gohr$lang['autoplural']              = 'Bei Links automatisch nach vorhandenen Pluralformen suchen';
88*abcc3801SAndreas Gohr$lang['compression']             = 'Komprimierungsmethode für alte Seitenrevisionen';
89*abcc3801SAndreas Gohr$lang['cachetime']               = 'Maximale Cachespeicherung (Sek.)';
90*abcc3801SAndreas Gohr$lang['locktime']                = 'Maximales Alter für Seitensperren (Sek.)';
91*abcc3801SAndreas Gohr$lang['fetchsize']               = 'Maximale Größe (in Bytes), die fetch.php von extern herunterladen darf';
92*abcc3801SAndreas Gohr$lang['notify']                  = 'Änderungsmitteilungen an diese E-Mail-Adresse versenden';
93*abcc3801SAndreas Gohr$lang['registernotify']          = 'Information über neu registrierte Nutzer an diese E-Mail-Adresse senden';
94*abcc3801SAndreas Gohr$lang['mailfrom']                = 'Absendermail für automatische Mails';
95*abcc3801SAndreas Gohr$lang['gzip_output']             = 'Seiten mit gzip komprimiert ausliefern';
96*abcc3801SAndreas Gohr$lang['gdlib']                   = 'GD Lib Version';
97*abcc3801SAndreas Gohr$lang['im_convert']              = 'Pfad zu ImageMagicks Konvertierwerkzeug';
98*abcc3801SAndreas Gohr$lang['jpg_quality']             = 'JPEG Kompressionsqualität (0-100)';
99*abcc3801SAndreas Gohr$lang['spellchecker']            = 'Rechtschreibprüfung aktivieren';
100*abcc3801SAndreas Gohr$lang['subscribers']             = 'E-Mail-Abos zulassen';
101*abcc3801SAndreas Gohr$lang['compress']                = 'JavaScript und Stylesheets komprimieren';
102*abcc3801SAndreas Gohr$lang['hidepages']               = 'Seiten verstecken (Regulärer Ausdruck)';
103*abcc3801SAndreas Gohr$lang['send404']                 = 'Bei nicht vorhandenen Seiten mit 404 Fehlercode antworten';
104*abcc3801SAndreas Gohr$lang['sitemap']                 = 'Google Sitemap erzeugen (Tage)';
105*abcc3801SAndreas Gohr$lang['broken_iua']              = 'Falls die Funktion ignore_user_abort auf Ihrem System nicht funktioniert, könnte der Such-Index nicht funktionieren. IIS+PHP/CGI ist bekannt dafür. Siehe auch <a href="http://bugs.splitbrain.org/?do=details&amp;task_id=852">Bug 852</a>.';
106*abcc3801SAndreas Gohr$lang['rss_type']                = 'XML-Feed Format';
107*abcc3801SAndreas Gohr$lang['rss_linkto']              = 'XML-Feed verlinken auf';
108*abcc3801SAndreas Gohr$lang['rss_update']              = 'XML-Feed Aktualisierungsintervall (sec)';
109*abcc3801SAndreas Gohr$lang['recent_days']             = 'Wieviele letzte Änderungen sollen einsehbar bleiben? (Tage)';
110*abcc3801SAndreas Gohr$lang['rss_show_summary']        = 'Bearbeitungs-Zusammenfassung im XML Feed anzeigen';
111*abcc3801SAndreas Gohr$lang['target____wiki']          = 'Zielfenster für interne Links (target Attribut)';
112*abcc3801SAndreas Gohr$lang['target____interwiki']     = 'Zielfenster für InterWiki-Links (target Attribut)';
113*abcc3801SAndreas Gohr$lang['target____extern']        = 'Zielfenster für Externe Links (target Attribut)';
114*abcc3801SAndreas Gohr$lang['target____media']         = 'Zielfenster für (Bild-)Dateien (target Attribut)';
115*abcc3801SAndreas Gohr$lang['target____windows']       = 'Zielfenster für Windows Freigaben (target Attribut)';
116*abcc3801SAndreas Gohr$lang['proxy____host']           = 'Proxy-Server';
117*abcc3801SAndreas Gohr$lang['proxy____port']           = 'Proxy-Port';
118*abcc3801SAndreas Gohr$lang['proxy____user']           = 'Proxy Nutzername';
119*abcc3801SAndreas Gohr$lang['proxy____pass']           = 'Proxy Passwort';
120*abcc3801SAndreas Gohr$lang['proxy____ssl']            = 'SSL bei Verbindung zum Proxy verwenden';
121*abcc3801SAndreas Gohr$lang['safemodehack']            = 'Safemodehack verwenden';
122*abcc3801SAndreas Gohr$lang['ftp____host']             = 'FTP-Host für Safemodehack';
123*abcc3801SAndreas Gohr$lang['ftp____port']             = 'FTP-Port für Safemodehack';
124*abcc3801SAndreas Gohr$lang['ftp____user']             = 'FTP Nutzername für Safemodehack';
125*abcc3801SAndreas Gohr$lang['ftp____pass']             = 'FTP Passwort für Safemodehack';
126*abcc3801SAndreas Gohr$lang['ftp____root']             = 'FTP Wurzelverzeichnis für Safemodehack';
127*abcc3801SAndreas Gohr$lang['typography_o_0']          = 'keine';
128*abcc3801SAndreas Gohr$lang['typography_o_1']          = 'Nur Doppelte Anführungszeichen';
129*abcc3801SAndreas Gohr$lang['typography_o_2']          = 'Alle Anführungszeichen (funktioniert nicht immer)';
130*abcc3801SAndreas Gohr$lang['userewrite_o_0']          = 'keines';
131*abcc3801SAndreas Gohr$lang['userewrite_o_1']          = '.htaccess';
132*abcc3801SAndreas Gohr$lang['userewrite_o_2']          = 'DokuWiki';
133*abcc3801SAndreas Gohr$lang['deaccent_o_0']            = 'aus';
134*abcc3801SAndreas Gohr$lang['deaccent_o_1']            = 'Akzente und Umlaute umwandeln';
135*abcc3801SAndreas Gohr$lang['deaccent_o_2']            = 'Umschrift';
136*abcc3801SAndreas Gohr$lang['gdlib_o_0']               = 'GD Lib nicht verfügbar';
137*abcc3801SAndreas Gohr$lang['gdlib_o_1']               = 'Version 1.x';
138*abcc3801SAndreas Gohr$lang['gdlib_o_2']               = 'Automatisch finden';
139*abcc3801SAndreas Gohr$lang['rss_type_o_rss']          = 'RSS 0.91';
140*abcc3801SAndreas Gohr$lang['rss_type_o_rss1']         = 'RSS 1.0';
141*abcc3801SAndreas Gohr$lang['rss_type_o_rss2']         = 'RSS 2.0';
142*abcc3801SAndreas Gohr$lang['rss_type_o_atom']         = 'Atom 0.3';
143*abcc3801SAndreas Gohr$lang['rss_linkto_o_diff']       = 'Änderungen zeigen';
144*abcc3801SAndreas Gohr$lang['rss_linkto_o_page']       = 'geänderte Seite';
145*abcc3801SAndreas Gohr$lang['rss_linkto_o_rev']        = 'Liste aller Änderungen';
146*abcc3801SAndreas Gohr$lang['rss_linkto_o_current']    = 'Aktuelle Seite';
147*abcc3801SAndreas Gohr$lang['compression_o_0']         = 'keine';
148*abcc3801SAndreas Gohr$lang['compression_o_gz']        = 'gzip';
149*abcc3801SAndreas Gohr$lang['compression_o_bz2']       = 'bz2';
150