~ubuntu-branches/ubuntu/saucy/kde-l10n-de/saucy-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
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
#
# Frederik Schwarzer <schwarzer@kde.org>, 2012, 2013.
# Burkhard Lück <lueck@hube-lueck.de>, 2012, 2013.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2013-05-30 01:56+0000\n"
"PO-Revision-Date: 2013-05-25 11:53+0200\n"
"Last-Translator: Frederik Schwarzer <schwarzer@kde.org>\n"
"Language-Team: German <kde-i18n-de@kde.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Lokalize 1.5\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"

msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Frederik Schwarzer"

msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "schwarzer@kde.org"

#: add-printer/AddPrinterAssistant.cpp:45
msgctxt "@title:window"
msgid "Add a New Printer"
msgstr "Einen neuen Drucker hinzufügen"

#: add-printer/AddPrinterAssistant.cpp:87 add-printer/ChooseLpd.cpp:39
#: add-printer/ChooseSamba.cpp:40 add-printer/ChooseSerial.cpp:38
#: add-printer/ChooseSocket.cpp:39 add-printer/ChooseUri.cpp:40
#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:46
#: add-printer/PageChoosePrinters.cpp:38 add-printer/PageDestinations.cpp:91
msgctxt "@title:window"
msgid "Select a Printer to Add"
msgstr "Wählen Sie einen Drucker, den Sie hinzufügen möchten"

#: add-printer/AddPrinterAssistant.cpp:91
#: add-printer/AddPrinterAssistant.cpp:98
#: add-printer/AddPrinterAssistant.cpp:140
msgctxt "@title:window"
msgid "Pick a Driver"
msgstr "Wählen Sie einen Treiber"

#: add-printer/AddPrinterAssistant.cpp:103
#: add-printer/AddPrinterAssistant.cpp:123
msgctxt "@title:window"
msgid "Please describe you printer"
msgstr "Bitte beschreiben Sie Ihren Drucker"

#: add-printer/AddPrinterAssistant.cpp:119
msgctxt "@title:window"
msgid "Configure your connection"
msgstr "Einrichtung Ihrer Verbindung"

#. i18n: ectx: property (text), widget (QLabel, label_2)
#: add-printer/ChooseLpd.ui:26
msgid "Address:"
msgstr "Adresse:"

#. i18n: ectx: property (text), widget (QLabel, label_3)
#: add-printer/ChooseLpd.ui:36
msgid "Queue:"
msgstr "Warteschlange:"

#. i18n: ectx: property (text), widget (QPushButton, detectPB)
#: add-printer/ChooseLpd.ui:51
msgid "Detect"
msgstr "Erkennen"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#: add-printer/ChooseSamba.ui:26
msgctxt "@title:group"
msgid "Windows Printer via SAMBA"
msgstr "Windows-Drucker über Samba"

#. i18n: ectx: property (text), widget (QLabel, label_6)
#: add-printer/ChooseSamba.ui:32
msgctxt ""
"@label samba URL markup example, this is preceded by a label containing "
"smb://"
msgid "smb://[workgroup/]server[:port]/printer"
msgstr "smb://[workgroup/]server[:port]/printer"

#. i18n: ectx: property (text), widget (QPushButton, browsePB)
#: add-printer/ChooseSamba.ui:45
msgctxt "@action:button"
msgid "Browse"
msgstr "Durchsuchen"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
#: add-printer/ChooseSamba.ui:55
msgctxt "@title:group"
msgid "Authentication"
msgstr "Authentifizierung"

#. i18n: ectx: property (text), widget (QLabel, label)
#: add-printer/ChooseSamba.ui:64
msgctxt "@label:textbox"
msgid "Username:"
msgstr "Benutzername:"

#. i18n: ectx: property (text), widget (QLabel, label_4)
#: add-printer/ChooseSamba.ui:77
msgctxt "@label:textbox"
msgid "Password"
msgstr "Passwort"

#: add-printer/ChooseSerial.cpp:40 add-printer/ChooseSerial.cpp:44
msgctxt "@label:listbox"
msgid "None"
msgstr "Keinen"

#: add-printer/ChooseSerial.cpp:41
msgctxt "@label:listbox"
msgid "Even"
msgstr "Gerade"

#: add-printer/ChooseSerial.cpp:42
msgctxt "@label:listbox"
msgid "Odd"
msgstr "Ungerade"

#: add-printer/ChooseSerial.cpp:45
msgctxt "@label:listbox"
msgid "XON/XOFF (Software)"
msgstr "XON/XOFF (Software)"

#: add-printer/ChooseSerial.cpp:46
msgctxt "@label:listbox"
msgid "RTS/CTS (Hardware)"
msgstr "RTS/CTS (Hardware)"

#: add-printer/ChooseSerial.cpp:47
msgctxt "@label:listbox"
msgid "DTR/DSR (Hardware)"
msgstr "DTR/DSR (Hardware)"

#. i18n: ectx: property (text), widget (QLabel, label_2)
#: add-printer/ChooseSerial.ui:29
msgctxt "@label:listbox"
msgid "Baud Rate:"
msgstr "Baudrate:"

#. i18n: ectx: property (text), widget (QLabel, label_3)
#: add-printer/ChooseSerial.ui:42
msgctxt "@label:listbox"
msgid "Parity:"
msgstr "Parität:"

#. i18n: ectx: property (text), widget (QLabel, label_4)
#: add-printer/ChooseSerial.ui:55
msgctxt "@label:listbox"
msgid "Data Bits:"
msgstr "Datenbits:"

#. i18n: ectx: property (text), widget (QLabel, label_5)
#: add-printer/ChooseSerial.ui:79
msgctxt "@label:listbox"
msgid "Flow Control:"
msgstr "Datenflusssteuerung"

#. i18n: ectx: property (text), widget (QLabel, label_2)
#: add-printer/ChooseSocket.ui:29
msgctxt "@label:textbox"
msgid "Address:"
msgstr "Adresse:"

#. i18n: ectx: property (text), widget (QLabel, label_3)
#: add-printer/ChooseSocket.ui:42
msgctxt "@label:spinbox"
msgid "Port:"
msgstr "Port:"

#. i18n: ectx: property (text), widget (QLabel, label_2)
#: add-printer/ChooseUri.ui:32
msgctxt "@label:textbox"
msgid "Connection:"
msgstr "Verbindung:"

