aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/request/request.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/request/request.php')
-rw-r--r--phpBB/phpbb/request/request.php419
1 files changed, 419 insertions, 0 deletions
diff --git a/phpBB/phpbb/request/request.php b/phpBB/phpbb/request/request.php
new file mode 100644
index 0000000000..ea9854894c
--- /dev/null
+++ b/phpBB/phpbb/request/request.php
@@ -0,0 +1,419 @@
+<?php
+/**
+*
+* This file is part of the phpBB Forum Software package.
+*
+* @copyright (c) phpBB Limited <https://www.phpbb.com>
+* @license GNU General Public License, version 2 (GPL-2.0)
+*
+* For full copyright and license information, please see
+* the docs/CREDITS.txt file.
+*
+*/
+
+namespace phpbb\request;
+
+/**
+* All application input is accessed through this class.
+*
+* It provides a method to disable access to input data through super globals.
+* This should force MOD authors to read about data validation.
+*/
+class request implements \phpbb\request\request_interface
+{
+ /**
+ * @var array The names of super global variables that this class should protect if super globals are disabled.
+ */
+ protected $super_globals = array(
+ \phpbb\request\request_interface::POST => '_POST',
+ \phpbb\request\request_interface::GET => '_GET',
+ \phpbb\request\request_interface::REQUEST => '_REQUEST',
+ \phpbb\request\request_interface::COOKIE => '_COOKIE',
+ \phpbb\request\request_interface::SERVER => '_SERVER',
+ \phpbb\request\request_interface::FILES => '_FILES',
+ );
+
+ /**
+ * @var array Stores original contents of $_REQUEST array.
+ */
+ protected $original_request = null;
+
+ /**
+ * @var
+ */
+ protected $super_globals_disabled = false;
+
+ /**
+ * @var array An associative array that has the value of super global constants as keys and holds their data as values.
+ */
+ protected $input;
+
+ /**
+ * @var \phpbb\request\type_cast_helper_interface An instance of a type cast helper providing convenience methods for type conversions.
+ */
+ protected $type_cast_helper;
+
+ /**
+ * Initialises the request class, that means it stores all input data in {@link $input input}
+ * and then calls {@link \phpbb\request\deactivated_super_global \phpbb\request\deactivated_super_global}
+ */
+ public function __construct(\phpbb\request\type_cast_helper_interface $type_cast_helper = null, $disable_super_globals = true)
+ {
+ if ($type_cast_helper)
+ {
+ $this->type_cast_helper = $type_cast_helper;
+ }
+ else
+ {
+ $this->type_cast_helper = new \phpbb\request\type_cast_helper();
+ }
+
+ foreach ($this->super_globals as $const => $super_global)
+ {
+ $this->input[$const] = isset($GLOBALS[$super_global]) ? $GLOBALS[$super_global] : array();
+ }
+
+ // simulate request_order = GP
+ $this->original_request = $this->input[\phpbb\request\request_interface::REQUEST];
+ $this->input[\phpbb\request\request_interface::REQUEST] = $this->input[\phpbb\request\request_interface::POST] + $this->input[\phpbb\request\request_interface::GET];
+
+ if ($disable_super_globals)
+ {
+ $this->disable_super_globals();
+ }
+ }
+
+ /**
+ * Getter for $super_globals_disabled
+ *
+ * @return bool Whether super globals are disabled or not.
+ */
+ public function super_globals_disabled()
+ {
+ return $this->super_globals_disabled;
+ }
+
+ /**
+ * Disables access of super globals specified in $super_globals.
+ * This is achieved by overwriting the super globals with instances of {@link \phpbb\request\deactivated_super_global \phpbb\request\deactivated_super_global}
+ */
+ public function disable_super_globals()
+ {
+ if (!$this->super_globals_disabled)
+ {
+ foreach ($this->super_globals as $const => $super_global)
+ {
+ unset($GLOBALS[$super_global]);
+ $GLOBALS[$super_global] = new \phpbb\request\deactivated_super_global($this, $super_global, $const);
+ }
+
+ $this->super_globals_disabled = true;
+ }
+ }
+
+ /**
+ * Enables access of super globals specified in $super_globals if they were disabled by {@link disable_super_globals disable_super_globals}.
+ * This is achieved by making the super globals point to the data stored within this class in {@link $input input}.
+ */
+ public function enable_super_globals()
+ {
+ if ($this->super_globals_disabled)
+ {
+ foreach ($this->super_globals as $const => $super_global)
+ {
+ $GLOBALS[$super_global] = $this->input[$const];
+ }
+
+ $GLOBALS['_REQUEST'] = $this->original_request;
+
+ $this->super_globals_disabled = false;
+ }
+ }
+
+ /**
+ * This function allows overwriting or setting a value in one of the super global arrays.
+ *
+ * Changes which are performed on the super globals directly will not have any effect on the results of
+ * other methods this class provides. Using this function should be avoided if possible! It will
+ * consume twice the the amount of memory of the value
+ *
+ * @param string $var_name The name of the variable that shall be overwritten
+ * @param mixed $value The value which the variable shall contain.
+ * If this is null the variable will be unset.
+ * @param \phpbb\request\request_interface::POST|GET|REQUEST|COOKIE $super_global
+ * Specifies which super global shall be changed
+ */
+ public function overwrite($var_name, $value, $super_global = \phpbb\request\request_interface::REQUEST)
+ {
+ if (!isset($this->super_globals[$super_global]))
+ {
+ return;
+ }
+
+ $this->type_cast_helper->add_magic_quotes($value);
+
+ // setting to null means unsetting
+ if ($value === null)
+ {
+ unset($this->input[$super_global][$var_name]);
+ if (!$this->super_globals_disabled())
+ {
+ unset($GLOBALS[$this->super_globals[$super_global]][$var_name]);
+ }
+ }
+ else
+ {
+ $this->input[$super_global][$var_name] = $value;
+ if (!$this->super_globals_disabled())
+ {
+ $GLOBALS[$this->super_globals[$super_global]][$var_name] = $value;
+ }
+ }
+
+ if (!$this->super_globals_disabled())
+ {
+ unset($GLOBALS[$this->super_globals[$super_global]][$var_name]);
+ $GLOBALS[$this->super_globals[$super_global]][$var_name] = $value;
+ }
+ }
+
+ /**
+ * Central type safe input handling function.
+ * All variables in GET or POST requests should be retrieved through this function to maximise security.
+ *
+ * @param string|array $var_name The form variable's name from which data shall be retrieved.
+ * If the value is an array this may be an array of indizes which will give
+ * direct access to a value at any depth. E.g. if the value of "var" is array(1 => "a")
+ * then specifying array("var", 1) as the name will return "a".
+ * @param mixed $default A default value that is returned if the variable was not set.
+ * This function will always return a value of the same type as the default.
+ * @param bool $multibyte If $default is a string this paramater has to be true if the variable may contain any UTF-8 characters
+ * Default is false, causing all bytes outside the ASCII range (0-127) to be replaced with question marks
+ * @param \phpbb\request\request_interface::POST|GET|REQUEST|COOKIE $super_global
+ * Specifies which super global should be used
+ *
+ * @return mixed The value of $_REQUEST[$var_name] run through {@link set_var set_var} to ensure that the type is the
+ * the same as that of $default. If the variable is not set $default is returned.
+ */
+ public function variable($var_name, $default, $multibyte = false, $super_global = \phpbb\request\request_interface::REQUEST)
+ {
+ return $this->_variable($var_name, $default, $multibyte, $super_global, true);
+ }
+
+ /**
+ * Get a variable, but without trimming strings.
+ * Same functionality as variable(), except does not run trim() on strings.
+ * This method should be used when handling passwords.
+ *
+ * @param string|array $var_name The form variable's name from which data shall be retrieved.
+ * If the value is an array this may be an array of indizes which will give
+ * direct access to a value at any depth. E.g. if the value of "var" is array(1 => "a")
+ * then specifying array("var", 1) as the name will return "a".
+ * @param mixed $default A default value that is returned if the variable was not set.
+ * This function will always return a value of the same type as the default.
+ * @param bool $multibyte If $default is a string this paramater has to be true if the variable may contain any UTF-8 characters
+ * Default is false, causing all bytes outside the ASCII range (0-127) to be replaced with question marks
+ * @param \phpbb\request\request_interface::POST|GET|REQUEST|COOKIE $super_global
+ * Specifies which super global should be used
+ *
+ * @return mixed The value of $_REQUEST[$var_name] run through {@link set_var set_var} to ensure that the type is the
+ * the same as that of $default. If the variable is not set $default is returned.
+ */
+ public function untrimmed_variable($var_name, $default, $multibyte = false, $super_global = \phpbb\request\request_interface::REQUEST)
+ {
+ return $this->_variable($var_name, $default, $multibyte, $super_global, false);
+ }
+
+ /**
+ * Shortcut method to retrieve SERVER variables.
+ *
+ * Also fall back to getenv(), some CGI setups may need it (probably not, but
+ * whatever).
+ *
+ * @param string|array $var_name See \phpbb\request\request_interface::variable
+ * @param mixed $Default See \phpbb\request\request_interface::variable
+ *
+ * @return mixed The server variable value.
+ */
+ public function server($var_name, $default = '')
+ {
+ $multibyte = true;
+
+ if ($this->is_set($var_name, \phpbb\request\request_interface::SERVER))
+ {
+ return $this->variable($var_name, $default, $multibyte, \phpbb\request\request_interface::SERVER);
+ }
+ else
+ {
+ $var = getenv($var_name);
+ $this->type_cast_helper->recursive_set_var($var, $default, $multibyte);
+ return $var;
+ }
+ }
+
+ /**
+ * Shortcut method to retrieve the value of client HTTP headers.
+ *
+ * @param string|array $header_name The name of the header to retrieve.
+ * @param mixed $default See \phpbb\request\request_interface::variable
+ *
+ * @return mixed The header value.
+ */
+ public function header($header_name, $default = '')
+ {
+ $var_name = 'HTTP_' . str_replace('-', '_', strtoupper($header_name));
+ return $this->server($var_name, $default);
+ }
+
+ /**
+ * Shortcut method to retrieve $_FILES variables
+ *
+ * @param string $form_name The name of the file input form element
+ *
+ * @return array The uploaded file's information or an empty array if the
+ * variable does not exist in _FILES.
+ */
+ public function file($form_name)
+ {
+ return $this->variable($form_name, array('name' => 'none'), false, \phpbb\request\request_interface::FILES);
+ }
+
+ /**
+ * Checks whether a certain variable was sent via POST.
+ * To make sure that a request was sent using POST you should call this function
+ * on at least one variable.
+ *
+ * @param string $name The name of the form variable which should have a
+ * _p suffix to indicate the check in the code that creates the form too.
+ *
+ * @return bool True if the variable was set in a POST request, false otherwise.
+ */
+ public function is_set_post($name)
+ {
+ return $this->is_set($name, \phpbb\request\request_interface::POST);
+ }
+
+ /**
+ * Checks whether a certain variable is set in one of the super global
+ * arrays.
+ *
+ * @param string $var Name of the variable
+ * @param \phpbb\request\request_interface::POST|GET|REQUEST|COOKIE $super_global
+ * Specifies the super global which shall be checked
+ *
+ * @return bool True if the variable was sent as input
+ */
+ public function is_set($var, $super_global = \phpbb\request\request_interface::REQUEST)
+ {
+ return isset($this->input[$super_global][$var]);
+ }
+
+ /**
+ * Checks whether the current request is an AJAX request (XMLHttpRequest)
+ *
+ * @return bool True if the current request is an ajax request
+ */
+ public function is_ajax()
+ {
+ return $this->header('X-Requested-With') == 'XMLHttpRequest';
+ }
+
+ /**
+ * Checks if the current request is happening over HTTPS.
+ *
+ * @return bool True if the request is secure.
+ */
+ public function is_secure()
+ {
+ return $this->server('HTTPS') == 'on';
+ }
+
+ /**
+ * Returns all variable names for a given super global
+ *
+ * @param \phpbb\request\request_interface::POST|GET|REQUEST|COOKIE $super_global
+ * The super global from which names shall be taken
+ *
+ * @return array All variable names that are set for the super global.
+ * Pay attention when using these, they are unsanitised!
+ */
+ public function variable_names($super_global = \phpbb\request\request_interface::REQUEST)
+ {
+ if (!isset($this->input[$super_global]))
+ {
+ return array();
+ }
+
+ return array_keys($this->input[$super_global]);
+ }
+
+ /**
+ * Helper function used by variable() and untrimmed_variable().
+ *
+ * @param string|array $var_name The form variable's name from which data shall be retrieved.
+ * If the value is an array this may be an array of indizes which will give
+ * direct access to a value at any depth. E.g. if the value of "var" is array(1 => "a")
+ * then specifying array("var", 1) as the name will return "a".
+ * @param mixed $default A default value that is returned if the variable was not set.
+ * This function will always return a value of the same type as the default.
+ * @param bool $multibyte If $default is a string this paramater has to be true if the variable may contain any UTF-8 characters
+ * Default is false, causing all bytes outside the ASCII range (0-127) to be replaced with question marks
+ * @param \phpbb\request\request_interface::POST|GET|REQUEST|COOKIE $super_global
+ * Specifies which super global should be used
+ * @param bool $trim Indicates whether trim() should be applied to string values.
+ *
+ * @return mixed The value of $_REQUEST[$var_name] run through {@link set_var set_var} to ensure that the type is the
+ * the same as that of $default. If the variable is not set $default is returned.
+ */
+ protected function _variable($var_name, $default, $multibyte = false, $super_global = \phpbb\request\request_interface::REQUEST, $trim = true)
+ {
+ $path = false;
+
+ // deep direct access to multi dimensional arrays
+ if (is_array($var_name))
+ {
+ $path = $var_name;
+ // make sure at least the variable name is specified
+ if (empty($path))
+ {
+ return (is_array($default)) ? array() : $default;
+ }
+ // the variable name is the first element on the path
+ $var_name = array_shift($path);
+ }
+
+ if (!isset($this->input[$super_global][$var_name]))
+ {
+ return (is_array($default)) ? array() : $default;
+ }
+ $var = $this->input[$super_global][$var_name];
+
+ if ($path)
+ {
+ // walk through the array structure and find the element we are looking for
+ foreach ($path as $key)
+ {
+ if (is_array($var) && isset($var[$key]))
+ {
+ $var = $var[$key];
+ }
+ else
+ {
+ return (is_array($default)) ? array() : $default;
+ }
+ }
+ }
+
+ $this->type_cast_helper->recursive_set_var($var, $default, $multibyte, $trim);
+
+ return $var;
+ }
+
+ /**
+ * {@inheritdoc}
+ */
+ public function get_super_global($super_global = \phpbb\request\request_interface::REQUEST)
+ {
+ return $this->input[$super_global];
+ }
+}
7 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 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
msgid ""
msgstr ""
"Project-Id-Version: initscripts\n"
"POT-Creation-Date: 2000-12-17 20:35-0500\n"
"PO-Revision-Date: 2001-08-28 22:04+0200\n"
"Last-Translator: Keld Simonsen <keld@dkuug.dk>\n"
"Language-Team: Danish <dansk@klid.dk>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.8.1\n"

