~ubuntu-branches/ubuntu/oneiric/kde-l10n-de/oneiric-proposed

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
# translation of system-config-printer-kde.po to german
# This file is distributed under the same license as the kdeadmin package.
#
# Copyright (c)
# Arndt Braun <arndtbraun@gmail.com>, 2008.
# Thomas Reitelbach <tr@erdfunkstelle.de>, 2008.
# Burkhard Lück <lueck@hube-lueck.de>, 2008, 2009, 2010.
# Panagiotis Papadopoulos <pano_90@gmx.net>, 2010.
# Johannes Obermayr <johannesobermayr@gmx.de>, 2010.
# Frederik Schwarzer <schwarzerf@gmail.com>, 2010, 2011.
msgid ""
msgstr ""
"Project-Id-Version: system-config-printer-kde\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2010-11-26 06:25+0100\n"
"PO-Revision-Date: 2011-01-09 05:57+0100\n"
"Last-Translator: Frederik Schwarzer <schwarzerf@gmail.com>\n"
"Language-Team: German <kde-i18n-de@kde.org>\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: Lokalize 1.1\n"
"Language: de\n"

#: optionwidgets.py:131
msgid "Conflicts with:"
msgstr "Konflikt mit:"

#: system-config-printer-kde.py:121
msgctxt "Printer state"
msgid "Idle"
msgstr "Inaktiv"

#: system-config-printer-kde.py:122
msgctxt "Printer state"
msgid "Processing"
msgstr "In Bearbeitung"

#: system-config-printer-kde.py:123
msgctxt "Printer state"
msgid "Busy"
msgstr "Beschäftigt"

#: system-config-printer-kde.py:124
msgctxt "Printer state"
msgid "Stopped"
msgstr "Angehalten"

#: system-config-printer-kde.py:223
msgid "Automatic rotation"
msgstr "Automatische Drehung"

#: system-config-printer-kde.py:497
msgid "Printer configuration - %1"
msgstr "Druckereinstellung – %1"

#: system-config-printer-kde.py:500
msgid "Connected to %1"
msgstr "Verbunden mit %1"

#: system-config-printer-kde.py:502
msgid "Not connected"
msgstr "Nicht verbunden"

#: system-config-printer-kde.py:612 system-config-printer-kde.py:2208
msgid "New Printer"
msgstr "Neuer Drucker"

#: system-config-printer-kde.py:613
msgid "Server Settings"
msgstr "Server-Einstellungen"

#: system-config-printer-kde.py:619
msgid "Local Printers"
msgstr "Lokale Drucker"

#: system-config-printer-kde.py:620
msgid "Local Classes"
msgstr "Lokale Klassen"

#: system-config-printer-kde.py:621
msgid "Remote Printers"
msgstr "Entfernte Drucker"

#: system-config-printer-kde.py:622
msgid "Remote Classes"
msgstr "Entfernte Klassen"

#: system-config-printer-kde.py:728
msgid "Installable Options"
msgstr "Installierbare Optionen"

#: system-config-printer-kde.py:729
msgid "Printer Options"
msgstr "Druckeroptionen"

#: system-config-printer-kde.py:731 system-config-printer-kde.py:733
msgctxt "Conflicted entry"
msgid "<b>%1</b>"
msgstr "<b>%1</b>"

#: system-config-printer-kde.py:770
msgid "Class now has no members. Proceed anyway?"
msgstr "Die Klasse ist leer, trotzdem fortfahren?"

#: system-config-printer-kde.py:770
msgid "Class Empty"
msgstr "Leere Klasse"

#: system-config-printer-kde.py:921
msgid "Test page submitted as job %1"
msgstr "Die Testseite wurde als Auftrag %1 angelegt."

#: system-config-printer-kde.py:921
msgctxt "Test page submitted"
msgid "Submitted"
msgstr "Übertragen"

#: system-config-printer-kde.py:927 system-config-printer-kde.py:959
msgid "<b>Not possible</b>"
msgstr "<b>Nicht möglich</b>"

#: system-config-printer-kde.py:928 system-config-printer-kde.py:960
msgid ""
"The remote server did not accept the print job, most likely because the "
"printer is not shared."
msgstr ""
"Der entfernte Server akzeptiert den Druckauftrag nicht, höchstwahrscheinlich "
"ist der Drucker nicht freigegeben."

#: system-config-printer-kde.py:949
msgctxt "Maintenance command submitted"
msgid "<b>Submitted</b>"
msgstr "<b>Übertragen</b>"

#: system-config-printer-kde.py:950
#, python-format
msgid "Maintenance command submitted as job %d"
msgstr "Wartungsbefehl wurde als Druckauftrag %d übertragen."

#: system-config-printer-kde.py:1075 system-config-printer-kde.py:1432
msgid "This is the default printer"
msgstr "Dies ist der Standarddrucker"

#: system-config-printer-kde.py:1083 system-config-printer-kde.py:1435
msgid "Make Default. (The current default is %1)"
msgstr "Als Standarddrucker setzen. (Der aktuelle Standarddrucker ist %1)"

#: system-config-printer-kde.py:1085 system-config-printer-kde.py:1437
msgid "Make Default. (There is no current default)"
msgstr "Als Standarddrucker setzen. (Es gibt aktuell keinen Standarddrucker)"

#: system-config-printer-kde.py:1161
msgid "<b>Error</b>"
msgstr "<b>Fehler</b>"

#: system-config-printer-kde.py:1162
msgid "Option '%1' has value '%2' and cannot be edited."
msgstr "Die Option „%1“ mit dem Wert „%2“ kann nicht geändert werden."

#: system-config-printer-kde.py:1165
msgid "Error"
msgstr "Fehler"

#. i18n: file: system-config-printer.ui:864
#. i18n: ectx: attribute (title), widget (QWidget, tab_2)
#: system-config-printer-kde.py:1206 ui.py:376
msgid "Options"
msgstr "Einstellungen"

#. i18n: file: system-config-printer.ui:804
#. i18n: ectx: attribute (title), widget (QWidget, tab_3)
#: system-config-printer-kde.py:1356 ui.py:370
msgid "Members"
msgstr "Mitglieder"

#: system-config-printer-kde.py:1394
#, python-format
msgid "Really delete printer %s?"
msgstr "Soll der Drucker %s wirklich entfernt werden?"

#: system-config-printer-kde.py:1396
#, python-format
msgid "Really delete class %s?"
msgstr "Soll die Klasse %s wirklich gelöscht werden?"

#: system-config-printer-kde.py:1578
msgid "Add User"
msgstr "Benutzer hinzufügen"

#: system-config-printer-kde.py:1578
msgid "Enter Username"
msgstr "Benutzername eingeben:"

#: system-config-printer-kde.py:1857 system-config-printer-kde.py:3745
msgid "The password may be incorrect."
msgstr "Das Passwort könnte falsch sein."

#: system-config-printer-kde.py:1857 system-config-printer-kde.py:1869
#: system-config-printer-kde.py:3745
msgid "Not authorized"
msgstr "Nicht autorisiert"

#: system-config-printer-kde.py:1859 system-config-printer-kde.py:3747
msgid "There was an error during the CUPS operation: '%1'."
msgstr "Bei der Operation „%1“ trat in CUPS ein Fehler auf."

#: system-config-printer-kde.py:1860 system-config-printer-kde.py:1886
#: system-config-printer-kde.py:3748
msgid "CUPS server error"
msgstr "CUPS-Serverfehler"

#: system-config-printer-kde.py:1866
msgid ""
"The password may be incorrect, or the server may be configured to deny "
"remote administration."
msgstr ""
"Das Passwort ist falsch oder der Server lässt keine entfernte Einrichtung zu."

#: system-config-printer-kde.py:1872
msgctxt "HTTP error"
msgid "Bad request"
msgstr "Fehlerhafte Anfrage"

#: system-config-printer-kde.py:1874
msgctxt "HTTP error"
msgid "Not found"
msgstr "Nicht gefunden"

#: system-config-printer-kde.py:1876
msgctxt "HTTP error"
msgid "Request timeout"
msgstr "Zeitüberschreitung bei der Anfrage"

#: system-config-printer-kde.py:1878
msgctxt "HTTP error"
msgid "Upgrade required"
msgstr "Aktualisierung erforderlich"

