source: documentation/trunk/packages/dokuwiki-2011-05-25a/lib/tpl/monobook/lang/no/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.8 KB
Line 
1<?php
2
3/**
4 * Norwegian language for the Config Manager
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 *
20 * <b>no: Norsk språk for konfigurasjonsinnstillinger</b>
21 *
22 * Hvis ditt språk ikke er her eller bare delvis er oversatt, ta en titt på
23 * fÞlgende filer:
24 * - "/lib/tpl/monobook/lang/<your lang>/lang.php"
25 * - "/lib/tpl/monobook/lang/<your lang>/settings.php"
26 * Hvis de ikke fins, kopier og oversett de engelske versjonene. Og ikke glem
27 * å sende oversettelsen til meg,
28 * Andreas Haerter <[email protected]>. Takk:-D.
29 *
30 *
31 * LISENS: Denne fila er programvare med åpen kildekode og kan kopieres under
32 * visse vilkår. Se fila COPYING for detaljer eller forsÞk å kontakte
33 * forfatteren av denne fila.
34 *
35 *
36 * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
37 * @author Henrik KarlstrÞm <[email protected]>
38 * @link http://andreas-haerter.com/projects/dokuwiki-template-monobook
39 * @link http://www.dokuwiki.org/template:monobook
40 * @link http://www.dokuwiki.org/config:lang
41 * @link http://www.dokuwiki.org/devel:configuration
42 */
43
44
45//check if we are running within the DokuWiki environment
46if (!defined("DOKU_INC")){
47 die();
48}
49
50//discussion pages
51//diskusjonssider
52$lang["monobook_discuss"] = "Bruke diskusjonsfaner?";
53$lang["monobook_discuss_ns"] = "Hvis ja, bruk fÞlgende ':namespace:' som rot for diskusjoner:";
54
55//site notice
56//sidenotis
57$lang["monobook_sitenotice"] = "Vise notis over hele sida?";
58$lang["monobook_sitenotice_location"] = "Hvis ja, bruk fÞlgende wiki-side for notisen:";
59
60//navigation
61//navigering
62$lang["monobook_navigation"] = "Vise navigering?";
63$lang["monobook_navigation_location"] = "Hvis ja, bruk fÞlgende wiki-side til navigering:";
64
65//custom copyright notice
66//selvvalgt kopibeskyttelsesnotis
67$lang["monobook_copyright"] = "Vise kopibeskyttelsesnotis?";
68$lang["monobook_copyright_default"] = "Hvis ja, bruk standard kopibeskyttelsesnotis?";
69$lang["monobook_copyright_location"] = "Hvis ikke standard, bruk fÞlgende wiki-side til kopibeskyttelsesnotis:";
70
71//search form
72//sÞkefelt
73$lang["monobook_search"] = "Vise sÞkefelt?";
74
75//toolbox
76//verktÞykasse
77$lang["monobook_toolbox"] = "Vise verktÞykasse?";
78$lang["monobook_toolbox_default"] = "Hvis ja, bruk standard verktÞykasse?";
79$lang["monobook_toolbox_default_print"] = "Hvis standard verktÞykasse, vise lenke til utskriftsvennlig versjon?";
80$lang["monobook_toolbox_location"] = "Hvis ikke standard, bruk fÞlgende wiki-side til verktÞykasse:";
81
82//donation link/button
83//donasjons-lenke/knapp
84$lang["monobook_donate"] = "Vise lenke/knapp til donasjoner?";
85$lang["monobook_donate_default"] = "Hvis ja, bruke standard lenke til donasjoner?";
86$lang["monobook_donate_url"] = "Hvis ikke, bruk fÞlgende lenke til donasjoner:";
87
88//other stuff
89//annet
90$lang["monobook_breadcrumbs_position"] = "Posisjonen til breadcrumb-navigering (hvis tillatt):";
91$lang["monobook_youarehere_position"] = "Posisjonen til 'Du er her'-navigering (hvis tillatt):";
92$lang["monobook_cite_author"] = "Forfatternavn i 'Sitér denne artikkelen':";
93$lang["monobook_loaduserjs"] = "Laste 'monobook/user/user.js'?";
94
Note: See TracBrowser for help on using the repository browser.