#: /etc/rc.d/init.d/ipchains:72 /etc/rc.d/init.d/iptables:77
msgid "Resetting built-in chains to the default ACCEPT policy:"
msgstr "Nulstiller indbyggede kæder til standard ACCEPT-hovedregel:"

#: /etc/rc.d/init.d/amd:39 /etc/rc.d/init.d/anacron:25
#: /etc/rc.d/init.d/arpwatch:35 /etc/rc.d/init.d/atd:39
#: /etc/rc.d/init.d/bootparamd:38 /etc/rc.d/init.d/crond:33
#: /etc/rc.d/init.d/httpd:51 /etc/rc.d/init.d/identd:54
#: /etc/rc.d/init.d/kadmin:47 /etc/rc.d/init.d/kprop:37
#: /etc/rc.d/init.d/krb524:37 /etc/rc.d/init.d/krb5kdc:37
#: /etc/rc.d/init.d/ldap:63 /etc/rc.d/init.d/ldap:70 /etc/rc.d/init.d/lpd:57
#: /etc/rc.d/init.d/mcserv:32 /etc/rc.d/init.d/mysqld:53
#: /etc/rc.d/init.d/mysqld:55 /etc/rc.d/init.d/named:58
#: /etc/rc.d/init.d/nscd:58 /etc/rc.d/init.d/portmap:60
#: /etc/rc.d/init.d/pxe:32 /etc/rc.d/init.d/radvd:45 /etc/rc.d/init.d/rarpd:32
#: /etc/rc.d/init.d/rwalld:33 /etc/rc.d/init.d/snmpd:30
#: /etc/rc.d/init.d/tWnn:42 /etc/rc.d/init.d/ups:61 /etc/rc.d/init.d/xinetd:66
msgid "Stopping $prog: "
msgstr "Stopper $prog: "

#: /etc/sysconfig/network-scripts/network-functions-ipv6:52
msgid "Kernel is not compiled with IPv6 support"
msgstr "Kernen er ikke oversat med IPv6-understøttelse"

#: /etc/rc.d/init.d/smb:58 /etc/rc.d/init.d/smb:63
msgid "Shutting down $KIND services: "
msgstr "Lukker $KIND-funktioner ned: "

#: /etc/rc.d/init.d/ypbind:34
msgid "Binding to the NIS domain: "
msgstr "Forbinder til NIS-domænet: "

#: /etc/sysconfig/network-scripts/network-functions-ipv6:449
msgid "Missing parameter 'IPv6AddrToTest' (arg 2)"
msgstr "Mangler parameteren 'IPv6AddrToTest' (arg 2)"

#: /etc/rc.d/init.d/functions:272
msgid "${base} (pid $pid) is running..."
msgstr "${base} (pid $pid) kører..."