#: system-config-printer-kde.py:1880
msgctxt "HTTP error"
msgid "Server error"
msgstr "Serverfehler"

#: system-config-printer-kde.py:1882
msgctxt "HTTP error"
msgid "Not connected"
msgstr "Nicht verbunden"

#: system-config-printer-kde.py:1884
msgctxt "HTTP error"
msgid "status %1"
msgstr "Status %1"

#: system-config-printer-kde.py:1886
msgid "There was an HTTP error: %1."
msgstr "Folgender HTTP-Fehler ist aufgetreten: %1."

#: system-config-printer-kde.py:1932
msgctxt "Printer state"
msgid "Unknown"
msgstr "Unbekannt"

#: system-config-printer-kde.py:1971
msgid "Cancel Tests"
msgstr "Tests beenden"

#. i18n: file: system-config-printer.ui:575
#. i18n: ectx: property (text), widget (KPushButton, btnPrintTestPage)
#: system-config-printer-kde.py:1975 ui.py:328
msgid "Print Test Page"
msgstr "Testseite drucken"

#: system-config-printer-kde.py:2217
msgid "New Class"
msgstr "Neue Klasse"

#: system-config-printer-kde.py:2222
msgid "Change Device URI"
msgstr "Geräte-URI ändern"

#: system-config-printer-kde.py:2231
msgid "Change Driver"
msgstr "Treiber ändern"

#: system-config-printer-kde.py:2330 system-config-printer-kde.py:2608
#: system-config-printer-kde.py:2787
msgid "<b>Searching</b>"
msgstr "<b>Suche läuft</b>"

#: system-config-printer-kde.py:2331 system-config-printer-kde.py:2609
msgid "Searching for drivers"
msgstr "Suchen nach Treibern"

#: system-config-printer-kde.py:2417
msgid ""
"This printer supports both printing and sending faxes.  Which functionality "
"should be used for this queue?"
msgstr ""
"Der Drucker unterstützt das Drucken und das Senden von Faxen. Welche "
"Funktionalität soll für diese Warteschlange genutzt werden?"

#: system-config-printer-kde.py:2423
msgid "Printer"
msgstr "Drucker"

#: system-config-printer-kde.py:2424
msgid "Fax"
msgstr "Fax"

#: system-config-printer-kde.py:2788
msgid "Searching for printers"
msgstr "Suche nach Druckern läuft"

#: system-config-printer-kde.py:3053
msgctxt "Other device"
msgid "Other"
msgstr "Andere"

#: system-config-printer-kde.py:3055
msgctxt "Current device"
msgid "%1 (Current)"
msgstr "%1 (Aktuell)"

#: system-config-printer-kde.py:3142
msgid "This print share is accessible."
msgstr "Dieser freigegebene Drucker ist erreichbar."

#: system-config-printer-kde.py:3143
msgid "Print Share Verified"
msgstr "Freigegebener Drucker wurde überprüft"

#: system-config-printer-kde.py:3145
msgid "This print share is not accessible."
msgstr "Dieser freigegebene Drucker ist nicht erreichbar."

#: system-config-printer-kde.py:3146
msgid "Inaccessible"
msgstr "Nicht erreichbar"

#: system-config-printer-kde.py:3161
msgid "A printer connected to the parallel port."
msgstr "Ein an den Parallelport angeschlossener Drucker."

#: system-config-printer-kde.py:3163
msgid "A printer connected to a USB port."
msgstr "Ein an den USB-Port angeschlossener Drucker."

#: system-config-printer-kde.py:3165
msgid ""
"HPLIP software driving a printer, or the printer function of a multi-"
"function device."
msgstr ""
"Ein mittels HPLIP betriebener Drucker oder die Druckfunktion eines "
"Multifunktionsgerätes."

#: system-config-printer-kde.py:3168
msgid ""
"HPLIP software driving a fax machine, or the fax function of a multi-"
"function device."
msgstr ""
"Ein mittels HPLIP betriebenes Fax oder die Faxfunktion eines "
"Multifunktionsgerätes."

#: system-config-printer-kde.py:3171
msgid "Local printer detected by the Hardware Abstraction Layer (HAL)."
msgstr ""
"Ein von der Hardware-Abstraktionsschicht (HAL) erkannter, lokaler Drucker."

#: system-config-printer-kde.py:3473
msgctxt "Recommended driver"
msgid "%1 (recommended)"
msgstr "%1 (empfohlen)"

#: system-config-printer-kde.py:3510
msgid "Database error"
msgstr "Datenbankfehler"

#: system-config-printer-kde.py:3519
msgid "You will need to install the '%1' package in order to use this driver."
msgstr ""
"Sie müssen das Paket „%1“ installieren, damit Sie den Drucker nutzen können."

#: system-config-printer-kde.py:3523
msgid "The '%1' driver cannot be used with printer '%2 %3'."
msgstr "Der Treiber „%1“ kann nicht für den Drucker „%2 %3“ verwendet werden."

#: system-config-printer-kde.py:3527
msgid "PPD error"
msgstr "PPD-Fehler"

#: system-config-printer-kde.py:3529
msgid "Failed to read PPD file.  Possible reason follows:"
msgstr "Fehler beim Lesen der PPD-Datei. Mögliche Gründe dafür sind:"

#: system-config-printer-kde.py:3540
msgid "Downloadable drivers"
msgstr "Herunterladbare Treiber"

#: system-config-printer-kde.py:3541
msgid "Support for downloadable drivers is not yet completed."
msgstr ""
"Die Unterstützung für herunterladbare Treiber ist noch nicht verfügbar."

#: system-config-printer-kde.py:3545
msgctxt "Error title"
msgid "<b>%1</b>"
msgstr "<b>%1</b>"

#: system-config-printer-kde.py:3612
msgid "<b>Adding</b>"
msgstr "<b>Hinzufügen</b>"

#: system-config-printer-kde.py:3613
msgid "Adding printer"
msgstr "Drucker hinzufügen"

#: system-config-printer-kde.py:3786
msgid "Install driver"
msgstr "Treiber installieren"

#: system-config-printer-kde.py:3787
msgid "Printer '%1' requires the %2 package but it is not currently installed."
msgstr ""
"Für den Drucker „%1“ ist das Paket %2 erforderlich, welches derzeit nicht "
"installiert ist."

#: system-config-printer-kde.py:3793
msgid "Missing driver"
msgstr "Fehlender Treiber"

#: system-config-printer-kde.py:3794
msgid ""
"Printer '%1' requires the '%2' program but it is not currently installed.  "
"Please install it before using this printer."
msgstr ""
"Für den Drucker „%1“ ist das Paket %2 erforderlich, welches derzeit nicht "
"installiert ist. Bitte installieren Sie es, bevor Sie den Drucker verwenden."

#: system-config-printer-kde.py:3870
msgid "Share"
msgstr "Freigabe"

#: system-config-printer-kde.py:3870
msgid "Comment"
msgstr "Kommentar"

#: system-config-printer-kde.py:3884
msgid "Scanning..."
msgstr "Durchsuchen ..."

#: system-config-printer-kde.py:3925
msgid "Not possible"
msgstr "Nicht möglich"

#: system-config-printer-kde.py:3926
#, python-format
msgid "It is not possible to obtain a list of queues from `%s'."
msgstr ""
"Es ist nicht möglich, eine Liste der Druckaufträge in der Warteschlange von "
"„%s“ zu erhalten."

#: system-config-printer-kde.py:3928
msgid ""
"Obtaining a list of queues is a CUPS extension to IPP.  Network printers do "
"not support it."
msgstr ""
"Die Ausgabe der Liste der Druckaufträge in der Warteschlange ist eine "
"Erweiterung von CUPS zu IPP. Diese Funktion wird von Netzwerkdruckern nicht "
"unterstützt."

#: system-config-printer-kde.py:3931
msgid "No queues"
msgstr "Keine Warteschlangen"

#: system-config-printer-kde.py:3932
msgid "There are no queues available."
msgstr "Es sind keine Warteschlangen verfügbar."

#. i18n: file: ipp-browse-dialog.ui:25
#. i18n: ectx: property (windowTitle), widget (QDialog, IPPBrowseDialog)
#: ui.py:3
msgid "IPP Browser"
msgstr "IPP-Browser"