#. i18n: ectx: property (text), widget (QLabel, label)
#: add-printer/ChooseUri.ui:73
msgctxt "@info"
msgid ""
"<TABLE>\n"
"<TR>\n"
"<TD>Examples:\n"
"<PRE>\n"
"    http://hostname:631/ipp/\n"
"    http://hostname:631/ipp/port1\n"
"\n"
"    ipp://hostname/ipp/\n"
"    ipp://hostname/ipp/port1\n"
"\n"
"    lpd://hostname/queue\n"
"\n"
"    socket://hostname\n"
"    socket://hostname:9100\n"
"</PRE>\n"
"\n"
"<P>See <A HREF=\"http://localhost:631/help/network.html\" TARGET=\"_blank\">"
"\"Network\n"
"Printers\"</A> for the correct URI to use with your printer.</P>\n"
"</TD>\n"
"</TR>\n"
"</TABLE>"
msgstr ""
"<TABLE>\n"
"<TR>\n"
"<TD>Beispiele:\n"
"<PRE>\n"
"    http://rechnername:631/ipp/\n"
"    http://rechnername:631/ipp/port1\n"
"\n"
"    ipp://rechnername/ipp/\n"
"    ipp://rechnername/ipp/port1\n"
"\n"
"    lpd://rechnername/queue\n"
"\n"
"    socket://rechnername\n"
"    socket://rechnername:9100\n"
"</PRE>\n"
"\n"
"<P>Siehe <A HREF=\"http://localhost:631/help/network.html\" TARGET=\"_blank"
"\">\"Netzwerkdrucker\"\n"
"</A> für die richtige URI für Ihren Drucker.</P>\n"
"</TD>\n"
"</TR>\n"
"</TABLE>"

#: add-printer/DevicesModel.cpp:54
msgctxt "@item"
msgid "Manual URI"
msgstr "Manuelle URI"

#: add-printer/DevicesModel.cpp:130
#, kde-format
msgid "Failed to get a list of devices: '%1'"
msgstr "Das Laden der Geräteliste ist fehlgeschlagen: „%1“"

#: add-printer/DevicesModel.cpp:253
msgctxt "@info:tooltip"
msgid "A printer connected to the parallel port"
msgstr "Ein an den Parallelport angeschlossener Drucker"

#: add-printer/DevicesModel.cpp:256
msgctxt "@info:tooltip"
msgid "A printer connected to a USB port"
msgstr "Ein an den USB-Port angeschlossener Drucker"

#: add-printer/DevicesModel.cpp:259
msgctxt "@info:tooltip"
msgid "A printer connected via Bluetooth"
msgstr "Ein mit Bluetooth angeschlossener Drucker"

#: add-printer/DevicesModel.cpp:262
msgctxt "@info:tooltip"
msgid "Local printer detected by the Hardware Abstraction Layer (HAL)"
msgstr ""
"Ein von der Hardware-Abstraktionsschicht (HAL) erkannter, lokaler Drucker"

#: add-printer/DevicesModel.cpp:266
msgctxt "@info:tooltip"
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"

#: add-printer/DevicesModel.cpp:270
msgctxt "@info:tooltip"
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"

#: add-printer/DevicesModel.cpp:275
msgctxt "@info:tooltip"
msgid "Remote CUPS printer via DNS-SD"
msgstr "CUPS-Drucker an Fremdrechner über DNS-SD"

#: add-printer/DevicesModel.cpp:293
msgctxt "@item"
msgid "Discovered Network Printers"
msgstr "Erkannte Netzwerkdrucker"

#: add-printer/DevicesModel.cpp:297
msgctxt "@item"
msgid "Other Network Printers"
msgstr "Weitere Netzwerkdrucker"

#: add-printer/DevicesModel.cpp:301
msgctxt "@item"
msgid "Local Printers"
msgstr "Lokale Drucker"

#: add-printer/DevicesModel.cpp:344
#, kde-format
msgid "Failed to group devices: '%1'"
msgstr "Fehler beim Gruppieren der Geräte: „%1“"

#: add-printer/main.cpp:34
msgid "AddPrinter"
msgstr "Drucker hinzufügen"

#: add-printer/main.cpp:36
msgid "Tool for adding new printers"
msgstr "Hilfsprogramm für das Hinzufügen von neuen Druckern"

#: add-printer/main.cpp:38 configure-printer/main.cpp:38
#: printer-manager-kcm/PrintKCM.cpp:61 printqueue/main.cpp:38
msgid "(C) 2010-2013 Daniel Nicoletti"
msgstr "© 2010-2013 Daniel Nicoletti"

#: add-printer/main.cpp:40 configure-printer/main.cpp:40
#: printqueue/main.cpp:40
msgid "Daniel Nicoletti"
msgstr "Daniel Nicoletti"

#: add-printer/main.cpp:44
msgid "Parent Window ID"
msgstr ""

#: add-printer/main.cpp:45
msgid "Add a new printer"
msgstr "Einen neuen Drucker hinzufügen"

#: add-printer/main.cpp:46
msgid "Add a new printer class"
msgstr "Eine neue Druckerklasse hinzufügen"

#: add-printer/main.cpp:47
msgid "Changes the PPD of a given printer"
msgstr "Ändert die PPD eines angegebenen Druckers"

#: add-printer/main.cpp:48
msgid "Changes the PPD of a given printer/deviceid"
msgstr ""
"Ändert die PPD eines angegebenen Druckers bzw. einer angegebenen "
"Gerätekennung"

#: add-printer/PageAddPrinter.cpp:141
#, kde-format
msgctxt "@info"
msgid "Failed to add class: '%1'"
msgstr "Klasse „%1“kann nicht hinzugefügt werden"

#: add-printer/PageAddPrinter.cpp:143
#, kde-format
msgctxt "@info"
msgid "Failed to configure printer: '%1'"
msgstr "Drucker „%1“kann nicht eingerichtet werden"

#. i18n: ectx: property (text), widget (QLabel, label_2)
#: add-printer/PageAddPrinter.ui:31
msgctxt "@label:textbox"
msgid "Name:"
msgstr "Name:"