#: /etc/rc.d/init.d/crond:51
msgid "Reloading cron daemon configuration: "
msgstr "Genindlæser cron-dæmonens opsætning: "

#: /etc/rc.d/rc.sysinit:488
msgid "*** An error occurred during the RAID startup"
msgstr "*** Der skete en fejl under opstarten af RAID-systemet"

#: /etc/rc.d/rc.sysinit:57
msgid "Unmounting initrd: "
msgstr "Afmonterer initrd: "

#: /etc/rc.d/init.d/isdn:96
msgid "Starting $prog"
msgstr "Starter $prog"

#: /etc/rc.d/init.d/netfs:141
msgid "/proc filesystem unavailable"
msgstr "filsystemet /proc er ikke tilgængeligt"

#: /etc/rc.d/init.d/kudzu:39
msgid "Checking for new hardware"
msgstr "Søger efter nye enheder"

#: /etc/rc.d/init.d/ypbind:29
msgid "Setting NIS domain name $NISDOMAIN: "
msgstr "Sætter NIS-domænenavn $NISDOMAIN: "

#: /etc/rc.d/init.d/gpm:54
msgid "Shutting down console mouse services: "
msgstr "Stopper konsol-musefunktioner: "

#: /etc/sysconfig/network-scripts/ifup-aliases:148
msgid "error in $FILE: already seen ipaddr $IPADDR in $ipseen"
msgstr "fejl i $FILE: er allerede stødt på ip-adresse $IPADDR i $ipseen"

#: /etc/rc.d/init.d/keytable:22
msgid "Loading keymap: "
msgstr "Indlæser tastaturudlægning: "

#: /etc/rc.d/init.d/iptables:62 /etc/rc.d/init.d/iptables:63
msgid "Applying iptables firewall rules"
msgstr "Indfører iptables brandmurs-regler"

#: /etc/rc.d/init.d/functions:373 /etc/rc.d/rc.sysinit:231
msgid "$STRING"
msgstr "$STRING"

#: /etc/rc.d/init.d/netfs:57
msgid "Unmounting loopback filesystems: "
msgstr "Afmonterer loopback-filsystemer: "

#: /etc/rc.d/init.d/autofs:216 /etc/rc.d/init.d/sshd:87
msgid "Starting $prog:"
msgstr "Starter $prog:"

#: /etc/sysconfig/network-scripts/network-functions-ipv6:929
#: /etc/sysconfig/network-scripts/network-functions-ipv6:935
msgid "Tunnel device '$device' creation didn't work - ERROR!"
msgstr "Oprettelse af tunnelenheden '$device' fungerede ikke - FEJL!"

#: /etc/rc.d/init.d/innd:42
msgid "Stopping INND service: "
msgstr "Stopper INND-funktioner: "

#: /etc/rc.d/rc.sysinit:250 /etc/rc.d/rc.sysinit:498 /etc/rc.d/rc.sysinit:533
msgid "Automatic reboot in progress."
msgstr "Automatisk genstart igangsat."

#: /etc/rc.d/init.d/rwhod:23
msgid "Starting rwho services: "
msgstr "Starter rwho-funktioner: "

#: /etc/rc.d/init.d/rawdevices:34 /etc/rc.d/init.d/rawdevices:41
msgid "   you'll have to upgrade your util-linux package"
msgstr "  du er nød til at opgradere din util-linux pakke"

#: /etc/sysconfig/network-scripts/network-functions-ipv6:132
#: /etc/sysconfig/network-scripts/network-functions-ipv6:179
msgid "Missing parameter 'IPv6-network' (arg 1)"
msgstr "Mangler parameteren 'IPv6-netværk'"

#: /etc/rc.d/init.d/iscsi:33
msgid "iscsi daemon already running"
msgstr "iscsi-dæmon kører allerede."

#: /etc/rc.d/init.d/netfs:41
msgid "Mounting SMB filesystems: "
msgstr "Monterer SMB-filsystemer: "

#: /etc/sysconfig/network-scripts/network-functions-ipv6:647
msgid "Missing 'prefix length' for given address '$testipv6addr_valid'"
msgstr "Manglende 'præfikslængde' for given adresse '$testipv6addr_valid'"

#: /etc/rc.d/init.d/mysqld:96
msgid "Usage: $0 {start|stop|status|reload|condrestart|restart}"
msgstr "Brug: $0 {start|stop|status|reload|condrestart|restart}"

#: /etc/rc.d/init.d/portmap:33
msgid "Networking not configured - exiting"
msgstr "Netværk ikke konfigureret - afslutter"

#: /etc/sysconfig/network-scripts/ifup-aliases:337
msgid "error in $FILE: IPADDR_START and IPADDR_END don't argree"
msgstr "fejl i $FILE: IPADDR_START og IPADDR_END passer ikke sammen"

#: /etc/rc.d/init.d/netfs:152
msgid "Usage: $0 {start|stop|restart|reload|status}"
msgstr "Brug: $0 {start|stop|restart|reload|status}"

#: /etc/rc.d/init.d/keytable:54
msgid "No status available for this package"
msgstr "Ingen tilgængelig status for denne pakke"

#: /etc/sysconfig/network-scripts/network-functions-ipv6:775
#: /etc/sysconfig/network-scripts/network-functions-ipv6:846
msgid "Missing parameter 'local IPv4 address' (arg 2)"
msgstr "Mangler parameteren 'lokal IPv4-adresse' (arg 2)"

#: /etc/rc.d/init.d/routed:41
msgid "Stopping routed (RIP) services: "
msgstr "Stopper routed-funktioner (RIP) : "

#: /etc/rc.d/init.d/junkbuster:23
msgid "Starting junkbuster: "
msgstr "Starter junkbuster: "

#: /etc/rc.d/init.d/halt:118
msgid "Syncing hardware clock to system time"
msgstr "Synkroniserer maskinur med systemtid"

#: /etc/sysconfig/network-scripts/network-functions-ipv6:330
#: /etc/sysconfig/network-scripts/network-functions-ipv6:377
#: /etc/sysconfig/network-scripts/network-functions-ipv6:415
#: /etc/sysconfig/network-scripts/network-functions-ipv6:898
msgid "Missing parameter 'IPv4-tunnel address' (arg 2)"
msgstr "Mangler parameteren 'IPv4-tunneladresse' (arg 2)"

#: /etc/sysconfig/network-scripts/ifdown:12
#: /etc/sysconfig/network-scripts/ifdown:19
msgid "usage: ifdown <device name>"
msgstr "Brug: ifdown <enhedsnavn>"

#: /etc/rc.d/init.d/autofs:193
msgid "Active Mount Points:"
msgstr "Aktive monteringspunkter:"

#: /etc/rc.d/rc.sysinit:298
msgid "Remounting root filesystem in read-write mode: "
msgstr "Genmonterer root-filsystem i læse/skrive-tilstand: "

#: /etc/rc.d/init.d/xfs:81
msgid "Restarting $prog: "
msgstr "Genstarter $prog: "

#: /etc/rc.d/init.d/mars-nwe:23
msgid "Starting NetWare emulator-server: "
msgstr "Starter NetWare emulerings-tjener: "

#: /etc/rc.d/init.d/ypxfrd:31
msgid "Stopping YP map server: "
msgstr "Stopper YP map-server: "

#: /etc/sysconfig/network-scripts/network-functions-ipv6:303
msgid "Tunnel device 'sit0' is still up - FATAL ERROR!"
msgstr "Tunnel-enhed 'sit0' er stadig oppe - FATAL FEJL!"

#: /etc/rc.d/init.d/halt:18
msgid "$1 "
msgstr "$1 "

#: /etc/rc.d/init.d/random:46
msgid "The random data source is missing"
msgstr "Ingen kilde med tilfældige data"

#: /etc/sysconfig/network-scripts/ifup-ipv6:148
msgid ""
"Given IPv4 address $ipv4addr is not a globally usable one, 6to4 "
"configuration is not valid!"
msgstr ""
"Opgivet IPv4-adresse $ipv4addr kan ikke bruges globalt. 6til4 konfiguration "
"er ikke gyldig!"

#: /etc/rc.d/init.d/isdn:78
msgid "Unloading ISDN modules"
msgstr "Fjerner ISDN-moduler"

#: /etc/sysconfig/network-scripts/network-functions-ipv6:500
#: /etc/sysconfig/network-scripts/network-functions-ipv6:582
msgid "Missing parameter 'IPv6-address' (arg 2)"
msgstr "Mangler parameteren 'IPv6-adresse' (arg 2)"

#: /etc/rc.d/init.d/apmd:26
msgid "Starting up APM daemon: "
msgstr "Starter APM-dæmonen: "

#: /etc/rc.d/init.d/postgresql:114
msgid "Initializing database: "
msgstr "Initialiserer database: "

#: /etc/rc.d/init.d/ipchains:110 /etc/rc.d/init.d/ipchains:111
msgid "Saving current rules to $IPCHAINS_CONFIG"
msgstr "Gemmer nuværende regler i $IPCHAINS_CONFIG"

