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
|
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: \n"
"PO-Revision-Date: 2020-05-02 10:21+0000\n"
"Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n"
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
"openwrt/luciapplicationstravelmate/pt_BR/>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.1-dev\n"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73
msgid "-- AP Selection --"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261
msgid "AP QR-Codes..."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815
msgid "Add Uplink %q"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671
msgid "Add Uplink..."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280
msgid "Additional Settings"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321
msgid ""
"Additional trigger delay in seconds before travelmate processing begins."
msgstr "Atraso adicional em segundos antes do travelmate processe os gatilhos."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779
msgid "Authentication"
msgstr "Autenticação"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
msgid "Auto Login Script"
msgstr "Script de Login Automático"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
msgid "AutoAdd Open Uplinks"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
msgid ""
"Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
"failed login attempts.<br /> The default of '0' disables this feature."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
msgid ""
"Automatically add open uplinks like hotel captive portals to your wireless "
"config."
msgstr ""
"Adicione automaticamente uplinks abertos, como os usados em portais cativos "
"de hotéis na sua configuração sem fio."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449
msgid ""
"Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
"connections.<br /> The default of '0' disables this feature."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380
msgid "Automatically handle VPN (re-) connections."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:735
msgid "BSSID"
msgstr "BSSID"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346
msgid "Buffer size in bytes to prepare nearby scan results."
msgstr ""
"Tamanho do buffer em bytes para preparar os resultados de varredura mais "
"próximos."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782
msgid "CHAP"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
msgid "Captive Portal Detection"
msgstr "Detecção de Portal de Autenticação"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351
msgid "Captive Portal URL"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572
msgid "Channel"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
msgid ""
"Check the internet availability, handle captive portal redirections and keep "
"the uplink connection 'alive'."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147
msgid ""
"Configuration of the travelmate package to to enable travel router "
"functionality. For further information <a href=\"https://github.com/openwrt/"
"packages/blob/master/net/travelmate/files/README.md\" target=\"_blank\" rel="
"\"noreferrer noopener\" >check the online documentation</a>. <br /> "
"<em>Please note:</em> On first start please call the 'Interface Wizard' "
"once, to make the necessary network- and firewall settings."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:437
msgid "Connection End"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466
msgid "Connection End Expiry"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326
msgid "Connection Limit"
msgstr "Limite de conexão"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
msgid "Connection Start"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448
msgid "Connection Start Expiry"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228
msgid "Del"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226
msgid "Delete this network"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
msgid "Device"
msgstr "Dispositivo"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
msgid "Device Name"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821
msgid "Dismiss"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215
msgid "Drag to reorder"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404
msgid "E-Mail Hook"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422
msgid "E-Mail Profile"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407
msgid "E-Mail Receiver Address"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412
msgid "E-Mail Sender Address"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282
msgid "E-Mail Settings"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417
msgid "E-Mail Topic"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785
msgid "EAP-GTC"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786
msgid "EAP-MD5"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787
msgid "EAP-MSCHAPV2"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771
msgid "EAP-Method"
msgstr "Método EAP"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788
msgid "EAP-TLS"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223
msgid "Edit"
msgstr "Editar"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221
msgid "Edit this network"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287
msgid "Enable the travelmate service."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
msgid "Enable verbose debug logging in case of any processing errors."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233
msgid "Enabled"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741
msgid "Encryption"
msgstr "Criptografia"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244
msgid "Ext. Hooks"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485
msgid ""
"External script reference which will be called for automated captive portal "
"logins."
msgstr "Script externo de referência que será usado para logins automatizados."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776
msgid "FAST"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
msgid "General Settings"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
msgid "Generate a random unicast MAC address for each uplink connection."
msgstr ""
#: applications/luci-app-travelmate/root/usr/share/rpcd/acl.d/luci-app-travelmate.json:3
msgid "Grant access to LuCI app travelmate"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
msgid ""
"How long should travelmate wait for a successful wlan uplink connection."
msgstr ""
"Quanto tempo o travelmate irá esperar pelo sucesso da conexão sem fio "
"externa."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793
msgid "Identify"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
msgid "Ignore BSSID"
msgstr "Ignore o BSSID"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224
msgid "Information"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
msgid "Interface Name"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
msgid "Interface Timeout"
msgstr "Estouro de Tempo da Interface"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19
msgid "Interface Wizard"
msgstr "Assistente da Interface"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268
msgid "Interface Wizard..."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395
msgid "LAN Device"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
msgid "Last Run"
msgstr "Última Execução"
#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
msgid "Log View"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783
msgid "MSCHAP"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784
msgid "MSCHAPV2"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
msgid ""
"Minimum signal quality threshold as percent for conditional uplink (dis-) "
"connections."
msgstr ""
"Limite percentual mínimo da qualidade do sinal para (des)conexões de enlaces "
"para fora."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301
msgid "Net Error Check"
msgstr "Verificação de Erros da Rede"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22
msgid "No travelmate related logs yet!"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
msgid "OWE"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341
msgid "Overall Timeout"
msgstr "Estouro de Tempo Global"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341
msgid "Overall retry timeout in seconds."
msgstr "Estouro de tempo global em segundos."
#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19
msgid "Overview"
msgstr "Visão Geral"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201
msgid ""
"Overview of all configured uplinks for travelmate.<br /> You can edit, "
"remove or prioritize existing uplinks by drag & drop and scan for new "
"ones. The currently used uplink is emphasized in blue."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781
msgid "PAP"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775
msgid "PEAP"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764
msgid "Password"
msgstr "Senha"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808
msgid "Password of Private Key"
msgstr "Senha da Chave Privada"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796
msgid "Path to CA-Certificate"
msgstr "Caminho para o Certificado da AC"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800
msgid "Path to Client-Certificate"
msgstr "Caminho para o Certificado do Cliente"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:804
msgid "Path to Private Key"
msgstr "Caminho para a Chave Privada"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258
msgid "Please install the separate 'qrencode' package."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282
msgid ""
"Please note: E-Mail notifications require the separate setup of the "
"<em>mstmp</em> package.<br /><p> </p>"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281
msgid ""
"Please note: VPN connections require the separate setup of the "
"<em>Wireguard</em> or <em>OpenVPN</em> package.<br /><p> </p>"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
msgid "ProActive Uplink Switch"
msgstr "ProActive Switch de Ligação Acendente (Uplink)"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
msgid ""
"Proactively scan and switch to a higher prioritized uplink, despite of an "
"already existing connection."
msgstr ""
"Faça uma varredura de forma proativa e selecione um switch com prioridade "
"mais alta, mesmo que já exista uma conexão."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422
msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114
msgid "QR-Code Overview"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
msgid "Radio Selection"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
msgid "Randomize MAC Addresses"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407
msgid "Receiver address for travelmate notification E-Mails."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115
msgid ""
"Render the QR-Code of the selected Access Point to comfortably transfer the "
"WLAN credentials to your mobile devices."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592
msgid "Repeat Scan"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
msgid ""
"Restrict travelmate to a single radio or change the overall scanning order "
"(e.g. 'radio1 radio0')."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326
msgid "Retry limit to connect to an uplink."
msgstr "Limite de novas tentativas de conexão com um enlace externo."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241
msgid "Run Flags"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
msgid "SSID"
msgstr "SSID"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717
msgid "SSID (hidden)"
msgstr "SSID (oculto)"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826
msgid "Save"
msgstr "Salvar"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346
msgid "Scan Buffer Size"
msgstr "Tamanho do Buffer de Varredura"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
msgid "Scan on"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523
msgid "Script Arguments"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412
msgid "Sender address for travelmate notification E-Mails."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404
msgid "Sends notification E-Mails after every succesful uplink connect."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368
msgid "Service Priority"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
msgid "Settings"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
msgid "Signal Quality Threshold"
msgstr "Limite da Qualidade do Sinal"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524
msgid ""
"Space separated list of additional arguments passed to the Auto Login "
"Script, i.e. username and password"
msgstr ""
"Lista de argumentos adicionais separados por espaço que serão passados ao "
"Script de Login Automático, por exemplo, nome de usuário e senha"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579
msgid "Starting wireless scan on '"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229
msgid "Station ID"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
msgid "Station Interface"
msgstr "Interface da Estação"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232
msgid "Station MAC"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
msgid "Status / Version"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571
msgid "Strength"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773
msgid "TLS"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774
msgid "TTLS"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105
msgid "The QR-Code could not be generated!"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31
msgid "The firewall zone name"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36
msgid "The interface metric"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395
msgid "The lan network device, e.g. 'br-lan'."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389
msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351
msgid ""
"The selected URL will be used for connectivity- and captive portal checks."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368
msgid "The selected priority will be used for travelmate processes."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359
msgid ""
"The selected user agent will be used for connectivity- and captive portal "
"checks."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:29
msgid "The syslog output, pre-filtered for travelmate related messages only."
msgstr "Mensagens do syslog relacionadas ao travelmate."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56
msgid "The uplink interface has been updated."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26
msgid "The uplink interface name"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20
msgid ""
"To use Travelmate, you have to set up an uplink interface once. This wizard "
"creates an IPv4- and an IPv6 alias network interface with all required "
"network- and firewall settings."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417
msgid "Topic for travelmate notification E-Mails."
msgstr ""
#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:3
msgid "Travelmate"
msgstr "Travelmate"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209
msgid "Travelmate Settings"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301
msgid "Treat missing internet availability as an error."
msgstr "Tratar a falta de disponibilidade da Internet como um erro."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321
msgid "Trigger Delay"
msgstr "Gatilho de Atraso"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359
msgid "User Agent"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380
msgid "VPN Hook"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389
msgid "VPN Interface"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383
msgid "VPN Service"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281
msgid "VPN Settings"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
msgid "Verbose Debug Logging"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756
msgid "WPA Ent. (CCMP)"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757
msgid "WPA Ent. (TKIP)"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
msgid "WPA Flags"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747
msgid "WPA Pers."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748
msgid "WPA Pers. (CCMP)"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749
msgid "WPA Pers. (TKIP)"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758
msgid "WPA/WPA2 Ent. (CCMP)"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759
msgid "WPA/WPA2 Ent. (TKIP)"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750
msgid "WPA/WPA2 Pers. (CCMP)"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751
msgid "WPA/WPA2 Pers. (TKIP)"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754
msgid "WPA2 Ent. (CCMP)"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755
msgid "WPA2 Ent. (TKIP)"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744
msgid "WPA2 Pers."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:745
msgid "WPA2 Pers. (CCMP)"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746
msgid "WPA2 Pers. (TKIP)"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753
msgid "WPA2/WPA3 Ent."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:743
msgid "WPA2/WPA3 Pers. (CCMP)"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752
msgid "WPA3 Ent."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760
msgid "WPA3 OWE (CCMP)"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
msgid "WPA3 Pers."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742
msgid "WPA3 Pers. (SAE)"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
msgid "WPA3/WPA2 Ent."
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581
msgid "Wireless Scan"
msgstr "Escaneamento da Rede Sem Fio"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208
msgid "Wireless Settings"
msgstr ""
#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:27
msgid "Wireless Stations"
msgstr "Estações Associadas"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790
msgid "auth=MSCHAPV2"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789
msgid "auth=PAP"
msgstr ""
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761
msgid "none"
msgstr ""
#~ msgid "AP on"
#~ msgstr "AP Ligado"
#~ msgid "Action"
#~ msgstr "Ação"
#~ msgid "Add Open Uplinks"
#~ msgstr "Adicionar Uplinks Abertos"
#~ msgid "Add Uplink"
#~ msgstr "Adicionar Enlace para Fora"
#~ msgid "Add Wireless Uplink Configuration"
#~ msgstr "Adicionar Configuração Sem Fio de Enlace para Fora"
#~ msgid "Advanced"
#~ msgstr "Avançado"
#~ msgid "Automatic"
#~ msgstr "Automático"
#~ msgid ""
#~ "Automatically resets the 'Faulty Stations' list after n minutes. Default "
#~ "is '0' which means no expiry."
#~ msgstr ""
#~ "Redefine automaticamente a lista de 'Estações que falharam' após x "
#~ "minutos. O valor padrão é '0', o que significa que nunca expira."
#~ msgid "Back to overview"
#~ msgstr "Voltar para visão geral"
#~ msgid ""
#~ "Check the internet availability, log captive portal redirections and keep "
#~ "the uplink connection 'alive'."
#~ msgstr ""
#~ "Verificar a disponibilidade de internet, registrar encaminhamentos de "
#~ "portais de autenticação e manter a conexão para fora 'viva'."
#~ msgid "Cipher"
#~ msgstr "Cifra"
#~ msgid ""
#~ "Configuration of the travelmate package to to enable travel router "
#~ "functionality."
#~ msgstr ""
#~ "Configuração do travelmate para habilitar a funcionalidade de roteador de "
#~ "viagem."
#~ msgid "Create Uplink interface"
#~ msgstr "Criar Interface de Saída"
#~ msgid ""
#~ "Create a new wireless wan uplink interface, configure it to use dhcp and"
#~ msgstr ""
#~ "Criar uma nova interface WAN sem fio de saída, configure-a para usar DHCP "
#~ "e"
#~ msgid "Down"
#~ msgstr "Abaixo"
#~ msgid "Edit Firewall Configuration"
#~ msgstr "Editar Configurações de Firewall"
#~ msgid "Edit Network Configuration"
#~ msgstr "Editar Configurações de Rede"
#~ msgid "Edit Travelmate Configuration"
#~ msgstr "Editar Configurações do Travelmate"
#~ msgid "Edit Wireless Configuration"
#~ msgstr "Editar Configurações da Rede sem fio"
#~ msgid "Edit Wireless Uplink Configuration"
#~ msgstr "Editar Configurações da Rede sem fio de saída"
#~ msgid "Edit this Uplink"
#~ msgstr "Editar Configurações da Rede de saída"
#~ msgid "Enable Travelmate"
#~ msgstr "Habilitar o Travelmate"
#~ msgid "Enable Verbose Debug Logging"
#~ msgstr "Habilitar os registros de depuração detalhados"
#~ msgid "Extra Options"
#~ msgstr "Opções Adicionais"
#~ msgid "Faulty Stations"
#~ msgstr "Estações com Falhas"
#~ msgid "Find and join network on"
#~ msgstr "Procurar e conectar à rede"
#~ msgid "For QR-Code support please install package 'qrencode'!"
#~ msgstr "Para suporte a QR-Code, por favor instale o pacote 'qrencode'!"
#~ msgid ""
#~ "For further information <a href=\"%s\" target=\"_blank\">see online "
#~ "documentation</a>"
#~ msgstr ""
#~ "Para mais informações <a href=\"%s\" target=\"_blank\">veja a "
#~ "documentação externa</a>"
#~ msgid "Force CCMP (AES)"
#~ msgstr "Impor CCMP (AES)"
#~ msgid "Force TKIP"
#~ msgstr "Impor TKIP"
#~ msgid "Force TKIP and CCMP (AES)"
#~ msgstr "Impor TKIP e CCMP (AES)"
#~ msgid "Grant UCI access for luci-app-travelmate"
#~ msgstr "Conceda acesso UCI ao luci-app-travelmate"
#~ msgid "Identity"
#~ msgstr "Identidade"
#~ msgid "Input file not found, please check your configuration."
#~ msgstr ""
#~ "O arquivo de entrada não foi encontrado. Por favor, verifique a sua "
#~ "configuração."
#~ msgid "List Auto Expiry"
#~ msgstr "Lista de Auto Expiração"
#~ msgid "Loading"
#~ msgstr "Carregando"
#~ msgid "Move down"
#~ msgstr "Mover para baixo"
#~ msgid "Move up"
#~ msgstr "Mover para cima"
#~ msgid "Name of the used uplink interface."
#~ msgstr "Nome da interface usada para o enlace de saída."
#~ msgid "Optional Arguments"
#~ msgstr "Argumentos Opcionais"
#~ msgid ""
#~ "Options for further tweaking in case the defaults are not suitable for "
#~ "you."
#~ msgstr ""
#~ "Opções para aprimoramentos adicionais caso as predefinições não funcionem "
#~ "com você."
#~ msgid "Passphrase"
#~ msgstr "Senha"
#~ msgid ""
#~ "Provides an overview of all configured uplinks for the travelmate "
#~ "interface (%s). You can edit, remove or re-order/prioritize existing "
#~ "uplinks or scan for new ones. The currently used uplink is emphasized in "
#~ "blue, faulty stations in red."
#~ msgstr ""
#~ "Fornece uma visão geral de todos os uplinks configurados para a interface "
#~ "travelmate (%s). Você pode editar, remover ou reordenar/priorizar uplinks "
#~ "existentes ou fazer uma varredura por novos uplinks. O uplink usado "
#~ "atualmente está marcado em azul, as estações defeituosas em vermelho."
#~ msgid "Radio Selection / Order"
#~ msgstr "Seleção de Rádio / Ordem"
#~ msgid "Remove"
#~ msgstr "Remover"
#~ msgid "Remove this Uplink"
#~ msgstr "Remover este Uplink"
#~ msgid "Repeat scan"
#~ msgstr "Repetir busca"
#~ msgid "Restart"
#~ msgstr "Reiniciar"
#~ msgid "Restart Travelmate"
#~ msgstr "Reiniciar o Travelmate"
#~ msgid ""
#~ "Restrict travelmate to a single radio (e.g. 'radio1') or change the "
#~ "overall scanning order (e.g. 'radio1 radio2 radio0')."
#~ msgstr ""
#~ "Restringir o travelmate em um único rádio (por exemplo, 'radio1') ou "
#~ "alterar a ordem geral de varrimento (por exemplo, 'radio1 radio2 radio0')."
#~ msgid "Runtime Information"
#~ msgstr "Informação de execução"
#~ msgid "Scan"
#~ msgstr "Procurar"
#~ msgid "Show/Hide QR-Codes"
#~ msgstr "Mostrar/Ocultar QR-Codes"
#~ msgid "Signal strength"
#~ msgstr "For do Sinal"
#~ msgid "Station ID (RADIO/SSID/BSSID)"
#~ msgstr "Identificador da Estação (RADIO/SSID/BSSID)"
#~ msgid ""
#~ "The BSSID information '%s' is optional and only required for hidden "
#~ "networks"
#~ msgstr "O BSSID '%s' é opcional e somente necessário para redes ocultas"
#~ msgid ""
#~ "This form allows you to modify the content of the main firewall "
#~ "configuration file (/etc/config/firewall)."
#~ msgstr ""
#~ "Este formulário permite a modificação das configurações do firewall."
#~ msgid ""
#~ "This form allows you to modify the content of the main network "
#~ "configuration file (/etc/config/network)."
#~ msgstr "Este formulário permite a modificação das configurações de rede."
#~ msgid ""
#~ "This form allows you to modify the content of the main travelmate "
#~ "configuration file (/etc/config/travelmate)."
#~ msgstr ""
#~ "Este formulário permite a modificação das configurações do travelmate."
#~ msgid ""
#~ "This form allows you to modify the content of the main wireless "
#~ "configuration file (/etc/config/wireless)."
#~ msgstr ""
#~ "Este formulário permite a modificação das configurações da rede sem fio."
#~ msgid "This step has only to be done once."
#~ msgstr "Este passo precisa ser feito apenas uma vez."
#~ msgid "Travelmate Status (Quality)"
#~ msgstr "Estado do Travelmate (Qualidade)"
#~ msgid "Travelmate Version"
#~ msgstr "Versão do Travelmate"
#~ msgid "Up"
#~ msgstr "Acima"
#~ msgid "Uplink / Trigger interface"
#~ msgstr "Enlace externo"
#~ msgid "Uplink BSSID"
#~ msgstr "BSSID do enlace Externo"
#~ msgid "Uplink SSID"
#~ msgstr "SSID do enlace Externo"
#~ msgid "View AP QR-Codes"
#~ msgstr "Ver os QR-Code do ponto de acesso"
#~ msgid "View Logfile"
#~ msgstr "Visualizar o Arquivo de Registros (log)"
#~ msgid "WEP-Passphrase"
#~ msgstr "WEP por Senha"
#~ msgid "WPA Capabilities"
#~ msgstr "Recursos do WPA"
#~ msgid "WPA-Passphrase"
#~ msgstr "WPA por Senha"
#~ msgid "add it to the wan zone of the firewall."
#~ msgstr "adicionar à zona wan do firewall."
#~ msgid "hidden"
#~ msgstr "oculto"
#~ msgid "with SSID"
#~ msgstr "com SSID"
#~ msgid "Delete"
#~ msgstr "Apagar"
#~ msgid "Delete this Uplink"
#~ msgstr "Apagar este Enlace de Saída"
#~ msgid "Open"
#~ msgstr "Abrir"
#~ msgid ""
#~ "Provides an overview of all configured uplinks for the travelmate "
#~ "interface (%s). You can edit, delete or re-order existing uplinks or scan "
#~ "for a new one. The currently used uplink is emphasized in blue, faulty "
#~ "stations in red."
#~ msgstr ""
#~ "Provê uma visão geral de todos os enlaces externos configurados para a "
#~ "interface (%s). Você pode editar, apagar ou reordenar enlaces existentes "
#~ "ou escanear por um novo. O enlace em uso está destacado em azul, enquanto "
#~ "as estações com falha estão em vermelho."
#~ msgid "Unknown"
#~ msgstr "Desconhecido"
#~ msgid "WEP"
#~ msgstr "WEP"
#~ msgid "WPA"
#~ msgstr "WPA"
#~ msgid "WPA/WPA2"
#~ msgstr "WPA/WPA2"
#~ msgid "WPA2"
#~ msgstr "WPA2"
#~ msgid ""
#~ "Connect your Android or iOS devices to your router's WiFi using the shown "
#~ "QR code."
#~ msgstr ""
#~ "Conecte seus dispositivos Android ou iOS na rede sem fio do roteador "
#~ "usando o QR-code apresentado."
#~ msgid ""
#~ "Here you'll find the QR codes from all of your configured Access Points. "
#~ "It allows you to connect your Android or iOS devices to your router's "
#~ "WiFi using the QR code shown below."
#~ msgstr ""
#~ "Aqui você encontrará os QR-code de todos os pontos de acesso "
#~ "configurados. Ele permite que você conecte seu dispositivo Android ou iOS "
#~ "ao seu roteador sem fio."
#~ msgid "QR-Codes"
#~ msgstr "QR-Codes"
#~ msgid "Radio selection"
#~ msgstr "Seleção de rádio"
#~ msgid "Restrict travelmate to a dedicated radio, e.g. 'radio0'."
#~ msgstr "Restringir o travelmate a um rádio dedicado (ex: 'radio0')."
|