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
|
# German translations for PACKAGE package
# German translation for PACKAGE.
# Copyright (C) 2016 THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# Alexander Münch <git@thehacker.biz>, 2016.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-06-10 10:11+0200\n"
"PO-Revision-Date: 2016-06-10 12:11+0200\n"
"Last-Translator: Alexander Münch <git@thehacker.biz>\n"
"Language-Team: German\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 1.8.7.1\n"
#: shell//callbacks.c:71
#, c-format
msgid "Remote: <b>%s</b>"
msgstr ""
#: shell//callbacks.c:117
msgid "Disconnecting..."
msgstr ""
#: shell//callbacks.c:120
msgid "Unloading modules..."
msgstr ""
#: shell//callbacks.c:123
msgid "Loading local modules..."
msgstr ""
#: shell//callbacks.c:130 shell//callbacks.c:162 shell//shell.c:314
#: shell//shell.c:816 shell//shell.c:1800 modules//benchmark.c:431
#: modules//benchmark.c:439 hardinfo//util.c:1112
msgid "Done."
msgstr "Fertig."
#: shell//callbacks.c:142
msgid "Save Image"
msgstr ""
#: shell//callbacks.c:158
msgid "Saving image..."
msgstr ""
#: shell//callbacks.c:236
msgid "No context help available."
msgstr ""
#: shell//callbacks.c:318
#, c-format
msgid "%s Module"
msgstr ""
#: shell//callbacks.c:325
#, c-format
msgid ""
"Written by %s\n"
"Licensed under %s"
msgstr ""
"Programmiert von %s\n"
"Lizenziert unter %s"
#: shell//callbacks.c:339
#, c-format
msgid "No about information is associated with the %s module."
msgstr ""
#: shell//callbacks.c:353
msgid "Author:"
msgstr ""
#: shell//callbacks.c:356
msgid "Contributors:"
msgstr "Mitwirkende:"
#: shell//callbacks.c:360
msgid "Based on work by:"
msgstr ""
#: shell//callbacks.c:361
msgid "MD5 implementation by Colin Plumb (see md5.c for details)"
msgstr ""
#: shell//callbacks.c:362
msgid "SHA1 implementation by Steve Reid (see sha1.c for details)"
msgstr ""
#: shell//callbacks.c:363
msgid "Blowfish implementation by Paul Kocher (see blowfich.c for details)"
msgstr ""
#: shell//callbacks.c:364
msgid "Raytracing benchmark by John Walker (see fbench.c for details)"
msgstr ""
#: shell//callbacks.c:365
msgid "FFT benchmark by Scott Robert Ladd (see fftbench.c for details)"
msgstr ""
#: shell//callbacks.c:366
msgid "Some code partly based on x86cpucaps by Osamu Kayasono"
msgstr ""
#: shell//callbacks.c:367
msgid "Vendor list based on GtkSysInfo by Pissens Sebastien"
msgstr ""
#: shell//callbacks.c:368
msgid "DMI support based on code by Stewart Adam"
msgstr ""
#: shell//callbacks.c:369
msgid "SCSI support based on code by Pascal F. Martin"
msgstr ""
#: shell//callbacks.c:373
msgid "Jakub Szypulka"
msgstr "Jakub Szypulka"
#: shell//callbacks.c:374
msgid "Tango Project"
msgstr ""
#: shell//callbacks.c:375
msgid "The GNOME Project"
msgstr ""
#: shell//callbacks.c:376
msgid "VMWare, Inc. (USB icon from VMWare Workstation 6)"
msgstr ""
#: shell//callbacks.c:387
msgid "System information and benchmark tool"
msgstr "System-Informationen und Benchmark-Werkzeug"
#: shell//callbacks.c:392
msgid ""
"HardInfo is free software; you can redistribute it and/or modify it under "
"the terms of the GNU General Public License as published by the Free "
"Software Foundation, version 2.\n"
"\n"
"This program is distributed in the hope that it will be useful, but WITHOUT "
"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
"FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for "
"more details.\n"
"\n"
"You should have received a copy of the GNU General Public License along with "
"this program; if not, write to the Free Software Foundation, Inc., 51 "
"Franklin St, Fifth Floor, Boston, MA 02110-1301 USA"
msgstr ""
#: shell//menu.c:35
msgid "_Information"
msgstr "_Informationen"
#: shell//menu.c:36
msgid "_Remote"
msgstr ""
#: shell//menu.c:37
msgid "_View"
msgstr "_Ansicht"
#: shell//menu.c:38
msgid "_Help"
msgstr "_Hilfe"
#: shell//menu.c:39
msgid "About _Modules"
msgstr "Über _Module"
#: shell//menu.c:43
msgid "Generate _Report"
msgstr "_Bericht generieren"
#: shell//menu.c:48
msgid "_Network Updater..."
msgstr "_Netzwerk-Updater…"
#: shell//menu.c:53
msgid "_Open..."
msgstr ""
#: shell//menu.c:58
msgid "_Connect to..."
msgstr ""
#: shell//menu.c:63
msgid "_Manage hosts..."
msgstr ""
#: shell//menu.c:68
msgid "_Local computer"
msgstr ""
#: shell//menu.c:73
msgid "_Copy to Clipboard"
msgstr "In die Zwischenablage _kopieren"
#: shell//menu.c:74
msgid "Copy to clipboard"
msgstr "In die Zwischenablage kopieren"
#: shell//menu.c:78
msgid "_Save image as..."
msgstr ""
#: shell//menu.c:83
msgid "_Refresh"
msgstr "_Aktualisieren"
#: shell//menu.c:88
msgid "Contents"
msgstr "Inhalt"
#: shell//menu.c:93 shell//shell.c:1794 shell//shell.c:1811
msgid "Context help"
msgstr "Kontexthilfe"
#: shell//menu.c:98
msgid "_Open HardInfo Web Site"
msgstr "HardInfo-_Webseite öffnen"
#: shell//menu.c:103
msgid "_Report bug"
msgstr "Fehler _melden"
#: shell//menu.c:108
msgid "_Donate to the project"
msgstr "_Spende zum Projekt"
#: shell//menu.c:113
msgid "_About HardInfo"
msgstr "_Über HardInfo"
#: shell//menu.c:114
msgid "Displays program version information"
msgstr ""
#: shell//menu.c:118
msgid "_Quit"
msgstr "_Beenden"
#: shell//menu.c:125
msgid "_Side Pane"
msgstr "_Seitenleiste"
#: shell//menu.c:126
msgid "Toggles side pane visibility"
msgstr ""
#: shell//menu.c:129
msgid "_Toolbar"
msgstr "_Symbolleiste"
#: shell//menu.c:133
msgid "_Accept connections"
msgstr ""
#: shell//report.c:492
msgid "Save File"
msgstr "Datei speichern"
#: shell//report.c:616
msgid "Cannot create ReportContext. Programming bug?"
msgstr ""
#: shell//report.c:634
msgid "Open the report with your web browser?"
msgstr "Den Bericht in deinem Webbrowser öffnen?"
#: shell//report.c:662
msgid "Generating report..."
msgstr "Generiere Bericht…"
#: shell//report.c:672
msgid "Report saved."
msgstr "Bericht gespeichert."
#: shell//report.c:674
msgid "Error while creating the report."
msgstr "Fehler beim Erzeugen des Berichts."
#: shell//report.c:776
msgid "Generate Report"
msgstr "Bericht generieren"
#: shell//report.c:793
msgid ""
"<big><b>Generate Report</b></big>\n"
"Please choose the information that you wish to view in your report:"
msgstr ""
"<big><b>Bericht generieren</b></big>\n"
"Bitte wähle die Informationen, die du in deinen Bereich einbeziehen möchtest:"
#: shell//report.c:853
msgid "Select _None"
msgstr "_Nichts auswählen"
#: shell//report.c:860
msgid "Select _All"
msgstr "_Alles auswählen"
#: shell//report.c:878
msgid "_Generate"
msgstr "_Generieren"
#: shell//shell.c:407
#, c-format
msgid "%s - System Information"
msgstr "%s - System-Informationen"
#: shell//shell.c:412
msgid "System Information"
msgstr "System-Informationen"
#: shell//shell.c:803
msgid "Loading modules..."
msgstr ""
#: shell//shell.c:1654
#, c-format
msgid "<b>%s → Summary</b>"
msgstr "<b>%s → Zusammenfassung</b>"
#: shell//shell.c:1762
msgid "Updating..."
msgstr "Aktualisiere…"
#: shell//syncmanager.c:69
msgid ""
"<big><b>Synchronize with Central Database</b></big>\n"
"The following information may be synchronized with the HardInfo central "
"database."
msgstr ""
"<big><b>Synchronisieren mit zentraler Datenbank</b></big>\n"
"Die folgenden Informationen können mit der zentralen HardInfo-Datenbank "
"synchronisiert werden."
#: shell//syncmanager.c:72
msgid ""
"<big><b>Synchronizing</b></big>\n"
"This may take some time."
msgstr ""
"<big><b>Synchronisiere</b></big>\n"
"Dies kann kurz dauern."
#: shell//syncmanager.c:132
msgid ""
"HardInfo was compiled without libsoup support. (Network Updater requires it.)"
msgstr ""
#: shell//syncmanager.c:161 shell//syncmanager.c:185
#, c-format
msgid "%s (error #%d)"
msgstr "%s (Fehlercode #%d)"
#: shell//syncmanager.c:170 shell//syncmanager.c:194
msgid "Could not parse XML-RPC response"
msgstr ""
#: shell//syncmanager.c:267
#, c-format
msgid ""
"Server says it supports API version %d, but this version of HardInfo only "
"supports API version %d."
msgstr ""
#: shell//syncmanager.c:362
msgid "Contacting HardInfo Central Database"
msgstr "Kontaktiere zentrale HardInfo-Datenbank"
#: shell//syncmanager.c:363
msgid "Cleaning up"
msgstr "Aufräumen"
#: shell//syncmanager.c:480
#, c-format
msgid "<s>%s</s> <i>(canceled)</i>"
msgstr "<s>%s</s> <i>(abgebrochen)</i>"
#: shell//syncmanager.c:497
#, c-format
msgid "<b><s>%s</s></b> <i>(failed)</i>"
msgstr "<b><s>%s</s></b> <i>(gescheitert)</i>"
#: shell//syncmanager.c:509
#, c-format
msgid ""
"Failed while performing \"%s\". Please file a bug report if this problem "
"persists. (Use the Help→Report bug option.)\n"
"\n"
"Details: %s"
msgstr ""
#: shell//syncmanager.c:518
#, c-format
msgid ""
"Failed while performing \"%s\". Please file a bug report if this problem "
"persists. (Use the Help→Report bug option.)"
msgstr ""
#: shell//syncmanager.c:646
msgid "Network Updater"
msgstr "Netzwerk-Updater"
#: shell//syncmanager.c:727
msgid "_Synchronize"
msgstr "_Synchronisieren"
#: modules//benchmark.c:50
msgid "CPU Blowfish"
msgstr "CPU Blowfish"
#: modules//benchmark.c:51
msgid "CPU CryptoHash"
msgstr "CPU Crypto-Hash"
#: modules//benchmark.c:52
msgid "CPU Fibonacci"
msgstr "CPU Fibonacci"
#: modules//benchmark.c:53
msgid "CPU N-Queens"
msgstr "CPU Damenproblem"
#: modules//benchmark.c:54
msgid "FPU FFT"
msgstr "FPU FFT"
#: modules//benchmark.c:55
msgid "FPU Raytracing"
msgstr "FPU Raytracing"
#: modules//benchmark.c:56
msgid "GPU Drawing"
msgstr "GPU Zeichnen"
#: modules//benchmark.c:222
#, c-format
msgid ""
"[$ShellParam$]\n"
"Zebra=1\n"
"OrderType=%d\n"
"ViewType=3\n"
"ColumnTitle$Extra1=CPU Clock\n"
"ColumnTitle$Progress=Results\n"
"ColumnTitle$TextValue=CPU\n"
"ShowColumnHeaders=true\n"
"[%s]\n"
"<big><b>This Machine</b></big>=%.3f|%s MHz\n"
"%s"
msgstr ""
"[$ShellParam$]\n"
"Zebra=1\n"
"OrderType=%d\n"
"ViewType=3\n"
"ColumnTitle$Extra1=CPU-Takt\n"
"ColumnTitle$Progress=Ergebnisse\n"
"ColumnTitle$TextValue=CPU\n"
"ShowColumnHeaders=true\n"
"[%s]\n"
"<big><b>Diese Maschine</b></big>=%.3f|%s MHz\n"
"%s"
#: modules//benchmark.c:235
#, c-format
msgid ""
"[$ShellParam$]\n"
"Zebra=1\n"
"OrderType=%d\n"
"ViewType=3\n"
"ColumnTitle$Extra1=CPU Clock\n"
"ColumnTitle$Progress=Results\n"
"ColumnTitle$TextValue=CPU\n"
"ShowColumnHeaders=true\n"
"[%s]\n"
"%s"
msgstr ""
"[$ShellParam$]\n"
"Zebra=1\n"
"OrderType=%d\n"
"ViewType=3\n"
"ColumnTitle$Extra1=CPU-Takt\n"
"ColumnTitle$Progress=Ergebnisse\n"
"ColumnTitle$TextValue=CPU\n"
"ShowColumnHeaders=true\n"
"[%s]\n"
"%s"
#: modules//benchmark.c:363
#, c-format
msgid "Benchmarking: <b>%s</b>."
msgstr "Benchmarke: <b>%s</b>."
#: modules//benchmark.c:377
msgid "Benchmarking. Please do not move your mouse or press any keys."
msgstr "Benchmarke. Bitte bewege den Mauszeiger nicht und drücke keine Tasten."
#: modules//benchmark.c:381
msgid "Cancel"
msgstr "Abbrechen"
#: modules//benchmark.c:511
msgid "Results in MiB/second. Higher is better."
msgstr "Ergebnisse in MiB/Sekunde. Höhere Werte sind besser."
#: modules//benchmark.c:514
msgid "Results in HIMarks. Higher is better."
msgstr "Ergebnisse in HIMarks. Höhere Werte sind besser."
#: modules//benchmark.c:521
msgid "Results in seconds. Lower is better."
msgstr "Ergebnisse in Sekunden. Niedrigere Werte sind besser."
#: modules//benchmark.c:529
msgid "Benchmarks"
msgstr "Benchmarks"
#: modules//benchmark.c:547
msgid "Perform tasks and compare with other systems"
msgstr "Erledigt Aufgaben und vergleicht die Ergebnisse mit anderen Systemen"
#: modules//benchmark.c:634
msgid "Send benchmark results"
msgstr "Übermittle Benchmark-Ergebnisse"
#: modules//benchmark.c:639
msgid "Receive benchmark results"
msgstr "Lade Benchmark-Ergebnisse"
#: modules//computer.c:68
msgid "Summary"
msgstr "Zusammenfassung"
#: modules//computer.c:69
msgid "Operating System"
msgstr "Betriebssystem"
#: modules//computer.c:70
msgid "Kernel Modules"
msgstr "Kernel-Module"
#: modules//computer.c:71
msgid "Boots"
msgstr "Systemstarts"
#: modules//computer.c:72
msgid "Languages"
msgstr "Sprachen"
#: modules//computer.c:73
msgid "Filesystems"
msgstr "Dateisysteme"
#: modules//computer.c:74
msgid "Display"
msgstr "Anzeige"
#: modules//computer.c:75
msgid "Environment Variables"
msgstr "Umgebungsvariablen"
#: modules//computer.c:77
msgid "Development"
msgstr "Entwicklung"
#: modules//computer.c:79
msgid "Users"
msgstr "Benutzer"
#: modules//computer.c:80
msgid "Groups"
msgstr "Gruppen"
#: modules//computer.c:104
#, c-format
msgid "%dMB (%dMB used)"
msgstr ""
#: modules//computer.c:200
msgid "Scripting Languages"
msgstr "Script-Sprachen"
#: modules//computer.c:201
msgid "CPython"
msgstr "CPython"
#: modules//computer.c:202
msgid "Perl"
msgstr "Perl"
#: modules//computer.c:203
msgid "PHP"
msgstr "PHP"
#: modules//computer.c:204
msgid "Ruby"
msgstr "Ruby"
#: modules//computer.c:205
msgid "Bash"
msgstr "Bash"
#: modules//computer.c:206
msgid "Compilers"
msgstr "Compiler"
#: modules//computer.c:207
msgid "C (GCC)"
msgstr "C (GCC)"
#: modules//computer.c:208
msgid "C (Clang)"
msgstr "C (Clang)"
#: modules//computer.c:209
msgid "D (dmd)"
msgstr "D (dmd)"
#: modules//computer.c:210
msgid "Java"
msgstr "Java"
#: modules//computer.c:211
msgid "CSharp (Mono, old)"
msgstr "CSharp (Mono, old)"
#: modules//computer.c:212
msgid "CSharp (Mono)"
msgstr "CSharp (Mono)"
#: modules//computer.c:213
msgid "Vala"
msgstr "Vala"
#: modules//computer.c:214
msgid "Haskell (GHC)"
msgstr "Haskell (GHC)"
#: modules//computer.c:215
msgid "FreePascal"
msgstr "FreePascal"
#: modules//computer.c:216
msgid "Tools"
msgstr "Werkzeug-Programme"
#: modules//computer.c:217
msgid "make"
msgstr "make"
#: modules//computer.c:218
msgid "GDB"
msgstr "GDB"
#: modules//computer.c:219
msgid "strace"
msgstr "strace"
#: modules//computer.c:220
msgid "valgrind"
msgstr "valgrind"
#: modules//computer.c:221
msgid "QMake"
msgstr "QMake"
#: modules//computer.c:264
#, c-format
msgid "%s=Not found\n"
msgstr "%s=Nicht gefunden\n"
#: modules//computer.c:267
#, c-format
msgid "Detecting version: %s"
msgstr ""
#: modules//computer.c:278
#, c-format
msgid ""
"[$ShellParam$]\n"
"ColumnTitle$TextValue=Program\n"
"ColumnTitle$Value=Version\n"
"ShowColumnHeaders=true\n"
"%s"
msgstr ""
"[$ShellParam$]\n"
"ColumnTitle$TextValue=Programm\n"
"ColumnTitle$Value=Version\n"
"ShowColumnHeaders=true\n"
"%s"
#: modules//computer.c:358
msgid "Physical machine"
msgstr "Physikalische Maschine"
#: modules//computer.c:375
#, c-format
msgid ""
"[$ShellParam$]\n"
"UpdateInterval$Memory=1000\n"
"UpdateInterval$Date/Time=1000\n"
"#ReloadInterval=5000\n"
"[Computer]\n"
"Processor=%s\n"
"Memory=...\n"
"Machine Type=%s\n"
"Operating System=%s\n"
"User Name=%s\n"
"Date/Time=...\n"
"[Display]\n"
"Resolution=%dx%d pixels\n"
"OpenGL Renderer=%s\n"
"X11 Vendor=%s\n"
"\n"
"%s\n"
"[Input Devices]\n"
"%s\n"
"\n"
"%s\n"
"\n"
"%s\n"
msgstr ""
"[$ShellParam$]\n"
"UpdateInterval$Memory=1000\n"
"UpdateInterval$Date/Time=1000\n"
"#ReloadInterval=5000\n"
"[Computer]\n"
"Prozessor=%s\n"
"Memory=...\n"
"Maschinen-Typ=%s\n"
"Betriebssystem=%s\n"
"Benutzername=%s\n"
"Date/Time=...\n"
"[Anzeige]\n"
"Auflösung=%dx%d Pixel\n"
"OpenGL-Renderer=%s\n"
"X11-Hersteller=%s\n"
"\n"
"%s\n"
"[Eingabegeräte]\n"
"%s\n"
"\n"
"%s\n"
"\n"
"%s\n"
#: modules//computer.c:417
#, fuzzy, c-format
msgid ""
"[$ShellParam$]\n"
"UpdateInterval$Uptime=10000\n"
"UpdateInterval$Load Average=1000\n"
"[Version]\n"
"Kernel=%s\n"
"Version=%s\n"
"C Library=%s\n"
"Distribution=%s\n"
"[Current Session]\n"
"Computer Name=%s\n"
"User Name=%s\n"
"#Language=%s\n"
"Home Directory=%s\n"
"Desktop Environment=%s\n"
"[Misc]\n"
"Uptime=...\n"
"Load Average=..."
msgstr ""
"[$ShellParam$]\n"
"UpdateInterval$Uptime=10000\n"
"UpdateInterval$Load Average=1000\n"
"[Version]\n"
"Kernel=%s\n"
"Version=%s\n"
"C-Library=%s\n"
"Distribution=%s\n"
"[Aktuelle Sitzung]\n"
"Computername=%s\n"
"Benutzername=%s\n"
"#Sprache=%s\n"
"Stammverzeichnis=%s\n"
"Desktop-Umgebung=%s\n"
"[Verschiedenes]\n"
"Uptime=...\n"
"Load Average=..."
#: modules//computer.c:446
#, c-format
msgid ""
"[Loaded Modules]\n"
"%s[$ShellParam$]\n"
"ViewType=1\n"
"ColumnTitle$TextValue=Name\n"
"ColumnTitle$Value=Description\n"
"ShowColumnHeaders=true\n"
msgstr ""
"[Geladene Module]\n"
"%s[$ShellParam$]\n"
"ViewType=1\n"
"ColumnTitle$TextValue=Name\n"
"ColumnTitle$Value=Beschreibung\n"
"ShowColumnHeaders=true\n"
#: modules//computer.c:457
#, c-format
msgid ""
"[$ShellParam$]\n"
"ColumnTitle$TextValue=Date & Time\n"
"ColumnTitle$Value=Kernel Version\n"
"ShowColumnHeaders=true\n"
"\n"
"%s"
msgstr ""
"[$ShellParam$]\n"
"ColumnTitle$TextValue=Datum & Uhrzeit\n"
"ColumnTitle$Value=Kernel-Version\n"
"ShowColumnHeaders=true\n"
"\n"
"%s"
#: modules//computer.c:467
#, c-format
msgid ""
"[$ShellParam$]\n"
"ViewType=1\n"
"ColumnTitle$TextValue=Language Code\n"
"ColumnTitle$Value=Name\n"
"ShowColumnHeaders=true\n"
"[Available Languages]\n"
"%s"
msgstr ""
"[$ShellParam$]\n"
"ViewType=1\n"
"ColumnTitle$TextValue=Sprach-Code\n"
"ColumnTitle$Value=Name\n"
"ShowColumnHeaders=true\n"
"[Available Languages]\n"
"%s"
#: modules//computer.c:478
#, c-format
msgid ""
"[$ShellParam$]\n"
"ViewType=4\n"
"ReloadInterval=5000\n"
"Zebra=1\n"
"NormalizePercentage=false\n"
"ColumnTitle$Extra1=Mount Point\n"
"ColumnTitle$Progress=Usage\n"
"ColumnTitle$TextValue=Device\n"
"ShowColumnHeaders=true\n"
"[Mounted File Systems]\n"
"%s\n"
msgstr ""
"[$ShellParam$]\n"
"ViewType=4\n"
"ReloadInterval=5000\n"
"Zebra=1\n"
"NormalizePercentage=false\n"
"ColumnTitle$Extra1=Mount-Punkt\n"
"ColumnTitle$Progress=Verwendung\n"
"ColumnTitle$TextValue=Gerät\n"
"ShowColumnHeaders=true\n"
"[Mounted File Systems]\n"
"%s\n"
#: modules//computer.c:492
#, c-format
msgid ""
"[Display]\n"
"Resolution=%dx%d pixels\n"
"Vendor=%s\n"
"Version=%s\n"
"[Monitors]\n"
"%s[Extensions]\n"
"%s[OpenGL]\n"
"Vendor=%s\n"
"Renderer=%s\n"
"Version=%s\n"
"Direct Rendering=%s\n"
msgstr ""
"[Anzeige]\n"
"Auflösung=%dx%d Pixel\n"
"Hersteller=%s\n"
"Version=%s\n"
"[Bildschirme]\n"
"%s[Erweiterungen]\n"
"%s[OpenGL]\n"
"Hersteller=%s\n"
"Renderer=%s\n"
"Version=%s\n"
"Direct-Rendering=%s\n"
#: modules//computer.c:514
msgid "Y_es"
msgstr "_Ja"
#: modules//computer.c:514 modules//devices/printers.c:138
#: hardinfo//hardinfo.c:63
msgid "No"
msgstr "Nein"
#: modules//computer.c:528
#, c-format
msgid ""
"[$ShellParam$]\n"
"ReloadInterval=10000\n"
"ColumnTitle$TextValue=Name\n"
"ColumnTitle$Value=Group ID\n"
"ShowColumnHeaders=true\n"
"[Groups]\n"
"%s\n"
msgstr ""
"[$ShellParam$]\n"
"ReloadInterval=10000\n"
"ColumnTitle$TextValue=Name\n"
"ColumnTitle$Value=Gruppen-ID\n"
"ShowColumnHeaders=true\n"
"[Gruppen]\n"
"%s\n"
#: modules//computer.c:608
msgid "Computer"
msgstr "Computer"
#: modules//computer.c:702
msgid "Gathers high-level computer information"
msgstr "Sammelt high-level Computer-Informationen"
#: modules//computer/alsa.c:26
msgid "[Audio Devices]\n"
msgstr "[Audio-Geräte]\n"
#: modules//computer/alsa.c:33
#, c-format
msgid "Audio Adapter#%d=%s\n"
msgstr ""
#: modules//computer/boots.c:33
msgid "[Boots]\n"
msgstr "[Systemstarts]\n"
#: modules//computer/display.c:122
#, c-format
msgid "Monitor %d=%dx%d pixels\n"
msgstr "Bildschirm %d=%dx%d Pixel\n"
#: modules//computer/environment.c:32
msgid "[Environment Variables]\n"
msgstr "[Umgebungsvariablen]\n"
#: modules//computer/os.c:57
#, c-format
msgid "GNU C Library version %s (%sstable)"
msgstr ""
#: modules//computer/os.c:59
msgid "un"
msgstr ""
#: modules//computer/os.c:61 modules//computer/os.c:138 modules//devices.c:154
#: modules//devices.c:197 modules//devices/printers.c:99
#: modules//devices/printers.c:106 modules//devices/printers.c:116
#: modules//devices/printers.c:131 modules//devices/printers.c:140
#: modules//devices/printers.c:243
msgid "Unknown"
msgstr ""
#: modules//computer/os.c:80
#, c-format
msgid "Version: %s"
msgstr ""
#: modules//computer/os.c:114
msgid "Terminal"
msgstr ""
#: modules//computer/os.c:134
#, c-format
msgid "Unknown (Window Manager: %s)"
msgstr ""
#: modules//computer/os.c:174
msgid "Unknown distribution"
msgstr ""
#: modules//devices.c:74
msgid "Processor"
msgstr "Prozessor"
#: modules//devices.c:75
msgid "Memory"
msgstr "Hauptspeicher"
#: modules//devices.c:76
msgid "PCI Devices"
msgstr "PCI-Geräte"
#: modules//devices.c:77
msgid "USB Devices"
msgstr "USB-Geräte"
#: modules//devices.c:78
msgid "Printers"
msgstr "Drucker"
#: modules//devices.c:79
msgid "Battery"
msgstr "Akku"
#: modules//devices.c:80
msgid "Sensors"
msgstr "Sensoren"
#: modules//devices.c:81
msgid "Input Devices"
msgstr "Eingabegeräte"
#: modules//devices.c:82
msgid "Storage"
msgstr "Speicher"
#: modules//devices.c:84
msgid "DMI"
msgstr "DMI"
#: modules//devices.c:85
msgid "Memory SPD"
msgstr "Hauptspeicher (SPD)"
#: modules//devices.c:87
msgid "Resources"
msgstr "Ressourcen"
#: modules//devices.c:193
msgid " (vendor unknown)"
msgstr " (unbekannter Hersteller)"
#: modules//devices.c:195
msgid " (model unknown)"
msgstr " (unbekanntes Modell)"
#: modules//devices.c:412
msgid "Devices"
msgstr "Geräte"
#: modules//devices.c:424
msgid "Update PCI ID listing"
msgstr ""
#: modules//devices.c:436
msgid "Update CPU feature database"
msgstr ""
#: modules//devices.c:464
msgid "Gathers information about hardware devices"
msgstr "Sammelt Informationen über die Hardware-Geräte"
#: modules//devices/battery.c:181
#, c-format
msgid ""
"\n"
"[Battery: %s]\n"
"State=%s (load: %s)\n"
"Capacity=%s / %s (%.2f%%)\n"
"Battery Technology=%s (%s)\n"
"Manufacturer=%s\n"
"Model Number=%s\n"
"Serial Number=%s\n"
msgstr ""
"\n"
"[Akku: %s]\n"
"Status=%s (load: %s)\n"
"Kapazität=%s / %s (%.2f%%)\n"
"Akku-Technologie=%s (%s)\n"
"Hersteller=%s\n"
"Modellnummer=%s\n"
"Seriennummer=%s\n"
#: modules//devices/battery.c:258
#, c-format
msgid ""
"\n"
"[Battery: %s]\n"
"State=%s\n"
"Capacity=%s / %s\n"
"Battery Technology=%s\n"
"Manufacturer=%s\n"
"Model Number=%s\n"
"Serial Number=%s\n"
msgstr ""
"\n"
"[Akku: %s]\n"
"Status=%s\n"
"Kapazität=%s / %s\n"
"Akku-Technologie=%s\n"
"Hersteller=%s\n"
"Modellnummer=%s\n"
"Seriennummer=%s\n"
#: modules//devices/battery.c:346
#, fuzzy, c-format
msgid ""
"\n"
"[Battery (APM)]\n"
"Charge=%d%%\n"
"Remaining Charge=%s of %s\n"
"Using=%s\n"
"APM driver version=%s\n"
"APM BIOS version=%s\n"
msgstr ""
"\n"
"[Akku (APM)]\n"
"Ladung=%d%%\n"
"Verbleibende Ladung=%s von %s\n"
"Using=%s\n"
"APM Driver-Version=%s\n"
"APM BIOS-Version=%s\n"
#: modules//devices/battery.c:358
#, fuzzy, c-format
msgid ""
"\n"
"[Battery (APM)]\n"
"Charge=%d%%\n"
"Using=%s\n"
"APM driver version=%s\n"
"APM BIOS version=%s\n"
msgstr ""
"\n"
"[Akku (APM)]\n"
"Ladung=%d%%\n"
"Using=%s\n"
"APM Driver-Version=%s\n"
"APM BIOS-Version=%s\n"
#: modules//devices/battery.c:385
msgid ""
"[No batteries]\n"
"No batteries found on this system=\n"
msgstr ""
"[Keine Akkus]\n"
"Keine Akkus in diesem System gefunden=\n"
#: modules//devices/printers.c:81
msgid "⚬ Can do black and white printing=\n"
msgstr "⚬ Kann schwarz/weiß drucken=\n"
#: modules//devices/printers.c:83
msgid "⚬ Can do color printing=\n"
msgstr "⚬ Kann farbig drucken=\n"
#: modules//devices/printers.c:85
msgid "⚬ Can do duplexing=\n"
msgstr "⚬ Kann zweiseitig drucken (Duplexdruck)=\n"
#: modules//devices/printers.c:87
msgid "⚬ Can do staple output=\n"
msgstr "⚬ Kann Ausdrucke stapeln=\n"
#: modules//devices/printers.c:89
msgid "⚬ Can do copies=\n"
msgstr "⚬ Kann kopieren=\n"
#: modules//devices/printers.c:91
msgid "⚬ Can collate copies=\n"
msgstr "⚬ Kann Ausdruck sortieren=\n"
#: modules//devices/printers.c:93
msgid "⚬ Printer is rejecting jobs=\n"
msgstr "⚬ Drucker weist Aufträge zurück=\n"
#: modules//devices/printers.c:95
msgid "⚬ Printer was automatically discovered and added=\n"
msgstr "⚬ Drucker wurde automatisch entdeckt und hinzugefügt=\n"
#: modules//devices/printers.c:110
msgid "Idle"
msgstr ""
#: modules//devices/printers.c:112
msgid "Printing a Job"
msgstr ""
#: modules//devices/printers.c:114
msgid "Stopped"
msgstr ""
#: modules//devices/printers.c:138 hardinfo//hardinfo.c:62
#: hardinfo//hardinfo.c:63
msgid "Yes"
msgstr "Ja"
#: modules//devices/printers.c:190
msgid ""
"[Printers]\n"
"No suitable CUPS library found="
msgstr ""
"[Drucker]\n"
"Keine passende CUPS-Bibliothek gefunden="
#: modules//devices/printers.c:200
msgid "[Printers (CUPS)]\n"
msgstr "[Drucker (CUPS)]\n"
#: modules//devices/printers.c:263
msgid ""
"[Printers]\n"
"No printers found=\n"
msgstr ""
"[Printers]\n"
"Keine Drucker gefunden=\n"
#: modules//devices/storage.c:46
msgid ""
"\n"
"[SCSI Disks]\n"
msgstr ""
"\n"
"[SCSI-Geräte]\n"
#: modules//devices/storage.c:110 modules//devices/storage.c:297
#, c-format
msgid ""
"[Device Information]\n"
"Model=%s\n"
msgstr ""
"[Geräte-Informationen]\n"
"Modell=%s\n"
#: modules//devices/storage.c:115 modules//devices/storage.c:304
#, c-format
msgid "Vendor=%s (%s)\n"
msgstr "Hersteller=%s (%s)\n"
#: modules//devices/storage.c:120 modules//devices/storage.c:309
#, c-format
msgid "Vendor=%s\n"
msgstr "Hersteller=%s\n"
#: modules//devices/storage.c:125
#, c-format
msgid ""
"Type=%s\n"
"Revision=%s\n"
"[SCSI Controller]\n"
"Controller=scsi%d\n"
"Channel=%d\n"
"ID=%d\n"
"LUN=%d\n"
msgstr ""
#: modules//devices/storage.c:169
msgid ""
"\n"
"[IDE Disks]\n"
msgstr ""
"\n"
"[IDE-Geräte]\n"
#: modules//devices/storage.c:242
#, c-format
msgid "Driver=%s\n"
msgstr "Treiber=%s\n"
#: modules//devices/storage.c:314
#, c-format
msgid ""
"Device Name=hd%c\n"
"Media=%s\n"
"Cache=%dkb\n"
msgstr ""
#: modules//devices/storage.c:329
#, c-format
msgid ""
"[Geometry]\n"
"Physical=%s\n"
"Logical=%s\n"
msgstr ""
"[Geometrie]\n"
"Physikalisch=%s\n"
"Logisch=%s\n"
#: modules//devices/storage.c:341
#, c-format
msgid ""
"[Capabilities]\n"
"%s"
msgstr ""
"[Fähigkeiten]\n"
"%s"
#: modules//devices/storage.c:348
#, c-format
msgid ""
"[Speeds]\n"
"%s"
msgstr ""
"[Geschwindigkeiten]\n"
"%s"
#: modules//devices/x86/processor.c:145 modules//devices/x86_64/processor.c:145
msgid "Cache information not available=\n"
msgstr ""
#: modules//devices/x86/processor.c:484 modules//devices/x86_64/processor.c:484
#, c-format
msgid ""
"[Processor]\n"
"Name=%s\n"
"Family, model, stepping=%d, %d, %d (%s)\n"
"Vendor=%s\n"
"[Configuration]\n"
"Cache Size=%dkb\n"
"Frequency=%.2fMHz\n"
"BogoMIPS=%.2f\n"
"Byte Order=%s\n"
"[Features]\n"
"FDIV Bug=%s\n"
"HLT Bug=%s\n"
"F00F Bug=%s\n"
"Coma Bug=%s\n"
"Has FPU=%s\n"
"[Cache]\n"
"%s\n"
"[Capabilities]\n"
"%s"
msgstr ""
"[Prozessor]\n"
"Name=%s\n"
"Familie, Modell, Stufung=%d, %d, %d (%s)\n"
"Hersteller=%s\n"
"[Konfiguration]\n"
"Cache-Größe=%dkb\n"
"Taktfrequenz=%.2fMHz\n"
"BogoMIPS=%.2f\n"
"Byte-Reihenfolge=%s\n"
"[Funktionen]\n"
"FDIV-Bug=%s\n"
"HLT-Bug=%s\n"
"F00F-Bug=%s\n"
"Coma-Bug=%s\n"
"Hat FPU=%s\n"
"[Cache]\n"
"%s\n"
"[Fähigkeiten]\n"
"%s"
#: modules//devices/x86/processor.c:542 modules//devices/x86_64/processor.c:542
#, c-format
msgid "%s$CPU%d$%s=%.2fMHz\n"
msgstr "%s$CPU%d$%s=%.2fMHz\n"
#: modules//network.c:59
msgid "Interfaces"
msgstr "Schnittstellen"
#: modules//network.c:60
msgid "IP Connections"
msgstr "IP-Verbindungen"
#: modules//network.c:61
msgid "Routing Table"
msgstr "Routing-Tabelle"
#: modules//network.c:62
msgid "ARP Table"
msgstr "ARP-Tabelle"
#: modules//network.c:63
msgid "DNS Servers"
msgstr "DNS-Server"
#: modules//network.c:64
msgid "Statistics"
msgstr "Statistiken"
#: modules//network.c:65
msgid "Shared Directories"
msgstr "Freigegebene Verzeichnisse"
#: modules//network.c:300
#, c-format
msgid ""
"[ARP Table]\n"
"%s\n"
"[$ShellParam$]\n"
"ReloadInterval=3000\n"
"ColumnTitle$TextValue=IP Address\n"
"ColumnTitle$Value=Interface\n"
"ColumnTitle$Extra1=MAC Address\n"
"ShowColumnHeaders=true\n"
msgstr ""
"[ARP Table]\n"
"%s\n"
"[$ShellParam$]\n"
"ReloadInterval=3000\n"
"ColumnTitle$TextValue=IP-Adresse\n"
"ColumnTitle$Value=Schnittstelle\n"
"ColumnTitle$Extra1=MAC-Adresse\n"
"ShowColumnHeaders=true\n"
#: modules//network.c:321
#, c-format
msgid ""
"[Name servers]\n"
"%s\n"
"[$ShellParam$]\n"
"ColumnTitle$TextValue=IP Address\n"
"ColumnTitle$Value=Name\n"
"ShowColumnHeaders=true\n"
msgstr ""
"[DNS-Server]\n"
"%s\n"
"[$ShellParam$]\n"
"ColumnTitle$TextValue=IP-Adresse\n"
"ColumnTitle$Value=Name\n"
"ShowColumnHeaders=true\n"
#: modules//network.c:331
#, c-format
msgid ""
"[Connections]\n"
"%s\n"
"[$ShellParam$]\n"
"ReloadInterval=3000\n"
"ColumnTitle$TextValue=Local Address\n"
"ColumnTitle$Value=Protocol\n"
"ColumnTitle$Extra1=Foreign Address\n"
"ColumnTitle$Extra2=State\n"
"ShowColumnHeaders=true\n"
msgstr ""
"[Connections]\n"
"%s\n"
"[$ShellParam$]\n"
"ReloadInterval=3000\n"
"ColumnTitle$TextValue=Lokale Adresse\n"
"ColumnTitle$Value=Protokoll\n"
"ColumnTitle$Extra1=Fremde Adresse\n"
"ColumnTitle$Extra2=Status\n"
"ShowColumnHeaders=true\n"
#: modules//network.c:345
#, c-format
msgid ""
"%s\n"
"[$ShellParam$]\n"
"ReloadInterval=3000\n"
"ViewType=1\n"
"ColumnTitle$TextValue=Interface\n"
"ColumnTitle$Value=IP Address\n"
"ColumnTitle$Extra1=Sent\n"
"ColumnTitle$Extra2=Received\n"
"ShowColumnHeaders=true\n"
"%s"
msgstr ""
"%s\n"
"[$ShellParam$]\n"
"ReloadInterval=3000\n"
"ViewType=1\n"
"ColumnTitle$TextValue=Schnittstelle\n"
"ColumnTitle$Value=IP-Adresse\n"
"ColumnTitle$Extra1=Gesendet\n"
"ColumnTitle$Extra2=Empfangen\n"
"ShowColumnHeaders=true\n"
"%s"
#: modules//network.c:361
#, c-format
msgid ""
"[IP routing table]\n"
"%s\n"
"[$ShellParam$]\n"
"ViewType=0\n"
"ReloadInterval=3000\n"
"ColumnTitle$TextValue=Destination / Gateway\n"
"ColumnTitle$Value=Interface\n"
"ColumnTitle$Extra1=Flags\n"
"ColumnTitle$Extra2=Mask\n"
"ShowColumnHeaders=true\n"
msgstr ""
"[IP routing table]\n"
"%s\n"
"[$ShellParam$]\n"
"ViewType=0\n"
"ReloadInterval=3000\n"
"ColumnTitle$TextValue=Ziel / Vorgaberoute\n"
"ColumnTitle$Value=Schnittstelle\n"
"ColumnTitle$Extra1=Flags\n"
"ColumnTitle$Extra2=Netz-Maske\n"
"ShowColumnHeaders=true\n"
#: modules//network.c:399
msgid "Network"
msgstr "Netzwerk"
#: modules//network.c:432
msgid "Gathers information about this computer's network connection"
msgstr "Sammelt Informationen über die Netzwerk-Verbindung dieses Computers"
#: hardinfo//hardinfo.c:54
msgid ""
"Copyright (C) 2003-2009 Leandro A. F. Pereira. See COPYING for details.\n"
"\n"
msgstr ""
#: hardinfo//hardinfo.c:56
#, c-format
msgid ""
"Compile-time options:\n"
" Release version: %s (%s)\n"
" BinReloc enabled: %s\n"
" Data prefix: %s\n"
" Library prefix: %s\n"
" Compiled on: %s %s (%s)\n"
msgstr ""
#: hardinfo//hardinfo.c:74
#, c-format
msgid ""
"Failed to find runtime data.\n"
"\n"
"• Is HardInfo correctly installed?\n"
"• See if %s and %s exists and you have read permission."
msgstr ""
#: hardinfo//hardinfo.c:81
#, c-format
msgid ""
"Modules:\n"
"%-20s%-15s%-12s\n"
msgstr ""
#: hardinfo//hardinfo.c:82
msgid "File Name"
msgstr ""
#: hardinfo//hardinfo.c:82
msgid "Name"
msgstr "Name"
#: hardinfo//hardinfo.c:82
msgid "Version"
msgstr ""
#: hardinfo//hardinfo.c:135
#, c-format
msgid "Unknown benchmark ``%s'' or libbenchmark.so not loaded"
msgstr ""
#: hardinfo//hardinfo.c:163
msgid "Don't know what to do. Exiting."
msgstr ""
#: hardinfo//util.c:104 hardinfo//util.c:107 hardinfo//util.c:112
#, c-format
msgid "%d minute"
msgid_plural "%d minutes"
msgstr[0] "%d Minute"
msgstr[1] "%d Minuten"
#: hardinfo//util.c:106
#, c-format
msgid "%d hour, "
msgid_plural "%d hours, "
msgstr[0] "%d Stunde, "
msgstr[1] "%d Stunden, "
#: hardinfo//util.c:110
#, c-format
msgid "%d day, "
msgid_plural "%d days, "
msgstr[0] "%d Tag, "
msgstr[1] "%d Tage, "
#: hardinfo//util.c:111
#, c-format
msgid "%d hour and "
msgid_plural "%d hours and "
msgstr[0] "%d Stunde und "
msgstr[1] "%d Stunden und "
#: hardinfo//util.c:118
#, c-format
msgid "%.1f B"
msgstr "%.1f Byte(s)"
#: hardinfo//util.c:120
#, c-format
msgid "%.1f KiB"
msgstr "%.1f KiB"
#: hardinfo//util.c:122
#, c-format
msgid "%.1f MiB"
msgstr "%.1f MiB"
#: hardinfo//util.c:124
#, c-format
msgid "%.1f GiB"
msgstr "%.1f GiB"
#: hardinfo//util.c:126
#, c-format
msgid "%.1f TiB"
msgstr "%.1f TiB"
#: hardinfo//util.c:128
#, c-format
msgid "%.1f PiB"
msgstr "%.1f PiB"
#: hardinfo//util.c:342
msgid "Error"
msgstr "Fehler"
#: hardinfo//util.c:342 hardinfo//util.c:358
msgid "Warning"
msgstr "Warnung"
#: hardinfo//util.c:357
msgid "Fatal Error"
msgstr "Kritischer Fehler"
#: hardinfo//util.c:382
msgid "creates a report and prints to standard output"
msgstr ""
#: hardinfo//util.c:388
msgid "chooses a report format (text, html)"
msgstr ""
#: hardinfo//util.c:394
msgid "run benchmark; requires benchmark.so to be loaded"
msgstr ""
#: hardinfo//util.c:400
msgid "lists modules"
msgstr ""
#: hardinfo//util.c:406
msgid "specify module to load"
msgstr ""
#: hardinfo//util.c:412
msgid "automatically load module dependencies"
msgstr ""
#: hardinfo//util.c:419
msgid "run in XML-RPC server mode"
msgstr ""
#: hardinfo//util.c:426
msgid "shows program version and quit"
msgstr ""
#: hardinfo//util.c:431
msgid "- System Profiler and Benchmark tool"
msgstr "- System-Profiler und Benchmark-Werkzeug"
#: hardinfo//util.c:441
#, c-format
msgid ""
"Unrecognized arguments.\n"
"Try ``%s --help'' for more information.\n"
msgstr ""
#: hardinfo//util.c:507
#, c-format
msgid "Couldn't find a Web browser to open URL %s."
msgstr "Konnte keinen Web-Browser finden, um die URL %s zu öffnen."
#: hardinfo//util.c:854
#, c-format
msgid "Module \"%s\" depends on module \"%s\", load it?"
msgstr ""
#: hardinfo//util.c:877
#, c-format
msgid "Module \"%s\" depends on module \"%s\"."
msgstr ""
#: hardinfo//util.c:922
#, c-format
msgid "No module could be loaded. Check permissions on \"%s\" and try again."
msgstr ""
#: hardinfo//util.c:926
msgid ""
"No module could be loaded. Please use hardinfo -l to list all available "
"modules and try again with a valid module list."
msgstr ""
#: hardinfo//util.c:1102
#, c-format
msgid "Scanning: %s..."
msgstr ""
|