#: /etc/rc.d/init.d/autofs:251 /etc/rc.d/init.d/autofs:252
msgid "could not make temp file"
msgstr "kunne ikke oprette temporær fil"

#: /etc/sysconfig/network-scripts/ifup-ppp:69
msgid "ifup-ppp for ${DEVNAME} exiting"
msgstr "ifup-ppp for ${DEVNAME} afsluttes"

#: /etc/rc.d/init.d/ypbind:42
msgid "Listening for an NIS domain server."
msgstr "Lytter efter en NIS-domænetjener."

#: /etc/rc.d/init.d/iptables:60
msgid "Applying iptables firewall rules: "
msgstr "Indfører iptables brandmurs-regler: "

#: /etc/rc.d/init.d/pcmcia:121
msgid " cardmgr."
msgstr " cardmgr."

#: /etc/rc.d/init.d/random:26
msgid "Initializing random number generator: "
msgstr "Initialiserer tilfældigheds-generatoren: "

#: /etc/rc.d/init.d/isdn:46
msgid "$*"
msgstr "$*"

#: /etc/rc.d/rc.sysinit:242 /etc/rc.d/rc.sysinit:490 /etc/rc.d/rc.sysinit:525
msgid "*** when you leave the shell."
msgstr "*** når du forlader skallen."

#: /etc/rc.d/init.d/innd:108 /etc/rc.d/init.d/kprop:67
#: /etc/rc.d/init.d/krb524:66 /etc/rc.d/init.d/postgresql:227
#: /etc/rc.d/init.d/syslog:77 /etc/rc.d/init.d/ypbind:104
msgid "Usage: $0 {start|stop|status|restart|condrestart}"
msgstr "Brug: $0 {start|stop|status|restart|condrestart}"

#: /etc/rc.d/init.d/lpd:98 /etc/rc.d/init.d/rarpd:65
msgid "Usage: $0 {start|stop|restart|condrestart|reload|status}"
msgstr "Brug: $0 {start|stop|restart|condrestart|reload|status}"

#: /etc/rc.d/init.d/network:175
msgid "Shutting down interface $i: "
msgstr "Lukker grænsefladen $i ned: "

#: /etc/rc.d/init.d/network:219
msgid "Currently active devices:"
msgstr "Aktuelt aktive enheder:"

#: /etc/rc.d/init.d/rawdevices:68
msgid "You need to be root to use this command ! "
msgstr "Du skal være 'root' for at bruge denne kommando! "

#: /etc/rc.d/init.d/netfs:97
msgid "Unmounting NFS filesystems (retry): "
msgstr "Afmonterer NFS-filsystemer (nyt forsøg): "

#: /etc/rc.d/rc.sysinit:191
msgid "Initializing USB mouse: "
msgstr "Initialiserer USB-mus: "

#: /etc/rc.d/init.d/network:216
msgid "Devices with modified configuration:"
msgstr "Enheder med ændret opsætning:"

#: /etc/sysconfig/network-scripts/network-functions-ipv6:94
msgid "Don't understand forwarding control parameter '$fw_control' (arg 1)"
msgstr ""
"Jeg forstår ikke videresendelseskontrol-parameteren '$fw_control' (arg 1)"

#: /etc/rc.d/rc.sysinit:53
msgid "Mounting proc filesystem: "
msgstr "Monterer proc-filsystem: "

#: /etc/rc.d/rc.sysinit:132
msgid "Loading default keymap: "
msgstr "Indlæser standard-tastaturudlægning: "

#: /etc/sysconfig/network-scripts/ifup-ppp:43
msgid "ifup-ppp for ${DEVICE} exiting"
msgstr "ifup-ppp for ${DEVICE} afsluttes"

#: /etc/rc.d/rc.sysinit:392 /etc/rc.d/rc.sysinit:394
msgid "Finding module dependencies: "
msgstr "Finder modulafhængigheder: "

#: /etc/rc.d/init.d/autofs:224 /etc/rc.d/init.d/sshd:96
msgid "Stopping $prog:"
msgstr "Stopper $prog:"

#: /etc/rc.d/init.d/rawdevices:57
msgid "done"
msgstr "færdig"

#: /etc/rc.d/init.d/network:285
msgid "Usage: $0 {start|stop|restart|reload|status|probe}"
msgstr "Brug: $0 {start|stop|restart|reload|status|probe}"

#: /etc/rc.d/rc.sysinit:155
msgid "Activating swap partitions: "
msgstr "Aktiverer swappartitioner: "

#: /etc/rc.d/init.d/ipchains:98 /etc/rc.d/init.d/ipchains:99
msgid "Changing target policies to DENY"
msgstr "Ændrer målhovedregler til DENY ('afvis')"

#: /etc/rc.d/init.d/syslog:34
msgid "Starting kernel logger: "
msgstr "Starter kerne-logskriver: "

#: /etc/sysconfig/network-scripts/ifup-aliases:156
msgid "error in $FILE: didn't specify device or ipaddr"
msgstr "fejl i $FILE: angav ikke enhed eller ipadresse"

#: /etc/rc.d/init.d/functions:280
msgid "${base} dead but pid file exists"
msgstr "${base} død, men pid-fil eksisterer"

#: /etc/rc.d/rc.sysinit:647
msgid "Enabling swap space: "
msgstr "Aktiverer swapområde: "

#: /etc/rc.d/init.d/pcmcia:105 /etc/rc.d/init.d/pcmcia:141
msgid " modules"
msgstr " moduler"

#: /etc/rc.d/rc.sysinit:39
msgid "Red Hat"
msgstr "Red Hat"

#: /etc/rc.d/init.d/ntpd:26
msgid "Synchronizing with time server: "
msgstr "Synkroniserer med tidsserver: "

#: /etc/rc.d/init.d/rusersd:35
msgid "Stopping rusers services: "
msgstr "Stopper rusers-funktioner: "

#: /etc/rc.d/init.d/gpm:21
msgid "Starting console mouse services: "
msgstr "Starter konsol-musefunktioner: "

#: /etc/rc.d/rc.sysinit:185
msgid "Initializing USB HID interface: "
msgstr "Initialiserer USB HID-grænseflade: "

#: /etc/rc.d/init.d/rhnsd:46
msgid "Stopping Red Hat Network Daemon: "
msgstr "Stopper Red Hat Netværksdæmon: "

#: /etc/rc.d/init.d/isdn:153
msgid "$pn is attached to $dev"
msgstr "$pn er tilsluttet $dev"

#: /etc/sysconfig/network-scripts/ifup-aliases:65
msgid "usage: ifup-aliases <net-device>\n"
msgstr "Brug: ifup-aliases <netenhed>\n"

#: /etc/rc.d/init.d/amd:93 /etc/rc.d/init.d/sshd:105
msgid "Reloading $prog:"
msgstr "Genindlæser $prog: "

#: /etc/rc.d/init.d/kadmin:86
msgid "Usage: $0 {start|stop|status|condrestart|reload|restart}"
msgstr "Brug: $0 {start|stop|status|condrestart|reload|restart}"

#: /etc/rc.d/init.d/ypserv:27
msgid "Starting YP server services: "
msgstr "Starter YP-værtsfunkioner: "

#: /etc/rc.d/init.d/innd:49
msgid "Stopping INNWatch service: "
msgstr "Stopper INNWatch-funktioner: "

#: /etc/rc.d/init.d/iptables:167
msgid "Usage: $0 {start|stop|restart|condrestart|status|panic|save}"
msgstr "Brug: $0 {start|stop|restart|condrestart|status|panic|save}"

#: /etc/rc.d/init.d/autofs:260
msgid "Stop $command"
msgstr "Stop $command"

#: /etc/rc.d/init.d/halt:122
msgid "Turning off swap: "
msgstr "Slår swap fra: "

#: /etc/rc.d/init.d/ups:42
msgid "Starting UPS monitor (master): "
msgstr "Starter UPS-overvågning (tjener): "

#: /etc/rc.d/init.d/netfs:133
msgid "Active SMB mountpoints: "
msgstr "Aktive SMB-monteringspunkter: "

#: /etc/rc.d/init.d/syslog:41
msgid "Shutting down kernel logger: "
msgstr "Stopper kerne-logskriver: "

#: /etc/rc.d/init.d/bcm5820:32
msgid "Loading $module module"
msgstr "Indlæser $module-moduler"

#: /etc/sysconfig/network-scripts/ifup-aliases:152
msgid "error in $FILE: already seen device $parent_device:$DEVNUM in $devseen"
msgstr "fejl i $FILE: er allerede stødt på $parent_device:$DEVNUM i $devseen"

#: /etc/rc.d/rc.sysinit:562
msgid "Checking local filesystem quotas: "
msgstr "Kontrollerer kvoter for lokale filsystemer: "

#: /etc/rc.d/init.d/sshd:34
msgid "Generating SSH1 RSA host key: "
msgstr "Genererer SSH1 RSA værtsnøgle: "

