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
|
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2019-07-23 22:17-0300\n"
"PO-Revision-Date: 2020-05-02 10:21+0000\n"
"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n"
"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsbanip/es/>\n"
"Language: es\n"
"MIME-Version: 1.0\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.1-dev\n"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
msgid "-m limit --limit 2/sec (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
msgid "ASNs"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:127
msgid "Action"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290
msgid "Active Devices"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294
msgid "Active Interfaces"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298
msgid "Active Logterms"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286
msgid "Active Sources"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302
msgid "Active Subnets"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Additional Settings"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
msgid "Additional trigger delay in seconds before banIP processing begins."
msgstr ""
"Demora adicional del disparador en segundos antes de que comience el "
"procesamiento de banIP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Advanced Chain Settings"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
msgid "Advanced E-Mail Settings"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359
msgid "Advanced Log Settings"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
msgid "Auto Blacklist"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374
msgid "Auto Detection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
msgid "Auto Whitelist"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "Backup Directory"
msgstr "Directorio de respaldo"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "Base Temp Directory"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
"take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
msgid "Blocklist Sources"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:22
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:73
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:73
msgid "Cancel"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157
msgid ""
"Configuration of the banIP package to block ip adresses/subnets via IPSet. "
"For further information <a href=\"https://github.com/openwrt/packages/blob/"
"master/net/banip/files/README.md\" target=\"_blank\" rel=\"noreferrer "
"noopener\" >check the online documentation</a>"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:124
msgid "Count ACC"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:122
msgid "Count CIDR"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:121
msgid "Count IP"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:123
msgid "Count MAC"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:120
msgid "Count SUM"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
msgid "Countries"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
msgid "DST IPSet Type"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
msgid "DST Log Options"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "DST Target"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374
msgid ""
"Detect relevant network interfaces, devices, subnets and protocols "
"automatically."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Download Parameters"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
msgid "Download Queue"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457
msgid "Download Utility"
msgstr "Utilidad de descarga"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "E-Mail Actions"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "E-Mail Notification"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
msgid "E-Mail Profile"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "E-Mail Receiver Address"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
msgid "E-Mail Sender Address"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
msgid "E-Mail Topic"
msgstr ""
#: applications/luci-app-banip/luasrc/controller/banip.lua:9
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:35
msgid "Edit Blacklist"
msgstr "Editar lista negra"
#: applications/luci-app-banip/luasrc/controller/banip.lua:11
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Edit Maclist"
msgstr ""
#: applications/luci-app-banip/luasrc/controller/banip.lua:10
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:43
msgid "Edit Whitelist"
msgstr "Editar lista blanca"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
msgid "Enable DST logging"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398
msgid "Enable SRC logging"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366
msgid "Enable the banIP service."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
msgid "Enable verbose debug logging in case of any processing errors."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366
msgid "Enabled"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "Enables IPv4 support in banIP."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "Enables IPv6 support in banIP."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:125
msgid "Entry Details"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:18
msgid "Existing job(s)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475
msgid "Global IPSet Type"
msgstr ""
#: applications/luci-app-banip/root/usr/share/rpcd/acl.d/luci-app-banip.json:3
msgid "Grant access to LuCI app banIP"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423
msgid "High Priority"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
msgid "Highest Priority"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282
msgid "IPSet Information"
msgstr "Información de IPSet"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:45
msgid "IPSet Query"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213
msgid "IPSet Query..."
msgstr ""
#: applications/luci-app-banip/luasrc/controller/banip.lua:8
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:27
msgid "IPSet Report"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236
msgid "IPSet details"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "IPv4 Support"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "IPv6 Support"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276
msgid "Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
msgid "LAN Forward"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
msgid "LAN Input"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314
msgid "Last Run"
msgstr "Último inicio"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426
msgid "Least Priority"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425
msgid "Less Priority"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
msgid "Limit the log monitor to certain log terms."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "List of available network interfaces to trigger the banIP start."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
"Lista de utilidades de descarga totalmente preconfiguradas y compatibles."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
msgid "Log Limit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395
msgid "Log Monitor"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
msgid "Log Terms"
msgstr ""
#: applications/luci-app-banip/luasrc/controller/banip.lua:12
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:59
msgid "Log View"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398
msgid "Log suspicious incoming packets - usually dropped."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
msgid ""
"Log suspicious outgoing packets - usually rejected. Logging such packets may "
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
"effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118
msgid "Name"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
msgid "Network Interfaces"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:88
msgid "No Query results!"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/logread.js:21
msgid "No banIP related logs yet!"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424
msgid "Normal Priority (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196
msgid "Number of CIDR entries"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192
msgid "Number of IP entries"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200
msgid "Number of MAC entries"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204
msgid "Number of accessed entries"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184
msgid "Number of all IPSets"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188
msgid "Number of all entries"
msgstr ""
#: applications/luci-app-banip/luasrc/controller/banip.lua:7
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19
msgid "Overview"
msgstr "Visión general"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:96
msgid "Query"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "Receiver address for banIP notification e-mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338
msgid "Refresh"
msgstr "Refrescar"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:15
msgid "Refresh Timer"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Refresh Timer..."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:62
msgid "Remove an existing job"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
msgid "Report Directory"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Restart"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60
msgid "Result"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310
msgid "Run Flags"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306
msgid "Run Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "SRC IPSet Type"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
msgid "SRC Log Options"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "SRC Target"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
msgid "SRC+DST IPSet Type"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107
msgid "Save"
msgstr "Guardar"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:46
msgid ""
"Search the active banIP-related IPSets for a specific IP, CIDR or MAC "
"address."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
msgid "Select the relevant network interfaces manually."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid ""
"Send banIP related notification e-mails. This needs the installation and "
"setup of the additional 'msmtp' package."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
msgid "Sender address for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
msgid "Service Priority"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29
msgid "Set a new banIP job"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "Set the firewall target for all SRC related rules."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475
msgid ""
"Set the global IPset type default, to block incoming (SRC) and/or outgoing "
"(DST) packets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
msgid "Size of the download queue for download processing in parallel."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
msgid "Sources (Info)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Special config options for the selected download utility."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395
msgid ""
"Starts a small log monitor in the background to block suspicious SSH/LuCI "
"login attempts."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Startup Trigger Interface"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278
msgid "Status / Version"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Suspend"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
msgid "Target directory for IPSet related report files."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "Target directory for compressed source list backups."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:87
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:96
msgid "The Refresh Timer could not been updated."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:89
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:98
msgid "The Refresh Timer has been updated."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:57
msgid "The day of the week (opt., values: 1-7 possibly sep. by , or -)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:47
msgid "The hours portition (req., range: 0-23)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:52
msgid "The minutes portion (opt., range: 0-59)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
msgid ""
"The selected priority will be used for banIP background processing. This "
"change requires a full banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/logread.js:28
msgid "The syslog output, pre-filtered for banIP related messages only."
msgstr ""
"La salida de syslog, prefiltrada solo para mensajes relacionados con banIP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
msgid ""
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per "
"line. Comments introduced with '#' are allowed - domains, wildcards and "
"regex are not."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23
msgid ""
"This is the local banIP maclist to always-allow certain MAC addresses.<br /> "
"<em><b>Please note:</b></em> add only one MAC address per line. Comments "
"introduced with '#' are allowed - domains, wildcards and regex are not."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23
msgid ""
"This is the local banIP whitelist to always allow certain IP/CIDR addresses."
"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per "
"line. Comments introduced with '#' are allowed - domains, wildcards and "
"regex are not."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177
msgid ""
"This tab shows the last generated IPSet Report, press the 'Refresh' button "
"to get a current one."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180
msgid "Timestamp"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:16
msgid ""
"To keep your banIP lists up-to-date, you should setup an automatic update "
"job for these lists."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
msgid "Topic for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
msgid "Trigger Delay"
msgstr "Retraso de disparo"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:119
msgid "Type"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:17
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:17
msgid "Unable to save changes: %s"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
msgid "Verbose Debug Logging"
msgstr "Registro de depuración detallado"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
msgid "WAN Forward"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
msgid "WAN Input"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:11
msgid "Whitelist IP/CIDR"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
"Whitelist changes have been saved. Refresh your banIP lists that changes "
"take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153
msgid "Whitelist..."
msgstr ""
#: applications/luci-app-banip/luasrc/controller/banip.lua:6
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:3
msgid "banIP"
msgstr "banIP"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:41
msgid "banIP action"
msgstr ""
#~ msgid "ASN Overview"
#~ msgstr "Resumen de ASN"
#~ msgid "ASN Prefixes"
#~ msgstr "Prefijos ASN"
#~ msgid "ASN/Country"
#~ msgstr "ASN/País"
#~ msgid "Advanced"
#~ msgstr "Avanzado"
#~ msgid "Automatic WAN Interface Detection"
#~ msgstr "Detección automática de la interfaz WAN"
#~ msgid ""
#~ "Blacklist auto addons are stored temporary in the IPSet and saved "
#~ "permanently in the local blacklist. Disable this option to prevent the "
#~ "local save."
#~ msgstr ""
#~ "Los complementos automáticos de la lista negra se almacenan temporalmente "
#~ "en el IPSet y se guardan permanentemente en la lista negra local. "
#~ "Desactive esta opción para evitar el guardado local."
#~ msgid "Check the current available IPSets."
#~ msgstr "Compruebe los actuales IPSets disponibles."
#~ msgid ""
#~ "Configuration of the banIP package to block ip adresses/subnets via IPSet."
#~ msgstr ""
#~ "Configuración del paquete banIP para bloquear direcciones IP/subredes a "
#~ "través de IPSet."
#~ msgid "Country Resources"
#~ msgstr "Recursos del país"
#~ msgid "DNS Chain"
#~ msgstr "Cadena de DNS"
#~ msgid "DST Target IPv4"
#~ msgstr "Objetivo DST IPv4"
#~ msgid "DST Target IPv6"
#~ msgstr "Objetivo DST IPv6"
#~ msgid "Description"
#~ msgstr "Descripción"
#~ msgid "Download Options"
#~ msgstr "Opciones de descarga"
#~ msgid "Download Utility, RT Monitor"
#~ msgstr "Utilidad de descarga, Monitor RT"
#~ msgid "Edit Configuration"
#~ msgstr "Editar configuración"
#~ msgid "Enable banIP"
#~ msgstr "Activar"
#~ msgid "Enable verbose debug logging in case of any processing error."
#~ msgstr ""
#~ "Activa el registro de depuración detallado en caso de cualquier error de "
#~ "procesamiento."
#~ msgid "Enter IP/CIDR/ASN/ISO"
#~ msgstr "Ingrese IP/CIDR/ASN/ISO"
#~ msgid "Extra Options"
#~ msgstr "Opciones extra"
#~ msgid ""
#~ "For further information <a href=\"%s\" target=\"_blank\">check the online "
#~ "documentation</a>"
#~ msgstr ""
#~ "Para obtener más información <a href=\"%s\" target=\"_blank\">consulte la "
#~ "documentación en línea</a>"
#~ msgid ""
#~ "For further performance improvements you can raise this value, e.g. '8' "
#~ "or '16' should be safe."
#~ msgstr ""
#~ "Para otras mejoras de rendimiento, puede aumentar este valor, por "
#~ "ejemplo, '8' o '16' deben ser seguros."
#~ msgid "Geo Location"
#~ msgstr "Geolocalización"
#~ msgid "Grant UCI access for luci-app-banip"
#~ msgstr "Conceder acceso UCI para luci-app-banip"
#~ msgid "IANA Information"
#~ msgstr "Información IANA"
#~ msgid "IP/ASN Mapping"
#~ msgstr "Asignación de IP/ASN"
#~ msgid "IPSet Sources"
#~ msgstr "Fuentes de IPSet"
#~ msgid "IPSet-Lookup"
#~ msgstr "Búsqueda de IPSet"
#~ msgid "Input file not found, please check your configuration."
#~ msgstr ""
#~ "Archivo de entrada no encontrado, por favor revise su configuración."
#~ msgid "LAN Forward Chain IPv4"
#~ msgstr "Cadena de reenvío LAN IPv4"
#~ msgid "LAN Forward Chain IPv6"
#~ msgstr "Cadena de reenvío LAN IPv6"
#~ msgid "LAN Input Chain IPv4"
#~ msgstr "Cadena de entrada LAN IPv4"
#~ msgid "LAN Input Chain IPv6"
#~ msgstr "Cadena de entrada LAN IPv6"
#~ msgid "Load"
#~ msgstr "Carga"
#~ msgid "Loading"
#~ msgstr "Cargando"
#~ msgid "Loading ..."
#~ msgstr "CArgando..."
#~ msgid "Local Save Blacklist Addons"
#~ msgstr "Complementos locales para guardar la lista negra"
#~ msgid "Local Save Whitelist Addons"
#~ msgstr "Complementos locales para guardar la lista blanca"
#~ msgid "Low Priority Service"
#~ msgstr "Servicio con prioridad baja"
#~ msgid "Manual WAN Interface Selection"
#~ msgstr "Selección manual de interfaz WAN"
#~ msgid "Max. Download Queue"
#~ msgstr "Cola máxima de descarga"
#~ msgid "No response!"
#~ msgstr "¡Ninguna respuesta!"
#~ msgid ""
#~ "Options for further tweaking in case the defaults are not suitable for "
#~ "you."
#~ msgstr ""
#~ "Opciones para ajustes adicionales en caso de que los valores "
#~ "predeterminados no sean adecuados para usted."
#~ msgid ""
#~ "Please add only one IPv4 or IPv6 address per line. IP ranges in CIDR "
#~ "notation and comments introduced with '#' are allowed."
#~ msgstr ""
#~ "Añada solo una dirección IPv4 o IPv6 por renglón. Se permiten los "
#~ "intervalos de IP en la notación CIDR y los comentarios introducidos con "
#~ "«#»."
#~ msgid "Please edit this file directly in a terminal session."
#~ msgstr ""
#~ "Por favor, edite este archivo directamente en una sesión de terminal."
#~ msgid "RIPE-Lookup"
#~ msgstr "Buscar RIPE"
#~ msgid "Refresh IPSets"
#~ msgstr "Actualizar IPSets"
#~ msgid "Reload"
#~ msgstr "Recargar"
#~ msgid "Reload IPSet Sources"
#~ msgstr "Recargar las fuentes de IPSet"
#~ msgid "Runtime Information"
#~ msgstr "Información de tiempo de ejecución"
#~ msgid "SRC Target IPv4"
#~ msgstr "Objetivo SRC IPv4"
#~ msgid "SRC Target IPv6"
#~ msgstr "Objetivo SRC IPv6"
#~ msgid "SRC/DST"
#~ msgstr "SRC/DST"
#~ msgid "SSH Daemon"
#~ msgstr "Demonio SSH"
#~ msgid "SSH/LuCI RT Monitor"
#~ msgstr "Monitor SSH/LuCI RT"
#~ msgid ""
#~ "Select the SSH daemon for logfile parsing, to detect break-in events."
#~ msgstr ""
#~ "Seleccione el demonio SSH para el análisis del archivo de registro, para "
#~ "detectar eventos de intrusión."
#~ msgid "Select the used start type during boot."
#~ msgstr "Seleccione el tipo de inicio utilizado durante el arranque."
#~ msgid "Select your preferred download utility."
#~ msgstr "Seleccione su utilidad de descarga preferida."
#~ msgid "Select your preferred interface(s) manually."
#~ msgstr "Seleccione sus interfaces preferidas manualmente."
#~ msgid ""
#~ "Set the nice level to 'low priority' and banIP background processing will "
#~ "take less resources from the system."
#~ msgstr ""
#~ "Establezca el nivel agradable en 'baja prioridad' y el procesamiento en "
#~ "segundo plano de banIP tomará menos recursos del sistema."
#~ msgid "Show only set member with packet counter > 0"
#~ msgstr ""
#~ "Mostrar solo el miembro establecido con el contador de paquetes > 0"
#~ msgid ""
#~ "Size of the download queue to handle downloads & IPset processing in "
#~ "parallel (default '4')."
#~ msgstr ""
#~ "Tamaño de la cola de descarga para manejar descargas & Procesamiento "
#~ "de IPset en paralelo (predeterminado es '4')."
#~ msgid ""
#~ "Special options for the selected download utility, e.g. '--timeout=20 -O'."
#~ msgstr ""
#~ "Opciones especiales para la utilidad de descarga seleccionada, p.e. '--"
#~ "timeout=20 -O'."
#~ msgid "Start Type"
#~ msgstr "Tipo de inicio"
#~ msgid ""
#~ "Starts a small log/banIP monitor in the background to block SSH/LuCI "
#~ "brute force attacks in realtime."
#~ msgstr ""
#~ "Inicia un pequeño monitor log/banIP en segundo plano para bloquear los "
#~ "ataques de fuerza bruta SSH/LuCI en tiempo real."
#~ msgid ""
#~ "Target directory for banIP backups. Default is '/tmp', please use "
#~ "preferably a non-volatile disk if available."
#~ msgstr ""
#~ "Directorio de destino para copias de seguridad de banIP. El valor "
#~ "predeterminado es '/tmp', utilice preferiblemente un disco no volátil si "
#~ "está disponible."
#~ msgid ""
#~ "The RIPEstat Data API is the public data interface provided by RIPE NCC, "
#~ "for details look <a href=\"https://stat.ripe.net/docs/data_api\" target="
#~ "\"_blank\" rel=\"noopener noreferrer\">here</a>."
#~ msgstr ""
#~ "La API de datos RIPEstat es la interfaz pública de datos proporcionada "
#~ "por RIPE NCC, para obtener más detalles, vea <a href=\"https://stat.ripe."
#~ "net/docs/data_api\" target=\"_blank\" rel=\"noopener noreferrer\">aquí</"
#~ "a>."
#~ msgid "The file size is too large for online editing in LuCI (≥ 100 KB)."
#~ msgstr ""
#~ "El tamaño del archivo es demasiado grande para la edición en línea en "
#~ "LuCI (≥ 100 KB)."
#~ msgid "This change requires a manual service stop/re-start to take effect."
#~ msgstr ""
#~ "Este cambio requiere una parada/reinicio manual del servicio para que "
#~ "tenga efecto."
#~ msgid ""
#~ "This data call gives access to various data sources maintained by IANA."
#~ msgstr ""
#~ "Esta llamada de datos da acceso a varias fuentes de datos mantenidas por "
#~ "IANA."
#~ msgid ""
#~ "This data call lists the Internet resources associated with a country, "
#~ "including ASNs, IPv4 ranges and IPv4/6 CIDR prefixes."
#~ msgstr ""
#~ "Esta llamada de datos enumera los recursos de Internet asociados con un "
#~ "país, incluidos los ASN, los rangos de IPv4 y los prefijos de IPv4/6 CIDR."
#~ msgid "This data call returns all announced prefixes for a given ASN."
#~ msgstr ""
#~ "Esta llamada de datos devuelve todos los prefijos anunciados para un ASN "
#~ "dado."
#~ msgid ""
#~ "This data call returns geolocation information for the given IP space, or "
#~ "for announced IP prefixes in the case of ASNs."
#~ msgstr ""
#~ "Esta llamada de datos devuelve información de geolocalización para el "
#~ "espacio de IP dado, o para prefijos de IP anunciados en el caso de ASNs."
#~ msgid ""
#~ "This data call returns the containing prefix and announcing ASN of a "
#~ "given IP address."
#~ msgstr ""
#~ "Esta llamada de datos devuelve el prefijo que contiene y el anuncio de "
#~ "ASN de una dirección IP determinada."
#~ msgid ""
#~ "This data call returns the recursive chain of DNS forward (A/AAAA/CNAME) "
#~ "and reverse (PTR) records starting form either a hostname or an IP "
#~ "address."
#~ msgstr ""
#~ "Esta llamada de datos devuelve la cadena recursiva de los registros de "
#~ "reenvío de DNS (A/AAAA/CNAME) y de reversa (PTR) que comienzan con un "
#~ "nombre de host o una dirección IP."
#~ msgid ""
#~ "This data call returns whois information from the relevant Regional "
#~ "Internet Registry and Routing Registry."
#~ msgstr ""
#~ "Esta llamada de datos devuelve información whois del Registro regional de "
#~ "Internet y del Registro de enrutamiento pertinentes."
#~ msgid ""
#~ "This data call shows general informations about an ASN like its "
#~ "announcement status and the name of its holder according to the WHOIS "
#~ "service."
#~ msgstr ""
#~ "Esta llamada de datos muestra información general sobre un ASN como su "
#~ "estado de anuncio y el nombre de su titular de acuerdo con el servicio de "
#~ "WHOIS."
#~ msgid ""
#~ "This form allows you to modify the content of the banIP blacklist (%s)."
#~ "<br />"
#~ msgstr ""
#~ "Este formulario le permite modificar el contenido de la lista negra de "
#~ "banIP (%s).<br />"
#~ msgid ""
#~ "This form allows you to modify the content of the banIP whitelist (%s)."
#~ "<br />"
#~ msgstr ""
#~ "Este formulario le permite modificar el contenido de la lista blanca de "
#~ "banIP (%s).<br />"
#~ msgid ""
#~ "This form allows you to modify the content of the main banIP "
#~ "configuration file (/etc/config/banip)."
#~ msgstr ""
#~ "Este formulario le permite modificar el contenido del archivo de "
#~ "configuración de banIP principal (/etc/config/banip)."
#~ msgid "View Logfile"
#~ msgstr "Ver archivo de registro"
#~ msgid "WAN Forward Chain IPv4"
#~ msgstr "Cadena de reenvío WAN IPv4"
#~ msgid "WAN Forward Chain IPv6"
#~ msgstr "Cadena de reenvío WAN IPv6"
#~ msgid "WAN Input Chain IPv4"
#~ msgstr "Cadena de entrada WAN IPv4"
#~ msgid "WAN Input Chain IPv6"
#~ msgstr "Cadena de entrada WAN IPv6"
#~ msgid ""
#~ "Whitelist auto addons are stored temporary in the IPSet and saved "
#~ "permanently in the local whitelist. Disable this option to prevent the "
#~ "local save."
#~ msgstr ""
#~ "Los complementos automáticos de la lista blanca se almacenan "
#~ "temporalmente en el IPSet y se guardan permanentemente en la lista blanca "
#~ "local. Desactive esta opción para evitar el guardado local."
#~ msgid "Whois Information"
#~ msgstr "Información Whois"
#~ msgid "banIP Status"
#~ msgstr "Estado de banIP"
#~ msgid "banIP Version"
#~ msgstr "Versión de banIP"
#~ msgid "enable IPv4"
#~ msgstr "activar IPv4"
#~ msgid "enable IPv6"
#~ msgstr "activar IPv6"
#~ msgid ""
#~ "Disable the automatic WAN detection and select your preferred "
#~ "interface(s) manually."
#~ msgstr ""
#~ "Deshabilitar la detección automática de WAN y seleccione sus interfaces "
#~ "preferidas manualmente."
#~ msgid "Download Utility (SSL Library)"
#~ msgstr "Utilidad de descarga (Librería SSL)"
#~ msgid "Interface Selection"
#~ msgstr "Selección de interfaz"
#~ msgid ""
#~ "Special options for the selected download utility, e.g. '--timeout=20 --"
#~ "no-check-certificate -O'."
#~ msgstr ""
#~ "Opciones especiales para la utilidad de descarga seleccionada, por "
#~ "ejemplo, '--timeout=20 --no-check-certificate -O'."
#~ msgid "Backup Mode"
#~ msgstr "Modo de copia de seguridad"
#~ msgid ""
#~ "Create compressed blocklist backups, they will be used in case of "
#~ "download errors or during startup in 'backup mode'."
#~ msgstr ""
#~ "Cree copias de seguridad de listas de bloqueo comprimidas, se utilizarán "
#~ "en caso de errores de descarga o durante el inicio en el \"modo de copia "
#~ "de seguridad\"."
#~ msgid ""
#~ "Do not automatically update blocklists during startup, use their backups "
#~ "instead."
#~ msgstr ""
#~ "No actualice automáticamente las listas de bloqueo durante el inicio, use "
#~ "sus copias de seguridad en su lugar."
#~ msgid "Enable Blocklist Backup"
#~ msgstr "Habilitar copia de seguridad de lista de bloqueo"
#~ msgid "IP Blocklist Sources"
#~ msgstr "Fuentes de lista de bloqueo de IP"
#~ msgid "No"
#~ msgstr "No"
#~ msgid "Reload IPSets"
#~ msgstr "Recargar IPSets"
#~ msgid "SSL req."
#~ msgstr "SSL requerido."
#~ msgid ""
#~ "Target directory for banIP backups. Please use preferably a non-volatile "
#~ "disk, e.g. an external usb stick."
#~ msgstr ""
#~ "Directorio de destino para las copias de seguridad de banIP. Utilice "
#~ "preferiblemente un disco no volátil, por ej. una memoria usb externa."
#~ msgid "Yes"
#~ msgstr "Sí"
#~ msgid "n/a"
#~ msgstr "n/d"
|