#. i18n: file: ipp-browse-dialog.ui:43
#. i18n: ectx: property (text), widget (KPushButton, btnIPPBrowseRefresh)
#. i18n: file: smb-browse-dialog.ui:43
#. i18n: ectx: property (text), widget (KPushButton, btnSMBBrowseRefresh)
#: ui.py:6 ui.py:203
msgid "Refresh"
msgstr "Aktualisieren"

#. i18n: file: ipp-browse-dialog.ui:63
#. i18n: ectx: property (text), widget (KPushButton, btnIPPBrowseOk)
#. i18n: file: smb-browse-dialog.ui:63
#. i18n: ectx: property (text), widget (KPushButton, btnSMBBrowseOk)
#: ui.py:9 ui.py:206
msgid "Ok"
msgstr "OK"

#. i18n: file: ipp-browse-dialog.ui:66
#. i18n: ectx: property (shortcut), widget (KPushButton, btnIPPBrowseOk)
#. i18n: file: smb-browse-dialog.ui:66
#. i18n: ectx: property (shortcut), widget (KPushButton, btnSMBBrowseOk)
#: ui.py:12 ui.py:209
msgid "Ctrl+O"
msgstr "Strg+O"

#. i18n: file: ipp-browse-dialog.ui:73
#. i18n: ectx: property (text), widget (KPushButton, btnIPPBrowseCancel)
#. i18n: file: new-printer.ui:934
#. i18n: ectx: property (text), widget (QPushButton, btnNPCancel)
#. i18n: file: smb-browse-dialog.ui:73
#. i18n: ectx: property (text), widget (KPushButton, btnSMBBrowseCancel)
#: ui.py:15 ui.py:197 ui.py:212
msgid "Cancel"
msgstr "Abbrechen"

#. i18n: file: ipp-browse-dialog.ui:105
#. i18n: ectx: property (text), widget (QTreeWidget, twIPPBrowser)
#. i18n: file: ipp-browse-dialog.ui:110
#. i18n: ectx: property (text), widget (QTreeWidget, twIPPBrowser)
#. i18n: file: smb-browse-dialog.ui:105
#. i18n: ectx: property (text), widget (QTreeWidget, twSMBBrowser)
#. i18n: file: smb-browse-dialog.ui:110
#. i18n: ectx: property (text), widget (QTreeWidget, twSMBBrowser)
#. i18n: file: system-config-printer.ui:764
#. i18n: ectx: property (text), widget (QTreeWidget, tvPUsers)
#. i18n: file: system-config-printer.ui:1021
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJONumberUp)
#: ui.py:18 ui.py:21 ui.py:215 ui.py:218 ui.py:361 ui.py:423
msgid "1"
msgstr "1"

#. i18n: file: new-printer.ui:14
#. i18n: ectx: property (windowTitle), widget (QDialog, form)
#: ui.py:24
msgid "Dialog"
msgstr "Dialog"

#. i18n: file: new-printer.ui:31
#. i18n: ectx: property (text), widget (QLabel, label)
#: ui.py:27
msgid "Printer Name"
msgstr "Druckername"

#. i18n: file: new-printer.ui:41
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: file: new-printer.ui:95
#. i18n: ectx: property (text), widget (QLabel, label_8)
#: ui.py:30 ui.py:39
msgid "Description"
msgstr "Beschreibung"

#. i18n: file: new-printer.ui:51
#. i18n: ectx: property (text), widget (QLabel, label_3)
#: ui.py:33
msgid "Location"
msgstr "Standort"

#. i18n: file: new-printer.ui:78
#. i18n: ectx: property (text), widget (QLabel, label_7)
#: ui.py:36
msgid "Select Connection"
msgstr "Anschluss wählen"

#. i18n: file: new-printer.ui:102
#. i18n: ectx: property (text), widget (QLabel, lblNPDeviceDescription)
#: ui.py:42
msgid "Device Description"
msgstr "Treiberbeschreibung"

#. i18n: file: new-printer.ui:126
#. i18n: ectx: property (text), widget (QLabel, label_9)
#: ui.py:45
msgid "Enter Device URI"
msgstr "Geräte-URI eingeben"

#. i18n: file: new-printer.ui:153
#. i18n: ectx: property (text), widget (QLabel, label_10)
#: ui.py:48
msgid "Location of the Network Printer"
msgstr "Standort des Netzwerkdruckers"

#. i18n: file: new-printer.ui:160
#. i18n: ectx: property (text), widget (QLabel, label_11)
#. i18n: file: new-printer.ui:204
#. i18n: ectx: property (text), widget (QLabel, label_14)
#. i18n: file: new-printer.ui:292
#. i18n: ectx: property (text), widget (QLabel, label_18)
#: ui.py:51 ui.py:60 ui.py:81
msgid "Host:"
msgstr "Rechner:"

#. i18n: file: new-printer.ui:170
#. i18n: ectx: property (text), widget (QLabel, label_12)
#: ui.py:54
msgid "Port number:"
msgstr "Portnummer:"

#. i18n: file: new-printer.ui:197
#. i18n: ectx: property (text), widget (QLabel, label_13)
#: ui.py:57
msgid "IPP Printer"
msgstr "IPP-Drucker"

#. i18n: file: new-printer.ui:217
#. i18n: ectx: property (text), widget (QPushButton, btnIPPFindQueue)
#: ui.py:63
msgid "Find Queue..."
msgstr "Warteschlange suchen ..."

#. i18n: file: new-printer.ui:224
#. i18n: ectx: property (text), widget (QLabel, label_15)
#. i18n: file: new-printer.ui:318
#. i18n: ectx: property (text), widget (QLabel, label_19)
#: ui.py:66 ui.py:90
msgid "Queue:"
msgstr "Warteschlange:"

#. i18n: file: new-printer.ui:234
#. i18n: ectx: property (text), widget (QLabel, label_34)
#: ui.py:69
msgid "URI:"
msgstr "URI:"

#. i18n: file: new-printer.ui:241
#. i18n: ectx: property (text), widget (QLabel, lblIPPURI)
#: ui.py:72
msgid "..."
msgstr "..."

#. i18n: file: new-printer.ui:248
#. i18n: ectx: property (text), widget (QPushButton, btnIPPVerify)
#: ui.py:75
msgid "Verify..."
msgstr "Prüfen ..."

#. i18n: file: new-printer.ui:285
#. i18n: ectx: property (text), widget (QLabel, label_17)
#: ui.py:78
msgid "Location of the LPD network printer"
msgstr "Standort des LPD-Netzwerkdruckers"

#. i18n: file: new-printer.ui:303
#. i18n: ectx: property (text), item, widget (QComboBox, cmbentNPTLpdHost)
#: ui.py:84
msgid "localhost"
msgstr "localhost"

#. i18n: file: new-printer.ui:311
#. i18n: ectx: property (text), widget (QPushButton, btnNPTLpdProbe)
#: ui.py:87
msgctxt "Try to discover network printers"
msgid "Probe"
msgstr "Suchen"

#. i18n: file: new-printer.ui:379
#. i18n: ectx: property (text), widget (QLabel, label_22)
#: ui.py:95
msgid "SMB Printer"
msgstr "Freigegebener Drucker"

#. i18n: file: new-printer.ui:396
#. i18n: ectx: property (text), widget (QPushButton, btnSMBBrowse)
#. i18n: file: new-printer.ui:628
#. i18n: ectx: property (text), widget (QPushButton, filechooserPPDButton)
#: ui.py:99 ui.py:135
msgid "Browse"
msgstr "Durchsuchen"

#. i18n: file: new-printer.ui:403
#. i18n: ectx: property (text), widget (QLabel, lblSMBHint)
#: ui.py:102
msgid "<i>smb://[workgroup/]server[:port]/printer</i>"
msgstr "<i>smb://[Arbeitsgruppe/]Server[:Port]/Drucker</i>"

#. i18n: file: new-printer.ui:410
#. i18n: ectx: property (text), widget (QLabel, label_16)
#: ui.py:105
msgid "Authentication"
msgstr "Authentifizierung"

#. i18n: file: new-printer.ui:417
#. i18n: ectx: property (text), widget (QRadioButton, rbtnSMBAuthPrompt)
#: ui.py:108
msgid "Prompt user if authentication is required"
msgstr "Benutzer bei Bedarf nach den Anmeldedetails fragen"

