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
|
msgid ""
msgstr ""
"PO-Revision-Date: 2023-08-14 17:53+0000\n"
"Last-Translator: ssantos <ssantos@web.de>\n"
"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssimple-adblock/pt/>\n"
"Language: pt\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.0-dev\n"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:223
msgid "%s is currently disabled"
msgstr "%s está desativado no momento"
#: 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 não está instalado ou não foi encontrado"
#: 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:398
msgid "Action"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:118
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61
msgid "Active"
msgstr "Ativo"
#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3
msgid "AdBlock Fast"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:185
msgid "AdBlock on %s only"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156
msgid "AdBlock on all instances"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22
msgid "AdBlock-Fast"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:349
msgid "AdBlock-Fast - Allowed and Blocked Domains"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:373
msgid "AdBlock-Fast - Allowed and Blocked Lists URLs"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:50
msgid "AdBlock-Fast - Configuration"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:121
msgid "AdBlock-Fast - Status"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:251
msgid "Add IPv6 entries"
msgstr "Adicionar entradas IPv6"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:248
msgid "Add IPv6 entries to block-list."
msgstr "Adicionar entradas IPv6 à lista de blocos."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:53
msgid "Advanced Configuration"
msgstr "Configurações Avançadas"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:399
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:404
msgid "Allow"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357
msgid "Allowed Domains"
msgstr "Domínios Permitidos"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:312
msgid ""
"Attempt to create a compressed cache of block-list in the persistent memory."
msgstr ""
"Tentativa de criar um cache comprimido de lista de blocos na memória "
"persistente."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:236
msgid "Automatic Config Update"
msgstr "Atualização da configuração automática"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:52
msgid "Basic Configuration"
msgstr "Configurações Básicas"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:400
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:404
msgid "Block"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:365
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87
msgid "Blocked Domains"
msgstr "Domínios Bloqueados"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:134
msgid "Blocking %s domains (with %s)."
msgstr "Bloqueio de %s domínios (com %s)."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88
msgid "Cache"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66
msgid "Cache file"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160
msgid "Cache file found."
msgstr "Ficheiro de cache encontrado."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68
msgid "Compressed cache"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:139
msgid "Compressed cache file created."
msgstr "Ficheiro de cache comprimida criado."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:162
msgid "Compressed cache file found."
msgstr "Ficheiro de cache comprimido encontrado."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:221
msgid "Config (%s) validation failure!"
msgstr "Houve uma falha na validação da configuração (%s)!"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:209
msgid "Controls system log and console output verbosity."
msgstr "Controla o log do sistema e a verbosidade da saída do console."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:285
msgid "Curl download retry"
msgstr "Repetir descarregamento do Curl"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:272
msgid "Curl maximum file size (in bytes)"
msgstr "Tamanho máximo do ficheiro curl (em bytes)"
#: 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/status/include/70_adblock-fast.js:86
msgid "DNS Service"
msgstr "Serviço DNS"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:56
msgid "DNS resolution option, see the %sREADME%s for details."
msgstr "Opção de resolução de DNS, consulte %sREADME%s para obter detalhes."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:323
msgid "Directory for compressed cache file"
msgstr "Diretório para arquivo de cache compactado"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:325
msgid ""
"Directory for compressed cache file of block-list in the persistent memory."
msgstr ""
"Diretório para o arquivo de cache compactado da lista de bloqueio na memória "
"persistente."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:419
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:239
msgid "Disable"
msgstr "Desativar"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:341
msgid "Disable Debugging"
msgstr "Desativar Depuração"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:156
msgid "Disabled"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:413
msgid "Disabling %s service"
msgstr "Desativando o serviço %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:134
msgid "Dnsmasq Config File URL"
msgstr "URL do ficheiro de configuração do dnsmasq"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:250
msgid "Do not add IPv6 entries"
msgstr "Não adicionar entradas de IPv6"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:315
msgid "Do not store compressed cache"
msgstr "Não armazenar cache comprimido"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:302
msgid "Do not use simultaneous processing"
msgstr "Não utilizar processamento simultâneo"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:262
msgid "Download time-out (in seconds)"
msgstr "Tempo limite ao descarregar (em 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 "A descarregar listas"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:400
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:240
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:394
msgid "Enable"
msgstr "Ativar"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:338
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342
msgid "Enable Debugging"
msgstr "Ativar Depuração"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:339
msgid "Enables debug output to /tmp/adblock-fast.log."
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:394
msgid "Enabling %s service"
msgstr "Ativando o serviço %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58
msgid "Error"
msgstr "Erro"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:293
msgid "Errors encountered, please check the %sREADME%s"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:117
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60
msgid "Fail"
msgstr "Falha"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246
msgid "Failed to access shared memory"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:242
msgid "Failed to create '%s' file"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264
msgid "Failed to create block-list or restart DNS resolver"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255
msgid "Failed to create compressed cache"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241
msgid "Failed to create directory for %s file"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276
msgid "Failed to create output/cache/gzip file directory"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278
msgid "Failed to detect format %s"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271
msgid "Failed to download %s"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269
msgid "Failed to download Config Update file"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250
msgid "Failed to format data file"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:259
msgid "Failed to move '%s' to '%s'"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252
msgid "Failed to move temporary data file to '%s'"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:248
msgid "Failed to optimize data file"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:273
msgid "Failed to parse %s"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272
msgid "Failed to parse Config Update file"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:249
msgid "Failed to process allow-list"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:267
msgid "Failed to reload/restart DNS resolver"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257
msgid "Failed to remove temporary files"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:245
msgid "Failed to restart/reload DNS resolver"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247
msgid "Failed to sort data file"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:266
msgid "Failed to stop %s"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:258
msgid "Failed to unpack compressed cache"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89
msgid "Force DNS Ports"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:142
msgid "Force DNS ports:"
msgstr "Forçar portas 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 "Forçar recarregamento"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:197
msgid "Force Router DNS"
msgstr "Forçar o DNS do Roteador"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201
msgid "Force Router DNS server to all local devices"
msgstr "Forçar o servidor de DNS do Roteador para todos os aparelhos locais"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:341
msgid "Force redownloading %s block lists"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:198
msgid "Forces Router DNS use on local devices, also known as DNS Hijacking."
msgstr ""
"Força o uso do DNS do Router em aparelhos locais, também conhecido como DNS "
"Hijacking."
#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3
msgid "Grant UCI and file access for luci-app-adblock-fast"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:247
msgid "IPv6 Support"
msgstr "Suporte de IPv6"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:274
msgid ""
"If curl is installed and detected, it would not download files bigger than "
"this."
msgstr ""
"Se o curl estiver instalado e for detetado, não serão transferidos ficheiros "
"maiores que isto."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:287
msgid ""
"If curl is installed and detected, it would retry download this many times "
"on timeout/fail."
msgstr ""
"Se o curl for instalado e detetado, ele tentaria descarrega-lo muitas vezes "
"se atingir limite de tempo/falhar."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358
msgid "Individual domains to be allowed."
msgstr "Domínios individuais a serem permitidos."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:366
msgid "Individual domains to be blocked."
msgstr "Domínios individuais a serem bloqueados."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:221
msgid "LED to indicate status"
msgstr "LED para indicar o estado"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:299
msgid ""
"Launch all lists downloads and processing simultaneously, reducing service "
"start time."
msgstr ""
"Iniciar todos os descarregamentos e processamento de listas simultaneamente, "
"reduzindo a hora de início do serviço."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200
msgid "Let local devices use their own DNS servers if set"
msgstr ""
"Deixar aparelhos locais usar os próprios servidores de DNS deles, se forem "
"definidos"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:187
msgid "No AdBlock on dnsmasq"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274
msgid "No HTTPS/SSL support on device"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:280
msgid "No blocked list URLs nor blocked-domains enabled"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:176
msgid "Not installed or not found"
msgstr "Não está instalado ou não foi encontrado"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:208
msgid "Output Verbosity Setting"
msgstr "Definição do detalhamento do registro"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:362
msgid "Pause"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357
msgid "Pausing %s"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:237
msgid "Perform config update before downloading the block/allow-lists."
msgstr ""
"Execute a atualização da configuração antes de descarregar as listas de "
"bloqueio/permissão."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:223
msgid "Pick the LED not already used in %sSystem LED Configuration%s."
msgstr ""
"Escolha o LED ainda não utilizado em %sConfiguração dos LED do sistema%s."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:64
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:69
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:86
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:93
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:102
msgid "Please note that %s is not supported on this system."
msgstr "Por favor, note que %s não é suportado neste 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 "Processamento de listas"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:347
msgid "Redownload"
msgstr ""
#: 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:460
msgid "Service Control"
msgstr "Controle de serviços"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:286
msgid "Service Errors"
msgstr "Erros de Serviço"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:125
msgid "Service Status"
msgstr "Estado do Serviço"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:198
msgid "Service Warnings"
msgstr "Avisos de Serviço"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:297
msgid "Simultaneous processing"
msgstr "Processamento simultâneo"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:381
msgid "Size"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:391
msgid "Size: %s"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:212
msgid "Some output"
msgstr "Pouco detalhado"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:192
msgid "Some recommended packages are missing"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:328
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:322
msgid "Starting %s service"
msgstr "Iniciando o serviço %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84
msgid "Status"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:381
msgid "Stop"
msgstr "Parar"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263
msgid "Stop the download if it is stalled for set number of seconds."
msgstr ""
"Parar o descarregamento se ele for interrompido por uma quantidade de "
"segundos definida."
#: 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 "Parado"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:375
msgid "Stopping %s service"
msgstr "Parando o serviço %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:316
msgid "Store compressed cache"
msgstr "Armazenar cache comprimido"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:310
msgid "Store compressed cache file on router"
msgstr "Armazenar ficheiro de cache comprimido no roteador"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:211
msgid "Suppress output"
msgstr "Suprimir"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:239
msgid "The %s failed to discover WAN gateway"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:227
msgid ""
"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or "
"installed dnsmasq does not support ipset"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:230
msgid ""
"The dnsmasq ipset support is enabled, but ipset is either not installed or "
"installed ipset does not support '%s' type"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:233
msgid ""
"The dnsmasq nft set support is enabled, but dnsmasq is either not installed "
"or installed dnsmasq does not support nft set"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:236
msgid "The dnsmasq nft sets support is enabled, but nft is not installed"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:407
msgid "URL"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:136
msgid ""
"URL to the external dnsmasq config file, see the %sREADME%s for details."
msgstr ""
"URL para o ficheiro de configuração dnsmasq externo, consulte %sREADME%s "
"para obter detalhes."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:374
msgid "URLs to file(s) containing lists to be allowed or blocked."
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:385
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95
msgid "Unknown"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148
msgid "Use AdBlocking on the dnsmasq instance(s)"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:189
msgid ""
"Use of external dnsmasq config file detected, please set '%s' option to '%s'"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:303
msgid "Use simultaneous processing"
msgstr "Utilizar processamento simultâneo"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:213
msgid "Verbose output"
msgstr "Detalhado"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85
msgid "Version"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:128
msgid "Version %s"
msgstr "Versão %s"
#: 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:59
msgid "Warning"
msgstr "Aviso"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:150
msgid ""
"You can limit the AdBlocking to a specific dnsmasq instance(s) (%smore "
"information%s)."
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:115
msgid "dnsmasq additional hosts"
msgstr "Hosts adicionais dnsmasq"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:116
msgid "dnsmasq config"
msgstr "Configuração do dnsmasq"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:118
msgid "dnsmasq ipset"
msgstr "dnsmasq ipset"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:121
msgid "dnsmasq nft set"
msgstr "dnsmasq nft set"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:123
msgid "dnsmasq servers file"
msgstr "Ficheiro de servidores dnsmasq"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:226
msgid "none"
msgstr "nenhum"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126
msgid "unbound adblock list"
msgstr "lista de bloqueio de anúncios do unbound"
#~ msgid "Force Re-Download"
#~ msgstr "Forçar a Re-Descarrega"
#~ msgid "Force re-downloading %s block lists"
#~ msgstr "Forçar a transferência de listas de bloqueio %s novamente"
#~ msgid "Allowed Domain URLs"
#~ msgstr "URLs de Domínios Permitidos"
#~ msgid "Allowed and Blocked Lists Management"
#~ msgstr "Gestão de Listas dos Permitidos e Bloqueados"
#~ msgid "Blocked AdBlockPlus-style URLs"
#~ msgstr "URLs estilo AdBlockPlus bloqueados"
#~ msgid "Blocked Domain URLs"
#~ msgstr "URLs de Domínios Bloqueados"
#~ msgid "Blocked Hosts URLs"
#~ msgstr "URLs de Hosts Bloqueados"
#~ msgid "Enables debug output to /tmp/simple-adblock.log."
#~ msgstr "Ativa a saída de depuração para /tmp/simple-adblock.log."
#~ msgid "Grant UCI and file access for luci-app-simple-adblock"
#~ msgstr "Conceder acesso a UCI e a ficheiros para luci-app-simple-adblock"
#~ msgid "Simple AdBlock"
#~ msgstr "AdBlock simples"
#~ msgid "Simple AdBlock - Configuration"
#~ msgstr "Simple AdBlock - Configuração"
#~ msgid "Simple AdBlock - Status"
#~ msgstr "Simple AdBlock - Estado"
#~ msgid "URLs to lists of AdBlockPlus-style formatted domains to be blocked."
#~ msgstr ""
#~ "URLs para listas de domínios a serem bloqueados formatados no estilo de "
#~ "AdBlockPlus."
#~ msgid "URLs to lists of domains to be allowed."
#~ msgstr "URLs para listas de domínios a serem permitidos."
#~ msgid "URLs to lists of domains to be blocked."
#~ msgstr "URLs para listas de domínios a serem bloqueados."
#~ msgid "URLs to lists of hosts to be blocked."
#~ msgstr "URLs para listas de hosts a serem bloqueados."
#~ msgid "config (%s) validation failure!"
#~ msgstr "falha na validação da configuração (%s)!"
#~ msgid "disabled"
#~ msgstr "desativado"
#~ msgid ""
#~ "dnsmasq ipset support is enabled, but dnsmasq is either not installed or "
#~ "installed dnsmasq does not support ipset"
#~ msgstr ""
#~ "O suporte para ipset dnsmasq está ativado, mas o dnsmasq não está "
#~ "instalado ou o dnsmasq não suporta ipset"
#~ msgid ""
#~ "dnsmasq ipset support is enabled, but ipset is either not installed or "
#~ "installed ipset does not support '%s' type"
#~ msgstr ""
#~ "O suporte para dnsmasq ipset está ativado, mas o ipset não está instalado "
#~ "ou o ipset instalado não suporta o tipo '%s'"
#~ msgid ""
#~ "dnsmasq nft set support is enabled, but dnsmasq is either not installed "
#~ "or installed dnsmasq does not support nft set"
#~ msgstr ""
#~ "O suporte para dnsmasq nft set está ativado, mas o dnsmasq não está "
#~ "instalado ou o dnsmasq não suporta nft set"
#~ msgid "dnsmasq nft sets support is enabled, but nft is not installed"
#~ msgstr ""
#~ "O suporte para dnsmasq nft sets está ativado, mas o nft não está instalado"
#~ msgid "failed to access shared memory"
#~ msgstr "falha ao acessar a memória compartilhada"
#~ msgid "failed to create '%s' file"
#~ msgstr "falha ao criar o ficheiro '%s'"
#~ msgid "failed to create block-list or restart DNS resolver"
#~ msgstr "falha ao criar a lista de bloqueio ou reiniciar o resolvedor de DNS"
#~ msgid "failed to create compressed cache"
#~ msgstr "falha ao criar cache comprimido"
#~ msgid "failed to create directory for %s file"
#~ msgstr "falha ao criar o diretório para o ficheiro %s"
#~ msgid "failed to create output/cache/gzip file directory"
#~ msgstr "falha ao criar diretório de ficheiros de saída/cache/gzip"
#~ msgid "failed to download"
#~ msgstr "falha ao descarregar"
#~ msgid "failed to download Config Update file"
#~ msgstr "falha ao descarregar o ficheiro de atualização de configuração"
#~ msgid "failed to format data file"
#~ msgstr "falha ao formatar o ficheiro de dados"
#~ msgid "failed to move '%s' to '%s'"
#~ msgstr "falha ao mover '%s' para '%s'"
#~ msgid "failed to move temporary data file to '%s'"
#~ msgstr "falha ao mover o ficheiro de dados temporário para '%s'"
#~ msgid "failed to optimize data file"
#~ msgstr "falha ao otimizar o ficheiro de dados"
#~ msgid "failed to parse"
#~ msgstr "falha ao analisar"
#~ msgid "failed to parse Config Update file"
#~ msgstr "falha ao analisar o ficheiro de atualização de configuração"
#~ msgid "failed to process allow-list"
#~ msgstr "falha ao processar a lista de permitidos"
#~ msgid "failed to reload/restart DNS resolver"
#~ msgstr "falha ao recarregar / reiniciar o resolvedor de DNS"
#~ msgid "failed to remove temporary files"
#~ msgstr "falha ao remover ficheiros temporários"
#~ msgid "failed to restart/reload DNS resolver"
#~ msgstr "falha ao reiniciar/recarregar o resolvedor de DNS"
#~ msgid "failed to sort data file"
#~ msgstr "falha ao ordenar o ficheiro de dados"
#~ msgid "failed to stop %s"
#~ msgstr "falha ao parar %s"
#~ msgid "failed to unpack compressed cache"
#~ msgstr "falha ao descomprimir o cache comprimido"
#~ msgid "no HTTPS/SSL support on device"
#~ msgstr "nenhum suporte de HTTPS/SSL no aparelho"
#~ msgid "some recommended packages are missing"
#~ msgstr "alguns pacotes recomendados faltam"
#~ msgid "the %s failed to discover WAN gateway"
#~ msgstr "o %s não conseguiu descobrir o gateway da WAN"
#~ msgid ""
#~ "use of external dnsmasq config file detected, please set '%s' option to "
#~ "'%s'"
#~ msgstr ""
#~ "uso de um ficheiro de configuração dnsmasq externo detetado, defina a "
#~ "opção '%s' para '%s'"
#~ msgid "Version: %s"
#~ msgstr "Versão: %s"
#~ msgid "The %s service failed to discover WAN gateway!"
#~ msgstr "O serviço %s não conseguiu descobrir o gateway WAN!"
#~ msgid "Unable to create directory for '%s'"
#~ msgstr "Não foi possível criar o diretório para '%s'"
#~ msgid "Downloading"
#~ msgstr "Descarregando"
#~ msgid "%s Error: %s"
#~ msgstr "%s Erro: %s"
#~ msgid "%s Error: %s %s"
#~ msgstr "%s Erro: %s %s"
#~ msgid "Cache file containing %s domains found."
#~ msgstr "Ficheiro de cache contendo %s domínios encontrados."
#~ msgid "Collected Errors"
#~ msgstr "Erros coletados"
#~ msgid "Configuration"
#~ msgstr "Configuração"
#~ msgid "DNSMASQ Additional Hosts"
#~ msgstr "Hosts adicionais do DNSMASQ"
#~ msgid "DNSMASQ Config"
#~ msgstr "Configuração do DNSMASQ"
#~ msgid "DNSMASQ Ipset"
#~ msgstr "DNSMASQ Ipset"
#~ msgid "DNSMASQ Nft Set"
#~ msgstr "DNSMASQ Nft Set"
#~ msgid "DNSMASQ Servers File"
#~ msgstr "Ficheiro de Servidores do DNSMASQ"
#~ msgid "Delay (in seconds) for on-boot start"
#~ msgstr "Atraso (em segundos) para o início quando o equipamento é ligado"
#~ msgid "Info"
#~ msgstr "Info"
#~ msgid "Loading"
#~ msgstr "A carregar"
#~ msgid "Message"
#~ msgstr "Mensagem"
#~ msgid ""
#~ "Pick the DNS resolution option to create the adblock list for, see the "
#~ "%sREADME%s for details."
#~ msgstr ""
#~ "Escolha a opção de resolução DNS para criar uma lista do adblock, "
#~ "consulte os %sREADME%s para mais detalhes."
#~ msgid "Run service after set delay on boot."
#~ msgstr "Executar o serviço na inicialização após um atraso definido."
#~ msgid "Service Status [%s %s]"
#~ msgstr "Estado do Serviço [%s %s]"
#~ msgid "Simple AdBlock Settings"
#~ msgstr "Configuração do Simple AdBlock"
#~ msgid "Success"
#~ msgstr "Sucesso"
#~ msgid "Task"
#~ msgstr "Tarefa"
#~ msgid "Unbound AdBlock List"
#~ msgstr "Lista de AdBlock do Unbound"
#~ msgid "DNSMASQ IP Set"
#~ msgstr "Conjunto IP do DNSMASQ"
#~ msgid "DNSMASQ NFT Set"
#~ msgstr "Conjunto DNSMASQ NFT"
#~ msgid "%s is blocking %s domains (with %s)."
#~ msgstr "%s está a bloquear %s domínios (com %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 ""
#~ "Escolha a opção de resolução DNS para criar a lista de adblock, veja a o "
#~ "<a href=\"%s#dns-resolution-option\" target=\"_blank\">README</a> para "
#~ "detalhes."
#~ msgid "Blacklisted Domain URLs"
#~ msgstr "Endereço com lista de Domínio para a Lista Negra"
#~ msgid "Blacklisted Domains"
#~ msgstr "Domínios para a Lista Negra"
#~ msgid "Blacklisted Hosts URLs"
#~ msgstr "Endereços de Hosts para a Lista Negra"
#~ msgid "Individual domains to be blacklisted."
#~ msgstr "Domínios individuais a serem incluídos na lista negra."
#~ msgid "Individual domains to be whitelisted."
#~ msgstr "Domínios individuais a serem listados na lista branca."
#~ msgid "URLs to lists of domains to be blacklisted."
#~ msgstr "URLs para listas de domínios a serem postos na lista negra."
#~ msgid "URLs to lists of domains to be whitelisted."
#~ msgstr "URLs para listas de domínios a serem incluídos na lista branca."
#~ msgid "URLs to lists of hosts to be blacklisted."
#~ msgstr "URLs para listas de domínios a serem incluídos na lista negra."
#~ msgid "Whitelist and Blocklist Management"
#~ msgstr "Geração de Listas Branca e Preta"
#~ msgid "Whitelisted Domain URLs"
#~ msgstr "Endereço com lista de domínio para a Lista Branca"
#~ msgid "Whitelisted Domains"
#~ msgstr "Domínios para a Lista Branca"
#~ msgid "failed to create blocklist or restart DNS resolver"
#~ msgstr "falha ao criar a lista de bloqueio ou reiniciar o resolvedor de DNS"
#~ msgid "failed to process whitelist"
#~ msgstr "falha ao processar a lista branca"
#~ msgid "Grant UCI access for luci-app-simple-adblock"
#~ msgstr "Conceder acesso UCI ao luci-app-simple-adblock"
#~ msgid "Service Status [%s]"
#~ msgstr "Estado do Serviço [%s]"
#~ msgid ""
#~ "Pick the DNS resolution option to create the adblock list for, see the"
#~ msgstr ""
#~ "Escolher a opção de resolução DNS para criar a lista de adblock, veja o"
#~ msgid "Pick the LED not already used in"
#~ msgstr "Escolha um LED não usando em"
#~ msgid "Please note that"
#~ msgstr "Por favor, note que"
#~ msgid "README"
#~ msgstr "LEIAME"
#~ msgid "System LED Configuration"
#~ msgstr "Configuração do LED"
#~ msgid "for details."
#~ msgstr "para detalhes."
#~ msgid "is not supported on this system."
#~ msgstr "não é suportado neste sistema."
#~ msgid "Enable/Start"
#~ msgstr "Habilitar/Iniciar"
#~ msgid "Reload"
#~ msgstr "Recarregar"
#~ msgid "Service is disabled/stopped"
#~ msgstr "O serviço está desativado/parado"
#~ msgid "Service is enabled/started"
#~ msgstr "O serviço está ativado/executado"
#~ msgid "Service started with error"
#~ msgstr "O serviço iniciou com erro"
#~ msgid "Stop/Disable"
#~ msgstr "Parar/Desativar"
#~ msgid "Controls system log and console output verbosity"
#~ msgstr ""
#~ "Controla o sistema de registro e o detalhamento das mensagens de saída do "
#~ "console"
#~ msgid "Forces Router DNS use on local devices, also known as DNS Hijacking"
#~ msgstr ""
#~ "Forçar o uso do DNS do Roteador nos dispositivos locais, também conhecido "
#~ "como redirecionamento de DNS"
#~ msgid "Individual domains to be blacklisted"
#~ msgstr "Domínios individuais para serem incluídos na Lista Negra"
#~ msgid "Individual domains to be whitelisted"
#~ msgstr "Domínios individuais para serem incluídos na Lista Branca"
#~ msgid "URLs to lists of domains to be blacklisted"
#~ msgstr "Endereço da lista dos domínios para a Lista Negra"
#~ msgid "URLs to lists of domains to be whitelisted"
#~ msgstr "Endereço da lista dos domínios para a Lista Branca"
#~ msgid "URLs to lists of hosts to be blacklisted"
#~ msgstr "Endereço da lista dos hosts para a Lista Negra"
#~ msgid "Enable/start service"
#~ msgstr "Habilitar/Iniciar o serviço"
|