#. i18n: ectx: property (toolTip), widget (KLineEdit, nameLE)
#: add-printer/PageAddPrinter.ui:38 configure-printer/ModifyPrinter.ui:35
msgid "May contain any printable characters except \"/\", \"#\", and space"
msgstr ""
"Darf beliebige druckbare Zeichen mit Ausnahme von „/“, „#“ und dem "
"Leerzeichen enthalten"

#. i18n: ectx: property (text), widget (QLabel, label_3)
#: add-printer/PageAddPrinter.ui:45
msgctxt "@label:textbox"
msgid "Description:"
msgstr "Beschreibung:"

#. i18n: ectx: property (text), widget (QLabel, label_4)
#: add-printer/PageAddPrinter.ui:55
msgctxt "@label:textbox"
msgid "Location:"
msgstr "Standort:"

#. i18n: ectx: property (text), widget (QCheckBox, shareCB)
#. i18n: ectx: property (text), widget (QCheckBox, sharedCB)
#: add-printer/PageAddPrinter.ui:65
#: printer-manager-kcm/PrinterDescription.ui:119
msgctxt "@option:check"
msgid "Share this printer"
msgstr "Diesen Drucker freigeben"

#. i18n: ectx: property (text), widget (QLabel, label)
#: add-printer/PageChoosePrinters.ui:96
msgctxt "@label:listbox"
msgid "Members:"
msgstr "Mitglieder:"

#: add-printer/PageDestinations.cpp:205
msgid "A printer connected to the parallel port."
msgstr "Ein an den Parallelport angeschlossener Drucker."

#: add-printer/PageDestinations.cpp:208
msgid "A printer connected to a USB port."
msgstr "Ein an den USB-Port angeschlossener Drucker."

#: add-printer/PageDestinations.cpp:211
msgid "A printer connected via Bluetooth."
msgstr "Ein mit Bluetooth angeschlossener Drucker."

#: add-printer/PageDestinations.cpp:214
msgid "Local printer detected by the Hardware Abstraction Layer (HAL)."
msgstr ""
"Ein von der Hardware-Abstraktionsschicht (HAL) erkannter, lokaler Drucker."

#: add-printer/PageDestinations.cpp:218
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."

#: add-printer/PageDestinations.cpp:222
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."

#: add-printer/PageDestinations.cpp:230 add-printer/PageDestinations.cpp:389
msgid "Remote CUPS printer via DNS-SD"
msgstr "CUPS-Drucker an Fremdrechner über DNS-SD"

#: add-printer/PageDestinations.cpp:242 add-printer/PageDestinations.cpp:398
msgid "Network printer via DNS-SD"
msgstr "Netzwerkdrucker über DNS-SD"

#: add-printer/PageDestinations.cpp:244
#, kde-format
msgid "%1 network printer via DNS-SD"
msgstr "%1 Netzwerkdrucker über DNS-SD"

#: add-printer/PageDestinations.cpp:349
msgid "Parallel Port"
msgstr "Paralleler Anschluss"

#: add-printer/PageDestinations.cpp:351
msgid "Serial Port"
msgstr "Serieller Anschluss"

#: add-printer/PageDestinations.cpp:353
msgid "USB"
msgstr "USB"

#: add-printer/PageDestinations.cpp:355
msgid "Bluetooth"
msgstr "Bluetooth"

#: add-printer/PageDestinations.cpp:357
msgid "Fax - HP Linux Imaging and Printing (HPLIP)"
msgstr "Fax - HP Linux Imaging and Printing (HPLIP)"

#: add-printer/PageDestinations.cpp:359
msgid "HP Linux Imaging and Printing (HPLIP)"
msgstr "HP Linux Imaging and Printing (HPLIP)"

#: add-printer/PageDestinations.cpp:361
msgid "Hardware Abstraction Layer (HAL)"
msgstr "Hardware-Abstraktionsschicht (HAL)"

#: add-printer/PageDestinations.cpp:363
msgid "AppSocket/HP JetDirect"
msgstr "AppSocket/HP JetDirect"

#: add-printer/PageDestinations.cpp:368
msgid "LPD/LPR queue"
msgstr "LPD/LPR-Druckerwarteschlange"

#: add-printer/PageDestinations.cpp:370
#, kde-format
msgid "LPD/LPR queue %1"
msgstr "LPD/LPR-Druckerwarteschlange %1"

#: add-printer/PageDestinations.cpp:373
msgid "Windows Printer via SAMBA"
msgstr "Windows-Drucker über Samba"

#: add-printer/PageDestinations.cpp:378
msgid "IPP"
msgstr "IPP"

#: add-printer/PageDestinations.cpp:380
#, kde-format
msgid "IPP %1"
msgstr "IPP %1"

#: add-printer/PageDestinations.cpp:383
msgid "HTTP"
msgstr "HTTP"

#: add-printer/PageDestinations.cpp:392
msgid "IPP network printer via DNS-SD"
msgstr "IPP-Netzwerkdrucker über DNS-SD"

#: add-printer/PageDestinations.cpp:394
msgid "LPD network printer via DNS-SD"
msgstr "LPD-Netzwerkdrucker über DNS-SD"

#: add-printer/PageDestinations.cpp:396
msgid "AppSocket/JetDirect network printer via DNS-SD"
msgstr "AppSocket/JetDirect-Netzwerkdrucker über DNS-SD"

#. i18n: ectx: property (title), widget (QGroupBox, connectionsGB)
#: add-printer/PageDestinations.ui:62
msgid "Connections"
msgstr "Verbindungen"

#. i18n: ectx: property (text), widget (QLabel, label)
#: add-printer/PageDestinations.ui:97
msgid "Please choose an item on the list"
msgstr "Bitte wählen Sie einen Eintrag aus der Liste"

#: configure-printer/ConfigureDialog.cpp:99
msgid "Modify Printer"
msgstr "Drucker ändern"

#. i18n: ectx: property (text), widget (KPushButton, configurePB)
#. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB)
#: configure-printer/ConfigureDialog.cpp:100
#: print-manager-kded/NewPrinterNotification.cpp:169
#: print-manager-kded/NewPrinterNotification.cpp:178
#: printer-manager-kcm/PrinterDescription.ui:198
#: printqueue/PrintQueueUi.ui:131
msgid "Configure"
msgstr "Einrichten"

