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
|
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: \n"
"PO-Revision-Date: 2020-11-04 00:26+0000\n"
"Last-Translator: RyotaGamer <21ryotagamer@gmail.com>\n"
"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsadblock/ja/>\n"
"Language: ja\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 4.3.2-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Action"
msgstr "アクション"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216
msgid "Active Sources"
msgstr "アクティブなソース"
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:6
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:3
msgid "Adblock"
msgstr "Adblock"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36
msgid "Adblock action"
msgstr "アドブロックアクション"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:11
msgid "Add Blacklist Domain"
msgstr "ブラックリストドメインの追加"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:46
msgid "Add Whitelist Domain"
msgstr "ホワイトリストドメインの追加"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:12
msgid "Add this (sub-)domain to your local blacklist."
msgstr "この(サブ)ドメインをローカルのブラックリストに追加します。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:47
msgid "Add this (sub-)domain to your local whitelist."
msgstr "この(サブ)ドメインをローカルのホワイトリストに追加します。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:416
msgid "Additional Jail Blocklist"
msgstr "追加のJailブロックリスト"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269
msgid "Additional Settings"
msgstr "追加設定"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr "Adblock の処理が開始されるまでの、追加の遅延時間(秒)です。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270
msgid "Advanced DNS Settings"
msgstr "DNS の詳細設定"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272
msgid "Advanced E-Mail Settings"
msgstr "Eメールの詳細設定"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid "Advanced Report Settings"
msgstr "リポートの詳細設定"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Answer"
msgstr "回答"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:364
msgid "Backup Directory"
msgstr "バックアップ先 ディレクトリ"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355
msgid "Base Temp Directory"
msgstr "ベースとなるテンポラリディレクトリ"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355
msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc."
msgstr ""
"ベースとなるテンポラリディレクトリはadblock関連の操作に使用されます(ダウン"
"ロード、ソート、統合など)。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js:15
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:34
msgid ""
"Blacklist changes have been saved. Refresh your adblock lists that changes "
"take effect."
msgstr ""
"ブラックリストへの変更が保存されました。adblockを更新して変更を適用します。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281
msgid "Blacklist..."
msgstr "ブラックリスト..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Blocked Domain"
msgstr "ブロックされたドメイン"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213
msgid "Blocked Domains"
msgstr "ブロックされたドメイン"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:360
msgid "Blocklist Backup"
msgstr "ブロックリストのバックアップ"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:81
msgid "Blocklist Query"
msgstr "ブロックリストのクエリ"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317
msgid "Blocklist Query..."
msgstr "ブロックリストのクエリ..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273
msgid "Blocklist Sources"
msgstr "ブロックリスト提供元"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:416
msgid ""
"Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive "
"blocklist e.g. for guest wifi or kidsafe configurations."
msgstr ""
"追加のDNSブロックリストを作成してホワイトリスト以外のドメインへのアクセスをブ"
"ロックします。注意: この制限付きブロックリストはゲストwifiまたはkidsafe構成で"
"使用できます。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel"
msgstr "キャンセル"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p> </p>"
msgstr ""
"このタブでの変更を適用するにはadblockサービスを完全に再起動する必要がありま"
"す。<br /><p> </p>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client"
msgstr "クライアント"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128
msgid ""
"Configuration of the adblock package to block ad/abuse domains by using DNS. "
"For further information <a href=\"https://github.com/openwrt/packages/blob/"
"master/net/adblock/files/README.md\" target=\"_blank\" rel=\"noreferrer "
"noopener\" >check the online documentation</a>"
msgstr ""
"adblockパッケージがDNSによって広告/不正ドメインをブロックする設定です。詳しく"
"は、<a href=\"https://github.com/openwrt/packages/blob/master/net/adblock/"
"files/README.md\" target=\"_blank\" rel=\"noreferrer noopener\" >オンラインド"
"キュメント</a>を確認してください"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
msgid "Count"
msgstr "カウント"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:360
msgid ""
"Create compressed blocklist backups, they will be used in case of download "
"errors or during startup."
msgstr ""
"圧縮されたブロックリストのバックアップを作成します。ダウンロードエラーや起動"
"時に使用されます。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "DNS Backend"
msgstr "DNSバックエンド"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:392
msgid "DNS Directory"
msgstr "DNS ディレクトリ"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:406
msgid "DNS File Reset"
msgstr "DNS ファイル リセット"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report"
msgstr "DNSレポート"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr "DNSリクエスト(ブロック)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr "DNSリクエスト(合計)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout"
msgstr "DNS再起動タイムアウト"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Date"
msgstr "日付"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:413
msgid "Disable DNS Allow"
msgstr "DNS許可を無効化"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:425
msgid "Disable DNS Restarts"
msgstr "DNS再起動を無効化"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:425
msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions."
msgstr ""
"autoload/inotify機能を使用してDNSバックエンドのadblockの再起動トリガーを無効"
"にします。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:413
msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "セレクティブDNSホワイトリスティングを無効化(RPZパススルー)。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Domain"
msgstr "ドメイン"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377
msgid "Download Parameters"
msgstr "パラメータをダウンロード"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue"
msgstr "ダウンロードキュー"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370
msgid "Download Utility"
msgstr "ダウンロードユーティリティ"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification"
msgstr "Eメール通知"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471
msgid "E-Mail Notification Count"
msgstr "Eメール通知数"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467
msgid "E-Mail Profile"
msgstr "Eメールプロファイル"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address"
msgstr "Eメール受信アドレス"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459
msgid "E-Mail Sender Address"
msgstr "Eメール送信者アドレス"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463
msgid "E-Mail Topic"
msgstr "Eメールトピック"
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:9
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:35
msgid "Edit Blacklist"
msgstr "ブラックリストの編集"
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:10
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:43
msgid "Edit Whitelist"
msgstr "ホワイトリストの編集"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
msgid "Enable SafeSearch"
msgstr "セーフサーチを有効化"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube."
msgstr "youtube用の適度なセーフサーチフィルタを有効にします。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284
msgid "Enable the adblock service."
msgstr "adblockサービスを有効にします。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333
msgid "Enable verbose debug logging in case of any processing errors."
msgstr "エラーが発生した際に詳細なデバッグロギングを有効にします。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284
msgid "Enabled"
msgstr "有効"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
msgid "End Date"
msgstr "終了日"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
msgid ""
"Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and "
"pixabay."
msgstr ""
"Google、Bing、DuckDuckGo、Yandex、YouTube、Pixabayのセーフサーチを使用しま"
"す。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:18
msgid "Existing job(s)"
msgstr "既存の仕事"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:401
msgid "External DNS Lookup Domain"
msgstr "外部DNSルックアップドメイン"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:401
msgid ""
"External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'."
msgstr ""
"DNSバックエンドが正常に再起動したかチェックする外部ドメイン。注意: このチェッ"
"クを無効にするにはオプションを無効に設定してください。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156
msgid "Filter criteria like date, domain or client (optional)"
msgstr "日付、ドメイン、クライアントなどのフィルター基準(オプション)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:410
msgid "Flush DNS Cache"
msgstr "DNS キャッシュのクリア"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:410
msgid "Flush the DNS Cache before adblock processing as well."
msgstr "adblockが正常に動くようにするため、事前にDNSキャッシュをクリアします。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293
msgid "Force Local DNS"
msgstr "ローカル DNS の強制"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317
msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package "
"installation and a full adblock service restart to take effect."
msgstr ""
"tcpdumpを介してDNS関連のネットワークトラフィックを収集し、オンデマンドでDNSレ"
"ポートを提供します。 注意: これを有効にするには、追加の「tcpdump-mini」パッ"
"ケージのインストールと完全なadblockサービスの再起動が必要です。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268
msgid "General Settings"
msgstr "一般設定"
#: applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json:3
msgid "Grant access to LuCI app adblock"
msgstr "LuCIアプリのadblockへのアクセスを許可"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208
msgid "Information"
msgstr "情報"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420
msgid "Jail Directory"
msgstr "Jailディレクトリ"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234
msgid "Last Run"
msgstr "最終実行"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336
msgid "Latest DNS Requests"
msgstr "最新のDNSリクエスト"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch"
msgstr "セーフサーチを制限"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr "セーフサーチを特定のプロバイダに制限します。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:432
msgid "List of available network devices used by tcpdump."
msgstr "tcpdumpが使用する利用可能なネットワークデバイス一覧です。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
msgid ""
"List of available network interfaces to trigger the adblock start. Choose "
"'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr ""
"adblockの開始をトリガーできるネットワークインターフェース一覧です。未指定を選"
"択するとトリガーの代わりに従来のスタートアップタイムアウトを使用します。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid ""
"List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option."
msgstr ""
"デフォルトのリストディレクトリを使用するDNSバックエンド一覧です。デフォルトの"
"パスを上書きするには'DNSディレクトリ'オプションを使用してください。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273
msgid ""
"List of supported and fully pre-configured adblock sources, already active "
"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not "
"select too many lists!</em></b><br /> List size information with the "
"respective domain ranges as follows:<br /> • <b>S</b> (-10k), "
"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices,"
"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte "
"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore "
"support, e.g. x86 or raspberry devices.<br /> <p> </p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370
msgid "List of supported and fully pre-configured download utilities."
msgstr "サポートされ、かつ設定済のダウンロード ユーティリティの一覧です。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296
msgid "Local DNS Ports"
msgstr "ローカルDNSポート"
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:11
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51
msgid "Log View"
msgstr "ログビュー"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service"
msgstr "優先度が低いサービス"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
msgid "Name / IP Address"
msgstr "名前 / IPアドレス"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123
msgid "No Query results!"
msgstr "検索結果がありません!"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logread.js:21
msgid "No adblock related logs yet!"
msgstr "まだadblolck関連のログがありません!"
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:7
#: 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:467
msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "'msmtp'をadblock通知Eメールに使用するプロファイル。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131
msgid "Query"
msgstr "検索"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:82
msgid "Query active blocklists and backups for a specific domain."
msgstr "特定のドメインのアクティブなブロックリストとバックアップを検索します。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471
msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit."
msgstr ""
"通知数を上げて、ブロックリスト全体の数が指定された制限以下の場合に電子メール"
"を取得します。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails."
msgstr "adblock 通知メールの受信アドレスです。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293
msgid ""
"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies "
"to UDP and TCP protocol."
msgstr ""
"'lan'ゾーンからすべてのDNSクエリをローカルDNSリゾルバにリダイレクトし、UDPと"
"TCPプロトコルに適用します。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid ""
"Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock "
"service restart to take effect."
msgstr ""
"システムリソースを増やすために、adblockのバックグラウンド処理の優先順位を下げ"
"ます。注意: この変更を有効にするには、完全なadblockサービスの再起動が必要で"
"す。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh"
msgstr "リフレッシュ"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138
msgid "Refresh DNS Report"
msgstr "DNSリポートをリフレッシュ"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:15
msgid "Refresh Timer"
msgstr "タイマーをリフレッシュ"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242
msgid "Refresh Timer..."
msgstr "タイマーをリフレッシュ..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324
msgid "Refresh..."
msgstr "リフレッシュ..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Relax SafeSearch"
msgstr "リラックスセーフサーチ"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:442
msgid "Report Chunk Count"
msgstr "レポート チャンクカウント"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447
msgid "Report Chunk Size"
msgstr "レポート チャンクサイズ"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:437
msgid "Report Directory"
msgstr "レポート ディレクトリ"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:432
msgid "Report Interface"
msgstr "レポート インターフェース"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452
msgid "Report Ports"
msgstr "レポートポート"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:442
msgid "Report chunk count used by tcpdump."
msgstr "tcpdumpによって使用されるレポートチャンク数。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447
msgid "Report chunk size used by tcpdump in MByte."
msgstr "tcpdumpがメガバイト単位で使用するレポートチャンクサイズ。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:406
msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the "
"background."
msgstr ""
"DNSバックエンドの読み込み後に、最後のDNSブロックリスト'adb_list.overlall'をリ"
"セットします。注意: このオプションはバックグラウンドで小さなubus/adblockモニ"
"ターを起動します。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95
msgid "Result"
msgstr "結果"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228
msgid "Run Directories"
msgstr "実行ディレクトリ"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231
msgid "Run Flags"
msgstr "実行フラグ"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225
msgid "Run Interfaces"
msgstr "実行インターフェース"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222
msgid "Run Utils"
msgstr "実行ユーティリティー"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save"
msgstr "保存"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid ""
"Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation."
msgstr ""
"adblock関連の通知Eメールを送信します。注意: これは追加の'msmtp'パッケージのイ"
"ンストールが必要です。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459
msgid "Sender address for adblock notification E-Mails."
msgstr "adblockの通知Eメール送信者アドレス。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29
msgid "Set/Replace a new adblock job"
msgstr "新しいadblockジョブの設定/置き換え"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266
msgid "Settings"
msgstr "設定"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid ""
"Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel."
msgstr ""
"ダウンロード処理(並べ替え、統合など)のダウンロードキューのサイズを並列で指定"
"します。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:479
msgid "Sources (Size, Focus)"
msgstr "ソース(サイズ、フォーカス)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296
msgid ""
"Space separated list of DNS-related firewall ports which should be forced "
"locally."
msgstr ""
"スペースで区切られた、ローカルのみの、DNS関連のファイアウォールポートリスト。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452
msgid "Space separated list of ports used by tcpdump."
msgstr "tcpdumpが使用するポートの、スペースで区切られたリスト。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377
msgid "Special config options for the selected download utility."
msgstr "選択したダウンロードユーティリティーの特別な設定オプション。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
msgid "Start Date"
msgstr "開始日"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
msgid "Startup Trigger Interface"
msgstr "起動時トリガーインターフェース"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210
msgid "Status / Version"
msgstr "ステータス / バージョン"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250
msgid "Suspend"
msgstr "一時停止"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:437
msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk."
msgstr ""
"DNS関連のレポートファイルのターゲットディレクトリです。デフォルトは'/tmp'で"
"す。可能ならばUSBメモリまたは別のローカルディスクを使用してください。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:364
msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk."
msgstr ""
"ブロックリストのバックアップに使用されるターゲットディレクトリです。デフォル"
"トは'/tmp'です。可能ならばUSBメモリまたは別のローカルディスクを使用してくださ"
"い。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:392
msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr "生成されたブロックリスト 'adb_list.overall' の保存先ディレクトリです。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420
msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr ""
"生成されたjailブロックリスト'adb_list.jail'のターゲットディレクトリです。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72
msgid "The Refresh Timer could not been updated."
msgstr "リフレッシュタイマーを更新できませんでした。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74
msgid "The Refresh Timer has been updated."
msgstr "リフレッシュタイマーは更新されました。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:52
msgid "The day of the week (opt., values: 1-7 possibly sep. by , or -)"
msgstr "曜日(オプション、1-7の値または - で区切る)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:42
msgid "The hours portition (req., range: 0-23)"
msgstr "時間(必須、0-23の値)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:47
msgid "The minutes portion (opt., range: 0-59)"
msgstr "分(オプション、0-59の値)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logread.js:28
msgid "The syslog output, pre-filtered for adblock related messages only."
msgstr "Adblock に関連するメッセージのみが抽出された、システムログ出力です。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js:23
msgid ""
"This is the local adblock blacklist to always-deny certain (sub) domains."
"<br /> Please note: add only one domain per line. Comments introduced with "
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
"これは、特定の(サブ)ドメインを常に拒否するローカルのadblockブラックリストで"
"す。<br /> 注意: 1行につきドメインを1つだけ追加してください。'#'で始まるコメ"
"ントを追加できます - IPアドレス、ワイルドカード、正規表現は使用できません。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js:23
msgid ""
"This is the local adblock whitelist to always allow certain (sub) domains."
"<br /> Please note: add only one domain per line. Comments introduced with "
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
"これは、特定の(サブ)ドメインを常に拒否するローカルのadblockホワイトリストで"
"す。<br /> 注意: 1行につきドメインを1つだけ追加してください。'#'で始まるコメ"
"ントを追加できます - IPアドレス、ワイルドカード、正規表現は使用できません。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
msgid ""
"This shows the last generated DNS Report, press the refresh button to get a "
"current one."
msgstr ""
"最後に生成されたDNSレポートを表示しています。更新ボタンを押して現在の状況を表"
"示します。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Time"
msgstr "時刻"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "Timeout to wait for a successful DNS backend restart."
msgstr "DNSバックエンドの再起動が成功するまでのタイムアウト。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:16
msgid ""
"To keep your adblock lists up-to-date, you should setup an automatic update "
"job for these lists."
msgstr ""
"adblockリストを常に最新にするには、自動更新をこれらのリストに設定する必要があ"
"ります。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329
msgid "Top 10 Statistics"
msgstr "上位10項目"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463
msgid "Topic for adblock notification E-Mails."
msgstr "adblockの通知Eメールのトピック。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay"
msgstr "トリガ遅延"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js:17
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js:17
msgid "Unable to save changes: %s"
msgstr "変更を保存できませんでした: %s"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333
msgid "Verbose Debug Logging"
msgstr "詳細なデバッグ ログ"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:69
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js:15
msgid ""
"Whitelist changes have been saved. Refresh your adblock lists that changes "
"take effect."
msgstr ""
"ホワイトリストへの変更が保存されました。adblockのリストを更新して変更を適用し"
"ます。"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273
msgid "Whitelist..."
msgstr "ホワイトリスト..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr "dnsmasq (/tmp/dnsmasq.d)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388
msgid "kresd (/etc/kresd)"
msgstr "kresd (/etc/kresd)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149
msgid "max. result set size"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "named (/var/lib/bind)"
msgstr "named (/var/lib/bind)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389
msgid "raw (/tmp)"
msgstr "raw (/tmp)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "unbound (/var/lib/unbound)"
msgstr "unbound (/var/lib/unbound)"
#~ msgid ""
#~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less "
#~ "than 64 MB free RAM, please only select a few of them!"
#~ msgstr ""
#~ "<b>警告:</b> RAM の空き容量が 64MB に満たないメモリー容量の小さいデバイス"
#~ "では、 OutOfMemory (OOM) 例外を防ぐために少数のみを選択してください。"
#~ msgid "Adblock Status"
#~ msgstr "Adblock ステータス"
#~ msgid "Adblock Version"
#~ msgstr "Adblock バージョン"
#~ msgid "Advanced"
#~ msgstr "詳細設定"
#~ msgid "Archive Categories"
#~ msgstr "アーカイブ カテゴリ"
#~ msgid "Blacklist"
#~ msgstr "ブラックリスト"
#~ msgid "Blacklist File"
#~ msgstr "ブラックリスト ファイル"
#~ msgid "Blocked DNS Queries"
#~ msgstr "ブロックされた DNS クエリ"
#~ msgid "Blocklist not found!"
#~ msgstr "ブロックリストが見つかりません!"
#~ msgid ""
#~ "Choose 'none' to disable automatic startups, 'timed' to use a classic "
#~ "timeout (default 30 sec.) or select another trigger interface."
#~ msgstr ""
#~ "自動スタートアップを無効にするには 'none' を、従来のタイムアウト(既定値: "
#~ "30秒)を使用するには 'timed' を選択してください。または、他のトリガとなる"
#~ "インターフェースを選択してください。"
#~ msgid "Collecting data..."
#~ msgstr "データ収集中です..."
#~ msgid ""
#~ "Configuration of the adblock package to block ad/abuse domains by using "
#~ "DNS."
#~ msgstr ""
#~ "DNS の利用によって広告/不正ドメインをブロックする、Adblock パッケージの設"
#~ "定です。"
#~ msgid "DNS Backend (DNS Directory)"
#~ msgstr "DNS バックエンド(DNS ディレクトリ)"
#~ msgid "DNS Backend, DNS Directory"
#~ msgstr "DNS バックエンド, DNS ディレクトリ"
#~ msgid "DNS Blocking Variant"
#~ msgstr "DNS ブロック種別"
#~ msgid "DNS Inotify"
#~ msgstr "DNS Inotify"
#~ msgid "DNS Query Report"
#~ msgstr "DNS クエリ レポート"
#~ msgid "DNS Variant, DNS File Reset"
#~ msgstr "DNS 種別, DNS ファイル リセット"
#~ msgid "Description"
#~ msgstr "説明"
#~ msgid ""
#~ "Disable adblock triggered restarts and the 'DNS File Reset' for DNS "
#~ "backends with autoload features."
#~ msgstr ""
#~ "自動読み込み機能を持つ DNS バックエンドのため、adblockが引き起こす再起動"
#~ "と 'DNS ファイル リセット' を無効にします。"
#~ msgid ""
#~ "Disable the toplevel domain compression, if the number of blocked domains "
#~ "is greater than this threshold."
#~ msgstr ""
#~ "ブロックされたドメイン数がこの閾値を超える場合、トップレベル ドメインの圧"
#~ "縮を無効にします。"
#~ msgid ""
#~ "Dnsmasq also supports 'null' block variants, which may provide better "
#~ "response times."
#~ msgstr ""
#~ "Dnsmasq は、より応答時間に優れることがあるブロック種別 'null' も提供しま"
#~ "す。"
#~ msgid "Domain/Client/Date/Time"
#~ msgstr "ドメイン / クライアント / 日付 / 時刻"
#~ msgid "Download Utility (SSL Library)"
#~ msgstr "ダウンロード ユーティリティ(SSL ライブラリ)"
#~ msgid "E-mail Notification Count"
#~ msgstr "Eメール通知カウント"
#~ msgid "E-mail Profile"
#~ msgstr "Eメール プロファイル"
#~ msgid "E-mail Sender Address"
#~ msgstr "Eメール送信アドレス"
#~ msgid "E-mail Topic"
#~ msgstr "Eメール題名"
#~ msgid "Edit Configuration"
#~ msgstr "設定の編集"
#~ msgid "Enable Adblock"
#~ msgstr "Adblock の有効化"
#~ msgid "Enable verbose debug logging in case of any processing error."
#~ msgstr ""
#~ "何らかの処理エラーが発生した場合に、詳細なデバッグ ログを有効にします。"
#~ msgid "Extra Options"
#~ msgstr "拡張オプション"
#~ msgid "Filter"
#~ msgstr "フィルタ"
#~ msgid ""
#~ "Filter the DNS Query result set for a particular domain, client or time "
#~ "frame."
#~ msgstr ""
#~ "DNS クエリの結果セットを、指定したドメインやクライアント、日時によってフィ"
#~ "ルタします。"
#~ msgid "Flush DNS cache after adblock processing."
#~ msgstr "Adblock 処理の後に DNS キャッシュをクリアします。"
#~ msgid ""
#~ "For further information <a href=\"%s\" target=\"_blank\">check the online "
#~ "documentation</a>"
#~ msgstr ""
#~ "詳細な情報は <a href=\"%s\" target=\"_blank\">オンライン ドキュメント</a> "
#~ "を確認してください。"
#~ msgid ""
#~ "For further performance improvements you can raise this value, e.g. '8' "
#~ "or '16' should be safe."
#~ msgstr ""
#~ "パフォーマンスの更なる改善のため、安全と思われる '8' や '16' などの値に引"
#~ "き上げることができます。"
#~ msgid "Full path to the blacklist file."
#~ msgstr "ブラックリスト ファイルへのフルパスです。"
#~ msgid "Full path to the whitelist file."
#~ msgstr "ホワイトリスト ファイルへのフルパスです。"
#~ msgid ""
#~ "Gather DNS related network traffic via tcpdump to provide a DNS Query "
#~ "Report on demand."
#~ msgstr ""
#~ "tcpdump によって DNS 関連のネットワークトラフィックを収集し、 オンデマンド"
#~ "のDNS クエリレポートを提供します。"
#~ msgid "Input file not found, please check your configuration."
#~ msgstr "入力ファイルが見つかりません。設定を確認してください。"
#~ msgid "Latest DNS Queries"
#~ msgstr "最新の DNS クエリ"
#~ msgid ""
#~ "List of available network interfaces. Usually the startup will be "
#~ "triggered by the 'wan' interface."
#~ msgstr ""
#~ "利用可能なネットワーク インターフェースの一覧です。通常、スタートアップは "
#~ "'wan' インターフェースによってトリガされます。"
#~ msgid ""
#~ "List of supported DNS backends with their default list export directory."
#~ msgstr ""
#~ "サポートされる DNS バックエンドと、それぞれのデフォルトのリスト出力先の一"
#~ "覧です。"
#~ msgid ""
#~ "List of supported DNS blocking variants. By default 'nxdomain' will be "
#~ "used for all DNS backends."
#~ msgstr ""
#~ "DNS ブロック種別の一覧です。デフォルトの 'nxdomain' は全ての DNS バックエ"
#~ "ンドに使用されます。"
#~ msgid "Loading"
#~ msgstr "読込中"
#~ msgid "Local FW/DNS Ports"
#~ msgstr "ローカル FW/DNS ポート"
#~ msgid "Logfile"
#~ msgstr "ログファイル"
#~ msgid "Mail profile used in 'msmtp' for adblock notification e-mails."
#~ msgstr ""
#~ "adblock 通知メールのために 'msmtp' で使用される、メール プロファイルです。"
#~ msgid "Max. Download Queue"
#~ msgstr "ダウンロード キューの上限"
#~ msgid "Name / IP-Address"
#~ msgstr "名前 / IP アドレス"
#~ msgid "No"
#~ msgstr "いいえ"
#~ msgid ""
#~ "Options for further tweaking in case the defaults are not suitable for "
#~ "you."
#~ msgstr ""
#~ "デフォルト設定が適切でない場合、追加で設定するためのオプションです。"
#~ msgid "Overall Domains"
#~ msgstr "全体のドメイン"
#~ msgid ""
#~ "Please add only one domain per line. Comments introduced with '#' are "
#~ "allowed - ip addresses, wildcards and regex are not."
#~ msgstr ""
#~ "1行に1つのドメインを追加してください。'#' から始まるコメントを記述できます"
#~ "が、IP アドレスやワイルドカード、正規表現を設定値として使用することはでき"
#~ "ません。"
#~ msgid "Please edit this file directly in a terminal session."
#~ msgstr "ターミナル セッションで直接このファイルを編集してください。"
#~ msgid ""
#~ "Please note: this needs manual 'msmtp' package installation and setup."
#~ msgstr ""
#~ "注意: これは手動での 'msmtp' パッケージのインストールとセットアップを必要"
#~ "とします。"
#~ msgid "Please note: this needs manual 'tcpdump-mini' package installation."
#~ msgstr ""
#~ "注意: これは手動での 'tcpdump-mini' パッケージのインストールを必要としま"
#~ "す。"
#~ msgid "Query domains"
#~ msgstr "ドメインの検索"
#~ msgid ""
#~ "Raise the minimum notification count, to get e-mails if the overall count "
#~ "is less or equal to the given limit (default 0),"
#~ msgstr ""
#~ "メール通知を行うメール通知カウントを設定します。全体カウントが指定された値"
#~ "以下の場合、メールを受け取ります。(規定値: 0)"
#~ msgid ""
#~ "Redirect all DNS queries from 'lan' zone to the local resolver, applies "
#~ "to UDP and TCP protocol on port 53, 853 and 5353."
#~ msgstr ""
#~ "'lan' ゾーンからの全 DNS クエリをローカル リゾルバにリダイレクトします。こ"
#~ "れは、53, 853, 5353 の各ポートにおける UDP, TCP プロトコルに適用されます。"
#~ msgid "Refresh Blocklist Sources"
#~ msgstr "ブロックリスト提供元のリフレッシュ"
#~ msgid "Refresh Report"
#~ msgstr "レポートをリフレッシュ"
#~ msgid "Report Listen Port(s)"
#~ msgstr "レポート待ち受けポート"
#~ msgid "Report chunk count used by tcpdump (default '5')."
#~ msgstr "tcpdump により使用される、レポートチャンク数です。(規定値: '5')"
#~ msgid "Report chunk size used by tcpdump in MB (default '1')."
#~ msgstr ""
#~ "tcpdump により使用される、レポート チャンクサイズです。(規定値: '1')"
#~ msgid ""
#~ "Reporting interface used by tcpdump, set to 'any' for multiple interfaces "
#~ "(default 'br-lan')."
#~ msgstr ""
#~ "tcpdump により使用される、レポートを行うインターフェースです。複数のイン"
#~ "ターフェースを使用するには、 'any' を設定してください。(規定値: 'br-"
#~ "lan')"
#~ msgid ""
#~ "Resets the final DNS blockfile 'adb_list.overall' after loading through "
#~ "the DNS backend."
#~ msgstr ""
#~ "最終的な DNS ブロックファイル 'adb_list.overall' を、DNS バックエンドを通"
#~ "して読み込み後にリセットします。"
#~ msgid "Resume"
#~ msgstr "再開"
#~ msgid "Runtime Information"
#~ msgstr "ランタイム情報"
#~ msgid "SSL req."
#~ msgstr "SSL 必須"
#~ msgid ""
#~ "Send notification e-mails in case of a processing error or if domain "
#~ "count is ≤ 0."
#~ msgstr ""
#~ "処理エラーまたはドメイン カウントが 0 以下の場合、通知メールを送信します。"
#~ msgid "Sender address for adblock notification e-mails."
#~ msgstr "adblock 通知メールの送信アドレスです。"
#~ msgid ""
#~ "Set the nice level to 'low priority' and the adblock background "
#~ "processing will take fewer resources from the system."
#~ msgstr ""
#~ "nice値(優先度)を '低優先度' に設定し、adblock バックグラウンド処理のシス"
#~ "テムリソース使用量を抑制します。"
#~ msgid ""
#~ "Size of the download queue to handle downloads & list processing in "
#~ "parallel (default '4')."
#~ msgstr ""
#~ "ダウンロードの制御とリストの処理を同時並行的に行う、ダウンロードキューのサ"
#~ "イズです。(規定値: '4')"
#~ msgid ""
#~ "Space separated list of firewall ports which should be redirected locally."
#~ msgstr ""
#~ "スペースで区切られた、ローカルにリダイレクトされるファイアウォール ポート"
#~ "のリストです。"
#~ msgid ""
#~ "Space separated list of reporting port(s) used by tcpdump (default: '53')."
#~ msgstr ""
#~ "tcpdump により使用される、レポートを行うポートのスペースで区切られたリスト"
#~ "です。(規定値: '53')"
#~ msgid "Startup Trigger"
#~ msgstr "スタートアップ トリガ"
#~ msgid "Suspend / Resume Adblock"
#~ msgstr "Adblock の一時停止 / 再開"
#~ msgid "TLD Compression Threshold"
#~ msgstr "TLD 圧縮閾値"
#~ msgid ""
#~ "Target directory for adblock source backups. Default is '/tmp', please "
#~ "use preferably a non-volatile disk if available."
#~ msgstr ""
#~ "adblock ソースをバックアップする対象ディレクトリです。デフォルトは '/tmp' "
#~ "ですが、可能であれば不揮発性ディスクを使用して下さい。"
#~ msgid ""
#~ "Target directory for dns related report files. Default is '/tmp', please "
#~ "use preferably a non-volatile disk if available."
#~ msgstr ""
#~ "DNS 関連レポート ファイルの保存先ディレクトリです。デフォルトは '/tmp' で"
#~ "すが、可能であれば不揮発性ディスクを使用してください。"
#~ msgid "The file size is too large for online editing in LuCI (≥ 100 KB)."
#~ msgstr ""
#~ "LuCI上でのオンライン編集を行うには、ファイルサイズが大きすぎます (≥ "
#~ "100 KB)。"
#~ msgid "This change requires a manual service stop/re-start to take effect."
#~ msgstr "この変更の反映には、手動でのサービスの停止 / 再起動が必要です。"
#~ msgid ""
#~ "This form allows you to modify the content of the adblock blacklist (%s)."
#~ msgstr ""
#~ "このフォームでは、Adblock ブラックリスト (%s) の内容を変更することができま"
#~ "す。"
#~ msgid ""
#~ "This form allows you to modify the content of the adblock whitelist (%s)."
#~ msgstr ""
#~ "このフォームでは、Adblock ホワイトリスト (%s) の内容を変更することができま"
#~ "す。"
#~ msgid ""
#~ "This form allows you to modify the content of the main adblock "
#~ "configuration file (/etc/config/adblock)."
#~ msgstr ""
#~ "このフォームでは、メインのAdblock 設定ファイル (/etc/config/adblock) の内"
#~ "容を変更することができます。"
#~ msgid ""
#~ "This form allows you to query active block lists for certain domains, e."
#~ "g. for whitelisting."
#~ msgstr ""
#~ "このフォームでは、現在有効なリスト内で特定のドメインを検索することができま"
#~ "す。例: ホワイトリスト内"
#~ msgid ""
#~ "This option saves an enormous amount of storage space, but starts a small "
#~ "ubus/adblock monitor in the background."
#~ msgstr ""
#~ "このオプションはストレージ容量の大きな節約となりますが、バックグラウンドで"
#~ "小さな ubus/adblock モニターを開始します。"
#~ msgid ""
#~ "To overwrite the default path use the 'DNS Directory' option in the extra "
#~ "section below."
#~ msgstr ""
#~ "デフォルトのパスを上書きするには、下記拡張セクションの 'DNS ディレクトリ' "
#~ "オプションを使用します。"
#~ msgid "Top 10 Reporting"
#~ msgstr "上位 10 レポート"
#~ msgid "Topic for adblock notification e-mails."
#~ msgstr "adblock 通知メールの題名です。"
#~ msgid "Total DNS Queries"
#~ msgstr "総 DNS クエリ"
#~ msgid "Waiting for command to complete..."
#~ msgstr "コマンド実行中です..."
#~ msgid "Whitelist"
#~ msgstr "ホワイトリスト"
#~ msgid "Whitelist File"
#~ msgstr "ホワイトリスト ファイル"
#~ msgid "Yes"
#~ msgstr "はい"
#~ msgid ""
#~ "e.g. to receive an e-mail notification with every adblock run set this "
#~ "value to 200000."
#~ msgstr ""
#~ "例: adblock の実行ごとに Eメール通知を受け取るには、値を 200000 に設定しま"
#~ "す。"
|