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
|
#
# Yangfl <mmyangfl@gmail.com>, 2018.
# Zheng Qian <sotux82@gmail.com>, 2019.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"PO-Revision-Date: 2023-08-11 14:36+0000\n"
"Last-Translator: Eric <hamburger2048@users.noreply.hosted.weblate.org>\n"
"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
"openwrt/luciapplicationssimple-adblock/zh_Hans/>\n"
"Language: zh_Hans\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.0-dev\n"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:223
msgid "%s is currently disabled"
msgstr "%s 当前已禁用"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106
msgid "%s is not installed or not found"
msgstr "%s 未安装或未找到"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:376
msgid "Action"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:118
msgid "Active"
msgstr "活跃"
#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3
msgid "AdBlock Fast"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168
msgid "AdBlock on %s only"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156
msgid "AdBlock on all instances"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:331
msgid "AdBlock-Fast - Allowed and Blocked Domains"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:354
msgid "AdBlock-Fast - Allowed and Blocked Lists URLs"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:50
msgid "AdBlock-Fast - Configuration"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:121
msgid "AdBlock-Fast - Status"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:233
msgid "Add IPv6 entries"
msgstr "添加 IPv6 条目"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230
msgid "Add IPv6 entries to block-list."
msgstr "将 IPv6 条目添加到阻止列表。"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:53
msgid "Advanced Configuration"
msgstr "高级配置"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:377
msgid "Allow"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:338
msgid "Allowed Domains"
msgstr "允许的域"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:294
msgid ""
"Attempt to create a compressed cache of block-list in the persistent memory."
msgstr "尝试在非易失性内存中创建压缩的阻止列表缓存。"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:218
msgid "Automatic Config Update"
msgstr "自动配置更新"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:52
msgid "Basic Configuration"
msgstr "基本配置"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:378
msgid "Block"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:346
msgid "Blocked Domains"
msgstr "已拦截域名"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:134
msgid "Blocking %s domains (with %s)."
msgstr "拦截 %s 个域名 (用 %s)。"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160
msgid "Cache file found."
msgstr "找到了缓存文件。"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:139
msgid "Compressed cache file created."
msgstr "创建了压缩的缓存文件。"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:162
msgid "Compressed cache file found."
msgstr "找到压缩的缓存文件。"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:221
msgid "Config (%s) validation failure!"
msgstr "配置(%s)验证失败!"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:192
msgid "Controls system log and console output verbosity."
msgstr "控制系统日志和控制台输出的详细程度。"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:267
msgid "Curl download retry"
msgstr "Curl 下载重试"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:254
msgid "Curl maximum file size (in bytes)"
msgstr "Curl 最大文件尺寸(单位 bytes)"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:111
msgid "DNS Service"
msgstr "DNS 服务"
#: 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 解析选项,详情见 %sREADME%s."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:305
msgid "Directory for compressed cache file"
msgstr "已压缩缓存文件的目录"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:307
msgid ""
"Directory for compressed cache file of block-list in the persistent memory."
msgstr "保存持久化内存中拦截列表已压缩缓存文件的目录。"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:400
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:221
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:223
msgid "Disable"
msgstr "禁用"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:323
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:325
msgid "Disable Debugging"
msgstr "禁用调试"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:156
msgid "Disabled"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:394
msgid "Disabling %s service"
msgstr "正在禁用 %s 服务"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:134
msgid "Dnsmasq Config File URL"
msgstr "Dnsmasq 配置文件 URL"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:232
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:236
msgid "Do not add IPv6 entries"
msgstr "不要添加 IPv6 条目"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:297
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:299
msgid "Do not store compressed cache"
msgstr "不要存储压缩的缓存"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:284
msgid "Do not use simultaneous processing"
msgstr "不要使用并行处理"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:244
msgid "Download time-out (in seconds)"
msgstr "下载超时(秒)"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114
msgid "Downloading lists"
msgstr "下载列表中"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:381
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:222
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:373
msgid "Enable"
msgstr "启用"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:320
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:324
msgid "Enable Debugging"
msgstr "启用调试"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321
msgid "Enables debug output to /tmp/adblock-fast.log."
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:375
msgid "Enabling %s service"
msgstr "正在启用 %s 服务"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115
msgid "Error"
msgstr "错误"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:289
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 "失败"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246
msgid "Failed to access shared memory"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:242
msgid "Failed to create '%s' file"
msgstr ""
#: 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 ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255
msgid "Failed to create compressed cache"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241
msgid "Failed to create directory for %s file"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276
msgid "Failed to create output/cache/gzip file directory"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271
msgid "Failed to download %s"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269
msgid "Failed to download Config Update file"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250
msgid "Failed to format data file"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:259
msgid "Failed to move '%s' to '%s'"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252
msgid "Failed to move temporary data file to '%s'"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:248
msgid "Failed to optimize data file"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:273
msgid "Failed to parse"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272
msgid "Failed to parse Config Update file"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:249
msgid "Failed to process allow-list"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:267
msgid "Failed to reload/restart DNS resolver"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257
msgid "Failed to remove temporary files"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:245
msgid "Failed to restart/reload DNS resolver"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247
msgid "Failed to sort data file"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:266
msgid "Failed to stop %s"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:258
msgid "Failed to unpack compressed cache"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:142
msgid "Force DNS ports:"
msgstr "强制 DNS 端口:"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:343
msgid "Force Re-Download"
msgstr "强制重新下载"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113
msgid "Force Reloading"
msgstr "强制刷新"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:180
msgid "Force Router DNS"
msgstr "强制使用路由器 DNS"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:184
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:185
msgid "Force Router DNS server to all local devices"
msgstr "强制所有本地设备使用路由器 DNS"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:337
msgid "Force re-downloading %s block lists"
msgstr "强制重新下载 %s 拦截列表"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:181
msgid "Forces Router DNS use on local devices, also known as DNS Hijacking."
msgstr "强制在本地设备上使用路由器 DNS,也称为 DNS 劫持。"
#: 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 ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:229
msgid "IPv6 Support"
msgstr "IPv6 支持"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:256
msgid ""
"If curl is installed and detected, it would not download files bigger than "
"this."
msgstr "如果安装了 curl 且被检测到,它不会下载超过这个大小的文件。"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:269
msgid ""
"If curl is installed and detected, it would retry download this many times "
"on timeout/fail."
msgstr "如果安装并检测到 curl,则会在超时/失败时重试指定次数。"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:339
msgid "Individual domains to be allowed."
msgstr "允许使用单个域。"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347
msgid "Individual domains to be blocked."
msgstr "单个域将被阻止。"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:204
msgid "LED to indicate status"
msgstr "LED 指示状态"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:281
msgid ""
"Launch all lists downloads and processing simultaneously, reducing service "
"start time."
msgstr "同时开始所有的列表下载和处理任务,减少启动时间。"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:183
msgid "Let local devices use their own DNS servers if set"
msgstr "如果进行了设置,允许本地设备使用自己的 DNS 服务器"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:170
msgid "No AdBlock on dnsmasq"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274
msgid "No HTTPS/SSL support on device"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:176
msgid "Not installed or not found"
msgstr "未安装或未找到"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191
msgid "Output Verbosity Setting"
msgstr "输出详细程度设置"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:219
msgid "Perform config update before downloading the block/allow-lists."
msgstr "在下载阻止/允许列表之前执行配置更新。"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:206
msgid "Pick the LED not already used in %sSystem LED Configuration%s."
msgstr "选取尚未在 %s 系统 LED 配置%s 中使用的 LED。"
#: 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 "请注意,此系统不支持%s。"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111
msgid "Processing lists"
msgstr "处理列表中"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112
msgid "Restarting"
msgstr "正在重新启动"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:437
msgid "Service Control"
msgstr "服务控制"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:282
msgid "Service Errors"
msgstr "服务出错"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:125
msgid "Service Status"
msgstr "服务状态"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:198
msgid "Service Warnings"
msgstr "服务警告"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:279
msgid "Simultaneous processing"
msgstr "并行处理"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371
msgid "Size: %s"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:195
msgid "Some output"
msgstr "一些输出"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:192
msgid "Some recommended packages are missing"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:324
msgid "Start"
msgstr "启动"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110
msgid "Starting"
msgstr "正在启动"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:318
msgid "Starting %s service"
msgstr "正在启动 %s 服务"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:362
msgid "Stop"
msgstr "停止"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:245
msgid "Stop the download if it is stalled for set number of seconds."
msgstr "如果下载停顿了指定的秒数则停止下载。"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109
msgid "Stopped"
msgstr "已停止"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:356
msgid "Stopping %s service"
msgstr "正在停止 %s 服务"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:298
msgid "Store compressed cache"
msgstr "存储压缩的缓存"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:292
msgid "Store compressed cache file on router"
msgstr "将压缩的缓存文件存储在路由器上"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:194
msgid "Suppress output"
msgstr "抑制输出"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:239
msgid "The %s failed to discover WAN gateway"
msgstr ""
#: 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 ""
#: 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 ""
#: 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 ""
#: 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 ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:380
msgid "URL"
msgstr ""
#: 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 "外部 dnsmasq 配置文件 URL,详情见 %sREADME%s."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:355
msgid "URLs to file(s) containing lists to be allowed or blocked."
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:365
msgid "Unknown"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148
msgid "Use AdBlocking on the dnsmasq instance(s)"
msgstr ""
#: 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 ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:285
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:286
msgid "Use simultaneous processing"
msgstr "使用并行处理"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:196
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:197
msgid "Verbose output"
msgstr "详细输出"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:128
msgid "Version %s"
msgstr "版本 %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116
msgid "Warning"
msgstr "警告"
#: 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 ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:115
msgid "dnsmasq additional hosts"
msgstr "dnsmasq 附加 hosts"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:116
msgid "dnsmasq config"
msgstr "dnsmasq 配置"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:118
msgid "dnsmasq ipset"
msgstr "dnsmasq ip集"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:121
msgid "dnsmasq nft set"
msgstr "dnsmasq nft 集"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:123
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:128
msgid "dnsmasq servers file"
msgstr "dnsmasq 服务器文件"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:209
msgid "none"
msgstr "无"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126
msgid "unbound adblock list"
msgstr "unbound 广告拦截列表"
#~ msgid "Allowed Domain URLs"
#~ msgstr "允许的网域网址"
#~ msgid "Allowed and Blocked Lists Management"
#~ msgstr "允许和禁止列表管理"
#~ msgid "Blocked AdBlockPlus-style URLs"
#~ msgstr "拦截 AdblockPlus 样式的 URL"
#~ msgid "Blocked Domain URLs"
#~ msgstr "封锁的网域网址"
#~ msgid "Blocked Hosts URLs"
#~ msgstr "封锁的主机网址"
#~ msgid "Enables debug output to /tmp/simple-adblock.log."
#~ msgstr "将调试输出到 /tmp/simple-adblock.log。"
#~ msgid "Grant UCI and file access for luci-app-simple-adblock"
#~ msgstr "为luci-app-simple-adblock授予UCI和文件访问权限"
#~ msgid "Simple AdBlock"
#~ msgstr "简易 AdBlock"
#~ msgid "Simple AdBlock - Configuration"
#~ msgstr "Simple AdBlock - 配置"
#~ msgid "Simple AdBlock - Status"
#~ msgstr "Simple AdBlock - 状态"
#~ msgid "URLs to lists of AdBlockPlus-style formatted domains to be blocked."
#~ msgstr "AdBlockPlus 样式域名拦截列表的 URL."
#~ msgid "URLs to lists of domains to be allowed."
#~ msgstr "允许的域列表的URL。"
#~ msgid "URLs to lists of domains to be blocked."
#~ msgstr "阻止的域列表的 URL."
#~ msgid "URLs to lists of hosts to be blocked."
#~ msgstr "阻止的主机列表的 URL。"
#~ msgid "config (%s) validation failure!"
#~ msgstr "配置 (%s) 验证失败!"
#~ msgid "disabled"
#~ msgstr "已禁用"
#~ msgid ""
#~ "dnsmasq ipset support is enabled, but dnsmasq is either not installed or "
#~ "installed dnsmasq does not support ipset"
#~ msgstr ""
#~ "dnsmasq ip 集支持已开启,但 dnsmasq 要么没安装或安装的 dnsmasq 不支持 ip "
#~ "集"
#~ msgid ""
#~ "dnsmasq ipset support is enabled, but ipset is either not installed or "
#~ "installed ipset does not support '%s' type"
#~ msgstr ""
#~ "dnsmasq ip 集支持已开启,但 ip 集要么没安装或安装的 ip 集不支持 '%s' 类型"
#~ msgid ""
#~ "dnsmasq nft set support is enabled, but dnsmasq is either not installed "
#~ "or installed dnsmasq does not support nft set"
#~ msgstr ""
#~ "dnsmasq nft 集支持已开启,但 dnsmasq 要么没安装或安装的 dnsmasq 不支持 "
#~ "nft 集"
#~ msgid "dnsmasq nft sets support is enabled, but nft is not installed"
#~ msgstr "dnsmasq nft 集支持已开启,但 nft 未安装"
#~ msgid "failed to access shared memory"
#~ msgstr "无法访问共享内存"
#~ msgid "failed to create '%s' file"
#~ msgstr "无法创建“%s”文件"
#~ msgid "failed to create block-list or restart DNS resolver"
#~ msgstr "无法创建阻止列表或重新启动DNS解析器"
#~ msgid "failed to create compressed cache"
#~ msgstr "创建压缩缓存失败"
#~ msgid "failed to create directory for %s file"
#~ msgstr "为 %s 文件创建目录失败"
#~ msgid "failed to create output/cache/gzip file directory"
#~ msgstr "未能创建 output/cache/gzip 文件目录"
#~ msgid "failed to download"
#~ msgstr "下载失败"
#~ msgid "failed to download Config Update file"
#~ msgstr "下载配置更新文件失败"
#~ msgid "failed to format data file"
#~ msgstr "格式化数据文件失败"
#~ msgid "failed to move '%s' to '%s'"
#~ msgstr "未能将“%s”移至“%s”"
#~ msgid "failed to move temporary data file to '%s'"
#~ msgstr "无法将临时数据文件移动到“%s”"
#~ msgid "failed to optimize data file"
#~ msgstr "无法优化数据文件"
#~ msgid "failed to parse"
#~ msgstr "解析失败"
#~ msgid "failed to parse Config Update file"
#~ msgstr "无法解析配置更新文件"
#~ msgid "failed to process allow-list"
#~ msgstr "无法处理允许清单"
#~ msgid "failed to reload/restart DNS resolver"
#~ msgstr "无法重新加载/重新启动DNS解析器"
#~ msgid "failed to remove temporary files"
#~ msgstr "无法删除临时文件"
#~ msgid "failed to restart/reload DNS resolver"
#~ msgstr "无法重新启动/重新加载DNS解析器"
#~ msgid "failed to sort data file"
#~ msgstr "无法排序数据文件"
#~ msgid "failed to stop %s"
#~ msgstr "无法停止%s"
#~ msgid "failed to unpack compressed cache"
#~ msgstr "无法解压缩压缩缓存"
#~ msgid "no HTTPS/SSL support on device"
#~ msgstr "设备上没有 HTTPS/SSL 支持"
#~ msgid "some recommended packages are missing"
#~ msgstr "缺少某些推荐的包"
#~ msgid "the %s failed to discover WAN gateway"
#~ msgstr "%s 未能发现 WAN 网关"
#~ msgid ""
#~ "use of external dnsmasq config file detected, please set '%s' option to "
#~ "'%s'"
#~ msgstr "检测到使用了外部 dnsmasq 配置文件,请将 '%s' 选项设为 '%s'"
#~ msgid "Version: %s"
#~ msgstr "版本:%s"
#~ msgid "The %s service failed to discover WAN gateway!"
#~ msgstr "%s service 未能发现 WAN 网关!"
#~ msgid "Unable to create directory for '%s'"
#~ msgstr "无法为 '%s' 创建目录"
#~ msgid "Downloading"
#~ msgstr "下载中"
#~ msgid "%s Error: %s"
#~ msgstr "%s 错误: %s"
#~ msgid "%s Error: %s %s"
#~ msgstr "%s 错误: %s %s"
#~ msgid "Cache file containing %s domains found."
#~ msgstr "找到包含%s个域名的缓存文件。"
#~ msgid "Collected Errors"
#~ msgstr "收集的错误"
#~ msgid "Configuration"
#~ msgstr "配置"
#~ msgid "DNSMASQ Additional Hosts"
#~ msgstr "DNSMASQ 的额外主机名"
#~ msgid "DNSMASQ Config"
#~ msgstr "DNSMASQ 配置"
#~ msgid "DNSMASQ Ipset"
#~ msgstr "DNSMASQ Ip集"
#~ msgid "DNSMASQ Nft Set"
#~ msgstr "DNSMASQ Nft 集"
#~ msgid "DNSMASQ Servers File"
#~ msgstr "DNSMASQ Servers 文件"
#~ msgid "Delay (in seconds) for on-boot start"
#~ msgstr "开机启动延迟(秒)"
#~ msgid "Info"
#~ msgstr "信息"
#~ msgid "Loading"
#~ msgstr "加载中"
#~ msgid "Message"
#~ msgstr "消息"
#~ msgid ""
#~ "Pick the DNS resolution option to create the adblock list for, see the "
#~ "%sREADME%s for details."
#~ msgstr ""
#~ "选择DNS解析选项以为其创建广告阻止列表,有关详细信息,请参见%sREADME%s。"
#~ msgid "Run service after set delay on boot."
#~ msgstr "系统启动后延后指定时间再启动本服务。"
#~ msgid "Service Status [%s %s]"
#~ msgstr "服务状态 [%s %s]"
#~ msgid "Simple AdBlock Settings"
#~ msgstr "简易 AdBlock 设置"
#~ msgid "Success"
#~ msgstr "成功完成"
#~ msgid "Task"
#~ msgstr "任务"
#~ msgid "Unbound AdBlock List"
#~ msgstr "Ubound AdBlock 列表"
#~ msgid "DNSMASQ IP Set"
#~ msgstr "DNSMASQ IP 组"
#~ msgid "DNSMASQ NFT Set"
#~ msgstr "DNSMASQ NFT 集合"
#~ msgid "%s is blocking %s domains (with %s)."
#~ msgstr "%s正在阻止%s域(包含%s)。"
#~ msgid "Blacklisted Domain URLs"
#~ msgstr "列入黑名单的域名 URL"
#~ msgid "Blacklisted Domains"
#~ msgstr "列入黑名单的域名"
#~ msgid "Blacklisted Hosts URLs"
#~ msgstr "列入黑名单的主机 URL"
#~ msgid "Individual domains to be blacklisted."
#~ msgstr "黑名单中的域名。"
#~ msgid "Individual domains to be whitelisted."
#~ msgstr "白名单中的域名。"
#~ msgid "URLs to lists of domains to be blacklisted."
#~ msgstr "列入黑名单的域名列表 URL。"
#~ msgid "URLs to lists of domains to be whitelisted."
#~ msgstr "列入白名单的域名列表 URL。"
#~ msgid "URLs to lists of hosts to be blacklisted."
#~ msgstr "列入黑名单的主机名列表 URL。"
#~ msgid "Whitelist and Blocklist Management"
#~ msgstr "白名单和黑名单管理"
#~ msgid "Whitelisted Domain URLs"
#~ msgstr "白名单域名 URL"
#~ msgid "Whitelisted Domains"
#~ msgstr "白名单域名"
#~ msgid ""
#~ "Pick the DNS resolution option to create the adblock list for, see the"
#~ msgstr "选择 DNS 解析选项以为其创建广告阻止列表,请参见"
#~ msgid "Pick the LED not already used in"
#~ msgstr "选择尚未使用的 LED"
#~ msgid "Please note that"
#~ msgstr "请注意"
#~ msgid "README"
#~ msgstr "README"
#~ msgid "System LED Configuration"
#~ msgstr "系统 LED 配置"
#~ msgid "for details."
#~ msgstr "详细信息。"
#~ msgid "is not supported on this system."
#~ msgstr "在该系统上不受支持。"
#~ msgid "Enable/Start"
#~ msgstr "启用/启动"
#~ msgid "Reload"
#~ msgstr "重新载入"
#~ msgid "Service is disabled/stopped"
#~ msgstr "服务已禁用/已停止"
#~ msgid "Service is enabled/started"
#~ msgstr "服务已启用/已启动"
#~ msgid "Service started with error"
#~ msgstr "服务启动时出错"
#~ msgid "Stop/Disable"
#~ msgstr "停止/禁用"
#~ msgid "Controls system log and console output verbosity"
#~ msgstr "控制系统日志和控制台输出的详细程度"
#~ msgid "Forces Router DNS use on local devices, also known as DNS Hijacking"
#~ msgstr "强制路由器 DNS 在本地设备上使用,也称为 DNS 劫持"
#~ msgid "Individual domains to be blacklisted"
#~ msgstr "要列入黑名单的单独域名"
#~ msgid "Individual domains to be whitelisted"
#~ msgstr "要列入白名单的单独域名"
#~ msgid "Start Simple Adblock service"
#~ msgstr "启动简单 Adblock 服务"
#~ msgid "URLs to lists of domains to be blacklisted"
#~ msgstr "黑名单域名列表的 URL"
#~ msgid "URLs to lists of domains to be whitelisted"
#~ msgstr "白名单域名列表的 URL"
#~ msgid "URLs to lists of hosts to be blacklisted"
#~ msgstr "黑名单主机列表的 URL"
#~ msgid "Enables debug output to /tmp/simple-adblock.log"
#~ msgstr "启用到 /tmp/simple-adblock.log 的调试输出"
#~ msgid "Run service after set delay on boot"
#~ msgstr "开机后延迟多少秒运行服务"
#~ msgid "Stop the download if it is stalled for set number of seconds"
#~ msgstr "如果下载停滞设定的秒数后,则停止下载"
|