#: configure-printer/ConfigureDialog.cpp:110
msgid "Printer Options"
msgstr "Druckeroptionen"

#: configure-printer/ConfigureDialog.cpp:111
msgid "Set the Default Printer Options"
msgstr "Standardeinstellungen des Druckers festlegen"

#: configure-printer/ConfigureDialog.cpp:121
#: configure-printer/ConfigureDialog.cpp:122
msgid "Banners, Policies and Allowed Users"
msgstr "Trennseiten, Regelungen und zugelassene Benutzer"

#: configure-printer/ConfigureDialog.cpp:193
msgid ""
"The current page has changes.\n"
"Do you want to save them?"
msgstr ""
"Die aktuelle Seite wurde geändert.\n"
"Möchten Sie sie speichern?"

#: configure-printer/main.cpp:34 configure-printer/main.cpp:36
msgid "ConfigurePrinter"
msgstr "Drucker einrichten"

#: configure-printer/main.cpp:44
msgid "Configure printer"
msgstr "Drucker einrichten"

#: configure-printer/ModifyPrinter.cpp:185
#, kde-format
msgid "Current - %1"
msgstr "Aktuell - %1"

#: configure-printer/ModifyPrinter.cpp:188
msgid "Select a custom driver"
msgstr "Wählen Sie einen benutzerdefinierten Treiber"

#: configure-printer/ModifyPrinter.cpp:287
msgctxt "@info"
msgid "Failed to configure class"
msgstr "Klasse kann nicht eingerichtet werden"

#: configure-printer/ModifyPrinter.cpp:288
msgctxt "@info"
msgid "Failed to configure printer"
msgstr "Drucker kann nicht eingerichtet werden"

#: configure-printer/ModifyPrinter.cpp:290
#: printer-manager-kcm/PrintKCM.cpp:340
msgctxt "@title:window"
msgid "Failed"
msgstr "Fehlgeschlagen"

#. i18n: ectx: property (text), widget (QLabel, label_3)
#. i18n: ectx: property (text), widget (QLabel, nameL)
#: configure-printer/ModifyPrinter.ui:25
#: printer-manager-kcm/PrinterDescription.ui:234
msgid "Name:"
msgstr "Name:"

#. i18n: ectx: property (text), widget (QLabel, label)
#: configure-printer/ModifyPrinter.ui:42
msgid "Description:"
msgstr "Beschreibung:"

#. i18n: ectx: property (toolTip), widget (KLineEdit, descriptionLE)
#: configure-printer/ModifyPrinter.ui:52
msgid "Human-readable description such as \"HP LaserJet with Duplexer\""
msgstr "Menschenlesbare Beschreibung wie „HP LaserJet mit Duplexeinheit“"

#. i18n: ectx: property (text), widget (QLabel, label_2)
#: configure-printer/ModifyPrinter.ui:62
msgid "Location:"
msgstr "Standort:"

#. i18n: ectx: property (toolTip), widget (KLineEdit, locationLE)
#: configure-printer/ModifyPrinter.ui:72
msgid "Human-readable location such as \"Lab 1\""
msgstr "Menschenlesbarer Standort wie „Labor 1“"

#. i18n: ectx: property (text), widget (QLabel, connectionL)
#: configure-printer/ModifyPrinter.ui:89
msgid "Connection:"
msgstr "Verbindung:"

#. i18n: ectx: property (whatsThis), widget (KLineEdit, connectionLE)
#: configure-printer/ModifyPrinter.ui:113
msgid ""
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
"REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css"
"\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'DejaVu Sans'; font-size:9pt; font-"
"weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"size:10pt;\">Examples:</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">http://hostname:631/ipp/</"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">http://hostname:631/ipp/"
"port1</p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">ipp://hostname/ipp/</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">ipp://hostname/ipp/port1</"
"p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">lpd://hostname/queue</p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">socket://hostname</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">socket://hostname:9100</"
"p></body></html>"
msgstr ""
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
"REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css"
"\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'DejaVu Sans'; font-size:9pt; font-"
"weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"size:10pt;\">Beispiele:</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">http://hostname:631/ipp/</"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">http://hostname:631/ipp/"
"port1</p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">ipp://hostname/ipp/</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">ipp://hostname/ipp/port1</"
"p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">lpd://hostname/queue</p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">socket://hostname</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">socket://hostname:9100</"
"p></body></html>"

#. i18n: ectx: property (text), widget (QLabel, membersL)
#: configure-printer/ModifyPrinter.ui:123
msgid "Members"
msgstr "Mitglieder:"

#. i18n: ectx: property (text), widget (QLabel, driverL)
#: configure-printer/ModifyPrinter.ui:136
msgid "Driver:"
msgstr "Treiber:"

#: configure-printer/PrinterBehavior.cpp:210
msgid "Abort job"
msgstr "Auftrag abbrechen"

#: configure-printer/PrinterBehavior.cpp:212
msgid "Retry current job"
msgstr "Aktuellen Auftrag erneut drucken"

#: configure-printer/PrinterBehavior.cpp:214
msgid "Retry job"
msgstr "Auftrag erneut drucken"

#: configure-printer/PrinterBehavior.cpp:216
msgid "Stop printer"
msgstr "Drucker anhalten"

#: configure-printer/PrinterBehavior.cpp:225
msgid "Authenticated"
msgstr "Authentifiziert"

#: configure-printer/PrinterBehavior.cpp:227
msgid "Default"
msgstr "Standard"

#: configure-printer/PrinterBehavior.cpp:236
msgid "None"
msgstr "Kein"

#: configure-printer/PrinterBehavior.cpp:238
msgid "Classified"
msgstr "Verschlusssache"

#: configure-printer/PrinterBehavior.cpp:240
msgid "Confidential"
msgstr "Vertraulich"

#: configure-printer/PrinterBehavior.cpp:242
msgid "Secret"
msgstr "Geheim"

#: configure-printer/PrinterBehavior.cpp:244
msgid "Standard"
msgstr "Standard"

#: configure-printer/PrinterBehavior.cpp:246
msgid "Topsecret"
msgstr "Streng geheim"

#: configure-printer/PrinterBehavior.cpp:248
msgid "Unclassified"
msgstr "Keine Verschlusssache"