#. i18n: file: new-printer.ui:424
#. i18n: ectx: property (text), widget (QRadioButton, rbtnSMBAuthSet)
#: ui.py:111
msgid "Set authentication details now"
msgstr "Anmeldedetails jetzt festlegen"

#. i18n: file: new-printer.ui:473
#. i18n: ectx: property (text), widget (QLabel, label_26)
#: ui.py:114
msgid "Password:"
msgstr "Passwort:"

#. i18n: file: new-printer.ui:496
#. i18n: ectx: property (text), widget (QLabel, label_25)
#: ui.py:117
msgid "Username:"
msgstr "Benutzername:"

#. i18n: file: new-printer.ui:540
#. i18n: ectx: property (text), widget (QPushButton, btnSMBVerify)
#: ui.py:120
msgid "Verify"
msgstr "Bestätigung"

#. i18n: file: new-printer.ui:588
#. i18n: ectx: property (text), widget (QRadioButton, rbtnNPFoomatic)
#: ui.py:123
msgid "Select printer from database"
msgstr "Wählen Sie einen Drucker aus der Datenbank."

#. i18n: file: new-printer.ui:595
#. i18n: ectx: property (text), widget (QLabel, label_27)
#: ui.py:126
msgid ""
"The foomatic printer database contains various manufacturer provided "
"PostScript Printer Description (PPD) files and also can generate PPD files "
"for a large number of (non PostScript) printers. But in general manufacturer "
"provided PPD files provide better access to the specific features of the "
"printer."
msgstr ""
"Die foomatic-Druckerdatenbank enthält für viele verschiedene Druckermodelle "
"PPD-Dateien und kann diese auch selbst generieren. In der Regel bieten "
"allerdings die vom Druckerhersteller bereitgestellten PPD-Dateien eine "
"bessere Unterstützung für den jeweiligen Drucker und seine Funktionen."

#. i18n: file: new-printer.ui:608
#. i18n: ectx: property (text), widget (QRadioButton, rbtnNPPPD)
#: ui.py:129
msgid "Provide PPD file"
msgstr "PPD-Datei bereitstellen"

#. i18n: file: new-printer.ui:615
#. i18n: ectx: property (text), widget (QLabel, label_28)
#: ui.py:132
msgid ""
"<qt>PostScript Printer Description (PPD) files can often be found on the "
"driver disk that comes with the printer. For PostScript printers they are "
"often part of the Windows<sup>®</sup> driver.</qt>"
msgstr ""
"<qt>PPD-Dateien werden oft mit der zum Drucker gehörigen Treiber-CD "
"mitgeliefert. Für PostScript-Drucker sind sie oft Bestandteil des "
"Windows<sup>®</sup>-Treibers.</qt>"

#. i18n: file: new-printer.ui:638
#. i18n: ectx: property (text), widget (QRadioButton, rbtnNPDownloadableDriverSearch)
#: ui.py:138
msgid "Search for a printer driver to download"
msgstr "Nach einem herunterladbaren Druckertreiber suchen"

#. i18n: file: new-printer.ui:645
#. i18n: ectx: property (text), widget (QLabel, label_29)
#: ui.py:141
msgid "Enter some search terms for the model of your printer."
msgstr "Geben Sie einige Suchbegriffe zu Ihrem Druckermodell ein."

#. i18n: file: new-printer.ui:652
#. i18n: ectx: property (text), widget (QLabel, label_30)
#: ui.py:144
msgid "Search terms:"
msgstr "Suchbegriffe:"

#. i18n: file: new-printer.ui:662
#. i18n: ectx: property (text), widget (QPushButton, btnNPDownloadableDriverSearch)
#: ui.py:147
msgid "Search"
msgstr "Suchen"

#. i18n: file: new-printer.ui:669
#. i18n: ectx: property (text), widget (QLabel, label_31)
#: ui.py:150
msgid "Printer model:"
msgstr "Druckermodell:"

#. i18n: file: new-printer.ui:705
#. i18n: ectx: property (text), widget (QPushButton, btnNPPDComments)
#: ui.py:153
msgid "Comments"
msgstr "Kommentare"

#. i18n: file: new-printer.ui:712
#. i18n: ectx: property (text), widget (QLabel, label_32)
#: ui.py:156
msgid "Models:"
msgstr "Modelle:"

#. i18n: file: new-printer.ui:719
#. i18n: ectx: property (text), widget (QLabel, label_33)
#: ui.py:159
msgid "Driver:"
msgstr "Treiber:"

#. i18n: file: new-printer.ui:730
#. i18n: ectx: property (text), widget (QLabel, label_4)
#: ui.py:162
msgid "Printers to be members of this class"
msgstr "Drucker, die Mitglieder dieser Klasse werden sollen"

#. i18n: file: new-printer.ui:739
#. i18n: ectx: property (text), widget (QLabel, label_6)
#: ui.py:165
msgid "Members of this class"
msgstr "Mitglieder dieser Klasse"

#. i18n: file: new-printer.ui:790
#. i18n: ectx: property (text), widget (QLabel, label_5)
#: ui.py:168
msgid "Others"
msgstr "Andere"

#. i18n: file: new-printer.ui:809
#. i18n: ectx: property (text), widget (QLabel, label_24)
#: ui.py:171
msgid "Try to transfer the current settings"
msgstr "Versuchen, die aktuellen Einstellungen zu übertragen"

#. i18n: file: new-printer.ui:816
#. i18n: ectx: property (text), widget (QRadioButton, rbtnChangePPDasIs)
#: ui.py:174
msgid "Use the new PPD (Postscript Printer Description) as is."
msgstr "Die neue PPD-Datei im aktuellen Zustand verwenden."

#. i18n: file: new-printer.ui:823
#. i18n: ectx: property (text), widget (QLabel, label_37)
#: ui.py:177
msgid ""
"This way all current option settings will be lost. The default settings of "
"the new PPD will be used. "
msgstr ""
"Hierbei gehen alle aktuellen Einstellungen verloren und werden durch die "
"Einstellungen der PPD-Datei ersetzt."

#. i18n: file: new-printer.ui:833
#. i18n: ectx: property (text), widget (QRadioButton, rbtnChangePPDKeepSettings)
#: ui.py:180
msgid "Try to copy the option settings over from the old PPD. "
msgstr "Options-Einstellungen aus der alten PPD-Datei kopieren."

#. i18n: file: new-printer.ui:840
#. i18n: ectx: property (text), widget (QLabel, label_38)
#: ui.py:183
msgid ""
"This is done by assuming that options with the same name do have the same "
"meaning. Settings of options that are not present in the new PPD will be "
"lost and options only present in the new PPD will be set to default."
msgstr ""
"Es wird angenommen, dass Einstellungen mit demselben Namen auch dieselbe "
"Bedeutung haben. Einstellungen, die nicht in der neuen PPD-Datei vorhanden "
"sind, gehen verloren und die nur in der neuen PPD-Datei vorhandenen "
"Einstellungen werden auf die Voreinstellung gesetzt."

#. i18n: file: new-printer.ui:913
#. i18n: ectx: property (text), widget (QPushButton, btnNPBack)
#: ui.py:188
msgid "Back"
msgstr "Zurück"

#. i18n: file: new-printer.ui:920
#. i18n: ectx: property (text), widget (QPushButton, btnNPForward)
#: ui.py:191
msgid "Forward"
msgstr "Weiter"

#. i18n: file: new-printer.ui:927
#. i18n: ectx: property (text), widget (QPushButton, btnNPApply)
#: ui.py:194
msgid "OK"
msgstr "OK"

#. i18n: file: smb-browse-dialog.ui:25
#. i18n: ectx: property (windowTitle), widget (QDialog, SMBBrowseDialog)
#: ui.py:200
msgid "SMB Browser"
msgstr "SMB-Browser"

#. i18n: file: system-config-printer.ui:64
#. i18n: ectx: property (text), widget (QLabel, label)
#: ui.py:221
msgid "Add New Printer"
msgstr "Drucker hinzufügen"

#. i18n: file: system-config-printer.ui:73
#. i18n: ectx: property (text), widget (KPushButton, btnNewPrinter)
#: ui.py:224
msgid "New Local Printer"
msgstr "Neuer lokaler Drucker"

