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
|
msgid ""
msgstr ""
"PO-Revision-Date: 2023-09-25 17:27+0000\n"
"Last-Translator: \"Jörg S.\" <joerg.schwerdtfeger@gmail.com>\n"
"Language-Team: German <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsadblock-fast/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.1-dev\n"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:223
msgid "%s is currently disabled"
msgstr "%s ist derzeit deaktiviert"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106
msgid "%s is not installed or not found"
msgstr "%s ist nicht installiert oder konnte nicht gefunden werden"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:398
msgid "Action"
msgstr "Aktion"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:118
msgid "Active"
msgstr "Aktiv"
#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3
msgid "AdBlock Fast"
msgstr "AdBlock Fast"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:185
msgid "AdBlock on %s only"
msgstr "AdBlock nur auf %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156
msgid "AdBlock on all instances"
msgstr "AdBlock auf allen Instanzen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:349
msgid "AdBlock-Fast - Allowed and Blocked Domains"
msgstr "AdBlock-Fast – Erlaubte und blockierte Domains"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:373
msgid "AdBlock-Fast - Allowed and Blocked Lists URLs"
msgstr "AdBlock-Fast – Erlaubte und blockierte URL-Listen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:50
msgid "AdBlock-Fast - Configuration"
msgstr "AdBlock-Fast – Konfiguration"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:121
msgid "AdBlock-Fast - Status"
msgstr "AdBlock-Fast – Status"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:251
msgid "Add IPv6 entries"
msgstr "IPv6-Einträge hinzufügen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:248
msgid "Add IPv6 entries to block-list."
msgstr "Füge IPv6-Einträge zur Blockliste hinzu."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:53
msgid "Advanced Configuration"
msgstr "Erweiterte Konfiguration"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:399
msgid "Allow"
msgstr "erlauben"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357
msgid "Allowed Domains"
msgstr "Erlaubte Domains"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:312
msgid ""
"Attempt to create a compressed cache of block-list in the persistent memory."
msgstr ""
"Versuche einen komprimierten Cache der Blockliste im persistenten Speicher "
"zu erstellen."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:236
msgid "Automatic Config Update"
msgstr "Automatisches Update der Konfiguration"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:52
msgid "Basic Configuration"
msgstr "Grundlegende Konfiguration"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:400
msgid "Block"
msgstr "blockieren"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:365
msgid "Blocked Domains"
msgstr "Gesperrte Domains"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:134
msgid "Blocking %s domains (with %s)."
msgstr "Blockieren von %s Domänen (mit %s)."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160
msgid "Cache file found."
msgstr "Cache-Datei gefunden."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:139
msgid "Compressed cache file created."
msgstr "Komprimierte Cache-Datei erstellt."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:162
msgid "Compressed cache file found."
msgstr "Komprimierte Cache-Datei gefunden."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:221
msgid "Config (%s) validation failure!"
msgstr "Validierungsfehler der Konfiguration (%s)!"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:209
msgid "Controls system log and console output verbosity."
msgstr ""
"Steuert die Ausführlichkeit des Systemprotokolls und der Konsolenausgabe."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:285
msgid "Curl download retry"
msgstr "Curl-Download-Wiederholung"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:272
msgid "Curl maximum file size (in bytes)"
msgstr "Maximale Dateigröße für Curl (in Bytes)"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:111
msgid "DNS Service"
msgstr "DNS-Dienst"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:56
msgid "DNS resolution option, see the %sREADME%s for details."
msgstr "DNS-Auflösungsoption, siehe %sREADME%s für Details."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:323
msgid "Directory for compressed cache file"
msgstr "Verzeichnis für die komprimierte Cache-Datei"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:325
msgid ""
"Directory for compressed cache file of block-list in the persistent memory."
msgstr ""
"Verzeichnis für die komprimierte Cachedatei der Blockliste im persistenten "
"Speicher."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:239
msgid "Disable"
msgstr "Deaktivieren"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:341
msgid "Disable Debugging"
msgstr "Debugging deaktivieren"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:156
msgid "Disabled"
msgstr "deaktiviert"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:398
msgid "Disabling %s service"
msgstr "Deaktiviere Service %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:134
msgid "Dnsmasq Config File URL"
msgstr "URL der Dnsmasq-Konfigurationsdatei"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:250
msgid "Do not add IPv6 entries"
msgstr "Keine IPv6-Einträge hinzufügen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:315
msgid "Do not store compressed cache"
msgstr "Keinen komprimierten Cache speichern"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:302
msgid "Do not use simultaneous processing"
msgstr "Verwende keine Simultanverarbeitung"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:262
msgid "Download time-out (in seconds)"
msgstr "Download-Timeout (in Sekunden)"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114
msgid "Downloading lists"
msgstr "Herunterladen von Listen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:240
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:394
msgid "Enable"
msgstr "aktivieren"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:338
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342
msgid "Enable Debugging"
msgstr "Debugging aktivieren"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:339
msgid "Enables debug output to /tmp/adblock-fast.log."
msgstr "Aktiviere Debug-Ausgabe an /tmp/adblock-fast.log."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:379
msgid "Enabling %s service"
msgstr "Aktiviere Service %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115
msgid "Error"
msgstr "Fehler"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:293
msgid "Errors encountered, please check the %sREADME%s"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:117
msgid "Fail"
msgstr "Fehlschlag"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246
msgid "Failed to access shared memory"
msgstr "Zugriff auf den gemeinsamen Speicher fehlgeschlagen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:242
msgid "Failed to create '%s' file"
msgstr "Die Datei „%s“ konnte nicht erstellt werden"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264
msgid "Failed to create block-list or restart DNS resolver"
msgstr ""
"Die Blockierungsliste konnte nicht erstellt werden oder der DNS-Resolver "
"konnte nicht neu gestartet werden"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255
msgid "Failed to create compressed cache"
msgstr "Anlegen des komprimierten Caches fehlgeschlagen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241
msgid "Failed to create directory for %s file"
msgstr "Anlegen des Verzeichnisses für die Datei %s fehlgeschlagen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276
msgid "Failed to create output/cache/gzip file directory"
msgstr ""
"Anlegen des output/cache/-Verzeichnisses für die gzip-Datei fehlgeschlagen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278
msgid "Failed to detect format %s"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271
msgid "Failed to download %s"
msgstr "Download von %s fehlgeschlagen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269
msgid "Failed to download Config Update file"
msgstr "Der Download der Konfigurations-Update-Datei ist fehlgeschlagen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250
msgid "Failed to format data file"
msgstr "Das Formatieren der Datendatei ist fehlgeschlagen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:259
msgid "Failed to move '%s' to '%s'"
msgstr "Das Bewegen von „%s“ nach „%s“ ist fehlgeschlagen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252
msgid "Failed to move temporary data file to '%s'"
msgstr "Das Bewegen der temporären Datei nach „%s“ ist fehlgeschlagen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:248
msgid "Failed to optimize data file"
msgstr "Die Optimierung der Datendatei ist fehlgeschlagen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:273
msgid "Failed to parse %s"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272
msgid "Failed to parse Config Update file"
msgstr "Die Konfigurations-Update-Datei konnte nicht geparst werden"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:249
msgid "Failed to process allow-list"
msgstr "Die Allow-Liste konnte nicht verarbeitet werden"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:267
msgid "Failed to reload/restart DNS resolver"
msgstr "Der Neustart des DNS-Resolvers ist fehlgeschlagen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257
msgid "Failed to remove temporary files"
msgstr "Das Bewegen der temporären Dateien ist fehlgeschlagen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:245
msgid "Failed to restart/reload DNS resolver"
msgstr "Der Neustart des DNS-Resolvers ist fehlgeschlagen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247
msgid "Failed to sort data file"
msgstr "Das Sortieren der Datendatei ist fehlgeschlagen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:266
msgid "Failed to stop %s"
msgstr "Das Anhalten von %s ist fehlgeschlagen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:258
msgid "Failed to unpack compressed cache"
msgstr "Das Entpacken des komprimierten Caches ist fehlgeschlagen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:142
msgid "Force DNS ports:"
msgstr "DNS-Ports erzwingen:"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:347
msgid "Force Re-Download"
msgstr "Erneutes Herunterladen erzwingen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113
msgid "Force Reloading"
msgstr "Erneut Laden erzwingen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:197
msgid "Force Router DNS"
msgstr "Router-DNS erzwingen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201
msgid "Force Router DNS server to all local devices"
msgstr "Router-DNS-Server auf alle lokalen Geräte erzwingen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:341
msgid "Force re-downloading %s block lists"
msgstr "Erneutes Herunterladen von %s-Sperrlisten erzwingen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:198
msgid "Forces Router DNS use on local devices, also known as DNS Hijacking."
msgstr ""
"Erzwingt die Verwendung des Router-DNS auf lokalen Geräten, auch als DNS "
"Hijacking bekannt."
#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3
msgid "Grant UCI and file access for luci-app-adblock-fast"
msgstr "UCI- und Dateizugriff für luci-app-adblock-fast gewähren"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:247
msgid "IPv6 Support"
msgstr "IPv6 Unterstützung"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:274
msgid ""
"If curl is installed and detected, it would not download files bigger than "
"this."
msgstr ""
"Wenn curl installiert ist und erkannt wird, werden keine Dateien "
"heruntergeladen, die größer sind als dieser Wert."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:287
msgid ""
"If curl is installed and detected, it would retry download this many times "
"on timeout/fail."
msgstr ""
"Neuversuche bei Zeitüberschreitung/Fehler des Downloads, falls Curl "
"installiert und erkannt wird."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358
msgid "Individual domains to be allowed."
msgstr "Einzelne zuzulassende Domänen."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:366
msgid "Individual domains to be blocked."
msgstr "Einzelne zu sperrende Domains."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:221
msgid "LED to indicate status"
msgstr "LED für Statusanzeige"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:299
msgid ""
"Launch all lists downloads and processing simultaneously, reducing service "
"start time."
msgstr ""
"Starte alle Listen Downloads und Verarbeitungsvorgänge gleichzeitig, "
"reduziert Startzeit des Dienstes."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200
msgid "Let local devices use their own DNS servers if set"
msgstr ""
"Lokale Geräte können ihre eigenen DNS-Server verwenden, wenn diese "
"eingestellt sind"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:187
msgid "No AdBlock on dnsmasq"
msgstr "Kein AdBlock auf dnsmasq"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274
msgid "No HTTPS/SSL support on device"
msgstr "Keine HTTPS/SSL-Unterstützung auf dem Device"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:280
msgid "No blocked list URLs nor blocked-domains enabled"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:176
msgid "Not installed or not found"
msgstr "Nicht installiert oder nicht gefunden"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:208
msgid "Output Verbosity Setting"
msgstr "Ausgabe-Verbositätseinstellung"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:237
msgid "Perform config update before downloading the block/allow-lists."
msgstr ""
"Konfigurationsaktualisierung vor dem Herunterladen der Block/Allow-Listen "
"durchführen."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:223
msgid "Pick the LED not already used in %sSystem LED Configuration%s."
msgstr ""
"Wähle eine frei nutzbare LED aus, die noch nicht in der %sSystem-LED-"
"Konfiguration%s verwendet wird."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:64
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:69
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:86
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:93
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:102
msgid "Please note that %s is not supported on this system."
msgstr "Bitte beachte, dass %s auf diesem System nicht unterstützt wird."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111
msgid "Processing lists"
msgstr "Listen verarbeiten"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112
msgid "Restarting"
msgstr "Starte neu"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:441
msgid "Service Control"
msgstr "Dienstverwaltung"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:286
msgid "Service Errors"
msgstr "Dienstfehler"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:125
msgid "Service Status"
msgstr "Dienststatus"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:198
msgid "Service Warnings"
msgstr "Dienstwarnungen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:297
msgid "Simultaneous processing"
msgstr "Gleichzeitige Verarbeitung"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:391
msgid "Size: %s"
msgstr "Größe: %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:212
msgid "Some output"
msgstr "Einige Ausgaben"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:192
msgid "Some recommended packages are missing"
msgstr "Einige empfohlene Pakete fehlen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:328
msgid "Start"
msgstr "Start"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110
msgid "Starting"
msgstr "Starte"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:322
msgid "Starting %s service"
msgstr "Dienst %s wird gestartet"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:366
msgid "Stop"
msgstr "Stopp"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263
msgid "Stop the download if it is stalled for set number of seconds."
msgstr ""
"Stoppe den Download falls er für mehr als die gewählte Anzahl an Sekunden "
"stockt."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109
msgid "Stopped"
msgstr "Angehalten"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:360
msgid "Stopping %s service"
msgstr "Dienst %s wird angehalten"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:316
msgid "Store compressed cache"
msgstr "Speicher komprimierten Zwischenspeicher"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:310
msgid "Store compressed cache file on router"
msgstr "Speicher komprimierte Zwischenspeicherdatei auf Router"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:211
msgid "Suppress output"
msgstr "Unterdrücke Ausgabe"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:239
msgid "The %s failed to discover WAN gateway"
msgstr "Der %s konnte das WAN-Gateway nicht finden"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:227
msgid ""
"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or "
"installed dnsmasq does not support ipset"
msgstr ""
"Die dnsmasq-ipset-Unterstützung ist aktiviert, aber dnsmasq ist entweder "
"nicht installiert oder dnsmasq unterstützt kein ipset"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:230
msgid ""
"The dnsmasq ipset support is enabled, but ipset is either not installed or "
"installed ipset does not support '%s' type"
msgstr ""
"Die dnsmasq-ipset-Unterstützung ist aktiviert, aber ipset ist entweder nicht "
"installiert oder das installierte ipset unterstützt den Typ „%s“ nicht"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:233
msgid ""
"The dnsmasq nft set support is enabled, but dnsmasq is either not installed "
"or installed dnsmasq does not support nft set"
msgstr ""
"Die dnsmasq-nft-set-Unterstützung ist aktiviert, aber dnsmasq ist entweder "
"nicht installiert oder dnsmasq unterstützt kein nft-set"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:236
msgid "The dnsmasq nft sets support is enabled, but nft is not installed"
msgstr ""
"Die Unterstützung für dnsmasq-nft-Sets ist aktiviert, nft ist jedoch nicht "
"installiert"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:403
msgid "URL"
msgstr "URL"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:136
msgid ""
"URL to the external dnsmasq config file, see the %sREADME%s for details."
msgstr ""
"URL zur externen dnsmasq-Konfigurationsdatei, siehe %sREADME%s für Details."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:374
msgid "URLs to file(s) containing lists to be allowed or blocked."
msgstr ""
"URLs zu Dateien, die Listen enthalten, die zugelassen oder blockiert werden "
"sollen."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:385
msgid "Unknown"
msgstr "Unbekannt"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148
msgid "Use AdBlocking on the dnsmasq instance(s)"
msgstr "AdBlocking für die dnsmasq-Instanz(en) verwenden"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:189
msgid ""
"Use of external dnsmasq config file detected, please set '%s' option to '%s'"
msgstr ""
"Verwendung einer externen dnsmasq-Konfigurationsdatei erkannt, bitte die "
"Option „%s“ auf „%s“ einstellen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:303
msgid "Use simultaneous processing"
msgstr "Nutze Simultanverarbeitung"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:213
msgid "Verbose output"
msgstr "Ausführliche Ausgabe"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:128
msgid "Version %s"
msgstr "Version %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116
msgid "Warning"
msgstr "Warnung"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:150
msgid ""
"You can limit the AdBlocking to a specific dnsmasq instance(s) (%smore "
"information%s)."
msgstr ""
"Das AdBlocking kann auf eine oder mehrere bestimmte dnsmasq-Instanzen "
"beschränkt werden (%sweitere Informationen%s)."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:115
msgid "dnsmasq additional hosts"
msgstr "zusätzliche dnsmasq-Hosts"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:116
msgid "dnsmasq config"
msgstr "dnsmasq-Konfiguration"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:118
msgid "dnsmasq ipset"
msgstr "dnsmasq-ipset"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:121
msgid "dnsmasq nft set"
msgstr "dnsmasq-nft-Set"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:123
msgid "dnsmasq servers file"
msgstr "dnsmasq-Server-Datei"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:226
msgid "none"
msgstr "kein"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126
msgid "unbound adblock list"
msgstr "unbound-Werbeblockerliste"
#~ msgid "Errors encountered, please check the %sREADME%s!"
#~ msgstr "Es sind Fehler aufgetreten, bitte die %sREADME%s überprüfen!"
#~ msgid "Failed to parse"
#~ msgstr "Das Parsen ist fehlgeschlagen"
#~ msgid "Allowed Domain URLs"
#~ msgstr "Zulässige Domain-URLs"
#~ msgid "Allowed and Blocked Lists Management"
#~ msgstr "Verwaltung zugelassener und gesperrter Listen"
#~ msgid "Blocked AdBlockPlus-style URLs"
#~ msgstr "Blockierte URLs im AdBlockPlus-Stil"
#~ msgid "Blocked Domain URLs"
#~ msgstr "URLs von gesperrten Domains"
#~ msgid "Blocked Hosts URLs"
#~ msgstr "URLs gesperrter Hosts"
#~ msgid "Enables debug output to /tmp/simple-adblock.log."
#~ msgstr "Debug-Ausgabe nach /tmp/simple-adblock.log aktivieren."
#~ msgid "Grant UCI and file access for luci-app-simple-adblock"
#~ msgstr "UCI- und Dateizugriff für luci-app-simple-adblock gewähren"
#~ msgid "Simple AdBlock"
#~ msgstr "Einfacher AdBlock"
#~ msgid "Simple AdBlock - Configuration"
#~ msgstr "Simple AdBlock - Konfiguration"
#~ msgid "Simple AdBlock - Status"
#~ msgstr "Simple AdBlock - Status"
#~ msgid "URLs to lists of AdBlockPlus-style formatted domains to be blocked."
#~ msgstr ""
#~ "URLs zu Domainlisten im AdBlockPlus-Stil, die blockiert werden sollen."
#~ msgid "URLs to lists of domains to be allowed."
#~ msgstr "URLs zu Listen von Domains, die zugelassen werden sollen."
#~ msgid "URLs to lists of domains to be blocked."
#~ msgstr "URLs zu Listen von Domains, die blockiert werden sollen."
#~ msgid "URLs to lists of hosts to be blocked."
#~ msgstr "URLs zu Listen von Hosts, die blockiert werden sollen."
#~ msgid "config (%s) validation failure!"
#~ msgstr "Fehler bei der Überprüfung der config (%s)!"
#~ msgid "disabled"
#~ msgstr "deaktiviert"
#~ msgid ""
#~ "dnsmasq ipset support is enabled, but dnsmasq is either not installed or "
#~ "installed dnsmasq does not support ipset"
#~ msgstr ""
#~ "Unterstützung für dnsmasq ipset ist aktiviert, aber entweder ist dnsmasq "
#~ "nicht installiert oder das installierte dnsmasq unterstützt ipset nicht"
#~ msgid ""
#~ "dnsmasq ipset support is enabled, but ipset is either not installed or "
#~ "installed ipset does not support '%s' type"
#~ msgstr ""
#~ "Unterstützung für dnsmasq ipset ist aktiviert, aber entweder ist ipset "
#~ "nicht installiert oder das installierte ipset unterstützt den Typ '%s' "
#~ "nicht"
#~ msgid ""
#~ "dnsmasq nft set support is enabled, but dnsmasq is either not installed "
#~ "or installed dnsmasq does not support nft set"
#~ msgstr ""
#~ "Unterstützung für dnsmasq nft set ist aktiviert, aber entweder ist "
#~ "dnsmasq nicht installiert oder das installierte dnsmasq unterstützt nft "
#~ "set nicht"
#~ msgid "dnsmasq nft sets support is enabled, but nft is not installed"
#~ msgstr ""
#~ "Die Unterstützung von dnsmasq nft sets ist aktiviert, aber nft ist nicht "
#~ "installiert"
#~ msgid "failed to access shared memory"
#~ msgstr "Zugriff auf gemeinsamen Speicherbereich fehlgeschlagen"
#~ msgid "failed to create '%s' file"
#~ msgstr "Erstellen der %s-Datei schlug fehl"
#~ msgid "failed to create block-list or restart DNS resolver"
#~ msgstr ""
#~ "Erstellung der Blockier-Liste oder Neustart des DNS-Resolvers "
#~ "fehlgeschlagen"
#~ msgid "failed to create compressed cache"
#~ msgstr "Komprimierter Cache konnte nicht erzeugt werden"
#~ msgid "failed to create directory for %s file"
#~ msgstr "Verzeichnis für Datei %s konnte nicht erstellt werden"
#~ msgid "failed to create output/cache/gzip file directory"
#~ msgstr "Fehler beim Erstellen des Ausgabe-/Cache-/gzip-Dateiverzeichnisses"
#~ msgid "failed to download"
#~ msgstr "Herunterladen schlug fehl"
#~ msgid "failed to download Config Update file"
#~ msgstr "Fehler beim Herunterladen der Konfigurationsaktualisierungsdatei"
#~ msgid "failed to format data file"
#~ msgstr "Formatierung der Datei schlug fehl"
#~ msgid "failed to move '%s' to '%s'"
#~ msgstr "Verschieben von '%s' nach '%s' schlug fehl"
#~ msgid "failed to move temporary data file to '%s'"
#~ msgstr "Temporärdatei konnte nicht nach '%s' verschoben werden"
#~ msgid "failed to optimize data file"
#~ msgstr "Datei konnte nicht optimiert werden"
#~ msgid "failed to parse"
#~ msgstr "konnte nicht eingelesen werden"
#~ msgid "failed to parse Config Update file"
#~ msgstr "Fehler beim Parsen der Konfigurationsaktualisierungsdatei"
#~ msgid "failed to process allow-list"
#~ msgstr "Fehler beim Verarbeiten der Zulassungsliste"
#~ msgid "failed to reload/restart DNS resolver"
#~ msgstr "Der DNS-Resolver-Prozess konnte nicht (neu-) gestartet werden"
#~ msgid "failed to remove temporary files"
#~ msgstr "Temporäre Dateien konnten nich verschoben werden"
#~ msgid "failed to restart/reload DNS resolver"
#~ msgstr "Der DNS-Resolver-Prozess konnte nicht (neu-) gestartet werden"
#~ msgid "failed to sort data file"
#~ msgstr "Datei konnte nicht sortiert werden"
#~ msgid "failed to stop %s"
#~ msgstr "%s konnte nicht gestoppt werden"
#~ msgid "failed to unpack compressed cache"
#~ msgstr "Komprimierter Cache konnte nicht entpackt werden"
#~ msgid "no HTTPS/SSL support on device"
#~ msgstr "keine Unterstützung für HTTPS/SSL auf dem Gerät"
#~ msgid "some recommended packages are missing"
#~ msgstr "einige empfohlene Pakete fehlen"
#~ msgid "the %s failed to discover WAN gateway"
#~ msgstr "der %s konnte das WAN-Gateway nicht entdecken"
#~ msgid ""
#~ "use of external dnsmasq config file detected, please set '%s' option to "
#~ "'%s'"
#~ msgstr ""
#~ "Verwendung einer externen dnsmasq-Konfigurationsdatei erkannt, bitte "
#~ "setzen Sie die Option '%s' auf '%s'"
#~ msgid "Version: %s"
#~ msgstr "Version: %s"
#~ msgid "The %s service failed to discover WAN gateway!"
#~ msgstr "Der %s-Dienst konnte das WAN-Gateway nicht erkennen!"
#~ msgid "Unable to create directory for '%s'"
#~ msgstr "Verzeichnis für '%s' kann nicht erstellt werden"
#~ msgid "Downloading"
#~ msgstr "Herunterladen"
#~ msgid "%s Error: %s"
#~ msgstr "%s-Fehler: %s"
#~ msgid "%s Error: %s %s"
#~ msgstr "%s-Fehler: %s %s"
#~ msgid "Cache file containing %s domains found."
#~ msgstr "Cache-Datei mit %s Domänen gefunden."
#~ msgid "Collected Errors"
#~ msgstr "Gesammelte Fehler"
#~ msgid "Configuration"
#~ msgstr "Konfiguration"
#~ msgid "DNSMASQ Additional Hosts"
#~ msgstr "DNSMASQ Zusätzliche Hosts"
#~ msgid "DNSMASQ Config"
#~ msgstr "DNSMASQ-Konfiguration"
#~ msgid "DNSMASQ Ipset"
#~ msgstr "DNSMASQ-Ipset"
#~ msgid "DNSMASQ Nft Set"
#~ msgstr "DNSMASQ Nft-Set"
#~ msgid "DNSMASQ Servers File"
#~ msgstr "DNSMASQ Server-Datei"
#~ msgid "Delay (in seconds) for on-boot start"
#~ msgstr "Verzögerung (in Sekunden) für den Start beim Booten"
#~ msgid "Info"
#~ msgstr "Info"
#~ msgid "Loading"
#~ msgstr "Lade"
#~ msgid "Message"
#~ msgstr "Nachricht"
#~ msgid ""
#~ "Pick the DNS resolution option to create the adblock list for, see the "
#~ "%sREADME%s for details."
#~ msgstr ""
#~ "Wählen Sie die DNS-Auflösungsoption aus, für die Sie die Adblock-Liste "
#~ "erstellen möchten, siehe %sREADME%s für weitere Details."
#~ msgid "Run service after set delay on boot."
#~ msgstr "Dienst mit Verzögerung beim Starten ausführen."
#~ msgid "Service Status [%s %s]"
#~ msgstr "Servicestatus [%s %s]"
#~ msgid "Simple AdBlock Settings"
#~ msgstr "Simple AdBlock Einstellungen"
#~ msgid "Success"
#~ msgstr "Erfolgreich"
#~ msgid "Task"
#~ msgstr "Aufgabe"
#~ msgid "Unbound AdBlock List"
#~ msgstr "Unbound Adblock-Liste"
#~ msgid "DNSMASQ IP Set"
#~ msgstr "DNSMASQ IP Set"
#~ msgid "DNSMASQ NFT Set"
#~ msgstr "DNSMASQ NFT-Set"
#~ msgid "%s is blocking %s domains (with %s)."
#~ msgstr "%s blockiert %s Domains (mit %s)."
#~ msgid ""
#~ "Pick the DNS resolution option to create the adblock list for, see the <a "
#~ "href=\"%s#dns-resolution-option\" target=\"_blank\">README</a> for "
#~ "details."
#~ msgstr ""
#~ "Wähle die DNS-Auflösungsmethode für das Erstellen der Adblock-Liste. "
#~ "Siehe <a href=\"%s#dns-resolution-option\" target=\"_blank\">README</a> "
#~ "für mehr Informationen."
#~ msgid "Blacklisted Domain URLs"
#~ msgstr "Domänen-URLs auf der schwarzen Liste"
#~ msgid "Blacklisted Domains"
#~ msgstr "Auf der schwarzen Liste gesetzte Domänen"
#~ msgid "Blacklisted Hosts URLs"
#~ msgstr "Auf der schwarzen Liste gesetzte URLs"
#~ msgid "Individual domains to be blacklisted."
#~ msgstr "Einzelne Domänen, die auf die schwarze Liste gesetzt werden sollen."
#~ msgid "Individual domains to be whitelisted."
#~ msgstr "Einzelne Domänen, die auf die weiße Liste gesetzt werden sollen."
#~ msgid "URLs to lists of domains to be blacklisted."
#~ msgstr "URLs der Domainlisten die auf die Blackliste kommen sollen."
#~ msgid "URLs to lists of domains to be whitelisted."
#~ msgstr "URLs der Domainlisten die auf die Whiteliste kommen sollen."
#~ msgid "URLs to lists of hosts to be blacklisted."
#~ msgstr "URLs der Hosts-Dateilisten die auf die Blackliste kommen sollen."
#~ msgid "Whitelist and Blocklist Management"
#~ msgstr "White- und Blacklisten-Management"
#~ msgid "Whitelisted Domain URLs"
#~ msgstr "Whitelist-Domain-URLs"
#~ msgid "Whitelisted Domains"
#~ msgstr "Whitelist-Domains"
#~ msgid "failed to create blocklist or restart DNS resolver"
#~ msgstr ""
#~ "Erstellen der Blockliste oder Neustart des DNS-Resolvers schlug fehl"
#~ msgid "failed to process whitelist"
#~ msgstr "Whitelist konnte nicht verarbeitet werden"
#~ msgid "Service Status [%s]"
#~ msgstr "Servicestatus [%s]"
#~ msgid "Cache file containing"
#~ msgstr "Cache-Datei enthält"
#~ msgid "Compressed cache file found"
#~ msgstr "Komprimierte Cache-Datei gefunden"
#~ msgid ""
#~ "Pick the DNS resolution option to create the adblock list for, see the"
#~ msgstr ""
#~ "Wählen Sie die Option DNS-Auflösung aus, um die Adblockliste zu "
#~ "erstellen, siehe"
#~ msgid "Pick the LED not already used in"
#~ msgstr "Treffen Sie eine Auswahl einer noch freien LED in"
#~ msgid "Please note that"
#~ msgstr "Bitte beachte daß"
#~ msgid "README"
#~ msgstr "README"
#~ msgid "System LED Configuration"
#~ msgstr "System LED Konfiguration"
#~ msgid "domains"
#~ msgstr "Domänen"
#~ msgid "domains found"
#~ msgstr "Domänen gefunden"
#~ msgid "failed to create"
#~ msgstr "Datei konnte nicht erstellt werden:"
#~ msgid "failed to move temporary data file to"
#~ msgstr "Temporäre Datei konnte nicht ans Ziel verschoben werden:"
#~ msgid "for details."
#~ msgstr "für Einzelheiten."
#~ msgid "is not supported on this system."
#~ msgstr "wird auf diesem System nicht unterstützt."
#~ msgid "to"
#~ msgstr "zu"
#~ msgid "Enable/Start"
#~ msgstr "Aktivieren/Starten"
#~ msgid "Reload"
#~ msgstr "Neu laden"
#~ msgid "Service is disabled/stopped"
#~ msgstr "Dienst ist deaktiviert/beendet"
#~ msgid "Service is enabled/started"
#~ msgstr "Dienst ist aktiviert/gestartet"
#~ msgid "Service started with error"
#~ msgstr "Dienst mit Fehler gestartet"
#~ msgid "Stop/Disable"
#~ msgstr "Stopp/Deaktivieren"
|