source: documentation/trunk/packages/dokuwiki-2011-05-25a/lib/tpl/monobook/lang/nl/settings.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.1 KB
Line 
1<?php
2
3/**
4 * Dutch language for the Config Manager
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//discussion pages
35$lang["monobook_discuss"] = "Gebruik discussie pagina's en tabs?";
36$lang["monobook_discuss_ns"] = "Indien ja, gebruik de volgende ':namespace:' als root voor discussies:";
37
38//site notice
39$lang["monobook_sitenotice"] = "Toon notificatie door de gehele site?";
40$lang["monobook_sitenotice_location"] = "Indien ja, gebruik de volgende wiki pagina als notificatie:";
41
42//navigation
43$lang["monobook_navigation"] = "Toon navigatie?";
44$lang["monobook_navigation_location"] = "Indien ja, gebruik de volgende wiki pagina als navigatie:";
45
46//custom copyright notice
47$lang["monobook_copyright"] = "Toon copyright notificatie?";
48$lang["monobook_copyright_default"] = "Indien ja, gebruik de standaard copyright notificatie?";
49$lang["monobook_copyright_location"] = "Wanneer de standaard niet gebruikt wordt, gebruik de volgende wiki pagina als copyright notificatie:";
50
51//search form
52$lang["monobook_search"] = "Toon zoek veld?";
53
54//toolbox
55$lang["monobook_toolbox"] = "Toon gereedschappen?";
56$lang["monobook_toolbox_default"] = "Indien ja, gebruik maken van de standaard gereedschappen?";
57$lang["monobook_toolbox_default_print"] = "Indien de standaard gebruikt wordt, toon een link naar de printbare versie?";
58$lang["monobook_toolbox_location"] = "Indien niet de standaard gereedschappen gebruikt worden, wordt deze wiki pagina gebruikt:";
59
60//donation link/button
61$lang["monobook_donate"] = "Toon donatie link/knop?";
62$lang["monobook_donate_default"] = "Indien ja, gebruik de standaard donatie URL?";
63$lang["monobook_donate_url"] = "Indien niet standaard, gebruik de volgende URL voor donaties:";
64
65//other stuff
66$lang["monobook_breadcrumbs_position"] = "Positie van broodkruimel navigatie (indien ingeschakeld):";
67$lang["monobook_youarehere_position"] = "Positie van 'U bent hier' navigatie (indien ingeschakeld):";
68$lang["monobook_cite_author"] = "Naam van de auteur in 'Citeer dit artikel':";
69$lang["monobook_loaduserjs"] = "Laad 'monobook/user/user.js'?";
70
Note: See TracBrowser for help on using the repository browser.