1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
|
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-06-10 03:41+0200\n"
"PO-Revision-Date: 2017-02-22 20:30-0300\n"
"Last-Translator: Luiz Angelo Daros de Luca <luizluca@gmail.com>\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: Poedit 1.8.11\n"
"Language-Team: \n"
msgid "%.1f dB"
msgstr ""
msgid "%s is untagged in multiple VLANs!"
msgstr "%s está sem etiqueta em múltiplas VLANs!"
msgid "(%d minute window, %d second interval)"
msgstr "(janela de %d minutos, intervalo de %d segundos)"
msgid "(%s available)"
msgstr "(%s disponível)"
msgid "(empty)"
msgstr "(vazio)"
msgid "(no interfaces attached)"
msgstr "(nenhuma interface conectada)"
msgid "-- Additional Field --"
msgstr "-- Campo Adicional --"
msgid "-- Please choose --"
msgstr "-- Por favor, escolha --"
msgid "-- custom --"
msgstr "-- personalizado --"
msgid "-- match by device --"
msgstr "-- casar por dispositivo --"
msgid "-- match by label --"
msgstr "-- casar por rótulo --"
msgid "-- match by uuid --"
msgstr ""
"-- casar por <abbr title=\"Universal Unique IDentifier/Identificador Único "
"Universal\">UUID</abbr> --"
msgid "-- please select --"
msgstr ""
msgid "1 Minute Load:"
msgstr "Carga 1 Minuto:"
msgid "15 Minute Load:"
msgstr "Carga 15 Minutos:"
msgid "4-character hexadecimal ID"
msgstr "Identificador hexadecimal de 4 caracteres"
msgid "464XLAT (CLAT)"
msgstr "464XLAT (CLAT)"
msgid "5 Minute Load:"
msgstr "Carga 5 Minutos:"
msgid "6-octet identifier as a hex string - no colons"
msgstr ""
"Identificador de 6 octetos como uma cadeia hexadecimal - sem dois pontos"
msgid "802.11r Fast Transition"
msgstr "802.11r Fast Transition"
msgid "802.11w Association SA Query maximum timeout"
msgstr "Tempo de expiração máximo da consulta da Associação SA do 802.11w"
msgid "802.11w Association SA Query retry timeout"
msgstr ""
"Tempo de expiração de tentativa de consulta da Associação SA do 802.11w"
msgid "802.11w Management Frame Protection"
msgstr "Proteção do Quadro de Gerenciamento do 802.11w"
msgid "802.11w maximum timeout"
msgstr "Estouro de tempo máximo do 802.11w"
msgid "802.11w retry timeout"
msgstr "Estouro de tempo da nova tentativa do 802.11w"
msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
msgstr ""
"<abbr title=\"Identificador de Conjunto Básico de Serviços\">BSSID</abbr>"
msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port"
msgstr ""
"Porta de consulta <abbr title=\"Sistema de Nomes de Domínios\">DNS</abbr>"
msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port"
msgstr ""
"Porta do servidor <abbr title=\"Sistema de Nomes de Domínios\">DNS</abbr>"
msgid ""
"<abbr title=\"Domain Name System\">DNS</abbr> servers will be queried in the "
"order of the resolvfile"
msgstr ""
"O servidor <abbr title=\"Sistema de Nomes de Domínios\">DNS</abbr> irá "
"consultar na ordem do arquivo resolvfile"
msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr ""
"<abbr title=\"Identificador de Conjunto de Serviços Estendidos\">ESSID</abbr>"
msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address"
msgstr "Endereço <abbr title=\"Protocolo de Internet Versão 4\">IPv4</abbr>"
msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Gateway"
msgstr "Roteador <abbr title=\"Protocolo de Internet Versão 4\">IPv4</abbr>"
msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"
msgstr ""
"Máscara de rede <abbr title=\"Protocolo de Internet Versão 4\">IPv4</abbr>"
msgid ""
"<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Address or Network "
"(CIDR)"
msgstr ""
"Endereço do <abbr title=\"Protocolo de Internet Versão 6\">IPv6</abbr> "
"Endereço ou rede (CIDR)"
msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway"
msgstr "Roteador <abbr title=\"Protocolo de Internet Versão 6\">IPv6</abbr>"
msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)"
msgstr ""
"<abbr title=\"Internet Protocol Version 6/Protocolo Internet Versão "
"6\">IPv6</abbr>-Suffix (hex)"
msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"
msgstr "Configuração do <abbr title=\"Diodo Emissor de Luz\">LED</abbr>"
msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name"
msgstr "Nome do <abbr title=\"Diodo Emissor de Luz\">LED</abbr>"
msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address"
msgstr "Endereço <abbr title=\"Controle de Acesso ao Meio\">MAC</abbr>"
msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>"
msgstr ""
msgid ""
"<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration "
"Protocol\">DHCP</abbr> leases"
msgstr ""
"Numero máximo de alocações <abbr title=\"Protocolo de Configuração Dinâmica "
"de Equipamentos\">DHCP</abbr>"
msgid ""
"<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for "
"Domain Name System\">EDNS0</abbr> packet size"
msgstr ""
"Tamanho máximo do pacote do <abbr title=\"Extension Mechanisms for Domain "
"Name System\">EDNS0</abbr>"
msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries"
msgstr "Número máximo de consultas concorrentes"
msgid "<abbr title='Pairwise: %s / Group: %s'>%s - %s</abbr>"
msgstr "<abbr title='Par: %s / Grupo: %s'>%s - %s</abbr>"
msgid ""
"<br/>Note: you need to manually restart the cron service if the crontab file "
"was empty before editing."
msgstr ""
msgid "A43C + J43 + A43"
msgstr "A43C + J43 + A43"
msgid "A43C + J43 + A43 + V43"
msgstr "A43C + J43 + A43 + V43"
msgid "ADSL"
msgstr ""
"<abbr title=\"Assymetrical Digital Subscriber Line/Linha Digital Assimétrica "
"para Assinante\">ADSL</abbr>"
msgid "ANSI T1.413"
msgstr "ANSI T1.413"
msgid "APN"
msgstr "<abbr title=\"Access Point Name\">APN</abbr>"
msgid "ARP retry threshold"
msgstr ""
"Limite de retentativas do <abbr title=\"Address Resolution Protocol\">ARP</"
"abbr>"
msgid "ATM (Asynchronous Transfer Mode)"
msgstr "ATM (Asynchronous Transfer Mode)"
msgid "ATM Bridges"
msgstr "Ponte ATM"
msgid "ATM Virtual Channel Identifier (VCI)"
msgstr ""
"Identificador de Canal Virtual ATM (<abbr title=\"Virtual Channel Identifier"
"\">VCI</abbr>)"
msgid "ATM Virtual Path Identifier (VPI)"
msgstr ""
"Identificador de Caminho Virtual ATM (<abbr title=\"Virtual Path Identifier"
"\">VPI</abbr>)"
msgid ""
"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual "
"Linux network interfaces which can be used in conjunction with DHCP or PPP "
"to dial into the provider network."
msgstr ""
"Pontes ATM expõem ethernet encapsuladas em conexões AAL5 como interfaces de "
"rede virutais no Linux. Estas podem ser usadas em conjunto com o DHCP ou PPP "
"para discar em um provedor de rede."
msgid "ATM device number"
msgstr "Número do dispositivo ATM"
msgid "ATU-C System Vendor ID"
msgstr "Identificador de"
msgid "Access Concentrator"
msgstr "Concentrador de Acesso"
msgid "Access Point"
msgstr "Ponto de Acceso (AP)"
msgid "Actions"
msgstr "Ações"
msgid "Activate this network"
msgstr "Ativar esta rede"
msgid "Active <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Routes"
msgstr ""
"Rotas <abbr title=\"Protocolo de Internet Versão 4\">IPv4</abbr> ativas"
msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes"
msgstr ""
"Rotas <abbr title=\"Protocolo de Internet Versão 6\">IPv6</abbr> ativas"
msgid "Active Connections"
msgstr "Conexões Ativas"
msgid "Active DHCP Leases"
msgstr "Alocações DHCP ativas"
msgid "Active DHCPv6 Leases"
msgstr "Alocações DHCPv6 ativas"
msgid "Ad-Hoc"
msgstr "Ad-Hoc"
msgid "Add"
msgstr "Adicionar"
msgid "Add local domain suffix to names served from hosts files"
msgstr "Adiciona um sufixo de domínio local para equipamentos conhecidos"
msgid "Add new interface..."
msgstr "Adiciona uma nova interface..."
msgid "Additional Hosts files"
msgstr "Arquivos adicionais de equipamentos conhecidos (hosts)"
msgid "Additional servers file"
msgstr "Arquivo de servidores adicionais"
msgid "Address"
msgstr "Endereço"
msgid "Address to access local relay bridge"
msgstr "Endereço para acessar a ponte por retransmissão local "
msgid "Administration"
msgstr "Administração"
msgid "Advanced Settings"
msgstr "Opções Avançadas"
msgid "Aggregate Transmit Power(ACTATP)"
msgstr ""
"Potência de Transmissão Agregada (<abbr title=\"Aggregate Transmit Power"
"\">ACTATP</abbr>)"
msgid "Alert"
msgstr "Alerta"
msgid ""
"Allocate IP addresses sequentially, starting from the lowest available "
"address"
msgstr ""
"Alocar endereços IP sequencialmente, iniciando a partir do endereço mais "
"baixo disponível"
msgid "Allocate IP sequentially"
msgstr "Alocar endereços IP sequencialmente"
msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication"
msgstr ""
"Permitir autenticação <abbr title=\"Shell Seguro\">SSH</abbr> por senha"
msgid "Allow all except listed"
msgstr "Permitir todos, exceto os listados"
msgid "Allow legacy 802.11b rates"
msgstr ""
msgid "Allow listed only"
msgstr "Permitir somente os listados"
msgid "Allow localhost"
msgstr "Permitir computador local"
msgid "Allow remote hosts to connect to local SSH forwarded ports"
msgstr ""
"Permitir que equipamentos remotos conectem à portas locais encaminhadas por "
"SSH"
msgid "Allow root logins with password"
msgstr "Permite autenticação do root com senha"
msgid "Allow the <em>root</em> user to login with password"
msgstr "Permite que o usuário <em>root</em> se autentique utilizando senha"
msgid ""
"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services"
msgstr ""
"Permite respostas que apontem para 127.0.0.0/8 de servidores externos, por "
"exemplo, para os serviços RBL"
msgid "Allowed IPs"
msgstr "Endereços IP autorizados"
msgid "Always announce default router"
msgstr "Sempre anuncie o roteador padrão"
msgid "Annex"
msgstr "Anexo"
msgid "Annex A + L + M (all)"
msgstr "Anexos A + L + M (todo)"
msgid "Annex A G.992.1"
msgstr "Anexo A G.992.1"
msgid "Annex A G.992.2"
msgstr "Anexo A G.992.2"
msgid "Annex A G.992.3"
msgstr "Anexo A G.992.3"
msgid "Annex A G.992.5"
msgstr "Anexo A G.992.5"
msgid "Annex B (all)"
msgstr "Anexo B (todo)"
msgid "Annex B G.992.1"
msgstr "Anexo B G.992.1"
msgid "Annex B G.992.3"
msgstr "Anexo B G.992.3"
msgid "Annex B G.992.5"
msgstr "Anexo B G.992.5"
msgid "Annex J (all)"
msgstr "Anexo J (todo)"
msgid "Annex L G.992.3 POTS 1"
msgstr "Anexo L G.992.3 POTS 1"
msgid "Annex M (all)"
msgstr "Anexo M (todo)"
msgid "Annex M G.992.3"
msgstr "Anexo M G.992.3"
msgid "Annex M G.992.5"
msgstr "Anexo M G.992.5"
msgid "Announce as default router even if no public prefix is available."
msgstr ""
"Anuncie-se como rotador padrão mesmo se não existir um prefixo público."
msgid "Announced DNS domains"
msgstr "Domínios DNS anunciados"
msgid "Announced DNS servers"
msgstr "Servidores DNS anunciados"
msgid "Anonymous Identity"
msgstr "Identidade Anônima"
msgid "Anonymous Mount"
msgstr "Montagem Anônima"
msgid "Anonymous Swap"
msgstr "Espaço de Troca (swap) Anônimo"
msgid "Antenna 1"
msgstr "Antena 1"
msgid "Antenna 2"
msgstr "Antena 2"
msgid "Antenna Configuration"
msgstr "configuração de antena"
msgid "Any zone"
msgstr "Qualquer zona"
msgid "Apply request failed with status <code>%h</code>"
msgstr ""
msgid "Apply unchecked"
msgstr ""
msgid "Architecture"
msgstr ""
msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface"
msgstr ""
"Atribua uma parte do comprimento de cada prefixo IPv6 público para esta "
"interface"
msgid "Assign interfaces..."
msgstr "atribuir as interfaces"
msgid ""
"Assign prefix parts using this hexadecimal subprefix ID for this interface."
msgstr ""
"Atribua partes do prefixo usando este identificador hexadecimal do "
"subprefixo para esta interface"
msgid "Associated Stations"
msgstr "Estações associadas"
msgid "Associations"
msgstr ""
msgid "Auth Group"
msgstr "Grupo de Autenticação"
msgid "Authentication"
msgstr "Autenticação"
msgid "Authentication Type"
msgstr "Tipo de Autenticação"
msgid "Authoritative"
msgstr "Autoritário"
msgid "Authorization Required"
msgstr "Autorização Necessária"
msgid "Auto Refresh"
msgstr "Atualização Automática"
msgid "Automatic"
msgstr "Automático"
msgid "Automatic Homenet (HNCP)"
msgstr ""
"Rede Doméstica Automática (<abbr title=\"Homenet Control Protocol\">HNCP</"
"abbr>)"
msgid "Automatically check filesystem for errors before mounting"
msgstr ""
"Execute automaticamente a verificação do sistema de arquivos antes da "
"montagem do dispositivo"
msgid "Automatically mount filesystems on hotplug"
msgstr "Monte automaticamente o espaço de troca (swap) ao conectar"
msgid "Automatically mount swap on hotplug"
msgstr "Monte automaticamente o espaço de troca (swap) ao conectar"
msgid "Automount Filesystem"
msgstr "Montagem Automática de Sistema de Arquivo"
msgid "Automount Swap"
msgstr "Montagem Automática do Espaço de Troca (swap) "
msgid "Available"
msgstr "Disponível"
msgid "Available packages"
msgstr "Pacotes disponíveis"
msgid "Average:"
msgstr "Média:"
msgid "B43 + B43C"
msgstr "B43 + B43C"
msgid "B43 + B43C + V43"
msgstr "B43 + B43C + V43"
msgid "BR / DMR / AFTR"
msgstr "BR / DMR / AFTR"
msgid "BSSID"
msgstr "BSSID"
msgid "Back"
msgstr "Voltar"
msgid "Back to Overview"
msgstr "Voltar para Visão Geral"
msgid "Back to configuration"
msgstr "Voltar para configuração"
msgid "Back to overview"
msgstr "Voltar para visão geral"
msgid "Back to scan results"
msgstr "Voltar para os resultados da busca"
msgid "Backup / Flash Firmware"
msgstr "Cópia de Segurança / Gravar Firmware"
msgid "Backup / Restore"
msgstr "Cópia de Segurança / Restauração"
msgid "Backup file list"
msgstr "Lista de arquivos para a cópia de segurança"
msgid "Bad address specified!"
msgstr "Endereço especificado está incorreto!"
msgid "Band"
msgstr "Banda"
msgid ""
"Below is the determined list of files to backup. It consists of changed "
"configuration files marked by opkg, essential base files and the user "
"defined backup patterns."
msgstr ""
"Abaixo estão os arquivos para a cópia de segurança. Ela consiste de arquivos "
"de configuração alterados marcados pelo opkg, arquivos base essenciais e "
"padrões para a cópia de segurança definidos pelo usuário."
msgid "Bind interface"
msgstr "Interface Vinculada"
msgid "Bind only to specific interfaces rather than wildcard address."
msgstr ""
"Vincule somente para as explicitamenteinterfaces ao invés do endereço "
"coringa."
msgid "Bind the tunnel to this interface (optional)."
msgstr "Vincule o túnel a esta interface (opcional)"
msgid "Bitrate"
msgstr "Taxa de bits"
msgid "Bogus NX Domain Override"
msgstr "Substituir Domínio NX Falsos"
msgid "Bridge"
msgstr "Ponte"
msgid "Bridge interfaces"
msgstr "Juntar interfaces em uma ponte"
msgid "Bridge unit number"
msgstr "Número da ponte"
msgid "Bring up on boot"
msgstr "Levantar na iniciação"
msgid "Broadcom 802.11%s Wireless Controller"
msgstr "Controlador Wireless Broadcom 802.11%s"
msgid "Broadcom BCM%04x 802.11 Wireless Controller"
msgstr "Broadcom BCM%04x 802.11 Wireless Controlador"
msgid "Buffered"
msgstr "Buffered"
msgid ""
"Build/distribution specific feed definitions. This file will NOT be "
"preserved in any sysupgrade."
msgstr ""
"Fonte de pacotes específico da compilação/distribuição. Esta NÃO será "
"preservada em qualquer atualização do sistema."
msgid "CA certificate; if empty it will be saved after the first connection."
msgstr ""
"Certificado da CA; se em branco, será salvo depois da primeira conexão."
msgid "CPU usage (%)"
msgstr "Uso da CPU (%)"
msgid "Cancel"
msgstr "Cancelar"
msgid "Category"
msgstr "Categoria"
msgid "Chain"
msgstr "Cadeia"
msgid "Changes"
msgstr "Alterações"
msgid "Changes applied."
msgstr "Alterações aplicadas."
msgid "Changes have been reverted."
msgstr ""
msgid "Changes the administrator password for accessing the device"
msgstr "Muda a senha do administrador para acessar este dispositivo"
msgid "Channel"
msgstr "Canal"
msgid ""
"Channel %d is not available in the %s regulatory domain and has been auto-"
"adjusted to %d."
msgstr ""
msgid "Check"
msgstr "Verificar"
msgid "Check filesystems before mount"
msgstr ""
"Execute a verificação do sistema de arquivos antes da montagem do dispositivo"
msgid "Check this option to delete the existing networks from this radio."
msgstr "Marque esta opção para remover as redes existentes neste rádio."
msgid "Checksum"
msgstr "Soma de verificação"
msgid ""
"Choose the firewall zone you want to assign to this interface. Select "
"<em>unspecified</em> to remove the interface from the associated zone or "
"fill out the <em>create</em> field to define a new zone and attach the "
"interface to it."
msgstr ""
"Escolha a zona do firewall que você quer definir para esta interface. "
"Selecione <em>não especificado -ou- criar</em> para remover a interface da "
"zona associada ou preencha o campo para criar uma nova zona associada a esta "
"interface."
msgid ""
"Choose the network(s) you want to attach to this wireless interface or fill "
"out the <em>create</em> field to define a new network."
msgstr ""
"Escolha a rede (s) que deseja anexar a este interface wireless ou preencha o "
"<em> criar </em> campo para definir uma nova rede."
msgid "Cipher"
msgstr "Cifra"
msgid "Cisco UDP encapsulation"
msgstr "Encapsulamento UDP da Cisco"
msgid ""
"Click \"Generate archive\" to download a tar archive of the current "
"configuration files. To reset the firmware to its initial state, click "
"\"Perform reset\" (only possible with squashfs images)."
msgstr ""
"Clique em \"Gerar arquivo\" para baixar um arquivo tar com os arquivos de "
"configuração atuais. Para retornar o roteador para o seu estado inicial, "
"clique em \"Zerar configuração\" (somente possível para imagens squashfs)."
msgid "Client"
msgstr "Cliente"
msgid "Client ID to send when requesting DHCP"
msgstr ""
"Identificador do cliente enviando quando a requisição do DHCP é realizada"
msgid ""
"Close inactive connection after the given amount of seconds, use 0 to "
"persist connection"
msgstr ""
"Feche as conexões inativas após uma dada quantidade de segundos. Use 0 para "
"manter as conexões."
msgid "Close list..."
msgstr "Fechar a lista..."
msgid "Collecting data..."
msgstr "Coletando dados..."
msgid "Command"
msgstr "Comando"
msgid "Common Configuration"
msgstr "Configuração Comum"
msgid ""
"Complicates key reinstallation attacks on the client side by disabling "
"retransmission of EAPOL-Key frames that are used to install keys. This "
"workaround might cause interoperability issues and reduced robustness of key "
"negotiation especially in environments with heavy traffic load."
msgstr ""
msgid "Configuration"
msgstr "Configuração"
msgid "Configuration files will be kept."
msgstr "Os arquivos de configuração serão mantidos."
msgid "Configuration has been applied."
msgstr ""
msgid "Configuration has been rolled back!"
msgstr ""
msgid "Confirmation"
msgstr "Confirmação"
msgid "Connect"
msgstr "Conectar"
msgid "Connected"
msgstr "Conectado"
msgid "Connection Limit"
msgstr "Limite de conexão"
msgid "Connections"
msgstr "Conexões"
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
"settings such as the IP address or wireless security credentials."
msgstr ""
msgid "Country"
msgstr "País"
msgid "Country Code"
msgstr "Código do País"
msgid "Cover the following interface"
msgstr "Utilizando a seguinte interface"
msgid "Cover the following interfaces"
msgstr "Utilizando as seguintes interfaces"
msgid "Create / Assign firewall-zone"
msgstr "Criar / Atribuir a uma zona de firewall"
msgid "Create Interface"
msgstr "Criar Interface"
msgid "Create a bridge over multiple interfaces"
msgstr "Criar uma ponte juntando múltiplas interfaces"
msgid "Critical"
msgstr "Crítico"
msgid "Cron Log Level"
msgstr "Nível de Registro da Cron"
msgid "Custom Interface"
msgstr "Interface Personalizada"
msgid "Custom delegated IPv6-prefix"
msgstr "Prefixo IPv6 delegado personalizado"
msgid ""
"Custom feed definitions, e.g. private feeds. This file can be preserved in a "
"sysupgrade."
msgstr ""
"Definições de fonte de pacotes personalizadas, ex: fontes privadas. Este "
"arquivo será preservado em uma atualização do sistema."
msgid "Custom feeds"
msgstr "Fontes de pacotes customizadas"
msgid ""
"Custom files (certificates, scripts) may remain on the system. To prevent "
"this, perform a factory-reset first."
msgstr ""
msgid ""
"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode"
"\">LED</abbr>s if possible."
msgstr ""
"Se possível, personaliza o comportamento dos <abbr title=\"Diodo Emissor de "
"Luz\">LED</abbr>s."
msgid "DHCP Leases"
msgstr "Alocações do DHCP"
msgid "DHCP Server"
msgstr "Servidor DHCP"
msgid "DHCP and DNS"
msgstr "DHCP e DNS"
msgid "DHCP client"
msgstr "Cliente DHCP"
msgid "DHCP-Options"
msgstr "Opções de DHCP"
msgid "DHCPv6 Leases"
msgstr "Alocações DHCPv6"
msgid "DHCPv6 client"
msgstr "Cliente DHCPv6"
msgid "DHCPv6-Mode"
msgstr "Modo DHCPv6"
msgid "DHCPv6-Service"
msgstr "Serviço DHCPv6"
msgid "DNS"
msgstr "DNS"
msgid "DNS forwardings"
msgstr "Encaminhamentos DNS"
msgid "DNS-Label / FQDN"
msgstr "Rótulo DNS / FQDN"
msgid "DNSSEC"
msgstr "DNSSEC"
msgid "DNSSEC check unsigned"
msgstr "Verificar DNSSEC sem assinatura"
msgid "DPD Idle Timeout"
msgstr "Tempo de expiração para ociosidade do DPD"
msgid "DS-Lite AFTR address"
msgstr "Endereço DS-Lite AFTR"
msgid "DSL"
msgstr "DSL"
msgid "DSL Status"
msgstr "Estado da DSL"
msgid "DSL line mode"
msgstr "Modo de linha DSL"
msgid "DUID"
msgstr "DUID"
msgid "Data Rate"
msgstr "Taxa de Dados"
msgid "Debug"
msgstr "Depurar"
msgid "Default %d"
msgstr "Padrão %d"
msgid "Default gateway"
msgstr "Roteador Padrão"
msgid "Default is stateless + stateful"
msgstr "O padrão é sem estado + com estado"
msgid "Default state"
msgstr "Estado padrão"
msgid "Define a name for this network."
msgstr "Define um nome para esta rede."
msgid ""
"Define additional DHCP options, for example "
"\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS "
"servers to clients."
msgstr ""
"Define opções adicionais do DHCP. Por exemplo "
"\"<code>6,192.168.2.1,192.168.2.2</code>\" que anuncia diferentes servidores "
"DNS para os clientes."
msgid "Delete"
msgstr "Apagar"
msgid "Delete this network"
msgstr "Apagar esta rede"
msgid "Description"
msgstr "Descrição"
msgid "Design"
msgstr "Tema"
msgid "Destination"
msgstr "Destino"
msgid "Device"
msgstr "Dispositivo"
msgid "Device Configuration"
msgstr "Configuração do Dispositivo"
msgid "Device is rebooting..."
msgstr "O dispositivo está reiniciando..."
msgid "Device unreachable"
msgstr "Dispositivo não alcançável"
msgid "Device unreachable!"
msgstr ""
msgid "Diagnostics"
msgstr "Diagnóstico"
msgid "Dial number"
msgstr "Número de discagem"
msgid "Directory"
msgstr "Diretório"
msgid "Disable"
msgstr "Desabilitar"
msgid ""
"Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for "
"this interface."
msgstr ""
"Desabilita <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> "
"para esta interface."
msgid "Disable DNS setup"
msgstr "Desabilita a configuração do DNS"
msgid "Disable Encryption"
msgstr "Desabilitar Cifragem"
msgid "Disabled"
msgstr "Desabilitado"
msgid "Disabled (default)"
msgstr "Desabilitado (padrão)"
msgid "Discard upstream RFC1918 responses"
msgstr ""
"Descartar respostas de servidores externos para redes privadas (RFC1918)"
msgid "Dismiss"
msgstr ""
msgid "Displaying only packages containing"
msgstr "Mostre somente os pacotes contendo"
msgid "Distance Optimization"
msgstr "Otimização de Distância"
msgid "Distance to farthest network member in meters."
msgstr "Distância para o computador mais distante da rede (em metros)."
msgid "Distribution feeds"
msgstr "Fontes de pacotes da distribuição"
msgid "Diversity"
msgstr "Diversidade"
msgid ""
"Dnsmasq is a combined <abbr title=\"Dynamic Host Configuration Protocol"
"\">DHCP</abbr>-Server and <abbr title=\"Domain Name System\">DNS</abbr>-"
"Forwarder for <abbr title=\"Network Address Translation\">NAT</abbr> "
"firewalls"
msgstr ""
"Dnsmasq é um servidor combinado de <abbr title=\"Protocolo de Configuração "
"Dinâmica de Hosts\">DHCP</abbr> e <abbr title=\"Sistema de Nomes de Domínios"
"\">DNS</abbr> para firewalls <abbr title=\"Tradução de Endereço de Rede"
"\">NAT</abbr>"
msgid "Do not cache negative replies, e.g. for not existing domains"
msgstr ""
"Não mantenha em cache para respostas negativas como, por exemplo, para os "
"domínios inexistentes"
msgid "Do not forward requests that cannot be answered by public name servers"
msgstr ""
"Não encaminhe requisições que não podem ser respondidas por servidores de "
"nomes públicos"
msgid "Do not forward reverse lookups for local networks"
msgstr "Não encaminhe buscas por endereço reverso das redes local"
msgid "Domain required"
msgstr "Requerer domínio"
msgid "Domain whitelist"
msgstr "Lista branca de domínios"
msgid "Don't Fragment"
msgstr "Não Fragmentar"
msgid ""
"Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without "
"<abbr title=\"Domain Name System\">DNS</abbr>-Name"
msgstr ""
"Não encaminhar consultas <abbr title=\"Sistema de Nomes de Domínios\">DNS</"
"abbr> sem o nome completo do <abbr title=\"Sistema de Nomes de Domínios"
"\">DNS</abbr>"
msgid "Download and install package"
msgstr "Baixe e instale o pacote"
msgid "Download backup"
msgstr "Baixar a cópia de segurança"
msgid "Downstream SNR offset"
msgstr ""
msgid "Dropbear Instance"
msgstr "Dropbear"
msgid ""
"Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access "
"and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server"
msgstr ""
"Dropbear oferece um acesso shell seguro à rede <abbr title=\"Shell Seguro"
"\">(SSH)</abbr> e um servidor <abbr title=\"Cópia Segura\">SCP</abbr> "
"integrado"
msgid "Dual-Stack Lite (RFC6333)"
msgstr "Duas Pilhas Leve (RFC6333)"
msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
msgstr ""
"<abbr title=\"Protocolo de Configuração Dinâmica de Hosts\">DHCP</abbr> "
"Dinâmico"
msgid "Dynamic tunnel"
msgstr "Túnel dinâmico"
msgid ""
"Dynamically allocate DHCP addresses for clients. If disabled, only clients "
"having static leases will be served."
msgstr ""
"Aloca dinamicamente os endereços do DHCP para os clientes. Se desabilitado, "
"somente os clientes com atribuições estáticas serão servidos. "
msgid "EA-bits length"
msgstr "Comprimento dos bits EA"
msgid "EAP-Method"
msgstr "Método EAP"
msgid "Edit"
msgstr "Editar"
msgid ""
"Edit the raw configuration data above to fix any error and hit \"Save\" to "
"reload the page."
msgstr ""
"Edite os dados de configuração brutos abaixo para arrumar qualquer erro e "
"clique em \"Salvar\" para recarregar a página."
msgid "Edit this interface"
msgstr "Editar esta interface"
msgid "Edit this network"
msgstr "Editar esta rede"
msgid "Emergency"
msgstr "Emergência"
msgid "Enable"
msgstr "Ativar"
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
"snooping"
msgstr ""
msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
msgstr "Ativar <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
msgid "Enable HE.net dynamic endpoint update"
msgstr "Ativar a atualização de ponto final dinâmico HE.net"
msgid "Enable IPv6 negotiation"
msgstr "Ativar a negociação de IPv6"
msgid "Enable IPv6 negotiation on the PPP link"
msgstr "Ativar a negociação de IPv6 no enlace PPP"
msgid "Enable Jumbo Frame passthrough"
msgstr "Ativar o encaminhamento de quadros jumbos (Jumbo Frames)"
msgid "Enable NTP client"
msgstr "Ativar o cliente <abbr title=\"Network Time Protocol\">NTP</abbr>"
msgid "Enable Single DES"
msgstr "Habilitar DES Simples"
msgid "Enable TFTP server"
msgstr "Ativar servidor TFTP"
msgid "Enable VLAN functionality"
msgstr "Ativar funcionalidade de VLAN"
msgid "Enable WPS pushbutton, requires WPA(2)-PSK"
msgstr "Habilite o botão WPS. requer WPA(2)-PSK"
msgid "Enable key reinstallation (KRACK) countermeasures"
msgstr ""
msgid "Enable learning and aging"
msgstr "Ativar o aprendizado e obsolescência"
msgid "Enable mirroring of incoming packets"
msgstr "Habilitar espelhamento dos pacotes entrantes"
msgid "Enable mirroring of outgoing packets"
msgstr "Habilitar espelhamento dos pacotes saintes"
msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets."
msgstr "Habilita o campo DF (Não Fragmentar) dos pacotes encapsulados."
msgid "Enable this mount"
msgstr "Ativar esta montagem"
msgid "Enable this swap"
msgstr "Ativar este espaço de troca (swap)"
msgid "Enable/Disable"
msgstr "Ativar/Desativar"
msgid "Enabled"
msgstr "Ativado"
msgid "Enables IGMP snooping on this bridge"
msgstr ""
msgid ""
"Enables fast roaming among access points that belong to the same Mobility "
"Domain"
msgstr ""
"Ativa a troca rápida entre pontos de acesso que pertencem ao mesmo Domínio "
"de Mobilidade"
msgid "Enables the Spanning Tree Protocol on this bridge"
msgstr "Ativa o protocolo STP nesta ponte"
msgid "Encapsulation mode"
msgstr "Modo de encapsulamento"
msgid "Encryption"
msgstr "Cifragem"
msgid "Endpoint Host"
msgstr "Equipamento do ponto final"
msgid "Endpoint Port"
msgstr "Porta do ponto final"
msgid "Erasing..."
msgstr "Apagando..."
msgid "Error"
msgstr "Erro"
msgid "Errored seconds (ES)"
msgstr "Segundos com erro (ES)"
msgid "Ethernet Adapter"
msgstr "Adaptador Ethernet"
msgid "Ethernet Switch"
msgstr "Switch Ethernet"
msgid "Exclude interfaces"
msgstr "Excluir interfaces"
msgid "Expand hosts"
msgstr "Expandir arquivos de equipamentos conhecidos (hosts)"
msgid "Expires"
msgstr "Expira"
msgid ""
"Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)."
msgstr ""
"Tempo de expiração dos endereços atribuídos. Mínimo é 2 minutos (<code>2m</"
"code>)."
msgid "External"
msgstr "Externo"
msgid "External R0 Key Holder List"
msgstr "Lista dos Detentor de Chave R0 Externa"
msgid "External R1 Key Holder List"
msgstr "Lista dos Detentor de Chave R1 Externa"
msgid "External system log server"
msgstr "Servidor externo de registros do sistema (syslog)"
msgid "External system log server port"
msgstr "Porta do servidor externo de registro do sistema (syslog)"
msgid "External system log server protocol"
msgstr "Protocolo do servidor externo de registro do sistema (syslog)"
msgid "Extra SSH command options"
msgstr "Opções adicionais do comando SSH"
msgid "FT over DS"
msgstr ""
msgid "FT over the Air"
msgstr ""
msgid "FT protocol"
msgstr ""
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr ""
msgid "File"
msgstr "Arquivo"
msgid "Filename of the boot image advertised to clients"
msgstr "Nome do arquivo da imagem de boot anunciada para os clientes"
msgid "Filesystem"
msgstr "Sistema de Arquivos"
msgid "Filter"
msgstr "Filtro"
msgid "Filter private"
msgstr "Filtrar endereços privados"
msgid "Filter useless"
msgstr "Filtrar consultas inúteis"
msgid ""
"Find all currently attached filesystems and swap and replace configuration "
"with defaults based on what was detected"
msgstr ""
"Encontre todos os sistemas de arquivos e espaços de troca (swap) atualmente "
"conectados e substitua a configuração com valores padrão baseados no que foi "
"detectado"
msgid "Find and join network"
msgstr "Procurar e conectar à rede"
msgid "Find package"
msgstr "Procurar pacote"
msgid "Finish"
msgstr "Terminar"
msgid "Firewall"
msgstr "Firewall"
msgid "Firewall Mark"
msgstr ""
msgid "Firewall Settings"
msgstr "Configurações do Firewall"
msgid "Firewall Status"
msgstr "Estado do Firewall"
msgid "Firmware File"
msgstr "Arquivo da Firmware"
msgid "Firmware Version"
msgstr "Versão do Firmware"
msgid "Fixed source port for outbound DNS queries"
msgstr "Porta de origem fixa para saída de consultas DNS"
msgid "Flash Firmware"
msgstr "Gravar Firmware"
msgid "Flash image..."
msgstr "Gravar imagem..."
msgid "Flash new firmware image"
msgstr "Gravar nova imagem do firmware"
msgid "Flash operations"
msgstr "Operações na memória flash"
msgid "Flashing..."
msgstr "Gravando na flash..."
msgid "Force"
msgstr "Forçar"
msgid "Force CCMP (AES)"
msgstr "Forçar CCMP (AES)"
msgid "Force DHCP on this network even if another server is detected."
msgstr "Forçar o DHCP nesta rede mesmo se outro servidor for detectado."
msgid "Force TKIP"
msgstr "Forçar TKIP"
msgid "Force TKIP and CCMP (AES)"
msgstr "Forçar TKIP e CCMP (AES)"
msgid "Force link"
msgstr ""
msgid "Force use of NAT-T"
msgstr "Force o uso do NAT-T"
msgid "Form token mismatch"
msgstr "Chave eletrônica do formulário não casa"
msgid "Forward DHCP traffic"
msgstr "Encaminhar tráfego DHCP"
msgid "Forward Error Correction Seconds (FECS)"
msgstr ""
"Segundos a frente de correção de erros ( <abbr title=\"Forward Error "
"Correction Seconds\">FECS</abbr>)"
msgid "Forward broadcast traffic"
msgstr "Encaminhar tráfego broadcast"
msgid "Forward mesh peer traffic"
msgstr ""
msgid "Forwarding mode"
msgstr "Modo de encaminhamento"
msgid "Fragmentation Threshold"
msgstr "Limiar de Fragmentação"
msgid "Frame Bursting"
msgstr "Explosão de Quadros (Frame Bursting)"
msgid "Free"
msgstr "Livre"
msgid "Free space"
msgstr "Espaço livre"
msgid ""
"Further information about WireGuard interfaces and peers at <a href=\"http://"
"wireguard.io\">wireguard.io</a>."
msgstr ""
"Mais informações sobre interfaces e parceiros WireGuard em <a href=\"http://"
"wireguard.io\">wireguard.io</a>."
msgid "GHz"
msgstr "GHz"
msgid "GPRS only"
msgstr "Somente GPRS"
msgid "Gateway"
msgstr "Roteador"
msgid "Gateway ports"
msgstr "Acesso remoto a portas encaminhadas"
msgid "General Settings"
msgstr "Configurações Gerais"
msgid "General Setup"
msgstr "Configurações Gerais"
msgid "General options for opkg"
msgstr "Opções gerais para o opkg"
msgid "Generate Config"
msgstr "Gerar Configuração"
msgid "Generate PMK locally"
msgstr ""
msgid "Generate archive"
msgstr "Gerar arquivo"
msgid "Generic 802.11%s Wireless Controller"
msgstr "Generico 802.11%s Wireless Controlador"
msgid "Given password confirmation did not match, password not changed!"
msgstr "A senha de confirmação informada não casa. Senha não alterada!"
msgid "Global Settings"
msgstr "Configurações Globais"
msgid "Global network options"
msgstr "Opções de rede globais"
msgid "Go to password configuration..."
msgstr "Ir para a configuração de senha..."
msgid "Go to relevant configuration page"
msgstr "Ir para a página de configuração pertinente"
msgid "Group Password"
msgstr "Senha do Grupo"
msgid "Guest"
msgstr "Convidado\t"
msgid "HE.net password"
msgstr "Senha HE.net"
msgid "HE.net username"
msgstr "Usuário do HE.net"
msgid "HT mode (802.11n)"
msgstr ""
"Modo <abbr title=\"High Throughput/Alta Taxa de Transferência\">HT</abbr> "
"(802.11n)"
msgid "Hang Up"
msgstr "Suspender"
msgid "Header Error Code Errors (HEC)"
msgstr ""
"Erros de Código de Erro de Cabeçalho (<abbr title=\"Header Error Code\">HEC</"
"abbr>)"
msgid ""
"Here you can configure the basic aspects of your device like its hostname or "
"the timezone."
msgstr ""
"Aqui você pode configurar os aspectos básicos do seu equipamento, como o "
"nome do equipamento ou o fuso horário."
msgid ""
"Here you can paste public SSH-Keys (one per line) for SSH public-key "
"authentication."
msgstr ""
"Aqui você pode colar as chaves públicas do SSH (uma por linha) para a "
"autenticação por chaves do SSH."
msgid "Hermes 802.11b Wireless Controller"
msgstr "Hermes 802.11b Wireless Controlador"
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr ""
"Ocultar <abbr title=\"Identificador de Conjunto de Serviços Estendidos"
"\">ESSID</abbr>"
msgid "Host"
msgstr "Equipamento"
msgid "Host entries"
msgstr "Entradas de Equipamentos"
msgid "Host expiry timeout"
msgstr "Tempo limite de expiração de equipamento"
msgid "Host-<abbr title=\"Internet Protocol Address\">IP</abbr> or Network"
msgstr ""
"<abbr title=\"Endereço do Protocolo de Internet\">IP</abbr> do Equipamento "
"ou Rede"
msgid "Hostname"
msgstr "Nome do equipamento"
msgid "Hostname to send when requesting DHCP"
msgstr "Nome do equipamento enviado quando requisitar DHCP"
msgid "Hostnames"
msgstr "Nome dos equipamentos"
msgid "Hybrid"
msgstr "Híbrido"
msgid "IKE DH Group"
msgstr ""
"Grupo <abbr title=\"Diffie-Hellman\">DH</abbr> do <abbr title=\"Internet "
"Key Exchange/Troca de Chaves na Internet\">IKE</abbr>"
msgid "IP Addresses"
msgstr "Endereços IP"
msgid "IP address"
msgstr "Endereço IP"
msgid "IPv4"
msgstr "IPv4"
msgid "IPv4 Firewall"
msgstr "Firewall para IPv4"
msgid "IPv4 Upstream"
msgstr ""
msgid "IPv4 address"
msgstr "Endereço IPv4"
msgid "IPv4 and IPv6"
msgstr "IPv4 e IPv6"
msgid "IPv4 assignment length"
msgstr "Tamanho da atribuição IPv4"
msgid "IPv4 broadcast"
msgstr "Broadcast IPv4"
msgid "IPv4 gateway"
msgstr "Roteador padrão IPv4"
msgid "IPv4 netmask"
msgstr "Máscara de rede IPv4"
msgid "IPv4 only"
msgstr "Somente IPv4"
msgid "IPv4 prefix"
msgstr "Prefixo IPv4"
msgid "IPv4 prefix length"
msgstr "Tamanho do prefixo IPv4"
msgid "IPv4-Address"
msgstr "Endereço IPv4"
msgid "IPv4-in-IPv4 (RFC2003)"
msgstr "IPv4-in-IPv4 (RFC2003)"
msgid "IPv6"
msgstr "IPv6"
msgid "IPv6 Firewall"
msgstr "Firewall para IPv6"
msgid "IPv6 Neighbours"
msgstr "Vizinhos IPv6"
msgid "IPv6 Settings"
msgstr "Configurações IPv6"
msgid "IPv6 ULA-Prefix"
msgstr ""
"Prefixo <abbr title=\"Unique Local Address/Endereço Local Único\">ULA</abbr> "
"IPv6"
msgid "IPv6 Upstream"
msgstr ""
msgid "IPv6 address"
msgstr "Endereço IPv6"
msgid "IPv6 assignment hint"
msgstr "Sugestão de atribuição IPv6"
msgid "IPv6 assignment length"
msgstr "Tamanho da atribuição IPv6"
msgid "IPv6 gateway"
msgstr "Roteador padrão do IPv6"
msgid "IPv6 only"
msgstr "Somente IPv6"
msgid "IPv6 prefix"
msgstr "Prefixo IPv6"
msgid "IPv6 prefix length"
msgstr "Tamanho Prefixo IPv6"
msgid "IPv6 routed prefix"
msgstr "Prefixo roteável IPv6"
msgid "IPv6 suffix"
msgstr ""
msgid "IPv6-Address"
msgstr "Endereço IPv6"
msgid "IPv6-PD"
msgstr "IPv6-PD"
msgid "IPv6-in-IPv4 (RFC4213)"
msgstr "IPv6-in-IPv4 (RFC4213)"
msgid "IPv6-over-IPv4 (6rd)"
msgstr "IPv6-sobre-IPv4 (6rd)"
msgid "IPv6-over-IPv4 (6to4)"
msgstr "IPv6-sobre-IPv4 (6to4)"
msgid "Identity"
msgstr "Identidade PEAP"
msgid "If checked, 1DES is enabled"
msgstr "Se marcado, a cifragem 1DES será habilitada"
msgid "If checked, encryption is disabled"
msgstr "Se marcado, a cifragem estará desabilitada"
msgid ""
"If specified, mount the device by its UUID instead of a fixed device node"
msgstr ""
"Se especificado, monta o dispositivo pelo seu UUID ao invés de um nó de "
"dispositivo fixo"
msgid ""
"If specified, mount the device by the partition label instead of a fixed "
"device node"
msgstr ""
"Se especificado, monta o dispositivo pela etiqueta da partiçãoo ao invés de "
"um nó de dispositivo fixo"
msgid "If unchecked, no default route is configured"
msgstr "Se desmarcado, nenhuma rota padrão será configurada"
msgid "If unchecked, the advertised DNS server addresses are ignored"
msgstr ""
"Se desmarcado, os endereços dos servidores DNS anunciados serão ignorados"
msgid ""
"If your physical memory is insufficient unused data can be temporarily "
"swapped to a swap-device resulting in a higher amount of usable <abbr title="
"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very "
"slow process as the swap-device cannot be accessed with the high datarates "
"of the <abbr title=\"Random Access Memory\">RAM</abbr>."
msgstr ""
"Se a sua memória física for insuficiente, os dados não utilizados poderão "
"ser armazenados temporariamente em um dispositivo swap, resultando em uma "
"maior quantidade de memória <abbr title=\"Memória de Acesso Aleatório\">RAM</"
"abbr> utilizável. Esteja ciente de que a troca de dados (swap) é um processo "
"muito lento, uma vez que o dispositivo swap não pode ser acessado com taxas "
"de transferência tão altas com a memória <abbr title=\"Memória de Acesso "
"Aleatório\">RAM</abbr>."
msgid "Ignore <code>/etc/hosts</code>"
msgstr "Ignorar <code>/etc/hosts</code>"
msgid "Ignore interface"
msgstr "Ignorar interface"
msgid "Ignore resolve file"
msgstr "Ignorar arquivo de resolução de nomes (resolv.conf)"
msgid "Image"
msgstr "Imagem"
msgid "In"
msgstr "Entrada"
msgid ""
"In order to prevent unauthorized access to the system, your request has been "
"blocked. Click \"Continue »\" below to return to the previous page."
msgstr ""
"Para prevenir acesso não autorizado neste sistema, sua requisição foi "
"bloqueada. Clique abaixo em \"Continuar »\" para retornar à página anterior."
msgid "Inactivity timeout"
msgstr "Tempo limite de inatividade"
msgid "Inbound:"
msgstr "Entrando:"
msgid "Info"
msgstr "Informação"
msgid "Initscript"
msgstr "Script de iniciação"
msgid "Initscripts"
msgstr "Scripts de iniciação"
msgid "Install"
msgstr "Instalar"
msgid "Install iputils-traceroute6 for IPv6 traceroute"
msgstr "Instale iputils-traceroute6 para rastrear rotas IPv6"
msgid "Install package %q"
msgstr "Instalar pacote %q"
msgid "Install protocol extensions..."
msgstr "Instalar extensões de protocolo..."
msgid "Installed packages"
msgstr "Pacotes instalados"
msgid "Interface"
msgstr "Interface"
msgid "Interface %q device auto-migrated from %q to %q."
msgstr ""
msgid "Interface Configuration"
msgstr "Configuração da Interface"
msgid "Interface Overview"
msgstr "Visão Geral da Interface"
msgid "Interface is reconnecting..."
msgstr "A interface está reconectando..."
msgid "Interface is shutting down..."
msgstr "A interface está desligando..."
msgid "Interface name"
msgstr "Nome da Interface"
msgid "Interface not present or not connected yet."
msgstr "A interface não está presente ou não está conectada ainda."
msgid "Interface reconnected"
msgstr "Interface reconectada"
msgid "Interface shut down"
msgstr "Interface desligada"
msgid "Interfaces"
msgstr "Interfaces"
msgid "Internal"
msgstr "Interno"
msgid "Internal Server Error"
msgstr "erro no servidor interno"
msgid "Invalid"
msgstr "Valor inválido"
msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed."
msgstr ""
"O valor informado do ID da VLAN é inválido! Somente valores entre %d e %d "
"são permitidos."
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr ""
"O valor informado do ID da VLAN é inválido! Somente valores únicos são "
"permitidos."
msgid "Invalid username and/or password! Please try again."
msgstr "Usuário e/ou senha inválida! Por favor, tente novamente."
msgid "Isolate Clients"
msgstr ""
msgid ""
"It appears that you are trying to flash an image that does not fit into the "
"flash memory, please verify the image file!"
msgstr ""
"A imagem que está a tentar carregar aparenta nao caber na flash do "
"equipamento. Por favor verifique o arquivo da imagem!"
msgid "JavaScript required!"
msgstr "É necessário JavaScript!"
msgid "Join Network"
msgstr "Conectar à Rede"
msgid "Join Network: Wireless Scan"
msgstr "Conectar à Rede: Busca por Rede Sem Fio"
msgid "Joining Network: %q"
msgstr "Juntando-se à rede %q"
msgid "Keep settings"
msgstr "Manter configurações"
msgid "Kernel Log"
msgstr "Registo do Kernel"
msgid "Kernel Version"
msgstr "Versão do Kernel"
msgid "Key"
msgstr "Chave"
msgid "Key #%d"
msgstr "Chave #%d"
msgid "Kill"
msgstr "Matar"
msgid "L2TP"
msgstr "L2TP"
msgid "L2TP Server"
msgstr "Servidor L2TP"
msgid "LCP echo failure threshold"
msgstr "Limite de falha no eco do LCP"
msgid "LCP echo interval"
msgstr "Intervalo do eco do LCP"
msgid "LLC"
msgstr "LLC"
msgid "Label"
msgstr "Etiqueta"
msgid "Language"
msgstr "Idioma"
msgid "Language and Style"
msgstr "Idioma e Estilo"
msgid "Latency"
msgstr "Latência"
msgid "Leaf"
msgstr "Folha"
msgid "Lease time"
msgstr "Tempo de concessão"
msgid "Lease validity time"
msgstr "Tempo de validade da atribuição"
msgid "Leasefile"
msgstr "Arquivo de atribuições"
msgid "Leasetime remaining"
msgstr "Tempo restante da atribuição"
msgid "Leave empty to autodetect"
msgstr "Deixe vazio para detectar automaticamente"
msgid "Leave empty to use the current WAN address"
msgstr "Deixe vazio para usar o endereço WAN atual"
msgid "Legend:"
msgstr "Legenda:"
msgid "Limit"
msgstr "Limite"
msgid "Limit DNS service to subnets interfaces on which we are serving DNS."
msgstr ""
"Limite o serviço DNS para subredes das interfaces nas quais estamos servindo "
"DNS."
msgid "Limit listening to these interfaces, and loopback."
msgstr "Escute somente nestas interfaces e na interface local (loopback) "
msgid "Line Attenuation (LATN)"
msgstr "Atenuação de Linha (<abbr title=\"Line Attenuation\">LATN</abbr>)"
msgid "Line Mode"
msgstr "Modo da Linha"
msgid "Line State"
msgstr "Estado da Linha"
msgid "Line Uptime"
msgstr "Tempo de Atividade da Linha"
msgid "Link On"
msgstr "Enlace Ativo"
msgid ""
"List of <abbr title=\"Domain Name System\">DNS</abbr> servers to forward "
"requests to"
msgstr ""
"Lista dos servidores <abbr title=\"Domain Name System\">DNS</abbr> para "
"encaminhar as requisições"
msgid ""
"List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-"
"Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID "
"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key "
"from the R0KH that the STA used during the Initial Mobility Domain "
"Association."
msgstr ""
"Lista dos R0KHs no mesmo Domínio de Mobilidade. <br /> Formato: Endereço "
"MAC, Identificador NAS, chave de 128 bits como cadeia hexadecimal. <br /> "
"Esta lista é usada para mapear o Identificador R0KH (Identificador NAS) para "
"um endereço MAC de destino ao solicitar a chave PMK-R1 a partir do R0KH que "
"o STA usado durante a Associação de Domínio de Mobilidade Inicial."
msgid ""
"List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID "
"as 6 octets with colons,128-bit key as hex string. <br />This list is used "
"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the "
"R0KH. This is also the list of authorized R1KHs in the MD that can request "
"PMK-R1 keys."
msgstr ""
"Lista dos R1KHs no mesmo Domínio de Mobilidade. <br /> Formato: Endereço "
"MAC, R1KH-ID como 6 octetos com dois pontos, chave de 128 bits como cadeia "
"hexadecimal. <br /> Esta lista é usada para mapear o identificador R1KH para "
"um endereço MAC de destino ao enviar a chave PMK-R1 a partir do R0KH. Esta é "
"também a lista de R1KHs autorizados no MD que podem solicitar chaves PMK-R1."
msgid "List of SSH key files for auth"
msgstr "Lista de arquivos de chaves SSH para autenticação"
msgid "List of domains to allow RFC1918 responses for"
msgstr ""
"Lista dos domínios para os quais será permitido respostas apontando para "
"redes privadas (RFC1918)"
msgid "List of hosts that supply bogus NX domain results"
msgstr ""
"Lista de servidores <abbr title=\"Domain Name System\">DNS</abbr> que "
"fornecem resultados errados para consultas a domínios inexistentes (NX)"
msgid "Listen Interfaces"
msgstr "Interfaces de Escuta"
msgid "Listen Port"
msgstr "Porta de Escuta"
msgid "Listen only on the given interface or, if unspecified, on all"
msgstr ""
"Escuta apenas na interface especificada. Se não especificado, escuta em todas"
msgid "Listening port for inbound DNS queries"
msgstr "Porta de escuta para a entrada das consultas DNS"
msgid "Load"
msgstr "Carga"
msgid "Load Average"
msgstr "Carga Média"
msgid "Loading"
msgstr "Carregando"
msgid "Local IP address to assign"
msgstr "Endereço IP local para atribuir"
msgid "Local IPv4 address"
msgstr "Endereço IPv4 local"
msgid "Local IPv6 address"
msgstr "Endereço IPv6 local"
msgid "Local Service Only"
msgstr "Somente Serviço Local"
msgid "Local Startup"
msgstr "Iniciação Local"
msgid "Local Time"
msgstr "Hora Local"
msgid "Local domain"
msgstr "Domínio Local"
msgid ""
"Local domain specification. Names matching this domain are never forwarded "
"and are resolved from DHCP or hosts files only"
msgstr ""
"Especificação do domínio local. Nomes que casam com este domínio nunca serão "
"encaminhados e são resolvidos somente pelo DHCP ou pelo arquivos de "
"equipamentos conhecidos (hosts)"
msgid "Local domain suffix appended to DHCP names and hosts file entries"
msgstr ""
"Sufixo do domínio local adicionado aos nomes no DHCP e nas entradas dos "
"arquivo de equipamentos conhecidos (hosts)"
msgid "Local server"
msgstr "Servidor local"
msgid ""
"Localise hostname depending on the requesting subnet if multiple IPs are "
"available"
msgstr ""
"Localizar o nome do equipamento dependendo da subrede requisitante se "
"mútliplos endereços IPs estiverem disponíveis"
msgid "Localise queries"
msgstr "Localizar consultas"
msgid "Locked to channel %s used by: %s"
msgstr "Travado no canal %s usado por: %s"
msgid "Log output level"
msgstr "Nível de detalhamento de saída dos registros"
msgid "Log queries"
msgstr "Registar as consultas"
msgid "Logging"
msgstr "Registrando os eventos"
msgid "Login"
msgstr "Entrar"
msgid "Logout"
msgstr "Sair"
msgid "Loss of Signal Seconds (LOSS)"
msgstr ""
"Segundos de Perda de Sinal (<abbr title=\"Loss of Signal Seconds\">LOSS</"
"abbr>)"
msgid "Lowest leased address as offset from the network address."
msgstr "O endereço mais baixo concedido como deslocamento do endereço da rede."
msgid "MAC-Address"
msgstr "Endereço MAC"
msgid "MAC-Address Filter"
msgstr "Filtro de Endereço MAC"
msgid "MAC-Filter"
msgstr "Filtro de MAC"
msgid "MAC-List"
msgstr "Lista de MAC"
msgid "MAP / LW4over6"
msgstr "MAP / LW4over6"
msgid "MB/s"
msgstr "MB/s"
msgid "MD5"
msgstr "MD5"
msgid "MHz"
msgstr "MHz"
msgid "MTU"
msgstr ""
"<abbr title=\"Maximum Transmission Unit/Unidade Máxima de Transmissão\">MTU</"
"abbr>"
msgid ""
"Make sure to clone the root filesystem using something like the commands "
"below:"
msgstr ""
"Certifique-se que clonou o sistema de arquivos raiz com algo como o comando "
"abaixo:"
msgid "Manual"
msgstr "Manual"
msgid "Max. Attainable Data Rate (ATTNDR)"
msgstr ""
"Taxa de Dados Atingível Máxima (<abbr title=\"Maximum Attainable Data Rate"
"\">ATTNDR</abbr>)"
msgid "Maximum allowed number of active DHCP leases"
msgstr "Número máximo permitido de alocações DHCP ativas"
msgid "Maximum allowed number of concurrent DNS queries"
msgstr "Número máximo permitido de consultas DNS concorrentes"
msgid "Maximum allowed size of EDNS.0 UDP packets"
msgstr "Tamanho máximo permitido dos pacotes UDP EDNS.0"
msgid "Maximum amount of seconds to wait for the modem to become ready"
msgstr "Tempo máximo, em segundos, para esperar que o modem fique pronto"
msgid ""
"Maximum length of the name is 15 characters including the automatic protocol/"
"bridge prefix (br-, 6in4-, pppoe- etc.)"
msgstr ""
"Comprimento máximo do nome é de 15 caracteres, incluindo o prefixo "
"automático do protocolo/ponte (br-, 6in4- pppoe-, etc.)"
msgid "Maximum number of leased addresses."
msgstr "Número máximo de endereços atribuídos."
msgid "Mbit/s"
msgstr "Mbit/s"
msgid "Memory"
msgstr "Memória"
msgid "Memory usage (%)"
msgstr "Uso da memória (%)"
msgid "Mesh Id"
msgstr ""
msgid "Metric"
msgstr "Métrica"
msgid "Mirror monitor port"
msgstr "Porta de monitoramento do espelho"
msgid "Mirror source port"
msgstr "Porta de origem do espelho"
msgid "Missing protocol extension for proto %q"
msgstr "Extensão para o protocolo %q está ausente"
msgid "Mobility Domain"
msgstr "Domínio da Mobilidade"
msgid "Mode"
msgstr "Modo"
msgid "Model"
msgstr "Modelo"
msgid "Modem device"
msgstr "Dispositivo do Modem"
msgid "Modem init timeout"
msgstr "Estouro de tempo da iniciação do modem"
msgid "Monitor"
msgstr "Monitor"
msgid "Mount Entry"
msgstr "Entrada de Montagem"
msgid "Mount Point"
msgstr "Ponto de Montagem"
msgid "Mount Points"
msgstr "Pontos de Montagem"
msgid "Mount Points - Mount Entry"
msgstr "Pontos de Montagem - Entrada de Montagem"
msgid "Mount Points - Swap Entry"
msgstr "Pontos de Montagem - Entrada da Swap"
msgid ""
"Mount Points define at which point a memory device will be attached to the "
"filesystem"
msgstr ""
"Pontos de montagem definem em que ponto um dispositivo de armazenamento será "
"anexado ao sistema de arquivos"
msgid "Mount filesystems not specifically configured"
msgstr "Monte sistemas de arquivos não especificamente configurados"
msgid "Mount options"
msgstr "Opções de montagem"
msgid "Mount point"
msgstr "Ponto de montagem"
msgid "Mount swap not specifically configured"
msgstr "Montar espalho de troca (swap) não especificamente configurado"
msgid "Mounted file systems"
msgstr "Sistemas de arquivos montados"
msgid "Move down"
msgstr "Mover para baixo"
msgid "Move up"
msgstr "Mover para cima"
msgid "Multicast address"
msgstr "Endereço de Multicast"
msgid "NAS ID"
msgstr "NAS ID"
msgid "NAT-T Mode"
msgstr "Modo NAT-T"
msgid "NAT64 Prefix"
msgstr "Prefixo NAT64"
msgid "NCM"
msgstr ""
msgid "NDP-Proxy"
msgstr "Proxy NDP"
msgid "NT Domain"
msgstr "Domínio NT"
msgid "NTP server candidates"
msgstr "Candidatos a servidor NTP"
msgid "Name"
msgstr "Nome"
msgid "Name of the new interface"
msgstr "Nome da nova interface"
msgid "Name of the new network"
msgstr "Nome da nova rede"
msgid "Navigation"
msgstr "Navegação"
msgid "Netmask"
msgstr "Máscara de rede"
msgid "Network"
msgstr "Rede"
msgid "Network Utilities"
msgstr "Utilitários de Rede"
msgid "Network boot image"
msgstr "Imagem de boot pela rede"
msgid "Network without interfaces."
msgstr "Rede sem interfaces."
msgid "Next »"
msgstr "Próximo »"
msgid "No DHCP Server configured for this interface"
msgstr "Nenhum Servidor DHCP configurado para esta interface"
msgid "No NAT-T"
msgstr "Sem NAT-T"
msgid "No chains in this table"
msgstr "Nenhuma cadeira nesta tabela"
msgid "No files found"
msgstr "Nenhum arquivo encontrado"
msgid "No information available"
msgstr "Nenhuma informação disponível"
msgid "No negative cache"
msgstr "Nenhum cache negativo"
msgid "No network configured on this device"
msgstr "Nenhuma rede configurada neste dispositivo"
msgid "No network name specified"
msgstr "Nenhum nome de rede foi especificado"
msgid "No package lists available"
msgstr "Nenhuma lista de pacotes disponível"
msgid "No password set!"
msgstr "Nenhuma senha definida!"
msgid "No rules in this chain"
msgstr "Sem regras nesta cadeia"
msgid "No zone assigned"
msgstr "Nenhuma zona definida"
msgid "Noise"
msgstr "Ruído"
msgid "Noise Margin (SNR)"
msgstr "Margem de Ruído (<abbr title=\"Noise Margin\">SNR</abbr>)"
msgid "Noise:"
msgstr "Ruído:"
msgid "Non Pre-emtive CRC errors (CRC_P)"
msgstr ""
"Erros CRC Não Preemptivos<abbr title=\"Non Pre-emptive CRC errors\">CRC_P</"
"abbr>"
msgid "Non-wildcard"
msgstr "Sem caracter curinga"
msgid "None"
msgstr "Nenhum"
msgid "Normal"
msgstr "Normal"
msgid "Not Found"
msgstr "Não Encontrado"
msgid "Not associated"
msgstr "Não conectado"
msgid "Not connected"
msgstr "Não conectado"
msgid "Note: Configuration files will be erased."
msgstr "Nota: Os arquivos de configuração serão apagados."
msgid "Note: interface name length"
msgstr "Aviso: tamanho do nome da interface"
msgid "Notice"
msgstr "Aviso"
msgid "Nslookup"
msgstr "Nslookup"
msgid "Number of cached DNS entries (max is 10000, 0 is no caching)"
msgstr ""
msgid "OK"
msgstr "OK"
msgid "OPKG-Configuration"
msgstr "Configuração-OPKG"
msgid "Obfuscated Group Password"
msgstr "Senha Ofuscada do Grupo"
msgid "Obfuscated Password"
msgstr "Senha Ofuscada"
msgid "Obtain IPv6-Address"
msgstr ""
msgid "Off-State Delay"
msgstr "Atraso no estado de desligado"
msgid ""
"On this page you can configure the network interfaces. You can bridge "
"several interfaces by ticking the \"bridge interfaces\" field and enter the "
"names of several network interfaces separated by spaces. You can also use "
"<abbr title=\"Virtual Local Area Network\">VLAN</abbr> notation "
"<samp>INTERFACE.VLANNR</samp> (<abbr title=\"for example\">e.g.</abbr>: "
"<samp>eth0.1</samp>)."
msgstr ""
"Nesta página pode configurar as interfaces de rede. Esta interface pode "
"formar uma ponte juntando várias interfaces. Para isto, marque o campo "
"\"Juntar interfaces em uma ponte\" e informar as várias interfaces de rede. "
"Pode também usar a notação para <abbr title=\"Rede Local Virtual\">VLAN</"
"abbr> <samp>INTERFACE.VLANNR</samp> (<abbr title=\"por exemplo\">ex.</abbr>: "
"<samp>eth0.1</samp>)."
msgid "On-State Delay"
msgstr "Atraso no estado de conexões"
msgid "One of hostname or mac address must be specified!"
msgstr ""
"É necessário especificar ao menos um nome de equipamento ou endereço MAC!"
msgid "One or more fields contain invalid values!"
msgstr "Um ou mais campos contém valores inválidos!"
msgid "One or more invalid/required values on tab"
msgstr "Um ou mais valores inválidos/obrigatórios na aba"
msgid "One or more required fields have no value!"
msgstr "Um ou mais campos obrigatórios não tem valor!"
msgid "Open list..."
msgstr "Abrir lista..."
msgid "OpenConnect (CISCO AnyConnect)"
msgstr "OpenConnect (CISCO AnyConnect)"
msgid "Operating frequency"
msgstr "Frequência de Operação"
msgid "Option changed"
msgstr "Opção alterada"
msgid "Option removed"
msgstr "Opção removida"
msgid "Optional"
msgstr "Opcional"
msgid ""
"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
"starting with <code>0x</code>."
msgstr ""
msgid ""
"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or "
"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating "
"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') "
"for the interface."
msgstr ""
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
msgstr ""
"Opcional. Adiciona uma camada extra de cifragem simétrica para resistência "
"pós quântica."
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr "Opcional. Cria rotas para endereços IP Autorizados para este parceiro."
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
msgstr ""
"Opcional. Equipamento do parceiro. Nomes serão resolvido antes de levantar a "
"interface."
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr "Opcional. Unidade Máxima de Transmissão da interface do túnel."
msgid "Optional. Port of peer."
msgstr "Opcional. Porta do parceiro."
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
msgstr ""
"Opcional. Segundos entre mensagens para manutenção da conexão. O padrão é 0 "
"(desabilitado). O valor recomendado caso este dispositivo esteja atrás de "
"uma NAT é 25."
msgid "Optional. UDP port used for outgoing and incoming packets."
msgstr "opcional. Porta UDP usada para pacotes saintes ou entrantes."
msgid "Options"
msgstr "Opções"
msgid "Other:"
msgstr "Outro:"
msgid "Out"
msgstr "Saída"
msgid "Outbound:"
msgstr "Saindo:"
msgid "Output Interface"
msgstr "Interface de Saída"
msgid "Override MAC address"
msgstr "Sobrescrever o endereço MAC"
msgid "Override MTU"
msgstr ""
"Sobrescrever o <abbr title=\"Maximum Transmission Unit/Unidade Máxima de "
"Transmissão\">MTU</abbr>"
msgid "Override TOS"
msgstr "Sobrescrever o TOS"
msgid "Override TTL"
msgstr "Sobrescrever o TTL"
msgid "Override default interface name"
msgstr "Sobrescrever o nome da nova interface"
msgid "Override the gateway in DHCP responses"
msgstr "Sobrescrever o roteador padrão nas respostas do DHCP"
msgid ""
"Override the netmask sent to clients. Normally it is calculated from the "
"subnet that is served."
msgstr ""
"Sobrescrever a máscara de rede enviada aos clientes. Normalmente, ela é "
"calculada a partir da máscara da subrede de onde o cliente solicitou o "
"endereço."
msgid "Override the table used for internal routes"
msgstr "Sobrescrever a tabela usada para as rotas internas"
msgid "Overview"
msgstr "Visão geral"
msgid "Owner"
msgstr "Dono"
msgid "PAP/CHAP password"
msgstr "Senha do PAP/CHAP"
msgid "PAP/CHAP username"
msgstr "Usuário do PAP/CHAP"
msgid "PID"
msgstr "PID"
msgid "PIN"
msgstr "PIN"
msgid "PMK R1 Push"
msgstr "PMK R1 Push"
msgid "PPP"
msgstr "PPP"
msgid "PPPoA Encapsulation"
msgstr "Encapsulamento PPPoA "
msgid "PPPoATM"
msgstr "PPPoATM"
msgid "PPPoE"
msgstr "PPPoE"
msgid "PPPoSSH"
msgstr "PPPoSSH"
msgid "PPtP"
msgstr "PPtP"
msgid "PSID offset"
msgstr "Deslocamento PSID"
msgid "PSID-bits length"
msgstr "Comprimento dos bits PSID"
msgid "PTM/EFM (Packet Transfer Mode)"
msgstr "PTM/EFM (Modo de Transferência de Pacotes)"
msgid "Package libiwinfo required!"
msgstr "O pacote libiwinfo é necessário!"
msgid "Package lists are older than 24 hours"
msgstr "As listas de pacotes são mais antigas do que 24 horas"
msgid "Package name"
msgstr "Nome do Pacote"
msgid "Packets"
msgstr "Pacotes"
msgid "Part of zone %q"
msgstr "Parte da zona %q"
msgid "Password"
msgstr "Senha"
msgid "Password authentication"
msgstr "Autenticação por senha"
msgid "Password of Private Key"
msgstr "Senha da Chave Privada"
msgid "Password of inner Private Key"
msgstr "Senha da Chave Privada interna"
msgid "Password successfully changed!"
msgstr "A senha foi alterada com sucesso!"
msgid "Password2"
msgstr ""
msgid "Path to CA-Certificate"
msgstr "Caminho para o Certificado da AC"
msgid "Path to Client-Certificate"
msgstr "Caminho para o Certificado do Cliente"
msgid "Path to Private Key"
msgstr "Caminho para a Chave Privada"
msgid "Path to inner CA-Certificate"
msgstr "Caminho para os certificados CA interno"
msgid "Path to inner Client-Certificate"
msgstr "Caminho para o Certificado do Cliente interno"
msgid "Path to inner Private Key"
msgstr "Caminho para a Chave Privada interna"
msgid "Peak:"
msgstr "Pico:"
msgid "Peer IP address to assign"
msgstr "Endereço IP do parceiro para atribuir"
msgid "Peers"
msgstr "Parceiros"
msgid "Perfect Forward Secrecy"
msgstr "Sigilo Encaminhado Perfeito"
msgid "Perform reboot"
msgstr "Reiniciar o sistema"
msgid "Perform reset"
msgstr "Zerar configuração"
msgid "Persistent Keep Alive"
msgstr "Manutenção da Conexão Persistente"
msgid "Phy Rate:"
msgstr "Taxa física:"
msgid "Physical Settings"
msgstr "Configurações Físicas"
msgid "Ping"
msgstr "Ping"
msgid "Pkts."
msgstr "Pcts."
msgid "Please enter your username and password."
msgstr "Entre com o seu usuário e senha."
msgid "Policy"
msgstr "Política"
msgid "Port"
msgstr "Porta"
msgid "Port status:"
msgstr "Status da porta"
msgid "Power Management Mode"
msgstr "Modo de Gerenciamento de Energia"
msgid "Pre-emtive CRC errors (CRCP_P)"
msgstr ""
"Erros CRC Preemptivos<abbr title=\"Pre-emptive CRC errors\">CRCP_P</abbr>"
msgid "Prefer LTE"
msgstr ""
msgid "Prefer UMTS"
msgstr ""
msgid "Prefix Delegated"
msgstr "Prefixo Delegado"
msgid "Preshared Key"
msgstr "Chave Compartilhada"
msgid ""
"Presume peer to be dead after given amount of LCP echo failures, use 0 to "
"ignore failures"
msgstr ""
"Assumir que o parceiro está morto depois de uma data quantidade de falhas de "
"echo do LCP. Use 0 para ignorar as falhas"
msgid "Prevent listening on these interfaces."
msgstr "Evite escutar nestas Interfaces."
msgid "Prevents client-to-client communication"
msgstr "Impede a comunicação de cliente para cliente"
msgid "Prism2/2.5/3 802.11b Wireless Controller"
msgstr "Prism2/2.5/3 802.11b Wireless Controlador"
msgid "Private Key"
msgstr "Chave Privada"
msgid "Proceed"
msgstr "Proceder"
msgid "Processes"
msgstr "Processos"
msgid "Profile"
msgstr "Perfil"
msgid "Prot."
msgstr "Protocolo"
msgid "Protocol"
msgstr "Protocolo"
msgid "Protocol family"
msgstr "Família do protocolo"
msgid "Protocol of the new interface"
msgstr "Protocolo para a nova interface"
msgid "Protocol support is not installed"
msgstr "O suporte ao protocolo não está instalado"
msgid "Provide NTP server"
msgstr "Fornecer serviço <abbr title=\"Network Time Protocol\">NTP</abbr>"
msgid "Provide new network"
msgstr "Prover nova rede"
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr "Ad-Hoc falso (ahdemo)"
msgid "Public Key"
msgstr "Chave Pública"
msgid "Public prefix routed to this device for distribution to clients."
msgstr ""
"Prefixo público roteado para este dispositivo para distribuição a seus "
"clientes."
msgid "QMI Cellular"
msgstr "Celular QMI"
msgid "Quality"
msgstr "Qualidade"
msgid "R0 Key Lifetime"
msgstr "Validade da Chave R0"
msgid "R1 Key Holder"
msgstr "Detentor da Chave R1"
msgid "RFC3947 NAT-T mode"
msgstr "Modo NAT-T (RFC3947)"
msgid "RTS/CTS Threshold"
msgstr "Limiar RTS/CTS"
msgid "RX"
msgstr "RX"
msgid "RX Rate"
msgstr "Taxa de RX"
msgid "RaLink 802.11%s Wireless Controller"
msgstr "RaLink 802.11%s Wireless Controlador"
msgid "Radius-Accounting-Port"
msgstr "Porta de contabilidade do RADIUS"
msgid "Radius-Accounting-Secret"
msgstr "Segredo da contabilidade do RADIUS"
msgid "Radius-Accounting-Server"
msgstr "Servidor da contabilidade do RADIUS"
msgid "Radius-Authentication-Port"
msgstr "Porta de autenticação do RADIUS"
msgid "Radius-Authentication-Secret"
msgstr "Segredo da autenticação do RADIUS"
msgid "Radius-Authentication-Server"
msgstr "Servidor da autenticação do RADIUS"
msgid ""
"Read <code>/etc/ethers</code> to configure the <abbr title=\"Dynamic Host "
"Configuration Protocol\">DHCP</abbr>-Server"
msgstr ""
"Ler <code>/etc/ethers</code> para configurar o Servidor-<abbr title="
"\"Protocolo de Configuração Dinâmica de Hosts\">DHCP</abbr>"
msgid ""
"Really delete this interface? The deletion cannot be undone! You might lose "
"access to this device if you are connected via this interface."
msgstr ""
"Realmente excluir esta interface? A exclusão não pode ser desfeita!\n"
" Você poderá perder o acesso a este dispositivo se você estiver conectado "
"através desta interface."
msgid ""
"Really delete this wireless network? The deletion cannot be undone! You "
"might lose access to this device if you are connected via this network."
msgstr ""
"Realmente excluir esta interface Wireless? A exclusão não pode ser "
"desfeita!\n"
"Você poderá perder o acesso a este dispositivo se você estiver conectado "
"através desta interface."
msgid "Really reset all changes?"
msgstr "Realmente limpar todas as mudanças?"
msgid ""
"Really shut down network? You might lose access to this device if you are "
"connected via this interface."
msgstr ""
"Realmente desligar esta rede\"%s\" ?\n"
"Você poderá perder o acesso a este dispositivo se você estiver conectado "
"através desta interface."
msgid ""
"Really shutdown interface \"%s\"? You might lose access to this device if "
"you are connected via this interface."
msgstr ""
"Realmente desligar esta interface\"%s\" ?\n"
"Você poderá perder o acesso a este dispositivo se você estiver conectado "
"através desta interface."
msgid "Really switch protocol?"
msgstr "Realmente trocar o protocolo?"
msgid "Realtime Connections"
msgstr "Conexões em Tempo Real"
msgid "Realtime Graphs"
msgstr "Gráficos em Tempo Real"
msgid "Realtime Load"
msgstr "Carga em Tempo Real"
msgid "Realtime Traffic"
msgstr "Tráfego em Tempo Real"
msgid "Realtime Wireless"
msgstr "Rede sem fio em Tempo Real"
msgid "Reassociation Deadline"
msgstr "Limite para Reassociação"
msgid "Rebind protection"
msgstr "Proteção contra \"Rebind\""
msgid "Reboot"
msgstr "Reiniciar"
msgid "Rebooting..."
msgstr "Reiniciando..."
msgid "Reboots the operating system of your device"
msgstr "Reinicia o sistema operacional do seu dispositivo"
msgid "Receive"
msgstr "Receber"
msgid "Receiver Antenna"
msgstr "Antena de Recepção"
msgid "Recommended. IP addresses of the WireGuard interface."
msgstr "Recomendado. Endereços IP da interface do WireGuard."
msgid "Reconnect this interface"
msgstr "Reconectar esta interface"
msgid "Reconnecting interface"
msgstr "Reconectando interface"
msgid "References"
msgstr "Referências"
msgid "Relay"
msgstr "Retransmissor"
msgid "Relay Bridge"
msgstr "Ponte por Retransmissão"
msgid "Relay between networks"
msgstr "Encaminha o tráfego entre as redes"
msgid "Relay bridge"
msgstr "Ponte por retransmissão"
msgid "Remote IPv4 address"
msgstr "Endereço IPv4 remoto"
msgid "Remote IPv4 address or FQDN"
msgstr "Endereço IPv4 remoto ou FQDN"
msgid "Remove"
msgstr "Remover"
msgid "Repeat scan"
msgstr "Repetir busca"
msgid "Replace entry"
msgstr "Substituir entrada"
msgid "Replace wireless configuration"
msgstr "Substituir a configuração da rede sem fio"
msgid "Request IPv6-address"
msgstr "Solicita endereço IPv6"
msgid "Request IPv6-prefix of length"
msgstr "Solicita prefixo IPv6 de tamanho"
msgid "Required"
msgstr "Necessário"
msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3"
msgstr ""
"Obrigatório para alguns provedores de internet, ex. Charter com DOCSIS 3"
msgid "Required. Base64-encoded private key for this interface."
msgstr "Obrigatório. Chave privada codificada em Base64 para esta interface."
msgid "Required. Base64-encoded public key of peer."
msgstr "Necessário. Chave Pública do parceiro codificada como Base64."
msgid ""
"Required. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
"routes through the tunnel."
msgstr ""
"Obrigatório. Endereços IP e prefixos que este parceiro está autorizado a "
"usar dentro do túnel. Normalmente é o endereço IP do parceiro no túnel e as "
"redes que o parceiro roteia através do túnel."
msgid ""
"Requires the 'full' version of wpad/hostapd and support from the wifi driver "
"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)"
msgstr "Obrigatório. Chave Pública do parceiro."
msgid ""
"Requires upstream supports DNSSEC; verify unsigned domain responses really "
"come from unsigned domains"
msgstr ""
"Exige o suporte DNSSEC do servidor superior; verifica se resposta não "
"assinadas realmente vẽm de domínios não assinados."
msgid "Reset"
msgstr "Limpar"
msgid "Reset Counters"
msgstr "Reiniciar contadores"
msgid "Reset to defaults"
msgstr "Redefinir para os valores padrão"
msgid "Resolv and Hosts Files"
msgstr "Arquivos de Resolv e Hosts"
msgid "Resolve file"
msgstr "Arquivo Resolv"
msgid "Restart"
msgstr "Reiniciar"
msgid "Restart Firewall"
msgstr "Reiniciar o firewall"
msgid "Restore backup"
msgstr "Restaurar cópia de segurança"
msgid "Reveal/hide password"
msgstr "Relevar/esconder senha"
msgid "Revert"
msgstr "Reverter"
msgid "Revert changes"
msgstr ""
msgid "Revert request failed with status <code>%h</code>"
msgstr ""
msgid "Reverting configuration…"
msgstr ""
msgid "Root"
msgstr "Raiz"
msgid "Root directory for files served via TFTP"
msgstr "Diretório raiz para arquivos disponibilizados pelo TFTP"
msgid "Root preparation"
msgstr "Prepação da raiz (/)"
msgid "Route Allowed IPs"
msgstr "Roteie Andereços IP Autorizados"
msgid "Route type"
msgstr "Tipo de rota"
msgid "Router Advertisement-Service"
msgstr "Serviço de Anúncio de Roteador"
msgid "Router Password"
msgstr "Senha do Roteador"
msgid "Routes"
msgstr "Rotas"
msgid ""
"Routes specify over which interface and gateway a certain host or network "
"can be reached."
msgstr ""
"As rotas especificam através de qual interface e roteador um certo destino "
"podem ser alcançado."
msgid "Run a filesystem check before mounting the device"
msgstr ""
"Execute a verificação do sistema de arquivos antes da montagem do dispositivo"
msgid "Run filesystem check"
msgstr "Execute a verificação do sistema de arquivos "
msgid "SHA256"
msgstr "SHA256"
msgid "SNR"
msgstr "SNR"
msgid "SSH Access"
msgstr "Acesso SSH"
msgid "SSH server address"
msgstr "Endereço do servidor SSH"
msgid "SSH server port"
msgstr "Porta do servidor SSH"
msgid "SSH username"
msgstr "Usuário do SSH"
msgid "SSH-Keys"
msgstr "Chaves SSH"
msgid "SSID"
msgstr "SSID"
msgid "Save"
msgstr "Salvar"
msgid "Save & Apply"
msgstr "Salvar & Aplicar"
msgid "Scan"
msgstr "Procurar"
msgid "Scheduled Tasks"
msgstr "Tarefas Agendadas"
msgid "Section added"
msgstr "Seção adicionada"
msgid "Section removed"
msgstr "Seção removida"
msgid "See \"mount\" manpage for details"
msgstr "Veja o manual (man) do comando \"mount\" para detalhes"
msgid ""
"Send LCP echo requests at the given interval in seconds, only effective in "
"conjunction with failure threshold"
msgstr ""
"Enviar requisições de eco do LCP no dado intervalo em segundos. Somente "
"efetivo em conjunto com o limite de falhas."
msgid "Separate Clients"
msgstr "Isolar Clientes"
msgid "Server Settings"
msgstr "Configurações do Servidor"
msgid "Service Name"
msgstr "Nome do Serviço"
msgid "Service Type"
msgstr "Tipo do Serviço"
msgid "Services"
msgstr "Serviços"
msgid ""
"Set interface properties regardless of the link carrier (If set, carrier "
"sense events do not invoke hotplug handlers)."
msgstr ""
msgid "Set up Time Synchronization"
msgstr "Configurar a Sincronização do Horário"
msgid "Setup DHCP Server"
msgstr "Configurar Servidor DHCP"
msgid "Severely Errored Seconds (SES)"
msgstr ""
"Segundos com erro severos (<abbr title=\"Severely Errored Seconds\">SES</"
"abbr>)"
msgid "Short GI"
msgstr "Intervalo de guarda curto"
msgid "Show current backup file list"
msgstr "Mostra a lista atual de arquivos para a cópia de segurança"
msgid "Shutdown this interface"
msgstr "Desligar esta interface"
msgid "Shutdown this network"
msgstr "Desligar esta rede"
msgid "Signal"
msgstr "Sinal"
msgid "Signal Attenuation (SATN)"
msgstr "Atenuação do Sinal (<abbr title=\"Signal Attenuation\">SATN</abbr>)"
msgid "Signal:"
msgstr "Sinal:"
msgid "Size"
msgstr "Tamanho"
msgid "Size (.ipk)"
msgstr "Tamanho (.ipk)"
msgid "Size of DNS query cache"
msgstr ""
msgid "Skip"
msgstr "Pular"
msgid "Skip to content"
msgstr "Pular para o conteúdo"
msgid "Skip to navigation"
msgstr "Pular para a navegação"
msgid "Slot time"
msgstr "Intervalo de tempo"
msgid "Software"
msgstr "Software"
msgid "Software VLAN"
msgstr "VLAN em Software"
msgid "Some fields are invalid, cannot save values!"
msgstr "Alguns campos estão inválidos e os valores não podem ser salvos!"
msgid "Sorry, the object you requested was not found."
msgstr "Desculpe o objeto solicitado não foi encontrado"
msgid "Sorry, the server encountered an unexpected error."
msgstr "Desculpe, o servidor encontrou um erro inesperado."
msgid ""
"Sorry, there is no sysupgrade support present; a new firmware image must be "
"flashed manually. Please refer to the wiki for device specific install "
"instructions."
msgstr ""
"Sinto muito, não existe suporte para o sysupgrade. Uma nova imagem de "
"firmware deve ser gravada manualmente. Por favor, consulte a wiki para "
"instruções específicas da instalação deste dispositivo."
msgid "Sort"
msgstr "Ordenar"
msgid "Source"
msgstr "Origem"
msgid "Specifies the directory the device is attached to"
msgstr "Especifica o diretório que o dispositivo está conectado"
msgid "Specifies the listening port of this <em>Dropbear</em> instance"
msgstr "Especifica a porta de escuta deste <em>Dropbear</em>"
msgid ""
"Specifies the maximum amount of failed ARP requests until hosts are presumed "
"to be dead"
msgstr ""
"Especifica a quantidade máxima de requisições ARP falhadas antes de "
"considerar que um equipamento está morto"
msgid ""
"Specifies the maximum amount of seconds after which hosts are presumed to be "
"dead"
msgstr ""
"Especifica a quantidade máxima de segundos antes de considerar que um "
"equipamento está morto"
msgid "Specify a TOS (Type of Service)."
msgstr "Especifique um Tipo de Serviço (TOS)"
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64)."
msgstr ""
"Especifica o tempo de vida (<abbr title=\"Time to Live\">TTL</abbr>) para os "
"pacotes encapsulados ao invés do padrão (64)."
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes)."
msgstr ""
"Especifica a unidade máxima de transmissão (<abbr title=\"Maximum "
"Transmission Unit\">MTU</abbr>) ao invés do valor padrão (1280 bytes)"
msgid "Specify the secret encryption key here."
msgstr "Especifique a chave de cifragem secreta aqui."
msgid "Start"
msgstr "Iniciar"
msgid "Start priority"
msgstr "Prioridade de iniciação"
msgid "Starting configuration apply…"
msgstr ""
msgid "Startup"
msgstr "Iniciação"
msgid "Static IPv4 Routes"
msgstr "Rotas Estáticas IPv4"
msgid "Static IPv6 Routes"
msgstr "Rotas Estáticas IPv6"
msgid "Static Leases"
msgstr "Alocações Estáticas"
msgid "Static Routes"
msgstr "Rotas Estáticas"
msgid "Static address"
msgstr "Endereço Estático"
msgid ""
"Static leases are used to assign fixed IP addresses and symbolic hostnames "
"to DHCP clients. They are also required for non-dynamic interface "
"configurations where only hosts with a corresponding lease are served."
msgstr ""
"Alocações estáticas são usadas para definir um endereço IP fixo e nome "
"simbólico para os clientes do DHCP. Elas também são necessárias para "
"configurações não dinâmicas onde um computador com a alocação correspondente "
"é provido."
msgid "Status"
msgstr "Estado"
msgid "Stop"
msgstr "Parar"
msgid "Strict order"
msgstr "Ordem Exata"
msgid "Submit"
msgstr "Enviar"
msgid "Suppress logging"
msgstr "Suprimir registros (log)"
msgid "Suppress logging of the routine operation of these protocols"
msgstr "Suprimir registros (log) de operações rotineiras destes protocolos"
msgid "Swap"
msgstr "Espaço de Troca (swap)"
msgid "Swap Entry"
msgstr "Entrada do espaço de troca (Swap)"
msgid "Switch"
msgstr "Switch"
msgid "Switch %q"
msgstr "Switch %q"
msgid "Switch %q (%s)"
msgstr "Switch %q (%s)"
msgid ""
"Switch %q has an unknown topology - the VLAN settings might not be accurate."
msgstr ""
"O Switch %q tem uma topologia desconhecida - as configurações de VLAN podem "
"não ser precisas."
msgid "Switch Port Mask"
msgstr ""
msgid "Switch VLAN"
msgstr "Switch VLAN"
msgid "Switch protocol"
msgstr "Trocar o protocolo"
msgid "Sync with browser"
msgstr "Sincronizar com o navegador"
msgid "Synchronizing..."
msgstr "Sincronizando..."
msgid "System"
msgstr "Sistema"
msgid "System Log"
msgstr "Registo do Sistema"
msgid "System Properties"
msgstr "Propriedades do Sistema"
msgid "System log buffer size"
msgstr "Tamanho do buffer de registro do sistema"
msgid "TCP:"
msgstr "TCP:"
msgid "TFTP Settings"
msgstr "Configurações do TFTP"
msgid "TFTP server root"
msgstr "Raiz do servidor TFTP"
msgid "TX"
msgstr "TX"
msgid "TX Rate"
msgstr "Taxa de TX"
msgid "Table"
msgstr "Tabela"
msgid "Target"
msgstr "Destino"
msgid "Target network"
msgstr "Rede de destino"
msgid "Terminate"
msgstr "Terminar"
msgid ""
"The <em>Device Configuration</em> section covers physical settings of the "
"radio hardware such as channel, transmit power or antenna selection which "
"are shared among all defined wireless networks (if the radio hardware is "
"multi-SSID capable). Per network settings like encryption or operation mode "
"are grouped in the <em>Interface Configuration</em>."
msgstr ""
"A seção da <em>Configuração do Dispositivo</em> engloba as configurações "
"físicas do rádio como canal, potência de transmissão ou seleção da antena. "
"Estas configurações são compartilhadas entre todas as redes sem fio (se o "
"hardware for capaz de utilizar múltiplas SSID). As configurações específicas "
"de cada rede, como cifragem ou modo de operação estão agrupadas na "
"<em>Configuração da Interface</em>."
msgid ""
"The <em>libiwinfo-lua</em> package is not installed. You must install this "
"component for working wireless configuration!"
msgstr ""
"O pacote <em>libiwinfo-lua</em> não está instalado. Você precisa instalar "
"este componente para ter uma configuração da rede sem fio funcional!"
msgid ""
"The HE.net endpoint update configuration changed, you must now use the plain "
"username instead of the user ID!"
msgstr ""
"A configuração da atualização de pontas HE.net mudou. Você deve agora usar o "
"nome do usuário ao invés do identificador do usuário!"
msgid ""
"The IPv4 address or the fully-qualified domain name of the remote tunnel end."
msgstr "O endereço IPv4 ou o nome completo (FQDN) da ponta remota do túnel."
msgid ""
"The IPv6 prefix assigned to the provider, usually ends with <code>::</code>"
msgstr ""
"O prefixo IPv6 atribuído pelo provedor, geralmente termina com<code>::</code>"
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
msgstr ""
"Os caracteres permitidos são: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> e <code>_</code>"
msgid "The configuration file could not be loaded due to the following error:"
msgstr ""
"O arquivo de configuração não pode ser carregado devido ao seguinte erro:"
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
"reasons. If you believe that the configuration changes are correct "
"nonetheless, perform an unchecked configuration apply. Alternatively, you "
"can dismiss this warning and edit changes before attempting to apply again, "
"or revert all pending changes to keep the currently working configuration "
"state."
msgstr ""
msgid ""
"The device file of the memory or partition (<abbr title=\"for example\">e.g."
"</abbr> <code>/dev/sda1</code>)"
msgstr ""
"O arquivo do dispositivo de armazenamento ou da partição (ex: <code>/dev/"
"sda1</code>)"
msgid ""
"The filesystem that was used to format the memory (<abbr title=\"for example"
"\">e.g.</abbr> <samp><abbr title=\"Third Extended Filesystem\">ext3</abbr></"
"samp>)"
msgstr ""
"O sistema de arquivos que foi usado para formatar a unidade de armazenamento "
"(<abbr title=\"por exemplo\">ex.</abbr> <samp><abbr title=\"Sistema de "
"Arquivos ext3\">ext3</abbr></samp>)"
msgid ""
"The flash image was uploaded. Below is the checksum and file size listed, "
"compare them with the original file to ensure data integrity.<br /> Click "
"\"Proceed\" below to start the flash procedure."
msgstr ""
"A imagem do firmware foi enviada. Abaixo estão a soma de verificação "
"(checksum) e o tamanho dom arquivo. Compare-os com o arquivo original para "
"garantir a integridade dos dados. <br /> Clique em \"Proceder\" para iniciar "
"o procedimetno de gravação."
msgid "The following changes have been reverted"
msgstr "As seguintes alterações foram revertidas"
msgid "The following rules are currently active on this system."
msgstr "As seguintes regras estão atualmente ativas neste sistema."
msgid "The given network name is not unique"
msgstr "O nome de rede informado não é único"
msgid ""
"The hardware is not multi-SSID capable and the existing configuration will "
"be replaced if you proceed."
msgstr ""
"Este equipamento não é capaz de utilizar SSID múltiplos e as configurações "
"existentes serão substituídas se você proceder."
msgid ""
"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 "
"addresses."
msgstr ""
"O comprimento do prefixo IPv4 em bits, o restante é usado nos endereços IPv6."
msgid "The length of the IPv6 prefix in bits"
msgstr "O comprimento do prefixo IPv6 em bits"
msgid "The local IPv4 address over which the tunnel is created (optional)."
msgstr "O endereço IPv4 local sobre o qual o túnel será criado (opcional)."
msgid ""
"The network ports on this device can be combined to several <abbr title="
"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can "
"communicate directly with each other. <abbr title=\"Virtual Local Area "
"Network\">VLAN</abbr>s are often used to separate different network "
"segments. Often there is by default one Uplink port for a connection to the "
"next greater network like the internet and other ports for a local network."
msgstr ""
"As portas de rede neste dispositivo podem ser configuradas em diversas <abbr "
"title=\"Virtual local Network\">VLAN</abbr>s nas quais computadores em uma "
"mesma <abbr title=\"Virtual local Network\">VLAN</abbr> podem se comunicar "
"diretamente. <abbr title=\"Virtual local Network\">VLAN</abbr>s são muitas "
"vezes utilizadas para separar diferentes segmentos de rede. Em geral, existe "
"uma porta para o enlace superior (uplink) e as demais portas são utilizadas "
"para a rede local."
msgid "The selected protocol needs a device assigned"
msgstr "O protocolo selecionado necessita estar associado a um dispositivo"
msgid "The submitted security token is invalid or already expired!"
msgstr "A chave eletrônica enviada é inválida ou já expirou!"
msgid ""
"The system is erasing the configuration partition now and will reboot itself "
"when finished."
msgstr ""
"O sistema está apagando agora a partição da configuração e irá reiniciar "
"quando terminado."
msgid ""
"The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a "
"few minutes before you try to reconnect. It might be necessary to renew the "
"address of your computer to reach the device again, depending on your "
"settings."
msgstr ""
"O sistema está gravando o firmware para a flash.<br /> NÃO DESLIGUE O "
"EQUIPAMENTO!<br /> Espere alguns minutos até tentar reconectar. Dependendo "
"da sua configuração, pode ser necessário renovar o endereço do seu "
"computador para poder conectar novamente ao roteador."
msgid ""
"The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform."
msgstr ""
"A imagem carregada não contém um formato suportado. Confirme que você "
"escolheu uma imagem para a sua plataforma."
msgid "There are no active leases."
msgstr "Não existem alocações ativas."
msgid "There are no changes to apply."
msgstr ""
msgid "There are no pending changes to revert!"
msgstr "Não existem modificações pendentes para reverter!"
msgid "There are no pending changes!"
msgstr "Não existem modificações pendentes!"
msgid ""
"There is no device assigned yet, please attach a network device in the "
"\"Physical Settings\" tab"
msgstr ""
"Ainda não existe um dispositivo associado. Por favor, associe um dispositivo "
"de rede na aba \"Configurações Físicas\""
msgid ""
"There is no password set on this router. Please configure a root password to "
"protect the web interface and enable SSH."
msgstr ""
"Não existem uma senha definida para este roteador. Por favor, configure uma "
"senha para o root para proteger a interface WEB e habilitar o SSH."
msgid "This IPv4 address of the relay"
msgstr "Este endereço IPv4 do repassar"
msgid ""
"This file may contain lines like 'server=/domain/1.2.3.4' or "
"'server=1.2.3.4' fordomain-specific or full upstream <abbr title=\"Domain "
"Name System\">DNS</abbr> servers."
msgstr ""
"Este arquivo deve conter linhas como 'server=/domain/1.2.3.4' ou "
"'server=1.2.3.4' para servidores <abbr title=\"Domain Name System/Sistema de "
"Nomes de Domínios\">DNS</abbr> por domínio ou completos."
msgid ""
"This is a list of shell glob patterns for matching files and directories to "
"include during sysupgrade. Modified files in /etc/config/ and certain other "
"configurations are automatically preserved."
msgstr ""
"Esta é a lista dos padrões de expressão shell para casar com os arquivos e "
"diretórios incluídos durante a atualização do sistema. Arquivos modificados "
"em /etc/config/ e alguns outros arquivos de configuração são automaticamente "
"preservados."
msgid ""
"This is either the \"Update Key\" configured for the tunnel or the account "
"password if no update key has been configured"
msgstr ""
"Isto é a \"Update Key\" configurada para o túnel ou a senha da cpnta se não "
"tem uma \"Update Keu\" configurada"
msgid ""
"This is the content of /etc/rc.local. Insert your own commands here (in "
"front of 'exit 0') to execute them at the end of the boot process."
msgstr ""
"Este é o conteúdo do /etc/rc.local. Insira seus próprios comandos aqui "
"(antes de 'exit 0') para executá-los no final do processo de boot."
msgid ""
"This is the local endpoint address assigned by the tunnel broker, it usually "
"ends with <code>...:2/64</code>"
msgstr ""
"Este é o endereço da ponta local designado pelo agente de túnel. normalmente "
"ele termina com <code>...:2/64</code>"
msgid ""
"This is the only <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
"abbr> in the local network"
msgstr ""
"Este é o único <abbr title=\"Protocolo de Configuração Dinâmica de Hosts"
"\">DHCP</abbr> na rede local"
msgid "This is the plain username for logging into the account"
msgstr "Este é o nome do usuário em para se autenticar na sua conta"
msgid ""
"This is the prefix routed to you by the tunnel broker for use by clients"
msgstr ""
"Este é o prefixo roteado pelo agente do tunel para você usar com seus "
"clientes"
msgid "This is the system crontab in which scheduled tasks can be defined."
msgstr "Este é o sistema de agendamento de tarefas."
msgid ""
"This is usually the address of the nearest PoP operated by the tunnel broker"
msgstr ""
"Este é normalmente o endereço do <abbr title=\"Point of Presence, Ponto de "
"Presença\">PoP</abbr> mais próximo operado pelo agente de túnel"
msgid ""
"This list gives an overview over currently running system processes and "
"their status."
msgstr ""
"Esta lista fornece uma visão geral sobre os processos em execução no sistema."
msgid "This page gives an overview over currently active network connections."
msgstr "Esta página fornece informações sobre as conexões de rede ativas."
msgid "This section contains no values yet"
msgstr "Esta seção ainda não contêm valores"
msgid "Time Synchronization"
msgstr "Sincronização de horário"
msgid "Time Synchronization is not configured yet."
msgstr "A sincronização do horário ainda não está configurada."
msgid "Timezone"
msgstr "Fuso Horário"
msgid ""
"To restore configuration files, you can upload a previously generated backup "
"archive here."
msgstr ""
"Para recuperar os arquivos de configuração, você pode enviar aqui uma cópia "
"de segurança anterior."
msgid "Tone"
msgstr "Tom"
msgid "Total Available"
msgstr "Total Disponível"
msgid "Traceroute"
msgstr "Traceroute"
msgid "Traffic"
msgstr "Tráfego"
msgid "Transfer"
msgstr "Transferências"
msgid "Transmission Rate"
msgstr "Taxa de Transmissão"
msgid "Transmit"
msgstr "Transmitir"
msgid "Transmit Power"
msgstr "Potência de Transmissão"
msgid "Transmitter Antenna"
msgstr "Antena de Transmissão"
msgid "Trigger"
msgstr "Disparo"
msgid "Trigger Mode"
msgstr "Modo de disparo"
msgid "Tunnel ID"
msgstr "Identificador do Túnel"
msgid "Tunnel Interface"
msgstr "Interface de Tunelamento"
msgid "Tunnel Link"
msgstr "Enlace do túnel"
msgid "Tx-Power"
msgstr "Potência de transmissão"
msgid "Type"
msgstr "Tipo"
msgid "UDP:"
msgstr "UDP:"
msgid "UMTS only"
msgstr "UMTS somente"
msgid "UMTS/GPRS/EV-DO"
msgstr "UMTS/GPRS/EV-DO"
msgid "USB Device"
msgstr "Dispositivo USB"
msgid "USB Ports"
msgstr "Portas USB"
msgid "UUID"
msgstr "UUID"
msgid "Unable to dispatch"
msgstr "Não é possível a expedição"
msgid "Unavailable Seconds (UAS)"
msgstr ""
"Segundos de indisponibilidade (<abbr title=\"Unavailable Seconds\">UAS</"
"abbr>)"
msgid "Unknown"
msgstr "Desconhecido"
msgid "Unknown Error, password not changed!"
msgstr "Erro Desconhecido, a senha não foi alterada!"
msgid "Unmanaged"
msgstr "Não gerenciado"
msgid "Unmount"
msgstr "Desmontar"
msgid "Unsaved Changes"
msgstr "Alterações Não Salvas"
msgid "Unsupported protocol type."
msgstr "Tipo de protocolo não suportado."
msgid "Update lists"
msgstr "Atualizar listas"
msgid ""
"Upload a sysupgrade-compatible image here to replace the running firmware. "
"Check \"Keep settings\" to retain the current configuration (requires a "
"compatible firmware image)."
msgstr ""
"Envia uma imagem compatível do sistema para substituir o firmware em "
"execução. Marque \"Manter configurações\" para manter as configurações "
"atuais (requer uma imagem compatível)."
msgid "Upload archive..."
msgstr "Enviar arquivo..."
msgid "Uploaded File"
msgstr "Arquivo Carregado"
msgid "Uptime"
msgstr "Tempo de atividade"
msgid "Use <code>/etc/ethers</code>"
msgstr "Usar <code>/etc/ethers</code>"
msgid "Use DHCP gateway"
msgstr "Use o roteador do DHCP"
msgid "Use DNS servers advertised by peer"
msgstr "Use os servidores DNS anunciados pelo parceiro"
msgid "Use ISO/IEC 3166 alpha2 country codes."
msgstr "Usar códigos de países ISO/IEC 3166 alpha2."
msgid "Use MTU on tunnel interface"
msgstr ""
"Use o <abbr title=\"Maximum Transmission Unit/Unidade Máxima de Transmissão"
"\">MTU</abbr> na interface do túnel"
msgid "Use TTL on tunnel interface"
msgstr "Use TTL na interface do túnel"
msgid "Use as external overlay (/overlay)"
msgstr "Use como uma sobreposição externa (/overlay)"
msgid "Use as root filesystem (/)"
msgstr "Usar como o sistema de arquivos raiz (/)"
msgid "Use broadcast flag"
msgstr "Use a marcação de broadcast"
msgid "Use builtin IPv6-management"
msgstr "Use o gerenciamento do IPv6 embarcado"
msgid "Use custom DNS servers"
msgstr "Use servidores DNS personalizados"
msgid "Use default gateway"
msgstr "Use o roteador padrão"
msgid "Use gateway metric"
msgstr "Use a métrica do roteador"
msgid "Use routing table"
msgstr "Use a tabela de roteamento"
msgid ""
"Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</"
"em> identifies the host, the <em>IPv4-Address</em> specifies the fixed "
"address to use, and the <em>Hostname</em> is assigned as a symbolic name to "
"the requesting host. The optional <em>Lease time</em> can be used to set non-"
"standard host-specific lease time, e.g. 12h, 3d or infinite."
msgstr ""
"Use o botão <em>Adicionar</em> para adicionar uma nova entrada de "
"atribuição. O endereço <em>MAC-Address</em> identifica o equipamento, o "
"endereço <em>IPv4</em> especifica o endereço fixo para usar e o <em>nome do "
"equipamento</em> é designado como nome simbólico (DNS) para o equipamento "
"requisitante."
msgid "Used"
msgstr "Usado"
msgid "Used Key Slot"
msgstr "Posição da Chave Usada"
msgid ""
"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not "
"needed with normal WPA(2)-PSK."
msgstr ""
"Usado para dois diferentes propósitos: identificador do RADIUS NAS e do "
"802.11r R0KH. Não necessário com o WPA(2)-PSK normal."
msgid "User certificate (PEM encoded)"
msgstr "Certificado do usuário (codificado em formato PEM)"
msgid "User key (PEM encoded)"
msgstr "Chave do usuário (codificada em formato PEM)"
msgid "Username"
msgstr "Usuário"
msgid "VC-Mux"
msgstr "VC-Mux"
msgid "VDSL"
msgstr "VDSL"
msgid "VLANs on %q"
msgstr "VLANs em %q"
msgid "VLANs on %q (%s)"
msgstr "VLANs em %q (%s)"
msgid "VPN Local address"
msgstr "Endereço Local da VPN"
msgid "VPN Local port"
msgstr "Porta Local da VPN"
msgid "VPN Server"
msgstr "Servidor VPN"
msgid "VPN Server port"
msgstr "Porta do Servidor VPN"
msgid "VPN Server's certificate SHA1 hash"
msgstr "Resumo digital SHA1 do certificado do servidor VPN"
msgid "VPNC (CISCO 3000 (and others) VPN)"
msgstr "VPNC (VPN do CISCO 3000 (e outros))"
msgid "Vendor"
msgstr "Fabricante"
msgid "Vendor Class to send when requesting DHCP"
msgstr "Classe do fabricante para enviar quando requisitar o DHCP"
msgid "Verify"
msgstr "Verificar"
msgid "Version"
msgstr "Versão"
msgid "WDS"
msgstr "WDS"
msgid "WEP Open System"
msgstr "WEP Sistema Aberto"
msgid "WEP Shared Key"
msgstr "WEP Chave Compartilhada"
msgid "WEP passphrase"
msgstr "WEP Senha"
msgid "WMM Mode"
msgstr "Modo WMM"
msgid "WPA passphrase"
msgstr "WPA Senha"
msgid ""
"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP "
"and ad-hoc mode) to be installed."
msgstr ""
"A cifragem WPA requer a instalação do wpa_supplicant (para modo cliente) ou "
"do hostapd (para modo AP ou ad-hoc)."
msgid "Waiting for changes to be applied..."
msgstr "Esperando a aplicação das mudanças..."
msgid "Waiting for command to complete..."
msgstr "Esperando o término do comando..."
msgid "Waiting for configuration to get applied… %ds"
msgstr ""
msgid "Waiting for device..."
msgstr "Esperando pelo dispositivo..."
msgid "Warning"
msgstr "Atenção"
msgid "Warning: There are unsaved changes that will get lost on reboot!"
msgstr "Atenção: Existem mudanças não salvas que serão perdidas ao reiniciar!"
msgid ""
"When using a PSK, the PMK can be generated locally without inter AP "
"communications"
msgstr ""
msgid "Width"
msgstr "Largura"
msgid "WireGuard VPN"
msgstr "VPN WireGuard"
msgid "Wireless"
msgstr "Rede sem fio"
msgid "Wireless Adapter"
msgstr "Dispositivo de Rede sem Fio"
msgid "Wireless Network"
msgstr "Rede sem Fio"
msgid "Wireless Overview"
msgstr "Visão Geral da Rede sem Fio"
msgid "Wireless Security"
msgstr "Segurança da Rede sem Fio"
msgid "Wireless is disabled or not associated"
msgstr "Rede sem fio está desabilitada ou não conectada"
msgid "Wireless is restarting..."
msgstr "A rede sem fio está reiniciando..."
msgid "Wireless network is disabled"
msgstr "A rede sem fio está desabilitada"
msgid "Wireless network is enabled"
msgstr "A rede sem fio está habilitada"
msgid "Wireless restarted"
msgstr "A rede sem fio reiniciou"
msgid "Wireless shut down"
msgstr "Rede sem fio desligada"
msgid "Write received DNS requests to syslog"
msgstr "Escreva as requisições DNS para o servidor de registro (syslog)"
msgid "Write system log to file"
msgstr "Escrever registo do sistema (log) no arquivo"
msgid ""
"You can enable or disable installed init scripts here. Changes will applied "
"after a device reboot.<br /><strong>Warning: If you disable essential init "
"scripts like \"network\", your device might become inaccessible!</strong>"
msgstr ""
"Neste local, você pode ativar ou desativar os scripts de iniciação "
"instalados. As mudanças serão aplicadas após a reiniciação do equipamento."
"<br /><strong>Aviso: Se você desativar algum script de iniciação essencial "
"como por exemplo \"rede/network\", o dispositivo poderá tornar-se "
"inacessível!</strong>"
msgid ""
"You must enable JavaScript in your browser or LuCI will not work properly."
msgstr ""
"Você precisa habilitar o JavaScript no seu navegador ou o LuCI não irá "
"funcionar corretamente."
msgid ""
"Your Internet Explorer is too old to display this page correctly. Please "
"upgrade it to at least version 7 or use another browser like Firefox, Opera "
"or Safari."
msgstr ""
"Seu Internet Explorer é muito velho para mostrar esta página corretamente. "
"Por favor, atualiza para, ao menos, a versão 7 ou use outro navegador como o "
"Firefox, Opera ou Safari."
msgid "any"
msgstr "qualquer"
msgid "auto"
msgstr "automático"
msgid "baseT"
msgstr "baseT"
msgid "bridged"
msgstr "em ponte"
msgid "create"
msgstr ""
msgid "create:"
msgstr "criar"
msgid "creates a bridge over specified interface(s)"
msgstr "cria uma ponte sobre determinada(s) interface(s)"
msgid "dB"
msgstr "dB"
msgid "dBm"
msgstr "dBm"
msgid "disable"
msgstr "desativar"
msgid "disabled"
msgstr "desabilitado"
msgid "expired"
msgstr "expirado"
msgid ""
"file where given <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
"abbr>-leases will be stored"
msgstr ""
"Arquivo onde as alocações <abbr title=\"Protocolo de Configuração Dinâmica "
"de Hosts\">DHCP</abbr> são armazenadas"
msgid "forward"
msgstr "encaminhar"
msgid "full-duplex"
msgstr "full-duplex"
msgid "half-duplex"
msgstr "half-duplex"
msgid "help"
msgstr "ajuda"
msgid "hidden"
msgstr "ocultar"
msgid "hybrid mode"
msgstr "Modo Híbrido"
msgid "if target is a network"
msgstr "se o destino for uma rede"
msgid "input"
msgstr "entrada"
msgid "kB"
msgstr "kB"
msgid "kB/s"
msgstr "kB/s"
msgid "kbit/s"
msgstr "kbit/s"
msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
msgstr ""
"Arquivo local de <abbr title=\"Sistema de Nomes de Domínios\">DNS</abbr>"
msgid "minutes"
msgstr "minutos"
# Is this yes/no or no like in no one?
msgid "no"
msgstr "não"
msgid "no link"
msgstr "sem link"
msgid "none"
msgstr "nenhum"
msgid "not present"
msgstr "não presente "
msgid "off"
msgstr "desligado"
msgid "on"
msgstr "ligado"
msgid "open"
msgstr "aberto"
msgid "output"
msgstr ""
msgid "overlay"
msgstr "sobreposição"
msgid "random"
msgstr ""
msgid "relay mode"
msgstr "modo retransmissor"
msgid "routed"
msgstr "roteado"
msgid "server mode"
msgstr "modo servidor"
msgid "stateful-only"
msgstr "somente com estado"
msgid "stateless"
msgstr "sem estado"
msgid "stateless + stateful"
msgstr "sem estado + com estado"
msgid "tagged"
msgstr "etiquetado"
msgid "time units (TUs / 1.024 ms) [1000-65535]"
msgstr "unidades de tempo (TUs / 1.024 ms) [1000-65535]"
msgid "unknown"
msgstr "desconhecido"
msgid "unlimited"
msgstr "ilimitado"
msgid "unspecified"
msgstr "não especificado"
msgid "unspecified -or- create:"
msgstr "não especificado -ou- criar:"
msgid "untagged"
msgstr "não etiquetado"
msgid "yes"
msgstr "sim"
msgid "« Back"
msgstr "« Voltar"
#~ msgid "IPv4 WAN Status"
#~ msgstr "Estado IPv4 da WAN"
#~ msgid "IPv6 WAN Status"
#~ msgstr "Estado IPv6 da WAN"
|