#. i18n: file: system-config-printer.ui:87
#. i18n: ectx: property (text), widget (QLabel, newPrinterLabel)
#: ui.py:227
msgid ""
"Add a new printer which is directly connected to your\n"
"computer."
msgstr ""
"Fügt einen neuen Drucker hinzu, der direkt an Ihren Rechner\n"
"angeschlossen ist."

#. i18n: file: system-config-printer.ui:94
#. i18n: ectx: property (text), widget (KPushButton, btnNewPrinterNetwork)
#: ui.py:231
msgid "New Network Printer"
msgstr "Neuer Drucker"

#. i18n: file: system-config-printer.ui:108
#. i18n: ectx: property (text), widget (QLabel, newPrinterNetworkLabel)
#: ui.py:234
msgid ""
"Add a new printer which is connected to your home\n"
"network or on the Internet."
msgstr ""
"Fügt einen neuen Drucker hinzu, der an Ihren Rechner,\n"
"an Ihr Netzwerk oder das Internet angeschlossen ist."

#. i18n: file: system-config-printer.ui:115
#. i18n: ectx: property (text), widget (KPushButton, btnNewPrinterSpecial)
#: ui.py:238
msgid "New Special Printer"
msgstr "Neuer spezieller Drucker"

#. i18n: file: system-config-printer.ui:129
#. i18n: ectx: property (text), widget (QLabel, newPrinterSpecialLabel)
#: ui.py:241
msgid ""
"Add a new special printer such as a Fax or PDF by\n"
"specifying an executable command."
msgstr ""
"Fügt einen neuen speziellen Drucker wie ein Fax oder\n"
"die Ausgabe in eine PDF-Datei hinzu, indem für diese Drucker\n"
"ein ausführbarer Befehl angegeben wird."

#. i18n: file: system-config-printer.ui:136
#. i18n: ectx: property (text), widget (KPushButton, btnNewClass)
#: ui.py:245
msgid "New Printer Class"
msgstr "Neue Druckerklasse"

#. i18n: file: system-config-printer.ui:150
#. i18n: ectx: property (text), widget (QLabel, label_5)
#: ui.py:248
msgid ""
"Add a new printer class to specify a group of computers to\n"
"print to."
msgstr ""
"Fügt eine neue Druckerklasse hinzu, um eine Gruppe von Druckern\n"
"festzulegen."

#. i18n: file: system-config-printer.ui:178
#. i18n: ectx: property (text), widget (QLabel, label_6)
#: ui.py:252
msgid "Basic Server Settings"
msgstr "Grundlegende Server-Einstellungen"

#. i18n: file: system-config-printer.ui:208
#. i18n: ectx: property (text), widget (QCheckBox, chkServerBrowse)
#: ui.py:255
msgid "Show printers shared by other systems"
msgstr "Freigegebene Drucker auf anderen Rechnern anzeigen"

#. i18n: file: system-config-printer.ui:215
#. i18n: ectx: property (text), widget (QCheckBox, chkServerShare)
#: ui.py:258
msgid "Share published printers connected to this system"
msgstr "Freigegebene Drucker anzeigen, die mit diesem Rechner verbunden sind"

#. i18n: file: system-config-printer.ui:244
#. i18n: ectx: property (text), widget (QCheckBox, chkServerShareAny)
#: ui.py:261
msgid "Allow printing from the Internet"
msgstr "Drucken aus dem Internet zulassen"

#. i18n: file: system-config-printer.ui:251
#. i18n: ectx: property (text), widget (QCheckBox, chkServerRemoteAdmin)
#: ui.py:264
msgid "Allow remote administration"
msgstr "Einrichtung über das Netzwerk zulassen"

#. i18n: file: system-config-printer.ui:258
#. i18n: ectx: property (text), widget (QCheckBox, chkServerAllowCancelAll)
#: ui.py:267
msgid "Allow users to cancel any job (not just their own)"
msgstr "Benutzer dürfen alle Druckaufträge abbrechen (nicht nur die eigenen)"

#. i18n: file: system-config-printer.ui:265
#. i18n: ectx: property (text), widget (QCheckBox, chkServerLogDebug)
#: ui.py:270
msgid "Save debugging information for troubleshooting"
msgstr "Informationen zur Fehlersuche speichern"

#. i18n: file: system-config-printer.ui:299
#. i18n: ectx: property (text), widget (QLabel, printerNameLabel)
#: ui.py:273
msgid "My Printer"
msgstr "Mein Drucker"

#. i18n: file: system-config-printer.ui:331
#. i18n: ectx: attribute (title), widget (QWidget, settings)
#: ui.py:276
msgid "Settings"
msgstr "Einstellungen"

#. i18n: file: system-config-printer.ui:343
#. i18n: ectx: property (text), widget (QLabel, label_3)
#: ui.py:279
msgid "Printer Description"
msgstr "Druckerbeschreibung"

#. i18n: file: system-config-printer.ui:352
#. i18n: ectx: property (text), widget (QLabel, lblPName)
#: ui.py:282
msgid "Printer Name:"
msgstr "Druckername:"

#. i18n: file: system-config-printer.ui:365
#. i18n: ectx: property (text), widget (QLabel, lblPLocation)
#: ui.py:285
msgid "Location:"
msgstr "Standort:"

#. i18n: file: system-config-printer.ui:378
#. i18n: ectx: property (text), widget (QLabel, lblPDescription)
#: ui.py:288
msgid "Printer Description:"
msgstr "Druckerbeschreibung:"

#. i18n: file: system-config-printer.ui:391
#. i18n: ectx: property (text), widget (QLabel, lblPDevice2)
#: ui.py:291
msgid "Device URI:"
msgstr "Geräte-URI:"

#. i18n: file: system-config-printer.ui:429
#. i18n: ectx: property (text), widget (QLabel, label_7)
#: ui.py:295
msgid "Driver Details"
msgstr "Details zum Druckertreiber"

#. i18n: file: system-config-printer.ui:444
#. i18n: ectx: property (text), widget (QLabel, lblPMakeModel2)
#: ui.py:298
msgid "Printer Model:"
msgstr "Druckermodell:"

#. i18n: file: system-config-printer.ui:460
#. i18n: ectx: property (text), widget (QLabel, lblPMakeModel)
#. i18n: file: system-config-printer.ui:499
#. i18n: ectx: property (text), widget (QLabel, lblPState)
#: ui.py:301 ui.py:310
msgid "-"
msgstr "-"

#. i18n: file: system-config-printer.ui:470
#. i18n: ectx: property (text), widget (KPushButton, btnChangePPD)
#: ui.py:304
msgid "Change..."
msgstr "Ändern ..."

#. i18n: file: system-config-printer.ui:483
#. i18n: ectx: property (text), widget (QLabel, lblPType2)
#: ui.py:307
msgid "Printer State:"
msgstr "Druckerstatus:"

#. i18n: file: system-config-printer.ui:521
#. i18n: ectx: property (text), widget (QLabel, label_12)
#: ui.py:313
msgid "Printer Status"
msgstr "Druckerstatus"

#. i18n: file: system-config-printer.ui:530
#. i18n: ectx: property (text), widget (QCheckBox, chkPEnabled)
#: ui.py:316
msgid "enable"
msgstr "Eingeschaltet"

#. i18n: file: system-config-printer.ui:537
#. i18n: ectx: property (text), widget (QCheckBox, chkPAccepting)
#: ui.py:319
msgid "accepting"
msgstr "Akzeptiert Aufträge"

#. i18n: file: system-config-printer.ui:544
#. i18n: ectx: property (text), widget (QCheckBox, chkPShared)
#: ui.py:322
msgid "sharing"
msgstr "Freigegeben"

#. i18n: file: system-config-printer.ui:551
#. i18n: ectx: property (text), widget (QLabel, lblNotPublished)
#: ui.py:325
msgid "<i>Not published, see server settings</i>"
msgstr "<i>Nicht veröffentlicht, siehe Server-Einstellungen</i>"

#. i18n: file: system-config-printer.ui:582
#. i18n: ectx: property (text), widget (KPushButton, btnSelfTest)
#: ui.py:331
msgid "Print Self Test"
msgstr "Selbsttest drucken"