#: /etc/rc.d/init.d/innd:63
msgid "Stopping INN actived service: "
msgstr "Stopper INN actived-funktioner: "

#: /etc/rc.d/init.d/network:232 /etc/rc.d/init.d/network:239
msgid "Bringing up device $device: "
msgstr "Starter enheden $device: "

#: /etc/rc.d/init.d/crond:78 /etc/rc.d/init.d/krb5kdc:76
#: /etc/rc.d/init.d/squid:145
msgid "Usage: $0 {start|stop|status|reload|restart|condrestart}"
msgstr "Brug: $0 {start|stop|status|reload|restart|condrestart}"

#: /etc/rc.d/init.d/pcmcia:110
msgid " module directory $PC not found."
msgstr " modulbibliotek $PC blev ikke fundet."

#: /etc/rc.d/init.d/kadmin:35
msgid "Extracting kadm5 Service Keys: "
msgstr "Udpakker kadm5 servicenøgler: "

#: /etc/rc.d/init.d/lpd:34
msgid "No Printers Defined"
msgstr "Ingen printere defineret"

#: /etc/rc.d/rc.sysinit:302
msgid "Setting up Logical Volume Management:"
msgstr "Opsætter logisk bind-håndtering:"

#: /etc/rc.d/init.d/netfs:42
msgid "Mounting NCP filesystems: "
msgstr "Monterer NCP-filsystemer: "

#: /etc/sysconfig/network-scripts/ifup-ipv6:206
msgid "Trigger RADVD for IPv6to4 prefix recalculation"
msgstr "Aktivér RADVD for kalkulation af IPv6to4-prefiks"

#: /etc/rc.d/rc.sysinit:291
msgid "Skipping ISA PNP configuration at users request: "
msgstr "Springer over ISA PNP-konfigurering efter brugerens ønske: "

#: /etc/rc.d/init.d/ipchains:62 /etc/rc.d/init.d/ipchains:63
msgid "Applying ipchains firewall rules"
msgstr "Indlæser ipchains brandmurs-regler"

#: /etc/sysconfig/network-scripts/ifup-ipv6:173
msgid ""
"IPv6to4 configuration needs an IPv4 address on related interface or extra "
"specified, 6to4 configuration is not valid!"
msgstr ""
"IPv6to4-konfiguration skal have en IPv4-adresse på det relaterede grænsesnit "
"eller et ekstra opgivet; 6to4-konfigurationen er ikke gyldig!"

#: /etc/sysconfig/network-scripts/network-functions-ipv6:225
#: /etc/sysconfig/network-scripts/network-functions-ipv6:325
#: /etc/sysconfig/network-scripts/network-functions-ipv6:372
#: /etc/sysconfig/network-scripts/network-functions-ipv6:410
#: /etc/sysconfig/network-scripts/network-functions-ipv6:494
#: /etc/sysconfig/network-scripts/network-functions-ipv6:549
#: /etc/sysconfig/network-scripts/network-functions-ipv6:576
#: /etc/sysconfig/network-scripts/network-functions-ipv6:769
#: /etc/sysconfig/network-scripts/network-functions-ipv6:814
#: /etc/sysconfig/network-scripts/network-functions-ipv6:841
#: /etc/sysconfig/network-scripts/network-functions-ipv6:893
#: /etc/sysconfig/network-scripts/network-functions-ipv6:972
#: /etc/sysconfig/network-scripts/network-functions-ipv6:1011
msgid "Missing parameter 'device' (arg 1)"
msgstr "Mangler parameteren 'enhed' (arg 1)"

#: /etc/rc.d/init.d/syslog:44
msgid "Shutting down system logger: "
msgstr "Lukker system-logskriveren ned: "

#: /etc/rc.d/init.d/network:189
msgid "Disabling IPv4 packet forwarding: "
msgstr "Deaktiverer IPv4 pakke-videresending:"

#: /etc/rc.d/init.d/iscsi:42
msgid "See error log in /var/log/iscsi.log"
msgstr "Se fejl-loggen i /var/log/iscsi.log"

#: /etc/rc.d/init.d/iscsi:46
msgid "Starting iSCSI iscsilun: "
msgstr "Starter iSCSI iscsilun: "

#: /etc/rc.d/init.d/vncserver:33
msgid "vncserver startup"
msgstr "vncserver opstart"

#: /etc/rc.d/init.d/ipchains:60
msgid "Applying ipchains firewall rules: "
msgstr "Udfører ipchains brandmurs-regler: "

#: /etc/rc.d/init.d/rstatd:21
msgid "Starting rstat services: "
msgstr "Starter rstat-funktioner: "

#: /etc/rc.d/init.d/ipchains:102 /etc/rc.d/init.d/iptables:75
#: /etc/rc.d/init.d/iptables:76 /etc/rc.d/init.d/iptables:152
#: /etc/rc.d/init.d/iptables:153
msgid "Removing user defined chains:"
msgstr "Fjerner brugerdefinerede kæder:"

#: /etc/rc.d/init.d/named:32
msgid "$prog: already running"
msgstr "$prog: kører allerede."

#: /etc/rc.d/init.d/functions:286
msgid "${base} dead but subsys locked"
msgstr "${base} er død men undersystemet er låst"

#: /etc/rc.d/init.d/functions:87 /etc/rc.d/init.d/functions:111
msgid "$0: Usage: daemon [+/-nicelevel] {program}"
msgstr "$0: Brug: dæmon [+/-niceniveau] {program}"

#: /etc/rc.d/init.d/named:74
msgid "$prog is running, PIDs: $PIDS."
msgstr "$prog kører, PIDer: $PIDS."

#: /etc/sysconfig/network-scripts/ifup-aliases:222
#: /etc/sysconfig/network-scripts/ifup-aliases:232
msgid "error in ifcfg-${parent_device}: files"
msgstr "fejl i ifcfg-${parent_device}: filer"

#: /etc/rc.d/init.d/iscsi:63
msgid "Stopping iSCSI: iscsid"
msgstr "Stopper iSCSI: iscsid"

#: /etc/rc.d/init.d/FreeWnn:71 /etc/rc.d/init.d/bootparamd:69
#: /etc/rc.d/init.d/cWnn:70 /etc/rc.d/init.d/pcmcia:52
#: /etc/rc.d/init.d/random:56 /etc/rc.d/init.d/routed:72
#: /etc/rc.d/init.d/tWnn:70
msgid "Usage: $0 {start|stop|status|restart|reload}"
msgstr "Brug: $0 {start|stop|status|restart|reload}"

#: /etc/rc.d/init.d/gated:49
msgid "Stopping $prog"
msgstr "Stopper $prog"

#: /etc/rc.d/rc.sysinit:110
msgid "Setting clock $CLOCKDEF: `date`"
msgstr "Sætter ur $CLOCKDEF: `date`"

#: /etc/rc.d/init.d/xfs:110
msgid "*** Usage: $prog {start|stop|status|restart|reload|condrestart}"
msgstr "*** Brug: $prog {start|stop|status|restart|reload|condrestart}"

#: /etc/rc.d/rc.sysinit:408 /etc/rc.d/rc.sysinit:413
msgid "Loading sound module ($alias): "
msgstr "Indlæser lydmodul ($alias): "

#: /etc/rc.d/init.d/iptables:131 /etc/rc.d/init.d/iptables:132
msgid "Changing target policies to DROP"
msgstr "Ændrer målhovedregler til DROP ('bortkast')"

#: /etc/rc.d/init.d/network:104 /etc/rc.d/init.d/network:131
msgid "Bringing up interface $i: "
msgstr "Sætter grænsefladen $i i drift: "

#: /etc/rc.d/init.d/gated:85
msgid "Usage: $0 {start|stop|reload|restart|condrestart|status}"
msgstr "Brug: $0 {start|stop|reload|restart|condrestart|status}"

#: /etc/rc.d/init.d/netfs:137
msgid "Active NCP mountpoints: "
msgstr "Aktive NCP-monteringspunkter: "

#: /etc/rc.d/init.d/functions:319
msgid "PASSED"
msgstr "LYKKEDES"

#: /etc/rc.d/rc.sysinit:188
msgid "Initializing USB keyboard: "
msgstr "Initialiserer USB-tastatur: "

#: /etc/rc.d/init.d/innd:26
msgid "Please run makehistory and/or makedbz before starting innd."
msgstr "Kør venligst 'makehistory' og/eller 'makedbz' før du starter innd."

#: /etc/rc.d/init.d/xinetd:76
msgid "Reloading configuration: "
msgstr "Genindlæser opsætning: "

#: /etc/rc.d/init.d/autofs:189
msgid "Configured Mount Points:"
msgstr "Konfigurerede monteringspunkter:"

#: /etc/rc.d/rc.sysinit:289
msgid "Setting up ISA PNP devices: "
msgstr "Sætter ISA PNP-enheder op: "

#: /etc/rc.d/init.d/netfs:129
msgid "Active NFS mountpoints: "
msgstr "Aktive NFS-monteringspunkter: "

