source: documentation/trunk/packages/dokuwiki-2011-05-25a/lib/tpl/monobook/lang/nl/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: 3.7 KB
Line 
1<?php
2
3/**
4 * Dutch language for the "monobook" DokuWiki template
5 * by Theo Klein (16/02/2010)
6 *
7 * If your language is not/only partially translated or you found an error/typo,
8 * have a look at the following files:
9 * - "/lib/tpl/monobook/lang/<your lang>/lang.php"
10 * - "/lib/tpl/monobook/lang/<your lang>/settings.php"
11 * If they are not existing, copy and translate the English ones. And don't
12 * forget to mail the translation to me,
13 * Andreas Haerter <[email protected]>. Thanks :-D.
14 *
15 *
16 * LICENSE: This file is open source software (OSS) and may be copied under
17 * certain conditions. See COPYING file for details or try to contact
18 * the author(s) of this file in doubt.
19 *
20 * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
21 * @author Theo Klein
22 * @link http://andreas-haerter.com/projects/dokuwiki-template-monobook
23 * @link http://www.dokuwiki.org/template:monobook
24 * @link http://www.dokuwiki.org/config:lang
25 * @link http://www.dokuwiki.org/devel:configuration
26 */
27
28
29//check if we are running within the DokuWiki environment
30if (!defined("DOKU_INC")){
31 die();
32}
33
34//tabs
35$lang["monobook_tab_article"] = "Artikel";
36$lang["monobook_tab_discussion"] = "Discussie";
37$lang["monobook_tab_userpage"] = "Gebruikers Pagina";
38$lang["monobook_tab_specialpage"] = "Speciale Pagina's";
39$lang["monobook_tab_mytalk"] = "Mijn overleg";
40$lang["monobook_tab_exportodt"] = "Exporteer: ODT";
41$lang["monobook_tab_exportpdf"] = "Exporteer: PDF";
42
43//headlines for the different bars
44$lang["monobook_bar_views"] = "Views";
45$lang["monobook_bar_personnaltools"] = "Persoonlijke gereedschappen";
46$lang["monobook_bar_navigation"] = "Navigatie";
47$lang["monobook_bar_toolbox"] = "Gereedschappen";
48$lang["monobook_bar_inotherlanguages"] = "In andere talen";
49$lang["monobook_bar_search"] = "Zoek";
50
51//buttons
52$lang["monobook_btn_go"] = "Ga naar";
53$lang["monobook_btn_search"] = "Zoek";
54
55//default toolbox
56$lang["monobook_toolbxdef_whatlinkshere"] = "Links naar deze pagina";
57$lang["monobook_toolbxdef_upload"] = "Upload bestand";
58$lang["monobook_toolbxdef_siteindex"] = "Index pagina";
59$lang["monobook_toolbxdef_print"] = "Printversie";
60$lang["monobook_toolboxdef_permanent"] = "Permanente link";
61$lang["monobook_toolboxdef_cite"] = "Deze pagina citeren";
62
63//cite this article
64$lang["monobook_cite_bibdetailsfor"] = "Bibliografische details voor";
65$lang["monobook_cite_pagename"] = "Page naam";
66$lang["monobook_cite_author"] = "Auteur";
67$lang["monobook_cite_publisher"] = "Uitgever";
68$lang["monobook_cite_dateofrev"] = "Datum van deze revisie";
69$lang["monobook_cite_dateretrieved"] = "Opgehaald op";
70$lang["monobook_cite_permurl"] = "Permanente URL";
71$lang["monobook_cite_pageversionid"] = "Pagina Versie ID";
72$lang["monobook_cite_citationstyles"] = "Stylen om te verwijzen naar";
73$lang["monobook_cite_checkstandards"] = "Vergeet niet uw eigen normen of richtlijnen te controleren voor de exacte zinsbouw die voldoet aan uw behoeften.";
74$lang["monobook_cite_latexusepackagehint"] = "Bij gebruik van URLs in het LaTeX-pakket geeft deze methode veel mooiere opgemaakte webadressen, hint: zoek naar '\usepackage {url} ' in de handleiding'";
75$lang["monobook_cite_retrieved"] = "Opgehaald op";
76$lang["monobook_cite_from"] = "van";
77$lang["monobook_cite_accessed"] = "Op";
78$lang["monobook_cite_cited"] = "Geciteerd";
79$lang["monobook_cite_lastvisited"] = "Laatst bezocht op";
80$lang["monobook_cite_availableat"] = "Beschikbaar op";
81
82//other
83$lang["monobook_accessdenied"] = "Toegang gewijgerd";
84$lang["monobook_fillplaceholder"] = "Vul dit veld in";
85$lang["monobook_donate"] = "Doneer";
86$lang["monobook_mdtemplatefordw"] = "monobook template voor DokuWiki";
87$lang["monobook_recentchanges"] = "Recent gewijzigd";
88
Note: See TracBrowser for help on using the repository browser.