#. i18n: ectx: property (title), widget (QGroupBox, BanneryGB)
#: configure-printer/PrinterBehavior.ui:20
msgid "Banners"
msgstr "Vorspann/Nachspann"

#. i18n: ectx: property (text), widget (QLabel, label_6)
#: configure-printer/PrinterBehavior.ui:26
msgid "Starting Banner:"
msgstr "Vorspann:"

#. i18n: ectx: property (text), widget (QLabel, label_7)
#: configure-printer/PrinterBehavior.ui:46
msgid "Ending Banner:"
msgstr "Nachspann:"

#. i18n: ectx: property (title), widget (QGroupBox, PoliciesGB)
#: configure-printer/PrinterBehavior.ui:75
msgid "Policies"
msgstr "Regelungen"

#. i18n: ectx: property (text), widget (QLabel, label_4)
#: configure-printer/PrinterBehavior.ui:81
msgid "Operation Policy:"
msgstr "Betriebs-Regelung:"

#. i18n: ectx: property (text), widget (QLabel, label_3)
#: configure-printer/PrinterBehavior.ui:94
msgid "Error Policy:"
msgstr "Fehler-Regelung:"

#. i18n: ectx: property (title), widget (QGroupBox, AllowGB)
#: configure-printer/PrinterBehavior.ui:124
msgid "Allowed Users"
msgstr "Zugelassene Benutzer"

#. i18n: ectx: property (text), widget (QRadioButton, preventRB)
#: configure-printer/PrinterBehavior.ui:130
msgid "Prevent these users from printing "
msgstr "Diese Benutzer vom Drucken ausschließen "

#. i18n: ectx: property (text), widget (QRadioButton, allowRB)
#: configure-printer/PrinterBehavior.ui:147
msgid "Allow these users to print"
msgstr "Drucken zulassen für diese Benutzer"

#: configure-printer/PrinterOptions.cpp:70
msgid "Set Default Options"
msgstr "Standardeinstellungen festlegen"

#. i18n: ectx: property (text), widget (KPushButton, autoConfigurePB)
#: configure-printer/PrinterOptions.ui:26
msgid "Query Printer for Default Options"
msgstr "Standardeinstellungen des Druckers abfragen"

#: libkcups/JobModel.cpp:44
msgid "Status"
msgstr "Status"

#: libkcups/JobModel.cpp:45
msgid "Name"
msgstr "Name"

#: libkcups/JobModel.cpp:46
msgid "User"
msgstr "Benutzer"

#: libkcups/JobModel.cpp:47
msgid "Created"
msgstr "Erstellt"

#: libkcups/JobModel.cpp:48 libkcups/JobModel.cpp:604
msgid "Completed"
msgstr "Abgeschlossen"

#: libkcups/JobModel.cpp:49
msgid "Pages"
msgstr "Seiten"

#: libkcups/JobModel.cpp:50
msgid "Processed"
msgstr "Bearbeitet"

#: libkcups/JobModel.cpp:51
msgid "Size"
msgstr "Größe"

#: libkcups/JobModel.cpp:52
msgid "Status Message"
msgstr "Statusmeldung"

#: libkcups/JobModel.cpp:53
msgid "Printer"
msgstr "Drucker"

#: libkcups/JobModel.cpp:54
msgid "From Hostname"
msgstr "Von Hostname"

#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:530
#, kde-format
msgid "Failed to move '%1' to '%2'"
msgstr "„%1“ kann nicht zu „%2“ verschoben werden"

#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:536
msgid "Failed"
msgstr "Fehlgeschlagen"

#: libkcups/JobModel.cpp:598
msgid "Pending"
msgstr "Ausstehend"

#: libkcups/JobModel.cpp:599
msgid "On hold"
msgstr "Wird gehalten"

#: libkcups/JobModel.cpp:601
msgid "Stopped"
msgstr "Angehalten"

#: libkcups/JobModel.cpp:602
msgid "Canceled"
msgstr "Abgebrochen"

#: libkcups/JobModel.cpp:603
msgid "Aborted"
msgstr "Abgebrochen"

#: libkcups/KCupsPasswordDialog.cpp:46
msgid "Enter an username and a password to complete the task"
msgstr ""
"Geben Sie einen  Benutzernamen und ein Passwort ein, um die Aufgabe zu "
"beenden"

#: libkcups/KCupsPasswordDialog.cpp:51
msgid "Wrong username or password"
msgstr "Benutzername oder Passwort falsch"

#: libkcups/KCupsRequest.cpp:51
#, fuzzy
#| msgid "Service is unavailable"
msgid "Print service is unavailable"
msgstr "Dienst ist nicht verfügbar"

#: libkcups/KCupsRequest.cpp:53
msgid "Not found"
msgstr "Nicht gefunden"

#: libkcups/KCupsRequest.cpp:424
msgid "Test Page"
msgstr "Testseite"

#: libkcups/KCupsRequest.cpp:456
msgid "Unable to send command to printer driver!"
msgstr "Der Befehl kann nicht an den Druckertreiber gesendet werden"

#: libkcups/KCupsRequest.cpp:578
#, kde-format
msgid "Failed to invoke method: %1"
msgstr "Fehler beim Aufruf der Methode: %1"

#: libkcups/PPDModel.cpp:48
msgid "Recommended Drivers"
msgstr "Empfohlene Treiber"

#: libkcups/PrinterModel.cpp:213
msgid "Printers"
msgstr "Drucker"

#: libkcups/PrinterModel.cpp:410
msgid "Idle"
msgstr "Leerlauf"

#: libkcups/PrinterModel.cpp:410
msgid "Idle, rejecting jobs"
msgstr "Inaktiv, Aufträge werden abgewiesen"

#: libkcups/PrinterModel.cpp:412
#, kde-format
msgid "Idle - '%1'"
msgstr "Leerlauf - „%1“"

#: libkcups/PrinterModel.cpp:412
#, kde-format
msgid "Idle, rejecting jobs - '%1'"
msgstr "Inaktiv, Aufträge werden abgewiesen - '%1'"

#: libkcups/PrinterModel.cpp:416
msgid "In use"
msgstr "In Benutzung"

#: libkcups/PrinterModel.cpp:418
#, kde-format
msgid "In use - '%1'"
msgstr "In Benutzung - „%1“"

