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
|
msgid ""
msgstr ""
"PO-Revision-Date: 2021-03-01 07:55+0000\n"
"Last-Translator: HelaBasa <R45XvezA@protonmail.ch>\n"
"Language-Team: Sinhala <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsadblock/si/>\n"
"Language: si\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 4.5\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:280
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:291
msgid "-- default --"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:223
msgid "0.0.0.0 <Domain>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:449
msgid "10 minutes"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:222
msgid "127.0.0.1 <Domain>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:450
msgid "15 minutes"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:743
msgid "1Hosts List Selection"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451
msgid "30 minutes"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:448
msgid "5 minutes"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452
msgid "60 minutes"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:224
msgid "<Adblock Plus Syntax>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:221
msgid "<Domain>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:345
msgid "Action"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:168
msgid "Active Feeds"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:510
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:537
msgid "AdGuard (default)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:399
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:511
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:538
msgid "AdGuard (family)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:358
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:460
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:519
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:546
msgid "AdGuard (unfiltered)"
msgstr ""
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:3
msgid "Adblock"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:434
msgid "Adblock Test"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:54
msgid "Add Allowlist Domain"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:16
msgid "Add Blocklist Domain"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:55
msgid "Add this (sub-)domain to your local allowlist."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:17
msgid "Add this (sub-)domain to your local blocklist."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:204
msgid "Additional Settings"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:227
msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:206
msgid "Advanced DNS Settings"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208
msgid "Advanced E-Mail Settings"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:207
msgid "Advanced Report Settings"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/allowlist.js:59
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:79
msgid ""
"Allowlist modifications have been saved, reload adblock that changes take "
"effect."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:361
msgid "Allowlist..."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434
msgid ""
"Allows temporary access to an unfiltered external DNS resolver, bypassing "
"local adblock."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:344
msgid "Answer"
msgstr "පිළිතුර"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300
msgid "Backup Directory"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296
msgid "Base Directory"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296
msgid "Base working directory during adblock processing."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:164
msgid "Blocked Domains"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:715
msgid "Blocklist Feed"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:92
msgid "Blocklist Search"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:460
msgid "Blocklist Search..."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blocklist.js:59
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:41
msgid ""
"Blocklist modifications have been saved, reload adblock that changes take "
"effect."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:370
msgid "Blocklist..."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:274
msgid "CPU Cores"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:27
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:65
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:120
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:202
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:264
msgid "Cancel"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:745
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:754
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:763
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:772
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:781
msgid "Categories"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:710
msgid "Changes on this tab needs an adblock service reload to take effect."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:320
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:583
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:632
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:672
msgid "Changes on this tab needs an adblock service restart to take effect."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:288
msgid "Clear"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:340
msgid "Client"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:305
msgid "Clients"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:515
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:542
msgid "Cloudflare (malware)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:425
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:516
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:543
msgid "Cloudflare (malware+family)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:348
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:360
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:462
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:474
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:521
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:548
msgid "Cloudflare (unfiltered)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:65
msgid ""
"Configuration of the adblock package to block ad/abuse domains by using DNS. "
"For further information please check the %s."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:514
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:541
msgid "Control D (adblock)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:401
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:513
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:540
msgid "Control D (family)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:400
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:512
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:539
msgid "Control D (security)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:461
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:473
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:520
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:547
msgid "Control D (unfiltered)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:304
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:308
msgid "Count"
msgstr ""
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:43
msgid "Custom Feed Editor"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:172
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:586
msgid "DNS Backend"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:616
msgid "DNS Directory"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:596
msgid "DNS Instance"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:612
msgid "DNS Lookup Domain"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51
msgid "DNS Report"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:619
msgid "DNS Restart Timeout"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:391
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:412
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:503
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:530
msgid "DNS4EU (protective)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:414
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:532
msgid "DNS4EU (protective+adblock)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:392
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:413
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:504
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:531
msgid "DNS4EU (protective+family)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:415
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:506
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:533
msgid "DNS4EU (protective+family+adblock)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:345
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:357
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:518
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:545
msgid "DNS4EU (unfiltered)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:338
msgid "Date"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:236
msgid "Description"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:373
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:327
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:350
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:362
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:464
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:523
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:550
msgid "Digitale Gesellschaft (unfiltered)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:343
msgid "Domain"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:612
msgid "Domain to check for a successful DNS backend restart."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:307
msgid "Domains"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:311
msgid "Don't check SSL server certificates during download."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:258
msgid "Download"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:311
msgid "Download Insecure"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Download Utility"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:254
msgid "E-Mail Notification"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:683
msgid "E-Mail Profile"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:258
msgid "E-Mail Receiver Address"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:675
msgid "E-Mail Sender Address"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:679
msgid "E-Mail Topic"
msgstr ""
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "Edit Allowlist"
msgstr ""
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:35
msgid "Edit Blocklist"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:201
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:240
msgid "Empty field not allowed"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:609
msgid ""
"Empty the DNS cache before adblock processing starts to reduce the memory "
"consumption."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497
msgid "Enable DNS Bridge"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370
msgid "Enable Filtered DNS Routing"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:434
msgid "Enable Remote DNS Routing"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:236
msgid "Enable SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:324
msgid "Enable Unfiltered DNS Routing"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:663
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:219
msgid "Enable the adblock service."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid "Enable verbose debug logging in case of any processing errors."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219
msgid "Enabled"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497
msgid ""
"Enables a temporary DNS bridge to an external DNS resolver during local DNS "
"restarts."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:236
msgid ""
"Enforcing SafeSearch for google, bing, brave, duckduckgo, yandex, youtube "
"and pixabay."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
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:335
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:712
msgid "External Blocklist Feeds"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:495
msgid "External DNS Bridge (Zero‑Downtime during DNS Restarts)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:368
msgid "External Filtered DNS Policy (MAC-/Interface‑based DNS bypass)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388
msgid ""
"External 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:342
msgid ""
"External 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:456
msgid ""
"External IPv4 DNS resolver applied to MACs using the unfiltered remote DNS "
"policy."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:500
msgid "External IPv4 DNS resolver used during bridging."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409
msgid ""
"External 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:354
msgid ""
"External 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:468
msgid ""
"External IPv6 DNS resolver applied to MACs using the unfiltered remote DNS "
"policy."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527
msgid "External IPv6 DNS resolver used during bridging."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:432
msgid "External Remote DNS Policy (temporary MAC‑based remote DNS bypass)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:322
msgid "External Unfiltered DNS Policy (MAC-/Interface‑based DNS bypass)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:233
msgid "Extra Extra Large"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:232
msgid "Extra Large"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:232
msgid "Failed to generate adblock report!"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:196
msgid "Feed Name"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:209
msgid "Feed Selection"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:278
msgid "Fill"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:196
msgid "Filter criteria like date, domain or client (optional)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:561
msgid "Firewall LAN Devices/VLANs that should be forced locally."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:205
msgid "Firewall Settings"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:568
msgid "Firewall ports that should be forced locally."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:609
msgid "Flush DNS Cache"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:558
msgid "Force Local DNS"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:561
msgid "Forced Devices/VLANs"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:568
msgid "Forced Ports"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250
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 ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:203
msgid "General Settings"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:663
msgid "GeoIP Map"
msgstr ""
#: applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json:3
msgid "Grant access to LuCI app adblock"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:752
msgid "Hagezi List Selection"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:286
msgid "High Priority"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:285
msgid "Highest Priority"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:761
msgid "IPFire List Selection"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:342
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:500
msgid "IPv4 DNS Resolver"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:456
msgid "IPv4 Remote DNS Resolver"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:354
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:409
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527
msgid "IPv6 DNS Resolver"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:468
msgid "IPv6 Remote DNS Resolver"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:158
msgid "Information"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:341
msgid "Interface"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:335
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:381
msgid "Interface DNS Filter Targets"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:204
msgid "Invalid characters"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:120
msgid "Invalid input values, unable to save modifications."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:624
msgid "Jail Mode"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:231
msgid "Large"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:188
msgid "Last Run"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:421
msgid "Latest DNS Requests"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:289
msgid "Least Priority"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:288
msgid "Less Priority"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:239
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:239
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:274
msgid ""
"Limit the cpu cores used by adblock to save RAM, autodetected by default."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:635
msgid "List of available network devices used by tcpdump."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222
msgid "List of available network interfaces to trigger the adblock start."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:586
msgid "List of supported DNS backends."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:437
msgid "Listed MAC addresses are allowed to use the remote DNS bypass."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:556
msgid "Local DNS Enforcement"
msgstr ""
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:59
msgid "Log View"
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:373
msgid "MAC DNS Filter Targets"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:437
msgid "MAC Remote Filter Targets"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:452
msgid "Map"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:272
msgid "Map Reset"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:230
msgid "Medium"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284
msgid "Nice Level"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logtemplate.js:31
msgid "No %s related logs yet!"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:448
msgid "No GeoIP Map data!"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:150
msgid "No Search results!"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57
msgid "No adblock config found!"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
msgid "Normal Priority"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:624
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 ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:616
msgid "Overwrite the default target directory for the generated blocklist."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:683
msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:489
msgid "QRCode for Remote Access"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:405
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:517
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:544
msgid "Quad9 (malware)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:349
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:361
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:475
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:522
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:549
msgid "Quad9 (unfiltered)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:258
msgid "Receiver address for adblock notification e-mails."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:558
msgid ""
"Redirect all local DNS queries from specified LAN zones to the local DNS "
"resolver, applies to UDP and TCP protocol."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:238
msgid "Refresh"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:166
msgid "Refresh DNS Report"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:468
msgid "Refresh..."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445
msgid "Remote DNS Timeout"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:643
msgid "Report Chunk Count"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:648
msgid "Report Chunk Size"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:639
msgid "Report Directory"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:635
msgid "Report Interface"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:653
msgid "Report Ports"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:643
msgid "Report chunk count used by tcpdump."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:648
msgid "Report chunk size used by tcpdump in MByte."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:660
msgid "Resolve IPs"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:660
msgid "Resolve reporting IP addresses by using reverse DNS (PTR) lookups."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:107
msgid "Result"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370
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:324
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:220
msgid "Rule"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:184
msgid "Run Flags"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:180
msgid "Run Information"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:176
msgid "Run Interfaces"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:47
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:85
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:298
msgid "Save"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:816
msgid "Save & Reload"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:824
msgid "Save & Restart"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:159
msgid "Search"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:93
msgid "Search active blocklists and backups for a specific domain."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:254
msgid ""
"Send adblock related notification e-mails. This needs the additional 'msmtp' "
"package installation."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:675
msgid "Sender address for adblock notification E-Mails."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:596
msgid "Set the dns backend instance used by adblock."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:201
msgid "Settings"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:605
msgid "Shift DNS Blocklist"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:605
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 ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:228
msgid "Size"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:229
msgid "Small"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222
msgid "Startup Trigger Interface"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:160
msgid "Status / Version"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:770
msgid "StevenBlack List Selection"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:799
msgid "Stop"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:808
msgid "Suspend"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:192
msgid "System Info"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:232
msgid "TLD Compression"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:639
msgid "Target directory for DNS related report files."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300
msgid "Target directory for blocklist backups."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/allowlist.js:35
msgid "The allowlist is too big, unable to save modifications."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blocklist.js:35
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:653
msgid "The list of ports used by tcpdump."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:129
msgid "The search is running, please wait..."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284
msgid "The selected priority will be used for adblock background processing."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logtemplate.js:42
msgid "The syslog output, pre-filtered for messages related to: %s"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:232
msgid ""
"The top level domain compression removes thousands of needless host entries "
"from the final DNS blocklist."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/allowlist.js:38
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 ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blocklist.js:38
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 ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:388
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:339
msgid "Time"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:445
msgid ""
"Time limit in minutes for using the remote DNS bypass per listed MAC address."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:619
msgid "Timeout to wait for a successful DNS backend restart."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:414
msgid "Top Statistics"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:679
msgid "Topic for adblock notification E-Mails."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:227
msgid "Trigger Delay"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:342
msgid "Type"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:209
msgid "URL"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:779
msgid "UTCapitole Archive Selection"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:107
msgid "Unable to parse the adblock runtime information!"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:697
msgid "Unable to parse the custom feed file!"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:704
msgid "Unable to parse the default feed file!"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/allowlist.js:63
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blocklist.js:63
msgid "Unable to save modifications: %s"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:268
msgid "Upload"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:80
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:86
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:234
msgid "Varying"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid "Verbose Debug Logging"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/feeds.js:182
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 ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:589
msgid "bind"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:508
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:535
msgid "dnsforge (clean)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:397
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:418
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:509
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:536
msgid "dnsforge (hard)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:395
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:416
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:507
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:534
msgid "dnsforge (normal)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:587
msgid "dnsmasq"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:591
msgid "kresd"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:190
msgid "max. result set size"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:177
msgid "max. top statistics"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:66
msgid "online documentation"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:592
msgid "raw"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:590
msgid "smartdns"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:588
msgid "unbound"
msgstr ""
|