#: /etc/rc.d/init.d/isdn:150
msgid "$0: Link is down"
msgstr "$0: Forbindelsen er nede"

#: /etc/rc.d/init.d/rusersd:26
msgid "Starting rusers services: "
msgstr "Starter rusers-funktioner: "

#: /etc/rc.d/init.d/functions:236
msgid "Usage: pidofproc {program}"
msgstr "Brug: pidofproc {program}"

#: /etc/rc.d/init.d/arpwatch:60 /etc/rc.d/init.d/mcserv:60
#: /etc/rc.d/init.d/nscd:107 /etc/rc.d/init.d/portmap:94
#: /etc/rc.d/init.d/yppasswdd:63 /etc/rc.d/init.d/ypserv:69
#: /etc/rc.d/init.d/ypxfrd:61
msgid "Usage: $0 {start|stop|status|restart|reload|condrestart}"
msgstr "Brug: $0 {start|stop|status|restart|reload|condrestart}"

#: /etc/rc.d/init.d/ipchains:94
msgid "Changing target policies to DENY: "
msgstr "Ændrer målhovedregler til DENY ('afvis'): "

#: /etc/rc.d/init.d/network:235 /etc/rc.d/init.d/network:238
msgid "Shutting down device $device: "
msgstr "Lukker enheden $device ned: "

#: /etc/sysconfig/network-scripts/network-functions-ipv6:855
msgid "Generated 6to4 prefix '$prefix6to4' from '$localipv4'"
msgstr "Genererede 6to4-prefiks '$prefix6to4' fra '$localipv4'"

#: /etc/sysconfig/network-scripts/ifup:166
msgid "Determining IP information for ${DEVICE}..."
msgstr "Bestemmer IP-information for ${DEVICE}..."

#: /etc/sysconfig/network-scripts/ifup-ipv6:152
msgid ""
"IPv6to4 configuration needs an IPv6to4 relay address, 6to4 configuration is "
"not valid!"
msgstr ""
"IPv6to4-konfigurationen skal have en IPv6to4 relæ-adresse, 6to4-"
"konfigurationen er ikke gyldig!"

#: /etc/rc.d/init.d/innd:56
msgid "Stopping INNFeed service: "
msgstr "Stopping INNFeed-funktioner: "

#: /etc/sysconfig/network-scripts/network-functions-ipv6:266
msgid "Tunnel device 'sit0' enabling didn't work - FATAL ERROR!"
msgstr "Aktivering af tunnel-enhed 'sit0' virkede ikke - FATAL FEJL!"

#: /etc/rc.d/init.d/ipchains:106
msgid "Saving current rules to $IPCHAINS_CONFIG: "
msgstr "Gemmer nuværende regler i $IPCHAINS_CONFIG: "

#: /etc/rc.d/init.d/smb:77
msgid "Reloading smb.conf file: "
msgstr "Genindlæser smb.conf: "

#: /etc/rc.d/init.d/functions:184 /etc/rc.d/init.d/functions:195
msgid "$base shutdown"
msgstr "$base nedlukning"

#: /etc/rc.d/init.d/kadmin:54 /etc/rc.d/init.d/krb5kdc:44
msgid "Reopening $prog log file: "
msgstr "Genåbner logfil for $prog: "

#: /etc/rc.d/init.d/isdn:66 /etc/rc.d/init.d/isdn:68
msgid "Loading ISDN modules"
msgstr "Indlæser ISDN-moduler"

#: /etc/rc.d/init.d/random:37
msgid "Saving random seed: "
msgstr "Gemmer tilfældighedsfrø: "

#: /etc/rc.d/init.d/rstatd:31
msgid "Stopping rstat services: "
msgstr "Stopper rstat-funktioner: "

#: /etc/rc.d/rc.sysinit:135
msgid "Loading default keymap"
msgstr "Indlæser standard-tastatursæt"

#: /etc/rc.d/init.d/ipchains:76 /etc/rc.d/init.d/ipchains:77
#: /etc/rc.d/init.d/iptables:86 /etc/rc.d/init.d/iptables:87
msgid "Resetting built-in chains to the default ACCEPT policy"
msgstr "Nulstiller indbyggede kæder til standard ACCEPT-hovedregel"

#: /etc/rc.d/init.d/radvd:68
msgid "Usage: radvd {start|stop|status|restart|reload|condrestart}"
msgstr "Brug: radvd {start|stop|status|restart|reload|condrestart}"

#: /etc/rc.d/init.d/kudzu:51
msgid "Hardware configuration timed out."
msgstr "Opsætning af maskinel oversteg ventetiden."

#: /etc/rc.d/init.d/yppasswdd:24
msgid "Starting YP passwd service: "
msgstr "Starter YP passwd-funktion: "

#: /etc/rc.d/rc.sysinit:158
msgid "Setting hostname ${HOSTNAME}: "
msgstr "Sætter værtsnavn ${HOSTNAME}: "

#: /etc/rc.d/init.d/functions:145
msgid "Usage: killproc {program} [signal]"
msgstr "Brug: killproc {program} [signal]"

#: /etc/sysconfig/network-scripts/network-functions-ipv6:702
msgid "Missing parameter 'device'"
msgstr "Mangler parameteren 'enhed'"

#: /etc/rc.d/init.d/halt:163
msgid "Unmounting file systems: "
msgstr "Afmonterer filsystemer: "

#: /etc/rc.d/init.d/netfs:110
msgid "Unmounting SMB filesystems: "
msgstr "Afmonterer SMB-filsystemer: "

#: /etc/rc.d/rc.sysinit:600
msgid "Resetting hostname ${HOSTNAME}: "
msgstr "Nulstiller værtsnavn ${HOSTNAME}: "

#: /etc/sysconfig/network-scripts/ifup-sl:33
msgid "/usr/sbin/dip does not exist or is not executable"
msgstr "/usr/sbin/dip eksisterer ikke eller er ikke eksekverbar"

#: /etc/rc.d/init.d/network:63
msgid "Bringing up interface lo: "
msgstr "Sætter grænsefladen lo i drift: "

#: /etc/rc.d/init.d/junkbuster:62
msgid "Usage: junkbuster {start|stop|restart|reload|condrestart|status}"
msgstr "Brug: junkbuster {start|stop|restart|reload|condrestart|status}"

#: /etc/sysconfig/network-scripts/ifdown-sit:66
#: /etc/sysconfig/network-scripts/ifup-sit:99
msgid "Tunnel creation mode '$IPV6_TUNNELMODE' not supported - skip!"
msgstr ""
"Tunnelopretningsmodus '$IPV6_TUNNELMODE' er ikke understøttet - overspring!"

#: /etc/rc.d/init.d/netfs:39
msgid "Mounting NFS filesystems: "
msgstr "Monterer NFS-filsystemer: "

#: /etc/rc.d/init.d/halt:72
msgid "Saving mixer settings"
msgstr "Gemmer mixer-indstillinger"

#: /etc/sysconfig/network-scripts/ifup:205
msgid "Failed to bring up ${DEVICE}."
msgstr "Fejl under opsætning af ${DEVICE}."

#: /etc/rc.d/init.d/halt:126
msgid "Turning off quotas: "
msgstr "Afbryder diskkvoter: "

#: /etc/rc.d/init.d/halt:187
msgid "On the next boot fsck will be skipped."
msgstr "Ved næste genstart springes fsck over."

#: /etc/sysconfig/network-scripts/ifup:96
msgid ""
"$alias device does not seem to be present, delaying ${DEVICE} initialization."
msgstr ""
"$alias-enheden ser ikke ud til at være tilstede, venter med initiering af "
"${DEVICE}."

#: /etc/rc.d/init.d/sshd:54 /etc/rc.d/init.d/sshd:57
msgid "RSA key generation"
msgstr "RSA nøglegenerering"

#: /etc/rc.d/init.d/sshd:38 /etc/rc.d/init.d/sshd:41
msgid "RSA1 key generation"
msgstr "RSA1 nøgle-generering"

#: /etc/rc.d/init.d/ypserv:36
msgid "Stopping YP server services: "
msgstr "Stopper YP-tjenerfunktioner: "

#: /etc/rc.d/init.d/sshd:70 /etc/rc.d/init.d/sshd:73
msgid "DSA key generation"
msgstr "DSA nøglegenerering"

#: /etc/rc.d/init.d/rawdevices:33 /etc/rc.d/init.d/rawdevices:40
msgid "  If the command 'raw' still refers to /dev/raw as a file."
msgstr "  Hvis kommandoen 'raw' stadig henviser til /dev/raw som en fil."

#: /etc/sysconfig/network-scripts/ifup-ipv6:222
msgid "Error occured while calculating the IPv6to4 prefix"
msgstr "Fejl opstod under udregning af IPv6til4-prefiks"

#: /etc/sysconfig/network-scripts/ifup-aliases:107
#: /etc/sysconfig/network-scripts/network-functions:24
msgid "Missing config file $PARENTCONFIG."
msgstr "Mangler konfigurationsfil $PARENTCONFIG."

