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
|
msgid ""
msgstr ""
"PO-Revision-Date: 2026-02-15 08:21+0000\n"
"Last-Translator: PhillyMay <mein.alias@outlook.com>\n"
"Language-Team: German <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsadblock/de/>\n"
"Language: de\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.16-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268
msgid "-- default --"
msgstr "-- Standard --"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:221
msgid "0.0.0.0 <Domain>"
msgstr "0.0.0.0 <Domain>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:220
msgid "127.0.0.1 <Domain>"
msgstr "127.0.0.1 <Domain>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:634
msgid "1Hosts List Selection"
msgstr "1Hosts Listenauswahl"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:222
msgid "<Adblock Plus Syntax>"
msgstr "<Adblock Plus Syntax>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:219
msgid "<Domain>"
msgstr "<Domain>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324
#, fuzzy
msgid "Action"
msgstr "Aktion"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:154
msgid "Active Feeds"
msgstr "Aktive Feeds bzw. Quellen"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
#, fuzzy
msgid "AdGuard (default)"
msgstr "AdGuard (Standard)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:376
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:397
#, fuzzy
msgid "AdGuard (family)"
msgstr "AdGuard (Familie)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:323
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335
msgid "AdGuard (unfiltered)"
msgstr ""
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:3
msgid "Adblock"
msgstr "Werbeblocker"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:414
msgid "Adblock Test"
msgstr "Werbeblockertest"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:52
msgid "Add Allowlist Domain"
msgstr "Füge Allowlist Domäne hinzu"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:14
msgid "Add Blocklist Domain"
msgstr "Füge Blocklist Domäne hinzu"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:53
msgid "Add this (sub-)domain to your local allowlist."
msgstr "Fügen Sie diese (Unter-)Domain zu Ihrer lokalen Zulassungsliste hinzu."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:15
msgid "Add this (sub-)domain to your local blocklist."
msgstr "Fügen Sie diese (Sub-)Domain zu Ihrer lokalen Sperrliste hinzu."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:191
msgid "Additional Settings"
msgstr "Zusätzliche Einstellungen"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:214
msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr ""
"Zusätzliche Verzögerung (in Sekunden) bis zur Verarbeitung durch den "
"Werbeblocker."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:193
msgid "Advanced DNS Settings"
msgstr "Erweiterte DNS Einstellungen"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:195
msgid "Advanced E-Mail Settings"
msgstr "Erweiterte E-Mail Einstellungen"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:194
msgid "Advanced Report Settings"
msgstr "Erweiterte Berichtseinstellungen"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/allowlist.js:49
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:77
msgid ""
"Allowlist modifications have been saved, reload adblock that changes take "
"effect."
msgstr ""
"Änderungen an der Zulassungsliste wurden gespeichert, Adblock neu laden, "
"damit die Änderungen wirksam werden."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341
msgid "Allowlist..."
msgstr "Zulassungsliste..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:323
msgid "Answer"
msgstr "Antwort"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277
msgid "Backup Directory"
msgstr "Backupverzeichnis"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273
msgid "Base Directory"
msgstr "Basisverzeichnis"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273
msgid "Base working directory during adblock processing."
msgstr "Basis-Arbeitsverzeichnis während der Adblock-Verarbeitung."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:275
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:150
msgid "Blocked Domains"
msgstr "Gesperrte Domains"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566
msgid "Blocklist Feed"
msgstr "Sperrlisten-Feed"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:90
msgid "Blocklist Query"
msgstr "Sperrlistenabfrage"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:441
msgid "Blocklist Query..."
msgstr "Sperrlisten abfragen..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blocklist.js:49
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39
msgid ""
"Blocklist modifications have been saved, reload adblock that changes take "
"effect."
msgstr ""
"Änderungen an der Sperrliste wurden gespeichert, Adblock neu laden, damit "
"die Änderungen wirksam werden."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:350
msgid "Blocklist..."
msgstr "Sperrliste..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:25
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:63
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:118
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:185
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:230
#, fuzzy
msgid "Cancel"
msgstr "Abbrechen"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:589
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:604
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:620
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:636
msgid "Categories"
msgstr "Kategorien"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:561
msgid "Changes on this tab needs an adblock service reload to take effect."
msgstr ""
"Änderungen auf dieser Registerkarte benötigen ein Neuladen des adblock-"
"Dienstes, um wirksam zu werden."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:203
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:255
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:436
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:484
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:524
msgid "Changes on this tab needs an adblock service restart to take effect."
msgstr ""
"Änderungen auf dieser Registerkarte benötigen einen Neustart des adblock-"
"Dienstes, um wirksam zu werden."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:286
msgid "Clear"
msgstr "Leeren"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:319
msgid "Client"
msgstr "Client"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:271
msgid "Clients"
msgstr "Clients"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:401
msgid "Cloudflare (malware)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402
msgid "Cloudflare (malware+family)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:337
msgid "Cloudflare (unfiltered)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:53
msgid ""
"Configuration of the adblock package to block ad/abuse domains by using DNS. "
"For further information %s"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400
msgid "Control D (adblock)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:378
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
msgid "Control D (family)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398
msgid "Control D (security)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Control D (unfiltered)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:270
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:272
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:274
msgid "Count"
msgstr "Anzahl"
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:43
msgid "Custom Feed Editor"
msgstr "Benutzerdefinierter Feed-Editor"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:158
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439
msgid "DNS Backend"
msgstr "DNS-Backend"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460
msgid "DNS Directory"
msgstr "DNS-Verzeichnis"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463
msgid "DNS Instance"
msgstr "DNS-Instanz"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456
msgid "DNS Lookup Domain"
msgstr "Domäne für DNS-Lookups"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51
msgid "DNS Report"
msgstr "DNS-Report"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471
msgid "DNS Restart Timeout"
msgstr "DNS-Restart-Timeout"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389
msgid "DNS4EU (protective)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:391
msgid "DNS4EU (protective+adblock)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:369
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:390
msgid "DNS4EU (protective+family)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:371
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:392
msgid "DNS4EU (protective+family+adblock)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:322
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:334
msgid "DNS4EU (unfiltered)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317
msgid "Date"
msgstr "Datum"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:234
msgid "Description"
msgstr "Beschreibung"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:350
msgid ""
"Devices with listed MAC addresses will always use the configured filtered "
"DNS server."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid ""
"Devices with listed MAC addresses will always use the configured unfiltered "
"DNS server."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:327
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:339
msgid "Digitale Gesellschaft (unfiltered)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:322
msgid "Domain"
msgstr "Domäne"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456
msgid "Domain to check for a successful DNS backend restart."
msgstr "Domäne, um einen erfolgreichen DNS-Backend-Neustart zu überprüfen."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273
msgid "Domains"
msgstr "Domänen"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:288
msgid "Don't check SSL server certificates during download."
msgstr "Während des Downloads keine SSL-Serverzertifikate überprüfen."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:256
msgid "Download"
msgstr "Herunterladen"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:288
msgid "Download Insecure"
msgstr "Unsicher herunterladen"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:281
msgid "Download Utility"
msgstr "Download-Werkzeug"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241
msgid "E-Mail Notification"
msgstr "E-Mail-Benachrichtigung"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:535
msgid "E-Mail Profile"
msgstr "E-Mail-Profil"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245
msgid "E-Mail Receiver Address"
msgstr "E-Mail Empfängeradresse"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527
msgid "E-Mail Sender Address"
msgstr "E-Mail Absenderadresse"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:531
msgid "E-Mail Topic"
msgstr "E-Mail-Thema"
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "Edit Allowlist"
msgstr "Zulassungsliste bearbeiten"
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:35
msgid "Edit Blocklist"
msgstr "Sperrliste bearbeiten"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:199
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:238
msgid "Empty field not allowed"
msgstr "Leeres Feld ist nicht erlaubt"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:453
msgid ""
"Empty the DNS cache before adblock processing starts to reduce the memory "
"consumption."
msgstr ""
"Den DNS-Cache leeren, bevor die Adblock-Verarbeitung beginnt, den "
"Speicherverbrauch zu reduzieren."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347
msgid "Enable Filtered DNS Routing"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:223
msgid "Enable SafeSearch"
msgstr "Aktiviere SafeSearch"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
msgid "Enable Unfiltered DNS Routing"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:515
msgid ""
"Enable a GeoIP map that shows the geographical location of the blocked "
"domains."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:206
msgid "Enable the adblock service."
msgstr "Aktiviere den Adblock-Dienst."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:258
msgid "Enable verbose debug logging in case of any processing errors."
msgstr ""
"Aktiviere das ausführliche Anwendungs-Logging bei Verarbeitungsfehlern."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:206
msgid "Enabled"
msgstr "Aktiviert"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:223
msgid ""
"Enforcing SafeSearch for google, bing, brave, duckduckgo, yandex, youtube "
"and pixabay."
msgstr ""
"Erzwinge SafeSearch für Google, Bing, Brave, DuckDuckGo, Yandex, YouTube und "
"Pixabay."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Entire interfaces or VLANs will be routed to the filtered DNS server."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312
msgid "Entire interfaces or VLANs will be routed to the unfiltered DNS server."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:563
msgid "External Blocklist Feeds"
msgstr "Externe Sperrlisten-Feeds"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:345
msgid "External Filtered DNS Policy (MAC-/Interface‑based DNS bypass)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299
msgid "External Unfiltered DNS Policy (MAC-/Interface‑based DNS bypass)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:231
msgid "Extra Extra Large"
msgstr "Sehr, sehr groß"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:230
msgid "Extra Large"
msgstr "Sehr groß"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:194
msgid "Feed Name"
msgstr "Feedname"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:196
msgid "Feed Selection"
msgstr "Feed-Auswahl"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:276
msgid "Fill"
msgstr "Füllen"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:179
msgid "Filter criteria like date, domain or client (optional)"
msgstr "Filterkriterien wie z.B. Datum, Domain oder Client (optional)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Firewall LAN Devices/VLANs that should be forced locally."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:192
msgid "Firewall Settings"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421
msgid "Firewall ports that should be forced locally."
msgstr "Firewall-Ports, die lokal erzwungen/aufgelöst werden sollen."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:465
msgid "First instance"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:453
msgid "Flush DNS Cache"
msgstr "DNS-Cache leeren"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid "Force Local DNS"
msgstr "Lokale DNS-Auflösung erzwingen"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
msgid "Forced Devices/VLANs"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421
msgid "Forced Ports"
msgstr "Erzwungene Ports"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237
msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. This needs the additional 'tcpdump' or 'tcpdump-mini' package "
"installation and a full adblock service restart to take effect."
msgstr ""
"DNS-bezogenen Netzwerk-Verkehr über tcpdump erfassen und einen DNS-Bericht "
"auf Anfrage zur Verfügung stellen. Dies erfordert die zusätzliche "
"Paketinstallation von \"tcpdump\" oder \"tcpdump-mini\" und einen "
"vollständigen Neustart des Adblock-Dienstes."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:190
msgid "General Settings"
msgstr "Allgemeine Einstellungen"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:515
msgid "GeoIP Map"
msgstr "GeoIP-Karte"
#: applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json:3
msgid "Grant access to LuCI app adblock"
msgstr "Zugriff auf LuCI adblock-App gewähren"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:618
msgid "Hagezi List Selection"
msgstr "Hagezi Listenauswahl"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:263
msgid "High Priority"
msgstr "Hohe Priorität"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262
msgid "Highest Priority"
msgstr "Höchste Priorität"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:319
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:365
msgid "IPv4 DNS Resolver"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:365
msgid ""
"IPv4 DNS resolver applied to MACs and interfaces using the filtered DNS "
"policy."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:319
msgid ""
"IPv4 DNS resolver applied to MACs and interfaces using the unfiltered DNS "
"policy."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:331
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "IPv6 DNS Resolver"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid ""
"IPv6 DNS resolver applied to MACs and interfaces using the filtered DNS "
"policy."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:331
msgid ""
"IPv6 DNS resolver applied to MACs and interfaces using the unfiltered DNS "
"policy."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:144
msgid "Information"
msgstr "Informationen"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:320
msgid "Interface"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
msgid "Interface DNS Filter Targets"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:202
msgid "Invalid characters"
msgstr "Ungültige Zeichen"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:117
msgid "Invalid input values, unable to save modifications."
msgstr "Ungültige Eingangswerte, kann keine Änderungen speichern."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476
msgid "Jail Mode"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:229
msgid "Large"
msgstr "Groß"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:174
msgid "Last Run"
msgstr "Letzter Durchgang"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:401
msgid "Latest DNS Requests"
msgstr "Neueste DNS Anfragen"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266
msgid "Least Priority"
msgstr "Niedrigste Priorität"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:265
msgid "Less Priority"
msgstr "Niedrigere Priorität"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:226
msgid "Limit SafeSearch"
msgstr "SafeSearch einschränken"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:226
msgid "Limit SafeSearch to certain providers."
msgstr "SafeSearch auf bestimmte Anbieter einschränken."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:487
msgid "List of available network devices used by tcpdump."
msgstr ""
"Liste an verfügbaren Netzwerkschnittstellen die von tcpdump verwendet werden "
"können."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:209
msgid "List of available network interfaces to trigger the adblock start."
msgstr ""
"Liste der verfügbaren Netzwerkschnittstellen, die den adblock-Start auslösen."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:439
msgid "List of supported DNS backends."
msgstr "Liste der unterstützten DNS-Backends."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:281
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
"Liste der unterstützten und vollständig vorkonfigurierten Download-"
"Hilfsprogramme."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409
msgid "Local DNS Enforcement"
msgstr ""
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:59
msgid "Log View"
msgstr "Protokollansicht"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:350
msgid "MAC DNS Filter Targets"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:433
msgid "Map"
msgstr "Karte"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:238
msgid "Map Reset"
msgstr "Karte zurücksetzen"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:228
msgid "Medium"
msgstr "Mittel"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:261
msgid "Nice Level"
msgstr "Nice-Level"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logtemplate.js:41
msgid "No %s related logs yet!"
msgstr "Bisher noch keine %s bezogenen Protokolle!"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:429
msgid "No GeoIP Map data!"
msgstr "Keine GeoIP-Kartendaten!"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:133
msgid "No Query results!"
msgstr "Keine Abfrageergebnisse!"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:264
msgid "Normal Priority"
msgstr "Normale Priorität"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476
msgid ""
"Only domains on the allowlist are permitted, all other DNS requests are "
"rejected."
msgstr ""
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:19
msgid "Overview"
msgstr "Übersicht"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460
msgid "Overwrite the default target directory for the generated blocklist."
msgstr ""
"Überschreiben des Standard-Zielverzeichnisses für die generierte Sperrliste."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:535
msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr ""
"\"msmtp\"-Profil, das für Adblock-Benachrichtigungsmails verwendet wird."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:213
msgid "Protocol/URL format not supported"
msgstr "Protokoll/URL-Format nicht unterstützt"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:382
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403
msgid "Quad9 (malware)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:326
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338
msgid "Quad9 (unfiltered)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:141
msgid "Query"
msgstr "Abfrage"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:91
msgid "Query active blocklists and backups for a specific domain."
msgstr "Frage aktive Sperrlisten und Backups über eine spezifische Domain ab."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245
msgid "Receiver address for adblock notification e-mails."
msgstr "Empfängeradresse für Mail-Benachrichtigungen des Werbeblockers."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411
msgid ""
"Redirect all local DNS queries from specified LAN zones to the local DNS "
"resolver, applies to UDP and TCP protocol."
msgstr ""
"Leitet alle lokalen DNS-Anfragen aus den angegebenen LAN-Zonen an den "
"lokalen DNS-Resolver um, gilt für das UDP- und TCP-Protokoll."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:204
msgid "Refresh"
msgstr "Aktualisieren"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:148
msgid "Refresh DNS Report"
msgstr "Aktualisiere DNS-Report"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:449
msgid "Refresh..."
msgstr "Aktualisiere..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:495
msgid "Report Chunk Count"
msgstr "Berichte Datenblock-Anzahl"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:500
msgid "Report Chunk Size"
msgstr "Berichte Datenblock-Größe"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:491
msgid "Report Directory"
msgstr "Report-Verzeichnis"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:487
msgid "Report Interface"
msgstr "Berichte-Schnittstelle"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505
msgid "Report Ports"
msgstr "Berichte Ports"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:495
msgid "Report chunk count used by tcpdump."
msgstr "Berichte Datenblock-Nutzung durch tcpdump."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:500
msgid "Report chunk size used by tcpdump in MByte."
msgstr "Berichte von tcpdump verwendete Datenblockgröße in MByte."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:512
msgid "Resolve IPs"
msgstr "IPs auflösen"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:512
msgid "Resolve reporting IP addresses by using reverse DNS (PTR) lookups."
msgstr ""
"Auflösen von IP-Adressen für die Berichterstattung mithilfe von Reverse DNS "
"(PTR) Lookups."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:105
msgid "Result"
msgstr "Ergebnis"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347
msgid ""
"Routes selected MACs or interfaces to a filtered external DNS resolver, "
"bypassing local adblock."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
msgid ""
"Routes selected MACs or interfaces to an unfiltered external DNS resolver, "
"bypassing local adblock."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:218
msgid "Rule"
msgstr "Regel"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:166
msgid "Run Directories"
msgstr "Run-Verzeichnisse"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:170
msgid "Run Flags"
msgstr "Laufzeit-Flags"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:162
msgid "Run Interfaces"
msgstr "Run-Interfaces"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:45
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:83
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:296
msgid "Save"
msgstr "Speichern"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:675
msgid "Save & Reload"
msgstr "Speichern und Neuladen"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:683
msgid "Save & Restart"
msgstr "Speichern und Neustarten"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:466
msgid "Second instance"
msgstr "Zweite Instanz"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241
msgid ""
"Send adblock related notification e-mails. This needs the additional 'msmtp' "
"package installation."
msgstr ""
"Sende Benachrichtigungs-E-Mails über adblock. Hinweis: Hierzu muss das "
"\"msmtp\"-Zusatzpaket installiert sein."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527
msgid "Sender address for adblock notification E-Mails."
msgstr "Absenderadresse für Adblock-Benachrichtigungsmails."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463
msgid "Set the dns backend instance used by adblock."
msgstr "Die von Adblock verwendete DNS-Backend-Instanz festlegen."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:188
msgid "Settings"
msgstr "Einstellungen"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:449
msgid "Shift DNS Blocklist"
msgstr "DNS-Sperrliste verschieben"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:449
msgid ""
"Shift the final DNS blocklist to the backup directory and only set a soft "
"link to this file in memory. As long as your backup directory resides on an "
"external drive, enable this option to save memory."
msgstr ""
"Verschieben der endgültigen DNS-Blockliste in das Backup-Verzeichnis und "
"setzen eines Softlinks zu dieser Datei im Speicher. Solange Ihr Backup-"
"Verzeichnis auf einem externen Laufwerk liegt, aktivieren Sie diese Option, "
"um Speicher zu sparen."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:226
msgid "Size"
msgstr "Größe"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:227
msgid "Small"
msgstr "Klein"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:209
msgid "Startup Trigger Interface"
msgstr "Trigger-Interface fürs Starten"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:146
msgid "Status / Version"
msgstr "Status / Version"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:602
msgid "StevenBlack List Selection"
msgstr "StevenBlack Auswahlliste"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:658
msgid "Stop"
msgstr "Stopp"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:667
msgid "Suspend"
msgstr "Anhalten"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:178
msgid "System Info"
msgstr "Systeminfo"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219
msgid "TLD Compression"
msgstr "TLD-Kompression"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:491
msgid "Target directory for DNS related report files."
msgstr "Zielverzeichnis für DNS-bezogene Report Dateien."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277
msgid "Target directory for blocklist backups."
msgstr "Zielverzeichnis für Backups von Blocklisten."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/allowlist.js:29
msgid "The allowlist is too big, unable to save modifications."
msgstr ""
"Die Zulassungsliste ist zu groß, Änderungen können nicht gespeichert werden."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blocklist.js:29
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
"Die Sperrliste ist zu groß, Änderungen können nicht gespeichert werden."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505
msgid "The list of ports used by tcpdump."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:261
msgid "The selected priority will be used for adblock background processing."
msgstr ""
"Die gewählte Priorität wird für die adblock-Hintergrundverarbeitung "
"verwendet."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logtemplate.js:50
msgid "The syslog output, pre-filtered for messages related to: %s"
msgstr ""
"Die Syslog-Ausgabe, vorgefiltert nach Meldungen, die sich auf Folgendes "
"beziehen: %s"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219
msgid ""
"The top level domain compression removes thousands of needless host entries "
"from the final DNS blocklist."
msgstr ""
"Die Top-Level-Domainkompression entfernt tausende unnötige Hosteinträge aus "
"der finalen DNS-Sperrliste."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/allowlist.js:32
msgid ""
"This is the local adblock allowlist to always-allow certain domains.<br /> "
"<em><b>Please note:</b></em> add only one domain per line. Comments "
"introduced with '#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
"Dies ist die lokale Werbeblocker-Zulassungsliste, um bestimmte Domains immer "
"zu erlauben.<br /> <em><b>Bitte beachten:</b></em> Fügen Sie nur eine Domain "
"pro Zeile hinzu. Kommentare mit '#' sind erlaubt - IP-Adressen, Wildcards "
"und Regex sind es nicht."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blocklist.js:32
msgid ""
"This is the local adblock blocklist to always-block certain domains.<br /> "
"<em><b>Please note:</b></em> add only one domain per line. Comments "
"introduced with '#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
"Dies ist die lokale Werbeblocker-Sperrliste, um bestimmte Domains immer zu "
"sperren.<br /> <em><b>Bitte beachten:</b></em> Fügen Sie nur eine Domain pro "
"Zeile hinzu. Kommentare mit '#' sind erlaubt - IP-Adressen, Wildcards und "
"Regex sind es nicht."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:368
msgid ""
"This tab displays the most recently generated DNS report. Use the ‘Refresh’ "
"button to update it."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:318
msgid "Time"
msgstr "Zeit"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471
msgid "Timeout to wait for a successful DNS backend restart."
msgstr "Timeout für erfolgreichen DNS-Backend-Startvorgang."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:394
msgid "Top Statistics"
msgstr "Top-Statistiken"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:531
msgid "Topic for adblock notification E-Mails."
msgstr "Betreff für Adblock-Benachrichtigungsmails."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:214
msgid "Trigger Delay"
msgstr "Verzögerung der Trigger-Bedingung"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:321
msgid "Type"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:207
msgid "URL"
msgstr "URL"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:587
msgid "UTCapitole Archive Selection"
msgstr "UTCapitole Archivauswahl"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:548
msgid "Unable to parse the custom feed file!"
msgstr "Unfähig, die benutzerdefinierte Feed-Datei zu analysieren!"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:555
msgid "Unable to parse the default feed file!"
msgstr "Unfähig, die Standard-Feed-Datei zu analysieren!"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84
msgid "Unable to parse the runtime information!"
msgstr "Die Laufzeitinformationen konnten nicht verglichen werden!"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/allowlist.js:55
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blocklist.js:55
msgid "Unable to save modifications: %s"
msgstr "Änderungen können nicht gespeichert werden: %s"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:266
msgid "Upload"
msgstr "Hochladen"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:72
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:77
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:83
msgid "Upload of the custom feed file failed."
msgstr "Hochladen der benutzerdefinierten Feed-Datei gescheitert."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:232
msgid "Varying"
msgstr "Veränderlich"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:258
msgid "Verbose Debug Logging"
msgstr "Ausführliche Debug-Protokollierung"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:180
msgid ""
"With this editor you can upload your local custom feed file or fill up an "
"initial one (a 1:1 copy of the version shipped with the package). The file "
"is located at '/etc/adblock/adblock.custom.feeds'. Then you can edit this "
"file, delete entries, add new ones or make a local backup. To go back to the "
"maintainers version just clear the custom feed file."
msgstr ""
"Mit diesem Editor können Sie Ihre lokale benutzerdefinierte oder eine erste "
"(1:1 Kopie der mit dem Paket gelieferten) Feed-Datei hochladen. Die Datei "
"befindet sich in '/etc/adblock/adblock.custom.feeds'. Dann können Sie diese "
"Datei bearbeiten, Einträge löschen, neue hinzufügen oder ein lokales Backup "
"erstellen. Um wieder auf die Version der Betreuer zu gehen, löschen Sie "
"einfach die benutzerdefinierte Feed-Datei."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:442
#, fuzzy
msgid "bind"
msgstr "bind"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:54
msgid "check the online documentation"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
msgid "dnsforge (clean)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395
msgid "dnsforge (hard)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:372
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393
msgid "dnsforge (normal)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:440
msgid "dnsmasq"
msgstr "dnsmasq"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:444
msgid "kresd"
msgstr "kresd"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:172
msgid "max. result set size"
msgstr "Max. Größe des Result-Sets"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:159
msgid "max. top statistics"
msgstr "Max. Top-Statistiken"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445
msgid "raw"
msgstr "roh"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:443
msgid "smartdns"
msgstr "smartdns"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:441
msgid "unbound"
msgstr "unbound"
#~ msgid ""
#~ "Configuration of the adblock package to block ad/abuse domains by using "
#~ "DNS. For further information <a href=\"https://github.com/openwrt/"
#~ "packages/blob/master/net/adblock/files/README.md\" target=\"_blank\" "
#~ "rel=\"noreferrer noopener\" >check the online documentation</a>"
#~ msgstr ""
#~ "Konfiguration des Adblock-Pakets um Werbe- und schädliche Domains zu via "
#~ "DNS zu sperren. Weitere Informationen befindet sich in der <a "
#~ "href=\"https://github.com/openwrt/packages/blob/master/net/adblock/files/"
#~ "README.md\" target=\"_blank\" rel=\"noreferrer noopener\" >Dokumentation</"
#~ "a>"
#~ msgid "Allow Local Client IPs"
#~ msgstr "Lokale Client-IPs zulassen"
#~ msgid ""
#~ "Allow all requests of certain DNS clients based on their IP address (RPZ-"
#~ "CLIENT-IP)."
#~ msgstr ""
#~ "Erlauben aller Anfragen bestimmter DNS-Clients auf Basis ihrer IP-Adresse "
#~ "(RPZ-CLIENT-IP)."
#~ msgid "Block Local Client IPs"
#~ msgstr "Lokale Client-IPs blockieren"
#~ msgid ""
#~ "Block all requests of certain DNS clients based on their IP address (RPZ-"
#~ "CLIENT-IP)."
#~ msgstr ""
#~ "Blockieren aller Anfragen bestimmter DNS-Clients auf Basis ihrer IP-"
#~ "Adresse (RPZ-CLIENT-IP)."
#~ msgid "Blocked DNS Requests"
#~ msgstr "Geblockte DNS-Anfragen"
#~ msgid ""
#~ "Builds an additional restrictive DNS blocklist to block access to all "
#~ "domains except those listed in the allowlist. You can use this "
#~ "restrictive blocklist e.g. for guest wifi or kidsafe configurations."
#~ msgstr ""
#~ "Erzeugt eine zusätzliche restriktive DNS-Sperrliste, um alle Domänen "
#~ "außer denen in der Zulassungsliste zu blockieren. Hinweis: eine solche "
#~ "restriktive Sperrliste kann z.B. für Gast-WLANs oder als Kindersicherung "
#~ "genutzt werden."
#~ msgid ""
#~ "Enable a GeoIP map that shows the geographical location of the blocked "
#~ "domains. This requires external requests to get the map tiles and "
#~ "geolocation data."
#~ msgstr ""
#~ "Ermöglichen einer GeoIP-Karte, die den geografischen Standort der "
#~ "blockierten Domänen zeigt. Dies erfordert externe Anfragen, um die "
#~ "Kartenfliesen und Geolokationsdaten zu erhalten."
#~ msgid "End Timestamp"
#~ msgstr "Ende-Zeitstempel"
#~ msgid "Firewall LAN source zones that should be forced locally."
#~ msgstr "Firewall LAN-Quellzonen, die local zwingend sein sollten."
#~ msgid "First instance (default)"
#~ msgstr "Erste Instanz (Standard)"
#~ msgid "Forced Zones"
#~ msgstr "Erzwungene Zonen"
#~ msgid "Jail Blocklist"
#~ msgstr "Jail-Sperrliste"
#~ msgid "Jail Directory"
#~ msgstr "Sperrverzeichnis"
#~ msgid "Space separated list of ports used by tcpdump."
#~ msgstr "Leerzeichengetrennte Liste an Ports die von tcpdump genutzt werden."
#~ msgid "Start Timestamp"
#~ msgstr "Start-Zeitstempel"
#~ msgid ""
#~ "Target directory for the generated jail blocklist. If this directory "
#~ "points to your DNS directory, the jail blocklist replaces your default "
#~ "blocklist."
#~ msgstr ""
#~ "Zielverzeichnis für die erzeugte Jail-Sperrliste. Wenn dieses Verzeichnis "
#~ "auf Ihr DNS-Verzeichnis verweist, ersetzt die Jail-Sperrliste Ihre "
#~ "Standard-Sperrliste."
#~ msgid "Third instance"
#~ msgstr "Dritte Instanz"
#~ msgid ""
#~ "This tab shows the last generated DNS Report, press the 'Refresh' button "
#~ "to get a current one."
#~ msgstr ""
#~ "Auf diesem Tab ist der letzte generierte DNS Report zu sehen, drücke "
#~ "'Aktualisieren' um ihn neu zu erstellen."
#~ msgid "Total DNS Requests"
#~ msgstr "Gesamte DNS-Anfragen"
#~ msgid "0.0.0.0<SPACE><DOMAIN>"
#~ msgstr "0.0.0.0<LEERZEICHEN><DOMAIN-NAME>"
#~ msgid "127.0.0.1<SPACE><DOMAIN>"
#~ msgstr "127.0.0.1<LEERZEICHEN><DOMAIN-NAME>"
#~ msgid "<ADBLOCK-PLUS>"
#~ msgstr "<ADBLOCK-PLUS>"
#~ msgid "<DOMAIN>"
#~ msgstr "<DOMAIN>"
#~ msgid "<HTTP[S]-URL>"
#~ msgstr "<HTTP[S]-URL>"
#~ msgid "Firewall source zones that should be forced locally."
#~ msgstr "Firewall-Zonen, die lokal erzwungen/aufgelöst werden sollen."
#~ msgid "Map..."
#~ msgstr "Karte..."
#~ msgid ""
#~ "Redirect all DNS queries from specified zones to the local DNS resolver, "
#~ "applies to UDP and TCP protocol."
#~ msgstr ""
#~ "Leitet alle DNS-Anfragen aus den angegebenen Zonen an den lokalen DNS-"
#~ "Resolver um, gilt für das UDP- und TCP-Protokoll."
#~ msgid "Adblock Log"
#~ msgstr "Adblock-Log"
#~ msgid "GeoIP Map is not enabled!"
#~ msgstr "GeoIP-Karte ist nicht aktiviert!"
#~ msgid "Base Temp Directory"
#~ msgstr "Basis-Temp-Verzeichnis"
#~ msgid "Low Priority Service"
#~ msgstr "Dienst mit niedriger Priorität"
#~ msgid "Run Utils"
#~ msgstr "Run-Werkzeuge"
|