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
|
msgid ""
msgstr ""
"PO-Revision-Date: 2024-01-08 01:06+0000\n"
"Last-Translator: ssantos <ssantos@web.de>\n"
"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationshttps-dns-proxy/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.4-dev\n"
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js:258
msgid "%s%s%s proxy at %s on port %s.%s"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js:250
msgid "%s%s%s proxy on port %s.%s"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/co.oszx.dns.json:14
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/gr.libredns.doh.json:14
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/net.mullvad.doh.json:15
msgid "AdBlocking Filter"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.adguard.dns.json:2
msgid "AdGuard"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.controld.freedns.json:30
msgid "Ads + Malware + Social Filter"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.controld.freedns.json:26
msgid "Ads + Malware Filter"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/org.cleanbrowsing.doh.json:14
msgid "Adult Content Filter"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.ahadns.blitz.json:2
msgid "AhaDNS Blitz"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/net.ahadns.doh.json:2
msgid "AhaDNS Regional"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.alidns.dns.json:2
msgid "AliDNS"
msgstr "AliDNS"
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/net.applied-privacy.doh.json:2
msgid "Applied Privacy DNS (AT)"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/net.ahadns.doh.json:14
msgid "Australia"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.blahdns.doh.json:2
msgid "BlahDNS"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:170
msgid ""
"Blocks access to Mozilla Encrypted resolvers, forcing local devices to use "
"router for DNS resolution (%smore information%s)."
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:154
msgid ""
"Blocks access to iCloud Private Relay resolvers, forcing local devices to "
"use router for DNS resolution (%smore information%s)."
msgstr ""
"Bloqueia o acesso aos resolvedores de retransmissão privada do iCloud, a "
"forçar os aparelhos locais a usar o roteador para resolução de DNS (%smore "
"information%s)."
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:350
msgid "Bootstrap DNS"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/net.cfiec.dns.json:2
msgid "CFIEC Public IPv6 Only DNS (CN)"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/ca.cira.canadianshield.json:2
msgid "CIRA Canadian Shield"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:168
msgid "Canary Domains Mozilla"
msgstr "Domínios Canários do Mozilla"
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:152
msgid "Canary Domains iCloud"
msgstr "Domínios Canários do iCloud"
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/org.cleanbrowsing.doh.json:2
msgid "CleanBrowsing"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.cloudflare-dns.json:2
msgid "Cloudflare"
msgstr "Cloudflare"
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/app.tiarap.doh.json:18
msgid "Cloudlfare Cached"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/one.comss.dns.json:2
msgid "Comss DNS (RU)"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.controld.freedns.json:2
msgid "ControlD"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.dnsforfamily.dns-doh.json:2
msgid "DNS For Family"
msgstr "DNS For Family"
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/de.dnsforge.json:2
msgid "DNS Forge (DE)"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/pub.doh.json:2
msgid "DNSPod Public DNS (CN)"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.dnslify.doh.json:2
msgid "DNSlify DNS"
msgstr "DNS de DNSlify"
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:377
msgid "DSCP Codepoint"
msgstr "Codepoint DSCP"
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.decloudus.dns.json:2
msgid "DeCloudUs DNS"
msgstr "DNS de DeCloudUs"
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/ch.digitale-gesellschaft.dns.json:2
msgid "Digitale Gesellschaft (CH)"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/app.tiarap.doh.json:14
msgid "Direct"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js:376
msgid "Disable"
msgstr "Desativar"
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js:370
msgid "Disabling %s service"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:94
msgid "Do not update configs"
msgstr "Não atualizar configs"
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/cn.360.doh.json:2
msgid "DoH 360 DNS (CN)"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/sb.dns.json:2
msgid "DoH DNS (SB)"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js:357
msgid "Enable"
msgstr "Ativar"
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js:351
msgid "Enabling %s service"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/net.ffmuc.doh.json:2
msgid "FFMUC DNS (DE)"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/ca.cira.canadianshield.json:14
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.adguard.dns.json:14
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.cloudflare-dns.json:14
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.controld.freedns.json:14
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.opendns.doh.json:14
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/org.cleanbrowsing.doh.json:18
msgid "Family Filter"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/org.cleanbrowsing.doh.json:8
msgid "Filter"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.ahadns.blitz.json:8
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.rethinkdns.sky.json:8
msgid "Filters"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.blahdns.doh.json:22
msgid "Finland"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/status/include/71_https-dns-proxy.js:102
msgid "Force DNS Ports"
msgstr "Forçar portas de DNS"
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js:171
msgid "Force DNS ports:"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:142
msgid "Force Router DNS"
msgstr "Forçar o DNS do Roteador"
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:146
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:161
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:180
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-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:410
msgid "Force use of HTTP/1"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:422
msgid "Force use of IPv6 DNS resolvers"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:143
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-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.blahdns.doh.json:18
msgid "Germany"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/google.dns.json:2
msgid "Google"
msgstr "Google"
#: applications/luci-app-https-dns-proxy/root/usr/share/rpcd/acl.d/luci-app-https-dns-proxy.json:3
msgid "Grant UCI and file access for luci-app-https-dns-proxy"
msgstr "Conceder acesso a UCI e a ficheiros para luci-app-https-dns-proxy"
#: applications/luci-app-https-dns-proxy/root/usr/share/luci/menu.d/luci-app-https-dns-proxy.json:3
msgid "HTTPS DNS Proxy"
msgstr "Proxy de DNS HTTPS"
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:75
msgid "HTTPS DNS Proxy - Configuration"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:207
msgid "HTTPS DNS Proxy - Instances"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js:161
msgid "HTTPS DNS Proxy - Status"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/status/include/71_https-dns-proxy.js:55
msgid "HTTPS DNS Proxy Instances"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/net.he.ordns.json:2
msgid "Hurricane Electric"
msgstr "Hurricane Electric"
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/net.idnet.doh.json:2
msgid "IDNet (UK)"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/jp.iij.dns.public.json:2
msgid "IIJ Public DNS (JP)"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:84
msgid ""
"If update option is selected, the %s'DNS Forwards' section of DHCP and DNS%s "
"will be automatically updated to use selected DoH providers (%smore "
"information%s)."
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/net.ahadns.doh.json:26
msgid "India"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/net.ahadns.doh.json:30
msgid "Italy"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.blahdns.doh.json:26
msgid "Japan"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/fi.lelux.resolver-eu.json:2
msgid "Lelux DNS (FI)"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:179
msgid "Let local devices use Mozilla Private Relay"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:160
msgid "Let local devices use iCloud Private Relay"
msgstr ""
"Deixar aparelhos locais usar os resolvedores de retransmissão de iCloud"
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:145
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-https-dns-proxy/root/usr/share/https-dns-proxy/providers/gr.libredns.doh.json:2
msgid "LibreDNS (GR)"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:355
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/status/include/71_https-dns-proxy.js:100
msgid "Listen Address"
msgstr "Endereço de escuta"
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:361
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/status/include/71_https-dns-proxy.js:101
msgid "Listen Port"
msgstr "Porta de escuta"
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.blahdns.doh.json:8
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/net.ahadns.doh.json:8
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/one.comss.dns.json:7
msgid "Location"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:389
msgid "Logging File Path"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:383
msgid "Logging Verbosity"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.controld.freedns.json:22
msgid "Malware Filter"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/one.comss.dns.json:17
msgid "Moscow, St Petersburg"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/net.mullvad.doh.json:2
msgid "Mullvad"
msgstr "Mullvad"
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/status/include/71_https-dns-proxy.js:99
msgid "Name / Type"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/net.ahadns.doh.json:38
msgid "Netherlands"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/io.nextdns.dns.json:2
msgid "NextDNS.io"
msgstr "NextDNS.io"
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/net.ahadns.doh.json:42
msgid "Norway"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js:187
msgid "Not installed or not found"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/cz.nic.odvr.json:2
msgid "ODVR (CZ)"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/co.oszx.dns.json:2
msgid "OSZX DNS (UK)"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.opendns.doh.json:2
msgid "OpenDNS"
msgstr "OpenDNS"
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:283
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:315
msgid "Parameter"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:188
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:197
msgid ""
"Please note that %s is not supported on this system (%smore information%s)."
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/net.ahadns.doh.json:50
msgid "Poland"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:394
msgid "Polling Interval"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/ca.cira.canadianshield.json:18
msgid "Private Filter"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/ca.cira.canadianshield.json:22
msgid "Protected Filter"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:249
msgid "Provider"
msgstr "Provedor"
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:400
msgid "Proxy Server"
msgstr "Servidor proxy"
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/tw.twnic.dns.json:2
msgid "Quad 101 (TW)"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/net.quad9.json:2
msgid "Quad 9"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js:319
msgid "Restart"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js:313
msgid "Restarting %s service"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/lu.restena.kaitain.json:2
msgid "Restena DNS (LU)"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.rethinkdns.sky.json:2
msgid "Rethink DNS"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/cn.rubyfish.dns.json:2
msgid "RubyFish (CN)"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:372
msgid "Run As Group"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:367
msgid "Run As User"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/io.seby.doh-2.json:2
msgid "Seby DNS (AU)"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/net.quad9.json:18
msgid "Secured"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/net.quad9.json:26
msgid "Secured with ECS Support"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.cloudflare-dns.json:22
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/org.cleanbrowsing.doh.json:22
msgid "Security Filter"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js:203
msgid "See the %sREADME%s for details."
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:120
msgid "Select the DNSMASQ Configs to update"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js:402
msgid "Service Control"
msgstr "Controle de serviços"
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js:201
msgid "Service Instances"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js:165
msgid "Service Status"
msgstr "Estado do Serviço"
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/one.comss.dns.json:13
msgid "Siberia"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.blahdns.doh.json:30
msgid "Singapore"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/org.snopyta.dns.doh.fi.json:2
msgid "Snopyta DNS (FI)"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/net.ahadns.doh.json:22
msgid "Spain"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/co.oszx.dns.json:18
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.adguard.dns.json:18
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.cloudflare-dns.json:18
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.controld.freedns.json:18
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.opendns.doh.json:18
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/gr.libredns.doh.json:18
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/net.mullvad.doh.json:19
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/net.quad9.json:14
msgid "Standard"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js:300
msgid "Start"
msgstr "Iniciar"
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js:294
msgid "Starting %s service"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js:338
msgid "Stop"
msgstr "Parar"
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js:332
msgid "Stopping %s service"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/ch.switch.dns.json:2
msgid "Switch DNS (CH)"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.blahdns.doh.json:14
msgid "Switzerland"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/status/include/71_https-dns-proxy.js:148
msgid "There are no active instances."
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/app.tiarap.doh.json:2
msgid "Tiarap Public DNS (JP)"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/net.ahadns.doh.json:18
msgid "US/Chicago"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/net.ahadns.doh.json:34
msgid "US/Los Angeles"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/net.ahadns.doh.json:46
msgid "US/New York"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:245
msgid "Unknown"
msgstr "Desconhecido"
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/net.quad9.json:22
msgid "Unsecured"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:82
msgid "Update DNSMASQ Config on Start/Stop"
msgstr "Atualizar configuração do DNSMASQ ao Iniciar/Parar"
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:92
msgid "Update all configs"
msgstr "Atualizar todas as configs"
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:93
msgid "Update select configs"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:405
msgid "Use HTTP/1"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:416
msgid "Use IPv6 resolvers"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:421
msgid "Use any family DNS resolvers"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js:409
msgid "Use negotiated HTTP version"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/io.nextdns.dns.json:8
msgid "Username"
msgstr ""
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/app.tiarap.doh.json:8
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/ca.cira.canadianshield.json:8
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/co.oszx.dns.json:8
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.adguard.dns.json:8
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.cloudflare-dns.json:8
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.controld.freedns.json:8
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.opendns.doh.json:8
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/gr.libredns.doh.json:8
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/net.mullvad.doh.json:9
#: applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/net.quad9.json:8
msgid "Variant"
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js:169
msgid "Version %s - Running."
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js:181
msgid "Version %s - Stopped (Disabled)."
msgstr ""
#: applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js:179
msgid "Version %s - Stopped."
msgstr ""
#~ msgid "%s"
#~ msgstr "%s"
#~ msgid "%s DoH at %s:%s"
#~ msgstr "%s DoH em %s:%s"
#~ msgid "%s is not installed or not found"
#~ msgstr "%s não está instalado ou não foi encontrado"
#~ msgid "360 Secure DNS - CN"
#~ msgstr "360 DNS Seguro - CN"
#~ msgid "AdGuard (Family Protection)"
#~ msgstr "AdGuard (Proteção da Família)"
#~ msgid "AdGuard (Non-filtering)"
#~ msgstr "AdGuard (sem filtragem)"
#~ msgid "AdGuard (Standard)"
#~ msgstr "AdGuard (Padrão)"
#~ msgid "AhaDNS - AU (Block Malware + Ads)"
#~ msgstr "AhaDNS - AU (Bloqueia Malware + Anúncios)"
#~ msgid "AhaDNS - ES (Block Malware + Ads)"
#~ msgstr "AhaDNS - ES (Bloqueia Malware + Anúncios)"
#~ msgid "AhaDNS - IN (Block Malware + Ads)"
#~ msgstr "AhaDNS - IN (Bloqueia Malware + Anúncios)"
#~ msgid "AhaDNS - IT (Block Malware + Ads)"
#~ msgstr "AhaDNS - TI (Bloqueia Malware + Anúncios)"
#~ msgid "AhaDNS - NL (Block Malware + Ads)"
#~ msgstr "AhaDNS - NL (Bloqueia Malware + Anúncios)"
#~ msgid "AhaDNS - NO (Block Malware + Ads)"
#~ msgstr "AhaDNS - NO (Bloqueia Malware + Anúncios)"
#~ msgid "AhaDNS - PL (Block Malware + Ads)"
#~ msgstr "AhaDNS - PL (Bloqueia Malware + Anúncios)"
#~ msgid "AhaDNS - US/Chicago (Block Malware + Ads)"
#~ msgstr "AhaDNS - US/Chicago (Bloqueia Malware + Anúncios)"
#~ msgid "AhaDNS - US/Los Angeles (Block Malware + Ads)"
#~ msgstr "AhaDNS - US/Los Angeles (Bloqueia Malware + Anúncios)"
#~ msgid "AhaDNS - US/New York (Block Malware + Ads)"
#~ msgstr "AhaDNS - US/Nova Iorque (Bloqueia Malware + Anúncios)"
#~ msgid "AhaDNS Blitz (Configurable)"
#~ msgstr "AhaDNS Blitz (Configurável)"
#~ msgid "AliDNS - CN"
#~ msgstr "AliDNS - CN"
#~ msgid "Applied Privacy DNS - AT/DE"
#~ msgstr "DNS de Applied Privacy - AT/DE"
#~ msgid "BlahDNS - CH"
#~ msgstr "BlahDNS - CH"
#~ msgid "BlahDNS - DE"
#~ msgstr "BlahDNS - DE"
#~ msgid "BlahDNS - FI"
#~ msgstr "BlahDNS - FI"
#~ msgid "BlahDNS - JP"
#~ msgstr "BlahDNS - JP"
#~ msgid "BlahDNS - SG"
#~ msgstr "BlahDNS - SG"
#~ msgid ""
#~ "Blocks access to Mozilla resolvers, forcing local devices to use router "
#~ "for DNS resolution (%smore information%s)."
#~ msgstr ""
#~ "Bloqueia o acesso aos resolvedores do Mozilla, a forçar os aparelhos "
#~ "locais a usar o roteador para a resolução de DNS (%smais informações%s)."
#~ msgid "CFIEC Public DNS (IPv6 Only)"
#~ msgstr "DNS Público CFIEC (apenas IPv6)"
#~ msgid "CIRA Canadian Shield (Family)"
#~ msgstr "CIRA Canadian Shield (Família)"
#~ msgid "CIRA Canadian Shield (Private)"
#~ msgstr "CIRA Canadian Shield (Privado)"
#~ msgid "CIRA Canadian Shield (Protected)"
#~ msgstr "CIRA Canadian Shield (Protegido)"
#~ msgid "CleanBrowsing (Adult Filter)"
#~ msgstr "CleanBrowsing (Filtro Adulto)"
#~ msgid "CleanBrowsing (Family Filter)"
#~ msgstr "CleanBrowsing (Filtro para a Familia)"
#~ msgid "CleanBrowsing (Security Filter)"
#~ msgstr "CleanBrowsing (Filtro de Segurança)"
#~ msgid "Cloudflare (Family Protection)"
#~ msgstr "Cloudflare (Proteção Da Família)"
#~ msgid "Cloudflare (Security Protection)"
#~ msgstr "Cloudflare (Proteção de Segurança)"
#~ msgid "Comss.ru DNS (East)"
#~ msgstr "DNS Comss.ru (Leste)"
#~ msgid "Comss.ru DNS (West)"
#~ msgstr "DNS Comss.ru (Oeste)"
#~ msgid "Configuration"
#~ msgstr "Configuração"
#~ msgid "ControlD (Block Malware + Ads + Social)"
#~ msgstr "ControlD (bloquear malware + anúncios + social)"
#~ msgid "ControlD (Block Malware + Ads)"
#~ msgstr "ControlD (bloquear malware + anúncios)"
#~ msgid "ControlD (Block Malware)"
#~ msgstr "ControlD (bloquear malware)"
#~ msgid "ControlD (Family)"
#~ msgstr "ControlD (família)"
#~ msgid "ControlD (Unfiltered)"
#~ msgstr "ControlD (sem filtro)"
#~ msgid "DNS Forge - DE"
#~ msgstr "DNS Forge - DE"
#~ msgid "DNS HTTPS Proxy"
#~ msgstr "Proxy HTTPS de DNS"
#~ msgid "DNS HTTPS Proxy Settings"
#~ msgstr "Configurações de Proxy HTTPS de DNS"
#~ msgid "DNS.SB"
#~ msgstr "DNS.SB"
#~ msgid "DNSCrypt.ca (DNS1)"
#~ msgstr "DNSCrypt.ca (DNS1)"
#~ msgid "DNSCrypt.ca (DNS2)"
#~ msgstr "DNSCrypt.ca (DNS2)"
#~ msgid "DNSPod Public DNS - CN"
#~ msgstr "DNSPod Public DNS - CN"
#~ msgid "Digitale Gesellschaft - CH"
#~ msgstr "Digitale Gesellschaft - CH"
#~ msgid "FFMUC DNS - DE"
#~ msgstr "DNS FFMUC - DE"
#~ msgid "For more information on different options check"
#~ msgstr "Para obter mais informações sobre opções diferentes, verifique"
#~ msgid "IDNet.net - UK"
#~ msgstr "IDNet.net - UK"
#~ msgid "IIJ Public DNS - JP"
#~ msgstr "IIJ Public DNS - JP"
#~ msgid ""
#~ "If update option is selected, the 'DNS forwardings' section of %sDHCP and "
#~ "DNS%s will be automatically updated to use selected DoH providers (%smore "
#~ "information%s)."
#~ msgstr ""
#~ "Se a opção de atualização estiver selecionada, a secção 'Encaminhamentos "
#~ "de DNS' de %sDHCP e DNS%s será automaticamente atualizada para usar os "
#~ "provedores de DoH selecionados (%smore information%s)."
#~ msgid "Instances"
#~ msgstr "Instâncias"
#~ msgid "Lelux DNS - FI"
#~ msgstr "DNS de Lelux - FI"
#~ msgid "Let local devices use Mozilla resolvers"
#~ msgstr "Deixar aparelhos locais usar resolvedores de Mozilla"
#~ msgid "LibreDNS - GR"
#~ msgstr "LibreDNS - GR"
#~ msgid "LibreDNS - GR (No Ads)"
#~ msgstr "LibreDNS - GR (Sem anúncios)"
#~ msgid "Loading"
#~ msgstr "A carregar"
#~ msgid "Mullvad (AdBlock)"
#~ msgstr "Mullvad (AdBlock)"
#~ msgid "NextDNS.io (Configurable)"
#~ msgstr "NextDNS.io (Configurável)"
#~ msgid "ODVR (nic.cz)"
#~ msgstr "ODVR (nic.cz)"
#~ msgid "OSZX DNS (Pumplex)"
#~ msgstr "DNS de OSZX (Pumplex)"
#~ msgid "OSZX DNS - UK"
#~ msgstr "DNS de OSZX - UK"
#~ msgid "OpenDNS (Family Shield)"
#~ msgstr "OpenDNS (Family Shield)"
#~ msgid "Quad 101 - TW"
#~ msgstr "Quad 101 - TW"
#~ msgid "Quad 9 (Recommended)"
#~ msgstr "Quad 9 (Recomendado)"
#~ msgid "Quad 9 (Secured with ECS Support)"
#~ msgstr "Quad 9 (Protegido com Suporte de ECS)"
#~ msgid "Quad 9 (Secured)"
#~ msgstr "Quad 9 (Seguro)"
#~ msgid "Quad 9 (Unsecured)"
#~ msgstr "Quad 9 (Sem Segurança)"
#~ msgid "Reload"
#~ msgstr "Recarregar"
#~ msgid "Resolver"
#~ msgstr "Resolvedor"
#~ msgid "Restena DNS - LU"
#~ msgstr "DNS de Restena - LU"
#~ msgid "Rethink DNS (Configurable)"
#~ msgstr "DNS de Rethink (Configurável)"
#~ msgid "Seby DNS - AU"
#~ msgstr "DNS de Seby - AU"
#~ msgid "Service Status [%s %s]"
#~ msgstr "Estado do Serviço [%s %s]"
#~ msgid "Snopyta DNS - FI"
#~ msgstr "DNS de Snopyta - FI"
#~ msgid "Stopped"
#~ msgstr "Parado"
#~ msgid "Switch DNS - CH"
#~ msgstr "DNS de Switch - CH"
#~ msgid "Tiarap Public DNS - JP"
#~ msgstr "DNS Público de Tiarap - JP"
#~ msgid "Tiarap Public DNS - SG"
#~ msgstr "DNS Público de Tiarap - SG"
#~ msgid "Tsinghua University Secure DNS - CN"
#~ msgstr "DNS seguro da Universidade de Tsinghua - CN"
#~ msgid "Unknown Provider"
#~ msgstr "Provedor Desconhecido"
#~ msgid "Update %s config"
#~ msgstr "Atualizar %s config"
#~ msgid "and"
#~ msgstr "e"
#~ msgid "disabled"
#~ msgstr "desativado"
#~ msgid "rubyfish.cn"
#~ msgstr "rubyfish.cn"
#~ msgid "DNSPod.cn Public DNS"
#~ msgstr "DNSPod.cn DNS público"
#~ msgid "Digitale Gesellschaft"
#~ msgstr "Digitale Gesellschaft"
#~ msgid "IDNet.net (UK)"
#~ msgstr "IDNet.net (UK)"
#~ msgid "LibreDNS"
#~ msgstr "LibreDNS"
#~ msgid "LibreDNS (No Ads)"
#~ msgstr "LibreDNS (Sem Anúncios)"
#~ msgid "Quad 101 (Taiwan)"
#~ msgstr "Quad 101 (Taiwan)"
#~ msgid "Running: %s DoH at %s:%s"
#~ msgstr "Executando: %s DoH em %s:%s"
#~ msgid ""
#~ "If update DNSMASQ config is selected, when you add/remove any instances "
#~ "below, they will be used to override the 'DNS forwardings' section of "
#~ "%sDHCP and DNS%s (%smore information%s)."
#~ msgstr ""
#~ "Se a configuração do DNSMASQ estiver selecionada, ao adicionar/remover "
#~ "quaisquer instâncias abaixo, elas serão usadas para substituir a seção "
#~ "'encaminhamentos DNS' do %sDHCP e DNS%s (%smais informações%s)."
#~ msgid "Listen address"
#~ msgstr "Endereço de escuta"
#~ msgid "Listen port"
#~ msgstr "Porta de escuta"
#~ msgid "Proxy server"
#~ msgstr "Servidor proxy"
#~ msgid ""
#~ "When you add/remove any instances below, they will be used to override "
#~ "the 'DNS forwardings' section of %sDHCP and DNS%s."
#~ msgstr ""
#~ "Quando adiciona ou remove quaisquer das instâncias abaixo, elas serão "
#~ "utilizadas para substituir a secção 'Encaminhamentos do DNS' de %sDHCP e "
#~ "DNS%s."
#~ msgid "Alidns"
#~ msgstr "Alidns"
#~ msgid "EDNS client subnet"
#~ msgstr "Sub-rede de clientes EDNS"
#~ msgid "Grant UCI access for luci-app-https-dns-proxy"
#~ msgstr "Conceder acesso UCI ao luci-app-https-dns-proxy"
#~ msgid ""
#~ "When you add/remove any instances below, they will be used to override "
#~ "the 'DNS forwardings' section of <a href=\"%s\">DHCP and DNS</a>."
#~ msgstr ""
#~ "Quando você adicionar/remover qualquer instância abaixo, elas serão "
#~ "usadas para substituir a secção 'encaminhamentos DNS' de <a "
#~ "href=\"%s\">DHCP e DNS</a>."
#~ msgid "DNS Over HTTPS Proxy"
#~ msgstr "Proxy de DNS Over HTTPS"
#~ msgid "DNS Over HTTPS Proxy Settings"
#~ msgstr "Configurações de Proxy de DNS Over HTTPS"
#~ msgid "DHCP and DNS"
#~ msgstr "DHCP e DNS"
#~ msgid "DoH"
#~ msgstr "DoH"
#~ msgid "Running"
#~ msgstr "Executando"
#~ msgid ""
#~ "When you add/remove any instances below, they will be used to override "
#~ "the 'DNS forwardings' section of"
#~ msgstr ""
#~ "Quando adicionar/remover quaisquer instâncias abaixo, serão usadas para "
#~ "substituir a seção 'DNS forwardings' de"
#~ msgid "at"
#~ msgstr "em"
#~ msgid "is not installed or not found"
#~ msgstr "não está instalado ou não foi encontrado"
#~ msgid "DNS over HTTPS Proxy"
#~ msgstr "Proxy de DNS sobre HTTPS"
#~ msgid "DNS over HTTPS Proxy Settings"
#~ msgstr "Configurações de Proxy DNS sobre HTTPS"
#~ msgid "Subnet address"
#~ msgstr "Endereço de sub-rede"
#~ msgid "Uknown Provider"
#~ msgstr "Provedor Desconhecido"
#~ msgid "HTTPS DNS Proxy Settings"
#~ msgstr "Configurações de proxy HTTPS DNS"
|