#: /etc/sysconfig/network-scripts/ifup-ppp:42
msgid "/usr/sbin/pppd does not exist or is not executable"
msgstr "/usr/sbin/pppd eksisterer ikke eller er ikke eksekverbar"

#: /etc/rc.d/init.d/functions:289
msgid "${base} is stopped"
msgstr "${base} er stoppet"

#: /etc/rc.d/init.d/functions:297
msgid "OK"
msgstr "O.k."

#: /etc/rc.d/init.d/halt:137 /etc/rc.d/init.d/netfs:55
msgid "Unmounting loopback filesystems (retry):"
msgstr "Afmonterer loopback-filsystemer (nyt forsøg):"

#: /etc/rc.d/rc.sysinit:566
msgid "Enabling local filesystem quotas: "
msgstr "Aktiverer kvoter for lokale filsystemer: "

#: /etc/sysconfig/network-scripts/ifup:177
#: /etc/sysconfig/network-scripts/ifup:179
msgid " done."
msgstr " færdig."

#: /etc/rc.d/init.d/halt:185
msgid "$message"
msgstr "$message"

#: /etc/rc.d/init.d/single:47
msgid "Telling INIT to go to single user mode."
msgstr "Beder INIT om at gå i enkeltbrugertilstand."

#: /etc/rc.d/rc.sysinit:38
msgid "\\033[1;31m"
msgstr "\\033[1;31m"

#: /etc/rc.d/init.d/yppasswdd:33
msgid "Stopping YP passwd service: "
msgstr "Stopper YP passwd-funktion: "

#: /etc/sysconfig/network-scripts/ifup:27
#: /etc/sysconfig/network-scripts/ifup:35
msgid "Usage: ifup <device name>"
msgstr "Brug: ifup <enhedsnavn>"

#: /etc/rc.d/init.d/pxe:65
msgid "Usage: $0 {condrestart|start|stop|restart|reload|status}"
msgstr "Brug: $0 {condrestart|start|stop|restart|reload|status}"

#: /etc/sysconfig/network-scripts/ifup-sl:45
msgid "/etc/sysconfig/network-scripts/dip-$DEVICE does not exist"
msgstr "/etc/sysconfig/network-scripts/dip-$DEVICE eksisterer ikke"

#: /etc/rc.d/init.d/anacron:58 /etc/rc.d/init.d/atd:80
#: /etc/rc.d/init.d/canna:59 /etc/rc.d/init.d/dhcpd:71 /etc/rc.d/init.d/gpm:86
#: /etc/rc.d/init.d/ntpd:76 /etc/rc.d/init.d/sendmail:88
#: /etc/rc.d/init.d/ups:100 /etc/rc.d/init.d/vncserver:77
msgid "Usage: $0 {start|stop|restart|condrestart|status}"
msgstr "Brug: $0 {start|stop|restart|condrestart|status}"

#: /etc/sysconfig/network-scripts/network-functions-ipv6:515
msgid "Device '$device' enabling didn't work - FATAL ERROR!"
msgstr "Aktivering af enhed '$device' fungerede ikke - FATAL FEJL!"

#: /etc/rc.d/rc.sysinit:440
msgid "Starting up RAID devices: "
msgstr "Starter RAID-enheder: "

#: /etc/rc.d/init.d/iptables:113
msgid "Table: filter"
msgstr "Table: filter"

#: /etc/rc.d/init.d/functions:191
msgid "$base $killlevel"
msgstr "$base $killlevel"

#: /etc/rc.d/init.d/halt:64
msgid "Sending all processes the KILL signal..."
msgstr "Sender KILL-signal til samtlige processer..."

#: /etc/rc.d/init.d/pcmcia:86
msgid "Starting PCMCIA services:"
msgstr "Starter PCMCIA-funktioner:"

#: /etc/sysconfig/network-scripts/ifup-ipv6:99
msgid ""
"Global IPv6 forwarding is disabled in configuration, but not currently "
"disabled in kernel"
msgstr ""
"Global videresending for IPv6 er deaktiveret i konfigurationen, men er ikke "
"deaktiveret i kernen"

#: /etc/rc.d/init.d/iscsi:30
msgid "Could not find /etc/iscsi.conf!"
msgstr "Kunne ikke finde /etc/iscsi.conf!"

#: /etc/rc.d/init.d/pcmcia:158
msgid "cardmgr (pid $pid) is running..."
msgstr "cardmgr (pid $pid) kører..."

#: /etc/rc.d/init.d/isdn:112
msgid "Shutting down $prog"
msgstr "Lukker $prog ned"

#: /etc/sysconfig/network-scripts/ifup:218
msgid "Error adding address ${IPADDR} for ${DEVICE}."
msgstr "Fejl ved tildeling af ${IPADDR} for ${DEVICE}."

#: /etc/sysconfig/network-scripts/network-functions-ipv6:653
msgid ""
"'prefix length' on given address '$testipv6addr_valid' is out of range (0-"
"128)"
msgstr ""
"'prefix length' for den opgivne adresse '$testipv6addr' er udenfor gyldigt "
"område (0-128)"

#: /etc/sysconfig/network-scripts/ifup-ppp:68
msgid "/etc/sysconfig/network-scripts/chat-${DEVNAME} does not exist"
msgstr "/etc/sysconfig/network-scripts/chat-${DEVNAME} eksisterer ikke"

#: /etc/sysconfig/network-scripts/ifup-ipv6:195
msgid ""
"Using 6to4 and RADVD IPv6 forwarding usually should be enabled, but it isn't!"
msgstr ""
"Brug af 6to4 og RADVD IPv6-videresending bør normalt aktiveres, men er det "
"ikke!"

#: /etc/rc.d/init.d/pcmcia:68
msgid "PCIC module not defined in startup options!"
msgstr "PCIC-modul ikke defineret i opstartsindstillinger!"

#: /etc/rc.d/init.d/ups:55
msgid "Stopping UPS monitor: "
msgstr "Stopper UPS-overvågning: "

#: /etc/rc.d/rc.sysinit:571
msgid "Turning on process accounting"
msgstr "Starter proces-bogholderi"

#: /etc/rc.d/init.d/iptables:122
msgid "Changing target policies to DROP: "
msgstr "Ændrer målhovedregler til DROP ('bortkast'): "

#: /etc/rc.d/rc.sysinit:240 /etc/rc.d/rc.sysinit:523
msgid "*** An error occurred during the file system check."
msgstr "*** Der var en fejl under kontrol af filsystemet."

#: /etc/sysconfig/network-scripts/ifup:34
msgid "$0: configuration for ${1} not found."
msgstr "$0: konfiguration for ${1} ikke fundet."

#: /etc/rc.d/init.d/netfs:117
msgid "Configured NFS mountpoints: "
msgstr "Konfigurerede NFS-monteringspunkter: "

#: /etc/rc.d/init.d/apmd:36
msgid "Shutting down APM daemon: "
msgstr "Lukker APM-dæmonen ned: "

#: /etc/rc.d/init.d/rawdevices:32 /etc/rc.d/init.d/rawdevices:39
msgid "     rawdevices are now located in the directory /dev/raw/ "
msgstr "     rå-enheder er nu placeret i kataloget /dev/raw/ "

#: /etc/rc.d/init.d/ipchains:58 /etc/rc.d/init.d/iptables:49
#: /etc/rc.d/init.d/iptables:55 /etc/rc.d/init.d/iptables:56
msgid "Clearing all current rules and user defined chains:"
msgstr "Fjerner alle nuværende regler og brugerdefinerede kæder:"

#: /etc/rc.d/init.d/autofs:246
msgid "$prog not running"
msgstr "$prog kører ikke"

#: /etc/rc.d/init.d/junkbuster:33
msgid "Stopping junkbuster: "
msgstr "Stopper junkbuster: "

#: /etc/rc.d/rc.sysinit:43
msgid "\t\tPress 'I' to enter interactive startup."
msgstr "\t\tTryk 'I' for interaktiv opstart."

#: /etc/rc.d/init.d/network:251 /etc/rc.d/init.d/network:255
msgid "Adding internal IPX network $IPXINTERNALNETNUM $IPXINTERNALNODENUM: "
msgstr "Tilføjer internt IPX-netværk $IPXINTERNALNETNUM $IPXINTERNALNODENUM: "

#: /etc/sysconfig/network-scripts/ifup-ipv6:82
msgid ""
"Global IPv6 forwarding is enabled in configuration, but not currently "
"enabled in kernel"
msgstr ""
"Global videresending for IPv6 er aktiveret i konfigurationen, men ikke "
"aktiveret i kernen"

#: /etc/rc.d/init.d/network:242
msgid "Bringing up alias $device: "
msgstr "Starter alias $device: "

#: /etc/sysconfig/network-scripts/network-functions-ipv6:942
msgid "Tunnel device '$device' bringing up didn't work - ERROR!"
msgstr "Opsætning af tunnelenhed '$device' fungerede ikke - FEJL!"

