source: documentation/trunk/packages/dokuwiki-2011-05-25a/lib/tpl/monobook/lang/de/lang.php@ 25027

Last change on this file since 25027 was 25027, checked in by jmt12, 12 years ago

Adding the packages directory, and within it a configured version of dokuwiki all ready to run

File size: 4.2 KB
Line 
1<?php
2
3/**
4 * German language (formal, "Sie") for the "monobook" DokuWiki template
5 *
6 * If your language is not/only partially translated or you found an error/typo,
7 * have a look at the following files:
8 * - "/lib/tpl/monobook/lang/<your lang>/lang.php"
9 * - "/lib/tpl/monobook/lang/<your lang>/settings.php"
10 * If they are not existing, copy and translate the English ones. And don't
11 * forget to mail the translation to me,
12 * Andreas Haerter <[email protected]>. Thanks :-D.
13 *
14 *
15 * LICENSE: This file is open source software (OSS) and may be copied under
16 * certain conditions. See COPYING file for details or try to contact
17 * the author(s) of this file in doubt.
18 *
19 * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
20 * @author Andreas Haerter <[email protected]>
21 * @link http://andreas-haerter.com/projects/dokuwiki-template-monobook
22 * @link http://www.dokuwiki.org/template:monobook
23 * @link http://www.dokuwiki.org/config:lang
24 * @link http://www.dokuwiki.org/devel:configuration
25 */
26
27
28//check if we are running within the DokuWiki environment
29if (!defined("DOKU_INC")){
30 die();
31}
32
33//tabs
34$lang["monobook_tab_article"] = "Artikel";
35$lang["monobook_tab_discussion"] = "Diskussion";
36$lang["monobook_tab_userpage"] = "Benutzerseite";
37$lang["monobook_tab_specialpage"] = "Spezialseiten";
38$lang["monobook_tab_mytalk"] = "Meine Diskussion";
39$lang["monobook_tab_exportodt"] = "Export: ODT";
40$lang["monobook_tab_exportpdf"] = "Export: PDF";
41
42//headlines for the different bars
43$lang["monobook_bar_views"] = "Ansichten";
44$lang["monobook_bar_personnaltools"] = "Eigene Werkzeuge";
45$lang["monobook_bar_navigation"] = "Navigation";
46$lang["monobook_bar_toolbox"] = "Werkzeuge";
47$lang["monobook_bar_inotherlanguages"] = "Andere Sprachen";
48$lang["monobook_bar_search"] = "Suche";
49
50//buttons
51$lang["monobook_btn_go"] = "Los";
52$lang["monobook_btn_search"] = "Suche";
53
54//default toolbox
55$lang["monobook_toolbxdef_whatlinkshere"] = "Links auf diese Seite";
56$lang["monobook_toolbxdef_upload"] = "Hochladen";
57$lang["monobook_toolbxdef_siteindex"] = "Seitenindex";
58$lang["monobook_toolbxdef_print"] = "Druckversion";
59$lang["monobook_toolboxdef_permanent"] = "Permanentlink";
60$lang["monobook_toolboxdef_cite"] = "Artikel zitieren";
61
62//cite this article
63$lang["monobook_cite_bibdetailsfor"] = "Bibliografische Details fÃŒr";
64$lang["monobook_cite_pagename"] = "Seitenname";
65$lang["monobook_cite_author"] = "Autor";
66$lang["monobook_cite_publisher"] = "Herausgeber";
67$lang["monobook_cite_dateofrev"] = "Datum dieser Revision";
68$lang["monobook_cite_dateretrieved"] = "Datum des Abrufs";
69$lang["monobook_cite_permurl"] = "Permanente URL";
70$lang["monobook_cite_pageversionid"] = "Seiten-Versions-ID";
71$lang["monobook_cite_citationstyles"] = "Zitatstile fÃŒr";
72$lang["monobook_cite_checkstandards"] = "Denken Sie bitte daran die Angaben mit den Ihnen vorliegenden Vorgaben oder den Vorgaben Ihres Professors zu vergleichen um die exakte Syntax, welche die Anforderungen erfÃŒllt, zu erhalten.";
73$lang["monobook_cite_latexusepackagehint"] = "Bei Benutzung der LaTeX-Paketes „url“ (\usepackage{url} im Bereich der Einleitung), welches eine schöner formatierte Internetadresse ausgibt, oder „hyperref“ (\usepackage{hyperref}, nur bei Erzeugung von PDF-Dokumenten), welches diese zusÀtzlich noch verlinkt, kann die folgende Ausgabe genommen werden";
74$lang["monobook_cite_retrieved"] = "Abgefragt";
75$lang["monobook_cite_from"] = "von";
76$lang["monobook_cite_in"] = "In";
77$lang["monobook_cite_accessed"] = "Abgerufen";
78$lang["monobook_cite_cited"] = "Zitiert";
79$lang["monobook_cite_lastvisited"] = "Zuletzt besucht";
80$lang["monobook_cite_availableat"] = "VerfÃŒgbar auf";
81$lang["monobook_cite_discussionpages"] = "DokuWiki Diskussionsseiten";
82$lang["monobook_cite_markup"] = "Markup";
83$lang["monobook_cite_result"] = "Ergebnis";
84$lang["monobook_cite_thisversion"] = "Diese Version";
85
86//other
87$lang["monobook_accessdenied"] = "Zugriff verweigert";
88$lang["monobook_fillplaceholder"] = "Diesen Platzhalter bitte fÃŒllen";
89$lang["monobook_donate"] = "Spenden";
90$lang["monobook_mdtemplatefordw"] = "monobook-Template fÃŒr DokuWiki";
91$lang["monobook_recentchanges"] = "Neuste Änderungen";
92
Note: See TracBrowser for help on using the repository browser.