1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
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
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
|
# $Id: de.po,v 1.4 1999/03/12 13:30:39 ralf Exp $
# German translation for net-tools 1.51
# Copyright (C) 1999 Ralf B�chle <ralf@gnu.org>
msgid ""
msgstr ""
"Project-Id-Version: net-tools 1.51\n"
"POT-Creation-Date: 1999-03-06 00:09+0100\n"
"PO-Revision-Date: 1998-03-01 00:02+0100\n"
"Last-Translator: Ralf B�chle <ralf@gnu.org>\n"
"Language-Team:\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../arp.c:109 ../arp.c:268
msgid "arp: need host name\n"
msgstr "arp: Hostname mu� angegeben werden\n"
#: ../arp.c:206 ../arp.c:220
#, c-format
msgid "No ARP entry for %s\n"
msgstr "Kein ARP Eintrag f�r %s\n"
#: ../arp.c:281
msgid "arp: need hardware address\n"
msgstr "arp: Hardwareadresse mu� angegeben werden\n"
#: ../arp.c:289
msgid "arp: invalid hardware address\n"
msgstr "arp: ung�ltige Hardwareadresse\n"
#: ../arp.c:386
#, c-format
msgid "arp: cannot open etherfile %s !\n"
msgstr "arp: Kann %s nicht �ffnen!\n"
#: ../arp.c:402
#, c-format
msgid "arp: format error on line %u of etherfile %s !\n"
msgstr "arp: Formatfehler in Zeile %u von Etherfile %s.\n"
#: ../arp.c:407
#, c-format
msgid "arp: cannot set entry on line %u of etherfile %s !\n"
msgstr "arp: Kann Eintrag auf Zeile %u von Etherdatei %s nicht setzen!\n"
#: ../arp.c:428
msgid "Address\t\t\tHWtype\tHWaddress\t Flags Mask\t\t Iface\n"
msgstr "Adresse\\t\\t\\tHWTyp\\tHWAdresse Flags Maske\\t\\t Iface\n"
#: ../arp.c:583
#, c-format
msgid "Entries: %d\tSkipped: %d\tFound: %d\n"
msgstr "Eintr�ge: %d Ignoriert: %d Gefunden: %d\n"
#: ../arp.c:589
#, c-format
msgid "arp: in %d entries no match found.\n"
msgstr "arp: In %d Eintr�gen wurde kein Zutreffender gefunden.\n"
#: ../arp.c:604
msgid ""
"Usage:\n"
" arp [-vn] [<HW>] [-i <if>] [-a] [<hostname>] <-Display ARP "
"cache\n"
msgstr ""
"Benutzung:\n"
" arp [-vn] [<HW>] [-i <if>] [-a] [<Hostname>]\n"
#: ../arp.c:605
msgid ""
" arp [-v] [-i <if>] -d <hostname> [pub][nopub] <-Delete ARP "
"entry\n"
msgstr " arp [-v] [-i <if>] -d <Hostname> [pub][nopub]\n"
#: ../arp.c:606
msgid ""
" arp [-vnD] [<HW>] [-i <if>] -f <filename> <-Add entry from "
"file\n"
msgstr " arp [-vnD] [<HW>] [-i <if>] -f <Dateiname>\n"
#: ../arp.c:607
msgid ""
" arp [-v] [<HW>] [-i <if>] -s <hostname> <hwaddr> [temp][nopub] <-Add "
"entry\n"
msgstr " arp [-v] [<HW>] [-i <if>] -s <Rechnername> <hwaddr> [temp][nopub]\n"
#: ../arp.c:608
msgid ""
" arp [-v] [<HW>] [-i <if>] -s <hostname> <hwaddr> [netmask <nm>] pub "
"<-''-\n"
msgstr ""
" arp [-v] [<HW>] [-i <if>] -s <Hostname> <hwaddr> [netmask <nm>] pub\n"
#: ../arp.c:609
msgid ""
" arp [-v] [<HW>] [-i <if>] -Ds <hostname> <if> [netmask <nm>] pub "
"<-''-\n"
"\n"
msgstr " arp [-v] [<HW>] [-i <if>] -Ds <hostname> <if> [netmask <nm>] pub\n"
#: ../arp.c:611
msgid ""
" -a display (all) hosts in alternative (BSD) "
"style\n"
msgstr " -a Alle Hosts im BSD-Format anzeigen\n"
#: ../arp.c:612
msgid " -s, --set set a new ARP entry\n"
msgstr " -s, --set Neuen ARP-Eintrag setzen\n"
#: ../arp.c:613
msgid " -d, --delete delete a specified entry\n"
msgstr " -d, --delete Einen bestimmten Eintrag l�schen\n"
#: ../arp.c:614 ../netstat.c:1418 ../route.c:85
msgid " -v, --verbose be verbose\n"
msgstr " -v, --verbose Ausf�hrliche Ausgaben\n"
#: ../arp.c:615 ../netstat.c:1419 ../route.c:86
msgid " -n, --numeric dont resolve names\n"
msgstr " -n, --numeric Adressen nicht nach Namen aufl�sen\n"
#: ../arp.c:616
msgid ""
" -i, --device specify network interface (e.g. eth0)\n"
msgstr " -i, --device Netzwerksger�t (z.B. eth0) angeben\n"
#: ../arp.c:617
msgid " -D, --use-device read <hwaddr> from given device\n"
msgstr " -D, --use-device <hwaddr> von gegebenem Ger�t lesen\n"
#: ../arp.c:618
msgid ""
" -f, --file read new entries from file\n"
"\n"
msgstr ""
" -f, --file Neue Eintr�ge aus Datei lesen\n"
"\n"
#: ../arp.c:620 ../rarp.c:181
#, c-format
msgid " <HW>=Use '-H <hw>' to specify hardware address type. Default: %s\n"
msgstr " <HW>='-H <hw>' um Hardwareadresstyp anzugeben. Standard: %s\n"
#: ../arp.c:621 ../rarp.c:182
msgid " List of possible hardware types (which support ARP):\n"
msgstr " Liste m�glicher Hardwaretypen, die ARP unterst�tzen:\n"
#: ../arp.c:654
#, c-format
msgid "%s: hardware type not supported!\n"
msgstr "%s: Hardwaretyp nicht unterst�tzt!\n"
#: ../arp.c:658
#, c-format
msgid "%s: address family not supported!\n"
msgstr "%s: Adressfamilie nicht unterst�tzt!\n"
#: ../arp.c:703
#, c-format
msgid "arp: %s: unknown address family.\n"
msgstr "arp: %s: unbekannte Adressfamilie.\n"
#: ../arp.c:712
#, c-format
msgid "arp: %s: unknown hardware type.\n"
msgstr "arp: %s: unbekannter Hardwaretyp.\n"
#: ../arp.c:731
#, c-format
msgid "arp: %s: kernel only supports 'inet'.\n"
msgstr "arp: %s: Kern unterst�tzt nur ,,inet''.\n"
#: ../arp.c:736
#, c-format
msgid "arp: %s: hardware type without ARP support.\n"
msgstr "arp: %s: Hardware unterst�tzt kein ARP.\n"
#: ../hostname.c:68
#, c-format
msgid "Setting nodename to `%s'\n"
msgstr "Rechnernamen auf ,,%s'' setzen\n"
#: ../hostname.c:73
#, c-format
msgid "%s: you must be root to change the node name\n"
msgstr "%s: Nur Root darf den Rechnernamen �ndern\n"
#: ../hostname.c:76 ../hostname.c:96 ../hostname.c:115
#, c-format
msgid "%s: name too long\n"
msgstr "%s: name zu lang\n"
#: ../hostname.c:88
#, c-format
msgid "Setting hostname to `%s'\n"
msgstr "Setze Hostname auf ,,%s''\n"
#: ../hostname.c:93
#, c-format
msgid "%s: you must be root to change the host name\n"
msgstr "%s: Nur Root darf then Rechnernamen �ndern\n"
#: ../hostname.c:107
#, c-format
msgid "Setting domainname to `%s'\n"
msgstr "Setze domainname auf ,,%s''\n"
#: ../hostname.c:112
#, c-format
msgid "%s: you must be root to change the domain name\n"
msgstr "%s: Nur Root darf den Domainnamen �ndern\n"
#: ../hostname.c:130
#, c-format
msgid "Resolving `%s' ...\n"
msgstr "L�se ,,%s'' auf ...\n"
#: ../hostname.c:136
#, c-format
msgid "Result: h_name=`%s'\n"
msgstr "Ergebnis: h_name=,,%s''\n"
#: ../hostname.c:141
#, c-format
msgid "Result: h_aliases=`%s'\n"
msgstr "Ergebnis: h_aliases=,,%s''\n"
#: ../hostname.c:146
#, c-format
msgid "Result: h_addr_list=`%s'\n"
msgstr "Ergebnis: h_addr_list=,,%s''\n"
#: ../hostname.c:208
#, c-format
msgid "%s: can't open `%s'\n"
msgstr "%s: Kann ,,%s'' nicht �ffnen\n"
#: ../hostname.c:222
msgid "Usage: hostname [-v] {hostname|-F file} set hostname (from file)\n"
msgstr ""
"Benutzung: hostname [-v] {Hostname|-F Datei} Hostname (aus Datei) setzen\n"
#: ../hostname.c:223
msgid ""
" domainname [-v] {nisdomain|-F file} set NIS domainname (from file)\n"
msgstr ""
" domainname [-v] {nisdomain|-F file} NIS Domainname (aus Datei) "
"setzen.\n"
#: ../hostname.c:225
msgid ""
" nodename [-v] {nodename|-F file} set DECnet node name (from "
"file)\n"
msgstr " nodename [-v] {Rechnername|-F Datei}\n"
#: ../hostname.c:227
msgid " hostname [-v] [-d|-f|-s|-a|-i|-y|-n] display formatted name\n"
msgstr " hostname [-v] [-d|-f|-s|-a|-i|-y|-n]\n"
#: ../hostname.c:228
msgid ""
" hostname [-v] display hostname\n"
"\n"
msgstr ""
" hostname [-v] Hostnamen anzeigen\n"
"\n"
#: ../hostname.c:229
msgid ""
" hostname -V|--version|-h|--help print info and exit\n"
"\n"
msgstr ""
" hostname -V|--version|-h|--help Information ausdrucken und "
"beenden.\n"
"\n"
#: ../hostname.c:230
msgid ""
" dnsdomainname=hostname -d, {yp,nis,}domainname=hostname -y\n"
"\n"
msgstr ""
" dnsdomainname=hostname -d, {yp,nis,}domainname=hostname -y\n"
"\n"
#: ../hostname.c:231
msgid " -s, --short short host name\n"
msgstr " -s, --short Kurzer Hostname\n"
#: ../hostname.c:232
msgid " -a, --alias alias names\n"
msgstr " -a, --alias Namensalias\n"
#: ../hostname.c:233
msgid " -i, --ip-address addresses for the hostname\n"
msgstr " -i, --ip-address Adressen f�r den Hostnamen\n"
#: ../hostname.c:234
msgid " -f, --fqdn, --long long host name (FQDN)\n"
msgstr " -f, --fqdn, --long Langer Hostname (FQDN)\n"
#: ../hostname.c:235
msgid " -d, --domain DNS domain name\n"
msgstr " -d, --domain DNS Domainname\n"
#: ../hostname.c:236
msgid " -y, --yp, --nis NIS/YP domainname\n"
msgstr " -y, --yp, --nis NIS/YP Domainname\n"
#: ../hostname.c:238
msgid " -n, --node DECnet node name\n"
msgstr " -n, --node DECnet Knotennamen\n"
#: ../hostname.c:240
msgid ""
" -F, --file read hostname or nis domainname from given File\n"
"\n"
msgstr ""
" -F, --file Hostnamen oder NIS Domainnamen aus Datei lesen\n"
"\n"
#: ../hostname.c:241
msgid ""
" This comand can get or set the hostname or the NIS domainname. You can\n"
msgstr ""
" Dies Kommando setzt oder drucken den Hostnamen oder NIS Domainnamen aus. "
"Es\n"
#: ../hostname.c:242
msgid " also get the DNS domain or the FQDN (fully qualified domain name).\n"
msgstr ""
" ist ebenfalls m�glich die DNS Domain oder den FQDN (langen Hostnamen)\n"
#: ../hostname.c:243
msgid ""
" Unless you are using bind or NIS for host lookups you can change the\n"
msgstr ""
" auszudrucken zu lassen. Au�er wenn DNS oder NIS als Namensdienst "
"verwendet\n"
#: ../hostname.c:244
msgid ""
" FQDN (Fully Qualified Domain Name) and the DNS domain name (which is\n"
msgstr ""
" wird, k�nnen FQDN (Fully Qualified Domain Name) und DNS Domainname "
"(welcher\n"
#: ../hostname.c:245
msgid " part of the FQDN) in the /etc/hosts file.\n"
msgstr " Teil des FQDNs ist) in /etc/hosts ge�ndert werden.\n"
#: ../hostname.c:335
#, c-format
msgid "%s: You can't change the DNS domain name with this command\n"
msgstr "%s: Mit diesem Program kann der DNS Domainname nicht ge�ndert werden\n"
#: ../hostname.c:336
msgid ""
"\n"
"Unless you are using bind or NIS for host lookups you can change the DNS\n"
msgstr ""
"\n"
"Wenn Bind oder NIS nicht zur Hostnamensaufl�sung benutzt werden, kann der "
"DNS\n"
#: ../hostname.c:337
msgid "domain name (which is part of the FQDN) in the /etc/hosts file.\n"
msgstr ""
"Domainname (welcher Teil des FQDN ist) in der Datei /etc/hosts ge�ndert "
"werden.\n"
#: ../hostname.c:354
#, c-format
msgid "gethostname()=`%s'\n"
msgstr "gethostname()=,,%s''\n"
#: ../hostname.c:371
#, c-format
msgid "getdomainname()=`%s'\n"
msgstr "getdomainname()=,,%s''\n"
#: ../hostname.c:386
#, c-format
msgid "getnodename()=`%s'\n"
msgstr "getnodename()=,,%s''\n"
#: ../ifconfig.c:161
#, c-format
msgid "%-9.9s Link encap:%s "
msgstr "%-9.9s Linkverkapselung:%s "
#: ../ifconfig.c:167
#, c-format
msgid "HWaddr %s "
msgstr "HWaddr %s "
#: ../ifconfig.c:170
#, c-format
msgid "Media:%s"
msgstr "Medium:%s"
#: ../ifconfig.c:172
msgid "(auto)"
msgstr "(auto)"
#: ../ifconfig.c:179
#, c-format
msgid " %s addr:%s "
msgstr " %s addr:%s "
#: ../ifconfig.c:182
#, c-format
msgid " P-t-P:%s "
msgstr " P-t-P:%s "
#: ../ifconfig.c:185
#, c-format
msgid " Bcast:%s "
msgstr " Bcast:%s "
#: ../ifconfig.c:187
#, c-format
msgid " Mask:%s\n"
msgstr " Maske:%s\n"
#: ../ifconfig.c:204
#, c-format
msgid " inet6 addr: %s/%d"
msgstr " inet6 Adr: %s/%d"
#: ../ifconfig.c:206
msgid " Scope:"
msgstr " G�ltigkeit:"
#: ../ifconfig.c:209
msgid "Global"
msgstr "Global"
#: ../ifconfig.c:212
msgid "Link"
msgstr "Verbindung"
#: ../ifconfig.c:215
msgid "Site"
msgstr "Standort"
#: ../ifconfig.c:218
msgid "Compat"
msgstr "Kompatibilit�t"
#: ../ifconfig.c:221
msgid "Host"
msgstr "Maschine"
#: ../ifconfig.c:224
msgid "Unknown"
msgstr "Unbekannt"
#: ../ifconfig.c:239
#, c-format
msgid " IPX/Ethernet II addr:%s\n"
msgstr " IPX/Ethernet II Adr:%s\n"
#: ../ifconfig.c:242
#, c-format
msgid " IPX/Ethernet SNAP addr:%s\n"
msgstr " IPX/Ethernet SNAP Adr:%s\n"
#: ../ifconfig.c:245
#, c-format
msgid " IPX/Ethernet 802.2 addr:%s\n"
msgstr " IPX/Ethernet 802.2 Adr:%s\n"
#: ../ifconfig.c:248
#, c-format
msgid " IPX/Ethernet 802.3 addr:%s\n"
msgstr " IPX/Ethernet 802.3 Adr:%s\n"
#: ../ifconfig.c:258
#, c-format
msgid " EtherTalk Phase 2 addr:%s\n"
msgstr " EtherTalk Phase 2 Adr:%s\n"
#: ../ifconfig.c:267
#, c-format
msgid " econet addr:%s\n"
msgstr " econet Adr:%s\n"
#: ../ifconfig.c:273
msgid "[NO FLAGS] "
msgstr "[KEINE FLAGS] "
#: ../ifconfig.c:275
msgid "UP "
msgstr "UP "
#: ../ifconfig.c:277
msgid "BROADCAST "
msgstr "BROADCAST "
#: ../ifconfig.c:279
msgid "DEBUG "
msgstr "DEBUG "
#: ../ifconfig.c:281
msgid "LOOPBACK "
msgstr "LOOPBACK "
#: ../ifconfig.c:283
msgid "POINTOPOINT "
msgstr "PUNKTZUPUNKT "
#: ../ifconfig.c:285
msgid "NOTRAILERS "
msgstr "NOTRAILERS "
#: ../ifconfig.c:287
msgid "RUNNING "
msgstr "RUNNING "
#: ../ifconfig.c:289
msgid "NOARP "
msgstr "NOARP "
#: ../ifconfig.c:291
msgid "PROMISC "
msgstr "PROMISC "
#: ../ifconfig.c:293
msgid "ALLMULTI "
msgstr "ALLMULTI "
#: ../ifconfig.c:295
msgid "SLAVE "
msgstr "SLAVE "
#: ../ifconfig.c:297
msgid "MASTER "
msgstr "MASTER "
#: ../ifconfig.c:299
msgid "MULTICAST "
msgstr "MULTICAST "
#: ../ifconfig.c:302
msgid "DYNAMIC "
msgstr "DYNAMIC "
#: ../ifconfig.c:305
#, c-format
msgid " MTU:%d Metric:%d"
msgstr " MTU:%d Metric:%d"
#: ../ifconfig.c:309
#, c-format
msgid " Outfill:%d Keepalive:%d"
msgstr " Outfill:%d Keepalive:%d"
#: ../ifconfig.c:323
#, c-format
msgid "RX packets:%lu errors:%lu dropped:%lu overruns:%lu frame:%lu\n"
msgstr ""
"Empfangene Pakete:%lu Fehler:%lu Weggeworfen:%lu �berlauf:%lu Rahmen:%lu\n"
#: ../ifconfig.c:328
#, c-format
msgid " compressed:%lu\n"
msgstr " komprimiert:%lu\n"
#: ../ifconfig.c:332
#, c-format
msgid "TX packets:%lu errors:%lu dropped:%lu overruns:%lu carrier:%lu\n"
msgstr ""
"Verschickte Packete:%lu Fehler:%lu Weggeworfen:%lu �berlauf:%lu Rahmen:%lu\n"
#: ../ifconfig.c:336
#, c-format
msgid " collisions:%lu "
msgstr " Kollisionen:%lu "
#: ../ifconfig.c:338
#, c-format
msgid "compressed:%lu "
msgstr "Komprimiert:%lu "
#: ../ifconfig.c:340
#, c-format
msgid "txqueuelen:%d "
msgstr "Sendewarteschlangenl�nge:%d "
#: ../ifconfig.c:348
#, c-format
msgid "Interrupt:%d "
msgstr "Unterbrechung:%d "
#. Only print devices using it for
#. I/O maps
#: ../ifconfig.c:351
#, c-format
msgid "Base address:0x%x "
msgstr "Basisadresse:0x%x "
#: ../ifconfig.c:353
#, c-format
msgid "Memory:%lx-%lx "
msgstr "Speicher:%lx-%lx "
#: ../ifconfig.c:356
#, c-format
msgid "DMA chan:%x "
msgstr "DMA Kanal:%x "
#: ../ifconfig.c:387 ../ifconfig.c:408
#, c-format
msgid "%s: unknown interface: %s\n"
msgstr "%s: unbekannte Schnittstelle: %s\n"
#: ../ifconfig.c:424
msgid ""
"Usage:\n"
" ifconfig [-a] [-i] [-v] <interface> [[<AF>] <address>]\n"
msgstr ""
"Benutzung:\n"
" ifconfig [-a] [-i] [-v] <Interface> [[<AF>] <Adresse>]\n"
#: ../ifconfig.c:428
msgid " [add <address>[/<prefixlen>]]\n"
msgstr " [add <Adresse>[/<Prefixl�nge>]]\n"
#: ../ifconfig.c:430
msgid " [del <address>[/<prefixlen>]]\n"
msgstr " [del <Adresse>[/<Prefixl�nge>]]\n"
#: ../ifconfig.c:435
msgid " [[-]broadcast [<address>]] [[-]pointopoint [<address>]]\n"
msgstr " [[-]broadcast [<Adresse>]] [[-]pointopoint [<Adresse>]]\n"
#: ../ifconfig.c:436
msgid " [netmask <address>] [dstaddr <address>] [tunnel <adress>]\n"
msgstr " [netmask <Addresse>] [dstaddr <Adresse>] [tunnel <Adresse>]\n"
#: ../ifconfig.c:439
msgid " [outfill <NN>] [keepalive <NN>]\n"
msgstr " [outfill <NN>] [keepalive <NN>]\n"
#: ../ifconfig.c:441
msgid " [hw <HW> <address>] [metric <NN>] [mtu <NN>]\n"
msgstr " [hw <HW> <Adresse>] [metric <NN>] [mtu <NN>]\n"
#: ../ifconfig.c:442
msgid " [[-]trailers] [[-]arp] [[-]allmulti]\n"
msgstr " [[-]trailers] [[-]arp] [[-]allmulti]\n"
#: ../ifconfig.c:443
msgid " [multicast] [[-]promisc]\n"
msgstr " [multicast] [[-]promisc]\n"
#: ../ifconfig.c:444
msgid " [mem_start <NN>] [io_addr <NN>] [irq <NN>] [media <type>]\n"
msgstr " [mem_start <NN>] [io_addr <NN>] [irq <NN>] [media <Typ>]\n"
#: ../ifconfig.c:446
msgid " [txqueuelen len]\n"
msgstr " [txqueuelen L�nge]\n"
#: ../ifconfig.c:449
msgid " [[-]dynamic]\n"
msgstr " [[-]dynamic]\n"
#: ../ifconfig.c:451
msgid ""
" [up|down] ...\n"
"\n"
msgstr ""
" [up|down] ...\n"
"\n"
#: ../ifconfig.c:453
msgid " <HW>=Hardware Type.\n"
msgstr " <HW>=Hardwaretyp.\n"
#: ../ifconfig.c:454
msgid " List of possible hardware types:\n"
msgstr " Liste m�glicher Hardwaretypen:\n"
#. 1 = ARPable
#: ../ifconfig.c:456
#, c-format
msgid " <AF>=Address family. Default: %s\n"
msgstr " <AF>=Adressfamilie. Standardwert: %s\n"
#: ../ifconfig.c:457
msgid " List of possible address families:\n"
msgstr " List der m�glichen Adressfamilien:\n"
#: ../ifconfig.c:596
msgid "Unknown media type.\n"
msgstr "Typ des Mediums unbekannt.\n"
#: ../ifconfig.c:884
#, c-format
msgid "%s: invalid %s address.\n"
msgstr "%s: ung�ltige %s Adresse.\n"
#: ../ifconfig.c:923 ../ifconfig.c:966 ../ifconfig.c:1014
msgid "No support for INET6 on this system.\n"
msgstr "INET6 ist auf diesem System nicht verf�gbar.\n"
#: ../ifconfig.c:986
msgid "Address deletion not supported on this system.\n"
msgstr "Das L�schen von Adressen ist auf diesem System nicht unterst�tzt.\n"
#: ../ifconfig.c:1069
msgid "No support for INET on this system.\n"
msgstr "INET ist auf diesem System nicht verf�gbar.\n"
#: ../ifconfig.c:1079
msgid "No support for ECONET on this system.\n"
msgstr "ECONET wird auf diesem System nicht unterst�tzt.\n"
#: ../ifconfig.c:1087
#, c-format
msgid "Don't know how to set addresses for family %d.\n"
msgstr "Weis nicht wie man Adressen der Familie %d setzt.\n"
#: ../netstat.c:380
#, c-format
msgid ""
"(No info could be read for \"-p\": geteuid()=%d but you should be root.)\n"
msgstr ""
"(F�r \"-p\": geteuid()=%d konnte keine Information gelesen werden; sie "
"sollten Root sein.)\n"
#: ../netstat.c:384
msgid ""
"(Not all processes could be identified, non-owned process info\n"
" will not be shown, you would have to be root to see it all.)\n"
msgstr ""
"(Es konnten nicht alle Prozesse identifiziert werden; Information �ber\n"
"nicht-eigene Processe wird nicht angezeigt; Root kann sie anzeigen.)\n"
#: ../netstat.c:391 ../netstat.c:1072 ../netstat.c:1149
msgid "LISTENING"
msgstr "H�RT"
#: ../netstat.c:392
msgid "CONN SENT"
msgstr "VERB GESCHICKT"
#: ../netstat.c:393 ../netstat.c:1151
msgid "DISC SENT"
msgstr "VERBABBAU GESCHICKT"
#: ../netstat.c:394 ../netstat.c:461 ../netstat.c:796 ../netstat.c:1152
msgid "ESTABLISHED"
msgstr "VERBUNDEN"
#: ../netstat.c:416
msgid "Active NET/ROM sockets\n"
msgstr "Aktive NET/ROM Sockets\n"
#: ../netstat.c:417
msgid ""
"User Dest Source Device State Vr/Vs Send-Q "
"Recv-Q\n"
msgstr ""
"Benutzer Ziel Quelle Ger�t Zustand Vr/Vs Send-Q "
"Recv-Q\n"
#: ../netstat.c:462
msgid "SYN_SENT"
msgstr "SYN_SENT"
#: ../netstat.c:463
msgid "SYN_RECV"
msgstr "SYN_RECV"
#: ../netstat.c:464
msgid "FIN_WAIT1"
msgstr "FIN_WAIT1"
#: ../netstat.c:465
msgid "FIN_WAIT2"
msgstr "FIN_WAIT2"
#: ../netstat.c:466
msgid "TIME_WAIT"
msgstr "TIME_WAIT"
#: ../netstat.c:467
msgid "CLOSE"
msgstr "CLOSE"
#: ../netstat.c:468
msgid "CLOSE_WAIT"
msgstr "CLOSE_WAIT"
#: ../netstat.c:469
msgid "LAST_ACK"
msgstr "LAST_ACK"
#: ../netstat.c:470
msgid "LISTEN"
msgstr "LISTEN"
#: ../netstat.c:471
msgid "CLOSING"
msgstr "CLOSING"
#: ../netstat.c:542
#, c-format
msgid "warning, got bogus igmp6 line %d.\n"
msgstr "Warnung, fehlerhafte igmp6 line %d.\n"
#: ../netstat.c:547 ../netstat.c:585 ../netstat.c:668 ../netstat.c:790
#: ../netstat.c:920 ../netstat.c:925
#, c-format
msgid "netstat: unsupported address family %d !\n"
msgstr "netstat: Nicht unterst�tzte Adressfamilie %d!\n"
#: ../netstat.c:560 ../netstat.c:565 ../netstat.c:573 ../netstat.c:580
#, c-format
msgid "warning, got bogus igmp line %d.\n"
msgstr "Warnung, fehlerhafte igmp-Zeile %d.\n"
#: ../netstat.c:664
msgid "warning, got bogus tcp line.\n"
msgstr "Warnung, fehlerhafte TCP Zeile.\n"
#: ../netstat.c:700 ../netstat.c:840 ../netstat.c:958
#, c-format
msgid "off (0.00/%ld/%d)"
msgstr "aus (0.00/%ld/%d)"
#: ../netstat.c:705 ../netstat.c:845 ../netstat.c:963
#, c-format
msgid "on%d (%2.2f/%ld/%d)"
msgstr "ein%d (%2.2f/%ld/%d)"
#: ../netstat.c:710 ../netstat.c:849 ../netstat.c:968
#, c-format
msgid "unkn-%d (%2.2f/%ld/%d)"
msgstr "unkn-%d (%2.2f/%ld/%d)"
#: ../netstat.c:786
msgid "warning, got bogus udp line.\n"
msgstr "Warnung, fehlerhafe UDP-Zeile.\n"
#: ../netstat.c:804 ../netstat.c:1058 ../netstat.c:1091
msgid "UNKNOWN"
msgstr "UNBEKANNT"
#: ../netstat.c:934
msgid "warning, got bogus raw line.\n"
msgstr "Warnung, fehlerhafte raw-Zeile.\n"
#: ../netstat.c:1011
msgid "warning, got bogus unix line.\n"
msgstr "Warnung, fehlerhafte UNIX-Zeile.\n"
#: ../netstat.c:1038
msgid "STREAM"
msgstr "STREAM"
#: ../netstat.c:1042
msgid "DGRAM"
msgstr "DGRAM"
#: ../netstat.c:1046
msgid "RAW"
msgstr "RAW"
#: ../netstat.c:1050
msgid "RDM"
msgstr "RDM"
#: ../netstat.c:1054
msgid "SEQPACKET"
msgstr "SEQPACKET"
#: ../netstat.c:1063
msgid "FREE"
msgstr "FREI"
#: ../netstat.c:1079
msgid "CONNECTING"
msgstr "VERBINDUNGSAUFBAU"
#: ../netstat.c:1083
msgid "CONNECTED"
msgstr "VERBUNDEN"
#: ../netstat.c:1087
msgid "DISCONNECTING"
msgstr "VERBINDUNGSABBAU"
#: ../netstat.c:1118
msgid "Active UNIX domain sockets "
msgstr "Aktive Sockets in der UNIX Dom�ne "
#: ../netstat.c:1120 ../netstat.c:1648
msgid "(servers and established)"
msgstr "(Server und stehende Verbindungen)"
#: ../netstat.c:1123 ../netstat.c:1651
msgid "(only servers)"
msgstr "(Nur Server)"
#: ../netstat.c:1125 ../netstat.c:1653
msgid "(w/o servers)"
msgstr "(ohne Server)"
#: ../netstat.c:1128
msgid ""
"\n"
"Proto RefCnt Flags Type State I-Node"
msgstr ""
"\n"
"Proto RefZ�h Flaggen Typ Zustand I-Node"
#: ../netstat.c:1130
msgid " Path\n"
msgstr " Pfad\n"
#: ../netstat.c:1150
msgid "SABM SENT"
msgstr "SABM GESCHICKT"
#: ../netstat.c:1153
msgid "RECOVERY"
msgstr "WIEDERHERSTELLUNG"
#: ../netstat.c:1167
msgid "Active AX.25 sockets\n"
msgstr "Aktive AX.25 Sockets\n"
#: ../netstat.c:1168
msgid "Dest Source Device State Vr/Vs Send-Q Recv-Q\n"
msgstr "Ziel Quelle Ger�t Zustand Vr/Vs Send-Q Empf-Q\n"
#: ../netstat.c:1262
msgid ""
"Active IPX sockets\n"
"Proto Recv-Q Send-Q Local Address Foreign Address "
"State"
msgstr ""
"Aktive IPX Sockets\n"
"Proto Recv-Q Send-Q Lokale Adresse Gegenaddress "
"Zustand"
#: ../netstat.c:1264
msgid " User"
msgstr " Benutzer"
#: ../netstat.c:1298
msgid "ESTAB"
msgstr "VERBUNDEN"
#: ../netstat.c:1306
msgid "UNK."
msgstr "UNB."
#: ../netstat.c:1353
msgid "[NO FLAGS]"
msgstr "[KEINE FLAGS]"
#: ../netstat.c:1383
msgid "Kernel Interface table\n"
msgstr "Kernel Schnittstellentabelle\n"
#: ../netstat.c:1384
msgid ""
"Iface MTU Met RX-OK RX-ERR RX-DRP RX-OVR TX-OK TX-ERR TX-DRP TX-OVR "
"Flg\n"
msgstr "SStelle MTU Met RX-OK RX-Feh RX-DRP RX-�lf TX-OK TX-Feh TX-DRP TX-�b Flg\n"
#: ../netstat.c:1387
msgid "missing interface information"
msgstr "Fehlende Interfaceinformation"
#: ../netstat.c:1407
msgid ""
"usage: netstat [-veenNcCF] [<Af>] -r netstat "
"{-V|--version|-h|--help}\n"
msgstr ""
"Benutzung: netstat [-veenNcCF] [<Af>] -r\n"
" netstat {-V|--version|-h|--help}\n"
#: ../netstat.c:1408
msgid " netstat [-vnNcaeol] [<Socket> ...]\n"
msgstr " netstat [-vnNcaeol] [<Socket> ...]\n"
#: ../netstat.c:1409
msgid ""
" netstat { [-veenNac] -i | [-cnNe] -M | -s }\n"
"\n"
msgstr ""
" netstat { [-veenNac] -i | [-cnNe] -M | -s }\n"
"\n"
#: ../netstat.c:1411
msgid " -r, --route display routing table\n"
msgstr " -r, --route Routentabelle anzeigen\n"
#: ../netstat.c:1412
msgid " -i, --interfaces display interface table\n"
msgstr " -i, --interfaces Schnittstellentabelle auflisten\n"
#: ../netstat.c:1413
msgid " -g, --groups display multicast group memberships\n"
msgstr ""
" -g, --groups Mitgliedschaft in Multicastgruppen "
"anzeigen\n"
#: ../netstat.c:1414
msgid ""
" -s, --statistics display networking statistics (like SNMP)\n"
msgstr ""
" -s, --statistics Netzwerksstatistiken anzeigen (wie SNMP)\n"
#: ../netstat.c:1416
msgid ""
" -M, --masquerade display masqueraded connections\n"
"\n"
msgstr ""
" -M, --masquerade Maskierte Verbindungen auflisten\n"
"\n"
#: ../netstat.c:1420 ../route.c:87
msgid " -N, --symbolic resolve hardware names\n"
msgstr " -N, --symbolic Hardwarenamen aufl�sen\n"
#: ../netstat.c:1421 ../route.c:88
msgid " -e, --extend display other/more informations\n"
msgstr ""
" -e, --extend Weitere / zus�tzliche Informationen "
"anzeigen\n"
#: ../netstat.c:1422
msgid " -p, --programs display PID/Program name for sockets\n"
msgstr ""
" -p, --programs PID/Programmnamen f�r Sockets anzeigen\n"
#: ../netstat.c:1423
msgid ""
" -c, --continuous continuous listing\n"
"\n"
msgstr ""
" -c, --continuous Anzeige laufend aktualisieren\n"
"\n"
#: ../netstat.c:1424
msgid " -l, --listening display listening server sockets\n"
msgstr ""
" -l, --listening Empfangsbereite Serversockets auflisten\n"
#: ../netstat.c:1425
msgid ""
" -a, --all, --listening display all sockets (default: connected)\n"
msgstr ""
" -a, --all, --listening Alle Sockets anzeigen (normal: nur "
"verbundene)\n"
#: ../netstat.c:1426
msgid " -o, --timers display timers\n"
msgstr " -o, --timers Timer auflisten\n"
#: ../netstat.c:1427 ../route.c:89
msgid ""
" -F, --fib display Forwarding Infomation Base "
"(default)\n"
msgstr ""
" -F, --fib Forwarding Infomation Base anzeigen "
"(Standard)\n"
#: ../netstat.c:1428 ../route.c:90
msgid ""
" -C, --cache display routing cache instead of FIB\n"
"\n"
msgstr ""
" -C, --cache Routencache statt FIB anzeigen\n"
"\n"
#: ../netstat.c:1430
msgid ""
" <Socket>={-t|--tcp} {-u|--udp} {-w|--raw} {-x|--unix} --ax25 --ipx "
"--netrom\n"
msgstr ""
" <Socket>={-t|--tcp} {-u|--udp} {-w|--raw} {-x|--unix} --ax25 --ipx "
"--netrom\n"
#: ../netstat.c:1431 ../route.c:92
#, c-format
msgid " <AF>=Use '-A <af>' or '--<af>' Default: %s\n"
msgstr " <AF>=,,-A <af>'' or ,,--<af>'' benutzen. Standard: %s\n"
#: ../netstat.c:1432 ../route.c:93
msgid " List of possible address families (which support routing):\n"
msgstr " Liste m�glicher Adressfamilien, die Routen unterst�tzen:\n"
#: ../netstat.c:1645
msgid "Active Internet connections "
msgstr "Aktive Internetverbindungen "
#: ../netstat.c:1655
msgid ""
"\n"
"Proto Recv-Q Send-Q Local Address Foreign Address State "
" "
msgstr ""
"\n"
"Proto Recv-Q Send-Q Local Address Foreign Address State "
" "
#: ../netstat.c:1657
msgid " User Inode "
msgstr " Benutzer Inode "
#: ../netstat.c:1660
msgid " Timer"
msgstr " Timer"
#: ../rarp.c:43
msgid "This kernel does not support RARP.\n"
msgstr "Dieser Kernel unterst�tzt kein RARP.\n"
#: ../rarp.c:82
#, c-format
msgid "no RARP entry for %s.\n"
msgstr "Kein RARP Eintrag f�r %s.\n"
#: ../rarp.c:95
#, c-format
msgid "%s: bad hardware address\n"
msgstr "%s: fehlerhafte Hardwareadresse\n"
#: ../rarp.c:127
#, c-format
msgid "rarp: cannot open file %s:%s.\n"
msgstr "rarp: kann Datei %s:%s nicht �ffnen.\n"
#: ../rarp.c:139
#, c-format
msgid "rarp: format error at %s:%u\n"
msgstr "rarp: Formatfehler bei %s:%u\n"
#: ../rarp.c:143 ../rarp.c:287
#, c-format
msgid "rarp: %s: unknown host\n"
msgstr "rarp: %s: Unbekannter Host\n"
#: ../rarp.c:146
#, c-format
msgid "rarp: cannot set entry from %s:%u\n"
msgstr "rarp: Kann Eintrag aus %s:%u nicht setzen.\n"
#: ../rarp.c:175
msgid "Usage: rarp -a list entries in cache.\n"
msgstr ""
"Benutzung: rarp -a Eintr�ge im Cache listen.\n"
#: ../rarp.c:176
msgid " rarp -d <hostname> delete entry from cache.\n"
msgstr ""
" rarp -d <hostname> Eintrag aus dem Cache l�schen.\n"
#: ../rarp.c:177
msgid " rarp [<HW>] -s <hostname> <hwaddr> add entry to cache.\n"
msgstr ""
" rarp [<HW>] -s <hostname> <hwaddr> Eintrag zum Cache zuf�gen.\n"
#: ../rarp.c:178
msgid ""
" rarp -f add entries from /etc/ethers.\n"
msgstr ""
" rarp -f Eintr�ge aus /etc/ethers "
"zuf�gen.\n"
#: ../rarp.c:179
msgid ""
" rarp -V display program version.\n"
"\n"
msgstr ""
" rarp -V Programmversion anzeigen.\n"
"\n"
#: ../rarp.c:236
#, c-format
msgid "%s: illegal option mix.\n"
msgstr "%s: Unerlaubte Mischung von Optionen.\n"
#: ../rarp.c:267
#, c-format
msgid "rarp: %s: unknown hardware type.\n"
msgstr "rarp: %s: unknown hardware type.\n"
#: ../route.c:79
msgid ""
"Usage: route [-nNvee] [-FC] [<AF>] List kernel routing tables\n"
msgstr ""
"Benutzung: route [-nNvee] [-FC] [<AF>] Kernelroutentabelle "
"anzeigen\n"
#: ../route.c:80
msgid ""
" route [-v] [-FC] {add|del|flush} ... Modify routing table for AF.\n"
"\n"
msgstr ""
" route [-v] [-FC] {add|del|flush} ... Routentabelle f�r AF �ndern.\n"
"\n"
#: ../route.c:82
msgid ""
" route {-h|--help} [<AF>] Detailed usage syntax for "
"specified AF.\n"
msgstr ""
" route {-h|--help} [<AF>] Genaue Syntax f�r AF anzeigen.\n"
#: ../route.c:83
msgid ""
" route {-V|--version} Display version/author and "
"exit.\n"
"\n"
msgstr ""
" route {-V|--version} Version/Autor anzeigen und "
"Ende.\n"
"\n"
#: ../plipconfig.c:66
msgid "Usage: plipconfig [-a] [-i] [-v] interface\n"
msgstr "Benutzung: plipconfig [-a] [-i] [-v] Interface\n"
#: ../plipconfig.c:67
msgid " [nibble NN] [trigger NN]\n"
msgstr " [nibble NN] [trigger NN]\n"
#: ../plipconfig.c:68
msgid " plipconfig -V\n"
msgstr " plipconfig -V\n"
#: ../plipconfig.c:74
#, c-format
msgid "%s\tnibble %lu trigger %lu\n"
msgstr "%s\tnibble %lu trigger %lu\n"
#: ../statistics.c:45
msgid "ICMP input histogram:"
msgstr "ICMP Eingabehistogramm:"
#: ../statistics.c:46
msgid "ICMP output histogram:"
msgstr "ICMP Ausgabehistogramm:"
#: ../statistics.c:63
#, c-format
msgid "Forwarding is %s"
msgstr "Weiterleitung ist %s"
#: ../statistics.c:64
#, c-format
msgid "Default TTL is %d"
msgstr "Standard-TTL ist %d"
#: ../statistics.c:65
#, c-format
msgid "%d total packets received"
msgstr "%d Pakete insgesamt empfangen"
#: ../statistics.c:66
#, c-format
msgid "%d with invalid headers"
msgstr "%d with ung�ltigen Headern"
#: ../statistics.c:67
#, c-format
msgid "%d with invalid addresses"
msgstr "%d mit ung�ltigen Adressen"
#: ../statistics.c:68
#, c-format
msgid "%d forwarded"
msgstr "%d weitergeleitet"
#: ../statistics.c:69
#, c-format
msgid "%d with unknown protocol"
msgstr "%d mit unbekanntem Protokoll"
#: ../statistics.c:70
#, c-format
msgid "%d incoming packets discarded"
msgstr "%d eingehende Pakete weggeworfen"
#: ../statistics.c:71
#, c-format
msgid "%d incoming packets delivered"
msgstr "%d eingehende Pakete zugestellt"
#: ../statistics.c:72
#, c-format
msgid "%d requests sent out"
msgstr "%d Anfragen ausgesandt"
#. ?
#: ../statistics.c:73
#, c-format
msgid "%d outgoing packets dropped"
msgstr "%d ausgehende Pakete weggeworfen"
#: ../statistics.c:74
#, c-format
msgid "%d dropped because of missing route"
msgstr "%d weggeworfen wegen fehlender Route"
#: ../statistics.c:75
#, c-format
msgid "%d fragments dropped after timeout"
msgstr "%d Fragmente nach Timeout weggeworfen"
#: ../statistics.c:76
#, c-format
msgid "%d reassemblies required"
msgstr "%d Wiederzusammenstellungen n�tig"
#. ?
#: ../statistics.c:77
#, c-format
msgid "%d packets reassembled ok"
msgstr "%d Fragmente korrekt empfangen"
#: ../statistics.c:78
#, c-format
msgid "%d packet reassembles failed"
msgstr "%d fehlgeschlagene Paketdefragmentierungen"
#: ../statistics.c:79
#, c-format
msgid "%d fragments received ok"
msgstr "%d Fragmente korrekt empfangen"
#: ../statistics.c:80
#, c-format
msgid "%d fragments failed"
msgstr "%d Fragmente Fehlgeschlagen"
#: ../statistics.c:81
#, c-format
msgid "%d fragments created"
msgstr "%d Fragmente erzeugt"
#: ../statistics.c:86
#, c-format
msgid "%d ICMP messages received"
msgstr "%d ICMP Nachrichten empfangen"
#: ../statistics.c:87
#, c-format
msgid "%d input ICMP message failed."
msgstr "%d eingegangen ICMP Nachrichten fehlgeschlagen"
#: ../statistics.c:88 ../statistics.c:101
#, c-format
msgid "destination unreachable: %d"
msgstr "Ziel unerreichbar: %d"
#: ../statistics.c:89
#, c-format
msgid "timeout in transit: %d"
msgstr "Timeout beim Transit: %d"
#: ../statistics.c:90 ../statistics.c:103
#, c-format
msgid "wrong parameters: %d"
msgstr "Fehlerhafte Parameter: %d"
#. ?
#: ../statistics.c:91
#, c-format
msgid "source quenchs: %d"
msgstr "Source Quenchs: %d"
#: ../statistics.c:92
#, c-format
msgid "redirects: %d"
msgstr "Umleitungen: %d"
#: ../statistics.c:93
#, c-format
msgid "echo requests: %d"
msgstr "Echo Requests: %d"
#: ../statistics.c:94 ../statistics.c:107
#, c-format
msgid "echo replies: %d"
msgstr "Echo Antworten: %d"
#: ../statistics.c:95
#, c-format
msgid "timestamp request: %d"
msgstr "Zeitstempelanfragen: %d"
#: ../statistics.c:96
#, c-format
msgid "timestamp reply: %d"
msgstr "Zeitstempelantworten: %d"
#: ../statistics.c:97
#, c-format
msgid "address mask request: %d"
msgstr "Adressmaskenanfragen: %d"
#. ?
#: ../statistics.c:98
msgid "address mask replies"
msgstr "Adressmaskenantworten"
#. ?
#: ../statistics.c:99
#, c-format
msgid "%d ICMP messages sent"
msgstr "%d geschicte ICMP-Nachrichten"
#: ../statistics.c:100
#, c-format
msgid "%d ICMP messages failed"
msgstr "%d ICMP Nachrichten fehlgeschlagen"
#: ../statistics.c:102
#, c-format
msgid "time exceeded: %d"
msgstr "Zeit�berschreitung: %d"
#. ?
#: ../statistics.c:104
#, c-format
msgid "source quench: %d"
msgstr "Source Quench: %d"
#: ../statistics.c:105
#, c-format
msgid "redirect: %d"
msgstr "Umleitungen: %d"
#: ../statistics.c:106
#, c-format
msgid "echo request: %d"
msgstr "Echo Anfragen: %d"
#: ../statistics.c:108
#, c-format
msgid "timestamp requests: %d"
msgstr "Zeitstempel Anfragen: %d"
#: ../statistics.c:109
#, c-format
msgid "timestamp replies: %d"
msgstr "Zeitstempel Antworten: %d"
#: ../statistics.c:110
#, c-format
msgid "address mask requests: %d"
msgstr "Adressmaskenanfragen: %d"
#: ../statistics.c:111
#, c-format
msgid "address mask replies: %d"
msgstr "Adressmaskenantworten: %d"
#: ../statistics.c:116
#, c-format
msgid "RTO algorithm is %s"
msgstr "RTO Algorithmus is %s"
#: ../statistics.c:120
#, c-format
msgid "%d active connections openings"
msgstr "%d Verbindungen aktiv ge�ffnet"
#: ../statistics.c:121
#, c-format
msgid "%d passive connection openings"
msgstr "%d Verbindungen passiv ge�ffnet"
#: ../statistics.c:122
#, c-format
msgid "%d failed connection attempts"
msgstr "%d fehlerhate Verbindungsversuche"
#: ../statistics.c:123
#, c-format
msgid "%d connection resets received"
msgstr "%d Verbindungsr�cksetzungen empfangen"
#: ../statistics.c:124
#, c-format
msgid "%d connections established"
msgstr "%d Verbindungen aufgebaut"
#: ../statistics.c:125
#, c-format
msgid "%d segments received"
msgstr "%d Segmente empfangen"
#: ../statistics.c:126
#, c-format
msgid "%d segments send out"
msgstr "%d Segmente abgeschickt"
#: ../statistics.c:127
#, c-format
msgid "%d segments retransmited"
msgstr "%d Segmente wiedergeschickt"
#: ../statistics.c:128
#, c-format
msgid "%d bad segments received."
msgstr "%d fehlerhafte Segmente empfangen."
#: ../statistics.c:129
#, c-format
msgid "%d resets sent"
msgstr "%d R�cksetzungen geschickt"
#: ../statistics.c:134
#, c-format
msgid "%d packets received"
msgstr "%d Pakete empfangen"
#: ../statistics.c:135
#, c-format
msgid "%d packets to unknown port received."
msgstr "%d Pakete f�r unbekannte Ports empfangen."
#: ../statistics.c:136
#, c-format
msgid "%d packet receive errors"
msgstr "%d Paketempfangsfehler"
#: ../statistics.c:137
#, c-format
msgid "%d packets sent"
msgstr "%d Pakete geschickt"
#: ../statistics.c:142
#, c-format
msgid "%d SYN cookies sent"
msgstr "%d SYN-Cookies verschickt"
#: ../statistics.c:143
#, c-format
msgid "%d SYN cookies received"
msgstr "%d SYN-Cookies empfangen"
#: ../statistics.c:144
#, c-format
msgid "%d invalid SYN cookies received"
msgstr "%d ung�ltige SYN-Cookies empfangen"
#: ../statistics.c:146
#, c-format
msgid "%d resets received for embryonic SYN_RECV sockets"
msgstr "%d R�cksetzungen fuer embrionische SYN_RECV Sockets"
#: ../statistics.c:148
#, c-format
msgid "%d packets pruned from receive queue because of socket buffer overrun"
msgstr ""
"%d Pakete wegen Socketpuffer�berlauf aus der Empfangswarteschlange "
"weggeworfen"
#. obsolete: 2.2.0 doesn't do that anymore
#: ../statistics.c:151
#, c-format
msgid "%d packets pruned from out-of-order queue"
msgstr "%d Pakete aus der ungeordneten Warteschlange weggeworfen"
#: ../statistics.c:152
#, c-format
msgid ""
"%d packets dropped from out-of-order queue because of socket buffer overrun"
msgstr ""
"%d Pakete aus der ungeordneten Warteschlange wegen Puffer�berlauf weggeworfen"
#: ../statistics.c:154
#, c-format
msgid "%d ICMP packets dropped because they were out-of-window"
msgstr "%d ICMP Pakete weggeworfen die auserhalb des Fensters waren"
#: ../statistics.c:156
#, c-format
msgid "%d ICMP packets dropped because socket was locked"
msgstr "%d ICMP Pakete verworfen weil Socket gesperrt war"
#: ../statistics.c:222
msgid "enabled"
msgstr "aktiviert"
#: ../statistics.c:222
msgid "disabled"
msgstr "deaktiviert"
#: ../statistics.c:272
#, c-format
msgid "unknown title %s\n"
msgstr "Unbekannter Titel %s\n"
#: ../statistics.c:298
msgid "error parsing /proc/net/snmp"
msgstr "Fehler beim Parsen von /proc/net/snmp"
#: ../statistics.c:311
msgid "cannot open /proc/net/snmp"
msgstr "Kann /proc/net/snmp nicht �ffnen"
#: ../lib/activate.c:69
#, c-format
msgid "Hardware type `%s' not supported.\n"
msgstr "Hardwaretyp ,,%s'' nicht unterst�tzt.\n"
#: ../lib/activate.c:73
#, c-format
msgid "Cannot change line discipline to `%s'.\n"
msgstr "Kann line discipline nicht auf ``%s'' setzen.\n"
#: ../lib/af.c:133 ../lib/hw.c:131
msgid "UNSPEC"
msgstr "UNSPEC"
#: ../lib/af.c:135
msgid "UNIX Domain"
msgstr "UNIX Domain"
#: ../lib/af.c:138
msgid "DARPA Internet"
msgstr "DARPA Internet"
#: ../lib/af.c:141
msgid "IPv6"
msgstr "IPv6"
#: ../lib/af.c:144 ../lib/hw.c:152
msgid "AMPR AX.25"
msgstr "AMPR AX.25"
#: ../lib/af.c:147 ../lib/hw.c:158
msgid "AMPR NET/ROM"
msgstr "AMPR NET/ROM"
#: ../lib/af.c:150
msgid "IPX"
msgstr "IPX"
#: ../lib/af.c:153
msgid "Appletalk DDP"
msgstr "Appletalk DDP"
#: ../lib/af.c:156
msgid "Econet"
msgstr "Econet"
#: ../lib/af.c:214
msgid "Please don't supply more than one address family.\n"
msgstr "Bitte nur eine Adressfamilie angeben.\n"
#: ../lib/af.c:275
msgid "Too much address family arguments.\n"
msgstr "Zu viele Adressfamilien angegeben.\n"
#: ../lib/af.c:286
#, c-format
msgid "Unknown address family `%s'.\n"
msgstr "Unbekannte Adressfamilie `%s'.\n"
#: ../lib/arcnet.c:53 ../lib/ax25.c:75 ../lib/ax25.c:157 ../lib/ddp.c:50
#: ../lib/econet.c:55 ../lib/ether.c:56 ../lib/fddi.c:67 ../lib/hippi.c:68
#: ../lib/inet.c:200 ../lib/inet.c:213 ../lib/inet6.c:121 ../lib/ipx.c:81
#: ../lib/loopback.c:56 ../lib/netrom.c:78 ../lib/rose.c:71 ../lib/rose.c:126
#: ../lib/unix.c:56 ../lib/unix.c:76
msgid "[NONE SET]"
msgstr "[NICHT GESETZT]"
#: ../lib/arcnet.c:81 ../lib/arcnet.c:96
#, c-format
msgid "in_arcnet(%s): invalid arcnet address!\n"
msgstr "in_arcnet(%s): Ung�ltige ARCnet-Adresse!\n"
#: ../lib/arcnet.c:108
#, c-format
msgid "in_arcnet(%s): trailing : ignored!\n"
msgstr "in_arcnet(%s): angeh�ngt : ignoriert!\n"
#: ../lib/arcnet.c:120
#, c-format
msgid "in_arcnet(%s): trailing junk!\n"
msgstr "in_arcnet(%s): Nachfolgender M�ll!\n"
#: ../lib/ash.c:88
msgid "Malformed Ash address"
msgstr "Fehlerhafte Ash Adresse"
#: ../lib/ax25.c:97 ../lib/netrom.c:100
msgid "Invalid callsign"
msgstr "Ung�ltiges Rufzeichen"
#: ../lib/ax25.c:110 ../lib/netrom.c:113
msgid "Callsign too long"
msgstr "Rufzeichen zu lang"
#: ../lib/ax25_gr.c:47
msgid "AX.25 not configured in this system.\n"
msgstr "AX.25 ist auf diesem System nicht konfiguriert.\n"
#: ../lib/ax25_gr.c:50
msgid "Kernel AX.25 routing table\n"
msgstr "Kernel AX.25 Routentabelle\n"
#. xxx
#: ../lib/ax25_gr.c:51 ../lib/rose_gr.c:55
msgid "Destination Iface Use\n"
msgstr "Ziel SStelle Benutzer\n"
#: ../lib/ddp_gr.c:21
msgid "Routing table for `ddp' not yet supported.\n"
msgstr "DDP-Routentabelle noch nicht unterst�tzt.\n"
#: ../lib/ether.c:85 ../lib/ether.c:102
#, c-format
msgid "in_ether(%s): invalid ether address!\n"
msgstr "in_ether(%s): ung�ltige Ethernetadresse!\n"
#: ../lib/ether.c:116
#, c-format
msgid "in_ether(%s): trailing : ignored!\n"
msgstr "in_ether(%s): angeh�ngt : ignoriert!\n"
#: ../lib/ether.c:128
#, c-format
msgid "in_ether(%s): trailing junk!\n"
msgstr "in_ether(%s): Nachfolgender M�ll!\n"
#: ../lib/fddi.c:95 ../lib/fddi.c:110
#, c-format
msgid "in_fddi(%s): invalid fddi address!\n"
msgstr "in_fddi(%s): Ung�ltige FDDI-Adresse!\n"
#: ../lib/fddi.c:122
#, c-format
msgid "in_fddi(%s): trailing : ignored!\n"
msgstr "in_fddi(%s): nachfolgend : ignoriert!\n"
#: ../lib/fddi.c:134
#, c-format
msgid "in_fddi(%s): trailing junk!\n"
msgstr "in_fddi(%s): Nachfolgender M�ll!\n"
#: ../lib/getroute.c:97 ../lib/setroute.c:76
#, c-format
msgid "Address family `%s' not supported.\n"
msgstr "Adressfamily `%s' nicht unterst�tzt.\n"
#: ../lib/getroute.c:103 ../lib/setroute.c:80
#, c-format
msgid "No routing for address family `%s'.\n"
msgstr "Kein Routen f�r Adressfamilie `%s'.\n"
#: ../lib/hippi.c:96 ../lib/hippi.c:111
#, c-format
msgid "in_hippi(%s): invalid hippi address!\n"
msgstr "in_hippi(%s): Ung�ltige HIPPI-Adresse!\n"
#: ../lib/hippi.c:123
#, c-format
msgid "in_hippi(%s): trailing : ignored!\n"
msgstr "in_hippi(%s): nachfolgend : ignoriert!\n"
#: ../lib/hippi.c:134
#, c-format
msgid "in_hippi(%s): trailing junk!\n"
msgstr "in_hippi(%s): Nachfolgender M�ll!\n"
#: ../lib/hw.c:130
msgid "Local Loopback"
msgstr "Locale Schleife"
#: ../lib/hw.c:133
msgid "Serial Line IP"
msgstr "Serielle IP"
#: ../lib/hw.c:134
msgid "VJ Serial Line IP"
msgstr "Serielle VJ-IP"
#: ../lib/hw.c:135
msgid "6-bit Serial Line IP"
msgstr "6-bit Serielle IP"
#: ../lib/hw.c:136
msgid "VJ 6-bit Serial Line IP"
msgstr "VJ 6-bit Serielle IP"
#: ../lib/hw.c:137
msgid "Adaptive Serial Line IP"
msgstr "Adaptive Serielle IP"
#: ../lib/hw.c:140
msgid "Ethernet"
msgstr "Ethernet"
#: ../lib/hw.c:143
msgid "Ash"
msgstr "Ash"
#: ../lib/hw.c:146
msgid "Fiber Distributed Data Interface"
msgstr "Fiber Distributed Data Interface"
#: ../lib/hw.c:149
msgid "HIPPI"
msgstr "HIPPI"
#: ../lib/hw.c:155
msgid "AMPR ROSE"
msgstr "AMPR ROSE"
#: ../lib/hw.c:161
msgid "IPIP Tunnel"
msgstr "IPIP Tunnel"
#: ../lib/hw.c:164
msgid "Point-to-Point Protocol"
msgstr "Punkt-zu-Punkt Verbindung"
#: ../lib/hw.c:167
msgid "(Cisco)-HDLC"
msgstr "(Cisco)-HDLC"
#: ../lib/hw.c:168
msgid "LAPB"
msgstr "LAPB"
#: ../lib/hw.c:171
msgid "ARCnet"
msgstr "ARCnet"
#: ../lib/hw.c:174
msgid "Frame Relay DLCI"
msgstr "Frame Relay DLCI"
#: ../lib/hw.c:175
msgid "Frame Relay Access Device"
msgstr "Frame Relay Access Device"
#: ../lib/hw.c:178
msgid "IPv6-in-IPv4"
msgstr "IPv6-nach-IPv4"
#: ../lib/inet.c:123 ../lib/inet6.c:71
#, c-format
msgid "rresolve: unsupport address family %d !\n"
msgstr "rresolve: nicht unterst�tzte Adressfamilie %d !\n"
#: ../lib/inet6_gr.c:79
msgid "INET6 (IPv6) not configured in this system.\n"
msgstr "INET6 (IPv6) ist auf diesem System nicht konfiguriert.\n"
#: ../lib/inet6_gr.c:82
msgid "Kernel IPv6 routing table\n"
msgstr "Kernel IPv6 Routentabelle\n"
#: ../lib/inet6_gr.c:84
msgid ""
"Destination Next Hop "
" Flags Metric Ref Use Iface\n"
msgstr ""
"Ziel N�chster Hop "
" Flags Metric Ref Benutzer Iface\n"
#: ../lib/inet6_gr.c:158
msgid "Kernel IPv6 Neighbour Cache\n"
msgstr "Kernel IPv6 Nachbarcache\n"
#: ../lib/inet6_gr.c:161
msgid ""
"Neighbour HW Address Iface Flags "
"Ref State\n"
msgstr ""
"Nachbar HW-Adresse Iface Flags "
"Ref Zustand\n"
#: ../lib/inet6_gr.c:165
msgid ""
"Neighbour HW Address Iface Flags "
"Ref State Stale(sec) Delete(sec)\n"
msgstr ""
"Nachbar HW-Adresse Iface Flags "
"Ref Zustand Stale(sec) L�schen(sec)\n"
#: ../lib/inet6_sr.c:44
msgid "Usage: inet6_route [-vF] del Target\n"
msgstr "Benutzung: inet6_route [-vF] del Ziel\n"
#: ../lib/inet6_sr.c:45
msgid " inet6_route [-vF] add Target [gw Gw] [metric M] [[dev] If]\n"
msgstr " inet6_route [-vF] add Ziel [gw Gateway] [metric M] [[dev] If]\n"
#: ../lib/inet6_sr.c:46
msgid " inet6_route [-FC] flush NOT supported\n"
msgstr " inet6_route [-FC] flush NICHT unterst�tzt\n"
#: ../lib/inet6_sr.c:180
msgid "Flushing `inet6' routing table not supported\n"
msgstr ",,Flush'' f�r IPv6 Routentabelle nicht unterst�tzt\n"
#: ../lib/inet_gr.c:48 ../lib/inet_gr.c:218
msgid "INET (IPv4) not configured in this system.\n"
msgstr "INET (IPv4) ist auf diesem System nicht konfiguriert.\n"
#: ../lib/inet_gr.c:51
msgid "Kernel IP routing table\n"
msgstr "Kernel IP Routentabelle\n"
#: ../lib/inet_gr.c:54
msgid ""
"Destination Gateway Genmask Flags Metric Ref Use "
"Iface\n"
msgstr ""
"Ziel Router Genmask Flags Metric Ref Use "
"Iface\n"
#: ../lib/inet_gr.c:57
msgid ""
"Destination Gateway Genmask Flags MSS Window irtt "
"Iface\n"
msgstr ""
"Ziel Router Genmask Flags MSS Fenster irtt "
"Iface\n"
#: ../lib/inet_gr.c:60
msgid ""
"Destination Gateway Genmask Flags Metric Ref Use "
"Iface MSS Window irtt\n"
msgstr ""
"Ziel Gateway Maske Flags Metric Ref Benutzer "
"Iface MSS Fenster irtt\n"
#: ../lib/inet_gr.c:235
msgid "Kernel IP routing cache\n"
msgstr "Kernel IP Routencache\n"
#: ../lib/inet_gr.c:256
msgid ""
"Source Destination Gateway Flags Metric Ref Use "
"Iface\n"
msgstr ""
"Ziel Ziel Genmask Flags Metric Ref Ben "
"Iface\n"
#: ../lib/inet_gr.c:259
msgid ""
"Source Destination Gateway Flags MSS Window irtt "
"Iface\n"
msgstr ""
"Quelle Ziel Maske Flags MSS Fenster irtt "
"Iface\n"
#: ../lib/inet_gr.c:264
msgid ""
"Source Destination Gateway Flags Metric Ref Use "
"Iface MSS Window irtt HH Arp\n"
msgstr ""
"Quelle Ziel Quelle Flags Metrik Ref Benutzer "
"Iface MSS Fenster irtt HH Arp\n"
#: ../lib/inet_gr.c:288
msgid ""
"Source Destination Gateway Flags Metric Ref Use "
"Iface MSS Window irtt TOS HHRef HHUptod SpecDst\n"
msgstr ""
"Quelle Ziel Gateway Flags Metrik Ref Ben "
"Iface MSS Window irtt TOS HHRef HHUptod SpecDst\n"
#: ../lib/inet_sr.c:48
msgid ""
"Usage: inet_route [-vF] del {-host|-net} Target[/prefix] [gw Gw] [metric M] "
"[[dev] If]\n"
msgstr ""
"Benutzung: inet_route [-vF] del {-host|-net} Ziel[/prefix] [gw Gw] [metric "
"M] [[dev] If]\n"
#: ../lib/inet_sr.c:49
msgid ""
" inet_route [-vF] add {-host|-net} Target[/prefix] [gw Gw] [metric M]\n"
msgstr ""
" inet_route [-vF] add {-host|-net} Ziel[/Prefix] [gw Gw] [metric M]\n"
#: ../lib/inet_sr.c:50
msgid ""
" [netmask N] [mss Mss] [window W] [irtt I]\n"
msgstr ""
" [netmask N] [mss Mss] [window W] [irtt I]\n"
#: ../lib/inet_sr.c:51
msgid " [mod] [dyn] [reinstate] [[dev] If]\n"
msgstr " [mod] [dyn] [reinstate] [[dev] If]\n"
#: ../lib/inet_sr.c:52
msgid ""
" inet_route [-vF] add {-host|-net} Target[/prefix] [metric M] reject\n"
msgstr ""
" inet_route [-vF] add {-host|-net} Ziel[/Pr�fix] [metric M] reject\n"
#: ../lib/inet_sr.c:53
msgid " inet_route [-FC] flush NOT supported\n"
msgstr " inet_route [-FC] flush NICHT unterst�tzt\n"
#: ../lib/inet_sr.c:160
#, c-format
msgid "route: %s: cannot use a NETWORK as gateway!\n"
msgstr "route: %s: Netzadresse als Gateway ung�ltig!\n"
#: ../lib/inet_sr.c:176
msgid "route: Invalid MSS.\n"
msgstr "route: Ung�ltige MSS.\n"
#: ../lib/inet_sr.c:189
msgid "route: Invalid window.\n"
msgstr "route: Ung�ltige Fenstergr��e.\n"
#: ../lib/inet_sr.c:205
msgid "route: Invalid initial rtt.\n"
msgstr "route: Ung�ltige Start-RTT.\n"
#: ../lib/inet_sr.c:263
#, c-format
msgid "route: netmask %.8x doesn't make sense with host route\n"
msgstr "route: Netzmaske %.8x macht keinen Sinn mit Hostroute\n"
#: ../lib/inet_sr.c:267
#, c-format
msgid "route: bogus netmask %s\n"
msgstr "Route: Fehlerhafte Netzmaske %s\n"
#: ../lib/inet_sr.c:272
msgid "route: netmask doesn't match route address\n"
msgstr "route: Netzmaske passt nicht zur Routenadresse\n"
#: ../lib/inet_sr.c:308
msgid "Flushing `inet' routing table not supported\n"
msgstr ",,Flush'' der Inet-Routentabelle nicht unterst�tzt\n"
#: ../lib/inet_sr.c:312
msgid "Modifying `inet' routing cache not supported\n"
msgstr "�nderung des ,,Inet'' Routencaches nicht unterst�tzt\n"
#: ../lib/ipx_gr.c:52
msgid "IPX not configured in this system.\n"
msgstr "IPX ist auf diesem System nicht konfiguriert.\n"
#: ../lib/ipx_gr.c:56
msgid "Kernel IPX routing table\n"
msgstr "Kernel IPX Routentabelle\n"
#. xxx
#: ../lib/ipx_gr.c:57
msgid "Destination Router Net Router Node\n"
msgstr "Ziel Router Netz Router Knoten\n"
#: ../lib/ipx_sr.c:33
msgid "IPX: this needs to be written\n"
msgstr "IPX: dies mu� nocht geschrieben werden\n"
#: ../lib/masq_info.c:193
msgid "IP masquerading entries\n"
msgstr "IP-Maskeradeeintr�ge\n"
#: ../lib/masq_info.c:196
msgid "prot expire source destination ports\n"
msgstr "Prot expire Quelle Ziel Ports\n"
#: ../lib/masq_info.c:199
msgid ""
"prot expire initseq delta prevd source destination "
" ports\n"
msgstr ""
"Prot Ablauf Anf-Seq Delta Prevd Quelle Ziel "
" Ports\n"
#: ../lib/netrom_gr.c:48
msgid "NET/ROM not configured in this system.\n"
msgstr "NET/ROM ist auf diesem System nicht verf�gbar.\n"
#: ../lib/netrom_gr.c:51
msgid "Kernel NET/ROM routing table\n"
msgstr "Kernel NET/ROM Routentabelle\n"
#: ../lib/netrom_gr.c:52
msgid "Destination Mnemonic Quality Neighbour Iface\n"
msgstr "Ziel Mnemonic Qualit�t Nachbar Iface\n"
#: ../lib/netrom_sr.c:34
msgid "netrom usage\n"
msgstr "NET/ROM Benutzung\n"
#: ../lib/netrom_sr.c:44
msgid "NET/ROM: this needs to be written\n"
msgstr "NET/ROM: Dies mu� noch geschrieben werden\n"
#: ../lib/ppp.c:44
msgid "You cannot start PPP with this program.\n"
msgstr "Mit diesem Programm kann PPP nicht gestartet werden.\n"
#: ../lib/ppp_ac.c:38
msgid "Sorry, use pppd!\n"
msgstr "Bitte benutzen sie pppd.\n"
#: ../lib/rose.c:87
msgid "Node address must be ten digits"
msgstr "Knotenadresse hat zehn Ziffern"
#: ../lib/rose_gr.c:51
msgid "ROSE not configured in this system.\n"
msgstr "ROSE ist auf diesem System nicht verf�gbar.\n"
#: ../lib/rose_gr.c:54
msgid "Kernel ROSE routing table\n"
msgstr "ROSE Kernel Routentabelle\n"
#: ../lib/tr.c:78 ../lib/tr.c:93
#, c-format
msgid "in_tr(%s): invalid token ring address!\n"
msgstr "in_tr(%s): ung�ltige Tokenringadresse!\n"
#: ../lib/tr.c:105
#, c-format
msgid "in_tr(%s): trailing : ignored!\n"
msgstr "in_tr(%s): nachfolgend : ignoriert!\n"
#: ../lib/tr.c:117
#, c-format
msgid "in_tr(%s): trailing junk!\n"
msgstr "in_tr(%s): nachfolgender M�ll!\n"
#: ../lib/interface.c:114
#, c-format
msgid "warning: no inet socket available: %s\n"
msgstr "Warnung: Keine INET Sockets verf�gbar: %s\n"
#. Give better error message for this case.
#: ../lib/interface.c:489
msgid "Device not found"
msgstr "Ger�t nicht gefunden"
#: ../lib/interface.c:493
#, c-format
msgid "%s: error fetching interface information: %s\n"
msgstr "%s: Fehler beim Auslesen der Schnittstelleninformation: %s\n"
#: ../lib/sockets.c:59
msgid "No usable address families found.\n"
msgstr "Keine benutzbaren Adressfamilien gefunden.\n"
#: ../lib/util-ank.c:226
#, c-format
msgid "ip: %s is invalid inet address\n"
msgstr "ip: %s ist eine ung�ltige INET-Adresse\n"
#: ../lib/util-ank.c:235
#, c-format
msgid "ip: %s is invalid inet prefix\n"
msgstr "ip: %s ist ein ung�ltiges INET-Prefix\n"
#: ../lib/util-ank.c:245
#, c-format
msgid "ip: %s is invalid IPv4 address\n"
msgstr "ip: %s ist eine ung�ltige IPv4 Adresse\n"
#: ../lib/util-ank.c:253
#, c-format
msgid "ip: argument is wrong: %s\n"
msgstr "ip: Fehlerhaftes Argument: %s\n"
#: ../ipmaddr.c:55
msgid "Usage: ipmaddr [ add | del ] MULTIADDR dev STRING\n"
msgstr "Benutzung: ipmaddr [ add | del ] MULTIADR dev NAME\n"
#: ../ipmaddr.c:56
msgid " ipmaddr show [ dev STRING ] [ ipv4 | ipv6 | link | all ]\n"
msgstr " ipmaddr show [ dev NAME ] [ ipv4 | ipv6 | link | all ]\n"
#: ../ipmaddr.c:351
msgid "Cannot create socket"
msgstr "Kann Socket nicht �ffnen"
#: ../slattach.c:174
#, c-format
msgid "slattach: /dev/%s already locked!\n"
msgstr "slattach: /dev/%s bereits gesperrt!\n"
#: ../slattach.c:180
#, c-format
msgid "slattach: tty_lock: (%s): %s\n"
msgstr "slattach: tty_lock: (%s): %s\n"
#: ../slattach.c:186
msgid "slattach: cannot write PID file\n"
msgstr "slattach: Kann PID-Datei nicht schreiben\n"
#: ../slattach.c:196
#, c-format
msgid "slattach: tty_lock: UUCP user %s unknown!\n"
msgstr "slattach: tty_lock: UUCP Benutzer %s unbekannt!\n"
#: ../slattach.c:424
#, c-format
msgid "slattach: tty_hangup(DROP): %s\n"
msgstr "slattach: tty_hangup(DROP): %s\n"
#: ../slattach.c:431
#, c-format
msgid "slattach: tty_hangup(RAISE): %s\n"
msgstr "slattach: tty_hangup(RAISE): %s\n"
#: ../slattach.c:478
msgid "slattach: tty_open: cannot get current state!\n"
msgstr "slattach: tty_open: kann aktuellen Zustand nicht auslesen!\n"
#: ../slattach.c:485
msgid "slattach: tty_open: cannot get current line disc!\n"
msgstr "slattach: tty_open: Kann augenblickliche Leitungsdiziplin nicht auslesen!\n"
#: ../slattach.c:493
msgid "slattach: tty_open: cannot set RAW mode!\n"
msgstr "slattach: tty_open: Kann RAW-Modus nicht setzen!\n"
#: ../slattach.c:500
#, c-format
msgid "slattach: tty_open: cannot set %s bps!\n"
msgstr "slattach: tty_open: Kann %s bps nicht setzen!\n"
#: ../slattach.c:510
msgid "slattach: tty_open: cannot set 8N1 mode!\n"
msgstr "slattach: tty_open: Kann 8N1-Modus nicht setzen!\n"
#: ../slattach.c:658
#, c-format
msgid "slattach: unsupported protocol %s\n"
msgstr "slattach: Nicht unterstutztes Protokol %s\n"
|