#: libkcups/PrinterModel.cpp:422
msgid "Paused"
msgstr "Angehalten"

#: libkcups/PrinterModel.cpp:422
msgid "Paused, rejecting jobs"
msgstr "Angehalten, Aufträge werden abgewiesen"

#: libkcups/PrinterModel.cpp:424
#, kde-format
msgid "Paused - '%1'"
msgstr "Angehalten - „%1“"

#: libkcups/PrinterModel.cpp:424
#, kde-format
msgid "Paused, rejecting jobs - '%1'"
msgstr "Angehalten, Aufträge werden abgewiesen - „%1“"

#: libkcups/PrinterModel.cpp:428
msgid "Unknown"
msgstr "Unbekannt"

#: libkcups/PrinterModel.cpp:430
#, kde-format
msgid "Unknown - '%1'"
msgstr "Unbekannt - „%1“"

#: libkcups/SelectMakeModel.cpp:160
#, kde-format
msgid "Failed to get a list of drivers: '%1'"
msgstr "Das Laden der Treiberliste ist fehlgeschlagen: „%1“"

#: libkcups/SelectMakeModel.cpp:249
#, kde-format
msgid "Failed to search for a recommended driver: '%1'"
msgstr ""
"Bei der Suche nach einem erforderlichen Druckertreiber ist ein Fehler "
"aufgetreten.: „%1“"

#. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel)
#: libkcups/SelectMakeModel.ui:14
msgid "Select a Driver"
msgstr "Wählen Sie einen Treiber"

#. i18n: ectx: property (filter), widget (KUrlRequester, ppdFilePathUrl)
#: libkcups/SelectMakeModel.ui:35
msgid "*.ppd *.ppd.gz|PostScript Printer Description files"
msgstr "*.ppd *.ppd.gz|PostScript-Druckerbeschreibungsdateien"

#. i18n: ectx: property (text), widget (QRadioButton, radioButton_2)
#: libkcups/SelectMakeModel.ui:73
msgid "Choose the driver from the list"
msgstr "Bitte wählen Sie einen Drucker aus der Liste"

#. i18n: ectx: property (text), widget (QRadioButton, ppdFileRB)
#: libkcups/SelectMakeModel.ui:85
msgid "Manually Provide a PPD File:"
msgstr "PPD-Datei manuell bereitstellen:"

#: print-manager-kded/NewPrinterNotification.cpp:71
msgid "A New Printer was detected"
msgstr "Ein neuer Drucker wurde erkannt"

#: print-manager-kded/NewPrinterNotification.cpp:72
msgid "Configuring new printer..."
msgstr "Neuer Drucker wird eingerichtet ..."

#: print-manager-kded/NewPrinterNotification.cpp:109
msgid "Missing printer driver"
msgstr "Fehlender Druckertreiber"

#: print-manager-kded/NewPrinterNotification.cpp:111
#, kde-format
msgid "No printer driver for %1 %2."
msgstr "Kein Druckertreiber für %1 %2."

#: print-manager-kded/NewPrinterNotification.cpp:113
#, kde-format
msgid "No printer driver for %1."
msgstr "Kein Druckertreiber für %1."

#: print-manager-kded/NewPrinterNotification.cpp:115
msgid "No driver for this printer."
msgstr "Kein Treiber für diesen Drucker."

#: print-manager-kded/NewPrinterNotification.cpp:118
msgid "Search"
msgstr "Suchen"

#: print-manager-kded/NewPrinterNotification.cpp:125
msgid "The New Printer was Added"
msgstr "Der neue Drucker wurde hinzugefügt"

#: print-manager-kded/NewPrinterNotification.cpp:127
msgid "The New Printer is Missing Drivers"
msgstr "Für den neuen Drucker gibt es keine Treiber"

#: print-manager-kded/NewPrinterNotification.cpp:166
#, kde-format
msgid "'%1' is ready for printing."
msgstr "„%1“ ist druckbereit."

#: print-manager-kded/NewPrinterNotification.cpp:167
#: print-manager-kded/NewPrinterNotification.cpp:182
msgid "Print test page"
msgstr "Testseite drucken"

#: print-manager-kded/NewPrinterNotification.cpp:177
#, kde-format
msgid "'%1' has been added, please check its driver."
msgstr "„%1“ wurde hinzugefügt, bitten überprüfen Sie seinen Treiber."

#: print-manager-kded/NewPrinterNotification.cpp:181
#, kde-format
msgid "'%1' has been added, using the '%2' driver."
msgstr "„%1“ wurde hinzugefügt und verwendet den Treiber „%2“."

#: print-manager-kded/NewPrinterNotification.cpp:184
msgid "Find driver"
msgstr "Treiber suchen"

#: printer-manager-kcm/PrinterDescription.cpp:129
msgid "Share this class"
msgstr "Diese Klasse freigeben"

#: printer-manager-kcm/PrinterDescription.cpp:129
msgid "Share this printer"
msgstr "Diesen Drucker freigeben"

#. i18n: ectx: property (text), widget (KMessageWidget, errorMessage)
#: printer-manager-kcm/PrinterDescription.cpp:250
#: printer-manager-kcm/PrinterDescription.ui:293
msgid "Clean Print Heads"
msgstr "Druckköpfe reinigen"

#. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage)
#: printer-manager-kcm/PrinterDescription.cpp:259
#: printer-manager-kcm/PrinterDescription.ui:301
msgid "Print Self-Test Page"
msgstr "Selbsttestseite drucken"

#: printer-manager-kcm/PrinterDescription.cpp:266
#, fuzzy, kde-format
#| msgid "Failed to group devices: '%1'"
msgid "Failed to perform request: %1"
msgstr "Fehler beim Gruppieren der Geräte: „%1“"

#. i18n: ectx: property (text), widget (QLabel, printerNameL)
#: printer-manager-kcm/PrinterDescription.ui:83
msgctxt "@title"
msgid "Printer name or description"
msgstr "Name oder Beschreibung des Druckers"

#. i18n: ectx: property (text), widget (QLabel, statusL)
#: printer-manager-kcm/PrinterDescription.ui:102
msgid "Current status"
msgstr "Aktueller Status"

