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
|
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: \n"
"PO-Revision-Date: 2023-12-04 21:12+0000\n"
"Last-Translator: gallegonovato <fran-carro@hotmail.es>\n"
"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsadblock-fast/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 5.3-dev\n"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:241
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:304
msgid "%s"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:225
msgid "%s is currently disabled"
msgstr "%s está actualmente desactivado"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51
msgid "%s is not installed or not found"
msgstr "%s no está instalado o no se encuentra"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101
msgid "-"
msgstr "-"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:514
msgid "Action"
msgstr "Acción"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61
msgid "Active"
msgstr "Activo"
#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3
msgid "AdBlock Fast"
msgstr "Bloqueo de anuncios rápido"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:198
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:260
msgid "AdBlock on all instances"
msgstr "Bloqueo de anuncios en todas las instancias"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:261
msgid "AdBlock on select instances"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22
msgid "AdBlock-Fast"
msgstr "Bloqueador de anuncios rápido"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:465
msgid "AdBlock-Fast - Allowed and Blocked Domains"
msgstr "Bloqueo de anuncios rápido - Dominios permitidos y bloqueados"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:489
msgid "AdBlock-Fast - Allowed and Blocked Lists URLs"
msgstr "Bloqueo de anuncios rápido - URL de listas permitidas y bloqueadas"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59
msgid "AdBlock-Fast - Configuration"
msgstr "Bloqueo de anuncios rápido - Configuración"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119
msgid "AdBlock-Fast - Status"
msgstr "Bloqueo de anuncios rápido - Estado"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:367
msgid "Add IPv6 entries"
msgstr "Añadir entradas IPv6"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:364
msgid "Add IPv6 entries to block-list."
msgstr "Añadir entradas IPv6 a la lista de bloqueo."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62
msgid "Advanced Configuration"
msgstr "Configuración avanzada"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520
msgid "Allow"
msgstr "Permitir"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:473
msgid "Allowed Domains"
msgstr "Dominios permitidos"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:428
msgid ""
"Attempt to create a compressed cache of block-list in the persistent memory."
msgstr ""
"Intente crear un caché comprimido de la lista de bloqueo en la memoria "
"persistente."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:352
msgid "Automatic Config Update"
msgstr "Actualización automática de configuración"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:61
msgid "Basic Configuration"
msgstr "Configuración básica"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:516
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520
msgid "Block"
msgstr "Bloquear"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:481
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87
msgid "Blocked Domains"
msgstr "Dominios bloqueados"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132
msgid "Blocking %s domains (with %s)."
msgstr "Bloqueando %s dominios(con %s)."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88
msgid "Cache"
msgstr "Caché"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66
msgid "Cache file"
msgstr "Archivo de caché"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158
msgid "Cache file found."
msgstr "Archivo de caché encontrado."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195
msgid "Can't detect free RAM"
msgstr "No se detecta RAM libre"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68
msgid "Compressed cache"
msgstr "Caché comprimida"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137
msgid "Compressed cache file created."
msgstr "Archivo de caché comprimido creado."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160
msgid "Compressed cache file found."
msgstr "Archivo de caché comprimido encontrado."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:223
msgid "Config (%s) validation failure!"
msgstr "¡Error de validación de configuración (%s)!"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:325
msgid "Controls system log and console output verbosity."
msgstr ""
"Controla el registro del sistema y la verbosidad de salida de la consola."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:401
msgid "Curl download retry"
msgstr "Intento de descarga de Curl"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:388
msgid "Curl maximum file size (in bytes)"
msgstr "Tamaño máximo del archivo Curl (en bytes)"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:143
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86
msgid "DNS Service"
msgstr "Servicio de DNS"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:65
msgid "DNS resolution option, see the %sREADME%s for details."
msgstr ""
"Opción de resolución de DNS, consulte %sREADME%s para obtener más "
"información."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:439
msgid "Directory for compressed cache file"
msgstr "Directorio para el archivo de caché comprimido"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:441
msgid ""
"Directory for compressed cache file of block-list in the persistent memory."
msgstr ""
"El directorio para guardar los archivos de la caché comprimidos de la lista "
"de los intercepciones en la memoria persistente."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:424
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:355
msgid "Disable"
msgstr "Desactivar"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:457
msgid "Disable Debugging"
msgstr "Desactivar depuración"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154
msgid "Disabled"
msgstr "Desactivado"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:418
msgid "Disabling %s service"
msgstr "Desactivando el servicio %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:175
msgid "Dnsmasq Config File URL"
msgstr "URL del archivo de configuración de Dnsmasq"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:366
msgid "Do not add IPv6 entries"
msgstr "No añadir entradas IPv6"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431
msgid "Do not store compressed cache"
msgstr "No almacene caché comprimido"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418
msgid "Do not use simultaneous processing"
msgstr "No use procesamiento simultáneo"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:378
msgid "Download time-out (in seconds)"
msgstr "Tiempo de espera de descarga (en segundos)"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57
msgid "Downloading lists"
msgstr "Descargando listas"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:405
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:356
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:510
msgid "Enable"
msgstr "Activar"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:454
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:458
msgid "Enable Debugging"
msgstr "Activar depuración"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:455
msgid "Enables debug output to /tmp/adblock-fast.log."
msgstr "Activa la salida de depuración a /tmp/adblock-fast.log."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:399
msgid "Enabling %s service"
msgstr "Activando el servicio %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58
msgid "Error"
msgstr "Error"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:298
msgid "Errors encountered, please check the %sREADME%s"
msgstr "Errores encontrados, por favor, compruebe el %sREADME%s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60
msgid "Fail"
msgstr "Fallo"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:248
msgid "Failed to access shared memory"
msgstr "No se pudo acceder a la memoria compartida"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244
msgid "Failed to create '%s' file"
msgstr "No se pudo crear el archivo '%s'"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:266
msgid "Failed to create block-list or restart DNS resolver"
msgstr ""
"No se pudo crear la lista de bloqueo o reiniciar el solucionador de DNS"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257
msgid "Failed to create compressed cache"
msgstr "No se pudo crear la caché comprimida"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:243
msgid "Failed to create directory for %s file"
msgstr "No se pudo crear el directorio para el archivo %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278
msgid "Failed to create output/cache/gzip file directory"
msgstr "No se pudo crear el directorio de archivos de salida/caché/gzip"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:280
msgid "Failed to detect format %s"
msgstr "No se pudo detectar el formato %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:273
msgid "Failed to download %s"
msgstr "No se pudo descargar %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271
msgid "Failed to download Config Update file"
msgstr "No se pudo descargar el archivo de actualización de configuración"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252
msgid "Failed to format data file"
msgstr "No se pudo formatear el archivo de datos"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:261
msgid "Failed to move '%s' to '%s'"
msgstr "No se pudo mover '%s' a '%s'"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254
msgid "Failed to move temporary data file to '%s'"
msgstr "No se pudo mover el archivo de datos temporal a '%s'"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250
msgid "Failed to optimize data file"
msgstr "No se pudo optimizar el archivo de datos"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:275
msgid "Failed to parse %s"
msgstr "No se pudo analizar %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274
msgid "Failed to parse Config Update file"
msgstr "No se pudo analizar el archivo de actualización de configuración"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251
msgid "Failed to process allow-list"
msgstr "No se pudo procesar la lista de permitidos"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269
msgid "Failed to reload/restart DNS resolver"
msgstr "No se pudo recargar/reiniciar el solucionador de DNS"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:259
msgid "Failed to remove temporary files"
msgstr "No se pudieron eliminar archivos temporales"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247
msgid "Failed to restart/reload DNS resolver"
msgstr "No se pudo reiniciar/recargar el solucionador de DNS"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:249
msgid "Failed to sort data file"
msgstr "No se pudo ordenar el archivo de datos"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115
msgid "Failed to start"
msgstr "Fallo al iniciar"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:268
msgid "Failed to stop %s"
msgstr "No se pudo detener %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260
msgid "Failed to unpack compressed cache"
msgstr "No se pudo descomprimir la caché comprimida"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89
msgid "Force DNS Ports"
msgstr "Forzar puertos DNS"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140
msgid "Force DNS ports:"
msgstr "Forzar puertos DNS:"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56
msgid "Force Reloading"
msgstr "Forzar recarga"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:313
msgid "Force Router DNS"
msgstr "Forzar al DNS del enrutador"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:317
msgid "Force Router DNS server to all local devices"
msgstr "Forzar al servidor DNS del enrutador a todos los dispositivos locales"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:346
msgid "Force redownloading %s block lists"
msgstr "Forzar la recarga de %s listas de bloques"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:314
msgid "Forces Router DNS use on local devices, also known as DNS Hijacking."
msgstr ""
"Fuerza el uso de DNS del enrutador en dispositivos locales, también conocido "
"como secuestro de DNS."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285
msgid "Free ram (%s) is not enough to process all enabled block-lists"
msgstr ""
"La ram libre (%s) no es suficiente para procesar todas las listas de bloque "
"habilitadas"
#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3
msgid "Grant UCI and file access for luci-app-adblock-fast"
msgstr "Otorgar acceso a archivos y UCI para luci-app-adblock-fast"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:363
msgid "IPv6 Support"
msgstr "Soporte IPv6"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:390
msgid ""
"If curl is installed and detected, it would not download files bigger than "
"this."
msgstr ""
"Si curl está instalado y detectado, no descargará archivos más grandes que "
"este."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:403
msgid ""
"If curl is installed and detected, it would retry download this many times "
"on timeout/fail."
msgstr ""
"Si curl está instalado y detectado, volvería a intentar descargar esto "
"muchas veces en tiempo de espera/falla."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:474
msgid "Individual domains to be allowed."
msgstr "Dominios individuales que se permitirán."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:482
msgid "Individual domains to be blocked."
msgstr "Dominios individuales para ser bloqueados."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193
msgid "Invalid compressed cache directory '%s'"
msgstr "Directorio de la caché comprimido no válido '%s'"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:337
msgid "LED to indicate status"
msgstr "LED para indicar estado"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:415
msgid ""
"Launch all lists downloads and processing simultaneously, reducing service "
"start time."
msgstr ""
"Inicie todas las descargas y el procesamiento de listas simultáneamente, "
"reduciendo el tiempo de inicio del servicio."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:316
msgid "Let local devices use their own DNS servers if set"
msgstr ""
"Permita que los dispositivos locales usen sus propios servidores DNS si "
"están configurados"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:262
msgid "No AdBlock on SmartDNS"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200
msgid "No AdBlock on dnsmasq"
msgstr "Sin bloqueo de anuncios en dnsmasq"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276
msgid "No HTTPS/SSL support on device"
msgstr "No hay soporte de HTTPS/SSL en el dispositivo"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:282
msgid "No blocked list URLs nor blocked-domains enabled"
msgstr "No hay listas de URL bloqueadas ni dominios bloqueados activados"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174
msgid "Not installed or not found"
msgstr "No instalado o no encontrado"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:324
msgid "Output Verbosity Setting"
msgstr "Configuración de verbosidad de salida"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367
msgid "Pause"
msgstr "Pausa"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:362
msgid "Pausing %s"
msgstr "Pausando %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:353
msgid "Perform config update before downloading the block/allow-lists."
msgstr ""
"Realice la actualización de la configuración antes de descargar las listas "
"de bloqueos/permitidos."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:339
msgid "Pick the LED not already used in %sSystem LED Configuration%s."
msgstr ""
"Elija el LED que ya no se utiliza en %sConfiguración del LED del sistema%s."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:288
msgid "Pick the SmartDNS instance(s) for AdBlocking"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:227
msgid "Pick the dnsmasq instance(s) for AdBlocking"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:73
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:78
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:83
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:88
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:95
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:102
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:111
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:118
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:125
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:134
msgid "Please note that %s is not supported on this system."
msgstr "Tenga en cuenta que %s no es compatible con este sistema."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54
msgid "Processing lists"
msgstr "Procesando listas"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:352
msgid "Redownload"
msgstr "Volver a descargar"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55
msgid "Restarting"
msgstr "Reiniciando"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:465
msgid "Service Control"
msgstr "Control de servicio"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:291
msgid "Service Errors"
msgstr "Errores de servicio"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123
msgid "Service Status"
msgstr "Estado del servicio"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200
msgid "Service Warnings"
msgstr "Advertencias de servicio"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:413
msgid "Simultaneous processing"
msgstr "Procesamiento simultáneo"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:497
msgid "Size"
msgstr "Tamaño"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:507
msgid "Size: %s"
msgstr "Tamaño: %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:328
msgid "Some output"
msgstr "Alguna salida"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190
msgid "Some recommended packages are missing"
msgstr "Faltan algunos paquetes recomendados"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:333
msgid "Start"
msgstr "Iniciar"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53
msgid "Starting"
msgstr "Iniciando"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:327
msgid "Starting %s service"
msgstr "Iniciando el servicio %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84
msgid "Status"
msgstr "Estado"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:386
msgid "Stop"
msgstr "Detener"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:379
msgid "Stop the download if it is stalled for set number of seconds."
msgstr ""
"Detenga la descarga si está detenida durante un número determinado de "
"segundos."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52
msgid "Stopped"
msgstr "Detenido"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:380
msgid "Stopping %s service"
msgstr "Deteniendo el servicio %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:432
msgid "Store compressed cache"
msgstr "Almacenar caché comprimido"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:426
msgid "Store compressed cache file on router"
msgstr "Almacene el archivo de caché comprimido en el enrutador"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:327
msgid "Suppress output"
msgstr "Suprimir salida"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241
msgid "The %s failed to discover WAN gateway"
msgstr "El %s no pudo descubrir la puerta de enlace WAN"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:229
msgid ""
"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or "
"installed dnsmasq does not support ipset"
msgstr ""
"La compatibilidad con ipset de dnsmasq está habilitada, pero dnsmasq no está "
"instalado o el instalado no es compatible con ipset"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232
msgid ""
"The dnsmasq ipset support is enabled, but ipset is either not installed or "
"installed ipset does not support '%s' type"
msgstr ""
"La compatibilidad con ipset de dnsmasq está habilitada, pero ipset no está "
"instalado o el instalado no admite el tipo '%s'"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235
msgid ""
"The dnsmasq nft set support is enabled, but dnsmasq is either not installed "
"or installed dnsmasq does not support nft set"
msgstr ""
"El soporte dnsmasq nft set está habilitado, pero dnsmasq no está instalado o "
"dnsmasq instalado no soporta nft set"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238
msgid "The dnsmasq nft sets support is enabled, but nft is not installed"
msgstr ""
"La compatibilidad con nft sets de dnsmasq está habilitada, pero nft no está "
"instalado"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:523
msgid "URL"
msgstr "URL"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:177
msgid ""
"URL to the external dnsmasq config file, see the %sREADME%s for details."
msgstr ""
"URL del archivo de configuración de dnsmasq externo, consulte %sREADME%s "
"para obtener más información."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:490
msgid "URLs to file(s) containing lists to be allowed or blocked."
msgstr ""
"Dirección URL a el(los) archivo(s) que contiene(n) la(s) listas que deben "
"permitirse o bloquearse."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:501
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95
msgid "Unknown"
msgstr "Desconocido"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:252
msgid "Use AdBlocking on the SmartDNS instance(s)"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:190
msgid "Use AdBlocking on the dnsmasq instance(s)"
msgstr "Usar AdBlocking en la(s) instancia(s) dnsmasq"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187
msgid ""
"Use of external dnsmasq config file detected, please set '%s' option to '%s'"
msgstr ""
"Se detectó el uso de un archivo de configuración dnsmasq externo; configure "
"la opción '%s' en '%s'"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:419
msgid "Use simultaneous processing"
msgstr "Usar procesamiento simultáneo"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329
msgid "Verbose output"
msgstr "Salida detallada"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85
msgid "Version"
msgstr "Versión"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126
msgid "Version %s"
msgstr "Versión %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59
msgid "Warning"
msgstr "Advertencia"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:254
msgid ""
"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore "
"information%s)."
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:192
msgid ""
"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore "
"information%s)."
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:147
msgid "dnsmasq additional hosts"
msgstr "hosts dnsmasq adicionales"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148
msgid "dnsmasq config"
msgstr "configuración de dnsmasq"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:150
msgid "dnsmasq ipset"
msgstr "dnsmasq ipset"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:153
msgid "dnsmasq nft set"
msgstr "conjunto nft dnsmasq"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:155
msgid "dnsmasq servers file"
msgstr "archivo de servidores de dnsmasq"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342
msgid "none"
msgstr "ninguno"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:158
msgid "smartdns domain set"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:160
msgid "smartdns ipset"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:163
msgid "smartdns nft set"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:167
msgid "unbound adblock list"
msgstr "lista de bloqueadores de anuncios sin vincular"
#~ msgid "AdBlock on %s only"
#~ msgstr "Bloqueo de anuncios solo en %s"
#~ msgid ""
#~ "You can limit the AdBlocking to a specific dnsmasq instance(s) (%smore "
#~ "information%s)."
#~ msgstr ""
#~ "Puede limitar el bloqueo de anuncios a una instancia específica de "
#~ "dnsmasq (%smore information%s)."
#~ msgid "Force Re-Download"
#~ msgstr "Forzar re-descarga"
#~ msgid "Force re-downloading %s block lists"
#~ msgstr "Forzar la descarga de %s listas de bloqueo"
#~ msgid "Errors encountered, please check the %sREADME%s!"
#~ msgstr "Se encontraron errores, ¡verifique el %sREADME%s!"
#~ msgid "Failed to parse"
#~ msgstr "No se pudo analizar"
#~ msgid "Allowed Domain URLs"
#~ msgstr "URLs de dominio permitidas"
#~ msgid "Allowed and Blocked Lists Management"
#~ msgstr "Gestión de listas permitidas y bloqueadas"
#~ msgid "Blocked AdBlockPlus-style URLs"
#~ msgstr "Direcciones URL bloqueadas del estilo de AdBlockPlus"
#~ msgid "Blocked Domain URLs"
#~ msgstr "URLs de dominio bloqueadas"
#~ msgid "Blocked Hosts URLs"
#~ msgstr "URLs de hosts bloqueadas"
#~ msgid "Enables debug output to /tmp/simple-adblock.log."
#~ msgstr "Activa la salida de depuración a /tmp/simple-adblock.log."
#~ msgid "Grant UCI and file access for luci-app-simple-adblock"
#~ msgstr "Conceder acceso UCI y a archivos para luci-app-simple-adblock"
#~ msgid "Simple AdBlock"
#~ msgstr "AdBlock simple"
#~ msgid "Simple AdBlock - Configuration"
#~ msgstr "AdBlock simple - Configuración"
#~ msgid "Simple AdBlock - Status"
#~ msgstr "AdBlock simple - Estado"
#~ msgid "URLs to lists of AdBlockPlus-style formatted domains to be blocked."
#~ msgstr ""
#~ "Direcciones URL a las listas de los dominios con un formato al estilo de "
#~ "AdBlockPlus que deben bloquearse."
#~ msgid "URLs to lists of domains to be allowed."
#~ msgstr "URLs a listas de dominios que se permitirán."
#~ msgid "URLs to lists of domains to be blocked."
#~ msgstr "URLs a listas de dominios a bloquear."
#~ msgid "URLs to lists of hosts to be blocked."
#~ msgstr "URLs a listas de hosts a bloquear."
#~ msgid "config (%s) validation failure!"
#~ msgstr "¡Error de validación de configuración (%s)!"
#~ msgid "disabled"
#~ msgstr "desactivado"
#~ msgid ""
#~ "dnsmasq ipset support is enabled, but dnsmasq is either not installed or "
#~ "installed dnsmasq does not support ipset"
#~ msgstr ""
#~ "La compatibilidad con ipset de dnsmasq está activada, pero dnsmasq no "
#~ "está instalado o el instalado no admite ipset"
#~ msgid ""
#~ "dnsmasq ipset support is enabled, but ipset is either not installed or "
#~ "installed ipset does not support '%s' type"
#~ msgstr ""
#~ "La compatibilidad con dnsmasq ipset está activada, pero ipset no está "
#~ "instalado o el ipset instalado no admite el tipo '%s'"
#~ msgid ""
#~ "dnsmasq nft set support is enabled, but dnsmasq is either not installed "
#~ "or installed dnsmasq does not support nft set"
#~ msgstr ""
#~ "La compatibilidad con nft set de dnsmasq está activada, pero dnsmasq no "
#~ "está instalado o el instalado no es compatible con nft set"
#~ msgid "dnsmasq nft sets support is enabled, but nft is not installed"
#~ msgstr ""
#~ "La compatibilidad con dnsmasq nft sets está activada, pero nft no está "
#~ "instalado"
#~ msgid "failed to access shared memory"
#~ msgstr "no se pudo acceder a la memoria compartida"
#~ msgid "failed to create '%s' file"
#~ msgstr "no se pudo crear el archivo '%s'"
#~ msgid "failed to create block-list or restart DNS resolver"
#~ msgstr ""
#~ "no se pudo crear la lista de bloqueo o reiniciar el solucionador de DNS"
#~ msgid "failed to create compressed cache"
#~ msgstr "error al crear caché comprimido"
#~ msgid "failed to create directory for %s file"
#~ msgstr "no se pudo crear el directorio para el archivo %s"
#~ msgid "failed to create output/cache/gzip file directory"
#~ msgstr "no se pudo crear el directorio de archivos de salida/caché/gzip"
#~ msgid "failed to download"
#~ msgstr "error al descargar"
#~ msgid "failed to download Config Update file"
#~ msgstr "no se pudo descargar el archivo de actualización de configuración"
#~ msgid "failed to format data file"
#~ msgstr "error al formatear el archivo de datos"
#~ msgid "failed to move '%s' to '%s'"
#~ msgstr "no se pudo mover '%s' a '%s'"
#~ msgid "failed to move temporary data file to '%s'"
#~ msgstr "no se pudo mover el archivo de datos temporales a '%s'"
#~ msgid "failed to optimize data file"
#~ msgstr "no se pudo optimizar el archivo de datos"
#~ msgid "failed to parse"
#~ msgstr "no se pudo analizar"
#~ msgid "failed to parse Config Update file"
#~ msgstr "no se pudo analizar el archivo de actualización de configuración"
#~ msgid "failed to process allow-list"
#~ msgstr "no se pudo procesar la lista de permitidos"
#~ msgid "failed to reload/restart DNS resolver"
#~ msgstr "error al recargar/reiniciar el solucionador DNS"
#~ msgid "failed to remove temporary files"
#~ msgstr "error al eliminar los archivos temporales"
#~ msgid "failed to restart/reload DNS resolver"
#~ msgstr "error al reiniciar/recargar el solucionador DNS"
#~ msgid "failed to sort data file"
#~ msgstr "error al ordenar el archivo de datos"
#~ msgid "failed to stop %s"
#~ msgstr "no se pudo detener %s"
#~ msgid "failed to unpack compressed cache"
#~ msgstr "no se pudo descomprimir el caché comprimido"
#~ msgid "no HTTPS/SSL support on device"
#~ msgstr "sin soporte HTTPS/SSL en el dispositivo"
#~ msgid "some recommended packages are missing"
#~ msgstr "faltan algunos paquetes recomendados"
#~ msgid "the %s failed to discover WAN gateway"
#~ msgstr "%s no pudo descubrir la puerta de enlace WAN"
#~ msgid ""
#~ "use of external dnsmasq config file detected, please set '%s' option to "
#~ "'%s'"
#~ msgstr ""
#~ "se detectó el uso de un archivo de configuración dnsmasq externo, "
#~ "establezca la opción '%s' en '%s'"
#~ msgid "Version: %s"
#~ msgstr "Versión: %s"
#~ msgid "The %s service failed to discover WAN gateway!"
#~ msgstr "¡El servicio %s no pudo descubrir la puerta de enlace WAN!"
#~ msgid "Unable to create directory for '%s'"
#~ msgstr "No se puede crear el directorio para '%s'"
#~ msgid "Downloading"
#~ msgstr "Descargando"
#~ msgid "%s Error: %s"
#~ msgstr "%s Error: %s"
#~ msgid "%s Error: %s %s"
#~ msgstr "%s Error: %s %s"
#~ msgid "Cache file containing %s domains found."
#~ msgstr "Archivo de caché que contiene %s dominios encontrados."
#~ msgid "Collected Errors"
#~ msgstr "Errores recopilados"
#~ msgid "Configuration"
#~ msgstr "Configuración"
#~ msgid "DNSMASQ Additional Hosts"
#~ msgstr "Hosts adicionales de DNSMASQ"
#~ msgid "DNSMASQ Config"
#~ msgstr "Config de DNSMASQ"
#~ msgid "DNSMASQ Servers File"
#~ msgstr "Archivo de servidores DNSMASQ"
#~ msgid "Delay (in seconds) for on-boot start"
#~ msgstr "Retardo (en segundos) para el inicio en el arranque"
#~ msgid "Info"
#~ msgstr "Info"
#~ msgid "Loading"
#~ msgstr "Cargando"
#~ msgid "Message"
#~ msgstr "Mensaje"
#~ msgid ""
#~ "Pick the DNS resolution option to create the adblock list for, see the "
#~ "%sREADME%s for details."
#~ msgstr ""
#~ "Elija la opción de resolución DNS para la que crear la lista de bloqueos "
#~ "de anuncios; consulte %sREADME%s para obtener más detalles."
#~ msgid "Run service after set delay on boot."
#~ msgstr ""
#~ "Ejecute el servicio después de la demora establecida en el arranque."
#~ msgid "Service Status [%s %s]"
#~ msgstr "Estado del servicio [%s %s]"
#~ msgid "Simple AdBlock Settings"
#~ msgstr "Configuración de Simple AdBlock"
#~ msgid "Success"
#~ msgstr "Éxito"
#~ msgid "Task"
#~ msgstr "Tarea"
#~ msgid "Unbound AdBlock List"
#~ msgstr "Lista de AdBlock Unbound"
#~ msgid "DNSMASQ IP Set"
#~ msgstr "Conjunto de IPs de DNSMASQ"
#, fuzzy
#~ msgid "DNSMASQ NFT Set"
#~ msgstr "Conjunto DNSMASQ NFT"
#~ msgid "%s is blocking %s domains (with %s)."
#~ msgstr "%s está bloqueando %s dominios (con %s)."
#~ msgid ""
#~ "Pick the DNS resolution option to create the adblock list for, see the <a "
#~ "href=\"%s#dns-resolution-option\" target=\"_blank\">README</a> for "
#~ "details."
#~ msgstr ""
#~ "Elija la opción de resolución DNS para crear la lista de bloqueos de "
#~ "anuncios, consulte <a href=\"%s#dns-resolution-option\" "
#~ "target=\"_blank\">LÉEME</a> para obtener más información."
#~ msgid "Blacklisted Domain URLs"
#~ msgstr "URLs de dominio en lista negra"
#~ msgid "Blacklisted Domains"
#~ msgstr "Dominios en la lista negra"
#~ msgid "Blacklisted Hosts URLs"
#~ msgstr "URLs de hosts en lista negra"
#~ msgid "Individual domains to be blacklisted."
#~ msgstr "Dominios individuales para ser incluidos en la lista negra."
#~ msgid "Individual domains to be whitelisted."
#~ msgstr "Dominios individuales para ser incluidos en la lista blanca."
#~ msgid "URLs to lists of domains to be blacklisted."
#~ msgstr "URL a listas de dominios que se incluirán en la lista negra."
#~ msgid "URLs to lists of domains to be whitelisted."
#~ msgstr "URL a listas de dominios que se incluirán en la lista blanca."
#~ msgid "URLs to lists of hosts to be blacklisted."
#~ msgstr "URL a listas de hosts que se incluirán en la lista negra."
#~ msgid "Whitelist and Blocklist Management"
#~ msgstr "Gestión de listas blancas y listas de bloqueo"
#~ msgid "Whitelisted Domain URLs"
#~ msgstr "URLs de dominio en lista blanca"
#~ msgid "Whitelisted Domains"
#~ msgstr "Dominios en lista blanca"
#~ msgid "failed to create blocklist or restart DNS resolver"
#~ msgstr "no se pudo crear una lista de bloqueo o reiniciar el DNS resolver"
#~ msgid "failed to process whitelist"
#~ msgstr "no se pudo procesar la lista blanca"
#~ msgid "Grant UCI access for luci-app-simple-adblock"
#~ msgstr "Conceder acceso UCI para luci-app-simple-adblock"
#~ msgid "Service Status [%s]"
#~ msgstr "Estado del servicio [%s]"
#~ msgid "Cache file containing"
#~ msgstr "Archivo de caché que contiene"
#~ msgid "Compressed cache file found"
#~ msgstr "Archivo de caché comprimido encontrado"
#~ msgid ""
#~ "Pick the DNS resolution option to create the adblock list for, see the"
#~ msgstr ""
#~ "Elija la opción de resolución DNS para crear la lista de bloqueos de "
#~ "anuncios, consulte el"
#~ msgid "Pick the LED not already used in"
#~ msgstr "Elija el LED que aún no se utiliza en"
#~ msgid "Please note that"
#~ msgstr "Tenga en cuenta que"
#~ msgid "README"
#~ msgstr "LÉEME"
#~ msgid "System LED Configuration"
#~ msgstr "Configuración del sistema LED"
#~ msgid "domains"
#~ msgstr "dominios"
#~ msgid "domains found"
#~ msgstr "dominios encontrados"
#~ msgid "failed to create"
#~ msgstr "fallo al crear"
#~ msgid "failed to move"
#~ msgstr "error al mover"
#~ msgid "failed to move temporary data file to"
#~ msgstr "no se pudo mover el archivo de datos temporal a"
#~ msgid "failed to stop"
#~ msgstr "error al detener"
#~ msgid "file"
#~ msgstr "archivo"
#~ msgid "for details."
#~ msgstr "para detalles."
#~ msgid "is blocking"
#~ msgstr "está bloqueando"
#~ msgid "is not installed or not found"
#~ msgstr "no está instalado o no se encuentra"
#~ msgid "is not supported on this system."
#~ msgstr "no es compatible con este sistema."
#~ msgid "to"
#~ msgstr "a"
#~ msgid "with"
#~ msgstr "con"
#~ msgid "Enable/Start"
#~ msgstr "Activar/Iniciar"
#~ msgid "Reload"
#~ msgstr "Recargar"
#~ msgid "Service is disabled/stopped"
#~ msgstr "El servicio está desactivado/detenido"
#~ msgid "Service is enabled/started"
#~ msgstr "El servicio está activado/iniciado"
#~ msgid "Service started with error"
#~ msgstr "Servicio iniciado con error"
#~ msgid "Stop/Disable"
#~ msgstr "Detener/Desactivar"
#~ msgid "Allow Non-ASCII"
#~ msgstr "Permitir no ASCII"
#~ msgid "Allow Non-ASCII characters in DNSMASQ file"
#~ msgstr "Permitir caracteres no ASCII en el archivo DNSMASQ"
#~ msgid "Do not allow Non-ASCII"
#~ msgstr "No permitir no ASCII"
#~ msgid ""
#~ "Only enable if your version of DNSMASQ supports the use of Non-ASCII "
#~ "characters, otherwise DNSMASQ will fail to start."
#~ msgstr ""
#~ "Solo habilítelo si su versión de DNSMASQ admite el uso de caracteres no "
#~ "ASCII; de lo contrario, DNSMASQ no se iniciará."
#~ msgid "Controls system log and console output verbosity"
#~ msgstr "Controla el registro del sistema y la salida de consola."
#~ msgid "Forces Router DNS use on local devices, also known as DNS Hijacking"
#~ msgstr ""
#~ "Forza el uso del DNS del enrutador en dispositivos locales, también "
#~ "conocido como Secuestro de DNS"
#~ msgid "Individual domains to be blacklisted"
#~ msgstr "Dominios individuales para ser incluidos en la lista negra"
#~ msgid "Individual domains to be whitelisted"
#~ msgstr "Dominios individuales para ser incluidos en la lista blanca"
#~ msgid "Start Simple Adblock service"
#~ msgstr "Iniciar el servicio Simple Adblock"
#~ msgid "URLs to lists of domains to be blacklisted"
#~ msgstr "URL a listas de dominios que se incluirán en la lista negra"
#~ msgid "URLs to lists of domains to be whitelisted"
#~ msgstr "URL a listas de dominios que se incluirán en la lista blanca"
#~ msgid "URLs to lists of hosts to be blacklisted"
#~ msgstr "URL a listas de hosts para ser incluidos en la lista negra"
#~ msgid ""
#~ "Attempt to create a compressed cache of final block-list on the router."
#~ msgstr ""
#~ "Intente crear un caché comprimido de la lista de bloqueo final en el "
#~ "enrutador."
#~ msgid "Enables debug output to /tmp/simple-adblock.log"
#~ msgstr "Habilitar la salida de depuración a /tmp/simple-adblock.log"
#~ msgid ""
#~ "Launch all lists downloads and processing simultaneously, reducing "
#~ "service start time"
#~ msgstr ""
#~ "Inicie todas las descargas y el procesamiento de listas simultáneamente, "
#~ "reduciendo el tiempo de inicio del servicio"
#~ msgid "Run service after set delay on boot"
#~ msgstr ""
#~ "Ejecutar el servicio después de establecer el retraso en el arranque"
#~ msgid "Stop the download if it is stalled for set number of seconds"
#~ msgstr ""
#~ "Detenga la descarga si se detiene durante un número de segundos "
#~ "establecido"
|