#. i18n: file: system-config-printer.ui:589
#. i18n: ectx: property (text), widget (KPushButton, btnCleanHeads)
#: ui.py:334
msgid "Clean Print Heads"
msgstr "Druckköpfe reinigen"

#. i18n: file: system-config-printer.ui:613
#. i18n: ectx: property (text), widget (KPushButton, btnDelete)
#: ui.py:337
msgid "Remove Printer"
msgstr "Drucker entfernen "

#. i18n: file: system-config-printer.ui:636
#. i18n: ectx: attribute (title), widget (QWidget, policies)
#: ui.py:340
msgid "Policies"
msgstr "Regeln"

#. i18n: file: system-config-printer.ui:648
#. i18n: ectx: property (text), widget (QLabel, label_8)
#: ui.py:343
msgid "Banner Settings"
msgstr "Trennseiten-Einstellungen"

#. i18n: file: system-config-printer.ui:663
#. i18n: ectx: property (text), widget (QLabel, label_10)
#: ui.py:346
msgid "Starting Banner:"
msgstr "Vorspann:"

#. i18n: file: system-config-printer.ui:695
#. i18n: ectx: property (text), widget (QLabel, label_11)
#: ui.py:349
msgid "Ending Banner:"
msgstr "Nachspann:"

#. i18n: file: system-config-printer.ui:736
#. i18n: ectx: property (text), widget (QLabel, label_9)
#: ui.py:352
msgid "User and Group Permissions"
msgstr "Berechtigungen für Benutzer und Gruppe"

#. i18n: file: system-config-printer.ui:743
#. i18n: ectx: property (text), widget (QRadioButton, rbtnPAllow)
#: ui.py:355
msgid "Allow printing for everyone except these users."
msgstr "Drucken zulassen für alle außer diesen Benutzern."

#. i18n: file: system-config-printer.ui:750
#. i18n: ectx: property (text), widget (QRadioButton, rbtnPDeny)
#: ui.py:358
msgid "Deny printing for everyone except these users"
msgstr "Drucken ablehnen für alle außer diesen Benutzern."

#. i18n: file: system-config-printer.ui:774
#. i18n: ectx: property (text), widget (KPushButton, btnPAddUser)
#. i18n: file: system-config-printer.ui:1718
#. i18n: ectx: property (text), widget (QPushButton, btnNewJobOption)
#: ui.py:364 ui.py:708
msgid "Add"
msgstr "Hinzufügen"

#. i18n: file: system-config-printer.ui:781
#. i18n: ectx: property (text), widget (KPushButton, btnPDelUser)
#: ui.py:367
msgid "Remove"
msgstr "Entfernen"

#. i18n: file: system-config-printer.ui:810
#. i18n: ectx: property (text), widget (QLabel, label_47)
#: ui.py:373
msgid "Add or Remove Members"
msgstr "Mitglieder hinzufügen oder entfernen"

#. i18n: file: system-config-printer.ui:896
#. i18n: ectx: attribute (title), widget (QWidget, joboptions)
#: ui.py:379
msgid "Job Options"
msgstr "Auftragseinstellungen"

#. i18n: file: system-config-printer.ui:928
#. i18n: ectx: property (text), widget (QLabel, label136)
#: ui.py:382
msgid ""
"Specify the default job options for this printer.  Jobs\n"
"arriving at this print server will have these options added\n"
"if they are not already set by the application."
msgstr ""
"Legt die Standardeinstellungen für die Aufträge an diesen Drucker fest.\n"
"Aufträge an diesen Druckerserver werden mit diesen Einstellungen\n"
"ausgeführt, wenn vom Programm keine Einstellungen vorgegeben wurden. "

#. i18n: file: system-config-printer.ui:935
#. i18n: ectx: property (text), widget (QLabel, label_13)
#: ui.py:387
msgid "<b>Common Options</b>"
msgstr "<b>Allgemeine Einstellungen</b>"

#. i18n: file: system-config-printer.ui:944
#. i18n: ectx: property (text), widget (QLabel, label_14)
#: ui.py:390
msgid "Copies"
msgstr "Kopien"

#. i18n: file: system-config-printer.ui:954
#. i18n: ectx: property (text), widget (QPushButton, btnJOResetCopies)
#. i18n: file: system-config-printer.ui:992
#. i18n: ectx: property (text), widget (QPushButton, btnJOResetOrientationRequested)
#. i18n: file: system-config-printer.ui:1006
#. i18n: ectx: property (text), widget (QPushButton, btnJOResetFitplot)
#. i18n: file: system-config-printer.ui:1054
#. i18n: ectx: property (text), widget (QPushButton, btnJOResetNumberUp)
#. i18n: file: system-config-printer.ui:1089
#. i18n: ectx: property (text), widget (QPushButton, btnJOResetNumberUpLayout)
#. i18n: file: system-config-printer.ui:1113
#. i18n: ectx: property (text), widget (QPushButton, btnJOResetBrightness)
#. i18n: file: system-config-printer.ui:1271
#. i18n: ectx: property (text), widget (QPushButton, btnJOResetFinishings)
#. i18n: file: system-config-printer.ui:1288
#. i18n: ectx: property (text), widget (QPushButton, btnJOResetJobPriority)
#. i18n: file: system-config-printer.ui:1305
#. i18n: ectx: property (text), widget (QPushButton, btnJOResetMedia)
#. i18n: file: system-config-printer.ui:1338
#. i18n: ectx: property (text), widget (QPushButton, btnJOResetSides)
#. i18n: file: system-config-printer.ui:1355
#. i18n: ectx: property (text), widget (QPushButton, btnJOResetHoldUntil)
#. i18n: file: system-config-printer.ui:1382
#. i18n: ectx: property (text), widget (QPushButton, btnJOResetMirror)
#. i18n: file: system-config-printer.ui:1406
#. i18n: ectx: property (text), widget (QPushButton, btnJOResetScaling)
#. i18n: file: system-config-printer.ui:1432
#. i18n: ectx: property (text), widget (QPushButton, btnJOResetSaturation)
#. i18n: file: system-config-printer.ui:1456
#. i18n: ectx: property (text), widget (QPushButton, btnJOResetHue)
#. i18n: file: system-config-printer.ui:1473
#. i18n: ectx: property (text), widget (QPushButton, btnJOResetGamma)
#. i18n: file: system-config-printer.ui:1519
#. i18n: ectx: property (text), widget (QPushButton, btnJOResetCpi)
#. i18n: file: system-config-printer.ui:1536
#. i18n: ectx: property (text), widget (QPushButton, btnJOResetLpi)
#. i18n: file: system-config-printer.ui:1560
#. i18n: ectx: property (text), widget (QPushButton, btnJOResetPageLeft)
#. i18n: file: system-config-printer.ui:1584
#. i18n: ectx: property (text), widget (QPushButton, btnJOResetPageRight)
#. i18n: file: system-config-printer.ui:1608
#. i18n: ectx: property (text), widget (QPushButton, btnJOResetPageTop)
#. i18n: file: system-config-printer.ui:1632
#. i18n: ectx: property (text), widget (QPushButton, btnJOResetPageBottom)
#. i18n: file: system-config-printer.ui:1648
#. i18n: ectx: property (text), widget (QPushButton, btnJOResetPrettyPrint)
#. i18n: file: system-config-printer.ui:1662
#. i18n: ectx: property (text), widget (QPushButton, btnJOResetWrap)
#. i18n: file: system-config-printer.ui:1679
#. i18n: ectx: property (text), widget (QPushButton, btnJOResetColumns)
#: ui.py:393 ui.py:411 ui.py:417 ui.py:441 ui.py:456 ui.py:466 ui.py:556
#: ui.py:562 ui.py:568 ui.py:583 ui.py:589 ui.py:598 ui.py:608 ui.py:618
#: ui.py:627 ui.py:633 ui.py:642 ui.py:648 ui.py:657 ui.py:666 ui.py:675
#: ui.py:684 ui.py:690 ui.py:696 ui.py:702
msgid "Reset"
msgstr "Zurücksetzen"

#. i18n: file: system-config-printer.ui:961
#. i18n: ectx: property (text), widget (QLabel, label_15)
#: ui.py:396
msgid "Orientation"
msgstr "Ausrichtung"