#. i18n: ectx: property (text), widget (QCheckBox, defaultCB)
#: printer-manager-kcm/PrinterDescription.ui:109
msgctxt "@option:check"
msgid "Default printer"
msgstr "Standarddrucker"

#. i18n: ectx: property (text), widget (QCheckBox, rejectPrintJobsCB)
#: printer-manager-kcm/PrinterDescription.ui:126
msgid "Reject print jobs"
msgstr "Druckaufträge ablehnen"

#. i18n: ectx: property (text), widget (QLabel, locationL)
#: printer-manager-kcm/PrinterDescription.ui:135
msgctxt "@label location of printer"
msgid "Location:"
msgstr "Standort:"

#. i18n: ectx: property (text), widget (QLabel, kindL)
#: printer-manager-kcm/PrinterDescription.ui:164
msgctxt "@label kind of printer, could be driver name or \"local raw socket\""
msgid "Kind:"
msgstr "Art:"

#. i18n: ectx: property (text), widget (KPushButton, maintenancePB)
#: printer-manager-kcm/PrinterDescription.ui:205
msgctxt "@action:button"
msgid "Maintenance"
msgstr "Wartung"

#. i18n: ectx: property (text), widget (KPushButton, openQueuePB)
#: printer-manager-kcm/PrinterDescription.ui:225
msgctxt "@action:button"
msgid "Open Print Queue"
msgstr "Druckerwarteschlange öffnen"

#. i18n: ectx: property (text), widget (KMessageWidget, errorMessage)
#: printer-manager-kcm/PrinterDescription.ui:288
msgid "Print Test Page"
msgstr "Testseite drucken"

#. i18n: ectx: property (text), widget (KMessageWidget, errorMessage)
#: printer-manager-kcm/PrinterDescription.ui:298
msgid "Print Self Test Page"
msgstr "Selbsttestseite drucken"

#: printer-manager-kcm/PrintKCM.cpp:57 printer-manager-kcm/PrintKCM.cpp:59
msgid "Print settings"
msgstr "Druckeinstellungen"

#: printer-manager-kcm/PrintKCM.cpp:74
msgctxt "@action:intoolbar"
msgid "Add a Printer Class"
msgstr "Eine Druckerklasse hinzufügen"

#: printer-manager-kcm/PrintKCM.cpp:77
msgid "Add a new printer or a printer class"
msgstr "Einen neuen Drucker oder eine neue Druckerklasse hinzufügen"

#. i18n: ectx: property (text), widget (QToolButton, removeTB)
#: printer-manager-kcm/PrintKCM.cpp:81 printer-manager-kcm/PrintKCM.ui:32
msgid "Remove Printer"
msgstr "Drucker entfernen "

#: printer-manager-kcm/PrintKCM.cpp:87
msgctxt "@action:intoolbar"
msgid "Show printers shared by other systems"
msgstr "Freigegebene Drucker auf anderen Rechnern anzeigen"

#: printer-manager-kcm/PrintKCM.cpp:91
msgctxt "@action:intoolbar"
msgid "Share printers connected to this system"
msgstr "Drucker freigeben, die mit diesem Rechner verbunden sind"

#: printer-manager-kcm/PrintKCM.cpp:93
msgctxt "@action:intoolbar"
msgid "Allow printing from the Internet"
msgstr "Drucken aus dem Internet zulassen"

#: printer-manager-kcm/PrintKCM.cpp:99
msgctxt "@action:intoolbar"
msgid "Allow remote administration"
msgstr "Einrichtung über das Netzwerk zulassen"

#: printer-manager-kcm/PrintKCM.cpp:101
msgctxt "@action:intoolbar"
msgid "Allow users to cancel any job (not just their own)"
msgstr "Benutzer dürfen alle Druckaufträge abbrechen (nicht nur die eigenen)"

#: printer-manager-kcm/PrintKCM.cpp:105
msgid "Configure the global preferences"
msgstr "Globale Einstellungen festlegen"

#: printer-manager-kcm/PrintKCM.cpp:155 printer-manager-kcm/PrintKCM.cpp:255
msgid "No printers have been configured or discovered"
msgstr "Es wurden keine Drucker eingerichtet oder erkannt"

#: printer-manager-kcm/PrintKCM.cpp:288
msgid "Remove class"
msgstr "Klasse entfernen"

#: printer-manager-kcm/PrintKCM.cpp:289
#, kde-format
msgid "Are you sure you want to remove the class '%1'?"
msgstr "Sind Sie sicher, dass Sie die Klasse „%1“ löschen möchten?"

#: printer-manager-kcm/PrintKCM.cpp:292
msgid "Remove printer"
msgstr "Drucker entfernen "

#: printer-manager-kcm/PrintKCM.cpp:293
#, kde-format
msgid "Are you sure you want to remove the printer '%1'?"
msgstr "Sind Sie sicher, dass Sie den Drucker „%1“ entfernen möchten?"

#: printer-manager-kcm/PrintKCM.cpp:338
msgctxt "@info"
msgid "Failed to get server settings"
msgstr "Das Laden der Server-Einstellungen ist fehlgeschlagen"

#: printer-manager-kcm/PrintKCM.cpp:370
msgctxt "@info"
msgid "Failed to configure server settings"
msgstr "Das Einrichten der Server-Einstellungen ist fehlgeschlagen"

#. i18n: ectx: property (text), widget (QToolButton, addTB)
#: printer-manager-kcm/PrintKCM.ui:19
msgid "Add Printer"
msgstr "Drucker hinzufügen"

#. i18n: ectx: property (text), widget (QToolButton, systemPreferencesTB)
#: printer-manager-kcm/PrintKCM.ui:52
msgid "System Preferences"
msgstr "Systemeinstellungen"

#. i18n: ectx: property (text), widget (QLabel, errorComment)
#: printer-manager-kcm/PrintKCM.ui:196
msgid "TextLabel"
msgstr "TextLabel"

#. i18n: ectx: property (text), widget (QLabel, errorText)
#: printer-manager-kcm/PrintKCM.ui:206
msgid "Error Title"
msgstr "Fehlertitel"

#. i18n: ectx: property (text), widget (QPushButton, addPrinterBtn)
#: printer-manager-kcm/PrintKCM.ui:231
msgid "Click here to add a new printer"
msgstr "Klicken Sie hier, um einen neuen Drucker hinzuzufügen"

