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