#. i18n: file: system-config-printer.ui:969
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOOrientationRequested)
#: ui.py:399
msgid "Portrait (no rotation)"
msgstr "Hochformat (keine Drehung)"

#. i18n: file: system-config-printer.ui:974
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOOrientationRequested)
#: ui.py:402
msgid "Landscape (90°)"
msgstr "Querformat (90°)"

#. i18n: file: system-config-printer.ui:979
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOOrientationRequested)
#: ui.py:405
msgid "Reverse landscape (270°)"
msgstr "Umgekehrtes Querformat (270°)"

#. i18n: file: system-config-printer.ui:984
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOOrientationRequested)
#: ui.py:408
msgid "Reverse portrait (180°)"
msgstr "Umgekehrtes Hochformat (180°)"

#. i18n: file: system-config-printer.ui:999
#. i18n: ectx: property (text), widget (QCheckBox, cbJOFitplot)
#: ui.py:414
msgid "Scale to fit"
msgstr "Größe anpassen"

#. i18n: file: system-config-printer.ui:1013
#. i18n: ectx: property (text), widget (QLabel, label_17)
#: ui.py:420
msgid "Pages per side"
msgstr "Seiten pro Blatt"

#. i18n: file: system-config-printer.ui:1026
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJONumberUp)
#: ui.py:426
msgid "2"
msgstr "2"

#. i18n: file: system-config-printer.ui:1031
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJONumberUp)
#: ui.py:429
msgid "4"
msgstr "4"

#. i18n: file: system-config-printer.ui:1036
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJONumberUp)
#: ui.py:432
msgid "6"
msgstr "6"

#. i18n: file: system-config-printer.ui:1041
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJONumberUp)
#: ui.py:435
msgid "9"
msgstr "9"

#. i18n: file: system-config-printer.ui:1046
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJONumberUp)
#: ui.py:438
msgid "16"
msgstr "16"

#. i18n: file: system-config-printer.ui:1063
#. i18n: ectx: property (text), widget (QLabel, label_37)
#: ui.py:444
msgid "Pages per side layout:"
msgstr "Seiten je Blattlayout:"

#. i18n: file: system-config-printer.ui:1071
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJONumberUpLayout)
#: ui.py:447
msgid "Left to right, top to bottom"
msgstr "Links nach Rechts, Oben nach Unten"

#. i18n: file: system-config-printer.ui:1076
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJONumberUpLayout)
#: ui.py:450
msgid "Left to right, bottom to top"
msgstr "Links nach Rechts, Unten nach Oben"

#. i18n: file: system-config-printer.ui:1081
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJONumberUpLayout)
#: ui.py:453
msgid "Right to left, top to bottom"
msgstr "Rechts nach Links, Oben nach Unten"

#. i18n: file: system-config-printer.ui:1096
#. i18n: ectx: property (text), widget (QLabel, label_38)
#: ui.py:459
msgid "Brightness:"
msgstr "Helligkeit:"

#. i18n: file: system-config-printer.ui:1106
#. i18n: ectx: property (text), widget (QLabel, label_44)
#. i18n: file: system-config-printer.ui:1399
#. i18n: ectx: property (text), widget (QLabel, label_30)
#. i18n: file: system-config-printer.ui:1425
#. i18n: ectx: property (text), widget (QLabel, label_34)
#: ui.py:463 ui.py:605 ui.py:615
#, no-c-format
msgid "%"
msgstr "%"

#. i18n: file: system-config-printer.ui:1120
#. i18n: ectx: property (text), widget (QLabel, label_39)
#: ui.py:469
msgid "Finishings:"
msgstr "Druckweiterverarbeitung:"

#. i18n: file: system-config-printer.ui:1128
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOFinishings)
#: ui.py:472
msgid "None"
msgstr "Keine"

#. i18n: file: system-config-printer.ui:1133
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOFinishings)
#: ui.py:475
msgid "Staple"
msgstr "Heftung"

#. i18n: file: system-config-printer.ui:1138
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOFinishings)
#: ui.py:478
msgid "Punch"
msgstr "Lochung"

#. i18n: file: system-config-printer.ui:1143
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOFinishings)
#: ui.py:481
msgid "Cover"
msgstr "Deckblatt"

#. i18n: file: system-config-printer.ui:1148
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOFinishings)
#: ui.py:484
msgid "Bind"
msgstr "Bindung"

#. i18n: file: system-config-printer.ui:1153
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOFinishings)
#: ui.py:487
msgid "Saddle stitch"
msgstr "Rückenheftung"

#. i18n: file: system-config-printer.ui:1158
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOFinishings)
#: ui.py:490
msgid "Edge stitch"
msgstr "Randheftung"

#. i18n: file: system-config-printer.ui:1163
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOFinishings)
#: ui.py:493
msgid "Fold"
msgstr "Faltung"

#. i18n: file: system-config-printer.ui:1168
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOFinishings)
#: ui.py:496
msgid "Trim"
msgstr "Zuschneiden"

#. i18n: file: system-config-printer.ui:1173
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOFinishings)
#: ui.py:499
msgid "Bale"
msgstr "Bündeln"

#. i18n: file: system-config-printer.ui:1178
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOFinishings)
#: ui.py:502
msgid "Booklet maker"
msgstr "Broschürenerstellung"

#. i18n: file: system-config-printer.ui:1183
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOFinishings)
#: ui.py:505
msgid "Job offset"
msgstr "Auftragsnummer"

#. i18n: file: system-config-printer.ui:1188
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOFinishings)
#: ui.py:508
msgid "Staple (top left)"
msgstr "Heftung (oben links)"

#. i18n: file: system-config-printer.ui:1193
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOFinishings)
#: ui.py:511
msgid "Staple (bottom left)"
msgstr "Heftung (unten links)"

#. i18n: file: system-config-printer.ui:1198
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOFinishings)
#: ui.py:514
msgid "Staple (top right)"
msgstr "Heftung (oben rechts)"

#. i18n: file: system-config-printer.ui:1203
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOFinishings)
#: ui.py:517
msgid "Staple (bottom right)"
msgstr "Heftung (unten rechts)"

#. i18n: file: system-config-printer.ui:1208
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOFinishings)
#: ui.py:520
msgid "Edge stitch (left)"
msgstr "Randheftung (links)"

#. i18n: file: system-config-printer.ui:1213
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOFinishings)
#: ui.py:523
msgid "Edge stitch (top)"
msgstr "Randheftung (oben)"

#. i18n: file: system-config-printer.ui:1218
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOFinishings)
#: ui.py:526
msgid "Edge stitch (right)"
msgstr "Randheftung (rechts)"

#. i18n: file: system-config-printer.ui:1223
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOFinishings)
#: ui.py:529
msgid "Edge stitch (bottom)"
msgstr "Randheftung (unten)"

#. i18n: file: system-config-printer.ui:1228
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOFinishings)
#: ui.py:532
msgid "Staple dual (left)"
msgstr "Doppelheftung (links)"

#. i18n: file: system-config-printer.ui:1233
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOFinishings)
#: ui.py:535
msgid "Staple dual (top)"
msgstr "Doppelheftung (oben)"

#. i18n: file: system-config-printer.ui:1238
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOFinishings)
#: ui.py:538
msgid "Staple dual (right)"
msgstr "Doppelheftung (rechts)"

#. i18n: file: system-config-printer.ui:1243
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOFinishings)
#: ui.py:541
msgid "Staple dual (bottom)"
msgstr "Doppelheftung (unten)"

#. i18n: file: system-config-printer.ui:1248
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOFinishings)
#: ui.py:544
msgid "Bind (left)"
msgstr "Bindung (links)"

#. i18n: file: system-config-printer.ui:1253
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOFinishings)
#: ui.py:547
msgid "Bind (top)"
msgstr "Bindung (oben)"

#. i18n: file: system-config-printer.ui:1258
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOFinishings)
#: ui.py:550
msgid "Bind (right)"
msgstr "Bindung (rechts)"

#. i18n: file: system-config-printer.ui:1263
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOFinishings)
#: ui.py:553
msgid "Bind (bottom)"
msgstr "Bindung (unten)"