#: printqueue/main.cpp:34 printqueue/main.cpp:36
msgid "PrintQueue"
msgstr "Warteschlange"

#: printqueue/main.cpp:44
msgid "Show printer queue"
msgstr "Druckerwarteschlange anzeigen"

#: printqueue/PrintQueueUi.cpp:242
msgid "Printer ready"
msgstr "Drucker bereit"

#. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB)
#: printqueue/PrintQueueUi.cpp:243 printqueue/PrintQueueUi.cpp:254
#: printqueue/PrintQueueUi.ui:118
msgid "Pause Printer"
msgstr "Drucker anhalten"

#: printqueue/PrintQueueUi.cpp:250
msgid "Printing..."
msgstr "Es wird gedruckt ..."

#: printqueue/PrintQueueUi.cpp:252
#, kde-format
msgid "Printing '%1'"
msgstr "„%1“ wird gedruckt"

#: printqueue/PrintQueueUi.cpp:260
msgid "Printer paused"
msgstr "Drucker angehalten"

#: printqueue/PrintQueueUi.cpp:261
msgid "Resume Printer"
msgstr "Drucken wieder fortsetzen"

#: printqueue/PrintQueueUi.cpp:276
msgid "Printer state unknown"
msgstr "Unbekannter Druckerstatus"

#: printqueue/PrintQueueUi.cpp:310
msgid "Move to"
msgstr "Verschieben nach"

#: printqueue/PrintQueueUi.cpp:446
#, kde-format
msgid "All Printers (%1 Job)"
msgid_plural "All Printers (%1 Jobs)"
msgstr[0] "Alle Drucker (%1 Auftrag)"
msgstr[1] "Alle Drucker (%1 Aufträge)"

#: printqueue/PrintQueueUi.cpp:448
#, kde-format
msgid "%2 (%1 Job)"
msgid_plural "%2 (%1 Jobs)"
msgstr[0] "%2 (%1 Auftrag)"
msgstr[1] "%2 (%1 Aufträge)"

#: printqueue/PrintQueueUi.cpp:451
msgid "All Printers"
msgstr "Alle Drucker"

#: printqueue/PrintQueueUi.cpp:518
#, kde-format
msgid "Failed to cancel '%1'"
msgstr "„%1“ kann nicht abgebrochen werden"

#: printqueue/PrintQueueUi.cpp:521
#, kde-format
msgid "Failed to hold '%1'"
msgstr "„%1“ kann nicht angehalten werden"

#: printqueue/PrintQueueUi.cpp:524
#, kde-format
msgid "Failed to release '%1'"
msgstr "„%1“ kann nicht freigegeben werden"

#: printqueue/PrintQueueUi.cpp:527
#, kde-format
msgid "Failed to reprint '%1'"
msgstr "Das erneute Drucken von „%1“ ist fehlgeschlagen"

#. i18n: ectx: property (windowTitle), widget (QWidget, PrintQueueUi)
#: printqueue/PrintQueueUi.ui:20
msgid "my printer (x jobs)"
msgstr "Mein Drucker (x Aufträge)"

#. i18n: ectx: property (text), widget (QLabel, iconL)
#: printqueue/PrintQueueUi.ui:49
msgid "Printer Icon"
msgstr "Druckersymbol"

#. i18n: ectx: property (text), widget (QPushButton, cancelJobPB)
#: printqueue/PrintQueueUi.ui:233
msgid "Cancel"
msgstr "Abbrechen"

#. i18n: ectx: property (text), widget (QPushButton, holdJobPB)
#: printqueue/PrintQueueUi.ui:253
msgid "Hold"
msgstr "Halten"

#. i18n: ectx: property (text), widget (QPushButton, resumeJobPB)
#: printqueue/PrintQueueUi.ui:266
msgid "Resume"
msgstr "Fortsetzen"

#. i18n: ectx: property (text), widget (QPushButton, reprintPB)
#: printqueue/PrintQueueUi.ui:279
msgid "Reprint"
msgstr "Erneut drucken"

#. i18n: ectx: property (text), item, widget (KComboBox, whichJobsCB)
#: printqueue/PrintQueueUi.ui:312
msgid "Active Jobs"
msgstr "Aktive Aufträge"

#. i18n: ectx: property (text), item, widget (KComboBox, whichJobsCB)
#: printqueue/PrintQueueUi.ui:317
msgid "Completed Jobs"
msgstr "Abgeschlossene Aufträge"

#. i18n: ectx: property (text), item, widget (KComboBox, whichJobsCB)
#: printqueue/PrintQueueUi.ui:322
msgid "All Jobs"
msgstr "Alle Aufträge"

#~ msgid "Only show jobs from the following printers:"
#~ msgstr "Nur Aufträge für folgende Drucker anzeigen:"

#~ msgid "All jobs"
#~ msgstr "Alle Aufträge"

#~ msgid "Completed jobs only"
#~ msgstr "Nur abgeschlossene Aufträge"

#~ msgid "Active jobs only"
#~ msgstr "Nur aktive Aufträge"

#~ msgid "A short binary option"
#~ msgstr "Eine kurze binäre Option"

#~ msgid "Show all jobs"
#~ msgstr "Alle Aufträge anzeigen"

#~ msgid "Show only active jobs"
#~ msgstr "Nur aktive Aufträge anzeigen"

#~ msgid "Show only completed jobs"
#~ msgstr "Nur abgeschlossene Aufträge anzeigen"

#~ msgid "Print queue is empty"
#~ msgstr "Die Druckerwarteschlange ist leer"

#~ msgid "There is one print job in the queue"
#~ msgid_plural "There are %1 print jobs in the queue"
#~ msgstr[0] "Es befindet sich nur ein Auftrag in der Warteschlange"
#~ msgstr[1] "Es befinden sich %1 Aufträge in der Warteschlange"

#~ msgid "Behavior"
#~ msgstr "Verhalten"

#~ msgid "All printers"
#~ msgstr "Alle Drucker"

#, fuzzy
#~| msgctxt "@label:textbox"
#~| msgid "Connection:"
#~ msgid "Conexion:"
#~ msgstr "Verbindung:"

#~ msgctxt "@option:radio"
#~ msgid "Set authentication details now"
#~ msgstr "Anmeldedetails jetzt festlegen"