summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/ppp/FAQ
diff options
context:
space:
mode:
Diffstat (limited to 'mdk-stage1/ppp/FAQ')
-rw-r--r--mdk-stage1/ppp/FAQ634
1 files changed, 0 insertions, 634 deletions
diff --git a/mdk-stage1/ppp/FAQ b/mdk-stage1/ppp/FAQ
deleted file mode 100644
index 96bc5c708..000000000
--- a/mdk-stage1/ppp/FAQ
+++ /dev/null
@@ -1,634 +0,0 @@
-This is a list of Frequently Asked Questions about using ppp-2.x and
-their answers.
-
-
-------------------------------------------------------------------------
-
-Q: Can you give me an example of how I might set up my machine to dial
-out to an ISP?
-
-A: Here's an example for dialling out to an ISP via a modem on
-/dev/tty02. The modem uses hardware (CTS/RTS) flow control, and the
-serial port is run at 38400 baud. The ISP assigns our IP address.
-
-To configure pppd for this connection, create a file under
-/etc/ppp/peers called (say) my-isp containing the following:
-
-tty02 crtscts 38400
-connect 'chat -v -f /etc/ppp/chat/my-isp'
-defaultroute
-
-The ppp connection is then initiated using the following command:
-
-pppd call my-isp
-
-Of course, if the directory containing pppd is not in your path, you
-will need to give the full pathname for pppd, for example,
-/usr/sbin/pppd.
-
-When you run this, pppd will use the chat program to dial the ISP and
-invoke its ppp service. Chat will read the file specified with -f,
-namely /etc/ppp/chat/my-isp, to find a list of strings to expect to
-receive, and strings to send. This file would contain something like
-this:
-
-ABORT "NO CARRIER"
-ABORT "NO DIALTONE"
-ABORT "ERROR"
-ABORT "NO ANSWER"
-ABORT "BUSY"
-ABORT "Username/Password Incorrect"
-"" "at"
-OK "at&d2&c1"
-OK "atdt2479381"
-"name:" "^Uusername"
-"word:" "\qpassword"
-"annex" "\q^Uppp"
-"Switching to PPP-ppp-Switching to PPP"
-
-You will need to change the details here. The first string on each
-line is a string to expect to receive; the second is the string to
-send. You can add or delete lines according to the dialog required to
-access your ISP's system. This example is for a modem with a standard
-AT command set, dialling out to an Annex terminal server. The \q
-toggles "quiet" mode; when quiet mode is on, the strings to be sent
-are replaced by ?????? in the log. You may need to go through the
-dialog manually using kermit or tip first to determine what should go
-in the script.
-
-To terminate the link, run the following script, called (say)
-kill-ppp:
-
-#!/bin/sh
-unit=ppp${1-0}
-piddir=/var/run
-if [ -f $piddir/$unit.pid ]; then
- kill -1 `cat $piddir/$unit.pid`
-fi
-
-On some systems (SunOS, Solaris, Ultrix), you will need to change
-/var/run to /etc/ppp.
-
-
-------------------------------------------------------------------------
-
-Q: Can you give me an example of how I could set up my office machine
-so I can dial in to it from home?
-
-A: Let's assume that the office machine is called "office" and is on a
-local ethernet subnet. Call the home machine "home" and give it an IP
-address on the same subnet as "office". We'll require both machines
-to authenticate themselves to each other.
-
-Set up the files on "office" as follows:
-
-/etc/ppp/options contains:
-
-auth # require the peer to authenticate itself
-lock
-# other options can go here if desired
-
-/etc/ppp/chap-secrets contains:
-
-home office "beware the frub-jub" home
-office home "bird, my son!%&*" -
-
-Set up a modem on a serial port so that users can dial in to the
-modem and get a login prompt.
-
-On "home", set up the files as follows:
-
-/etc/ppp/options contains the same as on "office".
-
-/etc/ppp/chap-secrets contains:
-
-home office "beware the frub-jub" -
-office home "bird, my son!%&*" office
-
-Create a file called /etc/ppp/peers/office containing the following:
-
-tty02 crtscts 38400
-connect 'chat -v -f /etc/ppp/chat/office'
-defaultroute
-
-(You may need to change some of the details here.)
-
-Create the /etc/ppp/chat/office file containing the following:
-
-ABORT "NO CARRIER"
-ABORT "NO DIALTONE"
-ABORT "ERROR"
-ABORT "NO ANSWER"
-ABORT "BUSY"
-ABORT "ogin incorrect"
-"" "at"
-OK "at&d2&c1"
-OK "atdt2479381"
-"name:" "^Uusername"
-"word:" "\qpassword"
-"$" "\q^U/usr/sbin/pppd proxyarp"
-"~"
-
-You will need to change the details. Note that the "$" in the
-second-last line is expecting the shell prompt after a successful
-login - you may need to change it to "%" or something else.
-
-You then initiate the connection (from home) with the command:
-
-pppd call office
-
-------------------------------------------------------------------------
-
-Q: When I try to establish a connection, the modem successfully dials
-the remote system, but then hangs up a few seconds later. How do I
-find out what's going wrong?
-
-A: There are a number of possible problems here. The first thing to
-do is to ensure that pppd's messages are visible. Pppd uses the
-syslog facility to log messages which help to identify specific
-problems. Messages from pppd have facility "daemon" and levels
-ranging from "debug" to "error".
-
-Usually it is useful to see messages of level "notice" or higher on
-the console. To see these, find the line in /etc/syslog.conf which
-has /dev/console on the right-hand side, and add "daemon.notice" in
-the list on the left. The line will end up looking something like
-this:
-
-*.err;kern.debug;auth.notice;mail.crit;daemon.notice /dev/console
-
-Note that the whitespace is tabs, *not* spaces.
-
-If you are having problems, it may be useful to see messages of level
-"info" as well, in which case you would change "daemon.notice" to
-"daemon.info".
-
-In addition, it is useful to collect pppd's debugging output in a
-file - the debug option to pppd causes it to log the contents of all
-control packets sent and received in human-readable form. To do this,
-add a line like this to /etc/syslog.conf:
-
-daemon,local2.debug /etc/ppp/log
-
-and create an empty /etc/ppp/log file.
-
-When you change syslog.conf, you will need to send a HUP signal to
-syslogd to causes it to re-read syslog.conf. You can do this with a
-command like this (as root):
-
- kill -HUP `cat /etc/syslogd.pid`
-
-(On some systems, you need to use /var/run/syslog.pid instead of
-/etc/syslogd.pid.)
-
-After setting up syslog like this, you can use the -v flag to chat and
-the `debug' option to pppd to get more information. Try initiating
-the connection again; when it fails, inspect /etc/ppp/log to see what
-happened and where the connection failed.
-
-
-------------------------------------------------------------------------
-
-Q: When I try to establish a connection, I get an error message saying
-"Serial link is not 8-bit clean". Why?
-
-A: The most common cause is that your connection script hasn't
-successfully dialled out to the remote system and invoked ppp service
-there. Instead, pppd is talking to something (a shell or login
-process on the remote machine, or maybe just the modem) which is only
-outputting 7-bit characters.
-
-This can also arise with a modem which uses an AT command set if the
-dial command is issued before pppd is invoked, rather than within a
-connect script started by pppd. If the serial port is set to 7
-bits/character plus parity when the last AT command is issued, the
-modem serial port will be set to the same setting.
-
-Note that pppd *always* sets the local serial port to 8 bits per
-character, with no parity and 1 stop bit. So you shouldn't need to
-issue an stty command before invoking pppd.
-
-
-------------------------------------------------------------------------
-
-Q: When I try to establish a connection, I get an error message saying
-"Serial line is looped back". Why?
-
-A: Probably your connection script hasn't successfully dialled out to
-the remote system and invoked ppp service there. Instead, pppd is
-talking to something which is just echoing back the characters it
-receives. The -v option to chat can help you find out what's going
-on. It can be useful to include "~" as the last expect string to
-chat, so chat won't return until it's seen the start of the first PPP
-frame from the remote system.
-
-Another possibility is that your phone connection has dropped for some
-obscure reason and the modem is echoing the characters it receives
-from your system.
-
-
-------------------------------------------------------------------------
-
-Q: I installed pppd successfully, but when I try to run it, I get a
-message saying something like "peer authentication required but no
-authentication files accessible".
-
-A: When pppd is used on a machine which already has a connection to
-the Internet (or to be more precise, one which has a default route in
-its routing table), it will require all peers to authenticate
-themselves. The reason for this is that if you don't require
-authentication, you have a security hole, because the peer can
-basically choose any IP address it wants, even the IP address of some
-trusted host (for example, a host mentioned in some .rhosts file).
-
-On machines which don't have a default route, pppd does not require
-the peer to authenticate itself. The reason is that such machines
-would mostly be using pppd to dial out to an ISP which will refuse to
-authenticate itself. In that case the peer can use any IP address as
-long as the system does not already have a route to that address.
-For example, if you have a local ethernet network, the peer can't use
-an address on that network. (In fact it could if it authenticated
-itself and it was permitted to use that address by the pap-secrets or
-chap-secrets file.)
-
-There are 3 ways around the problem:
-
-1. If possible, arrange for the peer to authenticate itself, and
-create the necessary secrets files (/etc/ppp/pap-secrets and/or
-/etc/ppp/chap-secrets).
-
-2. If the peer refuses to authenticate itself, and will always be
-using the same IP address, or one of a small set of IP addresses, you
-can create an entry in the /etc/ppp/pap-secrets file like this:
-
- "" * "" his-ip.his-domain his-other-ip.other-domain
-
-(that is, using the empty string for the client name and password
-fields). Of couse, you replace the 4th and following fields in the
-example above with the IP address(es) that the peer may use. You can
-use either hostnames or numeric IP addresses.
-
-3. You can add the `noauth' option to the /etc/ppp/options file.
-Pppd will then not ask the peer to authenticate itself. If you do
-this, I *strongly* recommend that you remove the set-uid bit from the
-permissions on the pppd executable, with a command like this:
-
- chmod u-s /usr/sbin/pppd
-
-Then, an intruder could only use pppd maliciously if they had already
-become root, in which case they couldn't do any more damage using pppd
-than they could anyway.
-
-
-------------------------------------------------------------------------
-
-Q: What do I need to put in the secrets files?
-
-A: Three things:
- - secrets (i.e. passwords) to use for authenticating this host to
- other hosts (i.e., for proving our identity to others);
- - secrets which other hosts can use for authenticating themselves
- to us (i.e., so that they can prove their identity to us); and
- - information about which IP addresses other hosts may use, once
- they have authenticated themselves.
-
-There are two authentication files: /etc/ppp/pap-secrets, which
-contains secrets for use with PAP (the Password Authentication
-Protocol), and /etc/ppp/chap-secrets, which contains secrets for use
-with CHAP (the Challenge Handshake Authentication Protocol). Both
-files have the same simple format, which is as follows:
-
-- The file contains a series of entries, each of which contains a
-secret for authenticating one machine to another.
-
-- Each entry is contained on a single logical line. A logical line
-may be continued across several lines by placing a backslash (\) at
-the end of each line except the last.
-
-- Each entry has 3 or more fields, separated by whitespace (spaces
-and/or tabs). These fields are, in order:
- * The name of the machine that is authenticating itself
- (the "client").
- * The name of the machine that is authenticating the client
- (the "server").
- * The secret to be used for authenticating that client to that
- server. If this field begins with the at-sign `@', the rest
- of the field is taken as the name of a file containing the
- actual secret.
- * The 4th and any following fields list the IP address(es)
- that the client may use.
-
-- The file may contain comments, which begin with a `#' and continue
-to the end of the line.
-
-- Double quotes `"' should be used around a field if it contains
-characters with special significance, such as space, tab, `#', etc.
-
-- The backslash `\' may be used before characters with special
-significance (space, tab, `#', `\', etc.) to remove that significance.
-
-Some important points to note:
-
-* A machine can be *both* a "client" and a "server" for the purposes
-of authentication - this happens when both peers require the other to
-authenticate itself. So A would authenticate itself to B, and B would
-also authenticate itself to A (possibly using a different
-authentication protocol).
-
-* If both the "client" and the "server" are running ppp-2.x, they need
-to have a similar entry in the appropriate secrets file; the first two
-fields are *not* swapped on the client, compared to the server. So
-the client might have an entry like this:
-
- ay bee "our little secret" -
-
-and the corresponding entry on the server could look like this:
-
- ay bee "our little secret" 123.45.67.89
-
-
-------------------------------------------------------------------------
-
-Q: Explain about PAP and CHAP?
-
-PAP stands for the Password Authentication Protocol. With this
-protocol, the "client" (the machine that needs to authenticate itself)
-sends its name and a password, in clear text, to the "server". The
-server returns a message indicating whether the name and password are
-valid.
-
-CHAP stands for the Challenge Handshake Authentication Protocol. It
-is designed to address some of the deficiencies and vulnerabilities of
-PAP. Like PAP, it is based on the client and server having a shared
-secret, but the secret is never passed in clear text over the link.
-Instead, the server sends a "challenge" - an arbitrary string of
-bytes, and the client must prove it knows the shared secret by
-generating a hash value from the challenge combined with the shared
-secret, and sending the hash value back to the server. The server
-also generates the hash value and compares it with the value received
-from the client.
-
-At a practical level, CHAP can be slightly easier to configure than
-PAP because the server sends its name with the challenge. Thus, when
-finding the appropriate secret in the secrets file, the client knows
-the server's name. In contrast, with PAP, the client has to find its
-password (i.e. the shared secret) before it has received anything from
-the server. Thus, it may be necessary to use the `remotename' option
-to pppd when using PAP authentication so that it can select the
-appropriate secret from /etc/ppp/pap-secrets.
-
-Microsoft also has a variant of CHAP which uses a different hashing
-arrangement from normal CHAP. There is a client-side implementation
-of Microsoft's CHAP in ppp-2.3; see README.MSCHAP80.
-
-
-------------------------------------------------------------------------
-
-Q: When the modem hangs up, without the remote system having
-terminated the connection properly, pppd does not notice the hangup,
-but just keeps running. How do I get pppd to notice the hangup and
-exit?
-
-A: Pppd detects modem hangup by looking for an end-of-file indication
-from the serial driver, which should be generated when the CD (carrier
-detect) signal on the serial port is deasserted. For this to work:
-
-- The modem has to be set to assert CD when the connection is made and
-deassert it when the phone line hangs up. Usually the AT&C1 modem
-command sets this mode.
-
-- The cable from the modem to the serial port must connect the CD
-signal (on pin 8).
-
-- Some serial drivers have a "software carrier detect" mode, which
-must be *disabled*. The method of doing this varies between systems.
-Under SunOS, use the ttysoftcar command. Under NetBSD, edit /etc/ttys
-to remove the "softcar" flag from the line for the serial port, and
-run ttyflags.
-
-
-------------------------------------------------------------------------
-
-Q: Why should I use PPP compression (BSD-Compress or Deflate) when my
-modem already does V.42 compression? Won't it slow the CPU down a
-lot?
-
-A: Using PPP compression is preferable, especially when using modems
-over phone lines, for the following reasons:
-
-- The V.42 compression in the modem isn't very strong - it's an LZW
-technique (same as BSD-Compress) with a 10, 11 or 12 bit code size.
-With BSD-Compress you can use a code size of up to 15 bits and get
-much better compression, or you can use Deflate and get even better
-compression ratios.
-
-- I have found that enabling V.42 compression in my 14.4k modem
-increases the round-trip time for a character to be sent, echoed and
-returned by around 40ms, from 160ms to 200ms (with error correction
-enabled). This is enough to make it feel less responsive on rlogin or
-telnet sessions. Using PPP compression adds less than 5ms (small
-enough that I couldn't measure it reliably). I admit my modem is a
-cheapie and other modems may well perform better.
-
-- While compression and decompression do require some CPU time, they
-reduce the amount of time spent in the serial driver to transmit a
-given amount of data. Many machines require an interrupt for each
-character sent or received, and the interrupt handler can take a
-significant amount of CPU time. So the increase in CPU load isn't as
-great as you might think. My measurements indicate that a system with
-a 33MHz 486 CPU should be able to do Deflate compression for serial
-link speeds of up to 100kb/s or more. It depends somewhat on the type
-of data, of course; for example, when compressing a string of nulls
-with Deflate, it's hard to get a high output data rate from the
-compressor, simply because it compresses strings of nulls so well that
-it has to eat a very large amount of input data to get each byte of
-output.
-
-
-------------------------------------------------------------------------
-
-Q: I get messages saying "Unsupported protocol (...) received". What do
-these mean?
-
-A: If you only get one or two when pppd starts negotiating with the
-peer, they mean that the peer wanted to negotiate some PPP protocol
-that pppd doesn't understand. This doesn't represent a problem, it
-simply means that there is some functionality that the peer supports
-that pppd doesn't, so that functionality can't be used.
-
-If you get them sporadically while the link is operating, or if the
-protocol numbers (in parentheses) don't correspond to any valid PPP
-protocol that the peer might be using, then the problem is probably
-that characters are getting corrupted on the receive side, or that
-extra characters are being inserted into the receive stream somehow.
-If this is happening, most packets that get corrupted should get
-discarded by the FCS (Frame Check Sequence, a 16-bit CRC) check, but a
-small number may get through.
-
-One possibility may be that you are receiving broadcast messages on
-the remote system which are being sent over your serial link. Another
-possibility is that your modem is set for XON/XOFF (software) flow
-control and is inserting ^Q and ^S characters into the receive data
-stream.
-
-
-------------------------------------------------------------------------
-
-Q: I get messages saying "Protocol-Reject for unsupported protocol ...".
-What do these mean?
-
-A: This is the other side of the previous question. If characters are
-getting corrupted on the way to the peer, or if your system is
-inserting extra bogus characters into the transmit data stream, the
-peer may send protocol-reject messages to you, resulting in the above
-message (since your pppd doesn't recognize the protocol number
-either.)
-
-
-------------------------------------------------------------------------
-
-Q: I get a message saying something like "ioctl(TIOCSETD): Operation
-not permitted". How do I fix this?
-
-A: This is because pppd is not running as root. If you have not
-installed pppd setuid-root, you will have to be root to run it. If
-you have installed pppd setuid-root and you still get this message, it
-is probably because your shell is using some other copy of pppd than
-the installed one - for example, if you are in the pppd directory
-where you've just built pppd and your $PATH has . before /usr/sbin (or
-wherever pppd gets installed).
-
-
-------------------------------------------------------------------------
-
-Q: Has your package been ported to HP/UX or IRIX or AIX?
-
-A: No. I don't have access to systems running HP/UX or AIX. No-one
-has volunteered to port it to HP/UX. I had someone who did a port for
-AIX 4.x, but who is no longer able to maintain it. And apparently AIX
-3.x is quite different, so it would need a separate port.
-
-IRIX includes a good PPP implementation in the standard distribution,
-as far as I know.
-
-
-------------------------------------------------------------------------
-
-Q: Under SunOS 4, when I try to modload the ppp modules, I get the
-message "can't open /dev/vd: No such device".
-
-A: First check in /dev that there is an entry like this:
-
-crw-r--r-- 1 root 57, 0 Oct 2 1991 vd
-
-If not, make one (mknod /dev/vd c 57 0). If the problem still exists,
-probably your kernel has been configured without the vd driver
-included. The vd driver is needed for loadable module support.
-
-First, identify the config file that was used. When you boot your
-machine, or if you run /etc/dmesg, you'll see a line that looks
-something like this:
-
-SunOS Release 4.1.3_U1 (CAP_XBOX) #7: Thu Mar 21 15:31:56 EST 1996
- ^^^^^^^^
- this is the config file name
-
-The config file will be in the /sys/`arch -k`/conf directory (arch -k
-should return sun4m for a SparcStation 10, sun3x for a Sun 3/80,
-etc.). Look in there for a line saying "options VDDRV". If that line
-isn't present (or is commented out), add it (or uncomment it).
-
-You then need to rebuild the kernel as described in the SunOS
-manuals. Basically you need to run config and make like this:
-
- /usr/etc/config CAP_XBOX
- cd ../CAP_XBOX
- make
-
-(replacing the string CAP_XBOX by the name of the config file for your
-kernel, of course).
-
-Then copy the new kernel to /:
-
- mv /vmunix /vmunix.working
- cp vmunix /
-
-and reboot. Modload should then work.
-
-
-------------------------------------------------------------------------
-
-Q: I'm running Linux (or NetBSD or FreeBSD), and my system comes with
-PPP already. Should I consider installing this package? Why?
-
-A: The PPP that is already installed in your system is (or is derived
-from) some version of this PPP package. You can find out what version
-of this package is already installed with the command "pppd --help".
-If this is older than the latest version, you may wish to install the
-latest version so that you can take advantage of the new features or
-bug fixes.
-
-
-------------------------------------------------------------------------
-
-Q: I'm running pppd in demand mode, and I find that pppd often dials
-out unnecessarily when I try to make a connection within my local
-machine or with a machine on my local LAN. What can I do about this?
-
-A: Very often the cause of this is that a program is trying to contact
-a nameserver to resolve a hostname, and the nameserver (specified in
-/etc/resolv.conf, usually) is on the far side of the ppp link. You
-can try executing a command such as `ping myhost' (where myhost is the
-name of the local machine, or some other machine on a local LAN), to
-see whether that starts the ppp link. If it does, check the setup of
-your /etc/hosts file to make sure you have the local machine and any
-hosts on your local LAN listed, and /etc/resolv.conf and/or
-/etc/nsswitch.conf files to make sure you resolve hostnames from
-/etc/hosts if possible before trying to contact a nameserver.
-
-
-------------------------------------------------------------------------
-
-Q: Since I installed ppp-2.3.6, dialin users to my server have been
-getting this message when they run pppd:
-
-peer authentication required but no suitable secret(s) found for
-authenticating any peer to us (ispserver)
-
-A: In 2.3.6, the default is to let an unauthenticated peer only use IP
-addresses to which the machine doesn't already have a route. So on a
-machine with a default route, everyone has to authenticate. If you
-really don't want that, you can put `noauth' in the /etc/ppp/options
-file. Note that there is then no check on who is using which IP
-address. IMHO, this is undesirably insecure, but I guess it may be
-tolerable as long as you don't use any .rhosts files or anything like
-that. I recommend that you require dialin users to authenticate, even
-if just with PAP using their login password (using the `login' option
-to pppd). If you do use `noauth', you should at least have a pppusers
-group and set the permissions on pppd to allow only user and group to
-execute it.
-
-------------------------------------------------------------------------
-
-Q: When running pppd as a dial-in server, I often get the message
-"LCP: timeout sending Config-Requests" from pppd. It seems to be
-random, but dial-out always works fine. What is wrong?
-
-A: Most modern modems auto-detects the speed of the serial line
-between the modem and the computer. This auto-detection occurs when
-the computer sends characters to the modem, when the modem is in
-command mode. It does not occur when the modem is in data mode.
-Thus, if you send commands to the modem at 2400 bps, and then change
-the serial port speed to 115200 bps, the modem will not detect this
-change until something is transmitted from the computer to the modem.
-When running pppd in dial-in mode (i.e. without a connect script),
-pppd sets the speed of the serial port, but does not transmit
-anything. If the modem was already running at the specified speed,
-everything is fine, but if not, you will just receive garbage from the
-modem. To cure this, use an init script such as the following:
-
- pppd ttyS0 115200 modem crtscts init "chat '' AT OK"
-
-To reset the modem and enable auto-answer, use:
-
- pppd ttyS0 115200 modem crtscts init "chat '' ATZ OK ATS0=1 OK"
0'>1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675
# translation of libDrakX-standalone.po to Norwegian Nynorsk
# Translation of nn to Norwegian Nynorsk
# Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
#
# Karl Ove Hufthammer <karl@huftis.org>, 2004, 2005, 2006, 2007, 2008.
msgid ""
msgstr ""
"Project-Id-Version: libDrakX-standalone\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-08 14:00+0200\n"
"PO-Revision-Date: 2008-09-11 20:27+0200\n"
"Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
"Language-Team: Norwegian Nynorsk <i18n-nn@lister.ping.uio.no>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Lokalize 0.2\n"
"Plural-Forms:  nplurals=2; plural=(n != 1);\n"

#: drakauth:27 drakauth:29 draksec:279 draksec:328
#, c-format
msgid "Authentication"
msgstr "Autentisering"

#: drakauth:39 drakclock:111 drakclock:125 drakfont:213 drakfont:226
#: drakfont:264 draksplash:169 finish-install:104 logdrake:170 logdrake:445
#: logdrake:450 scannerdrake:59 scannerdrake:101 scannerdrake:142
#: scannerdrake:200 scannerdrake:259 scannerdrake:730 scannerdrake:741
#: scannerdrake:880 scannerdrake:891 scannerdrake:961
#, c-format
msgid "Error"
msgstr "Feil"

#: drakboot:53
#, c-format
msgid "No bootloader found, creating a new configuration"
msgstr "Fann ingen oppstartslaster. Lagar nytt oppsett."

#: drakboot:88 harddrake2:197 harddrake2:198 logdrake:71
#, c-format
msgid "/_File"
msgstr "/_Fil"

#: drakboot:89 logdrake:77
#, c-format
msgid "/File/_Quit"
msgstr "/Fil/_Avslutt"

#: drakboot:89 harddrake2:198 logdrake:77
#, c-format
msgid "<control>Q"
msgstr "<control>Q"

#: drakboot:129
#, c-format
msgid "Text only"
msgstr "Berre tekst"

#: drakboot:130
#, c-format
msgid "Verbose"
msgstr "Utvida meldingar"

#: drakboot:131
#, c-format
msgid "Silent"
msgstr "Stille"

#: drakboot:137 drakbug:233 drakfont:682 drakperm:375 drakperm:385 drakups:27
#: harddrake2:516 localedrake:43 notify-x11-free-driver-switch:15
#: scannerdrake:51 scannerdrake:54 scannerdrake:297 scannerdrake:302
#: scannerdrake:955
#, c-format
msgid "Warning"
msgstr "Åtvaring"

#: drakboot:138
#, c-format
msgid ""
"Your system bootloader is not in framebuffer mode. To activate graphical "
"boot, select a graphic video mode from the bootloader configuration tool."
msgstr ""
"Oppstartslastaren er ikkje i framebuffer-modus (grafisk modus). For å bruk "
"grafisk oppstart må du velja ein skjermmodus frå oppsettverktøyet for "
"oppstartslastaren."

#: drakboot:139
#, c-format
msgid "Do you want to configure it now?"
msgstr "Vil du setja det opp no?"

#: drakboot:148
#, c-format
msgid "Install themes"
msgstr "Installer tema"

#: drakboot:150
#, c-format
msgid "Graphical boot theme selection"
msgstr "Val av grafisk oppstartstema"

#: drakboot:153
#, c-format
msgid "Graphical boot mode:"
msgstr "Grafisk oppstartsmodus:"

#: drakboot:155
#, c-format
msgid "Theme"
msgstr "Tema"

#: drakboot:158
#, c-format
msgid ""
"Display theme\n"
"under console"
msgstr ""
"Vis tema\n"
"under konsoll"

#: drakboot:163 draksplash:25
#, c-format
msgid "Create new theme"
msgstr "Lag nytt tema"

#: drakboot:195
#, c-format
msgid "Default user"
msgstr "Brukar:"

#: drakboot:196
#, c-format
msgid "Default desktop"
msgstr "Skrivebord:"

#: drakboot:199
#, c-format
msgid "No, I do not want autologin"
msgstr "Ikkje logg inn automatisk"

#: drakboot:200
#, c-format
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Logg inn automatisk med følgjande brukar og skrivebord"

#: drakboot:207
#, c-format
msgid "System mode"
msgstr "Systemmodus"

#: drakboot:210
#, c-format
msgid "Launch the graphical environment when your system starts"
msgstr "Start det grafiske miljøet ved oppstart"

#: drakboot:262
#, c-format
msgid "Boot Style Configuration"
msgstr "Oppsettype"

#: drakboot:264 drakboot:268
#, c-format
msgid "Video mode"
msgstr "Videomodus"

#: drakboot:265
#, c-format
msgid ""
"Please choose a video mode, it will be applied to each of the boot entries "
"selected below.\n"
"Be sure your video card supports the mode you choose."
msgstr ""
"Vel ein skjermmodus. Denne vert brukt for kvar av oppstartseiningane merkte "
"nedanfor.\n"
"Hugs at skjermkortet ditt må støtta skjermmodusen du vel."

#: drakbug:65 drakbug:143
#, c-format
msgid "The \"%s\" program has crashed with the following error:"
msgstr "Programmet «%s» krasja med følgjande feil:"

#: drakbug:76
#, c-format
msgid "Mandriva Linux Bug Report Tool"
msgstr "Feilrapporteringsverktøy for Mandriva Linux"

#: drakbug:81
#, c-format
msgid "Mandriva Linux Control Center"
msgstr "Kontrollsenter"

#: drakbug:82
#, c-format
msgid "First Time Wizard"
msgstr "Førstegongsvegvisar"

#: drakbug:83
#, c-format
msgid "Synchronization tool"
msgstr "Synkroniseringsverktøy"

#: drakbug:84 drakbug:195
#, c-format
msgid "Standalone Tools"
msgstr "Frittståande verktøy"

#: drakbug:86 drakbug:87
#, c-format
msgid "Mandriva Online"
msgstr "Mandriva Online"

#: drakbug:88
#, c-format
msgid "Remote Control"
msgstr "Fjernkontroll"

#: drakbug:89
#, c-format
msgid "Software Manager"
msgstr "Programhandtering"

#: drakbug:90
#, c-format
msgid "Windows Migration tool"
msgstr "Windows-migreringsverktøy"

#: drakbug:91
#, c-format
msgid "Configuration Wizards"
msgstr "Oppsettvegvisarar"

#: drakbug:113
#, c-format
msgid "Select Mandriva Tool:"
msgstr "Vel Mandriva-verktøy:"

#: drakbug:114
#, c-format
msgid ""
"or Application Name\n"
"(or Full Path):"
msgstr ""
"Programnamn\n"
"(eller full stig):"

#: drakbug:117
#, c-format
msgid "Find Package"
msgstr "Finn pakke"

#: drakbug:119
#, c-format
msgid "Package: "
msgstr "Pakke: "

#: drakbug:120
#, c-format
msgid "Kernel:"
msgstr "Kjerne:"

#: drakbug:142
#, c-format
msgid "The \"%s\" program has segfaulted with the following error:"
msgstr "Programmet «%s» krasja (segfault) med følgjande feil:"

#: drakbug:146
#, c-format
msgid "Its gdb trace is:"
msgstr "gdb-logg:"

#: drakbug:149
#, c-format
msgid ""
"To submit a bug report, click on the report button.  \n"
"This will open a web browser window on %s where you'll find a form to fill "
"in.  The information displayed above will be transferred to that server.  \n"
"Things useful to include in your report are the output of lspcidrake -v, "
"kernel version, and /proc/cpuinfo."
msgstr ""
"Trykk «Rapporter»-knappen for å melda frå om ein feil du har funne. \n"
"Dette vil opna eit nettlesarvindauge på %s, med eit skjema som du må fylla "
"inn. Informasjonen vist nedanfor vert overført til tenaren. \n"
"Nyttige ting å ta med i feilrapporten er utdata frå lspcidrake -v, "
"kjerneversjonen og «/proc/cpuinfo»."

#: drakbug:152
#, c-format
msgid "Please describe what you were doing when it crashed:"
msgstr "Skriv inn kva du gjorde når programmet krasja:"

#: drakbug:164 drakperm:135 draksec:438 draksec:440 draksec:459 draksec:461
#, c-format
msgid "Help"
msgstr "Hjelp"

#: drakbug:168
#, c-format
msgid "Report"
msgstr "Rapporter"

#: drakbug:169 drakfont:506
#, c-format
msgid "Close"
msgstr "Lukk"

#: drakbug:202
#, c-format
msgid "Not installed"
msgstr "Ikkje installert"

#: drakbug:215
#, c-format
msgid "Package not installed"
msgstr "Pakke ikkje installert"

#: drakbug:234
#, c-format
msgid ""
"You must type in what you were doing when this bug happened in order to "
"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr ""
"Du må skriva inn kva du gjorde når denne feilen oppstod, slik at me kan "
"klara å reprodusera han, for så å retta han opp."

#: drakbug:235
#, c-format
msgid "Thanks."
msgstr "Takk."

#: drakclock:30 draksec:334
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Dato, klokkeslett og tidssone"

#: drakclock:39
#, c-format
msgid "not defined"
msgstr "ikkje definert"

#: drakclock:41
#, c-format
msgid "Change Time Zone"
msgstr "Endra tidssone"

#: drakclock:44
#, c-format
msgid "Timezone - DrakClock"
msgstr "Tidssone – DrakClock"

#: drakclock:44
#, c-format
msgid "Which is your timezone?"
msgstr "I kva tidssone held du til?"

#: drakclock:45
#, c-format
msgid "GMT - DrakClock"
msgstr "GMT – DrakClock"

#: drakclock:45
#, c-format
msgid "Is your hardware clock set to GMT?"
msgstr "Brukar maskinvareklokka GMT?"

#: drakclock:70
#, c-format
msgid "Network Time Protocol"
msgstr "Nettverkstidsprotokoll"

#: drakclock:72
#, c-format
msgid ""
"Your computer can synchronize its clock\n"
" with a remote time server using NTP"
msgstr ""
"Datamaskina di kan automatisk synkronisera klokka\n"
" med ein tidstenar på nettverket ved hjelp av NTP."

#: drakclock:73
#, c-format
msgid "Enable Network Time Protocol"
msgstr "Bruk nettverktidsprotokoll"

#: drakclock:81
#, c-format
msgid "Server:"
msgstr "Tenar:"

#: drakclock:95
#, c-format
msgid "Timezone"
msgstr "Tidssone"

#: drakclock:111
#, c-format
msgid "Please enter a valid NTP server address."
msgstr "Skriv inn ei gyldig NTP-tenaradresse."

#: drakclock:126
#, c-format
msgid "Could not synchronize with %s."
msgstr "Klarte ikkje synkronisera med %s."

#: drakclock:127 draksplash:93 logdrake:175 scannerdrake:492
#, c-format
msgid "Quit"
msgstr "Avslutt"

#: drakclock:128
#, c-format
msgid "Retry"
msgstr "Prøv på nytt"

#: drakclock:151 drakclock:161
#, c-format
msgid "Reset"
msgstr "Nullstill"

#: drakedm:41
#, c-format
msgid "GDM (GNOME Display Manager)"
msgstr "GDM (GNOME Display Manager)"

#: drakedm:42
#, c-format
msgid "KDM (KDE Display Manager)"
msgstr "KDM (KDE Display Manager)"

#: drakedm:43
#, c-format
msgid "XDM (X Display Manager)"
msgstr "XDM (X Display Manager)"

#: drakedm:54
#, c-format
msgid "Choosing a display manager"
msgstr "Vel innloggingsveljar"

#: drakedm:55
#, c-format
msgid ""
"X11 Display Manager allows you to graphically log\n"
"into your system with the X Window System running and supports running\n"
"several different X sessions on your local machine at the same time."
msgstr ""
"X11-innloggingsveljaren lèt deg logga inn grafisk\n"
"på systemet når X køyrer, og støttar òg fleire\n"
"X-økter på maskina samtidig."

#: drakedm:74
#, c-format
msgid "The change is done, do you want to restart the dm service?"
msgstr "Endringa er no lagra. Vil du starta «dm»-tenesta på nytt?"

#: drakedm:75
#, c-format
msgid ""
"You are going to close all running programs and lose your current session. "
"Are you really sure that you want to restart the dm service?"
msgstr ""
"Alle program som køyrer vert lukka, og du mistar den gjeldande økta. Er du "
"sikker på at du vil starta «dm»-tenesta på nytt?"

#: drakfont:187
#, c-format
msgid "Search installed fonts"
msgstr "Søk gjennom installerte skrifter"

#: drakfont:189
#, c-format
msgid "Unselect fonts installed"
msgstr "Vel vekke installerte skrifter"

#: drakfont:213
#, c-format
msgid "No fonts found"
msgstr "Fann ingen skrifter"

#: drakfont:217
#, c-format
msgid "parse all fonts"
msgstr "Les alle skrifter"

#: drakfont:222 drakfont:263 drakfont:338 drakfont:379 drakfont:383
#: drakfont:409 drakfont:427 drakfont:435
#, c-format
msgid "done"
msgstr "ferdig"

#: drakfont:226
#, c-format
msgid "Could not find any font in your mounted partitions"
msgstr "Fann ikkje nokon skrifter på dei monterte partisjonane"

#: drakfont:261
#, c-format
msgid "Reselect correct fonts"
msgstr "Vel dei rette skriftene på nytt"

#: drakfont:264
#, c-format
msgid "Could not find any font.\n"
msgstr "Fann ingen skrifter.\n"

#: drakfont:274
#, c-format
msgid "Search for fonts in installed list"
msgstr "Søk etter skrifter i «installert»-lista"

#: drakfont:298
#, c-format
msgid "%s fonts conversion"
msgstr "%s-skriftkonvertering"

#: drakfont:336
#, c-format
msgid "Fonts copy"
msgstr "Skriftkopiering"

#: drakfont:339
#, c-format
msgid "True Type fonts installation"
msgstr "Installering av TrueType-skrifter"

#: drakfont:347
#, c-format
msgid "please wait during ttmkfdir..."
msgstr "Vent mens «ttmkfdir» vert køyrd …"

#: drakfont:348
#, c-format
msgid "True Type install done"
msgstr "TrueType-installering fullført"

#: drakfont:354 drakfont:369
#, c-format
msgid "type1inst building"
msgstr "byggjer btype1inst"

#: drakfont:363
#, c-format
msgid "Ghostscript referencing"
msgstr "Ghostscript-referansar"

#: drakfont:380
#, c-format
msgid "Suppress Temporary Files"
msgstr "Ikkje bruk mellombelse filer"

#: drakfont:425 drakfont:431
#, c-format
msgid "Suppress Fonts Files"
msgstr "Ikkje vis skriftfiler"

#: drakfont:439
#, c-format
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
"\n"
"You can install the fonts the normal way. In rare cases, bogus fonts may "
"hang up your X Server."
msgstr ""
"Før du installer nokon skrifter, bør du kontrollera at du har rett til å "
"bruka og installera dei på systemet ditt.\n"
"\n"
"Du kan installera skriftene på vanleg måte. I sjeldne tilfeller kan "
"øydelagde skriftfiler få X-tenaren til å henga ved oppstart."

#: drakfont:478
#, c-format
msgid "Font Installation"
msgstr "Skriftinstallering"

#: drakfont:489
#, c-format
msgid "DrakFont"
msgstr "DrakFont"

#: drakfont:490 drakfont:642
#, c-format
msgid "Font List"
msgstr "Skriftliste"

#: drakfont:493
#, c-format
msgid "Get Windows Fonts"
msgstr "Hent Windows-skrifter"

#: drakfont:499
#, c-format
msgid "About"
msgstr "Om"

#: drakfont:500 drakfont:541
#, c-format
msgid "Options"
msgstr "Val"

#: drakfont:501 drakfont:721
#, c-format
msgid "Uninstall"
msgstr "Avinstaller"

#: drakfont:502
#, c-format
msgid "Import"
msgstr "Importer"

#: drakfont:520
#, c-format
msgid "Drakfont"
msgstr "DrakFont"

#: drakfont:522 harddrake2:235
#, c-format
msgid "Copyright (C) %s by Mandriva"
msgstr "Copyright © %s Mandriva"

#: drakfont:524
#, c-format
msgid "Font installer."
msgstr "Skriftinstallering."

#: drakfont:526 harddrake2:239
#, c-format
msgid "Mandriva Linux"
msgstr "Mandriva Linux"

#. -PO: put here name(s) and email(s) of translator(s) (eg: "John Smith <jsmith@nowhere.com>")
#. -PO: put here name(s) and email(s) of translator(s) (eg: "John Smith <jsmith@nowhere.com>")
#: drakfont:533 harddrake2:244
#, c-format
msgid "_: Translator(s) name(s) & email(s)\n"
msgstr "Norwegian Nynorsk <i18n-nn@lister.ping.uio.no>\n"

#: drakfont:543
#, c-format
msgid "Choose the applications that will support the fonts:"
msgstr "Vel programma du vil kunna bruka skriftene i:"

#: drakfont:554
#, c-format
msgid "Ghostscript"
msgstr "Ghostscript"

#: drakfont:555
#, c-format
msgid "OpenOffice.org"
msgstr "OpenOffice.org"

#: drakfont:556
#, c-format
msgid "Abiword"
msgstr "Abiword"

#: drakfont:557
#, c-format
msgid "Generic Printers"
msgstr "Generelle skrivarar"

#: drakfont:562 drakfont:572 draksplash:180 drakups:210
#, c-format
msgid "Ok"
msgstr "OK"

#: drakfont:571
#, c-format
msgid "Select the font file or directory and click on 'Add'"
msgstr "Vel skriftfila eller skriftmappa, og trykk så «Legg til»."

#: drakfont:572
#, c-format
msgid "File Selection"
msgstr "Filval"

#: drakfont:572 drakfont:652 drakfont:736 draksplash:180 drakups:217
#: logdrake:175
#, c-format
msgid "Cancel"
msgstr "Avbryt"

#: drakfont:576
#, c-format
msgid "Fonts"
msgstr "Skrifttypar"

#: drakfont:640 draksec:330
#, c-format
msgid "Import fonts"
msgstr "Importer skrifter"

#: drakfont:646 drakups:299 drakups:361 drakups:381
#, c-format
msgid "Add"
msgstr "Legg til"

#: drakfont:647 drakfont:735 drakups:301 drakups:363 drakups:383
#, c-format
msgid "Remove"
msgstr "Fjern"

#: drakfont:653
#, c-format
msgid "Install"
msgstr "Installer"

#: drakfont:684
#, c-format
msgid "Are you sure you want to uninstall the following fonts?"
msgstr "Er du sikker på at du vil avinstallera desse skriftene?"

#: drakfont:688 draksec:59 harddrake2:324
#, c-format
msgid "Yes"
msgstr "Ja"

#: drakfont:690 draksec:58 harddrake2:325
#, c-format
msgid "No"
msgstr "Nei"

#: drakfont:729
#, c-format
msgid "Unselect All"
msgstr "Valde vekk alle"

#: drakfont:732
#, c-format
msgid "Select All"
msgstr "Valde alle"

#: drakfont:749
#, c-format
msgid "Importing fonts"
msgstr "Importerer skrifter"

#: drakfont:753 drakfont:773
#, c-format
msgid "Initial tests"
msgstr "Førtest"

#: drakfont:754
#, c-format
msgid "Copy fonts on your system"
msgstr "Kopier skrifter på systemet"

#: drakfont:755
#, c-format
msgid "Install & convert Fonts"
msgstr "Installer og konverter skrifter"

#: drakfont:756
#, c-format
msgid "Post Install"
msgstr "Etterinstallering"

#: drakfont:768
#, c-format
msgid "Removing fonts"
msgstr "Fjernar skrifter"

#: drakfont:774
#, c-format
msgid "Remove fonts on your system"
msgstr "Fjern skrifter frå systemet"

#: drakfont:775
#, c-format
msgid "Post Uninstall"
msgstr "Etteravinstallering"

#: drakhelp:17
#, c-format
msgid ""
" drakhelp 0.1\n"
"Copyright (C) %s Mandriva.\n"
"This is free software and may be redistributed under the terms of the GNU "
"GPL.\n"
"\n"
"Usage: \n"
msgstr ""
" drakhelp 0.1\n"
"Copyright © %s Mandriva.\n"
"Dette er fri programvare, og du kan distribuera det under GNU GPL-lisensen.\n"
"\n"
"Bruk: \n"

#: drakhelp:22
#, c-format
msgid " --help                - display this help     \n"
msgstr " --help                – Vis denne hjelpeteksten.\n"

#: drakhelp:23
#, c-format
msgid " --id <id_label>       - load the html help page which refers to id_label\n"
msgstr ""
" --id <identifikator>  – Last HTML-hjelpesida som refererer til "
"«identifikator».\n"

#: drakhelp:24
#, c-format
msgid ""
" --doc <link>          - link to another web page ( for WM welcome "
"frontend)\n"
msgstr " --doc <lenkje>        – Lenkje til ei anna nettside (for velkomstmelding).\n"

#: drakhelp:52
#, c-format
msgid "Mandriva Linux Help Center"
msgstr "Mandriva Linux-hjelpesenter"

#: drakhelp:52
#, c-format
msgid "No Help entry for %s\n"
msgstr "Det finst ikkje noko hjelpeoppføring for «%s».\n"

#: drakperm:23
#, c-format
msgid "System settings"
msgstr "Systeminnstillingar"

#: drakperm:24
#, c-format
msgid "Custom settings"
msgstr "Sjølvvald oppsett"

#: drakperm:25
#, c-format
msgid "Custom & system settings"
msgstr "Sjølvvalde og systemoppsett"

#: drakperm:33
#, c-format
msgid "Security Permissions"
msgstr "Tryggleiksløyve"

#: drakperm:45
#, c-format
msgid "Editable"
msgstr "Redigerbar"

#: drakperm:50 drakperm:319
#, c-format
msgid "Path"
msgstr "Stig"

#: drakperm:50 drakperm:248
#, c-format
msgid "User"
msgstr "Brukar"

#: drakperm:50 drakperm:248
#, c-format
msgid "Group"
msgstr "Gruppe"

#: drakperm:50 drakperm:331
#, c-format
msgid "Permissions"
msgstr "Løyve"

#: drakperm:60
#, c-format
msgid "Add a new rule"
msgstr "Legg til ny regel"

#: drakperm:67 drakperm:102 drakperm:127
#, c-format
msgid "Edit current rule"
msgstr "Rediger gjeldande regel"

#: drakperm:109
#, c-format
msgid ""
"Here you can see files to use in order to fix permissions, owners, and "
"groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
"Her kan du sjå filer som du kan retta tilgangsløyve og eigarar til via "
"msec.\n"
"Du kan òg leggja til eigne reglar, som så vil overstyra standardreglane."

#: drakperm:111
#, c-format
msgid ""
"The current security level is %s.\n"
"Select permissions to see/edit"
msgstr ""
"Gjeldande tryggleiksnivå er «%s».\n"
"Vel løyva du vil sjå/endra."

#: drakperm:123
#, c-format
msgid "Up"
msgstr "Opp"

#: drakperm:123
#, c-format
msgid "Move selected rule up one level"
msgstr "Flytt den merkte regelen opp eit nivå."

#: drakperm:124
#, c-format
msgid "Down"
msgstr "Ned"

#: drakperm:124
#, c-format
msgid "Move selected rule down one level"
msgstr "Flytt den merkte regelen ned eit nivå."

#: drakperm:125
#, c-format
msgid "Add a rule"
msgstr "Legg til regel"

#: drakperm:125
#, c-format
msgid "Add a new rule at the end"
msgstr "Legg til regel på slutten"

#: drakperm:126
#, c-format
msgid "Delete"
msgstr "Slett"

#: drakperm:126
#, c-format
msgid "Delete selected rule"
msgstr "Slett den merkte regelen."

#: drakperm:127 drakups:300 drakups:362 drakups:382
#, c-format
msgid "Edit"
msgstr "Rediger"

#: drakperm:240
#, c-format
msgid "browse"
msgstr "Bla gjennom …"

#: drakperm:245
#, c-format
msgid "user"
msgstr "brukar"

#: drakperm:245
#, c-format
msgid "group"
msgstr "gruppe"

#: drakperm:245
#, c-format
msgid "other"
msgstr "andre"

#: drakperm:248
#, c-format
msgid "Other"
msgstr "Anna"

#: drakperm:250
#, c-format
msgid "Read"
msgstr "Les"

#. -PO: here %s will be either "user", "group" or "other"
#: drakperm:253
#, c-format
msgid "Enable \"%s\" to read the file"
msgstr "Tillat «%s» å lesa fila."

#: drakperm:257
#, c-format
msgid "Write"
msgstr "Skriv"

#. -PO: here %s will be either "user", "group" or "other"
#: drakperm:260
#, c-format
msgid "Enable \"%s\" to write the file"
msgstr "Tillat «%s» å endra fila."

#: drakperm:264
#, c-format
msgid "Execute"
msgstr "Køyr"

#. -PO: here %s will be either "user", "group" or "other"
#: drakperm:267
#, c-format
msgid "Enable \"%s\" to execute the file"
msgstr "Tillèt «%s» å køyra fila."

#: drakperm:270
#, c-format
msgid "Sticky-bit"
msgstr "Klister-bit"

#: drakperm:270
#, c-format
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
"Brukt for mapper:\n"
"Berre eigaren til mappa eller fil i mappa kan sletta ho."

#: drakperm:271
#, c-format
msgid "Set-UID"
msgstr "Set-UID"

#: drakperm:271
#, c-format
msgid "Use owner id for execution"
msgstr "Bruk eigar-ID-en ved køyring."

#: drakperm:272
#, c-format
msgid "Set-GID"
msgstr "Set-GID"

#: drakperm:272
#, c-format
msgid "Use group id for execution"
msgstr "Bruk gruppe-ID-en ved køyring."

#: drakperm:289
#, c-format
msgid "User:"
msgstr "Brukar:"

#: drakperm:290
#, c-format
msgid "Group:"
msgstr "Gruppe:"

#: drakperm:294
#, c-format
msgid "Current user"
msgstr "Gjeldande brukar"

#: drakperm:295
#, c-format
msgid "When checked, owner and group will not be changed"
msgstr "Når avkryssa, vert ikkje eigar eller grupper endra."

#: drakperm:305
#, c-format
msgid "Path selection"
msgstr "Stigval"

#: drakperm:325
#, c-format
msgid "Property"
msgstr "Eigenskap"

#: drakperm:375
#, c-format
msgid ""
"The first character of the path must be a slash (\"/\"):\n"
"\"%s\""
msgstr ""
"Første teiknet i stigen må vera ein skråstrek («/»):\n"
%s»"

#: drakperm:385
#, c-format
msgid "Both the username and the group must valid!"
msgstr "Både brukarnamnet og gruppa må vera gyldig."

#: drakperm:386
#, c-format
msgid "User: %s"
msgstr "Brukar: %s"

#: drakperm:387
#, c-format
msgid "Group: %s"
msgstr "Gruppe: %s"

#: draksec:53
#, c-format
msgid "ALL"
msgstr "ALLE"

#: draksec:54
#, c-format
msgid "LOCAL"
msgstr "LOKALE"

#: draksec:55
#, c-format
msgid "NONE"
msgstr "INGEN"

#: draksec:56
#, c-format
msgid "Default"
msgstr "Standard"

#: draksec:57
#, c-format
msgid "Ignore"
msgstr "Ignorer"

#: draksec:72 drakups:99 harddrake2:370 scannerdrake:66 scannerdrake:70
#: scannerdrake:78 scannerdrake:319 scannerdrake:368 scannerdrake:505
#: scannerdrake:509 scannerdrake:531 service_harddrake:259
#, c-format
msgid "Please wait"
msgstr "Vent litt "

#. -PO: Do not alter the <span ..> and </span> tags.
#. -PO: Translate the security levels (Poor, Standard, High, Higher and Paranoid) in the same way, you translated these individuals words.
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX.
#: draksec:93
#, c-format
msgid ""
"Here, you can setup the security level and administrator of your machine.\n"
"\n"
"\n"
"The '<span weight=\"bold\">Security Administrator</span>' is the one who "
"will receive security alerts if the\n"
"'<span weight=\"bold\">Security Alerts</span>' option is set. It can be a "
"username or an email.\n"
"\n"
"\n"
"The '<span weight=\"bold\">Security Level</span>' menu allows you to select "
"one of the six preconfigured security levels\n"
"provided with msec. These levels range from '<span weight=\"bold\">poor</"
"span>' security and ease of use, to\n"
"'<span weight=\"bold\">paranoid</span>' config, suitable for very sensitive "
"server applications:\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but "
"very\n"
"easy to use security level. It should only be used for machines not "
"connected to\n"
"any network and that are not accessible to everybody.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">Standard</span>: This is the standard "
"security\n"
"recommended for a computer that will be used to connect to the Internet as "
"a\n"
"client.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">High</span>: There are already some\n"
"restrictions, and more automatic checks are run every night.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">Higher</span>: The security is now high "
"enough\n"
"to use the system as a server which can accept connections from many "
"clients. If\n"
"your machine is only a client on the Internet, you should choose a lower "
"level.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
"previous\n"
"level, but the system is entirely closed and security features are at their\n"
"maximum"
msgstr ""
"Her kan du velja tryggleiksnivået og kven som skal vera tryggleiksansvarleg "
"for maskina.\n"
"\n"
"\n"
"<span weight=\"bold\">Tryggleiksansvarleg</span> er den personen som skal "
"motta tryggleiksvarsel viss det er kryssa av for dette. Det kan anten vera "
"eit brukarnamn eller ei e-postadresse.\n"
"\n"
"\n"
"På <span weight=\"bold\">Tryggleiksnivå</span>-menyen kan du velja eit av "
"dei ferdigoppsette tryggleiksnivå i «msec», frå <span weight=\"bold\">dårleg</"
"span> (men brukarvenleg) tryggleik, til\n"
"<span weight=\"bold\">paranoid</span> tryggleik, for veldig sensitive "
"tenarprogram:\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">Dårleg</span>: Dette er fullstendig utrygt, "
"men veldig brukarvenleg. Det bør berre brukast for maskiner som ikkje er "
"kopla til noko nettverk, og som ikkje er tilgjengeleg for andre enn deg.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">Standard</span>: Dette er standard "
"tryggleiksnivå, og anbefalt for ei maskin som vert kopla til Internett som "
"ein klient.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">Høg</span>: Her vert lagt på fleire "
"avgrensingar, og fleire automatisk kontrollar vert køyrde kvar natt.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">Høgare</span>: Dette tryggleiksnivået er no "
"høgt nok til at du kan bruka maskina som ein tenar som kan motta "
"tilkoplingar frå mange klientar. Viss maskina berre vert brukt som ein "
"klient på Internett, bør du velja eit lågare nivå.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">Paranoid</span>: Dette liknar på førre nivå, "
"men systemet er fullstendig lukka, og alle tryggleiksfunksjonar køyrer på "
"høgste nivå."

#: draksec:147 harddrake2:214
#, c-format
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
"Feltbeskriving:\n"
"\n"

#: draksec:161
#, c-format
msgid "(default value: %s)"
msgstr "(standardverdi: %s)"

#: draksec:166
#, c-format
msgid "Security Level and Checks"
msgstr "Tryggleiksnivå og -kontrollar"

#: draksec:203
#, c-format
msgid "Security Level:"
msgstr "Tryggleiksnivå:"

#: draksec:206
#, c-format
msgid "Security Alerts:"
msgstr "Tryggleiksvarsel:"

#: draksec:210
#, c-format
msgid "Security Administrator:"
msgstr "Tryggleiksansvarleg:"

#: draksec:212
#, c-format
msgid "Basic options"
msgstr "Grunnleggjande val"

#: draksec:226
#, c-format
msgid "Network Options"
msgstr "Nettverksval"

#: draksec:226
#, c-format
msgid "System Options"
msgstr "Systemval"

#: draksec:261
#, c-format
msgid "Periodic Checks"
msgstr "Regelmessige kontrollar"

#: draksec:282
#, c-format
msgid "No password"
msgstr "Ingen passord"

#: draksec:283
#, c-format
msgid "Root password"
msgstr "Root-passord"

#: draksec:284
#, c-format
msgid "User password"
msgstr "Brukarpassord"

#: draksec:314 draksec:360
#, c-format
msgid "Software Management"
msgstr "Programvare"