#. i18n: file: system-config-printer.ui:1278
#. i18n: ectx: property (text), widget (QLabel, label_42)
#: ui.py:559
msgid "Job priority:"
msgstr "Auftragspriorität:"

#. i18n: file: system-config-printer.ui:1295
#. i18n: ectx: property (text), widget (QLabel, label_40)
#: ui.py:565
msgid "Media:"
msgstr "Medium:"

#. i18n: file: system-config-printer.ui:1312
#. i18n: ectx: property (text), widget (QLabel, label_41)
#: ui.py:571
msgid "Sides:"
msgstr "Seiten:"

#. i18n: file: system-config-printer.ui:1320
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOSides)
#: ui.py:574
msgid "One-sided"
msgstr "Einseitig"

#. i18n: file: system-config-printer.ui:1325
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOSides)
#: ui.py:577
msgid "Two-sided (long edge)"
msgstr "Zweiseitig (Hochformat)"

#. i18n: file: system-config-printer.ui:1330
#. i18n: ectx: property (text), item, widget (QComboBox, cmbJOSides)
#: ui.py:580
msgid "Two-sided (short edge)"
msgstr "Zweiseitig (Querformat)"

#. i18n: file: system-config-printer.ui:1345
#. i18n: ectx: property (text), widget (QLabel, label_43)
#: ui.py:586
msgid "Hold until:"
msgstr "Angehalten bis:"

#. i18n: file: system-config-printer.ui:1366
#. i18n: ectx: property (text), widget (QLabel, label_16)
#: ui.py:592
msgid "<b>Image Options</b>"
msgstr "<b>Bildeinstellungen</b>"

#. i18n: file: system-config-printer.ui:1375
#. i18n: ectx: property (text), widget (QCheckBox, cbJOMirror)
#: ui.py:595
msgid "Mirror"
msgstr "Spiegeln"

#. i18n: file: system-config-printer.ui:1389
#. i18n: ectx: property (text), widget (QLabel, label_18)
#: ui.py:601
msgid "Scaling"
msgstr "Skalierung"

#. i18n: file: system-config-printer.ui:1415
#. i18n: ectx: property (text), widget (QLabel, label_31)
#: ui.py:611
msgid "Saturation"
msgstr "Sättigung"

#. i18n: file: system-config-printer.ui:1439
#. i18n: ectx: property (text), widget (QLabel, label_32)
#: ui.py:621
msgid "Hue adjustment"
msgstr "Anpassung des Farbtons"

#. i18n: file: system-config-printer.ui:1449
#. i18n: ectx: property (text), widget (QLabel, label_35)
#: ui.py:624
msgid "°"
msgstr "°"

#. i18n: file: system-config-printer.ui:1463
#. i18n: ectx: property (text), widget (QLabel, label_33)
#: ui.py:630
msgid "Gamma"
msgstr "Gamma"

#. i18n: file: system-config-printer.ui:1497
#. i18n: ectx: property (text), widget (QLabel, label_19)
#: ui.py:636
msgid "<b>Text Options</b>"
msgstr "<b>Texteinstellungen</b>"

#. i18n: file: system-config-printer.ui:1506
#. i18n: ectx: property (text), widget (QLabel, label_20)
#: ui.py:639
msgid "Character per inch:"
msgstr "Zeichen pro Zoll:"

#. i18n: file: system-config-printer.ui:1526
#. i18n: ectx: property (text), widget (QLabel, label_21)
#: ui.py:645
msgid "Lines per inch"
msgstr "Zeilen pro Zoll"

#. i18n: file: system-config-printer.ui:1543
#. i18n: ectx: property (text), widget (QLabel, label_22)
#: ui.py:651
msgid "Left margin"
msgstr "Linker Rand"

#. i18n: file: system-config-printer.ui:1553
#. i18n: ectx: property (text), widget (QLabel, label_26)
#. i18n: file: system-config-printer.ui:1577
#. i18n: ectx: property (text), widget (QLabel, label_27)
#. i18n: file: system-config-printer.ui:1601
#. i18n: ectx: property (text), widget (QLabel, label_28)
#. i18n: file: system-config-printer.ui:1625
#. i18n: ectx: property (text), widget (QLabel, label_29)
#: ui.py:654 ui.py:663 ui.py:672 ui.py:681
msgid "Points"
msgstr "Punkte"

#. i18n: file: system-config-printer.ui:1567
#. i18n: ectx: property (text), widget (QLabel, label_23)
#: ui.py:660
msgid "Right margin"
msgstr "Rechter Rand"

#. i18n: file: system-config-printer.ui:1591
#. i18n: ectx: property (text), widget (QLabel, label_24)
#: ui.py:669
msgid "Top margin"
msgstr "Oberer Rand"

#. i18n: file: system-config-printer.ui:1615
#. i18n: ectx: property (text), widget (QLabel, label_25)
#: ui.py:678
msgid "Bottom margin"
msgstr "Unterer Rand"

#. i18n: file: system-config-printer.ui:1641
#. i18n: ectx: property (text), widget (QCheckBox, cbJOPrettyPrint)
#: ui.py:687
msgid "Pretty print"
msgstr "Korrespondenzdruck"

#. i18n: file: system-config-printer.ui:1655
#. i18n: ectx: property (text), widget (QCheckBox, cbJOWrap)
#: ui.py:693
msgid "Word wrap"
msgstr "Zeilenumbruch"

#. i18n: file: system-config-printer.ui:1669
#. i18n: ectx: property (text), widget (QLabel, label_36)
#: ui.py:699
msgid "Columns"
msgstr "Spalten"

#. i18n: file: system-config-printer.ui:1706
#. i18n: ectx: property (text), widget (QLabel, label_46)
#: ui.py:705
msgid "To add a new option, enter its name in the box below and click to add."
msgstr ""
"Um eine neue Option einzufügen, tragen Sie den Namen in das Feld ein und "
"drücken den Knopf „Hinzufügen“."

#~ msgid "TextLabel"
#~ msgstr "TextLabel"

#~ msgid ""
#~ "CUPS is not currently running. CUPS is required for complete printing "
#~ "functionality. Please start CUPS then restart this application."
#~ msgstr ""
#~ "CUPS läuft momentan nicht. CUPS wird für die vollständigen "
#~ "Druckfunktionen benötigt. Bitte starten Sie zuerst CUPS und anschließend "
#~ "diese Anwendung."

#~ msgid "Print Server Not Running"
#~ msgstr "Der Druckserver läuft nicht"

#~ msgid "No default printer set."
#~ msgstr "Es ist kein Standarddrucker festgelegt."

#~ msgid "&Yes"
#~ msgstr "&Ja"

#~ msgid "&No"
#~ msgstr "&Nein"

#~ msgid "System Config Printer KDE"
#~ msgstr "Drucksystem-Einrichtung für KDE"

#~ msgid "Printer configuration tool"
#~ msgstr "Drucker-Einrichtungsprogramm"

#~ msgid "2007 Tim Waugh, Red Hat Inc, 2007-2008 Canonical Ltd"
#~ msgstr "2007 Tim Waugh, Red Hat Inc, 2007-2008 Canonical Ltd"

#~ msgid "Jonathan Riddell"
#~ msgstr "Jonathan Riddell"

#~ msgid "Author"
#~ msgstr "Autor"

#~ msgid "Tim Waugh/Red Hat"
#~ msgstr "Tim Waugh/Red Hat"

#~ msgid "System Config Printer Author"
#~ msgstr "Autor der Drucksystem-Einrichtung für KDE"

#~ msgid "<"
#~ msgstr "<"

#~ msgid ">"
#~ msgstr ">"

#~ msgid "New printer attached to this computer."
#~ msgstr "Es wurde ein neuer Drucker an den Rechner angeschlossen."

#~ msgid "Add a new printer group."
#~ msgstr "Fügt eine neue Druckergruppe hinzu."

#~ msgid "Make and Model:"
#~ msgstr "Marke und Modell:"

#~ msgid "Default Printer:"
#~ msgstr "Standarddrucker:"

#~ msgid "Make Default"
#~ msgstr "Als Standarddrucker"

#~ msgid "Error Policy"
#~ msgstr "Fehlerrichtlinie"

#~ msgid "Operation Policy"
#~ msgstr "Funktionsrichtlinie"

#~ msgid "Apply"
#~ msgstr "Anwenden"