#: /etc/rc.d/init.d/gpm:25 /etc/rc.d/init.d/gpm:30
msgid "(no mouse is configured)"
msgstr "(der er ikke konfigureret nogen mus)"

#: /etc/rc.d/rc.sysinit:130
msgid "Loading default keymap ($KEYTABLE): "
msgstr "Læser standard-tastaturudlægning ($KEYTABLE): "

#: /etc/rc.d/init.d/postgresql:176
msgid "Stopping postgresql service: "
msgstr "Stopper postgresql-funktioner: "

#: /etc/rc.d/init.d/pcmcia:146
msgid "."
msgstr "."

#: /etc/rc.d/init.d/halt:44
msgid "$0: call me as 'rc.halt' or 'rc.reboot' please!"
msgstr "$0: kald mig venligst som 'rc.halt' eller 'rc.reboot' tak!"

#: /etc/rc.d/rc.sysinit:543
msgid "Mounting local filesystems: "
msgstr "Monterer lokale filsystemer: "

#: /etc/rc.d/init.d/ypxfrd:22
msgid "Starting YP map server: "
msgstr "Starter YP-map tjener: "

#: /etc/rc.d/rc.sysinit:37
msgid "\t\t\tWelcome to "
msgstr "\t\t\tVelkommen til "

#: /etc/rc.d/rc.sysinit:40
msgid "\\033[0;39m"
msgstr "\\033[0;39m"

#: /etc/rc.d/rc.sysinit:168
msgid "Initializing USB controller ($alias): "
msgstr "Initialiserer USB-controller ($alias): "

#: /etc/rc.d/init.d/httpd:74 /etc/rc.d/init.d/lpd:92
msgid "Reloading $prog: "
msgstr "Genindlæser $prog: "

#: /etc/rc.d/rc.sysinit:166
msgid "Mounting USB filesystem: "
msgstr "Monterer USB-filsystem: "

#: /etc/rc.d/init.d/random:44
msgid "The random data source exists"
msgstr "Kilde med tilfældige data eksisterer"

#: /etc/rc.d/init.d/mars-nwe:32
msgid "Stopping NetWare emulator-server: "
msgstr "Stopper NetWare-emuleringstjener: "

#: /etc/rc.d/init.d/kudzu:75 /etc/rc.d/init.d/linuxconf:29
msgid "Usage: $0 {start|stop}"
msgstr "Brug: $0 {start|stop}"

#: /etc/sysconfig/network-scripts/ifup-sl:34
#: /etc/sysconfig/network-scripts/ifup-sl:46
msgid "ifup-sl for $DEVICE exiting"
msgstr "ifup-sl for $DEVICE afsluttes"

#: /etc/rc.d/rc.sysinit:63
msgid "Configuring kernel parameters: "
msgstr "Konfigurerer kerne-parametre: "

#: /etc/rc.d/rc.sysinit:356
msgid "Setting hard drive parameters for ${disk[$device]}: "
msgstr "Sætter harddisk-parametrene for ${disk[$device]}: "

#: /etc/rc.d/init.d/netfs:79
msgid "Unmounting network block filesystems: "
msgstr "Afmonterer netværks-blokfilsystemer: "

#: /etc/rc.d/init.d/halt:143 /etc/rc.d/init.d/netfs:61
msgid "Detaching loopback device $dev: "
msgstr "Frakobler loopback-enhed $dev: "

#: /etc/rc.d/init.d/network:245
msgid "Bringing up route $device: "
msgstr "Sætter ruten $device i drift: "

#: /etc/sysconfig/network-scripts/network-functions-ipv6:1022
msgid "Given IPv6 MTU is out of range"
msgstr "Opgivet IPv6 MTU er udenfor gyldigt område"

#: /etc/sysconfig/network-scripts/network-functions-ipv6:89
msgid "Missing parameter 'forwarding control' (arg 1)"
msgstr "Mangler parameter 'forwarding control' (arg 1)"

#: /etc/rc.d/init.d/halt:139
msgid "Unmounting loobpack filesystems: "
msgstr "Afmonterer loopback-filsystemer: "

#: /etc/rc.d/init.d/mysqld:29
msgid "Initializing MySQL database: "
msgstr "Initialiserer MySQL-database: "

#: /etc/rc.d/init.d/network:61
msgid "Setting network parameters: "
msgstr "Sætter netværksparametre: "

#: /etc/rc.d/rc.sysinit:267 /etc/rc.d/rc.sysinit:551
msgid "Converting old user quota files: "
msgstr "Konverterer gamle filer for brugerkvoter: "

#: /etc/sysconfig/network-scripts/ifup-ipv6:168
msgid ""
"Given address of relay is not a globally usable one, 6to4 configuration is "
"not valid!"
msgstr ""
"Opgivet adresse for relæ er ikke brugbar globalt, 6to4-konfigurationen er "
"ikke gyldig!"

#: /etc/rc.d/init.d/iptables:115
msgid "Table: nat"
msgstr "Table: nat"

#: /etc/rc.d/init.d/network:250 /etc/rc.d/init.d/network:259
msgid "Deleting internal IPX network: "
msgstr "Fjerner internt IPX-netværk: "

#: /etc/rc.d/init.d/netfs:111
msgid "Unmounting NCP filesystems: "
msgstr "Afmonterer NCP-filsystemer: "

#: /etc/rc.d/rc.sysinit:149
msgid "Setting default font ($SYSFONT): "
msgstr "Sætter standardskrifttype ($SYSFONT): "

#: /etc/sysconfig/network-scripts/ifup:181
msgid " failed."
msgstr " mislykket."

#: /etc/sysconfig/network-scripts/network-functions-ipv6:335
#: /etc/sysconfig/network-scripts/network-functions-ipv6:382
msgid "Missing parameter 'IPv6-route' (arg 3)"
msgstr "Mangler parameteren 'IPv6-rute' (arg 3)"

#: /etc/rc.d/init.d/netfs:99
msgid "Unmounting NFS filesystems: "
msgstr "Afmonterer NFS-filsystemer: "

#: /etc/rc.d/init.d/ipchains:116
msgid "Usage: $0 {start|stop|restart|status|panic|save}"
msgstr "Brug: $0 {start|stop|restart|status|panic|save}"

#: /etc/rc.d/init.d/netfs:44
msgid "Mounting other filesystems: "
msgstr "Monterer andre filsystemer: "

#: /etc/sysconfig/network-scripts/ifdown:29
#: /etc/sysconfig/network-scripts/ifup:45
msgid "Users cannot control this device."
msgstr "Brugere må ikke styre denne enhed."

#: /etc/sysconfig/network-scripts/network-functions-ipv6:632
#: /etc/sysconfig/network-scripts/network-functions-ipv6:638
msgid "Given IPv6 address '$testipv6addr_valid' is not valid"
msgstr "Opgivet IPv6-adresse '$testipv6addr_valid' er ikke gyldig"

#: /etc/rc.d/init.d/network:209
msgid "Configured devices:"
msgstr "Konfigurerede enheder:"

#: /etc/rc.d/rc.sysinit:271 /etc/rc.d/rc.sysinit:556
msgid "Converting old group quota files: "
msgstr "Konverterer gamle filer for gruppekvoter: "

#: /etc/rc.d/init.d/halt:62
msgid "Sending all processes the TERM signal..."
msgstr "Sender TERM-signal til samtlige processer..."

#: /etc/rc.d/init.d/netfs:121
msgid "Configured SMB mountpoints: "
msgstr "Konfigurerede SMB-monteringspunkter: "

#: /etc/rc.d/init.d/netfs:77
msgid "Unmounting network block filesystems (retry): "
msgstr "Afmonterer netværks-blokfilsystemer (nyt forsøg): "

#: /etc/sysconfig/network-scripts/network-functions-ipv6:114
msgid ""
"IPv6 forwarding per device cannot be controlled via sysctl - use netfilter6 "
"instead!"
msgstr ""
"IPv6-videresending per enhed kan ikke kontrolleres via sysctl - brug "
"netfilter6 i stedet!"

#: /etc/rc.d/init.d/isdn:182 /etc/rc.d/init.d/ldap:115
#: /etc/rc.d/init.d/smb:109
msgid "Usage: $0 {start|stop|restart|status|condrestart}"
msgstr "Brug: $0 {start|stop|restart|status|condrestart}"

#: /etc/rc.d/init.d/kudzu:52
msgid "Run '/usr/sbin/kudzu' from the command line to re-detect."
msgstr "Kør '/usr/sbin/kudzu' fra kommandolinien for at gendetektere."

#: /etc/sysconfig/network-scripts/ifup-aliases:341
msgid "error in $FILE: IPADDR_START greater than IPADDR_END"
msgstr "fejl i $FILE: IPADDR_START er større end IPADDR_END"

#: /etc/rc.d/init.d/halt:161
msgid "Unmounting file systems (retry): "
msgstr "Afmonterer filsystemer (nyt forsøg): "

#: /etc/rc.d/init.d/functions:135 /etc/rc.d/init.d/functions:137
#: /etc/rc.d/init.d/named:51 /etc/rc.d/init.d/named:52