summaryrefslogtreecommitdiffstats
path: root/perl-install/network/netconnect.pm
blob: 2e44ef2e4c0295035f0e104eb6b4fca8b8588dce (plain)
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
package network::netconnect; # $Id$

use strict;
use common;
use log;
use detect_devices;
use run_program;
use modules;
use any;
use fs;
use mouse;
use network::network;
use network::tools;
use MDK::Common::Globals "network", qw($in);

sub detect {
    my ($modules_conf, $auto_detect, $o_class) = @_;
    my %l = (
             isdn => sub {
                 require network::isdn;
                 $auto_detect->{isdn} = network::isdn::detect_backend($modules_conf);
             },
             lan => sub { # ethernet
                 modules::load_category($modules_conf, 'network/main|gigabit|usb');
                 require network::ethernet;
                 $auto_detect->{lan} = { map { $_->[0] => $_->[1] } network::ethernet::get_eth_cards($modules_conf) };
             },
             adsl => sub {
                 require network::adsl;
                 $auto_detect->{adsl} = network::adsl::adsl_detect();
             },
             modem => sub {
                 $auto_detect->{modem} = { map { $_->{description} || "$_->{MANUFACTURER}|$_->{DESCRIPTION} ($_->{device})" => $_ } detect_devices::getModem($modules_conf) };
             },
            );
    $l{$_}->() foreach $o_class || keys %l;
    return;
}

sub init_globals {
    my ($in) = @_;
    MDK::Common::Globals::init(in => $in);
}

sub detect_timezone() {
    my %tmz2country = ( 
		       'Europe/Paris' => N("France"),
		       'Europe/Amsterdam' => N("Netherlands"),
		       'Europe/Rome' => N("Italy"),
		       'Europe/Brussels' => N("Belgium"), 
		       'America/New_York' => N("United States"),
		       'Europe/London' => N("United Kingdom") 
		      );
    my %tm_parse = MDK::Common::System::getVarsFromSh("$::prefix/etc/sysconfig/clock");
    my @country;
    foreach (keys %tmz2country) {
	if ($_ eq $tm_parse{ZONE}) {
	    unshift @country, $tmz2country{$_};
	} else { push @country, $tmz2country{$_} };
    }
    \@country;
}

# load sub category's wizard pages into main wizard data structure
sub get_subwizard {
    my ($wiz, $type) = @_;
    my %net_conf_callbacks = (adsl => sub { require network::adsl; &network::adsl::get_wizard },
                              #cable => sub { require network::ethernet; &network::ethernet::get_wizard },
                              #isdn => sub { require network::isdn; &network::isdn::get_wizard },
                              #lan => sub { require network::ethernet; &network::ethernet::get_wizard },
                              #modem => sub { require network::modem; &network::modem::get_wizard },
                             );
    $net_conf_callbacks{$type}->($wiz);
}

# configuring all network devices
sub real_main {
      my ($_prefix, $netcnx, $in, $modules_conf, $o_netc, $o_mouse, $o_intf, $o_first_time, $o_noauto) = @_;
      my $netc  = $o_netc  ||= {};
      my $mouse = $o_mouse ||= {};
      my $intf  = $o_intf  ||= {};
      my $first_time = $o_first_time || 0;
      my ($network_configured, $direct_net_install, $cnx_type, $type, $interface, @all_cards, %eth_intf);
      my (%connections, @connection_list, $is_wireless);
      my ($modem, $modem_name, $modem_conf_read, $modem_dyn_dns, $modem_dyn_ip);
      my ($adsl_type, @adsl_devices, $adsl_failed, $adsl_answer, %adsl_data, $adsl_data, $adsl_provider, $adsl_old_provider);
      my ($ntf_name, $ipadr, $netadr, $gateway_ex, $up, $need_restart_network);
      my ($isdn, $isdn_name, $isdn_type, %isdn_cards, @isdn_dial_methods);
      my $my_isdn = join('', N("Manual choice"), " (", N("Internal ISDN card"), ")");
      my ($module, $auto_ip, $protocol, $onboot, $needhostname, $hotplug, $track_network_id, @fields); # lan config
      my $success = 1;
      my $ethntf = {};
      my $db_path = "$::prefix/usr/share/apps/kppp/Provider";
      my (%countries, @isp, $country, $provider, $old_provider);
      my $config = {};
      eval(cat_("$::prefix/etc/sysconfig/drakconnect"));

      my %wireless_mode = (N("Ad-hoc") => "Ad-hoc", 
                           N("Managed") => "Managed", 
                           N("Master") => "Master",
                           N("Repeater") => "Repeater",
                           N("Secondary") => "Secondary",
                           N("Auto") => "Auto",
                          );
      my %l10n_lan_protocols = (
                               static => N("Manual configuration"),
                               dhcp   => N("Automatic IP (BOOTP/DHCP)"),
                               if_(0,
                               dhcp_zeroconf   => N("Automatic IP (BOOTP/DHCP/Zeroconf)"),
                                  )
                              );
      my $_w = N("Protocol for the rest of the world");
      my %isdn_protocols = (
                            2 => N("European protocol (EDSS1)"),
                            3 => N("Protocol for the rest of the world\nNo D-Channel (leased lines)"),
                           );

      network::tools::remove_initscript();

      init_globals($in);

      read_net_conf($netcnx, $netc, $intf);

      $netc->{autodetect} = {};

      my $lan_detect = sub {
          detect($modules_conf, $netc->{autodetect}, 'lan');
          modules::interactive::load_category($in, $modules_conf, 'network/main|gigabit|pcmcia|usb|wireless', !$::expert, 0);
          @all_cards = network::ethernet::get_eth_cards($modules_conf);
          %eth_intf = network::ethernet::get_eth_cards_names($modules_conf, @all_cards);
          require list_modules;
          %eth_intf = map { $_->[0] => join(': ', $_->[0], $_->[2]) }
            grep { to_bool($is_wireless) == c::isNetDeviceWirelessAware($_->[0]) } @all_cards;
      };

      my $find_lan_module = sub { 
          if (my $dev = find { $_->{device} eq $ethntf->{DEVICE} } detect_devices::pcmcia_probe()) { # PCMCIA case
              $module = $dev->{driver};
          } elsif ($dev = find { $_->[0] eq $ethntf->{DEVICE} } @all_cards) {
              $module = $dev->[1];
          } else { $module = "" }
      };

      my $is_hotplug_blacklisted = sub {
          bool2yesno($is_wireless ||
                     member($module, qw(b44 forcedeth madwifi_pci)) ||
                     find { $_->{device} eq $ntf_name } detect_devices::pcmcia_probe());
      };

      my %adsl_devices = (
                          speedtouch => N("Alcatel speedtouch USB modem"),
                          sagem => N("Sagem USB modem"),
                          bewan => N("Bewan modem"),
                          eci       => N("ECI Hi-Focus modem"), # this one needs eci agreement
                         );

      my %adsl_types = (
                        dhcp   => N("Dynamic Host Configuration Protocol (DHCP)"),
                        manual => N("Manual TCP/IP configuration"),
                        pptp  => N("Point to Point Tunneling Protocol (PPTP)"),
                        pppoe  => N("PPP over Ethernet (PPPoE)"),
                        pppoa  => N("PPP over ATM (PPPoA)"),
                       );

      my %encapsulations = (
                            1 => N("Bridged Ethernet LLC"), 
                            2 => N("Bridged Ethernet VC"), 
                            3 => N("Routed IP LLC"), 
                            4 => N("Routed IP VC"),
                            5 => N("PPPOA LLC"), 
                            6 => N("PPPOA VC"),
                           );

      my %ppp_auth_methods = (
                              0 => N("Script-based"),
                              1 => N("PAP"),
                              2 => N("Terminal-based"),
                              3 => N("CHAP"),
                              4 => N("PAP/CHAP"),
                             );

      my $offer_to_connect = sub {
          return "ask_connect_now" if $netc->{internet_cnx_choice} eq 'adsl' && $adsl_devices{$ntf_name};
          return "ask_connect_now" if member($netc->{internet_cnx_choice}, qw(modem isdn));
          return "end";
      };
    
      my $after_start_on_boot_step = sub {
          if ($netc->{internet_cnx_choice}) {
              write_cnx_script($netc);
              $netcnx->{type} = $netc->{internet_cnx}{$netc->{internet_cnx_choice}}{type} if $netc->{internet_cnx_choice};
          } else {
              undef $netc->{NET_DEVICE};
          }
          network::network::configureNetwork2($in, $::prefix, $netc, $intf);
          $network_configured = 1;
          return "restart" if $need_restart_network && $::isStandalone && !$::expert;
          return $offer_to_connect->();
      };

      my $goto_start_on_boot_ifneeded = sub {
          return $after_start_on_boot_step->() if $netcnx->{type} =~ /lan|cable/;
          return "isdn_dial_on_boot" if  $netcnx->{type} =~ /isdn/;
          return "network_on_boot";
      };

      my $save_cnx = sub {
          if (keys %$config) {
              require Data::Dumper;
              output("$::prefix/etc/sysconfig/drakconnect", Data::Dumper->Dump([ $config ], [ '$p' ]));
          }
          return $goto_start_on_boot_ifneeded->();
      };

      my $handle_multiple_cnx = sub {
          $need_restart_network = member($netcnx->{type}, qw(cable lan)) || $netcnx->{type} eq 'adsl' && $adsl_devices{$ntf_name};
          my $nb = keys %{$netc->{internet_cnx}};
          if (1 < $nb) {
              return "multiple_internet_cnx";
          } else {
              $netc->{internet_cnx_choice} = (keys %{$netc->{internet_cnx}})[0] if $nb == 1;
              $save_cnx->();
              return $goto_start_on_boot_ifneeded->()
          }
      };

      
      # main wizard:
      my $wiz;
      $wiz =
        {
         defaultimage => "drakconnect.png",
         name => N("Network & Internet Configuration"),
         pages => {
                   welcome => 
                   {
                    pre => sub {
                        # keep b/c of translations in case they can be reused somewhere else:
                        my @_a = (N("(detected on port %s)", 'toto'), 
                          #-PO: here, "(detected)" string will be appended to eg "ADSL connection"
                          N("(detected %s)", 'toto'), N("(detected)"));
                        my @connections = 
                          ([ N("Modem connection"),  "modem" ],
                           [ N("ISDN connection"),   "isdn"  ],
                           [ N("ADSL connection"),   "adsl"  ],
                           [ N("Cable connection"),  "cable" ],
                           [ N("LAN connection"),    "lan"   ],
                           [ N("Wireless connection"), "lan" ],
                          );
                        
                        foreach (@connections) {
                            my ($string, $type) = @$_;
                            $connections{$string} = $type;
                        }
                        @connection_list = { val => \$cnx_type, type => 'list', list => [ map { $_->[0] } @connections ], };
                    },
                    if_(!$::isInstall, no_back => 1),
                    name => N("Choose the connection you want to configure"),
                    interactive_help_id => 'configureNetwork',
                    data => \@connection_list,
                    post => sub {
                        $is_wireless = $cnx_type eq N("Wireless connection");
                        #- why read again the net_conf here ?
                        read_net_conf($netcnx, $netc, $intf) if $::isInstall;  # :-(
                        $type = $netcnx->{type} = $connections{$cnx_type};
                        if ($type eq 'cable') {
                            $auto_ip = 1;
                            return "lan";
                        }
                        return $type;
                    },
                   },

                   prepare_detection => 
                   {
                    name => N("We are now going to configure the %s connection.\n\n\nPress \"%s\" to continue.",
                              translate($type), N("Next")),
                    post => $handle_multiple_cnx,
                   },

                 
                   hw_account => 
                   {
                    name => N("Connection Configuration") . "\n\n" .
                    N("Please fill or check the field below"),
                    data => sub {
                             [ 
                             (map {
                                 my ($dstruct, $field, $item) = @$_;
                                 $item->{val} = \$dstruct->{$field};
                                 if__(exists $dstruct->{$field}, $item);
                             } ([ $netcnx, "irq", { label => N("Card IRQ") } ],
                                [ $netcnx, "mem", { label => N("Card mem (DMA)") } ],
                                [ $netcnx, "io",  { label => N("Card IO") } ],
                                [ $netcnx, "io0", { label => N("Card IO_0") } ],
                                [ $netcnx, "io1", { label => N("Card IO_1") } ],
                                [ $isdn, "phone_in",     { label => N("Your personal phone number") } ],
                                [ $netc,   "DOMAINNAME2",  { label => N("Provider name (ex provider.net)") } ],
                                [ $isdn, "phone_out",    { label => N("Provider phone number") } ],
                                [ $netc,   "dnsServer2",   { label => N("Provider DNS 1 (optional)") } ],
                                [ $netc,   "dnsServer3",   { label => N("Provider DNS 2 (optional)") } ],
                                [ $isdn, "dialing_mode", { label => N("Dialing mode"),  list => ["auto", "manual"] } ],
                                [ $isdn, "speed",        { label => N("Connection speed"), list => ["64 Kb/s", "128 Kb/s"] } ],
                                [ $netcnx, "huptimeout",   { label => N("Connection timeout (in sec)") } ], #unused?
                               )
                             ),
                             ({ label => N("Account Login (user name)"), val => \$isdn->{login} },
                              { label => N("Account Password"),  val => \$isdn->{passwd}, hidden => 1 },
                             )
                            ],
                            },
                    post => sub {
                        network::isdn::write_config($isdn, $netc); # or return 'isdn_protocol';
                        $netc->{$_} = 'ippp0' foreach 'NET_DEVICE', 'NET_INTERFACE';
                        # return "static_hostname";
                        $handle_multiple_cnx->();
                    },
                   },
                   
                   
                   # KILLME?: no longer called and deprecated fonction calls :-(
                   #go_ethernet => 
                   #{
                   # pre => sub {
                   #     conf_network_card($netc, $intf, $type, $ipadr, $netadr) or return;
                   #     $netc->{NET_INTERFACE} = $netc->{NET_DEVICE};
                   #     configureNetwork($netc, $intf, $first_time) or return; 
                   # },
                   #},

                   
                   isdn =>
                   {
                    pre=> sub {
                        detect($modules_conf, $netc->{autodetect}, 'isdn');
                        %isdn_cards = map { $_->{description} => $_ } @{$netc->{autodetect}{isdn}};
                    },
                    name => N("Select the network interface to configure:"),
                    data =>  sub {
                        [ { label => N("Net Device"), type => "list", val => \$isdn_name, allow_empty_list => 1, 
                            list => [ $my_isdn, N("External ISDN modem"), keys %isdn_cards ] } ]
                    },
                    post => sub {
                        # !intern_pci:
                        # data => [ { val => \$isdn_type, type => "list", list => [ ,  ], } ],
                        # post => sub {
                        if ($isdn_name eq $my_isdn) {
                            return "isdn_ask";
                        } elsif ($isdn_name eq N("External ISDN modem")) {
                            detect($modules_conf, $netc->{autodetect}, 'modem');
                            $netcnx->{type} = $netc->{isdntype} = 'isdn_external';
                            $netcnx->{isdn_external}{device} = network::modem::first_modem($netc);
                            network::isdn::read_config($netcnx->{isdn_external});
                            $netcnx->{isdn_external}{special_command} = 'AT&F&O2B40';
                            require network::modem;
                            $modem = $netcnx->{isdn_external};
                            return "modem";
                        }

                        $netc->{isdntype} = 'isdn_internal';
                        # FIXME: some of these should be taken from isdn db
                        $netcnx->{isdn_internal} = $isdn = { map { $_ => $isdn_cards{$isdn_name}{$_} } qw(description vendor id card_type driver type mem io io0 io1 irq firmware) };

                        if ($isdn->{id}) {
                            log::explanations("found isdn card : $isdn->{description}; vendor : $isdn->{vendor}; id : $isdn->{id}; driver : $isdn->{driver}\n");
                            $isdn->{description} =~ s/\|/ -- /;
                            
                        }
                        network::isdn::read_config($netcnx->{isdn_internal});
                        return "isdn_protocol";
                    },
                   },
                   

                   isdn_ask =>
                   {
                    pre => sub {
                        %isdn_cards = network::isdn::get_cards();
                    },
                    name => N("Select a device!"),
                    data => sub { [ { label => N("Net Device"), val => \$isdn_name, type => 'list', separator => '|', list => [ keys %isdn_cards ], allow_empty_list => 1 } ] },
                    pre2 => sub {
                        my ($label) = @_;
                        
                        #- ISDN card already detected
                        goto isdn_ask_step_3;

                      isdn_ask_step_1:
                        my $e = $in->ask_from_list_(N("ISDN Configuration"),
                                                    $label . "\n" . N("What kind of card do you have?"),
                                                    [ N_("ISA / PCMCIA"), N_("PCI"), N_("USB"), N_("I don't know") ]
                                                   ) or return;
                      isdn_ask_step_1b:
                        if ($e =~ /PCI/) {
                            $isdn->{card_type} = 'pci';
                        } elsif ($e =~ /USB/) {
                            $isdn->{card_type} = 'usb';
                        } else {
                            $in->ask_from_list_(N("ISDN Configuration"),
                                                N("
If you have an ISA card, the values on the next screen should be right.\n
If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your card.
"),
                                                [ N_("Continue"), N_("Abort") ]) eq 'Continue' or goto isdn_ask_step_1;
                            $isdn->{card_type} = 'isa';
                        }

                      isdn_ask_step_2:
                        $e = $in->ask_from_listf(N("ISDN Configuration"),
                                                 N("Which of the following is your ISDN card?"),
                                                 sub { $_[0]{description} },
                                                 [ network::isdn::get_cards_by_type($isdn->{card_type}) ]) or goto($isdn->{card_type} =~ /usb|pci/ ? 'isdn_ask_step_1' : 'isdn_ask_step_1b');
                        $e->{$_} and $isdn->{$_} = $e->{$_} foreach qw(driver type mem io io0 io1 irq firmware);

                        },
                    post => sub {
                        $netcnx->{isdn_internal} = $isdn = $isdn_cards{$isdn_name};
                        return "isdn_protocol";
                    }
                   },

                   
                   isdn_protocol =>
                   {
                    name => N("ISDN Configuration") . "\n\n" . N("Which protocol do you want to use?"),
                    data => [
                             { label => N("Protocol"), type => "list", val => \$isdn_type,
                               list => [ keys %isdn_protocols ], format => sub { $isdn_protocols{$_[0]} } }
                            ],
                    post => sub { 
                        $isdn->{protocol} = $isdn_type; 
                        return "isdn_db",
                    }
                   },


                   isdn_db =>
                   {
                    name => N("ISDN Configuration") . "\n\n" . N("Select your provider.\nIf it isn't listed, choose Unlisted."),
                    data => sub {
                        [ { label => N("Provider:"), type => "list", val => \$provider, separator => '|',
                            list => [ N("Unlisted - edit manually"), network::isdn::read_providers_backend() ] } ];
                    },
                    post => sub {
                        network::isdn::get_info_providers_backend($isdn, $netc, $provider);
                        $isdn->{huptimeout} = 180;
                        $isdn->{$_} ||= '' foreach qw(phone_in phone_out dialing_mode login passwd passwd2 idl speed);
                        add2hash($netc, { dnsServer2 => '', dnsServer3 => '', DOMAINNAME2 => '' });
                        return "hw_account";
                    },
                   },


                   no_supported_winmodem =>
                   {
                    name => N("Warning") . "\n\n" . N("Your modem isn't supported by the system.
Take a look at http://www.linmodems.org"),
                    end => 1,
                   },


                   modem =>
                   {
                    pre => sub {
                        require network::modem;
                        detect($modules_conf, $netc->{autodetect}, 'modem');
                    },
                    name => N("Select the modem to configure:"),
                    data => sub {
                        [ { label => N("Modem"), type => "list", val => \$modem_name, allow_empty_list => 1,
                            list => [ keys %{$netc->{autodetect}{modem}}, N("Manual choice") ], } ],
                    },
                    complete => sub {
                        if ($netc->{autodetect}{modem}{$modem_name}{driver} =~ /^(LT|H[cs]f):/ && c::kernel_version() !~ /^\Q2.4/) {
                            $in->ask_warn(N("Warning"), N("Sorry, we support only 2.4 and above kernels."));
                        }
                        return 0;
                    },
                    post => sub {
                        $modem ||= $netcnx->{modem} ||= {};;
                        return 'choose_serial_port' if $modem_name eq N("Manual choice");
                        $ntf_name = $netc->{autodetect}{modem}{$modem_name}{device} || $netc->{autodetect}{modem}{$modem_name}{description};

                        return "ppp_provider" if $ntf_name =~ m!^/dev/!;
                        return "choose_serial_port" if !$ntf_name;

                        my $type;

                        my %pkgs2path = (
                                         hcfpcimodem => "$::prefix/usr/sbin/hcfpciconfig",
                                         hsflinmodem => "$::prefix/usr/sbin/hsfconfig",
                                         ltmodem => "$::prefix/etc/devfs/conf.d/ltmodem.conf",
                                        );
                        
                        my %devices = (ltmodem => '/dev/ttyS14',
                                       hsflinmodem => '/dev/ttySHSF0'
                                      );
                        
                        
                        if (my $driver = $netc->{autodetect}{modem}{$modem_name}{driver}) {
                            $driver =~ /^Hcf:/ and $type = "hcfpcimodem";
                            $driver =~ /^Hsf:/ and $type = "hsflinmodem";
                            $driver =~ /^LT:/  and $type = "ltmodem";
                            $type = undef if !($type && (-f $pkgs2path{$type} || $in->do_pkgs->ensure_is_installed_if_available($type, $pkgs2path{$type})));
                            $modem->{device} = $devices{$type} || '/dev/modem' if $type; # automatically linked by /etc/devfs/conf entry
                        }
                        
                        #- fallback to modem configuration (beware to never allow test it).
                        return $type ? "ppp_provider" : "no_supported_winmodem";
                    },
                   },

                   
                   choose_serial_port =>
                   {
                    name => N("Please choose which serial port your modem is connected to."),
                    interactive_help_id => 'selectSerialPort',
                    data => sub {
                        [ { val => \$modem->{device}, format => \&mouse::serial_port2text, type => "list",
                            list => [ grep { $_ ne $o_mouse->{device} } (mouse::serial_ports(), grep { -e $_ } '/dev/modem', '/dev/ttySL0') ] } ],
                        },
                    post => sub {
                        $ntf_name = $modem->{device};
                        return 'ppp_provider';
                    },
                   },


                   ppp_provider =>
                   {
                    pre => sub {
                        network::modem::ppp_read_conf($netcnx, $netc) if !$modem_conf_read;
                        $modem_conf_read = 1;
                        $in->do_pkgs->ensure_is_installed('kdenetwork-kppp-provider', $db_path);
                        @isp = map {
                            my $country = $_;
                            map { 
                                s!$db_path/$country!!;
                                s/%([0-9]{3})/chr(int($1))/eg;
                                $countries{$country} ||= translate($country);
                                join('', $countries{$country}, $_);
                            } grep { !/.directory$/ } glob_("$db_path/$country/*")
                        } map { s!$db_path/!!o; s!_! !g; $_ } glob_("$db_path/*");
                        $old_provider = $provider;
                    },
                    name => N("Select your provider:"),
                    data => sub {
                        [ { label => N("Provider:"), type => "list", val => \$provider, separator => '/', list => \@isp } ]
                    },
                    post => sub {
                        ($country, $provider) = split('/', $provider);
                        $country = { reverse %countries }->{$country};
                        my %l = getVarsFromSh("$db_path/$country/$provider");
                        if (defined $old_provider && $old_provider ne $provider) {
                            $modem->{connection} = $l{Name};
                            $modem->{phone} = $l{Phonenumber};
                            $modem->{$_} = $l{$_} foreach qw(Authentication AutoName Domain Gateway IPAddr SubnetMask);
                            ($modem->{dns1}, $modem->{dns2}) = split(',', $l{DNS});
                        }
                        return "ppp_account";
                    },
                   },


                   ppp_account =>
                   {
                    pre => sub {
                        $mouse ||= {};
                        $mouse->{device} ||= readlink "$::prefix/dev/mouse";
                    },
                    name => N("Dialup: account options"), 
                    data => sub {
                            [
                             { label => N("Connection name"), val => \$modem->{connection} },
                             { label => N("Phone number"), val => \$modem->{phone} },
                             { label => N("Login ID"), val => \$modem->{login} },
                             { label => N("Password"), val => \$modem->{passwd}, hidden => 1 },
                             { label => N("Authentication"), val => \$modem->{Authentication}, 
                               list => [ sort keys %ppp_auth_methods ], format => sub { $ppp_auth_methods{$_[0]} } },
                            ],
                        },
                    next => "ppp_ip",
                   },
         

                   ppp_ip =>
                   {
                    pre => sub {
                        $modem_dyn_ip = sub { $modem->{auto_ip} eq N("Automatic") };
                    },
                    name => N("Dialup: IP parameters"),
                    data => sub {
                        [
                         { label => N("IP parameters"), type => "list", val => \$modem->{auto_ip}, list => [ N("Automatic"), N("Manual") ] },
                         { label => N("IP address"), val => \$modem->{IPAddr}, disabled => $modem_dyn_ip },
                         { label => N("Subnet mask"), val => \$modem->{SubnetMask}, disabled => $modem_dyn_ip },
                        ];
                    },
                    next => "ppp_dns",
                   },
         

                   ppp_dns =>
                   {
                    pre => sub {
                        $modem_dyn_dns = sub { $modem->{auto_dns} eq N("Automatic") };
                    },
                    name => N("Dialup: DNS parameters"),
                    data => sub {
                        [
                         { label => N("DNS"), type => "list", val => \$modem->{auto_dns}, list => [ N("Automatic"), N("Manual") ] },
                         { label => N("Domain name"), val => \$modem->{domain}, disabled => $modem_dyn_dns },
                         { label => N("First DNS Server (optional)"), val => \$modem->{dns1}, disabled => $modem_dyn_dns },
                         { label => N("Second DNS Server (optional)"), val => \$modem->{dns2}, disabled => $modem_dyn_dns },
                         { text => N("Set hostname from IP"), val => \$modem->{AutoName}, type => 'bool', disabled => $modem_dyn_dns },
                        ];
                    },
                    next => "ppp_gateway",
                   },
         

                   ppp_gateway =>
                   {
                    name => N("Dialup: IP parameters"), 
                    data => sub {
                        [
                         { label => N("Gateway"), type => "list", val => \$modem->{auto_gateway}, list => [ N("Automatic"), N("Manual") ] },
                         { label => N("Gateway IP address"), val => \$modem->{Gateway}, 
                           disabled => sub { $modem->{auto_gateway} eq N("Automatic") } },
                        ];
                        },
                    post => sub {
                        network::modem::ppp_configure($in, $modem);
                        $netc->{$_} = 'ppp0' foreach 'NET_DEVICE', 'NET_INTERFACE';
                        $handle_multiple_cnx->();
                    },
                   },


                   adsl => 
                   {
                    pre => sub {
                        get_subwizard($wiz, 'adsl');
                        $lan_detect->();
                        detect($modules_conf, $netc->{autodetect}, 'adsl');
                        @adsl_devices = keys %eth_intf;
                        foreach my $modem (keys %adsl_devices) {
                            push @adsl_devices, $modem if $netc->{autodetect}{adsl}{$modem};
                        }
                    },
                    name => N("ADSL configuration") . "\n\n" . N("Select the network interface to configure:"),
                    data =>  [ { label => N("Net Device"), type => "list", val => \$ntf_name, allow_empty_list => 1,
                               list => \@adsl_devices, format => sub { $eth_intf{$_[0]} || $adsl_devices{$_[0]} } } ],
                    post => sub {
                        my %packages = (
                                        'eci'        => [ 'eciadsl', 'missing' ],
                                        'sagem'      => [ 'eagle-usb',  "$::prefix/usr/sbin/eaglectrl" ],
                                        'speedtouch' => [ 'speedtouch', "$::prefix/usr/sbin/modem_run" ],
                                       );
                        return 'adsl_unsupported_eci' if $ntf_name eq 'eci';
                        # FIXME: check that the package installation succeeds, else retry or abort
                        $in->do_pkgs->install($packages{$ntf_name}[0]) if $packages{$ntf_name} && !-e $packages{$ntf_name}->[1];
                        if ($ntf_name eq 'speedtouch') {
                            $in->do_pkgs->ensure_is_installed_if_available('speedtouch_mgmt', "$::prefix/usr/share/speedtouch/mgmt.o");
                            return 'adsl_speedtouch_firmware' if ! -e "$::prefix/usr/share/speedtouch/mgmt.o";
                        }
                        $netcnx->{bus} = $netc->{autodetect}{adsl}{bewan}{bus} if $ntf_name eq 'bewan';
                        if ($ntf_name eq 'bewan' && !$::testing) {
                            $in->do_pkgs->ensure_is_installed_if_available('unicorn', "$::prefix/usr/bin/bewan_adsl_status");
                        }
                        return 'adsl_provider' if $adsl_devices{$ntf_name};
                        return 'adsl_protocol';
                    },
                   },

                   
                   adsl_provider =>
                   {
                    pre => sub {
                        require network::adsl_consts;
                        %adsl_data = %network::adsl_consts::adsl_data;
                        $adsl_old_provider = $adsl_provider;
                    },
                    name => N("Please choose your ADSL provider"),
                    data => sub { 
                        [ { label => N("Provider:"), type => "list", val => \$adsl_provider, separator => '|', list => [ keys %adsl_data ] } ];
                    },
                    post => sub {
                        $adsl_data = $adsl_data{$adsl_provider};
                        $adsl_type = 'pppoa' if member($ntf_name, qw(bewan speedtouch));
                        if ($adsl_provider ne $adsl_old_provider) {
                            $netc->{$_} = $adsl_data->{$_} foreach qw(DOMAINNAME2 Encapsulation vpi vci);
                              $adsl_type ||= $adsl_data->{method};
                        }
                        return 'adsl_protocol';
                    },
                   },


                   adsl_speedtouch_firmware =>
                   {
                    name => N("You need the Alcatel microcode.
You can provide it now via a floppy or your windows partition,
or skip and do it later."),
                    data => [ { label => "", val => \$adsl_answer, type => "list",
                                list => [ N("Use a floppy"), N("Use my Windows partition"), N("Do it later") ], }
                            ],
                    post => sub {
                        my $destination = "$::prefix/usr/share/speedtouch/";
                        my ($file, $source, $mounted);
                        if ($adsl_answer eq N("Use a floppy")) {
                            $mounted = 1;
                            $file = 'mgmt.o';
                            ($source, $adsl_failed) = network::tools::use_floppy($in, $file);
                        } elsif ($adsl_answer eq N("Use my Windows partition")) {
                            ($source, $adsl_failed) = network::tools::use_windows($file = 'alcaudsl.sys');
                        }
                        return "adsl_no_firmawre" if $adsl_answer eq N("Do it later");

                        my $_b = before_leaving { fs::umount('/mnt') } if $mounted;
                        if (!$adsl_failed) {
                            if (-e "$source/$file") { 
                                cp_af("$source/$file", $destination) if !$::testing;
                            } else {
                                $adsl_failed = N("Firmware copy failed, file %s not found", $file);
                            }
                        }
                        log::explanations($adsl_failed || "Firmware copy $file in $destination succeeded");
                        -e "$destination/alcaudsl.sys" and rename "$destination/alcaudsl.sys", "$destination/mgmt.o";

                        # kept translations b/c we may want to reuse it later:
                        my $_msg = N("Firmware copy succeeded");
                        return $adsl_failed ? 'adsl_copy_firmware_failled' : 'adsl_provider';
                    },
                   },


                   adsl_copy_firmware_failled =>
                   {
                    name => sub { $adsl_failed },
                    next => 'adsl_provider',
                   },

                   
                   "adsl_no_firmawre" =>
                   {
                    name => N("You need the Alcatel microcode.
Download it at:
%s
and copy the mgmt.o in /usr/share/speedtouch", 'http://prdownloads.sourceforge.net/speedtouch/speedtouch-20011007.tar.bz2'),
                    next => "adsl_provider",
                   },
         

                   adsl_protocol =>
                   {
                    pre => sub {
                        # preselect right protocol for ethernet though connections:
                        if (!exists $adsl_devices{$ntf_name}) {
                            $ethntf = $intf->{$ntf_name} ||= { DEVICE => $ntf_name };
                            $adsl_type = $ethntf->{BOOTPROTO} || "dhcp";
                        }
                    },
                    name => N("Connect to the Internet") . "\n\n" .
                    N("The most common way to connect with adsl is pppoe.
Some connections use pptp, a few use dhcp.
If you don't know, choose 'use pppoe'"),
                    data =>  [
                              { text => N("ADSL connection type :"), val => \$adsl_type, type => "list",
                                list => [ sort { $adsl_types{$a} cmp $adsl_types{$b} } keys %adsl_types ],
                                format => sub { $adsl_types{$_[0]} },
                              },
                             ],
                    post => sub {
                        $netcnx->{type} = 'adsl';
                        # blacklist bogus driver, enable ifplugd support else:
                        $find_lan_module->();
                        $ethntf->{MII_NOT_SUPPORTED} ||= $is_hotplug_blacklisted->();
                        # process static/dhcp ethernet devices:
                        if (!exists $adsl_devices{$ntf_name} && member($adsl_type, qw(manual dhcp))) {
                            $auto_ip = $adsl_type eq 'dhcp';
                            return 'lan_intf';
                        }
                        network::adsl::adsl_probe_info($netcnx, $netc, $adsl_type, $ntf_name);
                        $netc->{$_} = $adsl_type eq 'pppoe' ? $ntf_name : 'ppp0' foreach 'NET_DEVICE', 'NET_INTERFACE';
                        return 'adsl_account';
                    },
                   },
                    

                   adsl_account => 
                   {
                    name => N("Connection Configuration") . "\n\n" .
                    N("Please fill or check the field below"),
                    data => sub {
                        [ 
                         if_(0, { label => N("Provider name (ex provider.net)"), val => \$netc->{DOMAINNAME2} }),
                         { label => N("First DNS Server (optional)"), val => \$netc->{dnsServer2} },
                         { label => N("Second DNS Server (optional)"), val => \$netc->{dnsServer3} },
                         { label => N("Account Login (user name)"), val => \$netcnx->{login} },
                         { label => N("Account Password"),  val => \$netcnx->{passwd}, hidden => 1 },
                         { label => N("Virtual Path ID (VPI):"), val => \$netc->{vpi}, advanced => 1 },
                         { label => N("Virtual Circuit ID (VCI):"), val => \$netc->{vci}, advanced => 1 },
                         if_($ntf_name eq "sagem",
                             { label => N("Encapsulation :"), val => \$netc->{Encapsulation}, list => [ keys %encapsulations ],
                               format => sub { $encapsulations{$_[0]} }, advanced => 1,
                             },
                            ),
                        ],
                    },
                    post => sub {
                        $netc->{internet_cnx_choice} = 'adsl';
                        network::adsl::adsl_conf_backend($in, $modules_conf, $netcnx, $netc, $ntf_name, $adsl_type, $netcnx); #FIXME
                        $config->{adsl} = { kind => $ntf_name, protocol => $adsl_type };
                        $handle_multiple_cnx->();
                    },
                   },


                    adsl_unsupported_eci => 
                    {
                     name => N("The ECI Hi-Focus modem cannot be supported due to binary driver distribution problem.

You can find a driver on http://eciadsl.flashtux.org/"),
                     end => 1,
                    },
         

                   lan => 
                   {
                    pre => $lan_detect,
                    name => N("Select the network interface to configure:"),
                    data =>  sub {
                        [ { label => N("Net Device"), type => "list", val => \$ntf_name, list => [ (sort keys %eth_intf), N_("Manually load a driver") ], 
                            allow_empty_list => 1, format => sub { translate($eth_intf{$_[0]} || $_[0]) } } ];
                    },
                    post => sub {
                        $ethntf = $intf->{$ntf_name} ||= { DEVICE => $ntf_name };
                        if ($ntf_name eq "Manually load a driver") {
                            modules::interactive::load_category__prompt($in, $modules_conf, 'network/main|gigabit|pcmcia|usb|wireless');
                            return 'lan';
                        }
                        $::isInstall && $netc->{NET_DEVICE} eq $ethntf->{DEVICE} ? 'lan_alrd_cfg' : 'lan_protocol';
                    },
                   },

                   lan_alrd_cfg =>
                   {
                    name => N("WARNING: this device has been previously configured to connect to the Internet.
Simply accept to keep this device configured.
Modifying the fields below will override this configuration."),
                    type => "yesorno",
                    post => sub {
                        my ($res) = @_;
                        return $res ? "lan_protocol" : "alrd_end";
                    }
                   },


                   alrd_end => 
                   {
                    name => N("Congratulations, the network and Internet configuration is finished.

"),
                           end => 1,
                   },


                   lan_protocol =>
                   {
                    pre => sub  {
                        $find_lan_module->();
                        $protocol = $l10n_lan_protocols{defined $auto_ip ? ($auto_ip ? 'dhcp' : 'static') : $ethntf->{BOOTPROTO}} || 0;
                    },
                    name => sub { 
                        my $_msg = N("Zeroconf hostname resolution");
                        N("Configuring network device %s (driver %s)", $ethntf->{DEVICE}, $module) . "\n\n" .
                          N("The following protocols can be used to configure an ethernet connection. Please choose the one you want to use")
                    },
                    data => sub {
                        [ { val => \$protocol, type => "list", list => [ sort values %l10n_lan_protocols ] } ];
                    },
                    post => sub {
                        $auto_ip = $protocol ne $l10n_lan_protocols{static} || 0;
                        return 'lan_intf';
                    },
                   },
                   

                   # FIXME: is_install: no return for each card "last step" because of manual popping
                   # better construct an hash of { current_netintf => next_step } which next_step = last_card ? next_eth_step : next_card ?
                   lan_intf => 
                   {
                    pre => sub  {
                        $onboot = $ethntf->{ONBOOT} ? $ethntf->{ONBOOT} =~ /yes/ : bool2yesno(!member($ethntf->{DEVICE}, 
                                                                                                      map { $_->{device} } detect_devices::pcmcia_probe()));
                        $needhostname = $ethntf->{NEEDHOSTNAME} !~ /no/; 
                        # blacklist bogus driver, enable ifplugd support else:
                        $ethntf->{MII_NOT_SUPPORTED} ||= $is_hotplug_blacklisted->();
                        $hotplug = !text2bool($ethntf->{MII_NOT_SUPPORTED});
                        $track_network_id = $::isStandalone && $ethntf->{HWADDR} || detect_devices::isLaptop();
                        delete $ethntf->{NETWORK};
                        delete $ethntf->{BROADCAST};
                        @fields = qw(IPADDR NETMASK);
                        $netc->{dhcp_client} ||= (find { -x "$::prefix/sbin/$_" } qw(dhclient dhcpcd pump dhcpxd)) || "dhcp-client";
                        $netc->{dhcp_client} = "dhcp-client" if $netc->{dhcp_client} eq "dhclient";
                    },
                    name => sub { join('', 
                                       N("Configuring network device %s (driver %s)", $ethntf->{DEVICE}, $module),
                                       if_(!$auto_ip, "\n\n" . N("Please enter the IP configuration for this machine.
Each item should be entered as an IP address in dotted-decimal
notation (for example, 1.2.3.4).")),
                                      )  },
                    data => sub {
                        [ $auto_ip ? 
                          (
                           { text => N("Assign host name from DHCP address"), val => \$needhostname, type => "bool" },
                           { label => N("DHCP host name"), val => \$ethntf->{DHCP_HOSTNAME} },
                          )
                          :
                          (
                           { label => N("IP address"), val => \$ethntf->{IPADDR}, disabled => sub { $auto_ip } },
                           { label => N("Netmask"), val => \$ethntf->{NETMASK}, disabled => sub { $auto_ip } },
                          ),
                          { text => N("Track network card id (useful for laptops)"), val => \$track_network_id, type => "bool" },
                          { text => N("Network Hotplugging"), val => \$hotplug, type => "bool" },
                          { text => N("Start at boot"), val => \$onboot, type => "bool" },
                          if_($auto_ip, 
                              { label => N("DHCP client"), val => \$netc->{dhcp_client}, 
                                list => [ qw(dhcp-client dhcpcd pump dhcpxd) ], advanced => 1 },
                             ),
                        ],
                    },
                    complete => sub {
                        $ethntf->{BOOTPROTO} = $auto_ip ? "dhcp" : "static";
                        $netc->{DHCP} = $auto_ip;
                        return 0 if $auto_ip;
                        if (my @bad = map_index { if_(!is_ip($ethntf->{$_}), $::i) } @fields) {
                            $in->ask_warn(N("Error"), N("IP address should be in format 1.2.3.4"));
                            return 1, $bad[0];
                        }
                        $in->ask_warn(N("Error"), N("Warning : IP address %s is usually reserved !", $ethntf->{IPADDR})) if is_ip_forbidden($ethntf->{IPADDR});
                    },
                    focus_out => sub {
                        $ethntf->{NETMASK} ||= netmask($ethntf->{IPADDR}) unless $_[0]
                    },
                    post => sub {
                        $ethntf->{ONBOOT} = bool2yesno($onboot);
                        $ethntf->{NEEDHOSTNAME} = bool2yesno($needhostname);
                        $ethntf->{MII_NOT_SUPPORTED} = bool2yesno(!$hotplug);
                        $ethntf->{HWADDR} = $track_network_id or delete $ethntf->{HWADDR};
                        $in->do_pkgs->install($netc->{dhcp_client}) if $auto_ip;
                        return $is_wireless ? "wireless" : "static_hostname";
                    },
                   },
                   
                   wireless =>
                   {
                    pre => sub {
                        $ethntf->{wireless_eth} = 1;
                        $netc->{wireless_eth} = 1;
                        $ethntf->{WIRELESS_MODE} ||= "Managed";
                        $ethntf->{WIRELESS_ESSID} ||= "any";
                    },
                    name => N("Please enter the wireless parameters for this card:"),
                    data => sub {
                            [
                             { label => N("Operating Mode"), val => \$ethntf->{WIRELESS_MODE}, 
                               list => [ keys %wireless_mode ] },
                             { label => N("Network name (ESSID)"), val => \$ethntf->{WIRELESS_ESSID} },
                             { label => N("Network ID"), val => \$ethntf->{WIRELESS_NWID}, advanced => 1 },
                             { label => N("Operating frequency"), val => \$ethntf->{WIRELESS_FREQ}, advanced => 1 },
                             { label => N("Sensitivity threshold"), val => \$ethntf->{WIRELESS_SENS}, advanced => 1 },
                             { label => N("Bitrate (in b/s)"), val => \$ethntf->{WIRELESS_RATE}, advanced => 1 },
                             { label => N("Encryption key"), val => \$ethntf->{WIRELESS_ENC_KEY} },
                            ],
                    },
                    complete => sub {
                        if ($ethntf->{WIRELESS_FREQ} && $ethntf->{WIRELESS_FREQ} !~ /[0-9.]*[kGM]/) {
                            $in->ask_warn(N("Error"), N("Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz frequency), or add enough '0' (zeroes)."));
                            return 1, 6;
                        }
                        if ($ethntf->{WIRELESS_RATE} && $ethntf->{WIRELESS_RATE} !~ /[0-9.]*[kGM]/) {
                            $in->ask_warn(N("Error"), N("Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add enough '0' (zeroes)."));
                            return 1, 8;
                        }
                    },
                    next => "wireless2",
                   },


                   wireless2 =>
                   {
                    name => N("Please enter the wireless parameters for this card:"),
                    data => sub {
                        [
                             { label => N("RTS/CTS"), val => \$ethntf->{WIRELESS_RTS},
                               help => N("RTS/CTS adds a handshake before each packet transmission to make sure that the
channel is clear. This adds overhead, but increase performance in case of hidden
nodes or large number of active nodes. This parameter sets the size of the
smallest packet for which the node sends RTS, a value equal to the maximum
packet size disable the scheme. You may also set this parameter to auto, fixed
or off.")
                             },
                             { label => N("Fragmentation"), val => \$ethntf->{WIRELESS_FRAG} },
                             { label => N("Iwconfig command extra arguments"), val => \$ethntf->{WIRELESS_IWCONFIG}, advanced => 1,
                               help => N("Here, one can configure some extra wireless parameters such as:
ap, channel, commit, enc, power, retry, sens, txpower (nick is already set as the hostname).

See iwconfig(8) man page for further information."),
                             },
                             { label =>
                               #-PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
                               N("Iwspy command extra arguments"), val => \$ethntf->{WIRELESS_IWSPY}, advanced => 1,
                               help => N("Iwspy is used to set a list of addresses in a wireless network
interface and to read back quality of link information for each of those.

This information is the same as the one available in /proc/net/wireless :
quality of the link, signal strength and noise level.

See iwpspy(8) man page for further information."),
 },
                             { label => N("Iwpriv command extra arguments"), val => \$ethntf->{WIRELESS_IWPRIV}, advanced => 1,
                               help => N("Iwpriv enable to set up optionals (private) parameters of a wireless network
interface.

Iwpriv deals with parameters and setting specific to each driver (as opposed to
iwconfig which deals with generic ones).

In theory, the documentation of each device driver should indicate how to use
those interface specific commands and their effect.

See iwpriv(8) man page for further information."),
                             }
                         ]
                    },
                    post => sub {
                        # untranslate parameters
                        $ethntf->{WIRELESS_MODE} = $wireless_mode{$ethntf->{WIRELESS_MODE}};
                        return "static_hostname";
                    },
                   },
                   
                   conf_network_card => 
                   {
                    pre => sub {
                        #-type =static or dhcp
                        modules::interactive::load_category($in, $modules_conf, 'network/main|gigabit|usb', !$::expert, 1);
                        @all_cards = network::ethernet::get_eth_cards($modules_conf) or 
                          # FIXME: fix this
                          $in->ask_warn(N("Error"), N("No ethernet network adapter has been detected on your system.
I cannot set up this connection type.")), return;
                        
                                         },
                    name => N("Choose the network interface") . "\n\n" .
                    N("Please choose which network adapter you want to use to connect to Internet."),
                    data => [ { val => \$interface, type => "list", list => \@all_cards, } ],
                    format => sub { my ($e) = @_; $e->[0] . ($e->[1] ? " (using module $e->[1])" : "") },
                    
                    post => sub {
                        network::ethernet::write_ether_conf();
                        $modules_conf->write if $::isStandalone;
                        my $_device = network::ethernet::conf_network_card_backend($netc, $intf, $type, $interface->[0], $ipadr, $netadr);
                        return "lan";
                    },
                   },
                   
                   static_hostname => 
                   {
                    pre => sub {
                        if ($ethntf->{IPADDR}) {
                            $netc->{dnsServer} ||= dns($ethntf->{IPADDR});
                            $gateway_ex = gateway($ethntf->{IPADDR});
                            # $netc->{GATEWAY} ||= gateway($ethntf->{IPADDR});
                        }
                    },
                    name => N("Please enter your host name.
Your host name should be a fully-qualified host name,
such as ``mybox.mylab.myco.com''.
You may also enter the IP address of the gateway if you have one.") .
N("Last but not least you can also type in your DNS server IP addresses."),
                    data => sub {
                        [ { label => $auto_ip ? N("Host name (optional)") : N("Host name"), val => \$netc->{HOSTNAME} },
                          if_(!$auto_ip, 
                              { label => N("DNS server 1"),  val => \$netc->{dnsServer} },
                              { label => N("DNS server 2"),  val => \$netc->{dnsServer2} },
                              { label => N("DNS server 3"),  val => \$netc->{dnsServer3} },
                              { label => N("Search domain"), val => \$netc->{DOMAINNAME}, 
                                help => N("By default search domain will be set from the fully-qualified host name") },
                              { label => N("Gateway (e.g. %s)", $gateway_ex), val => \$netc->{GATEWAY} },
                              if_(@all_cards > 1,
                                  { label => N("Gateway device"), val => \$netc->{GATEWAYDEV}, list => [ sort keys %eth_intf ], 
                                    format => sub { $eth_intf{$_[0]} } },
                                 ),
                             ),
                        ],
                    },
                    complete => sub {
                        foreach my $dns (qw(dnsServer dnsServer2 dnsServer3)) {
                            if ($netc->{$dns} && !is_ip($netc->{$dns})) {
                                $in->ask_warn(N("Error"), N("DNS server address should be in format 1.2.3.4"));
                                return 1;
                            }
                        }
                        if ($netc->{GATEWAY} && !is_ip($netc->{GATEWAY})) {
                            $in->ask_warn(N("Error"), N("Gateway address should be in format 1.2.3.4"));
                            return 1;
                        }
                    },
                    #post => $handle_multiple_cnx,
                    next => "zeroconf",
                   },
                   
                   
                   zeroconf => 
                   {
                    name => N("If desired, enter a Zeroconf hostname.
This is the name your machine will use to advertise any of
its shared resources that are not managed by the network.
It is not necessary on most networks."),
                    data => [ { label => N("Zeroconf Host name"), val => \$netc->{ZEROCONF_HOSTNAME} } ],
                    complete => sub {
                        if ($netc->{ZEROCONF_HOSTNAME} =~ /\./) {
                            $in->ask_warn(N("Error"), N("Zeroconf host name must not contain a ."));
                            return 1;
                        }
                    },
                    post => $handle_multiple_cnx,
                   },
                   
                   
                   multiple_internet_cnx => 
                   {
                    name => N("You have configured multiple ways to connect to the Internet.\nChoose the one you want to use.\n\n") . if_(!$::isStandalone, "You may want to configure some profiles after the installation, in the Mandrake Control Center"),
                    data => sub {
                        [ { label => N("Internet connection"), val => \$netc->{internet_cnx_choice}, 
                            list => [ keys %{$netc->{internet_cnx}} ] } ];
                    },
                    post => $save_cnx,
                   },
                   
                   apply_settings => 
                   {
                    name => N("Configuration is complete, do you want to apply settings ?"),
                    type => "yesorno",
                   },
                   
                   network_on_boot => 
                   {
                    pre => sub {
                        # condition is :
                        member($netc->{internet_cnx_choice}, ('adsl', 'isdn')); # and $netc->{at_boot} = $in->ask_yesorno(N("Network Configuration Wizard"), N("Do you want to start the connection at boot?"));
                    },
                    name => N("Do you want to start the connection at boot?"),
                    type => "yesorno",
                    default => sub { ($type eq 'modem' ? 'no' : 'yes') },
                    post => sub {
                        my ($res) = @_;
                        $netc->{at_boot} = $res;
                        $res = bool2yesno($res);
                        substInFile { s/^ONBOOT.*\n//; $_ .= qq(ONBOOT=$res\n) if eof  } 
                          $netc->{internet_cnx_choice} eq 'adsl' ? 
                            "$::prefix/etc/sysconfig/network-scripts/ifcfg-ppp0" :
                            "$::prefix/etc/sysconfig/network-scripts/ifcfg-ippp0";
                        return $after_start_on_boot_step->();
                    },
                   },

                   isdn_dial_on_boot =>
                   {
                    pre => sub {
                        $intf->{ippp0} ||= { DEVICE => "ippp0" }; # we want the ifcfg-ippp0 file to be written
                        @isdn_dial_methods = ({ name => N("Automatically at boot"),
                                                ONBOOT => 1, DIAL_ON_IFUP => 1 },
                                              { name => N("By using Net Applet in the system tray"),
                                                ONBOOT => 0, DIAL_ON_IFUP => 1 },
                                              { name => N("Manually (the interface would still be activated at boot)"),
                                               ONBOOT => 1, DIAL_ON_IFUP => 0 });
                        my $method =  find {
                            $_->{ONBOOT} eq text2bool($intf->{ippp0}{ONBOOT}) &&
                              $_->{DIAL_ON_IFUP} eq text2bool($intf->{ippp0}{DIAL_ON_IFUP})
                        } @isdn_dial_methods;
                        #- use net_applet by default
                        $isdn->{dial_method} = $method->{name} || $isdn_dial_methods[1]{name};
                    },
                    name => N("How do you want to dial this connection ?"),
                    data => sub {
                        [ { type => "list", val => \$isdn->{dial_method}, list => [ map { $_->{name} } @isdn_dial_methods ] } ]
                    },
                    post => sub {
                        my $method = find { $_->{name} eq $isdn->{dial_method} } @isdn_dial_methods;
                        $intf->{ippp0}{$_} = bool2yesno($method->{$_}) foreach qw(ONBOOT DIAL_ON_IFUP);
                        return $after_start_on_boot_step->();
                    },
                   },

                   restart => 
                   {
                    name => N("The network needs to be restarted. Do you want to restart it ?"),
                    type => "yesorno",
                    post => sub {
                        my ($a) = @_;
                        network::ethernet::write_ether_conf($in, $modules_conf, $netcnx, $netc, $intf) if $netcnx->{type} eq 'lan';
                        if ($a && !$::testing && !run_program::rooted($::prefix, "/etc/rc.d/init.d/network restart")) {
                            $success = 0;
                            $in->ask_okcancel(N("Network Configuration"), 
                                              N("A problem occured while restarting the network: \n\n%s", `/etc/rc.d/init.d/network restart`), 0);
                        }
                        return $offer_to_connect->();
                    },
                   },
                   
                   ask_connect_now => 
                   {
                    name => N("Do you want to try to connect to the Internet now?"),
                    type => "yesorno",
                    post => sub {
                        my ($a) = @_;
                        my $type = $netc->{internet_cnx_choice};
                        $up = 1;
                        if ($a) {
                            # local $::isWizard = 0;
                            my $_w = $in->wait_message('', N("Testing your connection..."), 1);
                            connect_backend($netc);
                            my $s = 30;
                            $type =~ /modem/ and $s = 50;
                            $type =~ /adsl/ and $s = 35;
                            $type =~ /isdn/ and $s = 20;
                            sleep $s;
                            $up = connected();
                        }
                        $success = $up;
                        return $a ? "disconnect" : "end";
                    }
                   },
                   disconnect => 
                   {
                    name => sub {
                        $up ? N("The system is now connected to the Internet.") .
                          if_($::isInstall, N("For security reasons, it will be disconnected now.")) :
                            N("The system doesn't seem to be connected to the Internet.
Try to reconfigure your connection.");
                    },
                    no_back => 1,
                    end => 1,
                    post => sub {
                        $::isInstall and disconnect_backend($netc);
                        return "end";
                    },
                   },

                   end => 
                   {
                    name => sub {
                        return $success ? join('', N("Congratulations, the network and Internet configuration is finished.

"), if_($::isStandalone && $in->isa('interactive::gtk'),
        N("After this is done, we recommend that you restart your X environment to avoid any hostname-related problems."))) : 
          N("Problems occured during configuration.
Test your connection via net_monitor or mcc. If your connection doesn't work, you might want to relaunch the configuration.");
                    },
                           end => 1,
                   },
                  },
        };
      
      my $use_wizard = 1;
      if ($::isInstall) {
          if ($first_time && $in->{method} =~ /^(ftp|http|nfs)$/) {
              local $::isWizard;
              !$::expert && !$o_noauto || $in->ask_okcancel(N("Network Configuration"),
                                                            N("Because you are doing a network installation, your network is already configured.
Click on Ok to keep your configuration, or cancel to reconfigure your Internet & Network connection.
"), 1) 
                and do {
                    $netcnx->{type} = 'lan';
                    $netc->{NET_INTERFACE} = 'eth0';
                    $direct_net_install = 1;
                    $use_wizard = 0;
                };
        }
      };
      
      if ($use_wizard) {
          require wizards;
          $wiz->{var} = {
                         netc  => $netc,
                         mouse => $mouse,
                         intf  => $intf,
                        };
          wizards->new->safe_process($wiz, $in);
      }

    # install needed packages:
    $network_configured or network::network::configureNetwork2($in, $::prefix, $netc, $intf);

    my $connect_cmd;
    if ($netcnx->{type} =~ /modem/ || $netcnx->{type} =~ /isdn_external/) {
	$connect_cmd = qq(
#!/bin/bash
if [ -n "\$DISPLAY" ]; then
	if [ -e /usr/bin/kppp ]; then
		/sbin/route del default
		/usr/bin/kppp &
	else
		/usr/sbin/net_monitor --connect
	fi
	else
	$network::tools::connect_file
fi
);
    } elsif ($netcnx->{type}) {
	$connect_cmd = qq(
#!/bin/bash
if [ -n "\$DISPLAY" ]; then
	/usr/sbin/net_monitor --connect
else
	$network::tools::connect_file
fi
);
    } else {
	$connect_cmd = qq(
#!/bin/bash
/usr/sbin/drakconnect
);
    }
    if ($direct_net_install) {
	$connect_cmd = qq(
#!/bin/bash
if [ -n "\$DISPLAY" ]; then
	/usr/sbin/net_monitor --connect
else
	$network::tools::connect_file
fi
);
    }
    output_with_perm("$::prefix$network::tools::connect_prog", 0755, $connect_cmd) if $connect_cmd;
    $netcnx->{$_} = $netc->{$_} foreach qw(NET_DEVICE NET_INTERFACE);
    $netcnx->{type} =~ /adsl/ or run_program::rooted($::prefix, "/chkconfig --del adsl 2> /dev/null");

    if ($::isInstall && $::o->{security} >= 3) {
	require network::drakfirewall;
	network::drakfirewall::main($in, $::o->{security} <= 3);
    }
}

sub main {
    my ($_prefix, $netcnx, $in, $modules_conf, $o_netc, $o_mouse, $o_intf, $o_first_time, $o_noauto) = @_;
    eval { real_main('', , $netcnx, $in, $modules_conf, $o_netc, $o_mouse, $o_intf, $o_first_time, $o_noauto) };
    my $err = $@;
    if ($err) { # && $in->isa('interactive::gtk')
        local $::isEmbedded = 0; # to prevent sub window embedding
        local $::isWizard = 0 if !$::isInstall; # to prevent sub window embedding
        #err_dialog(N("Error"), N("An unexpected error has happened:\n%s", $err));
        $in->ask_warn(N("Error"), N("An unexpected error has happened:\n%s", $err));
    }
}

sub set_profile {
    my ($netcnx) = @_;
    system('/sbin/set-netprofile', $netcnx->{PROFILE});
    log::explanations(qq(Switching to "$netcnx->{PROFILE}" profile));
}

sub save_profile {
    my ($netcnx) = @_;
    system('/sbin/save-netprofile', $netcnx->{PROFILE});
    log::explanations(qq(Saving "$netcnx->{PROFILE}" profile));
}

sub del_profile {
    my ($profile) = @_;
    return if !$profile || $profile eq "default";
    rm_rf("$::prefix/etc/netprofile/profiles/$profile");
    log::explanations(qq(Deleting "$profile" profile));
}

sub add_profile {
    my ($netcnx, $profile) = @_;
    return if !$profile || $profile eq "default" || member($profile, get_profiles());
    system('/sbin/clone-netprofile', $netcnx->{PROFILE}, $profile);
    log::explanations(qq("Creating "$profile" profile));
}

sub get_profiles() {
    map { if_(m!([^/]*)/$!, $1) } glob("$::prefix/etc/netprofile/profiles/*/");
}

sub get_net_device() {
    my $connect_file = $network::tools::connect_file;
    my $network_file = "$::prefix/etc/sysconfig/network";
		if (cat_("$::prefix$connect_file") =~ /ifup/) {
  		if_(cat_($connect_file) =~ /^\s*ifup\s+(.*)/m, split(' ', $1))
		} elsif (cat_("$::prefix$connect_file") =~ /network/) {
			${{ getVarsFromSh("$::prefix$network_file") }}{GATEWAYDEV};
    } elsif (cat_("$::prefix$connect_file") =~ /isdn/) {
			"ippp+"; 
    } else {
			"ppp+";
    };
}

sub read_net_conf {
    my ($netcnx, $netc, $intf) = @_;
    my $current = { getVarsFromSh("$::prefix/etc/netprofile/current") };

    $netcnx->{PROFILE} = $current->{PROFILE} || 'default';
    network::network::read_all_conf($::prefix, $netc, $intf, $netcnx);

    foreach ('NET_DEVICE', 'NET_INTERFACE') {
        $netc->{$_} = $netcnx->{$_} if $netcnx->{$_}
    }
    $netcnx->{$netcnx->{type}} ||= {} if $netcnx->{type};
}

sub start_internet {
    my ($o) = @_;
    init_globals($o);
    #- give a chance for module to be loaded using kernel-BOOT modules...
    $::isStandalone or modules::load_category($o->{modules_conf}, 'network/main|gigabit|usb');
    connect_backend($o->{netc});
}

sub stop_internet {
    my ($o) = @_;
    init_globals($o);
    disconnect_backend($o->{netc});
}

1;

=head1 network::netconnect::detect()

=head2 example of usage

use lib qw(/usr/lib/libDrakX);
use network::netconnect;
use Data::Dumper;

use class_discard;

local $in = class_discard->new;

network::netconnect::init_globals($in);
my %i;
network::netconnect::detect($modules_conf, \%i);
print Dumper(\%i),"\n";

=cut
'#n8037'>8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806 8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892 8893 8894 8895 8896 8897 8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149 9150 9151 9152 9153 9154 9155 9156 9157 9158 9159 9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 9185 9186 9187 9188 9189 9190 9191 9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 9202 9203 9204 9205 9206 9207 9208 9209 9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397 9398 9399 9400 9401 9402 9403 9404 9405 9406 9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450 9451 9452 9453 9454 9455 9456 9457 9458 9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 9485 9486 9487 9488 9489 9490 9491 9492 9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 9504 9505 9506 9507 9508 9509 9510 9511 9512 9513 9514 9515 9516 9517 9518 9519 9520 9521 9522 9523 9524 9525 9526 9527 9528 9529 9530 9531 9532 9533 9534 9535 9536 9537 9538 9539 9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577 9578 9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640 9641 9642 9643 9644 9645 9646 9647 9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 9667 9668 9669 9670 9671 9672 9673 9674 9675 9676 9677 9678 9679 9680 9681 9682 9683 9684 9685 9686 9687 9688 9689 9690 9691 9692 9693 9694 9695 9696 9697 9698 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769 9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821 9822 9823 9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836 9837 9838 9839 9840 9841 9842 9843 9844 9845 9846 9847 9848 9849 9850 9851 9852 9853 9854 9855 9856 9857 9858 9859 9860 9861 9862 9863 9864 9865 9866 9867 9868 9869 9870 9871 9872 9873 9874 9875 9876 9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887 9888 9889 9890 9891 9892 9893 9894 9895 9896 9897 9898 9899 9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 9910 9911 9912 9913 9914 9915 9916 9917 9918 9919 9920 9921 9922 9923 9924 9925 9926 9927 9928 9929 9930 9931 9932 9933 9934 9935 9936 9937 9938 9939 9940 9941 9942 9943 9944 9945 9946 9947 9948 9949 9950 9951 9952 9953 9954 9955 9956 9957 9958 9959 9960 9961 9962 9963 9964 9965 9966 9967 9968 9969 9970 9971 9972 9973 9974 9975 9976 9977 9978 9979 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011 10012 10013 10014 10015 10016 10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376 10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400 10401 10402 10403 10404 10405 10406 10407 10408 10409 10410 10411 10412 10413 10414 10415 10416 10417 10418 10419 10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484 10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496 10497 10498 10499 10500 10501 10502 10503 10504 10505 10506 10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 10517 10518 10519 10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 10568 10569 10570 10571 10572 10573 10574 10575 10576 10577 10578 10579 10580 10581 10582 10583 10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 10626 10627 10628 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640 10641 10642 10643 10644 10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664 10665 10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676 10677 10678 10679 10680 10681 10682 10683 10684 10685 10686 10687 10688 10689 10690 10691 10692 10693 10694 10695 10696 10697 10698 10699 10700 10701 10702 10703 10704 10705 10706 10707 10708 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784 10785 10786 10787 10788 10789 10790 10791 10792 10793 10794 10795 10796 10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807 10808 10809 10810 10811 10812 10813 10814 10815 10816 10817 10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 10879 10880 10881 10882 10883 10884 10885 10886 10887 10888 10889 10890 10891 10892 10893 10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930 10931 10932 10933 10934 10935 10936 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10963 10964 10965 10966 10967 10968 10969 10970 10971 10972 10973 10974 10975 10976 10977 10978 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048 11049 11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 11083 11084 11085 11086 11087 11088 11089 11090 11091 11092 11093 11094 11095 11096 11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 11107 11108 11109 11110 11111 11112 11113 11114 11115 11116 11117 11118 11119 11120 11121 11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11142 11143 11144 11145 11146 11147 11148 11149 11150 11151 11152 11153 11154 11155 11156 11157 11158 11159 11160 11161 11162 11163 11164 11165 11166 11167 11168 11169 11170 11171 11172 11173 11174 11175 11176 11177 11178 11179 11180 11181 11182 11183 11184 11185 11186 11187 11188 11189 11190 11191 11192 11193 11194 11195 11196 11197 11198 11199 11200 11201 11202 11203 11204 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 11224 11225 11226 11227 11228 11229 11230 11231 11232 11233 11234 11235 11236 11237 11238 11239 11240 11241 11242 11243 11244 11245 11246 11247 11248 11249 11250 11251 11252 11253 11254 11255 11256 11257 11258 11259 11260 11261 11262 11263 11264 11265 11266 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276 11277 11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 11295 11296 11297 11298 11299 11300 11301 11302 11303 11304 11305 11306 11307 11308 11309 11310 11311 11312 11313 11314 11315 11316 11317 11318 11319 11320 11321 11322 11323 11324 11325 11326 11327 11328 11329 11330 11331 11332 11333 11334 11335 11336 11337 11338 11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349 11350 11351 11352 11353 11354 11355 11356 11357 11358 11359 11360 11361 11362 11363 11364 11365 11366 11367 11368 11369 11370 11371 11372 11373 11374 11375 11376 11377 11378 11379 11380 11381 11382 11383 11384 11385 11386 11387 11388 11389 11390 11391 11392 11393 11394 11395 11396 11397 11398 11399 11400 11401 11402 11403 11404 11405 11406 11407 11408 11409 11410 11411 11412 11413 11414 11415 11416 11417 11418 11419 11420 11421 11422 11423 11424 11425 11426 11427 11428 11429 11430 11431 11432 11433 11434 11435 11436 11437 11438 11439 11440 11441 11442 11443 11444 11445 11446 11447 11448 11449 11450 11451 11452 11453 11454 11455 11456 11457 11458 11459 11460 11461 11462 11463 11464 11465 11466 11467 11468 11469 11470 11471 11472 11473 11474 11475 11476 11477 11478 11479 11480 11481 11482 11483 11484 11485 11486 11487 11488 11489 11490 11491 11492 11493 11494 11495 11496 11497 11498 11499 11500 11501 11502 11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 11513 11514 11515 11516 11517 11518 11519 11520 11521 11522 11523 11524 11525 11526 11527 11528 11529 11530 11531 11532 11533 11534 11535 11536 11537 11538 11539 11540 11541 11542 11543 11544 11545 11546 11547 11548 11549 11550 11551 11552 11553 11554 11555 11556 11557 11558 11559 11560 11561 11562 11563 11564 11565 11566 11567 11568 11569 11570 11571 11572 11573 11574 11575 11576 11577 11578 11579 11580 11581 11582 11583 11584 11585 11586 11587 11588 11589 11590 11591 11592 11593 11594 11595 11596 11597 11598 11599 11600 11601 11602 11603 11604 11605 11606 11607 11608 11609 11610 11611 11612 11613 11614 11615 11616 11617 11618 11619 11620 11621 11622 11623 11624 11625 11626 11627 11628 11629 11630 11631 11632 11633 11634 11635 11636 11637 11638 11639 11640 11641 11642 11643 11644 11645 11646 11647 11648 11649 11650 11651 11652 11653 11654 11655 11656 11657 11658 11659 11660 11661 11662 11663 11664 11665 11666 11667 11668 11669 11670 11671 11672 11673 11674 11675 11676 11677 11678 11679 11680 11681 11682 11683 11684 11685 11686 11687 11688 11689 11690 11691 11692 11693 11694 11695 11696 11697 11698 11699 11700 11701 11702 11703 11704 11705 11706 11707 11708 11709 11710 11711 11712 11713 11714 11715 11716 11717 11718 11719 11720 11721 11722 11723 11724 11725 11726 11727 11728 11729 11730 11731 11732 11733 11734 11735 11736 11737 11738 11739 11740 11741 11742 11743 11744 11745 11746 11747 11748 11749 11750 11751 11752 11753 11754 11755 11756 11757 11758 11759 11760 11761 11762 11763 11764 11765 11766 11767 11768 11769 11770 11771 11772 11773 11774 11775 11776 11777 11778 11779 11780 11781 11782 11783 11784 11785 11786 11787 11788 11789 11790 11791 11792 11793 11794 11795 11796 11797 11798 11799 11800 11801 11802 11803 11804 11805 11806 11807 11808 11809 11810 11811 11812 11813 11814 11815 11816 11817 11818 11819 11820 11821 11822 11823 11824 11825 11826 11827 11828 11829 11830 11831 11832 11833 11834 11835 11836 11837 11838 11839 11840 11841 11842 11843 11844 11845 11846 11847 11848 11849 11850 11851 11852 11853 11854 11855 11856 11857 11858 11859 11860 11861 11862 11863 11864 11865 11866 11867 11868 11869 11870 11871 11872 11873 11874 11875 11876 11877 11878 11879 11880 11881 11882 11883 11884 11885 11886 11887 11888 11889 11890 11891 11892 11893 11894 11895 11896 11897 11898 11899 11900 11901 11902 11903 11904 11905 11906 11907 11908 11909 11910 11911 11912 11913 11914 11915 11916 11917 11918 11919 11920 11921 11922 11923 11924 11925 11926 11927 11928 11929 11930 11931 11932 11933 11934 11935 11936 11937 11938 11939 11940 11941 11942 11943 11944 11945 11946 11947 11948 11949 11950 11951 11952 11953 11954 11955 11956 11957 11958 11959 11960 11961 11962 11963 11964 11965 11966 11967 11968 11969 11970 11971 11972 11973 11974 11975 11976 11977 11978 11979 11980 11981 11982 11983 11984 11985 11986 11987 11988 11989 11990 11991 11992 11993 11994 11995 11996 11997 11998 11999 12000 12001 12002 12003 12004 12005 12006 12007 12008 12009 12010 12011 12012 12013 12014 12015 12016 12017 12018 12019 12020 12021 12022 12023 12024 12025 12026 12027 12028 12029 12030 12031 12032 12033 12034 12035 12036 12037 12038 12039 12040 12041 12042 12043 12044 12045 12046 12047 12048 12049 12050 12051 12052 12053 12054 12055 12056 12057 12058 12059 12060 12061 12062 12063 12064 12065 12066 12067 12068 12069 12070 12071 12072 12073 12074 12075 12076 12077 12078 12079 12080 12081 12082 12083 12084 12085 12086 12087 12088 12089 12090 12091 12092 12093 12094 12095 12096 12097 12098 12099 12100 12101 12102 12103 12104 12105 12106 12107 12108 12109 12110 12111 12112 12113 12114 12115 12116 12117 12118 12119 12120 12121 12122 12123 12124 12125 12126 12127 12128 12129 12130 12131 12132 12133 12134 12135 12136 12137 12138 12139 12140 12141 12142 12143 12144 12145 12146 12147 12148 12149 12150 12151 12152 12153 12154 12155 12156 12157 12158 12159 12160 12161 12162 12163 12164 12165 12166 12167 12168 12169 12170 12171 12172 12173 12174 12175 12176 12177 12178 12179 12180 12181 12182 12183 12184 12185 12186 12187 12188 12189 12190 12191 12192 12193 12194 12195 12196 12197 12198 12199 12200 12201 12202 12203 12204 12205 12206 12207 12208 12209 12210 12211 12212 12213 12214 12215 12216 12217 12218 12219 12220 12221 12222 12223 12224 12225 12226 12227 12228 12229 12230 12231 12232 12233 12234 12235 12236 12237 12238 12239 12240 12241 12242 12243 12244 12245 12246 12247 12248 12249 12250 12251 12252 12253 12254 12255 12256 12257 12258 12259 12260 12261 12262 12263 12264 12265 12266 12267 12268 12269 12270 12271 12272 12273 12274 12275 12276 12277 12278 12279 12280 12281 12282 12283 12284 12285 12286 12287 12288 12289 12290 12291 12292 12293 12294 12295 12296 12297 12298 12299 12300 12301 12302 12303 12304 12305 12306 12307 12308 12309 12310 12311 12312 12313 12314 12315 12316 12317 12318 12319 12320 12321 12322 12323 12324 12325 12326 12327 12328 12329 12330 12331 12332 12333 12334 12335 12336 12337 12338 12339 12340 12341 12342 12343 12344 12345 12346 12347 12348 12349 12350 12351 12352 12353 12354 12355 12356 12357 12358 12359 12360 12361 12362 12363 12364 12365 12366 12367 12368 12369 12370 12371 12372 12373 12374 12375 12376 12377 12378 12379 12380 12381 12382 12383 12384 12385 12386 12387 12388 12389 12390 12391 12392 12393 12394 12395 12396 12397 12398 12399 12400 12401 12402 12403 12404 12405 12406 12407 12408 12409 12410 12411 12412 12413 12414 12415 12416 12417 12418 12419 12420 12421 12422 12423 12424 12425 12426 12427 12428 12429 12430 12431 12432 12433 12434 12435 12436 12437 12438 12439 12440 12441 12442 12443 12444 12445 12446 12447 12448 12449 12450 12451 12452 12453 12454 12455 12456 12457 12458 12459 12460 12461 12462 12463 12464 12465 12466 12467 12468 12469 12470 12471 12472 12473 12474 12475 12476 12477 12478 12479 12480 12481 12482 12483 12484 12485 12486 12487 12488 12489 12490 12491 12492 12493 12494 12495 12496 12497 12498 12499 12500 12501 12502 12503 12504 12505 12506 12507 12508 12509 12510 12511 12512 12513 12514 12515 12516 12517 12518 12519 12520 12521 12522 12523 12524 12525 12526 12527 12528 12529 12530 12531 12532 12533 12534 12535 12536 12537 12538 12539 12540 12541 12542 12543 12544 12545 12546 12547 12548 12549 12550 12551 12552 12553 12554 12555 12556 12557 12558 12559 12560 12561 12562 12563 12564 12565 12566 12567 12568 12569 12570 12571 12572 12573 12574 12575 12576 12577 12578 12579 12580 12581 12582 12583 12584 12585 12586 12587 12588 12589 12590 12591 12592 12593 12594 12595 12596 12597 12598 12599 12600 12601 12602 12603 12604 12605 12606 12607 12608 12609 12610 12611 12612 12613 12614 12615 12616 12617 12618 12619 12620 12621 12622 12623 12624 12625 12626 12627 12628 12629 12630 12631 12632 12633 12634 12635 12636 12637 12638 12639 12640 12641 12642 12643 12644 12645 12646 12647 12648 12649 12650 12651 12652 12653 12654 12655 12656 12657 12658 12659 12660 12661 12662 12663 12664 12665 12666 12667 12668 12669 12670 12671 12672 12673 12674 12675 12676 12677 12678 12679 12680 12681 12682 12683 12684 12685 12686 12687 12688 12689 12690 12691 12692 12693 12694 12695 12696 12697 12698 12699 12700 12701 12702 12703 12704 12705 12706 12707 12708 12709 12710 12711 12712 12713 12714 12715 12716 12717 12718 12719 12720 12721 12722 12723 12724 12725 12726 12727 12728 12729 12730 12731 12732 12733 12734 12735 12736 12737 12738 12739 12740 12741 12742 12743 12744 12745 12746 12747 12748 12749 12750 12751 12752 12753 12754 12755 12756 12757 12758 12759 12760 12761 12762 12763 12764 12765 12766 12767 12768 12769 12770 12771 12772 12773 12774 12775 12776 12777 12778 12779 12780 12781 12782 12783 12784 12785 12786 12787 12788 12789 12790 12791 12792 12793 12794 12795 12796 12797 12798 12799 12800 12801 12802 12803 12804 12805 12806 12807 12808 12809 12810 12811 12812 12813 12814 12815 12816 12817 12818 12819 12820 12821 12822 12823 12824 12825 12826 12827 12828 12829 12830 12831 12832 12833 12834 12835 12836 12837 12838 12839 12840 12841 12842 12843 12844 12845 12846 12847 12848 12849 12850 12851 12852 12853 12854 12855 12856 12857 12858 12859 12860 12861 12862 12863 12864 12865 12866 12867 12868 12869 12870 12871 12872 12873 12874 12875 12876 12877 12878 12879 12880 12881 12882 12883 12884 12885 12886 12887 12888 12889 12890 12891 12892 12893 12894 12895 12896 12897 12898 12899 12900 12901 12902 12903 12904 12905 12906 12907 12908 12909 12910 12911 12912 12913 12914 12915 12916 12917 12918 12919 12920 12921 12922 12923 12924 12925 12926 12927 12928 12929 12930 12931 12932 12933 12934 12935 12936 12937 12938 12939 12940 12941 12942 12943 12944 12945 12946 12947 12948 12949 12950 12951 12952 12953 12954 12955 12956 12957 12958 12959 12960 12961 12962 12963 12964 12965 12966 12967 12968 12969 12970 12971 12972 12973 12974 12975 12976 12977 12978 12979 12980 12981 12982 12983 12984 12985 12986 12987 12988 12989 12990 12991 12992 12993 12994 12995 12996 12997 12998 12999 13000 13001 13002 13003 13004 13005 13006 13007 13008 13009 13010 13011 13012 13013 13014 13015 13016 13017 13018 13019 13020 13021 13022 13023 13024 13025 13026 13027 13028 13029 13030 13031 13032 13033 13034 13035 13036 13037 13038 13039 13040 13041 13042 13043 13044 13045 13046 13047 13048 13049 13050 13051 13052 13053 13054 13055 13056 13057 13058 13059 13060 13061 13062 13063 13064 13065 13066 13067 13068 13069 13070 13071 13072 13073 13074 13075 13076 13077 13078 13079 13080 13081 13082 13083 13084 13085 13086 13087 13088 13089 13090 13091 13092 13093 13094 13095 13096 13097 13098 13099 13100 13101 13102 13103 13104 13105 13106 13107 13108 13109 13110 13111 13112 13113 13114 13115 13116 13117 13118 13119 13120 13121 13122 13123 13124 13125 13126 13127 13128 13129 13130 13131 13132 13133 13134 13135 13136 13137 13138 13139 13140 13141 13142 13143 13144 13145 13146 13147 13148 13149 13150 13151 13152 13153 13154 13155 13156 13157 13158 13159 13160 13161 13162 13163 13164 13165 13166 13167 13168 13169 13170 13171 13172 13173 13174 13175 13176 13177 13178 13179 13180 13181 13182 13183 13184 13185 13186 13187 13188 13189 13190 13191 13192 13193 13194 13195 13196 13197 13198 13199 13200 13201 13202 13203 13204 13205 13206 13207 13208 13209 13210 13211 13212 13213 13214 13215 13216 13217 13218 13219 13220 13221 13222 13223 13224 13225 13226 13227 13228 13229 13230 13231 13232 13233 13234 13235 13236 13237 13238 13239 13240 13241 13242 13243 13244 13245 13246 13247 13248 13249 13250 13251 13252 13253 13254 13255 13256 13257 13258 13259 13260 13261 13262 13263 13264 13265 13266 13267 13268 13269 13270 13271 13272 13273 13274 13275 13276 13277 13278 13279 13280 13281 13282 13283 13284 13285 13286 13287 13288 13289 13290 13291 13292 13293 13294 13295 13296 13297 13298 13299 13300 13301 13302 13303 13304 13305 13306 13307 13308 13309 13310 13311 13312 13313 13314 13315 13316 13317 13318 13319 13320 13321 13322 13323 13324 13325 13326 13327 13328 13329 13330 13331 13332 13333 13334 13335 13336 13337 13338 13339 13340 13341 13342 13343 13344 13345 13346 13347 13348 13349 13350 13351 13352 13353 13354 13355 13356 13357 13358 13359 13360 13361 13362 13363 13364 13365 13366 13367 13368 13369 13370 13371 13372 13373 13374 13375 13376 13377 13378 13379 13380 13381 13382 13383 13384 13385 13386 13387 13388 13389 13390 13391 13392 13393 13394 13395 13396 13397 13398 13399 13400 13401 13402 13403 13404 13405 13406 13407 13408 13409 13410 13411 13412 13413 13414 13415 13416 13417 13418 13419 13420 13421 13422 13423 13424 13425 13426 13427 13428 13429 13430 13431 13432 13433 13434 13435 13436 13437 13438 13439 13440 13441 13442 13443 13444 13445 13446 13447 13448 13449 13450 13451 13452 13453 13454 13455 13456 13457 13458 13459 13460 13461 13462 13463 13464 13465 13466 13467 13468 13469 13470 13471 13472 13473 13474 13475 13476 13477 13478 13479 13480 13481 13482 13483 13484 13485 13486 13487 13488 13489 13490 13491 13492 13493 13494 13495 13496 13497 13498 13499 13500 13501 13502 13503 13504 13505 13506 13507 13508 13509 13510 13511 13512 13513 13514 13515 13516 13517 13518 13519 13520 13521 13522 13523 13524 13525 13526 13527 13528 13529 13530 13531 13532 13533 13534 13535 13536 13537 13538 13539 13540 13541 13542 13543 13544 13545 13546 13547 13548 13549 13550 13551 13552 13553 13554 13555 13556 13557 13558 13559 13560 13561 13562 13563 13564 13565 13566 13567 13568 13569 13570 13571 13572 13573 13574 13575 13576 13577 13578 13579 13580 13581 13582 13583 13584 13585 13586 13587 13588 13589 13590 13591 13592 13593 13594 13595 13596 13597 13598 13599 13600 13601 13602 13603 13604 13605 13606 13607 13608 13609 13610 13611 13612 13613 13614 13615 13616 13617 13618 13619 13620 13621 13622 13623 13624 13625 13626 13627 13628 13629 13630 13631 13632 13633 13634 13635 13636 13637 13638 13639 13640 13641 13642 13643 13644 13645 13646 13647 13648 13649 13650 13651 13652 13653 13654 13655 13656 13657 13658 13659 13660 13661 13662 13663 13664 13665 13666 13667 13668 13669 13670 13671 13672 13673 13674 13675 13676 13677 13678 13679 13680 13681 13682 13683 13684 13685 13686 13687 13688 13689 13690 13691 13692 13693 13694 13695 13696 13697 13698 13699 13700 13701 13702 13703 13704 13705 13706 13707 13708 13709 13710 13711 13712 13713 13714 13715 13716 13717 13718 13719 13720 13721 13722 13723 13724 13725 13726 13727 13728 13729 13730 13731 13732 13733 13734 13735 13736 13737 13738 13739 13740 13741 13742 13743 13744 13745 13746 13747 13748 13749 13750 13751 13752 13753 13754 13755 13756 13757 13758 13759 13760 13761 13762 13763 13764 13765 13766 13767 13768 13769 13770 13771 13772 13773 13774 13775 13776 13777 13778 13779 13780 13781 13782 13783 13784 13785 13786 13787 13788 13789 13790 13791 13792 13793 13794 13795 13796 13797 13798 13799 13800 13801 13802 13803 13804 13805 13806 13807 13808 13809 13810 13811 13812 13813 13814 13815 13816 13817 13818 13819 13820 13821 13822 13823 13824 13825 13826 13827 13828 13829 13830 13831 13832 13833 13834 13835 13836 13837 13838 13839 13840 13841 13842 13843 13844 13845 13846 13847 13848 13849 13850 13851 13852 13853 13854 13855 13856 13857 13858 13859 13860 13861 13862 13863 13864 13865 13866 13867 13868 13869 13870 13871 13872 13873 13874 13875 13876 13877 13878 13879 13880 13881 13882 13883 13884 13885 13886 13887 13888 13889 13890 13891 13892 13893 13894 13895 13896 13897 13898 13899 13900 13901 13902 13903 13904 13905 13906 13907 13908 13909 13910 13911 13912 13913 13914 13915 13916 13917 13918 13919 13920 13921 13922 13923 13924 13925 13926 13927 13928 13929 13930 13931 13932 13933 13934 13935 13936 13937 13938 13939 13940 13941 13942 13943 13944 13945 13946 13947 13948 13949 13950 13951 13952 13953 13954 13955 13956 13957 13958 13959 13960 13961 13962 13963 13964 13965 13966 13967 13968 13969 13970 13971 13972 13973 13974 13975 13976 13977 13978 13979 13980 13981 13982 13983 13984 13985 13986 13987 13988 13989 13990 13991 13992 13993 13994 13995 13996 13997 13998 13999 14000 14001 14002 14003 14004 14005 14006 14007 14008 14009 14010 14011 14012 14013 14014 14015 14016 14017 14018 14019 14020 14021 14022 14023 14024 14025 14026 14027 14028 14029 14030 14031 14032 14033 14034 14035 14036 14037 14038 14039 14040 14041 14042 14043 14044 14045 14046 14047 14048 14049 14050 14051 14052 14053 14054 14055 14056 14057 14058 14059 14060 14061 14062 14063 14064 14065 14066 14067 14068 14069 14070 14071 14072 14073 14074 14075 14076 14077 14078 14079 14080 14081 14082 14083 14084 14085 14086 14087 14088 14089 14090 14091 14092 14093 14094 14095 14096 14097 14098 14099 14100 14101 14102 14103 14104 14105 14106 14107 14108 14109 14110 14111 14112 14113 14114 14115 14116 14117 14118 14119 14120 14121 14122 14123 14124 14125 14126 14127 14128 14129 14130 14131 14132 14133 14134 14135 14136 14137 14138 14139 14140 14141 14142 14143 14144 14145 14146 14147 14148 14149 14150 14151 14152 14153 14154 14155 14156 14157 14158 14159 14160 14161 14162 14163 14164 14165 14166 14167 14168 14169 14170 14171 14172 14173 14174 14175 14176 14177 14178 14179 14180 14181 14182 14183 14184 14185 14186 14187 14188 14189 14190 14191 14192 14193 14194 14195 14196 14197 14198 14199 14200 14201 14202 14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 14230 14231 14232 14233 14234 14235 14236 14237 14238 14239 14240 14241 14242 14243 14244 14245 14246 14247 14248 14249 14250 14251 14252 14253 14254 14255 14256 14257 14258 14259 14260 14261 14262 14263 14264 14265 14266 14267 14268 14269 14270 14271 14272 14273 14274 14275 14276 14277 14278 14279 14280 14281 14282 14283 14284 14285 14286 14287 14288 14289 14290 14291 14292 14293 14294 14295 14296 14297 14298 14299 14300 14301 14302 14303 14304 14305 14306 14307 14308 14309 14310 14311 14312 14313 14314 14315 14316 14317 14318 14319 14320 14321 14322 14323 14324 14325 14326 14327 14328 14329 14330 14331 14332 14333 14334 14335 14336 14337 14338 14339 14340 14341 14342 14343 14344 14345 14346 14347 14348 14349 14350 14351 14352 14353 14354 14355 14356 14357 14358 14359 14360 14361 14362 14363 14364 14365 14366 14367 14368 14369 14370 14371 14372 14373 14374 14375 14376 14377 14378 14379 14380 14381 14382 14383 14384 14385 14386 14387 14388 14389 14390 14391 14392 14393 14394 14395 14396 14397 14398 14399 14400 14401 14402 14403 14404 14405 14406 14407 14408 14409 14410 14411 14412 14413 14414 14415 14416 14417 14418 14419 14420 14421 14422 14423 14424 14425 14426 14427 14428 14429 14430 14431 14432 14433 14434 14435 14436 14437 14438 14439 14440 14441 14442 14443 14444 14445 14446 14447 14448 14449 14450 14451 14452 14453 14454 14455 14456 14457 14458 14459 14460 14461 14462 14463 14464 14465 14466 14467 14468 14469 14470 14471 14472 14473 14474 14475 14476 14477 14478 14479 14480 14481 14482 14483 14484 14485 14486 14487 14488 14489 14490 14491 14492 14493 14494 14495 14496 14497 14498 14499 14500 14501 14502 14503 14504 14505 14506 14507 14508 14509 14510 14511 14512 14513 14514 14515 14516 14517 14518 14519 14520 14521 14522 14523 14524 14525 14526 14527 14528 14529 14530 14531 14532 14533 14534 14535 14536 14537 14538 14539 14540 14541 14542 14543 14544 14545 14546 14547 14548 14549 14550 14551 14552 14553 14554 14555 14556 14557 14558 14559 14560 14561 14562 14563 14564 14565 14566 14567 14568 14569 14570 14571 14572 14573 14574 14575 14576 14577 14578 14579 14580 14581 14582 14583 14584 14585 14586 14587 14588 14589 14590 14591 14592 14593 14594 14595 14596 14597 14598 14599 14600 14601 14602 14603 14604 14605 14606 14607 14608 14609 14610 14611 14612 14613 14614 14615 14616 14617 14618 14619 14620 14621 14622 14623 14624 14625 14626 14627 14628 14629 14630 14631 14632 14633 14634 14635 14636 14637 14638 14639 14640 14641 14642 14643 14644 14645 14646 14647 14648 14649 14650 14651 14652 14653 14654 14655 14656 14657 14658 14659 14660 14661 14662 14663 14664 14665 14666 14667 14668 14669 14670 14671 14672 14673 14674 14675 14676 14677 14678 14679 14680 14681 14682 14683 14684 14685 14686 14687 14688 14689 14690 14691 14692 14693 14694 14695 14696 14697 14698 14699 14700 14701 14702 14703 14704 14705 14706 14707 14708 14709 14710 14711 14712 14713 14714 14715 14716 14717 14718 14719 14720 14721 14722 14723 14724 14725 14726 14727 14728 14729 14730 14731 14732 14733 14734 14735 14736 14737 14738 14739 14740 14741 14742 14743 14744 14745 14746 14747 14748 14749 14750 14751 14752 14753 14754 14755 14756 14757 14758 14759 14760 14761 14762 14763 14764 14765 14766 14767 14768 14769 14770 14771 14772 14773 14774 14775 14776 14777 14778 14779 14780 14781 14782 14783 14784 14785 14786 14787 14788 14789 14790 14791 14792 14793 14794 14795 14796 14797 14798 14799 14800 14801 14802 14803 14804 14805 14806 14807 14808 14809 14810 14811 14812 14813 14814 14815 14816 14817 14818 14819 14820 14821 14822 14823 14824 14825 14826 14827 14828 14829 14830 14831 14832 14833 14834 14835 14836 14837 14838 14839 14840 14841 14842 14843 14844 14845 14846 14847 14848 14849 14850 14851 14852 14853 14854 14855 14856 14857 14858 14859 14860 14861 14862 14863 14864 14865 14866 14867 14868 14869 14870 14871 14872 14873 14874 14875 14876 14877 14878 14879 14880 14881 14882 14883 14884 14885 14886 14887 14888 14889 14890 14891 14892 14893 14894 14895 14896 14897 14898 14899 14900 14901 14902 14903 14904 14905 14906 14907 14908 14909 14910 14911 14912 14913 14914 14915 14916 14917 14918 14919 14920 14921 14922 14923 14924 14925 14926 14927 14928 14929 14930 14931 14932 14933 14934 14935 14936 14937 14938 14939 14940 14941 14942 14943 14944 14945 14946 14947 14948 14949 14950 14951 14952 14953 14954 14955 14956 14957 14958 14959 14960 14961 14962 14963 14964 14965 14966 14967 14968 14969 14970 14971 14972 14973 14974 14975 14976 14977 14978 14979 14980 14981 14982 14983 14984 14985 14986 14987 14988 14989 14990 14991 14992 14993 14994 14995 14996 14997 14998 14999 15000 15001 15002 15003 15004 15005 15006 15007 15008 15009 15010 15011 15012 15013 15014 15015 15016 15017 15018 15019 15020 15021 15022 15023 15024 15025 15026 15027 15028 15029 15030 15031 15032 15033 15034 15035 15036 15037 15038 15039 15040 15041 15042 15043 15044 15045 15046 15047 15048 15049 15050 15051 15052 15053 15054 15055 15056 15057 15058 15059 15060 15061 15062 15063 15064 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 15076 15077 15078 15079 15080 15081 15082 15083 15084 15085 15086 15087 15088 15089 15090 15091 15092 15093 15094 15095 15096 15097 15098 15099 15100 15101 15102 15103 15104 15105 15106 15107 15108 15109 15110 15111 15112 15113 15114 15115 15116 15117 15118 15119 15120 15121 15122 15123 15124 15125 15126 15127 15128 15129 15130 15131 15132 15133 15134 15135 15136 15137 15138 15139 15140 15141 15142 15143 15144 15145 15146 15147 15148 15149 15150 15151 15152 15153 15154 15155 15156 15157 15158 15159 15160 15161 15162 15163 15164 15165 15166 15167 15168 15169 15170 15171 15172 15173 15174 15175 15176 15177 15178 15179 15180 15181 15182 15183 15184 15185 15186 15187 15188 15189 15190 15191 15192 15193 15194 15195 15196 15197 15198 15199 15200 15201 15202 15203 15204 15205 15206 15207 15208 15209 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15220 15221 15222 15223 15224 15225 15226 15227 15228 15229 15230 15231 15232 15233 15234 15235 15236 15237 15238 15239 15240 15241 15242 15243 15244 15245 15246 15247 15248 15249 15250 15251 15252 15253 15254 15255 15256 15257 15258 15259 15260 15261 15262 15263 15264 15265 15266 15267 15268 15269 15270 15271 15272 15273 15274 15275 15276 15277 15278 15279 15280 15281 15282 15283 15284 15285 15286 15287 15288 15289 15290 15291 15292 15293 15294 15295 15296 15297 15298 15299 15300 15301 15302 15303 15304 15305 15306 15307 15308 15309 15310 15311 15312 15313 15314 15315 15316 15317 15318 15319 15320 15321 15322 15323 15324 15325 15326 15327 15328 15329 15330 15331 15332 15333 15334 15335 15336 15337 15338 15339 15340 15341 15342 15343 15344 15345 15346 15347 15348 15349 15350 15351 15352 15353 15354 15355 15356 15357 15358 15359 15360 15361 15362 15363 15364 15365 15366 15367 15368 15369 15370 15371 15372 15373 15374 15375 15376 15377 15378 15379 15380 15381 15382 15383 15384 15385 15386 15387 15388 15389 15390 15391 15392 15393 15394 15395 15396 15397 15398 15399 15400 15401 15402 15403 15404 15405 15406 15407 15408 15409 15410 15411 15412 15413 15414 15415 15416 15417 15418 15419 15420 15421 15422 15423 15424 15425 15426 15427 15428 15429 15430 15431 15432 15433 15434 15435 15436 15437 15438 15439 15440 15441 15442 15443 15444 15445 15446 15447 15448 15449 15450 15451 15452 15453 15454 15455 15456 15457 15458 15459 15460 15461 15462 15463 15464 15465 15466 15467 15468 15469 15470 15471 15472 15473 15474 15475 15476 15477 15478 15479 15480 15481 15482 15483 15484 15485 15486 15487 15488 15489 15490 15491 15492 15493 15494 15495 15496 15497 15498 15499 15500 15501 15502 15503 15504 15505 15506 15507 15508 15509 15510 15511 15512 15513 15514 15515 15516 15517 15518 15519 15520 15521 15522 15523 15524 15525 15526 15527 15528 15529 15530 15531 15532 15533 15534 15535 15536 15537 15538 15539 15540 15541 15542 15543 15544 15545 15546 15547 15548 15549 15550 15551 15552 15553 15554 15555 15556 15557 15558 15559 15560 15561 15562 15563 15564 15565 15566 15567 15568 15569 15570 15571 15572 15573 15574 15575 15576 15577 15578 15579 15580 15581 15582 15583 15584 15585 15586 15587 15588 15589 15590 15591 15592 15593 15594 15595 15596 15597 15598 15599 15600 15601 15602 15603 15604 15605 15606 15607 15608 15609 15610 15611 15612 15613 15614 15615 15616 15617 15618 15619 15620 15621 15622 15623 15624 15625 15626 15627 15628 15629 15630 15631 15632 15633 15634 15635 15636 15637 15638 15639 15640 15641 15642 15643 15644 15645 15646 15647 15648 15649 15650 15651 15652 15653 15654 15655 15656 15657 15658 15659 15660 15661 15662 15663 15664 15665 15666 15667 15668 15669 15670 15671 15672 15673 15674 15675 15676 15677 15678 15679 15680 15681 15682 15683 15684 15685 15686 15687 15688 15689 15690 15691 15692 15693 15694 15695 15696 15697 15698 15699 15700 15701 15702 15703 15704 15705 15706 15707 15708 15709 15710 15711 15712 15713 15714 15715 15716 15717 15718 15719 15720 15721 15722 15723 15724 15725 15726 15727 15728 15729 15730 15731 15732 15733 15734 15735 15736 15737 15738 15739 15740 15741 15742 15743 15744 15745 15746 15747 15748 15749 15750 15751 15752 15753 15754 15755 15756 15757 15758 15759 15760 15761 15762 15763 15764 15765 15766 15767 15768 15769 15770 15771 15772 15773 15774 15775 15776 15777 15778 15779 15780 15781 15782 15783 15784 15785 15786 15787 15788 15789 15790 15791 15792 15793 15794 15795 15796 15797 15798 15799 15800 15801 15802 15803 15804 15805 15806 15807 15808 15809 15810 15811 15812 15813 15814 15815 15816 15817 15818 15819 15820 15821 15822 15823 15824 15825 15826 15827 15828 15829 15830 15831 15832 15833 15834 15835 15836 15837 15838 15839 15840 15841 15842 15843 15844 15845 15846 15847 15848 15849 15850 15851 15852 15853 15854 15855 15856 15857 15858 15859 15860 15861 15862 15863 15864 15865 15866 15867 15868 15869 15870 15871 15872 15873 15874 15875 15876 15877 15878 15879 15880 15881 15882 15883 15884 15885 15886 15887 15888 15889 15890 15891 15892 15893 15894 15895 15896 15897 15898 15899 15900 15901 15902 15903 15904 15905 15906 15907 15908 15909 15910 15911 15912 15913 15914 15915 15916 15917 15918 15919 15920 15921 15922 15923 15924 15925 15926 15927 15928 15929 15930 15931 15932 15933 15934 15935 15936 15937 15938 15939 15940 15941 15942 15943 15944 15945 15946 15947 15948 15949 15950 15951 15952 15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966 15967 15968 15969 15970 15971 15972 15973 15974 15975 15976 15977 15978 15979 15980 15981 15982 15983 15984 15985 15986 15987 15988 15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 16022 16023 16024 16025 16026 16027 16028 16029 16030 16031 16032 16033 16034 16035 16036 16037 16038 16039 16040 16041 16042 16043 16044 16045 16046 16047 16048 16049 16050 16051 16052 16053 16054 16055 16056 16057 16058 16059 16060 16061 16062 16063 16064 16065 16066 16067 16068 16069 16070 16071 16072 16073 16074 16075 16076 16077 16078 16079 16080 16081 16082 16083 16084 16085 16086 16087 16088 16089 16090 16091 16092 16093 16094 16095 16096 16097 16098 16099 16100 16101 16102 16103 16104 16105 16106 16107 16108 16109 16110 16111 16112 16113 16114 16115 16116 16117 16118 16119 16120 16121 16122 16123 16124 16125 16126 16127 16128 16129 16130 16131 16132 16133 16134 16135 16136 16137 16138 16139 16140 16141 16142 16143 16144 16145 16146 16147 16148 16149 16150 16151 16152 16153 16154 16155 16156 16157 16158 16159 16160 16161 16162 16163 16164 16165 16166 16167 16168 16169 16170 16171 16172 16173 16174 16175 16176 16177 16178 16179 16180 16181 16182 16183 16184 16185 16186 16187 16188 16189 16190 16191 16192 16193 16194 16195 16196 16197 16198 16199 16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 16217 16218 16219 16220 16221 16222 16223 16224 16225 16226 16227 16228 16229 16230 16231 16232 16233 16234 16235 16236 16237 16238 16239 16240 16241 16242 16243 16244 16245 16246 16247 16248 16249 16250 16251 16252 16253 16254 16255 16256 16257 16258 16259 16260 16261 16262 16263 16264 16265 16266 16267 16268 16269 16270 16271 16272 16273 16274 16275 16276 16277 16278 16279 16280 16281 16282 16283 16284 16285 16286 16287 16288 16289 16290 16291 16292 16293 16294 16295 16296 16297 16298 16299 16300 16301 16302 16303 16304 16305 16306 16307 16308 16309 16310 16311 16312 16313 16314 16315 16316 16317 16318 16319 16320 16321 16322 16323 16324 16325 16326 16327 16328 16329 16330 16331 16332 16333 16334 16335 16336 16337 16338 16339 16340 16341 16342 16343 16344 16345 16346 16347 16348 16349 16350 16351 16352 16353 16354 16355 16356 16357 16358 16359 16360 16361 16362 16363 16364 16365 16366 16367 16368 16369 16370 16371 16372 16373 16374 16375 16376 16377 16378 16379 16380 16381 16382 16383 16384 16385 16386 16387 16388 16389 16390 16391 16392 16393 16394 16395 16396 16397 16398 16399 16400 16401 16402 16403 16404 16405 16406 16407 16408 16409 16410 16411 16412 16413 16414 16415 16416 16417 16418 16419 16420 16421 16422 16423 16424 16425 16426 16427 16428 16429 16430 16431 16432 16433 16434 16435 16436 16437 16438 16439 16440 16441 16442 16443 16444 16445 16446 16447 16448 16449 16450 16451 16452 16453 16454 16455 16456 16457 16458 16459 16460 16461 16462 16463 16464 16465 16466 16467 16468 16469 16470 16471 16472 16473 16474 16475 16476 16477 16478 16479 16480 16481 16482 16483 16484 16485 16486 16487 16488 16489 16490 16491 16492 16493 16494 16495 16496 16497 16498 16499 16500 16501 16502 16503 16504 16505 16506 16507 16508 16509 16510 16511 16512 16513 16514 16515 16516 16517 16518 16519 16520 16521 16522 16523 16524 16525 16526 16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 16558 16559 16560 16561 16562 16563 16564 16565 16566 16567 16568 16569 16570 16571 16572 16573 16574 16575 16576 16577 16578 16579 16580 16581 16582 16583 16584 16585 16586 16587 16588 16589 16590 16591 16592 16593 16594 16595 16596 16597 16598 16599 16600 16601 16602 16603 16604 16605 16606 16607 16608 16609 16610 16611 16612 16613 16614 16615 16616 16617 16618 16619 16620 16621 16622 16623 16624 16625 16626 16627 16628 16629 16630 16631 16632 16633 16634 16635 16636 16637 16638 16639 16640 16641 16642 16643 16644 16645 16646 16647 16648 16649 16650 16651 16652 16653 16654 16655 16656 16657 16658 16659 16660 16661 16662 16663 16664 16665 16666 16667 16668 16669 16670 16671 16672 16673 16674 16675 16676 16677 16678 16679 16680 16681 16682 16683 16684 16685 16686 16687 16688 16689 16690 16691 16692 16693 16694 16695 16696 16697 16698 16699 16700 16701 16702 16703 16704 16705 16706 16707 16708 16709 16710 16711 16712 16713 16714 16715 16716 16717 16718 16719 16720 16721 16722 16723 16724 16725 16726 16727 16728 16729 16730 16731 16732 16733 16734 16735 16736 16737 16738 16739 16740 16741 16742 16743 16744 16745 16746 16747 16748 16749 16750 16751 16752 16753 16754 16755 16756 16757 16758 16759 16760 16761 16762 16763 16764 16765 16766 16767 16768 16769 16770 16771 16772 16773 16774 16775 16776 16777 16778 16779 16780 16781 16782 16783 16784 16785 16786 16787 16788 16789 16790 16791 16792 16793 16794 16795 16796 16797 16798 16799 16800 16801 16802 16803 16804 16805 16806 16807 16808 16809 16810 16811 16812 16813 16814 16815 16816 16817 16818 16819 16820 16821 16822 16823 16824 16825 16826 16827 16828 16829 16830 16831 16832 16833 16834 16835 16836 16837 16838 16839 16840 16841 16842 16843 16844 16845 16846 16847 16848 16849 16850 16851 16852 16853 16854 16855 16856 16857 16858 16859 16860 16861 16862 16863 16864 16865 16866 16867 16868 16869 16870 16871 16872 16873 16874 16875 16876 16877 16878 16879 16880 16881 16882 16883 16884 16885 16886 16887 16888 16889 16890 16891 16892 16893 16894 16895 16896 16897 16898 16899 16900 16901 16902 16903 16904 16905 16906 16907 16908 16909 16910 16911 16912 16913 16914 16915 16916 16917 16918 16919 16920 16921 16922 16923 16924 16925 16926 16927 16928 16929 16930 16931 16932 16933 16934 16935 16936 16937 16938 16939 16940 16941 16942 16943 16944 16945 16946 16947 16948 16949 16950 16951 16952 16953 16954 16955 16956 16957 16958 16959 16960 16961 16962 16963 16964 16965 16966 16967 16968 16969 16970 16971 16972 16973 16974 16975 16976 16977 16978 16979 16980 16981 16982 16983 16984 16985 16986 16987 16988 16989 16990 16991 16992 16993 16994 16995 16996 16997 16998 16999 17000 17001 17002 17003 17004 17005 17006 17007 17008 17009 17010 17011 17012 17013 17014 17015 17016 17017 17018 17019 17020 17021 17022 17023 17024 17025 17026 17027 17028 17029 17030 17031 17032 17033 17034 17035 17036 17037 17038 17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 17050 17051 17052 17053 17054 17055 17056 17057 17058 17059 17060 17061 17062 17063 17064 17065 17066 17067 17068 17069 17070 17071 17072 17073 17074 17075 17076 17077 17078 17079 17080 17081 17082 17083 17084 17085 17086 17087 17088 17089 17090 17091 17092 17093 17094 17095 17096 17097 17098 17099 17100 17101 17102 17103 17104 17105 17106 17107 17108 17109 17110 17111 17112 17113 17114 17115 17116 17117 17118 17119 17120 17121 17122 17123 17124 17125 17126 17127 17128 17129 17130 17131 17132 17133 17134 17135 17136 17137 17138 17139 17140 17141 17142 17143 17144 17145 17146 17147 17148 17149 17150 17151 17152 17153 17154 17155 17156 17157 17158 17159 17160 17161 17162 17163 17164 17165 17166 17167 17168 17169 17170 17171 17172 17173 17174 17175 17176 17177 17178 17179 17180 17181 17182 17183 17184 17185 17186 17187 17188 17189 17190 17191 17192 17193 17194 17195 17196 17197 17198 17199 17200 17201 17202 17203 17204 17205 17206 17207 17208 17209 17210 17211 17212 17213 17214 17215 17216 17217 17218 17219 17220 17221 17222 17223 17224 17225 17226 17227 17228 17229 17230 17231 17232 17233 17234 17235 17236 17237 17238 17239 17240 17241 17242 17243 17244 17245 17246 17247 17248 17249 17250 17251 17252 17253 17254 17255 17256 17257 17258 17259 17260 17261 17262 17263 17264 17265 17266 17267 17268 17269 17270 17271 17272 17273 17274 17275 17276 17277 17278 17279 17280 17281 17282 17283 17284 17285 17286 17287 17288 17289 17290 17291 17292 17293 17294 17295 17296 17297 17298 17299 17300 17301 17302 17303 17304 17305 17306 17307 17308 17309 17310 17311 17312 17313 17314 17315 17316 17317 17318 17319 17320 17321 17322 17323 17324 17325 17326 17327 17328 17329 17330 17331 17332 17333 17334 17335 17336 17337 17338 17339 17340 17341 17342 17343 17344 17345 17346 17347 17348 17349 17350 17351 17352 17353 17354 17355 17356 17357 17358 17359 17360 17361 17362 17363 17364 17365 17366 17367 17368 17369 17370 17371 17372 17373 17374 17375 17376 17377 17378 17379 17380 17381 17382 17383 17384 17385 17386 17387 17388 17389 17390 17391 17392 17393 17394 17395 17396 17397 17398 17399 17400 17401 17402 17403 17404 17405 17406 17407 17408 17409 17410 17411 17412 17413 17414 17415 17416 17417 17418 17419 17420 17421 17422 17423 17424 17425 17426 17427 17428 17429 17430 17431 17432 17433 17434 17435 17436 17437 17438 17439 17440 17441 17442 17443 17444 17445 17446 17447 17448 17449 17450 17451 17452 17453 17454 17455 17456 17457 17458 17459 17460 17461 17462 17463 17464 17465 17466 17467 17468 17469 17470 17471 17472 17473 17474 17475 17476 17477 17478 17479 17480 17481 17482 17483 17484 17485 17486 17487 17488 17489 17490 17491 17492 17493 17494 17495 17496 17497 17498 17499 17500 17501 17502 17503 17504 17505 17506 17507 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517 17518 17519 17520 17521 17522 17523 17524 17525 17526 17527 17528 17529 17530 17531 17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 17542 17543 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565 17566 17567 17568 17569 17570 17571 17572 17573 17574 17575 17576 17577 17578 17579 17580 17581 17582 17583 17584 17585 17586 17587 17588 17589 17590 17591 17592 17593 17594 17595 17596 17597 17598 17599 17600 17601 17602 17603 17604 17605 17606 17607 17608 17609 17610 17611 17612 17613 17614 17615 17616 17617 17618 17619 17620 17621 17622 17623 17624 17625 17626 17627 17628 17629 17630 17631 17632 17633 17634 17635 17636 17637 17638 17639 17640 17641 17642 17643 17644 17645 17646 17647 17648 17649 17650 17651 17652 17653 17654 17655 17656 17657 17658 17659 17660 17661 17662 17663 17664 17665 17666 17667 17668 17669 17670 17671 17672 17673 17674 17675 17676 17677 17678 17679 17680 17681 17682 17683 17684 17685 17686 17687 17688 17689 17690 17691 17692 17693 17694 17695 17696 17697 17698 17699 17700 17701 17702 17703 17704 17705 17706 17707 17708 17709 17710 17711 17712 17713 17714 17715 17716 17717 17718 17719 17720 17721 17722 17723 17724 17725 17726 17727 17728 17729 17730 17731 17732 17733 17734 17735 17736 17737 17738 17739 17740 17741 17742 17743 17744 17745 17746 17747 17748 17749 17750 17751 17752 17753 17754 17755 17756 17757 17758 17759 17760 17761 17762 17763 17764 17765 17766 17767 17768 17769 17770 17771 17772 17773 17774 17775 17776 17777 17778 17779 17780 17781 17782 17783 17784 17785 17786 17787 17788 17789 17790 17791 17792 17793 17794 17795 17796 17797 17798 17799 17800 17801 17802 17803 17804 17805 17806 17807 17808 17809 17810 17811 17812 17813 17814 17815 17816 17817 17818 17819 17820 17821 17822 17823 17824 17825 17826 17827 17828 17829 17830 17831 17832 17833 17834 17835 17836 17837 17838 17839 17840 17841 17842 17843 17844 17845 17846 17847 17848 17849 17850 17851 17852 17853 17854 17855 17856 17857 17858 17859 17860 17861 17862 17863 17864 17865 17866 17867 17868 17869 17870 17871 17872 17873 17874 17875 17876 17877 17878 17879 17880 17881 17882 17883 17884 17885 17886 17887 17888 17889 17890 17891 17892 17893 17894 17895 17896 17897 17898 17899 17900 17901 17902 17903 17904 17905 17906 17907 17908 17909 17910 17911 17912 17913 17914 17915 17916 17917 17918 17919 17920 17921 17922 17923 17924 17925 17926 17927 17928 17929 17930 17931 17932 17933 17934 17935 17936 17937 17938 17939 17940 17941 17942 17943 17944 17945 17946 17947 17948 17949 17950 17951 17952 17953 17954 17955 17956 17957 17958 17959 17960 17961 17962 17963 17964 17965 17966 17967 17968 17969 17970 17971 17972 17973 17974 17975 17976 17977 17978 17979 17980 17981 17982 17983 17984 17985 17986 17987 17988 17989 17990 17991 17992 17993 17994 17995 17996 17997 17998 17999 18000 18001 18002 18003 18004 18005 18006 18007 18008 18009 18010 18011 18012 18013 18014 18015 18016 18017 18018 18019 18020 18021 18022 18023 18024 18025 18026 18027 18028 18029 18030 18031 18032 18033 18034 18035 18036 18037 18038 18039 18040 18041 18042 18043 18044 18045 18046 18047 18048 18049 18050 18051 18052 18053 18054 18055 18056 18057 18058 18059 18060 18061 18062 18063 18064 18065 18066 18067 18068 18069 18070 18071 18072 18073 18074 18075 18076 18077 18078 18079 18080 18081 18082 18083 18084 18085 18086 18087 18088 18089 18090 18091 18092 18093 18094 18095 18096 18097 18098 18099 18100 18101 18102 18103 18104 18105 18106 18107 18108 18109 18110 18111 18112 18113 18114 18115 18116 18117 18118 18119 18120 18121 18122 18123 18124 18125 18126 18127 18128 18129 18130 18131 18132 18133 18134 18135 18136 18137 18138 18139 18140 18141 18142 18143 18144 18145 18146 18147 18148 18149 18150 18151 18152 18153 18154 18155 18156 18157 18158 18159 18160 18161 18162 18163 18164 18165 18166 18167 18168 18169 18170 18171 18172 18173 18174 18175 18176 18177 18178 18179 18180 18181 18182 18183 18184 18185 18186 18187 18188 18189 18190 18191 18192 18193 18194 18195 18196 18197 18198 18199 18200 18201 18202 18203 18204 18205 18206 18207 18208 18209 18210 18211 18212 18213 18214 18215 18216 18217 18218 18219 18220 18221 18222 18223 18224 18225 18226 18227 18228 18229 18230 18231 18232 18233 18234 18235 18236 18237 18238 18239 18240 18241 18242 18243 18244 18245 18246 18247 18248 18249 18250 18251 18252 18253 18254 18255 18256 18257 18258 18259 18260 18261 18262 18263 18264 18265 18266 18267 18268 18269 18270 18271 18272 18273 18274 18275 18276 18277 18278 18279 18280 18281 18282 18283 18284 18285 18286 18287 18288 18289 18290 18291 18292 18293 18294 18295 18296 18297 18298 18299 18300 18301 18302 18303 18304 18305 18306 18307 18308 18309 18310 18311 18312 18313 18314 18315 18316 18317 18318 18319 18320 18321 18322 18323 18324 18325 18326 18327 18328 18329 18330 18331 18332 18333 18334 18335 18336 18337 18338 18339 18340 18341 18342 18343 18344 18345 18346 18347 18348 18349 18350 18351 18352 18353 18354 18355 18356 18357 18358 18359 18360 18361 18362 18363 18364 18365 18366 18367 18368 18369 18370 18371 18372 18373 18374 18375 18376 18377 18378 18379 18380 18381 18382 18383 18384 18385 18386 18387 18388 18389 18390 18391 18392 18393 18394 18395 18396 18397 18398 18399 18400 18401 18402 18403 18404 18405 18406 18407 18408 18409 18410 18411 18412 18413 18414 18415 18416 18417 18418 18419 18420 18421 18422 18423 18424 18425 18426 18427 18428 18429 18430 18431 18432 18433 18434 18435 18436 18437 18438 18439 18440 18441 18442 18443 18444 18445 18446 18447 18448 18449 18450 18451 18452 18453 18454 18455 18456 18457 18458 18459 18460 18461 18462 18463 18464 18465 18466 18467 18468 18469 18470 18471 18472 18473 18474 18475 18476 18477 18478 18479 18480 18481 18482 18483 18484 18485 18486 18487 18488 18489 18490 18491 18492 18493 18494 18495 18496 18497 18498 18499 18500 18501 18502 18503 18504 18505 18506 18507 18508 18509 18510 18511 18512 18513 18514 18515 18516 18517 18518 18519 18520 18521 18522 18523 18524 18525 18526 18527 18528 18529 18530 18531 18532 18533 18534 18535 18536 18537 18538 18539 18540 18541 18542 18543 18544 18545 18546 18547 18548 18549 18550 18551 18552 18553 18554 18555 18556 18557 18558 18559 18560 18561 18562 18563 18564 18565 18566 18567 18568 18569 18570 18571 18572 18573 18574 18575 18576 18577 18578 18579 18580 18581 18582 18583 18584 18585 18586 18587 18588 18589 18590 18591 18592 18593 18594 18595 18596 18597 18598 18599 18600 18601 18602 18603 18604 18605 18606 18607 18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 18622 18623 18624 18625 18626 18627 18628 18629 18630 18631 18632 18633 18634 18635 18636 18637 18638 18639 18640 18641 18642 18643 18644 18645 18646 18647 18648 18649 18650 18651 18652 18653 18654 18655 18656 18657 18658 18659 18660 18661 18662 18663 18664 18665 18666 18667 18668 18669 18670 18671 18672 18673 18674 18675 18676 18677 18678 18679 18680 18681 18682 18683 18684 18685 18686 18687 18688 18689 18690 18691 18692 18693 18694 18695 18696 18697 18698 18699 18700 18701 18702 18703 18704 18705 18706 18707 18708 18709 18710 18711 18712 18713 18714 18715 18716 18717 18718 18719 18720 18721 18722 18723 18724 18725 18726 18727 18728 18729 18730 18731 18732 18733 18734 18735 18736 18737 18738 18739 18740 18741 18742 18743 18744 18745 18746 18747 18748 18749 18750 18751 18752 18753 18754 18755 18756 18757 18758 18759 18760 18761 18762 18763 18764 18765 18766 18767 18768 18769 18770 18771 18772 18773 18774 18775 18776 18777 18778 18779 18780 18781 18782 18783 18784 18785 18786 18787 18788 18789 18790 18791 18792 18793 18794 18795 18796 18797 18798 18799 18800 18801 18802 18803 18804 18805 18806 18807 18808 18809 18810 18811 18812 18813 18814 18815 18816 18817 18818 18819 18820 18821 18822 18823 18824 18825 18826 18827 18828 18829 18830 18831 18832 18833 18834 18835 18836 18837 18838 18839 18840 18841 18842 18843 18844 18845 18846 18847 18848 18849 18850 18851 18852 18853 18854 18855 18856 18857 18858 18859 18860 18861 18862 18863 18864 18865 18866 18867 18868 18869 18870 18871 18872 18873 18874 18875 18876 18877 18878 18879 18880 18881 18882 18883 18884 18885 18886 18887 18888 18889 18890 18891 18892 18893 18894 18895 18896 18897 18898 18899 18900 18901 18902 18903 18904 18905 18906 18907 18908 18909 18910 18911 18912 18913 18914 18915 18916 18917 18918 18919 18920 18921 18922 18923 18924 18925 18926 18927 18928 18929 18930 18931 18932 18933 18934 18935 18936 18937 18938 18939 18940 18941 18942 18943 18944 18945 18946 18947 18948 18949 18950 18951 18952 18953 18954 18955 18956 18957 18958 18959 18960 18961 18962 18963 18964 18965 18966 18967 18968 18969 18970 18971 18972 18973 18974 18975 18976 18977 18978 18979 18980 18981 18982 18983 18984 18985 18986 18987 18988 18989 18990 18991 18992 18993 18994 18995 18996 18997 18998 18999 19000 19001 19002 19003 19004 19005 19006 19007 19008 19009 19010 19011 19012 19013 19014 19015 19016 19017 19018 19019 19020 19021 19022 19023 19024 19025 19026 19027 19028 19029 19030 19031 19032 19033 19034 19035 19036 19037 19038 19039 19040 19041 19042 19043 19044 19045 19046 19047 19048 19049 19050 19051 19052 19053 19054 19055 19056 19057 19058 19059 19060 19061 19062 19063 19064 19065 19066 19067 19068 19069 19070 19071 19072 19073 19074 19075 19076 19077 19078 19079 19080 19081 19082 19083 19084 19085 19086 19087 19088 19089 19090 19091 19092 19093 19094 19095 19096 19097 19098 19099 19100 19101 19102 19103 19104 19105 19106 19107 19108 19109 19110 19111 19112 19113 19114 19115 19116 19117 19118 19119 19120 19121 19122 19123 19124 19125 19126 19127 19128 19129 19130 19131 19132 19133 19134 19135 19136 19137 19138 19139 19140 19141 19142 19143 19144 19145 19146 19147 19148 19149 19150 19151 19152 19153 19154 19155 19156 19157 19158 19159 19160 19161 19162 19163 19164 19165 19166 19167 19168 19169 19170 19171 19172 19173 19174 19175 19176 19177 19178 19179 19180 19181 19182 19183 19184 19185 19186 19187 19188 19189 19190 19191 19192 19193 19194 19195 19196 19197 19198 19199 19200 19201 19202 19203 19204 19205 19206 19207 19208 19209 19210 19211 19212 19213 19214 19215 19216 19217 19218 19219 19220 19221 19222 19223 19224 19225 19226 19227 19228 19229 19230 19231 19232 19233 19234 19235 19236 19237 19238 19239 19240 19241 19242 19243 19244 19245 19246 19247 19248 19249 19250 19251 19252 19253 19254 19255 19256 19257 19258 19259 19260 19261 19262 19263 19264 19265 19266 19267 19268 19269 19270 19271 19272 19273 19274 19275 19276 19277 19278 19279 19280 19281 19282 19283 19284 19285 19286 19287 19288 19289 19290 19291 19292 19293 19294 19295 19296 19297 19298 19299 19300 19301 19302 19303 19304 19305 19306 19307 19308 19309 19310 19311 19312 19313 19314 19315 19316 19317 19318 19319 19320 19321 19322 19323 19324 19325 19326 19327 19328 19329 19330 19331 19332 19333 19334 19335 19336 19337 19338 19339 19340 19341 19342 19343 19344 19345 19346 19347 19348 19349 19350 19351 19352 19353 19354 19355 19356 19357 19358 19359 19360 19361 19362 19363 19364 19365 19366 19367 19368 19369 19370 19371 19372 19373 19374 19375 19376 19377 19378 19379 19380 19381 19382 19383 19384 19385 19386 19387 19388 19389 19390 19391 19392 19393 19394 19395 19396 19397 19398 19399 19400 19401 19402 19403 19404 19405 19406 19407 19408 19409 19410 19411 19412 19413 19414 19415 19416 19417 19418 19419 19420 19421 19422 19423 19424 19425 19426 19427 19428 19429 19430 19431 19432 19433 19434 19435 19436 19437 19438 19439 19440 19441 19442 19443 19444 19445 19446 19447 19448 19449 19450 19451 19452 19453 19454 19455 19456 19457 19458 19459 19460 19461 19462 19463 19464 19465 19466 19467 19468 19469 19470 19471 19472 19473 19474 19475 19476 19477 19478 19479 19480 19481 19482 19483 19484 19485 19486 19487 19488 19489 19490 19491 19492 19493 19494 19495 19496 19497 19498 19499 19500 19501 19502 19503 19504 19505 19506 19507 19508 19509 19510 19511 19512 19513 19514 19515 19516 19517 19518 19519 19520 19521 19522 19523 19524 19525 19526 19527 19528 19529 19530 19531 19532 19533 19534 19535 19536 19537 19538 19539 19540 19541 19542 19543 19544 19545 19546 19547 19548 19549 19550 19551 19552 19553 19554 19555 19556 19557 19558 19559 19560 19561 19562 19563 19564 19565 19566 19567 19568 19569 19570 19571 19572 19573 19574 19575 19576 19577 19578 19579 19580 19581 19582 19583 19584 19585 19586 19587 19588 19589 19590 19591 19592 19593 19594 19595 19596 19597 19598 19599 19600 19601 19602 19603 19604 19605 19606 19607 19608 19609 19610 19611 19612 19613 19614 19615 19616 19617 19618 19619 19620 19621 19622 19623 19624 19625 19626 19627 19628 19629 19630 19631 19632 19633 19634 19635 19636 19637 19638 19639 19640 19641 19642 19643 19644 19645 19646 19647 19648 19649 19650 19651 19652 19653 19654 19655 19656 19657 19658 19659 19660 19661 19662 19663 19664 19665 19666 19667 19668 19669 19670 19671 19672 19673 19674 19675 19676 19677 19678 19679 19680 19681 19682 19683 19684 19685 19686 19687 19688 19689 19690 19691 19692 19693 19694 19695 19696 19697 19698 19699 19700 19701 19702 19703 19704 19705 19706 19707 19708 19709 19710 19711 19712 19713 19714 19715 19716 19717 19718 19719 19720 19721 19722 19723 19724 19725 19726 19727 19728 19729 19730 19731 19732 19733 19734 19735 19736 19737 19738 19739 19740 19741 19742 19743 19744 19745 19746 19747 19748 19749 19750 19751 19752 19753 19754 19755 19756 19757 19758 19759 19760 19761 19762 19763 19764 19765 19766 19767 19768 19769 19770 19771 19772 19773 19774 19775 19776 19777 19778 19779 19780 19781 19782 19783 19784 19785 19786 19787 19788 19789 19790 19791 19792 19793 19794 19795 19796 19797 19798 19799 19800 19801 19802 19803 19804 19805 19806 19807 19808 19809 19810 19811 19812 19813 19814 19815 19816 19817 19818 19819 19820 19821 19822 19823 19824 19825 19826 19827 19828 19829 19830 19831 19832 19833 19834 19835 19836 19837 19838 19839 19840 19841 19842 19843 19844 19845 19846 19847 19848 19849 19850 19851 19852 19853 19854 19855 19856 19857 19858 19859 19860 19861 19862 19863 19864 19865 19866 19867 19868 19869 19870 19871 19872 19873 19874 19875 19876 19877 19878 19879 19880 19881 19882 19883 19884 19885 19886 19887 19888 19889 19890 19891 19892 19893 19894 19895 19896 19897 19898 19899 19900 19901 19902 19903 19904 19905 19906 19907 19908 19909 19910 19911 19912 19913 19914 19915 19916 19917 19918 19919 19920 19921 19922 19923 19924 19925 19926 19927 19928 19929 19930 19931 19932 19933 19934 19935 19936 19937 19938 19939 19940 19941 19942 19943 19944 19945 19946 19947 19948 19949 19950 19951 19952 19953 19954 19955 19956 19957 19958 19959 19960 19961 19962 19963 19964 19965 19966 19967 19968 19969 19970 19971 19972 19973 19974 19975 19976 19977 19978 19979 19980 19981 19982 19983 19984 19985 19986 19987 19988 19989 19990 19991 19992 19993 19994 19995 19996 19997 19998 19999 20000 20001 20002 20003 20004 20005 20006 20007 20008 20009 20010 20011 20012 20013 20014 20015 20016 20017 20018 20019 20020 20021 20022 20023 20024 20025 20026 20027 20028 20029 20030 20031 20032 20033
# translation of DrakX-pt_BR.po to Portugu�s do Brasil
# translation of DrakX-pt_BR.po to Porugu�s do Brasil
# DRAKX PT_BR PO FILE
# Copyright (C) 2003 Free Software Foundation, Inc.
# Andrei Bosco Bezerra Torres <andrei_bosco@yahoo.com.br>, 2000, 2003
# Bruno Dorfman Buys <brunobuys@zipmail.com.br>, 2002
# Tiago da Cruz Bezerra <tiagocruz18@uol.com.br>,2002
# Tiago da Cruz Bezerra <tiago@grupoking.com.br>, 2003
# Tiago Cruz <tiagocruz@linuxdicas.com.br>, 2003
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX-pt_BR\n"
"POT-Creation-Date: 2003-08-13 03:40+0200\n"
"PO-Revision-Date: 2003-06-27 17:15+0200\n"
"Last-Translator: Tiago Cruz <tiagocruz@linuxdicas.com.br>\n"
"Language-Team: Portugu�s do Brasil <linux_pt_BR@yahoogrupos.com.br>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.0.1\n"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Scanning partitions to find mount points"
msgstr "Escanenado parti��es para encontrar pontos de montagem"

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check additions/removals of suid root files."
msgstr ""

#: ../../standalone/drakTermServ:1
#, c-format
msgid ""
"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
"0/1 for Local Config...\n"
msgstr ""

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Configuration changed - restart clusternfs/dhcpd?"
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid "\t\tErase=%s"
msgstr "\t\tApaga=%s"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Differential backups only save files that have changed or are new since the "
"original 'base' backup."
msgstr ""

#: ../../standalone/harddrake2:1
#, c-format
msgid "network printer port"
msgstr "porta da impressora da rede"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Please insert floppy disk:"
msgstr "Favor inserir um disquete:"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "PCMCIA"
msgstr "PCMCIA"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
msgstr ""
"O backup da tabela de parti��o n�o tem o mesmo tamanho\n"
"Ainda continuar?"

#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Which username"
msgstr "Quak nome de usu�rio"

#: ../../any.pm:1
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Qual tipo de entrada voc� quer adicionar"

#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Restore partition table"
msgstr "Restaurar tabela de parti��o"

#: ../../printer/cups.pm:1
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Em servidor CUPS \"%s\""

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Post-install configuration"
msgstr "Configura��o p�s-instala��o"

#: ../../standalone/drakperm:1
#, c-format
msgid ""
"The current security level is %s\n"
"Select permissions to see/edit"
msgstr ""

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Use ``%s'' instead"
msgstr "Use ``%s'' ao inv�s"

#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
#, c-format
msgid "Type"
msgstr "Tipo"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
"\n"
"Impressoras configuradas com arquivos PPD providos por seu fabricantes ou "
"com drivers CUPS nativos tamb�m n�o podem ser transferidos."

#: ../../lang.pm:1
#, c-format
msgid "Sri Lanka"
msgstr "Sri Lanka"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The following printer\n"
"\n"
"%s%s\n"
"are directly connected to your system"
msgstr ""
"A seguinte impressora\n"
"\n"
"%s%s\n"
"est� conectada diretamente ao seu sistema"

#: ../../lang.pm:1
#, c-format
msgid "Central African Republic"
msgstr "Rep�blica Central Africana"

#: ../../network/network.pm:1
#, c-format
msgid "Gateway device"
msgstr "Dispositivo de gateway"

#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "Advanced preferences"
msgstr "Op��es Avan�adas"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Net Method:"
msgstr "M�todo da NET:"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Ethernetcard"
msgstr "Placa Ethernet"

#: ../../security/l10n.pm:1
#, c-format
msgid "If set, send the mail report to this email address else send it to root"
msgstr ""

#: ../../standalone/drakconnect:1
#, c-format
msgid "Parameters"
msgstr "Par�metros"

#: ../../standalone/draksec:1
#, fuzzy, c-format
msgid "no"
msgstr "Informa��o"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Auto-detect"
msgstr "Auto detectar"

#: ../../standalone/drakconnect:1
#, c-format
msgid "Interface:"
msgstr "Interface:"

#: ../../steps.pm:1
#, c-format
msgid "Select installation class"
msgstr "Selecione a classe da instala��o"

#: ../../standalone/drakbackup:1
#, c-format
msgid "on CDROM"
msgstr "Em um CD-ROM"

#: ../../network/tools.pm:1
#, c-format
msgid ""
"The system doesn't seem to be connected to the Internet.\n"
"Try to reconfigure your connection."
msgstr ""
"O sistema n�o aparenta estar conectado � internet.\n"
"Tente reconfigurar sua conex�o."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
"\n"
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
"Conectar sua impressora em um servidor Linux e permitir sua(s) m�quina(s) "
"Windows conectar nele como um cliente.\n"
"\n"
"Voc� realmente deseja continuar configurando sua impressora desta maneira?"

#: ../../lang.pm:1
#, c-format
msgid "Belarus"
msgstr "Belarus"

#: ../../partition_table.pm:1
#, c-format
msgid "Error writing to file %s"
msgstr "Erro gravando no arquivo %s"

#: ../../security/l10n.pm:1
#, c-format
msgid "Report check result to syslog"
msgstr ""

#: ../../services.pm:1
#, c-format
msgid ""
"apmd is used for monitoring battery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
msgstr ""
"apmd � usado para monitarar o estado da bateria e gravando-o via syslog.\n"
"Ele tamb�m pode ser usado para desligar a m�quina quando a bateria estiver "
"fraca."

#: ../../standalone/drakbackup:1
#, c-format
msgid "Use tape to backup"
msgstr "Use a fita para c�pia de seguran�a"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "The following packages are going to be installed"
msgstr "Os seguintes pacotes ser�o instalados"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "CUPS configuration"
msgstr "Configura��o do CUPS"

#: ../../lang.pm:1
#, c-format
msgid "Hong Kong"
msgstr "Hong Kong"

#: ../../install_interactive.pm:1
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Sem espa�o livre suficiente para alocar as novas parti��es"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Moving"
msgstr "Movendo"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"Drakbackup activities via %s:\n"
"\n"
msgstr ""
"\n"
"Drakbackup ativado via %s:\n"
"\n"

#: ../../standalone/draksec:1
#, fuzzy, c-format
msgid "yes"
msgstr "Sim"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "("
msgstr "("

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
"Bem-vindo ao Ajudante de Configura��o de Rede\n"
"\n"
"Estamos para configurar sua conex�o de rede/internet.\n"
"Se voc� n�o quiser usar a auto detec��o, desmarque a op��o.\n"

#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
#, c-format
msgid ")"
msgstr ")"

#: ../../lang.pm:1
#, c-format
msgid "Lebanon"
msgstr "L�bano"

#: ../../mouse.pm:1
#, c-format
msgid "MM HitTablet"
msgstr "MM HitTablet"

#: ../../services.pm:1
#, c-format
msgid "Stop"
msgstr "Parar"

#: ../../standalone/scannerdrake:1
#, c-format
msgid "Edit selected host"
msgstr "Editar o host selecionado"

#: ../../standalone/drakbackup:1
#, c-format
msgid "No CD device defined!"
msgstr "Nenhum dispositivo de CD definido!"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "\tUse .backupignore files\n"
msgstr "Utilizar quotas para os arquivos da c�pia de seguran�a."

#: ../../keyboard.pm:1
#, c-format
msgid "Bulgarian (phonetic)"
msgstr "B�lgaro (fon�tico)"

#: ../../standalone/drakpxe:1
#, c-format
msgid "The DHCP start ip"
msgstr "IP inicial DHCP"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "256 kB"
msgstr "256 kB"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Don't rewind tape after backup"
msgstr "Use a fita para c�pia de seguran�a"

#: ../../any.pm:1
#, c-format
msgid "Bootloader main options"
msgstr "Principais op��es do gerenciador de inicializa��o"

#: ../../standalone.pm:1
#, c-format
msgid ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
"usbtable] [--dynamic=dev]"
msgstr ""

#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Tape"
msgstr "Fita"

#: ../../lang.pm:1
#, c-format
msgid "Malaysia"
msgstr "Mal�sia"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Scanning network..."
msgstr "Escaneando a rede..."

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
"Com esta op��o voc� ser� capaz de restaurar qualquer vers�o\n"
" do seu diret�rio /etc."

#: ../../standalone/drakedm:1
#, c-format
msgid "The change is done, do you want to restart the dm service ?"
msgstr "A mudan�a foi feita, voc� gostaria de reiniciar o servi�o dm?"

#: ../../keyboard.pm:1
#, c-format
msgid "Swiss (French layout)"
msgstr "Su��o (layout Franc�s)"

#: ../../raid.pm:1
#, c-format
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid falhou (talvez o raidtools esteja faltando)"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Webcam"
msgstr "WebCam"

#: ../../standalone/harddrake2:1
#, c-format
msgid "size of the (second level) cpu cache"
msgstr "tamanho do cache da CPU (segundo n�vel)"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Soundcard"
msgstr "Placa de som"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Search for files to restore"
msgstr "Escolha outra m�dia de onde restaurar"

#: ../../lang.pm:1
#, c-format
msgid "Luxembourg"
msgstr "Luxemburgo"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
"Para imprimir um arquivo a partir da linha de comando (janela de terminal), "
"use o comando \"%s <arquivo>\".\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Level %s\n"
msgstr "N�vel %s\n"

#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Syriac (phonetic)"
msgstr "Arm�nio (fon�tico)"

#: ../../lang.pm:1
#, c-format
msgid "Iran"
msgstr "Ir�"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Bus"
msgstr "Bus"

#: ../../lang.pm:1
#, c-format
msgid "Iraq"
msgstr "Iraque"

#: ../../standalone/drakgw:1
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Potencial conflinto de endere�o LAN encontra na configura��o atual de %s!\n"

#: ../../standalone/drakgw:1
#, c-format
msgid "Configuring..."
msgstr "Configurando..."

#: ../../standalone/drakgw:1
#, c-format
msgid "The setup has already been done, and it's currently enabled."
msgstr "A configura��o j� foi feita e est� desativada."

#: ../../harddrake/v4l.pm:1
#, c-format
msgid ""
"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
"detect the rights parameters.\n"
"If your card is misdetected, you can force the right tuner and card types "
"here. Just select your tv card parameters if needed."
msgstr ""
"Para a maioria das modernas placas de TV, o m�dulo bttv do kernel GNU/LINUX "
"autodetecta os par�metros corretos.\n"
"Se sua placa for mal-detectada, voc� pode for�ar a sintonia correta e os "
"tipos de placa aqui. Apenas escolha os par�metros de sua placa, se "
"necess�rio."

#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Password (again)"
msgstr "Senha (de novo)"

#: ../../standalone/drakfont:1
#, c-format
msgid "Search installed fonts"
msgstr "Procurar fontes instaladas"

#: ../../standalone/drakboot:1
#, fuzzy, c-format
msgid "Default desktop"
msgstr "Padr�o"

#: ../../lang.pm:1
#, c-format
msgid "Venezuela"
msgstr "Venezuela"

#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
#: ../../standalone/drakconnect:1
#, c-format
msgid "IP address"
msgstr "Endere�o IP"

#: ../../install_interactive.pm:1
#, c-format
msgid "Choose the sizes"
msgstr "Escolha os tamanhos"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
"Lista de dados corromidos:\n"
"\n"

#: ../../fs.pm:1
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
"the -a option will not cause the file system to be mounted)."
msgstr ""

#: ../../network/modem.pm:1
#, c-format
msgid ""
"Your modem isn't supported by the system.\n"
"Take a look at http://www.linmodems.org"
msgstr ""
"Seu modem n�o � suportado pelo sistema.\n"
"D� uma olhada em http://www.linmodems.org"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose another partition"
msgstr "Escolher outra parti��o"

#: ../../standalone/drakperm:1
#, c-format
msgid "Current user"
msgstr "Usu�rio atual"

#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Username"
msgstr "Nome de usu�rio"

#: ../../keyboard.pm:1
#, c-format
msgid "Left \"Windows\" key"
msgstr "Tecla \"Windows\" da esquerda"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "dhcpd Server Configuration"
msgstr "Configura��o do Servidor dhcpd"

#: ../../standalone/drakperm:1
#, c-format
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
"Usado por diret�rio:\n"
" apenas o dono do diret�rio ou arquivo deste diret�rio pode apag�-lo"

#: ../../lang.pm:1
#, c-format
msgid "Guyana"
msgstr "Guiana"

#: ../../printer/main.pm:1
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr " em um servidor Novell \"%s\", impressora \"%s\""

#: ../../standalone/drakfloppy:1
#, c-format
msgid "Remove a module"
msgstr "Remover um m�dulo"

#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
#: ../../standalone/drakconnect:1
#, c-format
msgid "Password"
msgstr "Senha"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Advanced Configuration"
msgstr "Configura��o Avan�ada"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Scanning on your HP multi-function device"
msgstr "Escanear no seu dispositivo multi-functional HP"

#: ../../any.pm:1
#, c-format
msgid "Root"
msgstr "Root"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Escolha um RAID existente para adicionar"

#: ../../keyboard.pm:1
#, c-format
msgid "Turkish (modern \"Q\" model)"
msgstr "Turco (modelo moderno \"Q\")"

#: ../../standalone/drakboot:1
#, c-format
msgid "Lilo message not found"
msgstr "Mensagem do lilo n�o encontrada"

#: ../../services.pm:1
#, c-format
msgid ""
"Automatic regeneration of kernel header in /boot for\n"
"/usr/include/linux/{autoconf,version}.h"
msgstr ""
"Regenera��o autom�tica do heador do kernel no /boot para\n"
"/usr/include/linux{autoconf,version}.h"

#: ../../standalone/drakfloppy:1
#, c-format
msgid "if needed"
msgstr "se necess�rio"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Restore Failed..."
msgstr "A restaura��o falhou"

#: ../../standalone/harddrake2:1
#, c-format
msgid "/Autodetect _jazz drives"
msgstr "/Autodetectar drives _jazz"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Store the password for this system in drakbackup configuration."
msgstr ""

#: ../../install_messages.pm:1
#, c-format
msgid ""
"Introduction\n"
"\n"
"The operating system and the different components available in the Mandrake "
"Linux distribution \n"
"shall be called the \"Software Products\" hereafter. The Software Products "
"include, but are not \n"
"restricted to, the set of programs, methods, rules and documentation related "
"to the operating \n"
"system and the different components of the Mandrake Linux distribution.\n"
"\n"
"\n"
"1. License Agreement\n"
"\n"
"Please read this document carefully. This document is a license agreement "
"between you and  \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
"explicitly \n"
"accept and fully agree to conform to the terms and conditions of this "
"License. \n"
"If you disagree with any portion of the License, you are not allowed to "
"install, duplicate or use \n"
"the Software Products. \n"
"Any attempt to install, duplicate or use the Software Products in a manner "
"which does not comply \n"
"with the terms and conditions of this License is void and will terminate "
"your rights under this \n"
"License. Upon termination of the License,  you must immediately destroy all "
"copies of the \n"
"Software Products.\n"
"\n"
"\n"
"2. Limited Warranty\n"
"\n"
"The Software Products and attached documentation are provided \"as is\", "
"with no warranty, to the \n"
"extent permitted by law.\n"
"MandrakeSoft S.A. will, in no circumstances and to the extent permitted by "
"law, be liable for any special,\n"
"incidental, direct or indirect damages whatsoever (including without "
"limitation damages for loss of \n"
"business, interruption of business, financial loss, legal fees and penalties "
"resulting from a court \n"
"judgment, or any other consequential loss) arising out of  the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
"COUNTRIES\n"
"\n"
"To the extent permitted by law, MandrakeSoft S.A. or its distributors will, "
"in no circumstances, be \n"
"liable for any special, incidental, direct or indirect damages whatsoever "
"(including without \n"
"limitation damages for loss of business, interruption of business, financial "
"loss, legal fees \n"
"and penalties resulting from a court judgment, or any other consequential "
"loss) arising out \n"
"of the possession and use of software components or arising out of  "
"downloading software components \n"
"from one of Mandrake Linux sites  which are prohibited or restricted in some "
"countries by local laws.\n"
"This limited liability applies to, but is not restricted to, the strong "
"cryptography components \n"
"included in the Software Products.\n"
"\n"
"\n"
"3. The GPL License and Related Licenses\n"
"\n"
"The Software Products consist of components created by different persons or "
"entities.  Most \n"
"of these components are governed under the terms and conditions of the GNU "
"General Public \n"
"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
"licenses allow you to use, \n"
"duplicate, adapt or redistribute the components which they cover. Please "
"read carefully the terms \n"
"and conditions of the license agreement for each component before using any "
"component. Any question \n"
"on a component license should be addressed to the component author and not "
"to MandrakeSoft.\n"
"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
"Documentation written \n"
"by MandrakeSoft S.A. is governed by a specific license. Please refer to the "
"documentation for \n"
"further details.\n"
"\n"
"\n"
"4. Intellectual Property Rights\n"
"\n"
"All rights to the components of the Software Products belong to their "
"respective authors and are \n"
"protected by intellectual property and copyright laws applicable to software "
"programs.\n"
"MandrakeSoft S.A. reserves its rights to modify or adapt the Software "
"Products, as a whole or in \n"
"parts, by all means and for all purposes.\n"
"\"Mandrake\", \"Mandrake Linux\" and associated logos are trademarks of "
"MandrakeSoft S.A.  \n"
"\n"
"\n"
"5. Governing Laws \n"
"\n"
"If any portion of this agreement is held void, illegal or inapplicable by a "
"court judgment, this \n"
"portion is excluded from this contract. You remain bound by the other "
"applicable sections of the \n"
"agreement.\n"
"The terms and conditions of this License are governed by the Laws of "
"France.\n"
"All disputes on the terms of this license will preferably be settled out of "
"court. As a last \n"
"resort, the dispute will be referred to the appropriate Courts of Law of "
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A.  \n"
msgstr ""
"Introduction\n"
"\n"
"The operating system and the different components available in the Mandrake "
"Linux distribution \n"
"shall be called the \"Software Products\" hereafter. The Software Products "
"include, but are not \n"
"restricted to, the set of programs, methods, rules and documentation related "
"to the operating \n"
"system and the different components of the Mandrake Linux distribution.\n"
"\n"
"\n"
"1. License Agreement\n"
"\n"
"Please read this document carefully. This document is a license agreement "
"between you and  \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
"explicitly \n"
"accept and fully agree to conform to the terms and conditions of this "
"License. \n"
"If you disagree with any portion of the License, you are not allowed to "
"install, duplicate or use \n"
"the Software Products. \n"
"Any attempt to install, duplicate or use the Software Products in a manner "
"which does not comply \n"
"with the terms and conditions of this License is void and will terminate "
"your rights under this \n"
"License. Upon termination of the License,  you must immediately destroy all "
"copies of the \n"
"Software Products.\n"
"\n"
"\n"
"2. Limited Warranty\n"
"\n"
"The Software Products and attached documentation are provided \"as is\", "
"with no warranty, to the \n"
"extent permitted by law.\n"
"MandrakeSoft S.A. will, in no circumstances and to the extent permitted by "
"law, be liable for any special,\n"
"incidental, direct or indirect damages whatsoever (including without "
"limitation damages for loss of \n"
"business, interruption of business, financial loss, legal fees and penalties "
"resulting from a court \n"
"judgment, or any other consequential loss) arising out of  the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
"COUNTRIES\n"
"\n"
"To the extent permitted by law, MandrakeSoft S.A. or its distributors will, "
"in no circumstances, be \n"
"liable for any special, incidental, direct or indirect damages whatsoever "
"(including without \n"
"limitation damages for loss of business, interruption of business, financial "
"loss, legal fees \n"
"and penalties resulting from a court judgment, or any other consequential "
"loss) arising out \n"
"of the possession and use of software components or arising out of  "
"downloading software components \n"
"from one of Mandrake Linux sites  which are prohibited or restricted in some "
"countries by local laws.\n"
"This limited liability applies to, but is not restricted to, the strong "
"cryptography components \n"
"included in the Software Products.\n"
"\n"
"\n"
"3. The GPL License and Related Licenses\n"
"\n"
"The Software Products consist of components created by different persons or "
"entities.  Most \n"
"of these components are governed under the terms and conditions of the GNU "
"General Public \n"
"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
"licenses allow you to use, \n"
"duplicate, adapt or redistribute the components which they cover. Please "
"read carefully the terms \n"
"and conditions of the license agreement for each component before using any "
"component. Any question \n"
"on a component license should be addressed to the component author and not "
"to MandrakeSoft.\n"
"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
"Documentation written \n"
"by MandrakeSoft S.A. is governed by a specific license. Please refer to the "
"documentation for \n"
"further details.\n"
"\n"
"\n"
"4. Intellectual Property Rights\n"
"\n"
"All rights to the components of the Software Products belong to their "
"respective authors and are \n"
"protected by intellectual property and copyright laws applicable to software "
"programs.\n"
"MandrakeSoft S.A. reserves its rights to modify or adapt the Software "
"Products, as a whole or in \n"
"parts, by all means and for all purposes.\n"
"\"Mandrake\", \"Mandrake Linux\" and associated logos are trademarks of "
"MandrakeSoft S.A.  \n"
"\n"
"\n"
"5. Governing Laws \n"
"\n"
"If any portion of this agreement is held void, illegal or inapplicable by a "
"court judgment, this \n"
"portion is excluded from this contract. You remain bound by the other "
"applicable sections of the \n"
"agreement.\n"
"The terms and conditions of this License are governed by the Laws of "
"France.\n"
"All disputes on the terms of this license will preferably be settled out of "
"court. As a last \n"
"resort, the dispute will be referred to the appropriate Courts of Law of "
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A.  \n"

#: ../../standalone/drakboot:1
#, fuzzy, c-format
msgid "Default user"
msgstr "Impressora padr�o"

#: ../../standalone/draksplash:1
#, c-format
msgid ""
"the progress bar x coordinate\n"
"of its upper left corner"
msgstr ""
"coordenas x da barra de progresso\n"
"no canto superior esquerdo"

#: ../../standalone/drakgw:1
#, c-format
msgid "Current interface configuration"
msgstr "Configura��o atual da interface"

#: ../../printer/data.pm:1
#, c-format
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"

#: ../../network/isdn.pm:1
#, c-format
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
"card.\n"
msgstr ""
"\n"
"Se voc� tiver uma placa ISA, os valores da pr�xima tela devem estar certos.\n"
"\n"
"Se voc� tiver uma placa PCMCIA, voc� tem que saber o irq e io de sua placa.\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Do not print any test page"
msgstr "N�o imprimir nenhuma p�gina de teste"

#: ../../keyboard.pm:1
#, c-format
msgid "Gurmukhi"
msgstr "Gurmukhi"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "%s already in use\n"
msgstr ""

#: ../../any.pm:1
#, c-format
msgid "Force No APIC"
msgstr "For�ar No APIC"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Essa senha � muito simples (deve ter ao menos %d caracteres)"

#: ../../standalone.pm:1
#, c-format
msgid "[keyboard]"
msgstr "[teclado]"

#: ../../network/network.pm:1
#, c-format
msgid "FTP proxy"
msgstr "Proxy FTP"

#: ../../standalone/drakfont:1
#, c-format
msgid "Install List"
msgstr "Lista de Instala��o"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Change\n"
"Restore Path"
msgstr ""
"Mudar o Caminho\n"
"de Restaura��o"

#: ../../standalone/logdrake:1
#, c-format
msgid "Show only for the selected day"
msgstr "Exibir apenas dia selecionado"

#: ../../standalone/drakbackup:1
#, c-format
msgid "\tLimit disk usage to %s MB\n"
msgstr ""

#: ../../Xconfig/card.pm:1
#, c-format
msgid "512 kB"
msgstr "512 kB"

#: ../../standalone/net_monitor:1
#, c-format
msgid "Logs"
msgstr "Logs"

#: ../../standalone/scannerdrake:1
#, c-format
msgid "(Note: Parallel ports cannot be auto-detected)"
msgstr "(Nota: Portas paralelas n�o podem ser auto-detectadas)"

#: ../../standalone/logdrake:1
#, c-format
msgid "<control>N"
msgstr "<control>N"

#: ../../network/isdn.pm:1
#, c-format
msgid "What kind of card do you have?"
msgstr "Qual tipo de placa voc� tem?"

#: ../../standalone/logdrake:1
#, c-format
msgid "<control>O"
msgstr "<control>A"

#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
#, c-format
msgid "Security"
msgstr "Seguran�a"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
"If you are using KDE as desktop environment you have a \"panic button\", an "
"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
"jobs immediately when you click it. This is for example useful for paper "
"jams.\n"
msgstr ""
"Voc� tamb�m pode utilizar a interface gr�fica \"xpdq\" para configurar as "
"op��es e gerenciar trabalhos de impress�o.\n"
"Se voc� usar o KDE como ambiente de desktop, voc� possue um \"bot�o de p�nico"
"\", um �cone no desktop com o nome \"PARE Impressora!\", que para todas as "
"impress�es imediatamente ao ser clicado. Um exemplo �til � caso o papel "
"emperre.\n"

#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
#, c-format
msgid "<control>Q"
msgstr "<control>R"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' media also use the hard drive."
msgstr ""
"Assegure-se que o daemon cron esta inclu�do nos seus servi�os. \n"
"\n"
"Note que por agora todos as m�dias 'rede' tamb�m utilizam o disco r�gido."

#: ../../standalone/harddrake2:1
#, c-format
msgid "Unknown"
msgstr "Desconhecido"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "This server is already in the list, it cannot be added again.\n"
msgstr ""
"Este servidor j� existe na lista, e n�o pode ser adicionado novamente.\n"

#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
#, c-format
msgid "Network Configuration"
msgstr "Configura��o da Rede"

#: ../../standalone/logdrake:1
#, c-format
msgid "<control>S"
msgstr "<control>S"

#: ../../network/isdn.pm:1
#, c-format
msgid ""
"Protocol for the rest of the world\n"
"No D-Channel (leased lines)"
msgstr ""
"Protocolo para o resto do mundo\n"
"Sem Canal-D (linhas arrendadas)"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Option %s must be a number!"
msgstr "A op��o %s tem que ser um n�mero!"

#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
#, c-format
msgid "Notice"
msgstr "Noticia"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The configuration of the printer will work fully automatically. If your "
"printer was not correctly detected or if you prefer a customized printer "
"configuration, turn on \"Manual configuration\"."
msgstr ""

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "What type of partitioning?"
msgstr "Qual tipo de particionamento?"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
"lista de arquivos enviada por FTP: %s\n"
" "

#: ../../standalone/drakconnect:1
#, c-format
msgid "Interface"
msgstr "Interface"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Multisession CD"
msgstr " (multi-sess�o)"

#: ../../modules/parameters.pm:1
#, c-format
msgid "comma separated strings"
msgstr "n�meros separado por caracteres"

#: ../../standalone/scannerdrake:1
#, c-format
msgid "These are the machines from which the scanners should be used:"
msgstr ""

#: ../../standalone/logdrake:1
#, c-format
msgid "Messages"
msgstr "Mensagens"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr "Desconhecido | CPH06X (bt878) [v�rios fabricantes]"

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "POP and IMAP Server"
msgstr "Servidor POP e IMAP"

#: ../../lang.pm:1
#, c-format
msgid "Mexico"
msgstr "M�xico"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Model stepping"
msgstr "Model stepping"

#: ../../lang.pm:1
#, c-format
msgid "Rwanda"
msgstr "Ruanda"

#: ../../modules/interactive.pm:1
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Voc� tem alguma interface %s?"

#: ../../lang.pm:1
#, c-format
msgid "Switzerland"
msgstr "Su��a"

#: ../../lang.pm:1
#, c-format
msgid "Brunei Darussalam"
msgstr "Brunei Darussalam"

#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "You must be root to read configuration file. \n"
msgstr "Fazer uma c�pia de seguran�a agora a partir do arquivo de configura��o"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remote lpd Printer Options"
msgstr "Op��es da impressora lpd Remota"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"GNU/Linux is a multi-user system, meaning each user may have their own\n"
"preferences, their own files and so on. You can read the ``Starter Guide''\n"
"to learn more about multi-user systems. But unlike \"root\", who is the\n"
"system administrator, the users you add at this point will not be\n"
"authorized to change anything except their own files and their own\n"
"configurations, protecting the system from unintentional or malicious\n"
"changes that impact on the system as a whole. You will have to create at\n"
"least one regular user for yourself -- this is the account which you should\n"
"use for routine, day-to-day use. Although it is very easy to log in as\n"
"\"root\" to do anything and everything, it may also be very dangerous! A\n"
"very simple mistake could mean that your system will not work any more. If\n"
"you make a serious mistake as a regular user, the worst that will happen is\n"
"that you will lose some information, but not affect the entire system.\n"
"\n"
"The first field asks you for a real name. Of course, this is not mandatory\n"
"-- you can actually enter whatever you like. DrakX will use the first word\n"
"you typed in this field and copy it to the \"%s\" field, which is the name\n"
"this user will enter to log onto the system. If you like, you may override\n"
"the default and change the username. The next step is to enter a password.\n"
"From a security point of view, a non-privileged (regular) user password is\n"
"not as crucial as the \"root\" password, but that is no reason to neglect\n"
"it by making it blank or too simple: after all, your files could be the\n"
"ones at risk.\n"
"\n"
"Once you click on \"%s\", you can add other users. Add a user for each one\n"
"of your friends: your father or your sister, for example. Click \"%s\" when\n"
"you have finished adding users.\n"
"\n"
"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
"that user (bash by default).\n"
"\n"
"When you have finished adding users, you will be asked to choose a user\n"
"that can automatically log into the system when the computer boots up. If\n"
"you are interested in that feature (and do not care much about local\n"
"security), choose the desired user and window manager, then click \"%s\".\n"
"If you are not interested in this feature, uncheck the \"%s\" box."
msgstr ""
"GNU/Linux � um sistema multiusu�rio, e isto significa que cada usu�rio pode "
"ter suas\n"
"pr�prias prefer�ncias, seus pr�prios arquivos, e assim em diante. Voc� pode "
"ler o \n"
"``Guia do Usu�rio'' para aprender mais. Mas, ao contr�rio do \"root\", que � "
"o administrador \n"
"do sistema, os usu�rios a serem adicionados n�o ter�o direito a modificar "
"nada, a n�o \n"
"ser seus pr�prios arquivos e suas pr�prias configura��es. Voc� dever� criar "
"ao menos uma conta regular para voc� mesmo. Embora seja muito pr�tico logar "
"como \"root\" todo \n"
"dia,  tamb�m pode ser muito perigoso! O menor engano pode significar que o "
"seu sistema\n"
"n�o funcionar� mais. Se voc� comete um engano s�rio como usu�rio regular, "
"voc� \n"
"somente perde informa��o, e n�o o sistema inteiro.\n"
"\n"
"Primeiro voc� deve entrar o seu nome real. Isto n�o � obrigat�rio, � claro "
"-\n"
"porque voc� pode entrar, na verdade, o que voc� quiser. DrakX ir�, depois, "
"pegar a \n"
"primeira palavra que voc� digitou na caixa e colocar como \"User\n"
"name\". Este � o nome que este usu�rio espec�fico ir� usar paralogar no "
"sistema. \n"
"Voc� pode mud�-lo. Depois voc� dever� entrar uma senha. Uma\n"
"senha de usu�rio n�o privilegiado (regular) n�o � t�o crucial\n"
"quanto a de \"root\", do ponto de vista da seguran�a, mas isto n�o � raz�o "
"para\n"
"negligenciar esta senha, pois afinal, s�o os seus arquivos que est�o l�.\n"
"\n"
"Se voc� clicar em \"Aceitar usu�rio\" voc� poder� depois adicionar quantos "
"quiser.\n"
"Adicione um usu�rio para cada um dos seus amigos: seu pai, ou sua irm�o, "
"por\n"
"exemplo. Depois que terminar de adicionar os usu�rios, selecione \"Feito\".\n"
"\n"
"Clicando em \"Avan�ado\"  permite que voc� mude o  \"shell\"\n"
"Padr�o para aquele usu�rio (bash por padr�o)."

#: ../../standalone/drakconnect:1
#, c-format
msgid "Configure Internet Access..."
msgstr "Configurar Acesso � Internet..."

#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Norway"
msgstr "Noruega"

#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Delete profile"
msgstr "Apagar perfil..."

#: ../../keyboard.pm:1
#, c-format
msgid "Danish"
msgstr "Dinamarqu�s"

#: ../../services.pm:1
#, c-format
msgid ""
"Automatically switch on numlock key locker under console\n"
"and XFree at boot."
msgstr ""
"Automaticamente ativa o Num Lock no console e XFree\n"
"durante a inicializa��o."

#: ../../network/network.pm:1
#, c-format
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
"notation (for example, 1.2.3.4)."
msgstr ""
"Favor entrar com a configura��o IP para esta m�quina.\n"
"Cada item deve ser entrando como endere�o IP pontilhado-decimal\n"
"(por exemplo, 1.2.3.4)."

#: ../../help.pm:1
#, c-format
msgid ""
"The Mandrake Linux installation is distributed on several CD-ROMs. DrakX\n"
"knows if a selected package is located on another CD-ROM so it will eject\n"
"the current CD and ask you to insert the correct CD as required."
msgstr ""
"O instalador do Linux Mandrake est� espalhado em diferentes CD-ROMS. O "
"DrakX\n"
"sabe se um pacote selecionado est� localizado em outro CD-ROM e ir� ejetar\n"
"o CD-ROM atual e pedir para voc� inserir o CD-ROM necess�rio."

#: ../../standalone/drakperm:1
#, c-format
msgid "When checked, owner and group won't be changed"
msgstr ""

#: ../../harddrake/data.pm:1
#, c-format
msgid "Processors"
msgstr "Processadores"

#: ../../lang.pm:1
#, c-format
msgid "Bulgaria"
msgstr "Bulg�ria"

#: ../../lang.pm:1
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr "Ilhas Svalbard e Jan Meyen"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "No NIC selected!"
msgstr "Nenhum NIC selecionado!"

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
"Ocirreram problemas durante a configura��o \n"
"Teste sua conex�o vom o net_monitor ou mcc. Se sua conex�o n�o estiver "
"correta, voc� precisar� refazer sua configura��o."

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "partition %s is now known as %s"
msgstr "Parti��o %s agora chama-se %s"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup Other files..."
msgstr "C�pia de seguran�a de outros arquivos..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "SMB server IP"
msgstr "IP do servidor SMB"

#: ../../lang.pm:1
#, c-format
msgid "Congo (Kinshasa)"
msgstr ""

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "A tabela de parti��o do drive %s est� para ser gravada no disco!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing HPOJ package..."
msgstr "Instalando pacotes HPOJ..."

#: ../../any.pm:1
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
"install\n"
"LILO (or grub) on your system, or another operating system removes LILO, or "
"LILO doesn't\n"
"work with your hardware configuration. A custom bootdisk can also be used "
"with\n"
"the Mandrake rescue image, making it much easier to recover from severe "
"system\n"
"failures. Would you like to create a bootdisk for your system?\n"
"%s"
msgstr ""
"Um disco de inicializa��o prov� uma maneira de entrar no Linux sem depender\n"
"de um inicializador normal. Isso � necess�rio se voc� n�o quiser instalar o "
"LILO (ou\n"
"o grub) no seu sistema, ou se outro sistema operacionar remover o LILO, ou "
"se o LILO\n"
"n�o funcionar com o seu hardware. Um disco de inicializa��o tamb�m pode ser "
"usado com\n"
"uma imagem de backup do Mandrake, deixando muito mais f�cil recuperar um "
"sistema\n"
"com danos severos. Voc� quer criar um disco de inicializa��o?\n"
"%s"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid ""
"\n"
"                      DrakBackup Daemon Report\n"
msgstr ""
"\n"
"                      Relat�rio do Daemon DrakBackup\n"
"\n"
"\n"

#: ../../keyboard.pm:1
#, c-format
msgid "Latvian"
msgstr "Letoniano"

#: ../../standalone/drakbackup:1
#, c-format
msgid "monthly"
msgstr "todos os meses"

#: ../../standalone/drakfloppy:1
#, c-format
msgid "Module name"
msgstr "Nome do m�dulo"

#: ../../network/network.pm:1
#, c-format
msgid "Start at boot"
msgstr "Iniciar durante a inicializa��o"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Use Incremental Backups"
msgstr "Usar c�pia de seguran�a incremental (n�o substitui c�pias antigas)"

#: ../../any.pm:1
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Primeiro setor do drive (MBR)"

#: ../../lang.pm:1
#, c-format
msgid "El Salvador"
msgstr "El Salvador"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Joystick"
msgstr ""

#: ../../standalone/harddrake2:1
#, c-format
msgid "DVD"
msgstr ""

#: ../../any.pm:1 ../../help.pm:1
#, c-format
msgid "Use Unicode by default"
msgstr ""

#: ../../standalone/harddrake2:1
#, c-format
msgid "the module of the GNU/Linux kernel that handles the device"
msgstr "o m�dulo do kernel GNU/Linux que controle este dispositivo"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "DVDR device"
msgstr "dispositivos"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Trying to rescue partition table"
msgstr "Tentando resgatar tabela de parti��o"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Option %s must be an integer number!"
msgstr "A op��o %s tem que ser um n�mero inteiro!"

#: ../../security/l10n.pm:1
#, c-format
msgid "Use password to authenticate users"
msgstr ""

#: ../../interactive/stdio.pm:1
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
"Entradas que voc� deve preencher:\n"
"%s"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"For backups to other media, files are still created on the hard drive, then "
"moved to the other media.  Enabling this option will remove the hard drive "
"tar files after the backup."
msgstr ""

#: ../../standalone/livedrake:1
#, c-format
msgid "Unable to start live upgrade !!!\n"
msgstr "Incapaz de iniciar a atualiza��o on-line!!!\n"

#: ../../install_steps_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Name: "
msgstr "Nome: "

#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "16 million colors (24 bits)"
msgstr "16 milh�es de cores (24 bits)"

#: ../../any.pm:1
#, c-format
msgid "Allow all users"
msgstr "Permite todos os usu�rios"

#: ../../share/advertising/08-store.pl:1
#, c-format
msgid "The official MandrakeSoft Store"
msgstr "A loja oficial da MandrakeSoft"

#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Resizing"
msgstr "Redimensionando"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid ""
"Enter the maximum size\n"
" allowed for Drakbackup (MB)"
msgstr ""
"Favor digitar o tamanho m�ximo\n"
" permitido para o Drakbackup"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Cable connection"
msgstr "Conex�o via cabo"

#: ../../standalone/drakperm:1 ../../standalone/logdrake:1
#, c-format
msgid "User"
msgstr "Usu�rio"

#: ../../fsedit.pm:1
#, c-format
msgid ""
"I can't read the partition table of device %s, it's too corrupted for me :(\n"
"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
msgstr ""
"Eu n�o consigo ler a tabela de parti��o do dispositivo %s, � muito "
"defeituosa para mim :(\n"
"Eu posso tentar continuar apagando as parti��es defeituosas (TODOS OS DADOS "
"ser�o perdidos!).\n"
"A outra solu��o � n�o deixar o DrakX modificar a tabela de parti��o\n"
"(o erro � em %s)\n"
"\n"
"Voc� concorda em perder todas as suas parti��es?\n"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Copiar de novo antes de restaurar (s� para as c�pias de seguran�a por "
"incrementa��o)"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Name"
msgstr "Nome"

#: ../../raid.pm:1
#, c-format
msgid "mkraid failed"
msgstr "mkraid falhou"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Button 3 Emulation"
msgstr "Emula��o dos 3 bot�es"

#: ../../security/l10n.pm:1
#, c-format
msgid "Check additions/removals of sgid files"
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid "Sending files..."
msgstr "Enviando arquivos..."

#: ../../keyboard.pm:1
#, c-format
msgid "Israeli (Phonetic)"
msgstr "Israelense (Fon�tico)"

#: ../../any.pm:1
#, c-format
msgid "access to rpm tools"
msgstr "Acesso a ferramentas rpm"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "You must choose/enter a printer/device!"
msgstr "Voc� precisa escolher/digitar a impressora/dispositivo!"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Permission problem accessing CD."
msgstr "Problemas de permiss�o acessando CD"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Phone number"
msgstr "N�mero do telefone"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "Error: The \"%s\" driver for your sound card is unlisted"
msgstr "Erro: O driver \"%s\" para sua placa de som n�o est� na lista"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer name, description, location"
msgstr "Nome da impressora, descri��o e localia��o"

#: ../../standalone/drakxtv:1
#, c-format
msgid "USA (broadcast)"
msgstr "EUA (difus�o)"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Please choose the\n"
"media for backup."
msgstr ""
"Por favor escolha a m�dia\n"
"para a c�pia de seguran�a."

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Use Xinerama extension"
msgstr "Usar extens�o Xinerama"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Loopback"
msgstr "Loopback"

#: ../../standalone/drakfloppy:1
#, c-format
msgid ""
"Unable to properly close mkbootdisk: \n"
" %s \n"
" %s"
msgstr ""
"Incapaz de fechar adequadamente o mkbootdisk: \n"
" %s \n"
" %s"

#: ../../standalone/drakxtv:1
#, c-format
msgid "West Europe"
msgstr "Oeste Europeu"

#: ../../standalone.pm:1
#, c-format
msgid ""
"[OPTIONS] [PROGRAM_NAME]\n"
"\n"
"OPTIONS:\n"
"  --help            - print this help message.\n"
"  --report          - program should be one of mandrake tools\n"
"  --incident        - program should be one of mandrake tools"
msgstr ""
"[OP��ES] [NOME_DO_PROGRAMA]\n"
"\n"
"OP��ES:\n"
"  --help            - exibe esta mensagem de ajuda.\n"
"  --report          - programa deve ser uma das ferramentas mandrake\n"
"  --incident        - programa deve ser uma das ferramentas mandrak"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Harddrake2 version %s"
msgstr "Harddrake2 vers�o %s"

#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "Preferences"
msgstr "Prefer�ncia: "

#: ../../lang.pm:1
#, c-format
msgid "Swaziland"
msgstr "Swazil�ndia"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Copying %s"
msgstr "Copiando %s"

#: ../../standalone/draksplash:1
#, c-format
msgid "Choose color"
msgstr "Escolha a cor"

#: ../../lang.pm:1
#, c-format
msgid "Dominican Republic"
msgstr "Rep�blica Dominicana"

#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Syriac"
msgstr "S�ria"

#: ../../standalone/drakperm:1
#, c-format
msgid "Set-UID"
msgstr ""

#: ../../help.pm:1
#, c-format
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on this partition\n"
"will be lost and will not be recoverable!"
msgstr ""
"Escolha o disco r�gido que voc� quer apagar para instalar sua nova "
"parti��o \n"
"Mandrake Linux. Tenha cuidado, pois todos os dados existentes ser�o \n"
"perdidos e n�o poder�o ser recuperados!"

#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
#: ../../bootloader.pm:1
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use as teclas %c e %c para selecionar a entrada que quiser."

#: ../../standalone/drakperm:1
#, c-format
msgid "Enable \"%s\" to execute the file"
msgstr ""

#: ../../mouse.pm:1
#, c-format
msgid "Generic 2 Button Mouse"
msgstr "Mouse Gen�rico com 2 Bot�es"

#: ../../lvm.pm:1
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Remover os volumes l�gicos primeiro\n"

#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
#: ../../bootloader.pm:1
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr ""
"A inicializa��o da entrada selecionada ocorrera automaticamente em %d "
"segundos."

#: ../../standalone/drakboot:1
#, c-format
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
"N�o pode gravar em /etc/sysconfig/bootsplash. \n"
"Arquivo n�o encontrado."

#: ../../standalone/drakconnect:1
#, c-format
msgid "Internet access"
msgstr "Acesso � Internet"

#: ../../standalone/draksplash:1
#, c-format
msgid ""
"y coordinate of text box\n"
"in number of characters"
msgstr ""
"coordenada y da caixa de texto\n"
"em n�mero de caracteres"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
"Para obter uma lista das op��es dispon�ves para a impressora atual, clique "
"no bot�o \"Lista de op��es da impressora\"."

#: ../../standalone/drakgw:1
#, c-format
msgid "Enabling servers..."
msgstr "Ativando servidores..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing test page(s)..."
msgstr "Imprimindo p�gina(s) de teste..."

#: ../../fsedit.pm:1
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "J� existe uma parti��o no ponto de montagem %s\n"

#: ../../security/help.pm:1
#, fuzzy, c-format
msgid "Enable/Disable msec hourly security check."
msgstr ""
"Argumentos (arg)\n"
"\n"
"Ativa/ Desativa a verifica��o di�ria de seguran�a."

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"At this point, you need to decide where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
"if an existing operating system is using all the available space you will\n"
"have to partition the drive. Basically, partitioning a hard drive consists\n"
"of logically dividing it to create the space needed to install your new\n"
"Mandrake Linux system.\n"
"\n"
"Because the process of partitioning a hard drive is usually irreversible\n"
"and can lead to lost data if there is an existing operating system already\n"
"installed on the drive, partitioning can be intimidating and stressful if\n"
"you are an inexperienced user. Fortunately, DrakX includes a wizard which\n"
"simplifies this process. Before continuing with this step, read through the\n"
"rest of this section and above all, take your time.\n"
"\n"
"Depending on your hard drive configuration, several options are available:\n"
"\n"
" * \"%s\": this option will perform an automatic partitioning of your blank\n"
"drive(s). If you use this option there will be no further prompts.\n"
"\n"
" * \"%s\": the wizard has detected one or more existing Linux partitions on\n"
"your hard drive. If you want to use them, choose this option. You will then\n"
"be asked to choose the mount points associated with each of the partitions.\n"
"The legacy mount points are selected by default, and for the most part it's\n"
"a good idea to keep them.\n"
"\n"
" * \"%s\": if Microsoft Windows is installed on your hard drive and takes\n"
"all the space available on it, you will have to create free space for\n"
"Linux. To do so, you can delete your Microsoft Windows partition and data\n"
"(see ``Erase entire disk'' solution) or resize your Microsoft Windows FAT\n"
"partition. Resizing can be performed without the loss of any data, provided\n"
"you have previously defragmented the Windows partition and that it uses the\n"
"FAT format. Backing up your data is strongly recommended.. Using this\n"
"option is recommended if you want to use both Mandrake Linux and Microsoft\n"
"Windows on the same computer.\n"
"\n"
"   Before choosing this option, please understand that after this\n"
"procedure, the size of your Microsoft Windows partition will be smaller\n"
"then when you started. You will have less free space under Microsoft\n"
"Windows to store your data or to install new software.\n"
"\n"
" * \"%s\": if you want to delete all data and all partitions present on\n"
"your hard drive and replace them with your new Mandrake Linux system,\n"
"choose this option. Be careful, because you will not be able to undo your\n"
"choice after you confirm.\n"
"\n"
"   !! If you choose this option, all data on your disk will be deleted. !!\n"
"\n"
" * \"%s\": this will simply erase everything on the drive and begin fresh,\n"
"partitioning everything from scratch. All data on your disk will be lost.\n"
"\n"
"   !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"%s\": choose this option if you want to manually partition your hard\n"
"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
"easily lose all your data. That's why this option is really only\n"
"recommended if you have done something like this before and have some\n"
"experience. For more instructions on how to use the DiskDrake utility,\n"
"refer to the ``Managing Your Partitions '' section in the ``Starter\n"
"Guide''."
msgstr ""
"A esse ponto, voc� precisa escolher onde voc� quer instalar o seu sistema\n"
"Mandrake Linux no seu disco r�gido. Se estiver vazio ou se um sistema\n"
"operacional existente usa todo o espa�o dispon�vel, voc� ter� que\n"
"particion�-lo. Basicamente, particionar um disco r�gido consiste em\n"
"dividi-lo logicamente para criar espa�o para o seu novo sistema Mandrake "
"Linux.\n"
"\n"
"Como os efeitos de um processo de particionamento s�o normalmente\n"
"irrevers�veis, o particionamento pode ser intimidante e estressante se\n"
"voc� for um usu�rio inexperiente.\n"
"Esse ajudante simplifica o processo. Antes de come�ar, favor consultar o "
"manual\n"
"e n�o se apressar.\n"
"\n"
"\n"
"Voc� precisa de no m�nimo duas parti��es. Uma para o sistema operacional em "
"e a\n"
"outra para a mem�ria virtual (tamb�m chamada de Swap).\n"
"\n"
"\n"
"Se as parti��es j� tiverem sido definidas (por uma instala��o pr�via ou "
"atrav�s\n"
"de outra ferramenta particionadora), voc� precisa apenas escolher aquelas a "
"usar\n"
"para instalar o seu sistema Linux.\n"
"\n"
"\n"
"Se as parti��es n�o tiverem sido definidas ainda, voc� precisa cri�-las.\n"
"Para fazer isso, use o ajudante dispon�vel acima. Dependendo da\n"
"configura��o do seu disco r�gido, v�rias solu��es podem estar dispon�veis:\n"
"\n"
"* Usar parti��o existente: o ajudante detectado uma us mais parti��es Linux "
"j� existentes no seu disco r�gido. Se\n"
"  voc� quiser mant�-las, escolha essa op��o. \n"
"\n"
"\n"
"* Apagar todo o disco: se voc� quiser deletar todos os dados e todas as "
"parti��es existentes no disco r�gidos e substitu�-las pelo seu novo sistema "
"Mandrake Linux, voc� pode escolher essa op��o. Tenha cuidado com essa "
"op��o,\n"
"  voc� n�o pode reverter sua escolha ap�s a confirma��o.\n"
"\n"
"\n"
"* Usar o espa�o livre na parti��o Windows: se o Microsoft Windows estiver "
"instalado no seu disco r�gido e tomar\n"
"  todo o espa�o dispon�vel, voc� tem que criar espa�o livre para o Linux. "
"Para fazer isso, voc� pode deletar a sua\n"
"  parti��o Microsoft Windows e dados (ver \"Apagar todo o disco\" ou "
"solu��es \"Modo Expert\") ou redimensionar\n"
"  a sua parti��o Microsoft Windows. O redimensionamento pode ser feito sem a "
"perda de dados. Essa solu��o �\n"
"  recomendada se voc� quiser usar o Mandrake Linux e o Microsoft Windows no "
"mesmo computador.\n"
"\n"
"\n"
"  Antes de escolher essa solu��o, favor entender que o tamanho de sua "
"parti��o\n"
"  Microsoft Windows ser� menor do que agora. Isso significa que voc� ir�\n"
"ter menos espa�o livre no Microsoft\n"
"  Windows para guardar os seus dados ou instalar novos programas.\n"
"\n"
"\n"
"* Modo Expert: se voc� quiser particionar manualmente o seu disco r�gido, "
"escolha essa op��o. Tenha cuidado\n"
"  antes de escolhe-la. Ela � muito poderosa, mas muito perigosa. Voc� pode "
"perder todos os seus dados\n"
"  facilmente. Ent�o n�o escolha essa solu��o a n�o ser que saiba o que faz."

#: ../../lang.pm:1
#, c-format
msgid "Ukraine"
msgstr "Ucr�nia"

#: ../../standalone/drakbug:1
#, c-format
msgid "Application:"
msgstr "Aplica��o:"

#: ../../network/isdn.pm:1
#, c-format
msgid "External ISDN modem"
msgstr "Modem ISDN externo"

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, report check result by mail."
msgstr ""

#: ../../interactive/stdio.pm:1
#, c-format
msgid "Your choice? (default %s) "
msgstr "Sua escolha? (padr�o %s) "

#: ../../harddrake/sound.pm:1
#, c-format
msgid "Trouble shooting"
msgstr "Resolu��o de problemas"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
"Printing status:\n"
"%s\n"
"\n"
msgstr ""
"A pagina de teste foi enviada para a impressora,\n"
"Pode levar algum tempo antes da imrpess�o iniciar. \n"
"Estado da impress�o:\n"
"%s\n"
"\n"

#: ../../standalone/drakbackup:1
#, c-format
msgid "daily"
msgstr "todos os dias"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "and one unknown printer"
msgstr "e uma impressora desconhecida"

#: ../../lang.pm:1 ../../standalone/drakxtv:1
#, c-format
msgid "Ireland"
msgstr "Irlanda"

#: ../../standalone/drakbackup:1
#, c-format
msgid "         Restore Configuration       "
msgstr "         Restaurar Configura��o       "

#: ../../Xconfig/test.pm:1
#, c-format
msgid "Is this the correct setting?"
msgstr "Esta configura��o est� correta?"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"You will now set up your Internet/network connection. If you wish to\n"
"connect your computer to the Internet or to a local network, click \"%s\".\n"
"Mandrake Linux will attempt to autodetect network devices and modems. If\n"
"this detection fails, uncheck the \"%s\" box. You may also choose not to\n"
"configure the network, or to do it later, in which case clicking the \"%s\"\n"
"button will take you to the next step.\n"
"\n"
"When configuring your network, the available connections options are:\n"
"traditional modem, ISDN modem, ADSL connection, cable modem, and finally a\n"
"simple LAN connection (Ethernet).\n"
"\n"
"We will not detail each configuration option - just make sure that you have\n"
"all the parameters, such as IP address, default gateway, DNS servers, etc.\n"
"from your Internet Service Provider or system administrator.\n"
"\n"
"You can consult the ``Starter Guide'' chapter about Internet connections\n"
"for details about the configuration, or simply wait until your system is\n"
"installed and use the program described there to configure your connection."
msgstr ""
"Se voc� deseja conectar seu computador � internet, ou a uma rede local,\n"
"por favor escolha a op��o correta. Por favor, desligue seu dispositivo, "
"antes de fazer a escolha certa para deixar o DrakX detect�-lo "
"automaticamente.\n"
"\n"
"Mandrake Linux prop�e a configura��o de uma conex�o � internet durante a "
"instala��o\n"
"do sistema. As op��es dispon�veis s�o modem tradicional, conex�o ADSL, cable "
"modem,\n"
" e finalmente, LAN (Ethernet).\n"
"\n"
"Aqui n�s n�o iremos detalhar cada configura��o. Apenas certifique-se de que "
"voc� tem\n"
"todas as informa��es de seu Provedor de Internet ou administrador do "
"sistema.\n"
"\n"
"Voc� pode consultar o cap�tulo do manual sobre conex�es de internet para "
"mais detalhes\n"
"sobre a conex�o, ou simplesmente esperar at� que o sistema esteja instalado "
"e usar o\n"
"programa descrito para configurar sua conex�o.\n"
"\n"
"Se voc� deseja configurar a rede mais tarde, depois da instala��o ou se voc� "
"terminou\n"
"de configurar sua conex�o de rede, clique \"Cancelar\"."

#: ../../standalone/drakbackup:1
#, c-format
msgid "Wizard Configuration"
msgstr "Assistente de Configura��o"

#: ../../modules/interactive.pm:1
#, c-format
msgid "Autoprobe"
msgstr "Auto detectar"

#: ../../security/help.pm:1
#, c-format
msgid ""
"if set to yes, check for :\n"
"\n"
"- empty passwords,\n"
"\n"
"- no password in /etc/shadow\n"
"\n"
"- for users with the 0 id other than root."
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup system files..."
msgstr "C�pia de seguran�a dos arquivos de sistema..."

#: ../../any.pm:1
#, c-format
msgid "Can't use broadcast with no NIS domain"
msgstr "N�o pode usar broadcast sem dom�nio NIS"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Removing printer \"%s\"..."
msgstr "Removendo impressora \"%s\"..."

#: ../../security/l10n.pm:1
#, c-format
msgid "Shell history size"
msgstr ""

#: ../../standalone/drakfloppy:1
#, c-format
msgid "drakfloppy"
msgstr "drakfloppy"

#: ../../standalone/drakpxe:1
#, c-format
msgid ""
"Please indicate where the auto_install.cfg file is located.\n"
"\n"
"Leave it blank if you do not want to set up automatic installation mode.\n"
"\n"
msgstr ""
"Favor indicar onde o arquivo auto_install.cfg est� localizado.\n"
"\n"
"Deixe em branco se voc� n�o quiser configurar o modo de instala��o "
"autom�tica.\n"

#: ../../standalone/harddrake2:1
#, c-format
msgid "information level that can be obtained through the cpuid instruction"
msgstr "N�vel de informa��o que pode ser obtido atrav�s da instru��o cpuid"

#: ../../lang.pm:1
#, c-format
msgid "Peru"
msgstr "Peru"

#: ../../standalone/drakbackup:1
#, c-format
msgid " on device: %s"
msgstr "no dispositivo: %s"

#: ../../install_interactive.pm:1
#, c-format
msgid "Remove Windows(TM)"
msgstr "Remover Windows(TM)"

#: ../../services.pm:1
#, c-format
msgid "Starts the X Font Server (this is mandatory for XFree to run)."
msgstr ""
"Inicia o Servidor de Fontes X (� obrigat�rio para a execu��o do XFree)."

#: ../../standalone/drakTermServ:1
#, c-format
msgid ""
"Most of these values were extracted\n"
"from your running system.\n"
"You can modify as needed."
msgstr ""
"O maioria destes valores foram extra�dos\n"
"no seu sistema atual.\n"
"Pode mudar-los se for preciso."

#: ../../standalone/drakfont:1
#, c-format
msgid "Select the font file or directory and click on 'Add'"
msgstr "Escolha o arquivo ou diret�rio de fontes e clique em 'Adicionar'"

#: ../../lang.pm:1
#, c-format
msgid "Madagascar"
msgstr "Madagascar"

#: ../../standalone/drakbug:1
#, c-format
msgid "Urpmi"
msgstr "Urpmi"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Cron not available yet as non-root"
msgstr "Cron ainda n�o dispon�vel como n�o-root"

#: ../../install_steps_interactive.pm:1 ../../services.pm:1
#: ../../standalone/drakbackup:1
#, c-format
msgid "System"
msgstr "Sistema"

#: ../../any.pm:1 ../../help.pm:1
#, c-format
msgid "Do you want to use this feature?"
msgstr "Voc� quer usar este recurso ?"

#: ../../keyboard.pm:1
#, c-format
msgid "Arabic"
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"- Options:\n"
msgstr ""
"\n"
"- Op��es: \n"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Password required"
msgstr "Senha necess�ria"

#: ../../common.pm:1
#, c-format
msgid "%d minutes"
msgstr "%d minutos"

#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "Graphics card: %s"
msgstr "Placa Gr�fica: %s"

#: ../../standalone/drakbackup:1
#, c-format
msgid "WebDAV transfer failed!"
msgstr "Transfer�ncia WebDAV falhou!"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "XFree configuration"
msgstr "Configura��o do XFree"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Choose action"
msgstr "Escolher a��o"

#: ../../lang.pm:1
#, c-format
msgid "French Polynesia"
msgstr "Polin�sia Francesa"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"Usually, DrakX has no problems detecting the number of buttons on your\n"
"mouse. If it does, it assumes you have a two-button mouse and will\n"
"configure it for third-button emulation. The third-button mouse button of a\n"
"two-button mouse can be ``pressed'' by simultaneously clicking the left and\n"
"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
"a PS/2, serial or USB interface.\n"
"\n"
"If for some reason you wish to specify a different type of mouse, select it\n"
"from the list provided.\n"
"\n"
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct and that the mouse is working correctly. If the mouse is not\n"
"working well, press the space bar or [Return] key to cancel the test and to\n"
"go back to the list of choices.\n"
"\n"
"Wheel mice are occasionally not detected automatically, so you will need to\n"
"select your mouse from a list. Be sure to select the one corresponding to\n"
"the port that your mouse is attached to. After selecting a mouse and\n"
"pressing the \"%s\" button, a mouse image is displayed on-screen. Scroll\n"
"the mouse wheel to ensure that it is activated correctly. Once you see the\n"
"on-screen scroll wheel moving as you scroll your mouse wheel, test the\n"
"buttons and check that the mouse pointer moves on-screen as you move your\n"
"mouse."
msgstr ""
"Por default, o DrakX assume que voc� tem um mouse de dois bot�es, e ir� set�-"
"lo para\n"
"emula��o do terceiro bot�o. O DrakX saber� automaticamente se � PS/2, serial "
"ou USB.\n"
"\n"
"Se voc� deseja especificar um tipo diferente de mouse, selecione o tipo da "
"lista\n"
"\n"
"Se voc� escolher um mouse diferente do default voc� ser� apresentado a uma "
"tela de teste de mouse.\n"
"Use os bot�es e a roda para verificar se as configura��es est�o boas. Se o "
"mouse \n"
"n�o estiver funcionando bem, pressione a barra de espa�o ou RETORNO para "
"\"Cancelar\"\n"
"e escolher de novo."

#: ../../services.pm:1
#, c-format
msgid "Support the OKI 4w and compatible winprinters."
msgstr "Suporte para impressoras OKI-4w e compat�veis."

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Files or wildcards listed in a .backupignore file at the top of a directory "
"tree will not be backed up."
msgstr ""

#: ../../services.pm:1
#, c-format
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Iniciar o sistema de som ALSA (Arquitetura Avan�ada de Som Linux)"

#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
#: ../../modules/interactive.pm:1
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instalando driver para placa %s %s"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
"Voc� transferiu sua antiga impressora padr�o (\"%s\"), ela tamb�m deve ser a "
"impressora padr�o no novo sistema de impress�o %s?"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Enable Server"
msgstr "Ativar o Servidor"

#: ../../keyboard.pm:1
#, c-format
msgid "Ukrainian"
msgstr "Ucraniano"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
"O acesso a rede n�o est� ativo e n�o pode ser iniciado. Favor verificar sua "
"configura��o e seu hardware. Ent�o tente configurar sua impressora remota "
"novamente."

#: ../../standalone/drakperm:1
#, c-format
msgid "Enable \"%s\" to write the file"
msgstr ""

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Por favor insira o disquete de boot usado no drive %s"

#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Local network(s)"
msgstr "Rede(s) local(is)"

#: ../../help.pm:1
#, c-format
msgid "Remove Windows"
msgstr "Remover Windows"

#: ../../standalone/scannerdrake:1
#, c-format
msgid ""
"Your %s has been configured.\n"
"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
"applications menu."
msgstr ""

#: ../../harddrake/data.pm:1
#, c-format
msgid "Firewire controllers"
msgstr ""

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options that will be available at boot time will be displayed.\n"
"\n"
"If there are other operating systems installed on your machine they will\n"
"automatically be added to the boot menu. You can fine-tune the existing\n"
"options by clicking \"%s\" to create a new entry; selecting an entry and\n"
"clicking \"%s\" or \"%s\" to modify or remove it. \"%s\" validates your\n"
"changes.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone who goes to the console and reboots the machine. You can delete the\n"
"corresponding entries for the operating systems to remove them from the\n"
"bootloader menu, but you will need a boot disk in order to boot those other\n"
"operating systems!"
msgstr ""
"LILO (o Linux LOader) e Grub s�o gerenciadores de boot: ele s�o capazes de\n"
"de inicializar tanto no GNU/Linux quanto qualquer outro sistema\n"
"operacional instalado. Normalmente, esses sistemas s�o detectados e\n"
"instalados corretamente. Se esse n�o for o caso, voc� pode adicionar\n"
"entradas manualmente nessa tela. Cuidado ao escolher os par�metros "
"corretos.\n"
"\n"
"\n"
"Voc� pode tamb�m n�o dar acesso a esses sistemas operacionais para\n"
"ningu�m, na qual voc� pode deletar as entradas correspondentes. Mas nesse\n"
"caso, voc� precisar� de um disco de inicializa��o para poder utiliz�-los!"

#: ../../standalone/drakboot:1
#, c-format
msgid "System mode"
msgstr "Modo do sistema"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
"print queue name for the printer you wish to access and any applicable user "
"name and password."
msgstr ""
"Para imprimir em uma impressora NetWare, voc� precisar dar o nome do "
"servidor de impress�o NetWare (Nota! ele pode ser diferente do host TCP/IP!) "
"como tamb�m o nome da fila de impress�o para a impressora que voc� deseja "
"acessar como qualquer nome de usu�rio e senha aplic�vel."

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Netmask:"
msgstr "Netmask:"

#: ../../any.pm:1
#, c-format
msgid "Append"
msgstr "Append"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Atualizar lista de impressora (para exibir todas as impressoras remotas CUPS)"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"When this option is turned on, on every startup of CUPS it is automatically "
"made sure that\n"
"\n"
"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
"\n"
"- if /etc/cups/cupsd.conf is missing, it will be created\n"
"\n"
"- when printer information is broadcasted, it does not contain \"localhost\" "
"as the server name.\n"
"\n"
"If some of these measures lead to problems for you, turn this option off, "
"but then you have to take care of these points."
msgstr ""
"Quando esta op��o for ativada, em cada inicializa��o do CUPS, ele se "
"certificar� que\n"
"\n"
"- se LPD/LPRng estiver instalado, /etc/printcap n�o ser� sobregravado pelo "
"CUPS\n"
"\n"
"- se /etc/cups/cupsd.conf estiver ausente, ele ser� criado\n"
"\n"
"- quando a informa��o da impressora for transmitida, ela n�o conter� "
"\"localhost\" como nome do servidor.\n"
"\n"
"Se algumas dessas medidas lhe causarem qualquer problema, desative esta "
"op��o, por�m, voc� ter� que cuidar dos pontos acima citados."

#: ../../harddrake/sound.pm:1
#, c-format
msgid ""
"OSS (Open Sound System) was the first sound API. It's an OS independant "
"sound API (it's available on most unices systems) but it's a very basic and "
"limited API.\n"
"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
"which\n"
"supports quite a large range of ISA, USB and PCI cards.\n"
"\n"
"It also provides a much higher API than OSS.\n"
"\n"
"To use alsa, one can either use:\n"
"- the old compatibility OSS api\n"
"- the new ALSA api that provides many enhanced features but requires using "
"the ALSA library.\n"
msgstr ""
"OSS (Sistema de Som Aberto) era a primeira API. � uma API de som "
"independente do SO (funciona na maioria dos sistemas Unix) mas � uma API "
"muito b�sica e limitada.\n"
"Ainda por cima, todos os drivers OSS reinventam a roda.\n"
"\n"
"ALSA (Arquitetura Avan�ada de Som Linux) � uma arquitetura modular que "
"suporta um grande numero de placas ISA, USB e PCI.\n"
"\n"
"Tamb�m fornece uma API de n�vel superior a do OSS\n"
"\n"
"Para utilizar alsa, voc� pode escolher :\n"
"- ou o antigo api de compatibilidade OSS\n"
"- ou o novo api ALSA que fornece muitas fun��es mas exige a utiliza��o da "
"livraria ALSA.\n"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
"(this is meant for installing on another box).\n"
"\n"
"You may prefer to replay the installation.\n"
msgstr ""
"A auto instala��o pode ser totalmente automatizada se\n"
"voc� quiser, nesse caso, ela tomar� de conta do disco\n"
"r�gido!! (em vista a instala��o em outra m�quina).\n"
"\n"
"Voc� pode preferir repetir a instala��o.\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Impressora da rede \"%s\", porta %s"

#: ../../standalone/drakgw:1
#, c-format
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Favor escolher qual adaptador de rede ser� conectado � su Rede Local."

#: ../../standalone/drakbackup:1
#, c-format
msgid "OK to restore the other files."
msgstr "OK para restaurar os outros arquivos."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Please choose your keyboard layout."
msgstr "Favor escolher o layout do seu teclado."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer Device URI"
msgstr "Dispositivo de Impress�o URI"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Not erasable media!"
msgstr "M�dia n�o apag�vel!"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Terminal-based"
msgstr "Baseado em terminal"

#: ../../security/help.pm:1
#, c-format
msgid "Enable/Disable IP spoofing protection."
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Instalando um sistema de impress�o no n�vel de seguran�a %s"

#: ../../any.pm:1
#, c-format
msgid "The user name is too long"
msgstr "Nome de usu�rio muito grande"

#: ../../any.pm:1
#, c-format
msgid "Other OS (windows...)"
msgstr "Outros SO (windows...)"

#: ../../standalone/drakbackup:1
#, c-format
msgid "WebDAV remote site already in sync!"
msgstr "Site remoto WebDAV j� em sincronia!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Reading printer database..."
msgstr "Lendo banco de dados de impressoras..."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Generate auto install floppy"
msgstr "Criar disquete de auto instala��o"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
"\t\t nome do usu�rio : %s\n"
"\t\t no caminho : %s \n"

#: ../../lang.pm:1
#, c-format
msgid "Somalia"
msgstr "Som�lia"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "No open source driver"
msgstr "Nenhum driver com c�digo aberto"

#: ../../security/level.pm:1
#, c-format
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
msgstr ""
"Baseado no n�vel anterior, mas agora o sistema est� totalmente fechado.\n"
"As caracter�sticas de seguran�a est�o no m�ximo."

#: ../../lang.pm:1
#, c-format
msgid "Nicaragua"
msgstr "Nicar�gua"

#: ../../lang.pm:1
#, c-format
msgid "New Caledonia"
msgstr "Nova Caled�nia"

#: ../../network/isdn.pm:1
#, c-format
msgid "European protocol (EDSS1)"
msgstr "Protocolo Europeu (EDSS1)"

#: ../../any.pm:1
#, c-format
msgid "Video mode"
msgstr "Modo de V�deo"

#: ../../lang.pm:1
#, c-format
msgid "Oman"
msgstr "Oman"

#: ../../standalone/logdrake:1
#, c-format
msgid "Please enter your email address below "
msgstr "Favor digitar abaixo o seu endere�o de email "

#: ../../standalone/net_monitor:1
#, c-format
msgid "Network Monitoring"
msgstr "Monitoramento da Rede"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "SunOS"
msgstr "SunOS"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "New size in MB: "
msgstr "Novo tamanho em MB: "

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipo da tabela de parti��o: %s\n"

#: ../../any.pm:1
#, c-format
msgid "Authentication Windows Domain"
msgstr "Autentica��o em Dom�nio Windows"

#: ../../keyboard.pm:1
#, c-format
msgid "US keyboard"
msgstr "Americano (US)"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Buttons emulation"
msgstr "Emula��o dos bot�es"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ", impressora da rede \"%s\", porta %s"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
"\n"
"Drakbackup ativado via fita:\n"
"\n"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
" problema de conex�o com FTP. N�o foi poss�vel enviar sua c�pia de seguran�a "
"pelo FTP.\n"

#: ../../standalone/net_monitor:1
#, c-format
msgid "Sending Speed:"
msgstr "Velocidade de envio:"

#: ../../harddrake/sound.pm:1
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
"\n"
"\n"
"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
"by default\n"
"\n"
"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\n"
"currently uses\n"
"\n"
"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
"loaded or not\n"
"\n"
"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
"tell you if sound and alsa services're configured to be run on\n"
"initlevel 3\n"
"\n"
"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
msgstr ""
"O teste cl�ssico de som � executar os seguintes comandos:\n"
"\n"
"\n"
"- \"lscpidrake -v | fgrep AUDIO\" lhe dir� qual driver sua placa \n"
"usa por padr�o\n"
"\n"
"- \"grep sound-slot /etc/modules.conf\" lhe dir� qual driver est� sendo\n"
"usado no momento\n"
"\n"
"- \"/sbin/lsmod\" lhe permitir� verificar se o seu m�dulo (driver) \n"
"esta carregado ou n�o\n"
"- \"/sbin/chkconfig --list sound\" e \"/sbin/chkconfig --list alsa\" lhe\n"
"dir� se seu som e os servi�os alsa est�o configurados para\n"
"executar no initlevel 3\n"
"\n"
"- \"aumix -q\" lhe dir� se o volume dom som est� mudo ou n�o\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" lhe dir� qual programa usa a placa de som.\n"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Halt bug"
msgstr "Halt bug"

#: ../../standalone/logdrake:1
#, c-format
msgid "Mail alert configuration"
msgstr "Configura��o do alerta do correio"

#: ../../lang.pm:1
#, c-format
msgid "Tokelau"
msgstr "Tokelau"

#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "Matching"
msgstr "confere"

#: ../../keyboard.pm:1
#, c-format
msgid "Bosnian"
msgstr "Estoniano"

#: ../../standalone/drakbug:1
#, c-format
msgid "Release: "
msgstr "Vers�o: "

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Connection speed"
msgstr "Velocidade da conex�o"

#: ../../lang.pm:1
#, c-format
msgid "Namibia"
msgstr "Nam�bia"

#: ../../services.pm:1
#, c-format
msgid "Database Server"
msgstr "Servidor de Bases de dados"

#: ../../standalone/harddrake2:1
#, c-format
msgid "special capacities of the driver (burning ability and or DVD support)"
msgstr ""

#: ../../raid.pm:1
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "N�o posso adicionar parti��o ao RAID _formatado_ md%d"

#: ../../Xconfig/card.pm:1
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
"Seu placa suporta acelera��o hardware 3D mas apenas com o XFree %s,\n"
"NOTE QUE O SUPORTE � EXPERIMENTAL E PODE TRAVAR O SEU COMPUTADOR.\n"
"Sua placa � suportada pelo XFree %s que pode ter melhor suporte 2D."

#: ../../standalone/draksec:1
#, c-format
msgid "Please wait, setting security options..."
msgstr "Por favor aguarde, configura��o das op��es de seguran�a..."

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr "Desconhecido | CPH05X (bt878) [v�rios fabricantes]"

#: ../../standalone/drakboot:1
#, c-format
msgid "Launch the graphical environment when your system starts"
msgstr "Executar o sistema X-Window na inicializa��o"

#: ../../standalone/drakbackup:1
#, c-format
msgid "hourly"
msgstr "todas as horas"

#: ../../keyboard.pm:1
#, c-format
msgid "Right Shift key"
msgstr "Tecla Shift da direita"

#: ../../standalone/drakbackup:1
#, c-format
msgid "          Successfuly Restored on %s       "
msgstr "          Restaura��o com sucesso em %s       "

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Making printer port available for CUPS..."
msgstr "Fazendo porta da impressora dispon�vel para o CUPS..."

#: ../../lang.pm:1
#, c-format
msgid "Antigua and Barbuda"
msgstr "Antigua e Barbuda"

#: ../../standalone/drakTermServ:1
#, c-format
msgid ""
"!!! Indicates the password in the system database is different than\n"
" the one in the Terminal Server database.\n"
"Delete/re-add the user to the Terminal Server to enable login."
msgstr ""
"!!! Indica que a senha no banco de dados do sistema � diferente da\n"
" senha no banco de dados do Terminal Server.\n"
"Delete/re-adicione o usu�rio ao Servidor de Terminal para permitir o login."

#: ../../keyboard.pm:1
#, c-format
msgid "Spanish"
msgstr "Espanhol"

#: ../../services.pm:1
#, c-format
msgid "Start"
msgstr "Iniciar"

#: ../../security/l10n.pm:1
#, c-format
msgid "Direct root login"
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Configuring applications..."
msgstr "Configurando aplica��es..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"Please plug in and turn on all printers connected to this machine so that it/"
"they can be auto-detected. Also your network printer(s) and your Windows "
"machines must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
"detection of only the printers connected to this machine. So turn off the "
"auto-detection of network and/or Windows-hosted printers when you don't need "
"it.\n"
"\n"
" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
"to set up your printer(s) now."
msgstr ""
"\n"
"Bem-vindo ao Ajudante de Configura��o de Impressora\n"
"\n"
"Este ajudante lhe auxiliar� a instalar sua(s) impressora(s) conectada(s) a "
"este computador, conectadas diretamente � rede ou a um computador Windows "
"remoto.\n"
"\n"
"Se voc� possuir alguma impressora conectada a este computador, as ligue para "
"que possam ser autodetectadas. As impressoras conectadas � rede e aos seus "
"computadores remotos Windows tamb�m devem ser conectadas e ligadas.\n"
"\n"
"Note que a auto-detec��o de impressoras em rede demora mais que a auto-"
"detec��o de impressoras conectas apenas a esta m�quina. Ent�o desligue a "
"auto-detec��o de impressoras em rede e/ou em m�quinas Windows caso voc� n�o "
"precise.\n"
"\n"
"Cliquem em \"Pr�ximo\" quando estiver pronto, e em \"Cancelar\" se voc� n�o "
"quiser configurar sua(s) impressora(s) agora."

#: ../../network/netconnect.pm:1
#, c-format
msgid "Normal modem connection"
msgstr "Conex�o normal via modem"

#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
#, c-format
msgid "File Selection"
msgstr "Sele��o de arquivos"

#: ../../help.pm:1 ../../printer/cups.pm:1 ../../printer/data.pm:1
#, c-format
msgid "CUPS"
msgstr "CUPS"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Erase tape before backup"
msgstr "Use a fita para c�pia de seguran�a"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Run config tool"
msgstr "Executar ferramenta de configura��o"

#: ../../any.pm:1
#, c-format
msgid "Bootloader installation"
msgstr "Instala��o do gerenciador de inicializa��o"

#: ../../install_interactive.pm:1
#, c-format
msgid "Root partition size in MB: "
msgstr "Tamanho da parti��o root em MB:"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "This is a mandatory package, it can't be unselected"
msgstr "Esse � um pacote obrigat�rio, n�o pode ser deselecionado"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Etherboot ISO image is %s"
msgstr "A imagem ISO Etherboot � %s"

#: ../../services.pm:1
#, c-format
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
msgstr ""
"named (BIND) � um Servidor de Nome de Dom�nio (DNS) que � usado para "
"transformar nome de hosts para endere�os IP."

#: ../../lang.pm:1
#, c-format
msgid "Saint Lucia"
msgstr "Santa Lucia"

#: ../../standalone/drakconnect:1
#, c-format
msgid "Disconnect..."
msgstr "Desconectar..."

#: ../../standalone/drakbug:1
#, c-format
msgid "Report"
msgstr "Enviar"

#: ../../lang.pm:1
#, c-format
msgid "Palau"
msgstr "Palau"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "level"
msgstr "n�vel"

#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""
"Todos os problemas v�o ser seguidos por um �nico perito qualificado da "
"MandrakeSoft."

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Package Group Selection"
msgstr "Sele��o de Grupo de Pacotes"

#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid ""
"Allow local hardware\n"
"configuration."
msgstr "Configura��o autom�tica"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr "Restaura atrav�s do Procolo de Rede: %s"

#: ../../modules/interactive.pm:1
#, c-format
msgid "You can configure each parameter of the module here."
msgstr "Voc� pode configurarar cada par�metro do m�dulo aqui."

#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "Choose the resolution and the color depth"
msgstr "Escolha a resolu��o e n�mero de cores"

#: ../../standalone/mousedrake:1
#, c-format
msgid "Emulate third button?"
msgstr "Deseja emula��o de 3 bot�es?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
"Voc� n�o pode criar uma nova parti��o\n"
"(desde que tenha alcan�ado o n�mero m�ximo de parti��es prim�rias).\n"
"Remova primeiramente a parti��o prim�ria e crie uma parti��o extendida."

#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Mount"
msgstr "Montar"

#: ../../standalone/drakautoinst:1
#, c-format
msgid "Creating auto install floppy"
msgstr "Criando disquete de auto instala��o"

#: ../../steps.pm:1
#, c-format
msgid "Install updates"
msgstr "Instalar atualiza��es"

#: ../../standalone/draksplash:1
#, c-format
msgid "text box height"
msgstr "altura da caixa de texto"

#: ../../standalone/drakconnect:1
#, c-format
msgid "State"
msgstr "Estado"

#: ../../standalone/drakfloppy:1
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Certifique-se de que h� um disco no dispositivo %s"

#: ../../any.pm:1
#, c-format
msgid "Enable multiple profiles"
msgstr "Permitir v�rios perfis"

#: ../../fs.pm:1
#, c-format
msgid "Do not interpret character or block special devices on the file system."
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Estas op��es podem fazer e restaurar c�pias de seguran�a de todos os seus "
"arquivos no seu diret�rio /etc \n"

#: ../../printer/main.pm:1
#, c-format
msgid "Local printer"
msgstr "Impressora local"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Files Restored..."
msgstr "Arquivos Restaurados..."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Package selection"
msgstr "Sele��o de Pacotes"

#: ../../lang.pm:1
#, c-format
msgid "Mauritania"
msgstr "Maurit�nia"

#: ../../standalone/drakgw:1
#, c-format
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the Network that you use "
"for your local network; I will not reconfigure it and I will not touch your "
"DHCP server configuration.\n"
"\n"
"The default DNS entry is the Caching Nameserver configured on the firewall. "
"You can replace that with your ISP DNS IP, for example.\n"
"\t\t      \n"
"Otherwise, I can reconfigure your interface and (re)configure a DHCP server "
"for you.\n"
"\n"
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
"printer: /dev/usb/lp1, ...)."
msgstr ""
"Nenhuma impressora local encontrada! Para uma instala��o manual, entre com o "
"nome do dispositivo (Porta paralela: /dev/lp0, /dev/lp1,..., equivalente a "
"LPT1, LPT2,...., 1� Impressora USB: /dev/usb/lp0, 2� impressora USB /dev/usb/"
"lp1.   )"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "All primary partitions are used"
msgstr "Todas as parti��es prim�rias est�o sendo usadas"

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
"Quando isso terminar, n�s recomendados voc� a reiniciar o seu\n"
"ambiente X para evitar o problema da mudan�a do nome do host."

#: ../../services.pm:1
#, c-format
msgid "Automatic detection and configuration of hardware at boot."
msgstr "Detec��o e configura��o autom�tica do hardware na inicializa��o."

#: ../../standalone/drakpxe:1
#, c-format
msgid "Installation Server Configuration"
msgstr "Configura��o do Servidor de Instala��o"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Configuring IDE"
msgstr "Configurando IDE"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Network functionality not configured"
msgstr "Conex�o � rede n�o configurada"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Configure module"
msgstr "Configurar m�dulo"

#: ../../lang.pm:1
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Ilhas Cocos"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "Voc� precisar� reiniciar antes que as modifica��es tenham efeito"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Provider phone number"
msgstr "N�mero do telefone do provedor"

#: ../../printer/main.pm:1
#, c-format
msgid "Host %s"
msgstr "Host %s"

#: ../../lang.pm:1
#, c-format
msgid "Armenia"
msgstr "Arm�nia"

#: ../../lang.pm:1
#, c-format
msgid "Fiji"
msgstr "Ilhas Fiji"

#: ../../any.pm:1
#, c-format
msgid "Second floppy drive"
msgstr "Segundo drive de disquete"

#: ../../standalone/harddrake2:1
#, c-format
msgid "About Harddrake"
msgstr "Sobre Harddrake"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Drive capacity"
msgstr ""

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
msgstr ""
"Insira um disquete no drive\n"
"Todos os dados no disquete ser�o perdidos"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Size: %s"
msgstr "Tamanho: %s"

#: ../../keyboard.pm:1
#, c-format
msgid "Control and Shift keys simultaneously"
msgstr "Teclas Control e Shift simultaneamente"

#: ../../standalone/harddrake2:1
#, c-format
msgid "secondary"
msgstr "secund�rio"

#: ../../standalone/drakbackup:1
#, c-format
msgid "View Backup Configuration."
msgstr "Ver a configura��o da c�pia de seguran�a"

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, report check result to syslog."
msgstr ""

#. -PO: keep this short or else the buttons will not fit in the window
#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "No password"
msgstr "Nenhuma senha"

#: ../../lang.pm:1
#, c-format
msgid "Nigeria"
msgstr "Nig�ria"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "%s: %s requires hostname...\n"
msgstr ""

#: ../../install_interactive.pm:1
#, c-format
msgid "There is no existing partition to use"
msgstr "N�o existe nenhuma tabela de parti��o para usar"

#: ../../standalone/scannerdrake:1
#, c-format
msgid ""
"The following scanners\n"
"\n"
"%s\n"
"are available on your system.\n"
msgstr ""
"Os seguintes scanners\n"
"\n"
"%s\n"
"Est�o dispon�veis em seu sistema.\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
"of the printer and optionally the port number (default is 9100). On HP "
"JetDirect servers the port number is usually 9100, on other servers it can "
"vary. See the manual of your hardware."
msgstr ""
"Para imprimir numa impressora TCP ou 'socket', � necess�rio indicar o nome "
"do servidor ou o IP da impressora e a n�mero da porta (opcional). Nos "
"servidores HP JetDirect a porta � normalmente 9100, noutros servidores pode "
"ser diferente. Consulte o manual do seu esquipamento."

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Hard drive information"
msgstr "Informa��o de discos r�gidos"

#: ../../keyboard.pm:1
#, c-format
msgid "Russian"
msgstr "Russo"

#: ../../lang.pm:1
#, c-format
msgid "Jordan"
msgstr "Jord�nia"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Hide files"
msgstr "Esconder arquivos"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Auto-detect printers connected to this machine"
msgstr "Auto detectar impressoras conectadas a esta m�quina"

#: ../../standalone/drakxtv:1
#, c-format
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
"If you do have a TV card but DrakX has neither detected it (no bttv nor "
"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
"\n"
"\n"
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
"XawTV n�o est� instalado!\n"
"\n"
"\n"
"Se voc� possui uma placa de TV mas o DrakX n�o a detectou (nenhum m�dulo "
"bttv\n"
"ou saa7123 em \"/etc/modules\"), nem instalou o xawtv, favor enviar\n"
"o resultado de \"lspcidrake -v -f\" para \"install\\@mandrakesoft.com\"\n"
"com o t�tulo \"undetected TV card\".\n"
"\n"
"\n"
"Voc� pode instal�-lo com o comando \"urpmi xawtv\" em um console, como root."

#: ../../any.pm:1
#, c-format
msgid "Sorry, no floppy drive available"
msgstr "Desculpe, nenhum drive de disquete dispon�vel"

#: ../../lang.pm:1
#, c-format
msgid "Bolivia"
msgstr "Bol�via"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
"protocol and set up printing from this machine with the \"%s\" connection "
"type in Printerdrake.\n"
"\n"
msgstr ""
"Configure seu servidos Windows para deixar a impressora dispon�vel atrav�s "
"do protocolo IPP e configure a impress�o nesta m�quina com a conex�o tipo \"%"
"s\" no Printerdrake.\n"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Bad package"
msgstr "Pacote defeituoso"

#: ../../share/advertising/07-server.pl:1
#, c-format
msgid ""
"Transform your computer into a powerful Linux server: Web server, mail, "
"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
"Transforme a sua m�quina num poderoso servidor Linux em alguns cliques do "
"mouse : servidor Web, de correio, firewall, roteados, servidor de arquivos e "
"de impress�o, ..."

#: ../../security/level.pm:1
#, c-format
msgid "DrakSec Basic Options"
msgstr "Draksec Op��es B�sicas"

#: ../../standalone/draksound:1
#, c-format
msgid ""
"\n"
"\n"
"\n"
"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
"program.  Just type \"sndconfig\" in a console."
msgstr ""
"\n"
"\n"
"\n"
"Nota: se voc� possuir uma placa de som ISA PnP, voc� ter� que usar o "
"programa sndconfig.  Apenas escreva \"sndconfig\" em um console."

#: ../../lang.pm:1
#, c-format
msgid "Romania"
msgstr "Rom�nia"

#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "Group"
msgstr "grupo"

#: ../../standalone/scannerdrake:1
#, c-format
msgid "choose device"
msgstr "escolha o dispositivo"

#: ../../lang.pm:1
#, c-format
msgid "Canada"
msgstr "Canad�"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Remove from LVM"
msgstr "Remover do LVM"

#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Timezone"
msgstr "Fuso hor�rio"

#: ../../keyboard.pm:1
#, c-format
msgid "German"
msgstr "Alem�o"

#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../interactive.pm:1
#: ../../my_gtk.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Next ->"
msgstr "Pr�ximo ->"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Turning on this allows to print plain text files in japanese language. Only "
"use this function if you really want to print text in japanese, if it is "
"activated you cannot print accentuated characters in latin fonts any more "
"and you will not be able to adjust the margins, the character size, etc. "
"This setting only affects printers defined on this machine. If you want to "
"print japanese text on a printer set up on a remote machine, you have to "
"activate this function on that remote machine."
msgstr ""

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"\n"
"Chances are, this partition is\n"
"a Driver partition. You should\n"
"probably leave it alone.\n"
msgstr ""
"\n"
"� prov�vel que esta parti��o seja uma\n"
"parti��o Driver, voc� provavelmente\n"
"n�o deveria mexer nela.\n"

#: ../../lang.pm:1
#, c-format
msgid "Guinea-Bissau"
msgstr "Guin�-Bissau"

#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Horizontal refresh rate"
msgstr "Taxa de atualiza��o horizontal"

#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "Edit"
msgstr "Sair"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
"N�o posso desmarcar o ponto de montagem enquanto a parti��o for\n"
"usada para loop back. Remova o loopback primeiro"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network is accessable after booting your "
"system and correct the configuration using the Mandrake Control Center, "
"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
"printer, also using the Mandrake Control Center, section \"Hardware\"/"
"\"Printer\""
msgstr ""
"A configura��o de rede feita durante a instala��o n�o p�de ser iniciada "
"agora. Favor verificar se a rede est� acess�vel ap�s a inicializa��o do "
"sistema e corrija a configura��o utilizando o Centro de Controle Mandrake, "
"se��o \"Rede & Internet\"/\"Conex�o\", e posteriormente configure a "
"impressora, tamb�m atrav�s do Centro de Controle Mandrake, se��o \"Hardware"
"\"/\"Impressora\""

#: ../../harddrake/data.pm:1
#, c-format
msgid "USB controllers"
msgstr ""

#: ../../Xconfig/various.pm:1
#, c-format
msgid "What norm is your TV using?"
msgstr "Qual � a norma que sua TV est� utilizando?"

#: ../../standalone/drakconnect:1
#, c-format
msgid "Type:"
msgstr "Tipo:"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Share name"
msgstr "Nome compartilhado"

#: ../../standalone/drakgw:1
#, c-format
msgid "enable"
msgstr "ativar"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Contactando o site da Mandrake Linux para pegar a lista de mirrors "
"(espenhos) dispon�veis..."

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
"\n"
"%s"
msgstr ""
"Um problema ocorreu reiniciando a rede: \n"
"\n"
"%s"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Remove the loopback file?"
msgstr "Remove o arquivo de loopback?"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Selected size is larger than available space"
msgstr "O tamanho escolhido � maior que o espa�o dispon�vel"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "NCP server name missing!"
msgstr "Nome do servidor NCP est� ausente!"

#: ../../any.pm:1
#, c-format
msgid "Please choose your country."
msgstr "Por favor escolha seu pa�s."

#: ../../standalone/drakbackup:1
#, c-format
msgid "Hard Disk Backup files..."
msgstr "C�pia de seguran�a dos arquivos no disco r�gido..."

#: ../../keyboard.pm:1
#, c-format
msgid "Laotian"
msgstr "Laociano"

#: ../../lang.pm:1
#, c-format
msgid "Samoa"
msgstr "Samoa"

#: ../../services.pm:1
#, c-format
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
msgstr ""
"O protcolo rstat permite que us�rios da rede recebam\n"
"informa��es sobre a perfomance de qualquer m�quina na rede."

#: ../../standalone/scannerdrake:1
#, c-format
msgid "Re-generating list of configured scanners ..."
msgstr ""

#: ../../harddrake/data.pm:1
#, c-format
msgid "Scanner"
msgstr "Scanner"

#: ../../Xconfig/test.pm:1
#, c-format
msgid "Warning: testing this graphic card may freeze your computer"
msgstr "Aten��o: testar essa placa de v�deo pode travar o seu computador"

#: ../../standalone/drakconnect:1
#, c-format
msgid "Bad Ip"
msgstr "IP inv�lido"

#: ../../any.pm:1
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"O nome do usu�rio deve conter apenas letras min�sculas, n�meros `-' e `_'"

#: ../../standalone/drakbug:1
#, c-format
msgid "Menudrake"
msgstr "Menudrake"

#: ../../security/level.pm:1
#, c-format
msgid "Welcome To Crackers"
msgstr "Bem-vindo � Crackers"

#: ../../modules/interactive.pm:1
#, c-format
msgid "Module options:"
msgstr "Op��es do m�dulo:"

#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid "Secure your networks with the Multi Network Firewall"
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Go on without configuring the network"
msgstr "Continuar sem configurar a rede"

#: ../../network/isdn.pm:1
#, c-format
msgid "Abort"
msgstr "Abortar"

#: ../../standalone/drakbackup:1
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""

#: ../../standalone/scannerdrake:1
#, c-format
msgid "Usage of remote scanners"
msgstr "Usar scanners remotos"

#: ../../standalone/drakbackup:1
#, c-format
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"

#: ../../install_interactive.pm:1
#, c-format
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
"installation."
msgstr ""
"Sua parti��o Windows est� muito fragmentada, favor rodar primeiro o "
"``defrag''"

#: ../../keyboard.pm:1
#, c-format
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Noruegu�s)"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Hard Disk Backup Progress..."
msgstr "Progresso da c�pia de seguran�a do disco r�gido..."

#: ../../standalone/drakfloppy:1
#, c-format
msgid "Unable to fork: %s"
msgstr "Incapaz de dividir: %s"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Type: "
msgstr "Tipo: "

#: ../../standalone/drakTermServ:1
#, c-format
msgid "<-- Edit Client"
msgstr "<-- Editar Cliente"

#: ../../standalone/drakfont:1
#, c-format
msgid "no fonts found"
msgstr "nenhuma fonte encontrada"

#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#: ../../harddrake/data.pm:1
#, c-format
msgid "Mouse"
msgstr "Mouse"

#: ../../bootloader.pm:1
#, c-format
msgid "not enough room in /boot"
msgstr "sem espa�o suficiente em /boot"

#: ../../lang.pm:1
#, c-format
msgid "Liechtenstein"
msgstr "Liechtenstein"

#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
msgid "Host name"
msgstr "Host name (nome do host)"

#: ../../standalone/draksplash:1
#, c-format
msgid "the color of the progress bar"
msgstr "a cor da barra de progresso"

#: ../../standalone/drakfont:1
#, c-format
msgid "Suppress Fonts Files"
msgstr "Apagar os Arquivos de Fontes"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Add to RAID"
msgstr "Adicionar ao RAID"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"You can add additional entries in yaboot for other operating systems,\n"
"alternate kernels, or for an emergency boot image.\n"
"\n"
"For other OSs, the entry consists only of a label and the \"root\"\n"
"partition.\n"
"\n"
"For Linux, there are a few possible options:\n"
"\n"
" * Label: this is the name you will have to type at the yaboot prompt to\n"
"select this boot option.\n"
"\n"
" * Image: this is the name of the kernel to boot. Typically, vmlinux or a\n"
"variation of vmlinux with an extension.\n"
"\n"
" * Root: the \"root\" device or ``/'' for your Linux installation.\n"
"\n"
" * Append: on Apple hardware, the kernel append option is often used to\n"
"assist in initializing video hardware, or to enable keyboard mouse button\n"
"emulation for the missing 2nd and 3rd mouse buttons on a stock Apple mouse.\n"
"The following are some examples:\n"
"\n"
"         video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
"         video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
" * Initrd: this option can be used either to load initial modules before\n"
"the boot device is available, or to load a ramdisk image for an emergency\n"
"boot situation.\n"
"\n"
" * Initrd-size: the default ramdisk size is generally 4096 Kbytes. If you\n"
"need to allocate a large ramdisk, this option can be used to specify a\n"
"ramdisk larger than the default.\n"
"\n"
" * Read-write: normally the \"root\" partition is initially mounted as\n"
"read-only, to allow a file system check before the system becomes ``live''.\n"
"You can override the default with this option.\n"
"\n"
" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
"problematic, you can select this option to boot in ``novideo'' mode, with\n"
"native frame buffer support.\n"
"\n"
" * Default: selects this entry as being the default Linux selection,\n"
"selectable by pressing ENTER at the yaboot prompt. This entry will also be\n"
"highlighted with a ``*'' if you press [Tab] to see the boot selections."
msgstr ""
"Voc� pode adicionar entradas adicionais no yaboot, tanto para outros "
"sistemas operacionais,\n"
"kernels alternativos, ou imagem de boot de emerg�ncia.\n"
"\n"
"\n"
"Para outros SO - a entrada consiste apenas de um nome e da parti��o root.\n"
"\n"
"\n"
"Para Linux, existem algumas op��es poss�veis: \n"
"\n"
"\n"
"  - Label: Isso � simplesmente o nome que ser� necess�rio pare entrar no "
"sistema \n"
"atrav�s do yaboot.\n"
"\n"
"\n"
"  - Image: Isso seria o nome do kernel a ser usado. Tipicamente vmlinux ou "
"uma\n"
"varia��o de vmlinux com uma extens�o.\n"
"\n"
"\n"
"  - Root: O dispositivo padr�o ou '/' da sua instala��o Linux.\n"
"\n"
"\n"
"  \n"
"  - Append: No hardware Apple, a op��o append (anexar) � normalmente usada "
"para\n"
"auxiliar na inicializando do hardware de v�deo, ou para permitir a emula��o "
"do bot�o\n"
"do mouse pelo teclado, devido a falta do segundo e terceiro bot�o no mouse "
"Apple.\n"
"A seguir est�o alguns exemplos:\n"
"\t v�deo=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
"hda=autotune\n"
"\n"
"\t v�deo=atyfb:vmode:12,cmode:24 adb_buttons=103,111 \n"
"\n"
"\n"
" \n"
"  - Initrd: Essa op��o pode ser usada tanto para carregar m�dulos adicionais "
"antes que\n"
"o dispositivo de boot esteja dispon�vel, ou para carregar uma imagem ramdisk "
"de emerg�ncia.\n"
"\n"
"\n"
"  - Initrd-size: O tamanho padr�o do ramdisk � 4096 bytes. Se voc� precisar "
"alocar\n"
"um ramdisk maior, essa op��o pode ser usada.\n"
"\n"
"\n"
"  - Read-write: Normalmente a parti��o 'root' � inicialmente carregada como "
"apenas-leitura,\n"
"para permitir uma checagem do sistema antes de ativ�-lo. Voc� pode modificar "
"essa op��o aqui.\n"
"\n"
"\n"
"  - NoVideo: Se o hardware de v�deo Apple mostrar ser excepcionalmente "
"problem�tica, voc� pode\n"
"selecionar esse op��o para entrar no modo 'semv�deo', com suporte nativo ao "
"framebuffer.\n"
"\n"
"\n"
"  - Default: Selecione essa entrada como sendo a op��o padr�o Linux, "
"bastando pressionar\n"
"ENTER no prompt do yaboot. Essa entrada tamb�m aparecer� marcada com um '*', "
"se voc�\n"
"pressionar TAB para ver as op��es de boot."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
"A impressora \"%s\" foi adicionada com sucesso ao Star Office/OpenOffice/"
"GIMP."

#: ../../standalone/drakTermServ:1
#, c-format
msgid "No floppy drive available!"
msgstr "Nenhum drive de disquete dispon�vel"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
"list shown below or click on the \"Print option list\" button.%s%s%s\n"
"\n"
msgstr ""
"Para saber sobre as op��es dispon�veis para a impressora atual, leia a lista "
"abaixo ou clique no bot�o \"Lista de op��es da impressora\".%s%s%s\n"
"\n"

#: ../../lang.pm:1
#, c-format
msgid "Saudi Arabia"
msgstr "Ar�bia Saudita"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Continue anyway?"
msgstr "Continuar mesmo assim?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
"Se sua impressora n�o est� na lista, escolha uma compat�vel (ver manual da "
"impressora) ou uma similar."

#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#: ../../harddrake/data.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer"
msgstr "Impressora"

#: ../../services.pm:1
#, c-format
msgid "Internet"
msgstr "Internet"

#: ../../standalone/service_harddrake:1
#, c-format
msgid "Some devices were added:\n"
msgstr "Alguns dispositivos foram adicionados:\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s cilindros, %s cabe�as, %s setores\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Imprimindo na impressora \"%s\""

#: ../../standalone/drakTermServ:1
#, c-format
msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
msgstr ""
"/etc/hosts.allow e /etc/hosts.deny j� est�o configurados - n�o ser� alterado"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Restore From Tape"
msgstr "Restaurar da Fita"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Choose the profile to configure"
msgstr "Escolha o perfil a configurar:"

#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
msgid ""
"\n"
"\n"
"Enter a Zeroconf host name without any dot if you don't\n"
"want to use the default host name."
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup Now from configuration file"
msgstr "Fazer uma c�pia de seguran�a agora a partir do arquivo de configura��o"

#: ../../fsedit.pm:1
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "O ponto de montagem deve conter apenas caracteres alfanum�ricos"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Restarting printing system..."
msgstr "Reiniciando o sistema de impress�o..."

#: ../../modules/interactive.pm:1
#, c-format
msgid "See hardware info"
msgstr "Ver informa��o do hardware"

#: ../../any.pm:1
#, c-format
msgid "First sector of boot partition"
msgstr "Primeiro setor da parti��o de boot"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer manufacturer, model"
msgstr "Fabricante da impressora, modelo"

#: ../../printer/data.pm:1
#, c-format
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"

#: ../../standalone.pm:1
#, c-format
msgid ""
"[OPTIONS]...\n"
"Mandrake Terminal Server Configurator\n"
"--enable         : enable MTS\n"
"--disable        : disable MTS\n"
"--start          : start MTS\n"
"--stop           : stop MTS\n"
"--adduser        : add an existing system user to MTS (requires username)\n"
"--deluser        : delete an existing system user from MTS (requires "
"username)\n"
"--addclient      : add a client machine to MTS (requires MAC address, IP, "
"nbi image name)\n"
"--delclient      : delete a client machine from MTS (requires MAC address, "
"IP, nbi image name)"
msgstr ""
"[OP��ES]...\n"
"Configurador do Mandrake Terminal Server\n"
"--enable         : ativa MTS\n"
"--disable        : desativa MTS\n"
"--start          : inicia MTS\n"
"--stop           : para MTS\n"
"--adduser        : adicionar um usu�rio existente ao MTS (requer nome de "
"usu�rio)\n"
"--deluser        : deleta um usu�rio existente do MTS (requer nome de "
"usu�rio)\n"
"--addclient      : adiciona uma m�quina cliente ao MTS (requer endere�o MAC, "
"IP, nome da imagem nbi)\n"
"--delclient      : deleta uma m�quina cliente do MTS (requer endere�o MAC, "
"IP, nome da imagem nbi)"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Subnet Mask:"
msgstr "M�scara de Sub Rede:"

#: ../../standalone/drakboot:1
#, c-format
msgid "LiLo and Bootsplash themes installation successfull"
msgstr "LiLo e temas BootSplash instalados com sucesso"

#: ../../security/l10n.pm:1
#, c-format
msgid "Set password expiration and account inactivation delays"
msgstr ""

#: ../../Xconfig/monitor.pm:1
#, c-format
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
"at which the whole screen is refreshed, and most importantly the horizontal\n"
"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
"range\n"
"that is beyond the capabilities of your monitor: you may damage your "
"monitor.\n"
" If in doubt, choose a conservative setting."
msgstr ""
"Dois par�metros cr�ticos s�o a taxa de atualiza��o vertical, que � a taxa\n"
"em que toda a tela � atualizada, e principalmente a taxa de sincroniza��o\n"
"horizontal, que � a taxa em que scanlines s�o mostradas.\n"
"\n"
"� MUITO IMPORTANTE que voc� n�o especifique um tipo de monitor com taxa de "
"atualiza��o\n"
"que � muito al�m das capacidades do seu monitor: voc� pode danificar seu "
"monitor.\n"
" Se tiver d�vida, escolha caracter�sticas conservadoras."

#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
#, c-format
msgid "Modify"
msgstr "Modificar"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
"a particular printing job. Simply add the desired settings to the command "
"line, e. g. \"%s <file>\".\n"
msgstr ""
"\n"
"Os comandos \"%s\" e \"%s\" tamb�m permitem modificar as op��es de uma "
"impress�o em particular. Apenas adicione as configura��es desejadas � linha "
"de comando, ex: \"%s <arquivo>\".\n"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Need hostname, username and password!"
msgstr "Nome do host, do usu�rio e senha s�o necess�rios!"

#: ../../diskdrake/dav.pm:1
#, c-format
msgid ""
"WebDAV is a protocol that allows you to mount a web server's directory\n"
"locally, and treat it like a local filesystem (provided the web server is\n"
"configured as a WebDAV server). If you would like to add WebDAV mount\n"
"points, select \"New\"."
msgstr ""
"WebDAV � um protocolo que lhe permite de montar a pasta de um servidor\n"
"web localmente, e de tratar-la como um sistema de arquivos local (desde\n"
"que o servidor web esteja configurado como servidor WebDAV). Se deseja\n"
"adicionar pontos de montagem WebDAV, selecione \"Novo\"."

#: ../../standalone/drakbug:1
#, c-format
msgid "HardDrake"
msgstr "HardDrake"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "new"
msgstr "novo"

#: ../../security/help.pm:1
#, c-format
msgid "Enable/Disable syslog reports to console 12"
msgstr ""

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Would you like to try again?"
msgstr "Voc� gostaria de tentar outra vez?"

#: ../../help.pm:1 ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Wizard"
msgstr "Ajudante"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Edit selected server"
msgstr "Editar o servidor selecionado"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Please choose where you want to backup"
msgstr "Por favor escolha onde quer fazer a c�pia de seguran�a"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Voc� precisa reiniciar para que as modifica��es na tabela de parti��o tenham "
"efeito"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Do not include the browser cache"
msgstr "N�o incluir o cache do navegador"

#: ../../standalone/keyboarddrake:1
#, c-format
msgid "Please, choose your keyboard layout."
msgstr "Favor escolher o layout do seu teclado."

#: ../../mouse.pm:1 ../../security/level.pm:1
#, c-format
msgid "Standard"
msgstr "Padr�o"

#: ../../standalone/mousedrake:1
#, c-format
msgid "Please choose your mouse type."
msgstr "Favor escolher o tipo do seu mouse."

#: ../../standalone/drakconnect:1
#, c-format
msgid "Connect..."
msgstr "Conectar..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Failed to configure printer \"%s\"!"
msgstr "Falha na configura��o da impressora \"%s\"!"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "not configured"
msgstr "n�o configurado"

#: ../../network/isdn.pm:1
#, c-format
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"

#: ../../standalone/drakfont:1
#, c-format
msgid "About"
msgstr "Sobre"

#: ../../network/network.pm:1
#, c-format
msgid "Proxies configuration"
msgstr "Configura��o de proxies"

#: ../../mouse.pm:1
#, c-format
msgid "GlidePoint"
msgstr "GlidePoint"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Start: sector %s\n"
msgstr "Iniciar: setor: %s\n"

#: ../../standalone/drakgw:1
#, c-format
msgid "Network interface already configured"
msgstr "Interface de Rede j� configurada"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Couldn't access the floppy!"
msgstr "N�o consegui acessar o disquete!"

#: ../../standalone/drakbug:1
#, c-format
msgid "connecting to Bugzilla wizard ..."
msgstr "conectando ao assistente Bugzilla ..."

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Mail Server"
msgstr "Servidor de Correio"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Please click on a partition"
msgstr "Favor clicar em uma parti��o"

#: ../../any.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Linux"
msgstr "Linux"

#: ../../standalone/drakxtv:1
#, c-format
msgid "Have a nice day!"
msgstr "Tenha um bom dia!"

#: ../../standalone/drakbackup:1
#, c-format
msgid "across Network"
msgstr "Atrav�s da Rede"

#: ../../help.pm:1
#, c-format
msgid "/dev/fd0"
msgstr "/dev/fd0"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Upgrade %s"
msgstr "Atualizar %s"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Select Printer Connection"
msgstr "Selecionar Conex�o da Impressora"

#: ../../standalone/drakxtv:1
#, c-format
msgid "Scanning for TV channels in progress ..."
msgstr "Varredura dos canais de TV em progresso ..."

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"Erro durante o envio do arquivo via FTP.\n"
" Favor corrigir sua configura��o FTP."

#: ../../standalone/drakTermServ:1
#, c-format
msgid "IP Range Start:"
msgstr "In�cio da Zona IP :"

#: ../../services.pm:1
#, c-format
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
"starting\n"
"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
"disables\n"
"all of the services it is responsible for."
msgstr ""
"O internet superserver daemon (normalmente chamado inetd) inicia\n"
"uma variedade de outros servi�os de internet quando necess�rio. � "
"respons�vel\n"
"pela inicializa��o de v�rios servi�os, incluindo telnet, ftp, rsh e rlogin. "
"Disabilitando\n"
"inetd, todos os servi�os pela qual ele � respons�vel tamb�m s�o "
"desabilitados."

#: ../../standalone/draksplash:1
#, c-format
msgid "the height of the progress bar"
msgstr "a altura da barra de progresso"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
"\n"
"- Grava via %s no host : %s\n"

#: ../../lang.pm:1 ../../standalone/drakxtv:1
#, c-format
msgid "Argentina"
msgstr "Argentina"

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Domain Name Server"
msgstr "Servidor de Nomes do Dom�nio (DNS)"

#: ../../standalone/draksec:1
#, c-format
msgid "Security Level:"
msgstr "N�vel de seguran�a:"

#: ../../fsedit.pm:1
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Pontos de montagem devem come�ar com uma /"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Choose your CD/DVD device"
msgstr "Favor escolher o tamanho de sua m�dia CD/DVD em MB"

#: ../../standalone/logdrake:1
#, c-format
msgid "Postfix Mail Server"
msgstr "Servidor de correio Postfix"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Quit without saving"
msgstr "Sair sem salvar"

#: ../../lang.pm:1
#, c-format
msgid "Yemen"
msgstr "I�men"

#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid "This product is available on the MandrakeStore Web site."
msgstr "Este produto est� dispon�vel no site MandrakeStore"

#: ../../interactive/stdio.pm:1
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Existem v�rias coisas para se escolher de (%s) \n"

#: ../../steps.pm:1
#, c-format
msgid "Hard drive detection"
msgstr "Detec��o de discos rigidos"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
"Voc� n�o selecionou nenhum grupo de pacotes.\n"
"Por favor escolha a instala��o m�nima"

#: ../../diskdrake/dav.pm:1
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Favor digitar a URL do servidor WebDAV"

#: ../../lang.pm:1
#, c-format
msgid "Tajikistan"
msgstr "Tajiquist�o"

#: ../../help.pm:1 ../../install_steps_gtk.pm:1
#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
#, c-format
msgid "Accept"
msgstr "Aceitar"

#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
#, c-format
msgid "Description"
msgstr "Descri��o"

#: ../../fsedit.pm:1
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Erro abrindo %s para grava��o: %s"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tipo do Mouse: %s\n"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Sua placa suporta acelera��o hardware 3D com o XFree %s."

#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Choose a monitor"
msgstr "Escolha um monitor"

#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Bad Mask"
msgstr "Pacote defeituoso"

#: ../../any.pm:1
#, c-format
msgid "Empty label not allowed"
msgstr "N�o � permitido r�tulo vazio"

#: ../../keyboard.pm:1
#, c-format
msgid "Maltese (UK)"
msgstr "Malt�s (Reino Unido)"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "I can't add any more partition"
msgstr "Eu n�o posso adicionar mais nenhuma parti��o"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Size in MB: "
msgstr "Tamanho em MB: "

#: ../../printer/main.pm:1
#, c-format
msgid "Remote printer"
msgstr "Impressora remota"

#: ../../any.pm:1
#, c-format
msgid "Please choose a language to use."
msgstr "Favor escolher o idioma a ser utilizado."

#: ../../network/network.pm:1
#, c-format
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
msgstr ""
"ATEN��O: Esse dispostivo j� foi configurado para se conectar � Internet.\n"
"Apenas aceite para manter esse dispositivo configurado.\n"
"A modifica��o dos campos abaixo ir� sobrepor essa configura��o."

#: ../../any.pm:1
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Eu posso configurar seu computador para automaticamente logar um usu�rio."

#: ../../standalone/harddrake2:1
#, c-format
msgid "Floppy format"
msgstr "Formatar disquete"

#: ../../standalone/drakfont:1
#, c-format
msgid "Generic Printers"
msgstr "Impressoras Gen�ricas"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid ""
"Please choose the printer to which the print jobs should go or enter a "
"device name/file name in the input line"
msgstr ""
"Esta � a lista das impressoras auto detectadas. Favor escolher a impressora "
"que deseja configurar, ou digite o nome do dispositivo / nome do arquivo na "
"linha de entrada"

#: ../../standalone/scannerdrake:1
#, c-format
msgid "The scanners on this machine are available to other computers"
msgstr ""

#: ../../any.pm:1
#, c-format
msgid "First sector of the root partition"
msgstr "Primeiro setor da parti��o ra�z"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Alternative drivers"
msgstr "Drivers alternativos"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
"\n"
"Favor marcar todas as op��es que voc� precisa. \n"

#: ../../any.pm:1
#, c-format
msgid "Initrd"
msgstr "Initrd"

#: ../../lang.pm:1
#, c-format
msgid "Cape Verde"
msgstr "Cabo Verde"

#: ../../standalone/harddrake2:1
#, c-format
msgid "whether this cpu has the Cyrix 6x86 Coma bug"
msgstr "se este processador central tem o erro 'coma' do Cyrix 6x86"

#: ../../standalone/harddrake2:1
#, c-format
msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
msgstr ""
"os primeiros pentium's possuiam falhas e travavam ao decodificar o bytecode "
"F00F"

#: ../../lang.pm:1
#, c-format
msgid "Guam"
msgstr "Guam"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Please choose the port that your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
"Favor escolher a porta em que sua impressora est� conectada ou digite o nome "
"do dispositivo/arquivo na campo de entrada"

#: ../../standalone/logdrake:1
#, c-format
msgid "/Options/Test"
msgstr "/Op��es/Teste"

#: ../../security/level.pm:1
#, c-format
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive. It must not be used for a machine connected to others\n"
"or to the Internet. There is no password access."
msgstr ""
"Esse n�vel deve ser usado com cuidado. Ele faz o seu sistema mais f�cil de "
"usar,\n"
"mas muito sens�vel: ele n�o deve ser usado em uma m�quina conectada a "
"outros\n"
"ou � internet. N�o existe acesso por senha."

#: ../../fs.pm:1
#, c-format
msgid "Mounting partition %s"
msgstr "Montando parti��o %s"

#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "User name"
msgstr "Nome do usu�rio"

#: ../../standalone/drakbug:1
#, c-format
msgid "Userdrake"
msgstr "Userdrake"

#: ../../install_interactive.pm:1
#, c-format
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Qual parti��o voc� quer usar para o Linux4Win?"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup system"
msgstr "C�pia de seguran�a do sistema"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Test pages"
msgstr "P�gina de teste"

#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Logical volume name "
msgstr "Medida local"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
"Lista de dados para restaurar:\n"
"\n"

#: ../../fs.pm:1
#, c-format
msgid "Checking %s"
msgstr "Checando %s"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "TCP/Socket Printer Options"
msgstr "Op��es da Impressora TCP/Socket"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card mem (DMA)"
msgstr "Mem�ria da Placa (DMA)"

#: ../../standalone/net_monitor:1
#, c-format
msgid "Disconnecting from Internet "
msgstr "Desconectando da Internet"

#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "France"
msgstr "Fran�a"

#: ../../standalone/drakperm:1
#, c-format
msgid "browse"
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Checking installed software..."
msgstr "Verificando software instalado..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remote printer name missing!"
msgstr "Falta o nome da impressora remota!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Do you want to enable printing on printers in the local network?\n"
msgstr "Voc� quer permitir imprimir em impressoras da rede local? \n"

#: ../../lang.pm:1
#, c-format
msgid "Turkey"
msgstr "Turquia"

#: ../../network/adsl.pm:1
#, c-format
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Number of buttons"
msgstr "N�mero de bot�es"

#: ../../keyboard.pm:1
#, c-format
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamita \"n�mero de colunas\" QWERTY"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Module"
msgstr "M�dulo"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Hardware"
msgstr ""

#: ../../keyboard.pm:1
#, c-format
msgid "Ctrl and Alt keys simultaneously"
msgstr "Teclas Control e Alt simult�neamente"

#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "United States"
msgstr "Estados Unidos"

#: ../../security/l10n.pm:1
#, fuzzy, c-format
msgid "User umask"
msgstr "Usu�rios"

#: ../../any.pm:1
#, c-format
msgid "Default OS?"
msgstr "SO padr�o?"

#: ../../keyboard.pm:1
#, c-format
msgid "Swiss (German layout)"
msgstr "Su��o (layout Alem�o)"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Configure all heads independently"
msgstr "Configurar todas as cabe�as independentemente"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Please choose the printer you want to set up. The configuration of the "
"printer will work fully automatically. If your printer was not correctly "
"detected or if you prefer a customized printer configuration, turn on "
"\"Manual configuration\"."
msgstr ""

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "NTP Server"
msgstr "Servidor NTP"

#: ../../security/l10n.pm:1
#, c-format
msgid "Sulogin(8) in single user level"
msgstr ""

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Load/Save on floppy"
msgstr "Carregar/Salvar em disquete"

#: ../../standalone/draksplash:1
#, c-format
msgid "This theme does not yet have a bootsplash in %s !"
msgstr ""

#: ../../pkgs.pm:1
#, c-format
msgid "nice"
msgstr "bom"

#: ../../Xconfig/test.pm:1
#, c-format
msgid "Leaving in %d seconds"
msgstr "Saindo em %d segundos"

#: ../../network/modem.pm:1
#, c-format
msgid "Please choose which serial port your modem is connected to."
msgstr "Favor escolher em qual porta serial seu modem est� conectado."

#: ../../standalone/drakperm:1
#, c-format
msgid "Property"
msgstr "Propriedade"

#: ../../standalone/drakfont:1
#, c-format
msgid "Ghostscript"
msgstr "Ghostscript"

#: ../../standalone/drakconnect:1
#, c-format
msgid "LAN Configuration"
msgstr "Configura��o LAN"

#: ../../lang.pm:1
#, c-format
msgid "Ghana"
msgstr "Gana"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Path or Module required"
msgstr "Caminho ou M�dulo � necess�rio"

#: ../../standalone/drakfont:1
#, c-format
msgid "Advanced Options"
msgstr "Op��es Avan�adas"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "View Configuration"
msgstr "Configura��o"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Coma bug"
msgstr "Coma bug"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
"defined, either from a previous installation of GNU/Linux or by another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
"\n"
"To create partitions, you must first select a hard drive. You can select\n"
"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
"\n"
"To partition the selected hard drive, you can use these options:\n"
"\n"
" * \"%s\": this option deletes all partitions on the selected hard drive\n"
"\n"
" * \"%s\": this option enables you to automatically create ext3 and swap\n"
"partitions in the free space of your hard drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
"\n"
" * \"%s\": saves the partition table to a floppy. Useful for later\n"
"partition-table recovery if necessary. It is strongly recommended that you\n"
"perform this step.\n"
"\n"
" * \"%s\": allows you to restore a previously saved partition table from a\n"
"floppy disk.\n"
"\n"
" * \"%s\": if your partition table is damaged, you can try to recover it\n"
"using this option. Please be careful and remember that it doesn't always\n"
"work.\n"
"\n"
" * \"%s\": discards all changes and reloads the partition table that was\n"
"originally on the hard drive.\n"
"\n"
" * \"%s\": unchecking this option will force users to manually mount and\n"
"unmount removable media such as floppies and CD-ROMs.\n"
"\n"
" * \"%s\": use this option if you wish to use a wizard to partition your\n"
"hard drive. This is recommended if you do not have a good understanding of\n"
"partitioning.\n"
"\n"
" * \"%s\": use this option to cancel your changes.\n"
"\n"
" * \"%s\": allows additional actions on partitions (type, options, format)\n"
"and gives more information about the hard drive.\n"
"\n"
" * \"%s\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
"\n"
"When defining the size of a partition, you can finely set the partition\n"
"size by using the Arrow keys of your keyboard.\n"
"\n"
"Note: you can reach any option using the keyboard. Navigate through the\n"
"partitions using [Tab] and the [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
"\n"
" * Ctrl-d to delete a partition\n"
"\n"
" * Ctrl-m to set the mount point\n"
"\n"
"To get information about the different file system types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
"Agora voc� precisa escolher qual(is)\n"
"parti��o(�es) utilizar para instalar o seu novo sistema Mandrake Linux. Se "
"as parti��es\n"
"j� estiverem definidas (atrav�s de uma instala��o anterior do GNU/Linux ou "
"outra\n"
"ferramenta particionadora), voc� pode utiliz�-las. Caso contr�rio, as\n"
"parti��es devem ser definidas.\n"
"\n"
"Para criar parti��es, voc� deve primeiro selecionar um disco r�gido. Voc�\n"
"pode selecionar o disco clicando em \"hda\" para o primeiro drive IDE,\"hdb"
"\" para\n"
"o segundo ou \"sda\" para o primeiro drive SCSI e assim por diante.\n"
"\n"
"Para particionar o disco selecionado, voc� pode usar as seguintes op��es:\n"
"\n"
"   * Limpar tudo: essa op��o deletar� todas as parti��es dispon�veis do "
"disco r�gido selecionado.\n"
"\n"
"   * Auto alocar: essa op��o lhe permite criar automaticamente parti��es "
"Ext2 e swap no espa�o livre do seu\n"
"     disco r�gido.\n"
"\n"
"   * Resgatar tabela de parti��o: se sua tabela de parti��o estiver "
"danificada, voc� pode tentar recuper�-la usando\n"
"     essa op��o. Tenha cuidado e lembre-se que ela pode falhar.\n"
"\n"
"   * Desfazer: voc� pode usar essa op��o para cancelar suas altera��es.\n"
"\n"
"   * Recarregar: voc� pode usar essa op��o se voc� desejar desfazer todas as "
"suas altera��es e recome�ar de novo\n"
"\n"
"   * Ajudante: se voc� desejar utilizar um ajudante para particionar o seu "
"disco r�gido, voc� pode usar essa op��o.\n"
"     � recomendada caso n�o tenha conhecimento sobre particionamento.\n"
"\n"
"   * Restaurar do disquete: se voc� salvou a sua tabela da parti��o em um "
"disquete em um instala��o anterior, voc�\n"
"     pode recuper�-la com essa op��o.\n"
"\n"
"   * Salvar em disquete: se voc� quiser salvar sua tabela de parti��o em um "
"disquete para pode recuper�-la,\n"
"     voc� pode usar essa op��o. � altamente recomendado utiliz�-la.\n"
"\n"
"   * Salvar: quando voc� terminar de particionar o seu disco r�gido, use "
"essa op��o para salvar as altera��es.\n"
"\n"
"Nota: voc� pode utilizar qualquer op��o usando o teclado: navegue entre as "
"parti��es usando Tab e as setas para cima/baixo.\n"
"\n"
"Quando a parti��o estiver selecionada, voc� pode usar:\n"
"\n"
"           * Ctrl-c para criar uma nova parti��o (quando uma vazia estiver "
"selecionada)\n"
"           * Ctrl-d para deletar uma parti��o\n"
"\n"
"           * Ctrl-m para especificar um ponto de montagem. Se voc� est� "
"instalando em uma M�quina PPC, voc� vai querer criar uma pequena parti��o "
"'bootstrap' HFS de ao menos 1MB para\n"
"usar com o gerenciador de boot yaboot. Se voc� quiser criar uma parti��o um "
"pouco maior, digamos 50MB, voc� pode usar o espa�o \n"
"para guardar um kernel extra e uma imagem ramdisk para emerg�ncias."

#: ../../help.pm:1
#, c-format
msgid ""
"Graphic Card\n"
"\n"
"   The installer will normally automatically detect and configure the\n"
"graphic card installed on your machine. If it is not the case, you can\n"
"choose from this list the card you actually have installed.\n"
"\n"
"   In the case that different servers are available for your card, with or\n"
"without 3D acceleration, you are then asked to choose the server that best\n"
"suits your needs."
msgstr ""

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "There was an error installing packages:"
msgstr "Houve um erro instalando os pacotes:"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Lexmark inkjet configuration"
msgstr "Configura��o de jato de tinta Lexmark"

#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Undo"
msgstr "Desfazer"

#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Save partition table"
msgstr "Gravar tabela de parti��o"

#: ../../keyboard.pm:1
#, c-format
msgid "Finnish"
msgstr "Filand�s"

#: ../../lang.pm:1
#, c-format
msgid "Macedonia"
msgstr "Maced�nia"

#: ../../any.pm:1
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
"O compartilhamento por usu�rio usa o grupo \"fileshare\".\n"
"Voc� pode usar o userdrake para adicionar um usu�rio neste grupo."

#: ../../keyboard.pm:1
#, c-format
msgid "Slovenian"
msgstr "Eslov�nio"

#: ../../security/help.pm:1
#, c-format
msgid ""
"Authorize:\n"
"\n"
"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
"set to \"ALL\",\n"
"\n"
"- only local ones if set to \"LOCAL\"\n"
"\n"
"- none if set to \"NONE\".\n"
"\n"
"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
"(5))."
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Libya"
msgstr "L�bia"

#: ../../standalone/drakgw:1
#, c-format
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Configurando scripts, instalando programas, iniciando servidores..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer on parallel port #%s"
msgstr "Impressora na porta paralela #%s"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"- Burn to CD"
msgstr ""
"\n"
"- Gravar no CD"

#: ../../any.pm:1
#, c-format
msgid "Table"
msgstr "Tabela"

#: ../../fs.pm:1
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Eu n�o sei como formatar %s no tipo %s"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Model"
msgstr "Modelo"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "USB printer #%s"
msgstr "Impressora USB #%s"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Stop Server"
msgstr "Parar o Servidor"

#: ../../standalone/drakboot:1
#, c-format
msgid ""
"\n"
"Select the theme for\n"
"lilo and bootsplash,\n"
"you can choose\n"
"them separately"
msgstr ""
"\n"
"Escolha o tema para\n"
"lilo e bootsplash,\n"
"voc� pode escolher\n"
"separadamente"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Modem"
msgstr "Modem"

#: ../../lang.pm:1
#, c-format
msgid "Tuvalu"
msgstr "Tuvalu"

#: ../../help.pm:1 ../../network/netconnect.pm:1
#, c-format
msgid "Use auto detection"
msgstr "Usar auto detec��o"

#: ../../services.pm:1
#, c-format
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
"operations,\n"
"and includes support for pop-up menus on the console."
msgstr ""
"GPM adiciona suporte ao mouse � aplicativos Linux com base em texto\n"
"tal como o Midnight Commander. Ele tamb�m permitir copiar e colar "
"utilizando\n"
"o mouse e inclui suporte para menus pop-up no console."

#: ../../standalone/drakconnect:1
#, c-format
msgid "Started on boot"
msgstr "Iniciado na inicializa��o"

#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
"your knowledge and help others by becoming a recognized Expert on the online "
"technical support website:"
msgstr ""
"Junte-se aos grupos de suporte MandrakeSoft e � Comunidade Linux online para "
"compartilhar seu conhecimento e ajudar outros, tornando-se um Expert "
"reconhecido no site de suporte t�cnico online:"

#: ../../security/l10n.pm:1
#, fuzzy, c-format
msgid "No password aging for"
msgstr "Nenhuma senha"

#: ../../standalone/draksec:1
#, c-format
msgid ""
"The following options can be set to customize your\n"
"system security. If you need an explanation, look at the help tooltip.\n"
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Automatically find available printers on remote machines"
msgstr "Detectar automaticamente impressoras dispon�veis em m�quinas remotas"

#: ../../lang.pm:1
#, c-format
msgid "East Timor"
msgstr "Timor Leste"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
"\n"
"- Grava na fita no dispositivo : %s"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Login name"
msgstr "Nome do dom�nio"

#: ../../security/l10n.pm:1
#, c-format
msgid "Report unowned files"
msgstr ""

#: ../../standalone/drakconnect:1
#, c-format
msgid "Del profile..."
msgstr "Apagar perfil..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing Foomatic..."
msgstr "Instalando Footmatic..."

#: ../../standalone/XFdrake:1
#, c-format
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr ""
"Favor fazer um log out (sair) e ent�o usar as teclas Ctrl-Alt-BackSpace"

#: ../../network/netconnect.pm:1
#, c-format
msgid "detected"
msgstr "detectado"

#: ../../network/netconnect.pm:1
#, c-format
msgid "The network needs to be restarted. Do you want to restart it ?"
msgstr "A rede precisa ser reiniciada. Voc� deseja reinicia-la agora?"

#: ../../standalone/drakbug:1
#, c-format
msgid "Package: "
msgstr "Pacote: "

#: ../../standalone/drakboot:1
#, c-format
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "N�o pode gravar em /etc/sysconfig/bootsplash."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "SECURITY WARNING!"
msgstr "ALERTA DE SEGURAN�A!"

#: ../../standalone/drakfont:1
#, c-format
msgid "StarOffice"
msgstr "StarOffice"

#: ../../standalone/drakboot:1
#, c-format
msgid "No, I don't want autologin"
msgstr "N�o, eu n�o quero autologin"

#: ../../standalone/drakbug:1
#, c-format
msgid "Windows Migration tool"
msgstr "Ferramenta de Migra��o Windows"

#: ../../any.pm:1 ../../help.pm:1
#, c-format
msgid "All languages"
msgstr "Todas linguagens"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Removing %s"
msgstr "Removendo %s"

#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "%s not found...\n"
msgstr "%s n�o respondendo"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Testing your connection..."
msgstr "Testando sua conex�o..."

#: ../../standalone/harddrake2:1
#, c-format
msgid "Cache size"
msgstr "Tamanho do cache"

#: ../../security/level.pm:1
#, c-format
msgid ""
"Passwords are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
"As senhas agora est�o ativadas, mas o uso como computador de rede ainda n�o "
"� recomendado."

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Start sector: "
msgstr "Setor inicial: "

#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "Read"
msgstr "Somente leitura"

#: ../../lang.pm:1
#, c-format
msgid "Congo (Brazzaville)"
msgstr ""

#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "O pacote %s precisa ser instalado. Voc� deseja instal�-lo?"

#: ../../lang.pm:1
#, c-format
msgid "Seychelles"
msgstr "Ilhas Seicheles"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
"detection with the models listed in its printer database to find the best "
"match. This choice can be wrong, especially when your printer is not listed "
"at all in the database. So check whether the choice is correct and click "
"\"The model is correct\" if so and if not, click \"Select model manually\" "
"so that you can choose your printer model manually on the next screen.\n"
"\n"
"For your printer Printerdrake has found:\n"
"\n"
"%s"
msgstr ""
"Printerdrake comparou o nome do modelo resultado da auto-detec��o da "
"impressora com a lista de modelos listado em seu banco de dados para "
"encontrar combina��o. A escolha pode ser errada, principalmente se sua "
"impressora n�o constar no banco de dados. Ent�o, verifique se a escolha est� "
"correta e clique em \"O modelo est� correto\", caso contr�rio, clique em "
"\"Selecionar modelo manualmente\", para que voc� possa escolher manualmente "
"sua impressora na pr�xima tela.\n"
"\n"
"Para sua impressora, Printerdrake encontrou:\n"
"\n"
"%s"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Bad password on %s"
msgstr "Senha inv�lida em %s"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"There is one unknown printer directly connected to your system"
msgstr ""
"\n"
"Esta � a impressora desconhecida conectada diretamente a seu sistema"

#: ../../keyboard.pm:1
#, c-format
msgid "Right Control key"
msgstr "Tecla Control da direita"

#: ../../lang.pm:1
#, c-format
msgid "Zambia"
msgstr "Z�mbia"

#: ../../security/level.pm:1
#, c-format
msgid "Security Administrator (login or email)"
msgstr "Administrador de Seguran�a (login ou e-mail)"

#: ../../standalone/drakgw:1
#, c-format
msgid "Sorry, we support only 2.4 kernels."
msgstr "Desculpe, suportamos apenas kerneis 2.4."

#: ../../keyboard.pm:1
#, c-format
msgid "Romanian (qwerty)"
msgstr "Romeno (QWERTZ)"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Under Devel ... please wait."
msgstr "Em Desenvolvimento ... por favor aguarde."

#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Czech Republic"
msgstr "Rep�blica Tcheca"

#: ../../lang.pm:1
#, c-format
msgid "Egypt"
msgstr "Egito"

#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Sound card"
msgstr "Placa de som"

#: ../../standalone/drakfont:1
#, c-format
msgid "Import Fonts"
msgstr "Importar Fontes"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid ""
"You have one big MicroSoft Windows partition.\n"
"I suggest you first resize that partition\n"
"(click on it, then click on \"Resize\")"
msgstr ""
"Voc� tem uma parti��o do Windows muito grande.\n"
"Sugiro que voc� diminua o tamanho dessa parti��o\n"
"(clique nela, depois clique em \"Redimensionar\")"

#: ../../standalone/drakfont:1
#, c-format
msgid "Suppress Temporary Files"
msgstr "Apagar os arquivos tempor�rios"

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"\n"
msgstr ""
"Parab�ns, as configura��es da rede e internet est�o conclu�das.\n"
"\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Change partition type"
msgstr "Mudar tipo de parti��o"

#: ../../help.pm:1
#, c-format
msgid ""
"Resolution\n"
"\n"
"   Here you can choose the resolutions and color depths available for your\n"
"hardware. Choose the one that best suits your needs (you will be able to\n"
"change that after installation though). A sample of the chosen\n"
"configuration is shown in the monitor."
msgstr ""

#: ../../standalone/draksec:1
#, c-format
msgid "Network Options"
msgstr "Op��es da rede"

#: ../../security/l10n.pm:1
#, c-format
msgid "Enable msec hourly security check"
msgstr ""

#: ../../standalone/drakboot:1
#, c-format
msgid ""
"Display theme\n"
"under console"
msgstr ""
"Mostrar tema \n"
"sob o console"

#: ../../standalone/net_monitor:1
#, c-format
msgid "Statistics"
msgstr "Estat�sticas"

#: ../../printer/cups.pm:1
#, c-format
msgid "(on %s)"
msgstr "(em %s)"

#: ../../mouse.pm:1
#, c-format
msgid "MM Series"
msgstr "S�rie MM"

#: ../../security/level.pm:1
#, c-format
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Uma biblioteca que defende contra ataques de buffer overflow e strings de "
"format"

#: ../../standalone/net_monitor:1
#, c-format
msgid "average"
msgstr "m�dia"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "New printer name"
msgstr "Novo nome da impressora"

#: ../../fs.pm:1
#, c-format
msgid ""
"Allow an ordinary user to mount the file system. The\n"
"name of the mounting user is written to mtab so that he can unmount the "
"file\n"
"system again. This option implies the options noexec, nosuid, and nodev\n"
"(unless overridden by subsequent options, as in the option line\n"
"user,exec,dev,suid )."
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Equatorial Guinea"
msgstr "Guin� Equatorial"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Build Backup"
msgstr "Construir a c�pia de seguran�a"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
"Para imprimir um arquivo a partir da linha de comando (janela de terminal), "
"use o comando \"%s <arquivo>\" ou \"%s <arquivo>\".\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Currently, no alternative possibility is available"
msgstr ""

#: ../../keyboard.pm:1
#, c-format
msgid "Romanian (qwertz)"
msgstr "Romeno (QWERTZ)"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Write Config"
msgstr "Escrever a configura��o"

#: ../../services.pm:1
#, c-format
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
"routing protocols are needed for complex networks."
msgstr ""
"O daemon routed permite a atualiza��o autom�tica da tabela roteadora\n"
"IP atrav�s do protocolo RIP. Enquanto o RIP � usado largamente em pequenas\n"
"rede, protocolos de roteamento mais complexos s�o necess�rios em redes mais "
"complexas."

#: ../../lang.pm:1
#, c-format
msgid "Kiribati"
msgstr "Kiribati"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Other (not drakbackup) keys in place already"
msgstr ""

#: ../../standalone/draksplash:1
#, c-format
msgid "Browse"
msgstr ""

#: ../../harddrake/data.pm:1
#, c-format
msgid "CDROM"
msgstr "CD-ROM"

#: ../../network/tools.pm:1
#, c-format
msgid "Do you want to try to connect to the Internet now?"
msgstr "Voc� quer tentar se conectar � Internet agora?"

#: ../../keyboard.pm:1
#, c-format
msgid "Belgian"
msgstr "Belga"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Voc� tem alguma placa de som ISA?"

#: ../../network/ethernet.pm:1
#, c-format
msgid ""
"No ethernet network adapter has been detected on your system.\n"
"I cannot set up this connection type."
msgstr ""
"Nenhum adaptador de rede ethernet foi detectado em seu sistema.\n"
"Eu n�o posso configurar esse tipo de conex�o."

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Windows"
msgstr "Windows"

#: ../../common.pm:1
#, c-format
msgid "Can't make screenshots before partitioning"
msgstr "N�o posso fazer screenshots antes de particionar"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Host Name"
msgstr "Nome do Host"

#: ../../standalone/logdrake:1
#, c-format
msgid "/File/Save _As"
msgstr "/Arquivo/Salvar _Como"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"only need to turn on the \"Automatically find available printers on remote "
"machines\" option; the CUPS servers inform your machine automatically about "
"their printers. All printers currently known to your machine are listed in "
"the \"Remote printers\" section in the main window of Printerdrake. If your "
"CUPS server(s) is/are not in your local network, you have to enter the IP "
"address(es) and optionally the port number(s) here to get the printer "
"information from the server(s)."
msgstr ""

#: ../../standalone/drakTermServ:1
#, c-format
msgid ""
"drakTermServ Overview\n"
"\t\t\t   \n"
"        - Create Etherboot Enabled Boot Images:\n"
"        \t\tTo boot a kernel via etherboot, a special kernel/initrd image "
"must be created.\n"
"        \t\tmkinitrd-net does much of this work and drakTermServ is just a "
"graphical interface\n"
"        \t\tto help manage/customize these images. To create the file \n"
"        \t\t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
"include in \n"
"        \t\tdhcpd.conf, you should create the etherboot images for at least "
"one full kernel.\n"
"\n"
"        - Maintain /etc/dhcpd.conf:\n"
"        \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
"assigning an IP address\n"
"        \t\tand net boot images to the machine. drakTermServ helps create/"
"remove these entries.\n"
"\t\t\t\n"
"        \t\t(PCI cards may omit the image - etherboot will request the "
"correct image. You should\n"
"        \t\talso consider that when etherboot looks for the images, it "
"expects names like\n"
"        \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
"\t\t\t \n"
"        \t\tA typical dhcpd.conf stanza to support a diskless client looks "
"like:\n"
"        \t\t\n"
"\t\t\t\thost curly {\n"
"\t\t\t\t\thardware ethernet        00:20:af:2f:f7:9d;\n"
"\t\t\t\t\tfixed-address              192.168.192.3;\n"
"\t\t\t\t\t#type                          fat;\n"
"\t\t\t\t\tfilename                      \"i386/boot/boot-3c509.2.4.18-6mdk."
"nbi\";\n"
"\t\t\t\t\t#hdw_config                true;\n"
"\t\t\t\t}\n"
"\t\t\t\n"
"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
"entry for\n"
"\t\t\ta client machine, using a fixed address scheme facilitates using the "
"functionality\n"
"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
"\t\t\t\n"
"\t\t\tNote: The \"#type\" entry is only used by drakTermServ.  Clients can "
"either be 'thin'\n"
"\t\t\tor 'fat'.  Thin clients run most software on the server via xdmcp, "
"while fat clients run \n"
"\t\t\tmost software on the client machine. A special inittab, /etc/inittab\\$"
"\\$IP=client_ip\\$\\$ is\n"
"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
"gdm.conf are \n"
"\t\t\tmodified if thin clients are used, to enable xdmcp. Since there are "
"security issues in \n"
"\t\t\tusing xdmcp, hosts.deny and hosts.allow are modified to limit access "
"to the local\n"
"\t\t\tsubnet.\n"
"\t\t\t\n"
"\t\t\tNote: The \"#hdw_config\" entry is also only used by drakTermServ.  "
"Clients can either \n"
"\t\t\tbe 'true' or 'false'.  'true' enables root login at the client machine "
"and allows local \n"
"\t\t\thardware configuration of sound, mouse, and X, using the 'drak' tools. "
"This is enabled \n"
"\t\t\tby creating seperate config files associated with the client's IP "
"address and creating \n"
"\t\t\tread/write mount points to allow the client to alter the file. Once "
"you are satisfied \n"
"\t\t\twith the configuration, you can remove root login priviledges from the "
"client.\n"
"\t\t\t\n"
"\t\t\tNote: You must stop/start the server after adding or changing "
"clients.\n"
"\t\t\t\n"
"        - Maintain /etc/exports:\n"
"        \t\tClusternfs allows export of the root filesystem to diskless "
"clients. drakTermServ\n"
"        \t\tsets up the correct entry to allow anonymous access to the root "
"filesystem from\n"
"        \t\tdiskless clients.\n"
"\n"
"        \t\tA typical exports entry for clusternfs is:\n"
"        \t\t\n"
"        \t\t/                  (ro,all_squash)\n"
"        \t\t/home              SUBNET/MASK(rw,root_squash)\n"
"\t\t\t\n"
"\t\t\tWith SUBNET/MASK being defined for your network.\n"
"        \t\t\n"
"        - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
"        \t\tFor users to be able to log into the system from a diskless "
"client, their entry in\n"
"        \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
"\\$. drakTermServ helps\n"
"        \t\tin this respect by adding or removing system users from this "
"file.\n"
"\n"
"        - Per client /etc/X11/XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
"        \t\tThrough clusternfs, each diskless client can have it's own "
"unique configuration files\n"
"        \t\ton the root filesystem of the server. By allowing local client "
"hardware configuration, \n"
"        \t\tdrakTermServ will help create these files.\n"
"\n"
"        - Per client system configuration files:\n"
"        \t\tThrough clusternfs, each diskless client can have it's own "
"unique configuration files\n"
"        \t\ton the root filesystem of the server. By allowing local client "
"hardware configuration, \n"
"\t\t\t\tclients can customize files such as /etc/modules.conf, /etc/"
"sysconfig/mouse, \n"
"        \t\t/etc/sysconfig/keyboard on a per-client basis.\n"
"\n"
"        Note: Enabling local client hardware configuration does enable root "
"login to the terminal \n"
"        server on each client machine that has this feature enabled.  Local "
"configuration can be turned\n"
"        back off, retaining the configuration files, once the client machine "
"is configured.\n"
"\t\t\n"
"        - /etc/xinetd.d/tftp:\n"
"        \t\tdrakTermServ will configure this file to work in conjunction "
"with the images created by\n"
"        \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
"the boot image to each\n"
"        \t\tdiskless client.\n"
"\n"
"        \t\tA typical tftp configuration file looks like:\n"
"        \t\t\n"
"        \t\tservice tftp\n"
"        \t\t(\n"
"                        disable         = no\n"
"                        socket_type  = dgram\n"
"                        protocol        = udp\n"
"                        wait             = yes\n"
"                        user             = root\n"
"                        server          = /usr/sbin/in.tftpd\n"
"                        server_args  = -s /var/lib/tftpboot\n"
"        \t\t}\n"
"        \t\t\n"
"        \t\tThe changes here from the default installation are changing the "
"disable flag to\n"
"        \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
"mkinitrd-net\n"
"        \t\tputs it's images.\n"
"\n"
"        - Create etherboot floppies/CDs:\n"
"        \t\tThe diskless client machines need either ROM images on the NIC, "
"or a boot floppy\n"
"        \t\tor CD to initate the boot sequence.  drakTermServ will help "
"generate these images,\n"
"        \t\tbased on the NIC in the client machine.\n"
"        \t\t\n"
"        \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
"manually:\n"
"        \t\t\n"
"        \t\tcat /usr/lib/etherboot/boot1a.bin \\\n"
"        \t\t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
" \n"
"\n"
msgstr ""

#: ../../standalone/scannerdrake:1
#, c-format
msgid "%s is not in the scanner database, configure it manually?"
msgstr "%s n�o est� no banco de dados de scanners, configurar manualmente?"

#: ../../any.pm:1
#, c-format
msgid "Delay before booting default image"
msgstr "Tempo antes de entrar na imagem padr�o"

#: ../../any.pm:1
#, c-format
msgid "Restrict command line options"
msgstr "Restringir op��es da linha de comando"

#: ../../standalone/drakxtv:1
#, c-format
msgid "East Europe"
msgstr "Leste Europeu"

#: ../../help.pm:1 ../../install_interactive.pm:1
#, c-format
msgid "Use free space"
msgstr "Usar espa�o livre"

#: ../../network/adsl.pm:1
#, c-format
msgid "use dhcp"
msgstr "usar dhcp"

#: ../../standalone/logdrake:1
#, c-format
msgid "Mail alert"
msgstr "Alerta do correio"

#: ../../network/tools.pm:1
#, c-format
msgid "Internet configuration"
msgstr "Configura��o da Internet"

#: ../../lang.pm:1
#, c-format
msgid "Uzbekistan"
msgstr "Uzbequist�o"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Detected %s"
msgstr "Detectado %s"

#: ../../standalone/harddrake2:1
#, c-format
msgid "/Autodetect _printers"
msgstr "/Autodetectar _impressoras"

#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
#: ../../interactive/newt.pm:1
#, c-format
msgid "Finish"
msgstr "Terminar"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Show automatically selected packages"
msgstr "Mostra automaticamente os pacotes selecionados"

#: ../../lang.pm:1
#, c-format
msgid "Togo"
msgstr "Togo"

#: ../../standalone/harddrake2:1
#, c-format
msgid "CPU flags reported by the kernel"
msgstr ""

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Something went wrong! - Is mkisofs installed?"
msgstr "Algo errou! - O mkisofs esta instalado ?"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "16 MB"
msgstr "16 MB"

#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Please try again"
msgstr "Favor tentar novamente"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "The model is correct"
msgstr "O modelo � correto"

#: ../../install_interactive.pm:1
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Falha no redimensionamento FAT: %s"

#: ../../help.pm:1 ../../install_steps_gtk.pm:1
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Individual package selection"
msgstr "Sele��o individual de pacotes"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "This partition is not resizeable"
msgstr "Esta parti��o n�o � redimension�vel"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Location"
msgstr "Lugar"

#: ../../standalone/drakxtv:1
#, c-format
msgid "USA (cable-hrc)"
msgstr "EUA (cabo-hrc)"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Journalised FS"
msgstr "Journalised FS"

#: ../../security/l10n.pm:1
#, c-format
msgid "Ethernet cards promiscuity check"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Guatemala"
msgstr "Guatemala"

#: ../../standalone/scannerdrake:1
#, c-format
msgid "This machine"
msgstr "Esta m�quina"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Letra do drive no DOS: %s (apena um palpite)\n"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Select the files or directories and click on 'OK'"
msgstr "Selecione os arquivos ou diret�rios e clique em 'OK'"

#: ../../lang.pm:1
#, c-format
msgid "Bahrain"
msgstr "Barhain"

#: ../../standalone/drakfloppy:1
#, c-format
msgid "omit scsi modules"
msgstr "omitir m�dulos scsi"

#: ../../standalone/harddrake2:1
#, c-format
msgid "family of the cpu (eg: 6 for i686 class)"
msgstr "fam�lia da CPU (ex: 6 para classe i686)"

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
"Click on Ok to keep your configuration, or cancel to reconfigure your "
"Internet & Network connection.\n"
msgstr ""
"Como voc� est� fazendo uma instala��o por rede, sua rede j� est� "
"configurada.\n"
"Clique em Ok para manter sua configura��o, ou cancelar para reconfigurar sua "
"conex�o de Internet & Rede.\n"

#: ../../security/l10n.pm:1
#, fuzzy, c-format
msgid "Run the daily security checks"
msgstr ""
"Argumentos (arg)\n"
"\n"
"Ativa/ Desativa a verifica��o di�ria de seguran�a."

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Layout do teclado: %s\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Here you can choose whether the printers connected to this machine should be "
"accessable by remote machines and by which remote machines."
msgstr ""
"Aqui voc� pode escolher se as impressoras conectadas a este computador devem "
"ser acess�veis por m�quinas remotas e por quais delas."

#: ../../keyboard.pm:1
#, c-format
msgid "Maltese (US)"
msgstr "Malt�s (EUA)"

#: ../../services.pm:1
#, c-format
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
"Monta e desmonta todos os pontos de montagem do Network File\n"
"System (NFS), SMB (Gerenciador de Rede/Windows) e NCP (NetWare)."

#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Launch the wizard"
msgstr "Clique aqui para iniciar o ajudante ->"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Tvcard"
msgstr "Placa de TV"

#: ../../help.pm:1
#, c-format
msgid "Toggle between normal/expert mode"
msgstr "Mudar para modo normal/ expert"

#: ../../standalone/drakfloppy:1
#, c-format
msgid "Size"
msgstr "Tamanho"

#: ../../help.pm:1
#, c-format
msgid "GRUB"
msgstr "GRUB"

#: ../../lang.pm:1
#, c-format
msgid "Greenland"
msgstr "Groenl�ndia"

#: ../../mouse.pm:1
#, c-format
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr "Fita com nome incorreto. A fita correta possui o nome %s."

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"For a mulitsession CD, only the first session will erase the cdrw. Otherwise "
"the cdrw is erased before each backup."
msgstr ""

#: ../../standalone/drakgw:1
#, c-format
msgid ""
"The setup of Internet Connection Sharing has already been done.\n"
"It's currently enabled.\n"
"\n"
"What would you like to do?"
msgstr ""
"A configura��o de compartilhamento da conex�o � Internet j� foi feita.\n"
"Ela est� ativa.\n"
"\n"
"O que voc� gostaria de fazer?"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Delete All NBIs"
msgstr "Apagar todos os NBIs"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"This dialog allows you to fine tune your bootloader:\n"
"\n"
" * \"%s\": there are three choices for your bootloader:\n"
"\n"
"    * \"%s\": if you prefer grub (text menu).\n"
"\n"
"    * \"%s\": if you prefer LILO with its text menu interface.\n"
"\n"
"    * \"%s\": if you prefer LILO with its graphical interface.\n"
"\n"
" * \"%s\": in most cases, you will not change the default (\"%s\"), but if\n"
"you prefer, the bootloader can be installed on the second hard drive\n"
"(\"%s\"), or even on a floppy disk (\"%s\");\n"
"\n"
" * \"%s\": after a boot or a reboot of the computer, this is the delay\n"
"given to the user at the console to select a boot entry other than the\n"
"default.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
"\"%s\"), you must ensure that you have a way to boot your Mandrake Linux\n"
"system! Be sure you know what you are doing before changing any of the\n"
"options. !!\n"
"\n"
"Clicking the \"%s\" button in this dialog will offer advanced options which\n"
"are normally reserved for the expert user."
msgstr ""
"O LILO e o Grub s�o gerenciadores de inicia��o do GNU/Linux. Este est�gio "
"via de regra\n"
"� totalmente automatizado. De fato, o DrakX analisa o setor de boot do disco "
"r�gido e\n"
"age de acordo com o que encontra ali.:\n"
"\n"
" * Se um setor de boot windows � encontrado, ele substitui com um setor de "
"boot\n"
"LILO ou Grub. Portanto, voc� poder� iniciar o GNU/Linux ou outro sistema "
"operacional;\n"
"\n"
" * Se um setor LILO ou Grub � encontrado, ele ser� substitu�do por outro "
"novo;\n"
"\n"
"Em d�vida, o DrakX ir� mostrar um di�logo com v�rias op��es.\n"
"\n"
" * \"Gerenciador de inicia��o a ser usado\": voc� tem tr�s escolhas:\n"
"\n"
"    *\"GRUB\": se voc� prefere o GRUB (menu em modo texto).\n"
"\n"
"    *\"LILO com menu em modo gr�fico\" se voc� prefere o LILO em modo "
"gr�fico.\n"
"\n"
"    *\"LILO com menu em modo texto\": se voc� prefere o LILO em modo texto.\n"
"\n"
" * \"Dispositivo de inicia��o\": Na maioria dos casos voc� n�o ir� mudar o "
"default\n"
"(\"/dev/hda\"), mas se voc� preferir, o carregador de inicia��o poder� ser "
"instalado\n"
"num segundo disco r�gido (\"dev/hdb\"), ou mesmo num floppy (\"/dev/fd0\").\n"
"\n"
" * \"Tempo antes de iniciar o sistema default\": antes de iniciar o "
"computador, este\n"
"� o tempo dado ao usu�rio para escolher o sistema a ser iniciado.\n"
"\n"
"!! Repare que se voc� escolher n�o instalar um gerenciador de inicia��o "
"(selecionando\n"
"\"Cancelar\" neste ponto) voc� deve se certificar de que voc� tem um jeito "
"de iniciar o\n"
"seu sistema Mandrake Linux! Tamb�m, tenha certeza de que voc� sabe o que "
"est� \n"
"fazendo quando mudar qualquer default destes.!!\n"
"\n"
"Clicando em \"Avan�ado\" neste di�logo, aparecer�o v�rias op��es "
"avan�adas, \n"
"reservadas ao usu�rio experiente.\n"
"\n"
"Depois de ter configurado todos os par�metros do gerenciador de inicia��o na "
"m�quina,\n"
"voc� ver� as op��es de inicia��o dispon�veis no momento da inicia��o.\n"
"\n"
"Se houver outro sistema operacional instalado na m�quina, ser� "
"automaticamente\n"
"adicionado ao menu de inicia��o. Portanto voc� poder� depois, ajustar as "
"op��es \n"
"existentes. Selecione uma entrada e clique \"Modificar\" para modific�-la ou "
"remov�-la,\n"
"\"Adicionar\" cria uma nova entrada, e \"Feito\" vai para o pr�ximo passo da "
"instala��o."

#: ../../security/help.pm:1
#, c-format
msgid ""
"if set, send the mail report to this email address else send it to root."
msgstr ""

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Which configuration of XFree do you want to have?"
msgstr "Qual configura��o do XFree voc� quer ter?"

#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "More"
msgstr "Mais"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"This uses the same syntax as the command line program 'cdrecord'. 'cdrecord -"
"scanbus' would also show you the device number."
msgstr ""

#: ../../security/level.pm:1
#, c-format
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
"The security is now high enough to use the system as a server which can "
"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
"Internet, you should choose a lower level."
msgstr ""
"Com esse n�vel de seguran�a, o uso desse sistema como um servidor se tornou "
"poss�vel.\n"
"A seguran�a agora est� alta o suficiente para usar o sistema como um "
"servidor\n"
"que aceita conex�o de muitos clientes. Note:que se sua m�quina � apenas um "
"cliente que se conecta � Internet, deveria escolher um n�vel mais baixo."

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Account Password"
msgstr "Senha da conta"

#: ../../standalone/drakhelp:1
#, c-format
msgid ""
"%s cannot be displayed \n"
". No Help entry of this type\n"
msgstr ""

#: ../../any.pm:1
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
"System Commander).\n"
"\n"
"On which drive are you booting?"
msgstr ""
"Voc� decidiu instalar o iniciador do sistema em uma parti��o.\n"
"Isto implica que j� tem um carregador de sistema no disco r�gido (ex: System "
"Commander).\n"
"\n"
"Qual � o drive de inicializa��o?"

#: ../../keyboard.pm:1
#, c-format
msgid "Tajik keyboard"
msgstr "Teclado Tailand�s"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
"s to %s, your current spooler. All the configuration data (printer name, "
"description, location, connection type, and default option settings) is "
"overtaken, but jobs will not be transferred.\n"
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""

#: ../../standalone/drakfont:1
#, c-format
msgid "Font List"
msgstr "Lista das Fontes"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
" enable the bootloader.  If you don't see the bootloader prompt at\n"
" reboot, hold down Command-Option-O-F at reboot and enter:\n"
" setenv boot-device %s,\\\\:tbxi\n"
" Then type: shut-down\n"
"At your next boot you should see the bootloader prompt."
msgstr ""
"Voc� pode precisar mudar seu dispostivo de boot Open Firmware\n"
" para ativar o gerenciador de boot. Se voc� n�o ver o prompt dele ao\n"
" reiniciar, segure Command-Option-O-F ao reiniciar e digite:\n"
" setenv boot-device %s,\\\\:tbxi\n"
" Ent�o escreva: shut-down\n"
"No seu pr�ximo boot, voc� deve ver o prompt do gerenciador de boot."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
"The install will continue, but you'll\n"
" need to use BootX or some other means to boot your machine"
msgstr ""
"Voc� parece ter um OldWorld ou uma m�quina desconhedida,\n"
" o gerenciador de inicializa��o yaboot n�o funcionar� para voc�.\n"
"A instala��o continuar�, mas voc� precisar�\n"
" usar BootX ou outros meios para inicializar sua m�quina"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Select file"
msgstr "Selecione arquivo"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Choose the network or host on which the local printers should be made "
"available:"
msgstr ""
"Escolha a rede ou host no qual as impressoras locais dever�o ficar "
"dispon�veis:"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
"Este comando tamb�m pode ser usado no campo \"Comando de impress�o\" dos "
"di�logos de impress�o de muitos aplicativos. Mas n�o especifique o nome do "
"arquivo a ser impresso, pois ele � provido pelo aplicativo.\n"

#: ../../lang.pm:1
#, c-format
msgid "Japan"
msgstr "Jap�o"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Print option list"
msgstr "Lista de op��es da impressora"

#: ../../standalone/localedrake:1
#, c-format
msgid "The change is done, but to be effective you must logout"
msgstr "A altera��o foi feita, mas para ser efetivada voc� deve fazer logout."

#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Country / Region"
msgstr "Pa�s / Regi�o"

#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Search servers"
msgstr "Servidores de busca"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "NCP queue name missing!"
msgstr "Nome da fila NCP est� ausente!"

#: ../../standalone/net_monitor:1
#, c-format
msgid ""
"Warning, another internet connection has been detected, maybe using your "
"network"
msgstr ""
"Aten��o, outra conex�o de internet foi detectado, talvez utilizando sua rede"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom rotualdo \"%s\""

#: ../../standalone/drakbackup:1
#, c-format
msgid "CDRW media"
msgstr ""

#: ../../services.pm:1
#, c-format
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
msgstr ""
"Salva e restaura o entropy pool do sistema para melhor qualidade\n"
"na gera��o rand�mica de n�mero."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
"Falou ao checar o sistema de arquivos %s. Voc� quer reparar os erros? "
"(Cuidado, voc� pode perder dados)"

#: ../../share/advertising/07-server.pl:1
#, c-format
msgid "Turn your computer into a reliable server"
msgstr "Transforme a sua m�quina num servidor de confian�a"

#: ../../security/l10n.pm:1
#, c-format
msgid "Check empty password in /etc/shadow"
msgstr ""

#: ../../network/network.pm:1
#, c-format
msgid " (driver %s)"
msgstr " (driver %s)"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"Loopback file(s):\n"
"   %s\n"
msgstr ""
"Loopback file(s):\n"
"   %s\n"

#: ../../network/isdn.pm:1
#, c-format
msgid "I don't know"
msgstr "Eu n�o sei"

#: ../../services.pm:1
#, c-format
msgid "Start when requested"
msgstr ""

#: ../../printer/main.pm:1
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", host TCP/IP \"%s\", porta %s"

#: ../../standalone/drakautoinst:1
#, c-format
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
"\n"
"With that feature, you will be able to replay the installation you've "
"performed on this computer, being interactively prompted for some steps, in "
"order to change their values.\n"
"\n"
"For maximum safety, the partitioning and formatting will never be performed "
"automatically, whatever you chose during the install of this computer.\n"
"\n"
"Do you want to continue?"
msgstr ""
"Voc� vai configurar uma disquete de Auto-instala��o. Isto � um tanto "
"perigoso e deve ser utilizado com aten��o.\n"
"\n"
"Com isto, vai poder refazer a instala��o que fez neste computador, "
"respondendo a algumas perguntas, para personalizar os valores\n"
"\n"
"Para um m�ximo de seguran�a, as mudan�as nas parti��es e a formata��o nunca "
"ser�o feitas automaticamente, mesmo que o escolha ao instalar neste "
"computador.\n"
"\n"
"Deseja continuar ?"

#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Telugu"
msgstr "Tokelau"

#: ../../harddrake/sound.pm:1
#, c-format
msgid ""
"\n"
"\n"
"Your card currently use the %s\"%s\" driver (default driver for your card is "
"\"%s\")"
msgstr ""
"\n"
"\n"
"Sua placa usa atualmente o driver %s\"%s\" (o driver pad�o para sua placa � "
"\"%s\")"

#: ../../standalone/drakfont:1
#, c-format
msgid "Post Uninstall"
msgstr "P�s-desinstala��o"

#: ../../standalone/net_monitor:1
#, c-format
msgid "Connecting to Internet "
msgstr "Conectando � Internet"

#: ../../standalone/scannerdrake:1
#, c-format
msgid " ("
msgstr ""

#: ../../standalone/harddrake2:1
#, c-format
msgid "Cpuid level"
msgstr "N�vel cpuid"

#: ../../keyboard.pm:1
#, c-format
msgid "Mongolian (cyrillic)"
msgstr "Mongoliano (cir�lico)"

#: ../../standalone/drakfloppy:1
#, c-format
msgid "Add a module"
msgstr "Adicionar um m�dulo"

#: ../../standalone/drakconnect:1
#, c-format
msgid "Profile to delete:"
msgstr "Perfil a apagar:"

#: ../../standalone/net_monitor:1
#, c-format
msgid "Local measure"
msgstr "Medida local"

#: ../../network/network.pm:1
#, c-format
msgid "Warning : IP address %s is usually reserved !"
msgstr ""

#: ../../mouse.pm:1
#, c-format
msgid "busmouse"
msgstr "busmouse"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Account Login (user name)"
msgstr "Nome da conta (nome do usu�rio)"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Fdiv bug"
msgstr "Fdiv bug"

#: ../../network/drakfirewall.pm:1
#, c-format
msgid ""
"drakfirewall configurator\n"
"\n"
"Make sure you have configured your Network/Internet access with\n"
"drakconnect before going any further."
msgstr ""
"configurador drakfirewall\n"
"\n"
"Certifique-se de ter configurado o acesso � Rede/Internet com o\n"
"drakconnect antes de continuar."

#: ../../security/l10n.pm:1
#, c-format
msgid "Accept broadcasted icmp echo"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Uruguay"
msgstr "Uruguai"

#: ../../lang.pm:1
#, c-format
msgid "Benin"
msgstr "Benin"

#: ../../standalone/drakperm:1
#, c-format
msgid "Path selection"
msgstr "Sele��o do Path"

#: ../../standalone/scannerdrake:1
#, c-format
msgid "Name/IP address of host:"
msgstr "Nome/ Endere�o IP do host:"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"

#: ../../partition_table/raw.pm:1
#, c-format
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
"It means writing anything on the disk will end up with random, corrupted "
"data."
msgstr ""
"Algo ruim est� acontecendo com o seu drive. \n"
"O teste que verifica a integridade dos dados falhou. \n"
"Isso significa que gravar algo no disco resultar� em dados aleat�rios e "
"corruptos."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer host name or IP missing!"
msgstr "Falta o nome ou IP da impressora!"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Please check all users that you want to include in your backup."
msgstr ""
"Favor escolher todos os usu�rios que deseja incluir em sua c�pia de "
"seguran�a "

#: ../../standalone/scannerdrake:1
#, c-format
msgid ""
"The %s must be configured by printerdrake.\n"
"You can launch printerdrake from the Mandrake Control Center in Hardware "
"section."
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Bangladesh"
msgstr "Bangladesh"

#: ../../standalone/drakxtv:1
#, c-format
msgid "Japan (cable)"
msgstr "Jap�o (cabo)"

#: ../../standalone/drakfont:1
#, c-format
msgid "Initial tests"
msgstr "Testes iniciais"

#: ../../network/isdn.pm:1
#, c-format
msgid "Continue"
msgstr "Continuar"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Custom Restore"
msgstr "Recupera��o Personalizada"

#: ../../help.pm:1
#, c-format
msgid ""
"\"%s\": if a sound card is detected on your system, it is displayed here.\n"
"If you notice the sound card displayed is not the one that is actually\n"
"present on your system, you can click on the button and choose another\n"
"driver."
msgstr ""

#: ../../security/help.pm:1
#, fuzzy, c-format
msgid "Set the root umask."
msgstr "Senha de root"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Script-based"
msgstr "Baseado em script"

#: ../../install_any.pm:1 ../../partition_table.pm:1
#, c-format
msgid "Error reading file %s"
msgstr "Erro lendo arquivo %s"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "PLL setting:"
msgstr "Configura��o PLL:"

#: ../../install_interactive.pm:1 ../../install_steps.pm:1
#, c-format
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Voc� precisa ter uma parti��o FAT montada em /boot/efi"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid " on "
msgstr ""

#: ../../diskdrake/dav.pm:1
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "O in�cio da URL deve come�ar com http:// ou https://"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
"Pode indicar diretamente a URI para acessar � impressora. A URI deve ser "
"conforme �s especifica��es CUPS ou Foomatic. Note que todos os tipos de URI "
"s�o suportados por todos as filas de impress�o."

#: ../../any.pm:1
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Outros SO (SunOS...)"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Install/Upgrade"
msgstr "Instalar/Atualizar"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "%d packages"
msgstr "%d pacotes"

#: ../../standalone.pm:1
#, c-format
msgid ""
"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
"Backup and Restore application\n"
"\n"
"--default             : save default directories.\n"
"--debug               : show all debug messages.\n"
"--show-conf           : list of files or directories to backup.\n"
"--config-info         : explain configuration file options (for non-X "
"users).\n"
"--daemon              : use daemon configuration. \n"
"--help                : show this message.\n"
"--version             : show version number.\n"
msgstr ""

#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Domain Authentication Required"
msgstr "Autentica��o de Dom�nio Necess�ria"

#: ../../standalone/drakTermServ:1
#, c-format
msgid ""
"\n"
"\n"
" Thanks:\n"
"\t- LTSP Project http://www.ltsp.org\n"
"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
"\n"
msgstr ""
"\n"
"\n"
" Agradecimento:\n"
"\t- Projeto LTSP http://www.ltsp.org\n"
"\t- Michael Brown <mbrow\\@fensystems.co.ul>\n"

#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Costa Rica"
msgstr "Costa Rica"

#: ../../security/level.pm:1
#, c-format
msgid "Use libsafe for servers"
msgstr "Use lbsafe para servidores"

#: ../../keyboard.pm:1
#, c-format
msgid "Icelandic"
msgstr "Island�s"

#: ../../standalone.pm:1
#, c-format
msgid ""
"\n"
"Usage: %s  [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
"testing] [-v|--version] "
msgstr ""
"\n"
"Uso: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--testing] "
"[-v|--version] "

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid ""
"Maximum size\n"
" allowed for Drakbackup (MB)"
msgstr ""
"Favor digitar o tamanho m�ximo\n"
" permitido para o Drakbackup"

#: ../../my_gtk.pm:1
#, c-format
msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"

#: ../../standalone/drakboot:1
#, c-format
msgid "Lilo/grub mode"
msgstr "Modo lilo/grub"

#: ../../standalone/drakfloppy:1
#, c-format
msgid "Output"
msgstr "Sa�da"

#: ../../loopback.pm:1
#, c-format
msgid "Circular mounts %s\n"
msgstr "Monts circulares %s\n"

#: ../../lang.pm:1
#, c-format
msgid "Martinique"
msgstr "Martinica"

#: ../../standalone/drakbackup:1
#, c-format
msgid "HardDrive / NFS"
msgstr "Disco R�gido / NFS"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Old user list:\n"
msgstr ""
"\n"
"- Arquivos dos usu�rios :\n"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Search Backups"
msgstr ""

#: ../../modules/parameters.pm:1
#, c-format
msgid "a number"
msgstr "o n�mero"

#: ../../keyboard.pm:1
#, c-format
msgid "Swedish"
msgstr "Sueco"

#. -PO: the %s is the driver type (scsi, network, sound,...)
#: ../../modules/interactive.pm:1
#, c-format
msgid "Which %s driver should I try?"
msgstr "Qual driver %s eu deveria tentar?"

#: ../../standalone/logdrake:1
#, c-format
msgid ""
"You will receive an alert if one of the selected services is no longer "
"running"
msgstr ""

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Filesystem types:"
msgstr "Tipos de sistema de arquivo:"

#: ../../lang.pm:1
#, c-format
msgid "Northern Mariana Islands"
msgstr "Ilhas Marianas"

#: ../../printer/main.pm:1
#, c-format
msgid ", multi-function device on HP JetDirect"
msgstr ", dispositivo multi-functional na HP JetDirect"

#: ../../mouse.pm:1
#, c-format
msgid "none"
msgstr "nenhum"

#: ../../standalone/drakconnect:1
#, c-format
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr ""
"Nome do novo perfil a ser criado (o nome perfil � criado como uma c�pia do "
"atual) :"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Floppy"
msgstr "Disquete"

#: ../../standalone/drakfont:1
#, c-format
msgid "Ghostscript referencing"
msgstr "Referencia no Ghostscript"

#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Bootloader"
msgstr "Gerenciador de inicializa��o"

#: ../../security/l10n.pm:1
#, c-format
msgid "Authorize all services controlled by tcp_wrappers"
msgstr ""

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Move"
msgstr "Mover"

#: ../../any.pm:1 ../../help.pm:1
#, c-format
msgid "Bootloader to use"
msgstr "Gerenciador de inicializa��o a ser usado"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "SMB server host"
msgstr "Host do servidor SMB"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Name Servers:"
msgstr "Servidores de Nomes :"

#: ../../install_messages.pm:1
#, c-format
msgid ""
"\n"
"Warning\n"
"\n"
"Please read carefully the terms below. If you disagree with any\n"
"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
"to continue the installation without using these media.\n"
"\n"
"\n"
"Some components contained in the next CD media are not governed\n"
"by the GPL License or similar agreements. Each such component is then\n"
"governed by the terms and conditions of its own specific license. \n"
"Please read carefully and comply with such specific licenses before \n"
"you use or redistribute the said components. \n"
"Such licenses will in general prevent the transfer,  duplication \n"
"(except for backup purposes), redistribution, reverse engineering, \n"
"de-assembly, de-compilation or modification of the component. \n"
"Any breach of agreement will immediately terminate your rights under \n"
"the specific license. Unless the specific license terms grant you such\n"
"rights, you usually cannot install the programs on more than one\n"
"system, or adapt it to be used on a network. In doubt, please contact \n"
"directly the distributor or editor of the component. \n"
"Transfer to third parties or copying of such components including the \n"
"documentation is usually forbidden.\n"
"\n"
"\n"
"All rights to the components of the next CD media belong to their \n"
"respective authors and are protected by intellectual property and \n"
"copyright laws applicable to software programs.\n"
msgstr ""
"\n"
"Aviso\n"
"Favor ler atenciosamente os termos abaixo. Se voc� n�o concordar com "
"qualquer\n"
"trecho, voc� n�o est� autorizado a instalar o pr�ximo CD. Pressione "
"'Recusar' \n"
"para continuar a instala��o sem utilizar essa m�dia.\n"
"\n"
"\n"
"Alguns componentes contidos na pr�xima m�dia CD n�o est�o licenciados\n"
"sobre a GPL ou acordos similares. Cada componente est� ent�o licenciado\n"
"sobre termos e condi��es de sua pr�pria licen�a. \n"
"Favor ler atenciosamente e concordar com tais licen�as espec�ficas antes "
"de \n"
"usar ou redistribuir os componentes mencionados. \n"
"Tais licen�as ir�o, em geral, prevenir a transfer�ncia, duplica��o (exceto \n"
"para backup), redistribui��o, engenharia reversa, desmontar, decompila��o \n"
"ou modifica��o do componente. \n"
"Qualquer quebra no acordo ir� terminar imediatamente seus direitos sobre \n"
"a licen�a espec�fica. A n�o ser que a licen�a espec�fica lhe d� tais \n"
"direitos, voc� provavelmente n�o poder� instalar os programas em mais \n"
"de um sistema, ou adapt�-lo para ser utilizado em uma rede. Em d�vida, \n"
"favor contatar diretamente o ditribuidor ou editor do componente. \n"
"Transfer�ncia para terceiros ou a c�pia de tais componentes, incluindo \n"
"a documenta��o, normalmente � proibida.\n"
"\n"
"\n"
"Todos os direitos dos componentes na pr�xima m�dia CD pertencia a seus \n"
"respectivos autores e est�o protegidos sobre as leis de propriedade \n"
"intelectual e direitos autorais aplic�veis a programas software.\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr "Remover esta impressora do Star Office/OpenOffice.org/GIMP"

#: ../../services.pm:1
#, c-format
msgid ""
"Linux Virtual Server, used to build a high-performance and highly\n"
"available server."
msgstr ""
"Servidor Virtual Linux, utilizado para criar um servidor de alta\n"
"performance e alta acessibilidade."

#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "4 billion colors (32 bits)"
msgstr "4 bilh�es de cores (32 bits)"

#: ../../lang.pm:1
#, c-format
msgid "Micronesia"
msgstr "Micron�sia"

#: ../../steps.pm:1
#, c-format
msgid "License"
msgstr "Licen�a"

#: ../../standalone/drakbackup:1
#, c-format
msgid "This may take a moment to generate the keys."
msgstr "Pode demorar um pouco para gerar as chaves."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr "Auto detectar impressora (local, TCP/Socket, e impressoras SMB)"

#: ../../network/adsl.pm:1
#, c-format
msgid "Sagem (using pppoa) usb"
msgstr "Sagem (usando pppoa) usb"

#: ../../install_any.pm:1
#, c-format
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Ocorreu um erro - nenhum dispositivo v�lido foi encontrado para criar novos "
"sistema de arquivos. Favor checar seu hardware para a causa desse problema"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Starting the printing system at boot time"
msgstr "Iniciar o sistema de impress�o na inicializa��o"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Do you want to start the connection at boot?"
msgstr "Voc� quer iniciar sua conex�o ao iniciar?"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Processor ID"
msgstr "ID do processador"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "Sound trouble shooting"
msgstr "Resolu��o de problemas de som"

#: ../../keyboard.pm:1
#, c-format
msgid "Polish (qwerty layout)"
msgstr "Polon�s (layout QWERTY)"

#: ../../standalone/drakconnect:1
#, c-format
msgid "activate now"
msgstr "ativar agora"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
"\n"
"Drakbackup ativado via CD:\n"
"\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
"s security level.\n"
"\n"
"This printing system runs a daemon (background process) which waits for "
"print jobs and handles them. This daemon is also accessable by remote "
"machines through the network and so it is a possible point for attacks. "
"Therefore only a few selected daemons are started by default in this "
"security level.\n"
"\n"
"Do you really want to configure printing on this machine?"
msgstr ""
"Voc� est� prestes a instalar o sistema de impress�o %s em um sistema com "
"n�vel de seguran�a %s.\n"
"\n"
"Este sistema de impress�o executa um daemon (processo em segundo plano), que "
"aguarda as impress�es e as controla. Este daemon tamb�m � acess�vel por "
"m�quinas remotas atrav�s da rede, ent�o � um poss�vel ponto de ataques. "
"Sendo assim, apenas alguns daemons selecionados s�o iniciados por padr�o "
"neste n�vel de seguran�a. \n"
"\n"
"Voc� realmente deseja configurar impress�o nesta m�quina?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Host \"%s\", port %s"
msgstr "Host \"%s\", porta %s"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "This partition can't be used for loopback"
msgstr "Essa parti��o n�o pode ser usada para loopback"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "File already exists. Use it?"
msgstr "Arquivo j� existe. Utiliz�-lo?"

#: ../../standalone/net_monitor:1
#, c-format
msgid "received: "
msgstr "recebido: "

#: ../../keyboard.pm:1
#, c-format
msgid "Right Alt key"
msgstr "Tecla Alt da esqueda"

#: ../../standalone/harddrake2:1
#, c-format
msgid "the list of alternative drivers for this sound card"
msgstr "lista de drivers alternativos para sua placa de som"

#: ../../standalone/drakconnect:1
#, c-format
msgid "Gateway"
msgstr "Gateway"

#: ../../lang.pm:1
#, c-format
msgid "Tonga"
msgstr "Tonga"

#: ../../lang.pm:1
#, c-format
msgid "Tunisia"
msgstr "Tun�sia"

#: ../../standalone/scannerdrake:1
#, c-format
msgid "Scanner sharing"
msgstr "Compartilhamento de Scanner"

#: ../../standalone/drakconnect:1
#, c-format
msgid "Profile: "
msgstr "Perfil: "

#: ../../standalone/harddrake2:1
#, c-format
msgid ""
"Click on a device in the left tree in order to display its information here."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "Allow/Forbid autologin."
msgstr ""

#: ../../standalone/drakxtv:1
#, c-format
msgid "XawTV isn't installed!"
msgstr "XawTV n�o est� instalado!"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "N�o incluir arquivos cr�ticos (passwd, group, fstab)"

#: ../../standalone/harddrake2:1
#, c-format
msgid "old static device name used in dev package"
msgstr "nome antigo fixo usado no pacote dev"

#: ../../security/l10n.pm:1
#, c-format
msgid "Enable the logging of IPv4 strange packets"
msgstr ""

#: ../../any.pm:1
#, c-format
msgid "This label is already used"
msgstr "Esse r�tulo j� est� sendo utilizado"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
"detection of only the printers connected to this machine. So turn off the "
"auto-detection of network printers when you don't need it.\n"
"\n"
" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
"to set up your printer(s) now."
msgstr ""
"\n"
"Bem-vindo ao Ajudante de Configura��o de Impressora\n"
"\n"
"Este ajudante lhe auxiliar� a instalar sua(s) impressora(s) conectada(s) a "
"este computador ou conectadas diretamente � rede.\n"
"\n"
"Se voc� possuir alguma impressora conectada a este computador, as ligue para "
"que possam ser autodetectadas. As impressoras conectadas � rede tamb�m devem "
"ser conectadas e ligadas.\n"
"\n"
"Note que a auto-detec��o de impressoras em rede demora mais que a auto-"
"detec��o de impressoras conectas apenas a esta m�quina. Ent�o desligue a "
"auto-detec��o de impressoras em rede caso voc� n�o precise.\n"
"\n"
"Cliquem em \"Pr�ximo\" quando estiver pronto, e em \"Cancelar\" se voc� n�o "
"quiser configurar sua(s) impressora(s) agora."

#: ../../keyboard.pm:1
#, c-format
msgid "Greek (polytonic)"
msgstr ""

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Ap�s formatar a parti��o %s, todos os dados desta parti��o ser�o perdidos"

#: ../../standalone/net_monitor:1
#, c-format
msgid "Connection Time: "
msgstr "Tempo de conex�o: "

#: ../../standalone/livedrake:1
#, c-format
msgid ""
"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
"If you don't have it, press Cancel to avoid live upgrade."
msgstr ""
"Favor inserir o Cd-Rom de instala��o no seu drive e pressionar em Ok.\n"
"Se voc� n�o o tiver, pressione em Cancelar para sair da atualiza��o on-line."

#: ../../standalone/drakperm:1
#, c-format
msgid "Use group id for execution"
msgstr "Usar id do grupo para execu��o"

#: ../../any.pm:1
#, c-format
msgid "Choose the default user:"
msgstr "Escolha o usu�rio:"

#: ../../lang.pm:1
#, c-format
msgid "Gabon"
msgstr "Gab�o"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"Printers on remote CUPS servers do not need to be configured here; these "
"printers will be automatically detected."
msgstr ""
"\n"
"Impressoras em um servidor CUPS remoto n�o precisam ser configuradas aqui; "
"essas impressoras ser�o detectadas automaticamente."

#: ../../any.pm:1
#, c-format
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr ""
"Voc� pode escolher outros idiomas que estar�o dispon�veis ap�s a instala��o"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Directory (or module) to put the backup on this host."
msgstr ""
"Favor informar o diret�rio (ou m�dulo) para\n"
" colocar o backup neste host."

#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Domain"
msgstr "Dom�nio"

#: ../../any.pm:1
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Especifique o tamanho da RAM se necess�rio (%d MB encontrados)"

#: ../../help.pm:1
#, c-format
msgid ""
"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
"automated. DrakX will analyze the disk boot sector and act according to\n"
"what it finds there:\n"
"\n"
" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
"boot sector. This way you will be able to load either GNU/Linux or another\n"
"OS.\n"
"\n"
" * if a grub or LILO boot sector is found, it will replace it with a new\n"
"one.\n"
"\n"
"If it cannot make a determination, DrakX will ask you where to place the\n"
"bootloader."
msgstr ""

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Provider dns 2 (optional)"
msgstr "DNS 2 do provedor (opcional)"

#: ../../any.pm:1 ../../help.pm:1
#, c-format
msgid "Boot device"
msgstr "Dispositivo de boot"

#: ../../install_interactive.pm:1
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Qual parti��o voc� quer redimensionar?"

#: ../../lang.pm:1
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "Ilhas menores dos Estados Unidos"

#: ../../standalone/logdrake:1
#, c-format
msgid "A tool to monitor your logs"
msgstr "Uma ferramenta para monitorar seus logs"

#: ../../lang.pm:1
#, c-format
msgid "Djibouti"
msgstr "Dibuti"

#: ../../network/netconnect.pm:1
#, c-format
msgid "detected on port %s"
msgstr "detectado na porta %s"

#: ../../printer/data.pm:1
#, c-format
msgid "LPD"
msgstr "LDP"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Graphics card: %s\n"
msgstr "Placa Gr�fica: %s\n"

#: ../../security/l10n.pm:1
#, c-format
msgid "Accept icmp echo"
msgstr ""

#: ../../bootloader.pm:1
#, c-format
msgid "Yaboot"
msgstr "Yaboot"

#: ../../standalone/drakboot:1
#, c-format
msgid "Splash selection"
msgstr "Sele��o de tela"

#: ../../partition_table.pm:1
#, c-format
msgid "Extended partition not supported on this platform"
msgstr "Parti��o extendida n�o suportada nessa plataforma"

#: ../../network/isdn.pm:1
#, c-format
msgid "ISDN Configuration"
msgstr "Configura��o ISDN"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "high"
msgstr "Alto"

#: ../../standalone/drakgw:1
#, c-format
msgid "Internet Connection Sharing"
msgstr "Compartilhamento da Conex�o � Internet"

#: ../../standalone/logdrake:1
#, c-format
msgid "Choose file"
msgstr "Escolha arquivo"

#: ../../network/shorewall.pm:1
#, c-format
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fixes after installation."
msgstr ""
"Aten��o! Uma configura��o de firewall foi detectada. Talvez voc� ter� que "
"fazer alguma corre��o manual ap�s a instala��o."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Carta de impress�o/fotos acess�vel em \"%s\""

#: ../../security/l10n.pm:1
#, c-format
msgid "Daily security check"
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Do you want to enable printing on the printers mentioned above or on "
"printers in the local network?\n"
msgstr ""
"Voc� deseja ativar a impress�o das impressoras mencionadas acima ou das "
"impressoras da rede local?\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer default settings"
msgstr "Configura��es padr�es da impressora"

#: ../../standalone/harddrake2:1
#, c-format
msgid ""
"the WP flag in the CR0 register of the cpu enforce write proctection at the "
"memory page level, thus enabling the processor to prevent unchecked kernel "
"accesses to user memory (aka this is a bug guard)"
msgstr ""

#: ../../mouse.pm:1
#, c-format
msgid "Generic PS2 Wheel Mouse"
msgstr "Mouse Gen�rico PS2 com roda"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Removendo impressora antiga \"%s\"..."

#: ../../standalone/harddrake2:1
#, c-format
msgid "Select a device !"
msgstr "Selecione um dispositivo !"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remove selected server"
msgstr "Remover servidor selecionado"

#: ../../lang.pm:1
#, c-format
msgid "French Southern Territories"
msgstr "Territ�rios Franceses do Sul"

#: ../../standalone/harddrake2:1
#, c-format
msgid "the vendor name of the processor"
msgstr "o nome do fabricante do processador"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "Voc� deveria fazer backup de todos os dados desta parti��o"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Installing package %s"
msgstr "Instalando pacote %s"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Checking device and configuring HPOJ..."
msgstr "Checando dispositivo e configurando HPOJ..."

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"Para ter mais parti��es, favor deletar uma para poder criar uma parti��o "
"extendida"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
"\"man mtools\" on the command line for more info). You find the card's file "
"system under the drive letter \"p:\", or subsequent drive letters when you "
"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
"can switch between drive letters with the field at the upper-right corners "
"of the file lists."
msgstr ""
"Sua impressora foi configurada automaticamente para lhe dar acesso as drives "
"photo card a partir do seu PC. Agora voc� pode acessar os photo cards "
"utilizando o programa gr�fico \"MtoolsFM\" (Menu: \"Aplicativos\" -> "
"\"Ferramentas de arquivos\" -> \"Gerenciador de Arquivos MTools\") ou o "
"utilit�rio da linha de comando \"mtools\" (digite \"man mtools\" na linha de "
"comando para mais informa��es). Voc� encontrar� os arquivos do cart�o no "
"drive de letra \"p:\", ou no drive subsequente, caso voc� possua mais de uma "
"impressora HP com drives de photo card. Em \"MtoolsFM\" voc� pode mudar "
"entre os drives atrav�s do campo no canto superior direito da lista de "
"arquivos."

#: ../../steps.pm:1
#, c-format
msgid "Choose packages to install"
msgstr "Escolha pacotes a serem instalados"

#: ../../install_interactive.pm:1
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"Todas as parti��es que existem e todos os dados ser�o perdidos em disco %s"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr ""
"Seu sistema n�o tem espa�o suficiente para instala��o ou atualiza��o (%d > %"
"d)"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
"Toda impressora precisa de um nome (por exemplo: \"impressora\"). Os campos "
"Descri��o e Localiza��o n�o precisam ser preenchidos. Eles s�o coment�rios "
"para os usu�rios."

#: ../../help.pm:1
#, c-format
msgid ""
"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
"information on how to setup a new printer. The interface presented there is\n"
"similar to the one used during installation."
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Bhutan"
msgstr "But�o"

#: ../../standalone/drakgw:1
#, c-format
msgid "Network interface"
msgstr "Interface de rede"

#: ../../standalone/net_monitor:1
#, c-format
msgid "Disconnection from Internet failed."
msgstr "Desconex�o da Internet falhou."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Reading printer data..."
msgstr "Lendo os dados da impressora..."

#: ../../keyboard.pm:1
#, c-format
msgid "Korean keyboard"
msgstr "Teclado Koreano"

#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
#, c-format
msgid "Not connected"
msgstr "N�o conectado"

#: ../../keyboard.pm:1
#, c-format
msgid "Greek"
msgstr "Grego"

#: ../../lang.pm:1
#, c-format
msgid "Saint Kitts and Nevis"
msgstr "Saint Kitts e Nevis"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Transfer successful\n"
"You may want to verify you can login to the server with:\n"
"\n"
"ssh -i %s %s\\@%s\n"
"\n"
"without being prompted for a password."
msgstr ""
"Transfer�ncia sucedida\n"
"Voc� pode verificar que voc� pode logar no servidor com:\n"
"\n"
"ssh -i %s %s\\@%s\n"
"\n"
"sem ser perguntado sobre uma senha."

#: ../../any.pm:1
#, c-format
msgid "Enable OF Boot?"
msgstr "Permitir OF Boot?"

#: ../../fsedit.pm:1
#, c-format
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Voc� n�o pode usar JFS em parti��es menores que 16MB"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Erase your RW media (1st Session)"
msgstr "Por favor escolha se quer apagar a m�dia RW (1� Sess�o)"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Atualiza��o Vertical do Monitor: %s\n"

#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Mount point"
msgstr "Ponto de Montagem"

#: ../../Xconfig/test.pm:1
#, c-format
msgid ""
"An error occurred:\n"
"%s\n"
"Try to change some parameters"
msgstr ""
"Um erro ocorreu:\n"
"%s\n"
"Tente mudar alguns par�metros"

#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "User :"
msgstr "usu�rio :"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Restore system"
msgstr "Restaurar o sistema"

#: ../../standalone/scannerdrake:1
#, c-format
msgid ""
"These are the machines on which the locally connected scanner(s) should be "
"available:"
msgstr ""

#: ../../standalone/drakpxe:1
#, c-format
msgid "The DHCP end ip"
msgstr "IP final DHCP"

#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Another one"
msgstr "Mais outra"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Drakbackup"
msgstr "Drakbackup"

#: ../../lang.pm:1
#, c-format
msgid "Colombia"
msgstr "Col�mbia"

#: ../../standalone/drakgw:1
#, c-format
msgid ""
"Current configuration of `%s':\n"
"\n"
"Network: %s\n"
"IP address: %s\n"
"IP attribution: %s\n"
"Driver: %s"
msgstr ""
"Configura��o atual de `%s':\n"
"\n"
"Rede: %s\n"
"Endere�o IP: %s\n"
"Atributo IP: %s\n"
"Driver: %s"

#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Plug'n Play"
msgstr "Plug'n Play"

#: ../../lang.pm:1
#, c-format
msgid "Reunion"
msgstr "Reunion"

#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Details"
msgstr "Detalhes"

#: ../../network/tools.pm:1
#, c-format
msgid "For security reasons, it will be disconnected now."
msgstr "Por raz�es de seguran�a, ser� desconectado agora."

#: ../../standalone/drakbug:1
#, c-format
msgid "Synchronization tool"
msgstr "Ferramenta de sincroniza��o"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Checking your system..."
msgstr "Checando seu sistema..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Print"
msgstr "Impressora"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
"Insira a fita com o nome de volume %s\n"
" do dispositivo de fita %s"

#: ../../lang.pm:1
#, c-format
msgid "Mongolia"
msgstr "Mong�lia"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Mounted\n"
msgstr "Montado\n"

#: ../../help.pm:1
#, c-format
msgid "Graphical Interface"
msgstr "Interface gr�fica"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Restore Users"
msgstr "Restaurar os Usu�rios"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Encryption key for %s"
msgstr "Chave criptografada para %s"

#: ../../services.pm:1
#, c-format
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
"machines\n"
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
"O portmapper gerencia conex�es RPC, que s�o usadas por\n"
"protocolos como NFS ou NIS. O servidor portmap deve estar rodando em "
"m�quinas\n"
"que ser�o os servidores para os protocolos que utilizam o mecanismo RPC."

#: ../../standalone/harddrake2:1
#, c-format
msgid "Detected hardware"
msgstr "Hardware detectado"

#: ../../lang.pm:1
#, c-format
msgid "Mauritius"
msgstr "Ilhas Maur�cio"

#: ../../keyboard.pm:1
#, c-format
msgid "Myanmar (Burmese)"
msgstr "Myanmar (Birman�s)"

#: ../../fs.pm:1
#, c-format
msgid "Enabling swap partition %s"
msgstr "Habilitando parti��o Swap %s"

#: ../../install_interactive.pm:1
#, c-format
msgid "There is no FAT partition to use as loopback (or not enough space left)"
msgstr ""
"N�o existem parti��es FAT para usar como loopback (ou n�o existe espa�o "
"suficiente)"

#: ../../keyboard.pm:1
#, c-format
msgid "Armenian (old)"
msgstr "Arm�nio (velho)"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
"Click \"Transfer\" to overwrite it.\n"
"You can also type a new name or skip this printer."
msgstr ""
"Uma impressora chamada \"%s\" j� existe em %s \n"
"Clique em \"Transferir\" para sobregrav�-la.\n"
"Voc� tamb�m pode escrever um novo nome, ou pular essa impressora."

#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
"platform."
msgstr ""
"Encontre as solu��es aos seus problemas atrav�s plataforma de suporte online "
"da MandrakeSoft"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ", host \"%s\", port %s"
msgstr ", host \"%s\", porta %s"

#: ../../lang.pm:1
#, c-format
msgid "Monaco"
msgstr "M�naco"

#: ../../security/l10n.pm:1
#, c-format
msgid "Do not send mails when uneeded"
msgstr ""

#: ../../install_interactive.pm:1
#, c-format
msgid "Partitioning failed: %s"
msgstr "O particionamento falhou: %s"

#: ../../fs.pm:1 ../../swap.pm:1
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formata��o de %s falhou"

#: ../../standalone/drakxtv:1
#, c-format
msgid "Canada (cable)"
msgstr "Canad� (cabo)"

#: ../../help.pm:1
#, c-format
msgid "Upgrade"
msgstr "Atualizar"

#: ../../help.pm:1
#, c-format
msgid "Workstation"
msgstr "Esta��o de Trabalho"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
"Instalando pacote %s\n"
"%d%%"

#: ../../lang.pm:1
#, c-format
msgid "Kyrgyzstan"
msgstr "Quirguist�o"

#: ../../help.pm:1
#, c-format
msgid "With basic documentation"
msgstr "Com documenta��o b�sica"

#: ../../services.pm:1
#, c-format
msgid "Anacron is a periodic command scheduler."
msgstr "Anacron, um agendador de comando peri�dicos"

#: ../../install_interactive.pm:1
#, c-format
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
"Voc� deve ter uma parti��o root.\n"
"Para isso, crie um parti��o (ou click em uma existem).\n"
"Ent�o escolha a��o ``Ponto de montagem'' e coloque como `/'"

#: ../../network/network.pm:1
#, c-format
msgid "Proxy should be http://..."
msgstr "O proxy deve ser http://..."

#: ../../lang.pm:1 ../../standalone/drakxtv:1
#, c-format
msgid "South Africa"
msgstr "�frica do Sul"

#: ../../lang.pm:1
#, c-format
msgid "Western Sahara"
msgstr "Sahara do oeste."

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Eject tape after the backup"
msgstr "Use a fita para c�pia de seguran�a"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Etherboot Floppy/ISO"
msgstr "Etherboot Disquete/ISO"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Modify printer configuration"
msgstr "Modificar a configura��o da impressora"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose a partition"
msgstr "Escolher parti��o"

#: ../../standalone/drakperm:1
#, c-format
msgid "Edit current rule"
msgstr "Editar regra atual"

#: ../../standalone/drakbackup:1
#, c-format
msgid "%s"
msgstr ""

#: ../../mouse.pm:1
#, c-format
msgid "Please test the mouse"
msgstr "Favor testar o mouse"

#: ../../fs.pm:1
#, c-format
msgid ""
"Do not update inode access times on this file system\n"
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""

#: ../../standalone/drakperm:1
#, c-format
msgid "Sticky-bit"
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid "Other Media"
msgstr "Outra M�dia"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup system files"
msgstr "Copiar arquivos de sistema"

#: ../../mouse.pm:1
#, c-format
msgid "Logitech MouseMan+"
msgstr "Logitech MouseMan/FistMouse (serial)"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Sector"
msgstr "Setor"

#: ../../lang.pm:1
#, c-format
msgid "Qatar"
msgstr "Catar"

#: ../../any.pm:1
#, c-format
msgid "LDAP Base dn"
msgstr ""

#: ../../install_steps_gtk.pm:1
#, c-format
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Voc� n�o pode selecionar esse pacote pois n�o existe espa�o livre para "
"instal�-lo"

#: ../../help.pm:1
#, c-format
msgid "generate auto-install floppy"
msgstr "criar disquete de auto instala��o"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Dialing mode"
msgstr "Modo de discagem"

#: ../../services.pm:1
#, c-format
msgid "File sharing"
msgstr "Compartilhamento de arquivos"

#: ../../any.pm:1
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Limpar /tmp a cada inicializa��o"

#: ../../lang.pm:1
#, c-format
msgid "Malawi"
msgstr "Malawi"

#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "local config: false"
msgstr "Arquivos local"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Please choose your type of mouse."
msgstr "Favor escolher o tipo do seu mouse."

#: ../../standalone/harddrake2:1
#, c-format
msgid "class of hardware device"
msgstr "classe do dispositivo de hardware"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"These are the machines and networks on which the locally connected printer"
"(s) should be available:"
msgstr ""
"Estas s�o as m�quinas e redes nas quais a(s) impressora(s) conectada(s) "
"localmente estar�(�o) dispon�veis:"

#: ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "United Kingdom"
msgstr "Reino Unido"

#: ../../services.pm:1
#, c-format
msgid "running"
msgstr "iniciado"

#: ../../standalone/draksec:1
#, c-format
msgid "default"
msgstr "padr�o"

#: ../../lang.pm:1
#, c-format
msgid "Indonesia"
msgstr "Indon�sia"

#: ../../standalone/drakxtv:1
#, c-format
msgid "France [SECAM]"
msgstr "Fran�a [SECAM]"

#: ../../any.pm:1
#, c-format
msgid "restrict"
msgstr "restrito"

#: ../../pkgs.pm:1
#, c-format
msgid "must have"
msgstr "tem que ter"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Senegal"
msgstr "Senegal"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Command line"
msgstr "Linha de comando"

#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
"other \"goodies\", are available on our e-store:"
msgstr ""
"A nossa linha completa de solu��es Linux, assim como ofertas especiais, "
"est�o dispon�veis em linha na nossa loja  virtual:"

#: ../../any.pm:1
#, c-format
msgid "access to administrative files"
msgstr "Acesso a arquivos administrativos"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Error during sendmail.\n"
"  Your report mail was not sent.\n"
"  Please configure sendmail"
msgstr ""
"Erro no sendmail.\n"
"  Sua mensagem de relat�rio n�o foi enviada.\n"
"  Favor configurar o sendmail"

#: ../../fs.pm:1
#, c-format
msgid ""
"Do not allow set-user-identifier or set-group-identifier\n"
"bits to take effect. (This seems safe, but is in fact rather unsafe if you\n"
"have suidperl(1) installed.)"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Montserrat"
msgstr "Montserrat"

#: ../../help.pm:1
#, c-format
msgid "Automatic dependencies"
msgstr ""

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Swap"
msgstr "Swap"

#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "Custom settings"
msgstr "Particionamento de disco personalizada"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Restore Other"
msgstr "Restaurar Outros"

#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "TV card"
msgstr "Placa de TV"

#: ../../printer/main.pm:1
#, c-format
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Imprimir em um Servidor SMB/Windows 95/98/NT"

#: ../../standalone/scannerdrake:1
#, c-format
msgid ", "
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remove selected host/network"
msgstr "Remover host/rede selecionado"

#: ../../services.pm:1
#, c-format
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
msgstr ""
"Postfix � um Agente de Transporte de Correio, que � um programa que "
"movimenta as mensagens entre uma m�quina e outra."

#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Uzbek (cyrillic)"
msgstr "Serbo (cir�lico)"

#: ../../keyboard.pm:1
#, c-format
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
"(eg: latin and non latin)"
msgstr ""
"Aqui voc� pode escolher a tecla ou a combina��o de tecla que ir� \n"
"permitir mudar entre os diferentes layouts de teclado \n"
"(ex.: latino e n�o latino)"

#: ../../network/network.pm:1
#, c-format
msgid "Network Hotplugging"
msgstr "Rede Hotplugging"

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, reports check result to tty."
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid "Restore From CD"
msgstr "Restaurar do CD"

#: ../../standalone/drakgw:1
#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
"this computer's Internet connection.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
"\n"
"Note: you need a dedicated Network Adapter to set up a Local Area Network "
"(LAN)."
msgstr ""
"Voc� est� prestes a configurar o compartilhamento da conex�o � Internet do \n"
"seu computador. Com este recurso, outro computadores do sua rede local ser�o "
"capazes de usar a conex�o � Internet deste computador.\n"
"\n"
"Certifique-se, antes de continuar, de ter configurado seu acesso � Rede/"
"Internet utilizando o drakconnect.\n"
"\n"
"Nota: voc� precisa de um Adaptador de Rede dedicado para criar um Rede Local "
"(LAN)."

#: ../../network/ethernet.pm:1
#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr ""
"Favor escolher qual adaptador de rede voc� quer usar para se conectar � "
"Internet"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Photo memory card access on your HP multi-function device"
msgstr "Acesso do photo memory card em seu dispositivo multi-funcional HP"

#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
msgid ""
"Enhance your computer performance with the help of a selection of partners "
"offering professional solutions compatible with Mandrake Linux"
msgstr ""
"Aumente o desempenho de seu computador com a ajuda de uma sele��o de "
"parceiros que oferecem as solu��es profissionais compat�veis com Mandrake "
"Linux"

#: ../../standalone/drakgw:1
#, c-format
msgid "Internet Connection Sharing is now disabled."
msgstr "O Compartilhamento da Conex�o � Internet agora est� desativado."

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, verify checksum of the suid/sgid files."
msgstr ""

#: ../../keyboard.pm:1
#, c-format
msgid "Latin American"
msgstr "Latino Americano"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Japanese text printing mode"
msgstr "Mudar o sistema de impress�o"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Old device file"
msgstr "Arquivo antigo do dispositivo"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Info: "
msgstr "Informa��o: "

#: ../../interactive/stdio.pm:1
#, c-format
msgid "Button `%s': %s"
msgstr "Bot�o `%s': %s"

#: ../../any.pm:1 ../../interactive.pm:1 ../../harddrake/sound.pm:1
#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
#: ../../standalone/service_harddrake:1
#, c-format
msgid "Please wait"
msgstr "Por favor aguarde"

#: ../../mouse.pm:1
#, c-format
msgid "Genius NetMouse"
msgstr "Genius NetMouse"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "None"
msgstr "Nenhum"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "The entered IP is not correct.\n"
msgstr "O IP digitado n�o � correto.\n"

#: ../../standalone/drakconnect:1
#, c-format
msgid "Ethernet Card"
msgstr "Placa Ethernet"

#: ../../my_gtk.pm:1 ../../services.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Info"
msgstr "Informa��o"

#: ../../help.pm:1 ../../install_steps_gtk.pm:1
#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Install"
msgstr "Instalar"

#: ../../help.pm:1
#, c-format
msgid ""
"Click on \"%s\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
"to recover any data and partitions present on this hard drive, including\n"
"any Windows data.\n"
"\n"
"Click on \"%s\" to stop this operation without losing any data and\n"
"partitions present on this hard drive."
msgstr ""
"Clique em \"%s\" se voc� quiser apagar todos os dados e parti��o \n"
"existentes nesse disco r�gido. Tenha cuidado, pois ap�s clicar em \"%s\", \n"
"voc� n�o ser� capaz de recuperar os dados/parti��es existentes nesse\n"
"disco r�gido, incluindo quaisquer dados do Windows.\n"
"\n"
"Clique em \"%sr\" para cancelar essa opera��o sem perder qualquer dado\n"
"e/ou parti��o presente nesse disco r�gido."

#: ../../steps.pm:1
#, c-format
msgid "Exit install"
msgstr "Sair da instala��o"

#: ../../standalone/drakgw:1
#, c-format
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
"Tudo foi configurado.\n"
"Voc� agora pode compartilhar sua conex�o com outros computadores na sua Rede "
"Local (LAN), usando a configura��o autom�tica de rede (DHCP)."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Remote CUPS server"
msgstr "Sevidor CUPS remoto"

#: ../../mouse.pm:1
#, c-format
msgid "Sun - Mouse"
msgstr "Sun - Mouse"

#: ../../standalone/drakgw:1
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
"\n"
"%s\n"
"\n"
"I am about to setup your Local Area Network with that adapter."
msgstr ""
"Existe apenas um adaptador de rede configurado em seu sistema:\n"
"\n"
"%s\n"
"\n"
"Irei configurar sua Rede Local (LAN) com esse adaptador."

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Minimal install"
msgstr "Instala��o m�nima"

#: ../../lang.pm:1
#, c-format
msgid "Ethiopia"
msgstr "Eti�pia"

#: ../../security/l10n.pm:1
#, c-format
msgid "Enable \"crontab\" and \"at\" for users"
msgstr ""

#: ../../keyboard.pm:1
#, c-format
msgid "Devanagari"
msgstr "Devanagari"

#: ../../standalone/harddrake2:1
#, c-format
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
"- dispositivos PCI : isto indica o slot, o dispositivo e a fun��o desta "
"placa\n"
"- dispositivos EIDE : o dispositivo � um mestre ou um escravo\n"
"- dispositivos SCSI : o bus scsi o os ids scsi do dispositivo"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Tamanho total: %d / %d MB"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "disabled"
msgstr "desativado"

#: ../../standalone/scannerdrake:1
#, c-format
msgid "Search for new scanners"
msgstr "Procurar por novos scanners"

#: ../../standalone/drakgw:1
#, c-format
msgid "Disabling servers..."
msgstr "Desativando servidores..."

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr ""
"Por favor escolha o intervalo de\n"
"tempo entre cada c�pia de seguran�a"

#: ../../standalone/drakboot:1
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "A Instala��o do %s falhou. Ocorreram os seguintes erros:"

#: ../../standalone/drakboot:1
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr "N�o � poss�vel carregar mkinitrd -f /boot/initrd-%s.img %s."

#: ../../install_any.pm:1
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
"\n"
"\n"
"These servers are activated by default. They don't have any known security\n"
"issues, but some new ones could be found. In that case, you must make sure\n"
"to upgrade as soon as possible.\n"
"\n"
"\n"
"Do you really want to install these servers?\n"
msgstr ""
"Voc� selecionou o(s) seguinte(s) servidores(s): %s\n"
"\n"
"\n"
"Esses servidores s�o ativados por padr�o. Eles n�o possuem nenhuma falha\n"
"de seguran�a conhecida, mas pode existir uma nova. Nesse caso, voc� deve\n"
"atualiz�-lo o mais cedo poss�vel.\n"
"\n"
"\n"
"Voc� realmente quer instalar esses servidores?\n"

#: ../../printer/main.pm:1
#, c-format
msgid "Network printer (TCP/Socket)"
msgstr "Impressora da rede (TCP/Socket)"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup User files..."
msgstr "C�pia de seguran�a dos arquivos dos usu�rios..."

#: ../../steps.pm:1
#, c-format
msgid "Install system"
msgstr "Instalar sistema"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "First DNS Server (optional)"
msgstr "Primeiro Servidor DNS (opcional)"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Alternatively, you can specify a device name/file name in the input line"
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
"symlink /etc/security/msec/server to point to\n"
"/etc/security/msec/server.<SERVER_LEVEL>.\n"
"\n"
"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
"add a service if it is present in the file during the installation of\n"
"packages."
msgstr ""

#: ../../keyboard.pm:1
#, c-format
msgid "Russian (Phonetic)"
msgstr "Russo (Fon�tico)"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "dhcpd Config..."
msgstr "Configura��od do DHCP..."

#: ../../standalone/drakgw:1
#, c-format
msgid "The setup has already been done, but it's currently disabled."
msgstr "A configura��o j� foi feita, mas est� desativada."

#: ../../any.pm:1
#, c-format
msgid "LILO/grub Installation"
msgstr "Instala��o do LILO/grub"

#: ../../keyboard.pm:1
#, c-format
msgid "Israeli"
msgstr "Israelense"

#: ../../standalone/logdrake:1
#, c-format
msgid "load setting"
msgstr "carregar configura��o"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Impressora \"%s\" no servidor \"%s\""

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Floppy can be removed now"
msgstr "O disquete pode ser retirado agora"

#: ../../help.pm:1
#, c-format
msgid "Truly minimal install"
msgstr "Instala��o realmente m�nima"

#: ../../lang.pm:1
#, c-format
msgid "Denmark"
msgstr "Dinamarca"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Moving partition..."
msgstr "Movendo parti��o..."

#: ../../standalone/drakgw:1
#, c-format
msgid "(This) DHCP Server IP"
msgstr "O IP deste servidor DHCP"

#: ../../Xconfig/test.pm:1
#, c-format
msgid "Test of the configuration"
msgstr "Testar configura��o"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing %s ..."
msgstr "Instalando %s ..."

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"If you told the installer that you wanted to individually select packages,\n"
"it will present a tree containing all packages classified by groups and\n"
"subgroups. While browsing the tree, you can select entire groups,\n"
"subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right to let you know the purpose of the package.\n"
"\n"
"!! If a server package has been selected, either because you specifically\n"
"chose the individual package or because it was part of a group of packages,\n"
"you will be asked to confirm that you really want those servers to be\n"
"installed. By default Mandrake Linux will automatically start any installed\n"
"services at boot time. Even if they are safe and have no known issues at\n"
"the time the distribution was shipped, it is entirely possible that that\n"
"security holes were discovered after this version of Mandrake Linux was\n"
"finalized. If you do not know what a particular service is supposed to do\n"
"or why it is being installed, then click \"%s\". Clicking \"%s\" will\n"
"install the listed services and they will be started automatically by\n"
"default during boot. !!\n"
"\n"
"The \"%s\" option is used to disable the warning dialog which appears\n"
"whenever the installer automatically selects a package to resolve a\n"
"dependency issue. Some packages have relationships between each other such\n"
"that installation of a package requires that some other program is also\n"
"rerquired to be installed. The installer can determine which packages are\n"
"required to satisfy a dependency to successfully complete the installation.\n"
"\n"
"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
"package list created during a previous installation. This is useful if you\n"
"have a number of machines that you wish to configure identically. Clicking\n"
"on this icon will ask you to insert a floppy disk previously created at the\n"
"end of another installation. See the second tip of last step on how to\n"
"create such a floppy."
msgstr ""
"Finalmente, dependendo da sua escolha em selecionar ou n�o pacotes "
"individuais,\n"
"voc� ser� levado a uma �rvore contendo todos os pacotes classificados por "
"grupos\n"
"e subgrupos. Navegando na �rvore, voc� poder� selecionar grupos inteiros, "
"sub\n"
"grupos ou pacotes individuais.\n"
"\n"
"Quando voc� seleciona um pacote individual na �rvore, uma breve descri��o "
"aparecer�\n"
"� direita. Quando a sua sele��o estiver conclu�da, clique \"Instalar\" , "
"que\n"
"ir� iniciar a instala��o. Dependendo da velocidade do seu hardware e do "
"n�mero\n"
"de pacotes  a serem instalados, poder� levar algum tempo. Uma estimativa de "
"tempo\n"
"necess�rio � mostrada na tela, para ajud�-lo a pensar se h� tempo para uma "
"x�cara\n"
"de caf�.\n"
"\n"
"!! Se um pacote de servidor foi selecionado, intencionalmente, ou por ser "
"parte de um\n"
"grupo, voc� ser� instado a confirmar que realmente deseja estes servidores "
"instalados.\n"
"No Mandrake Linux quaisquer servidores instalados ser�o iniciados por padr�o "
"no boot.\n"
"Mesmo se eles s�o seguros e n�o possuem quaisquer d�vidas a respeito quando "
"da\n"
"distribui��o do pacote, � poss�vel que brechas de seguran�a hajam sido "
"descobertas\n"
"depois que esta vers�o do Mandrake Linux foi conclu�da. Se voc� n�o sabe o "
"que um\n"
"certo servi�o faz, ou porque est� sendo instalado, clique em \"No\". "
"Clicando em  \"Sim\"\n"
"ir� automaticamente instalar os servi�os listados e eles ser�o iniciados "
"automaticamente\n"
"por Padr�o.\n"
"\n"
"A op��o \"Depend�ncias autom�ticas\" simplesmente desabilita a caixa de "
"di�logo\n"
"de aviso que aparece quando o instalador automaticamente seleciona um "
"pacote. Isto\n"
"ocorre porque ele determina que � necess�rio satisfazer uma depend�ncia com "
"outro\n"
"pacote para completar a instala��o corretamente.\n"
"\n"
"O pequeno �cone de disco flex�vel no fim da lista permite carregar uma lista "
"de pacotes\n"
"escolhidos durante uma instala��o pr�via. Clicando neste �cone voc� poder� "
"inserir\n"
"um disco remov�vel criado previamente no fim de uma instala��o. Veja a "
"segunda dica\n"
"do �ltimo passo para criar um floppy assim."

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Escolha a sua chave criptogr�fica do sistema de arquivos"

#: ../../lang.pm:1
#, c-format
msgid "Sierra Leone"
msgstr "Serra Leoa"

#: ../../lang.pm:1
#, c-format
msgid "Andorra"
msgstr "Andorra"

#: ../../lang.pm:1
#, c-format
msgid "Botswana"
msgstr "Botswana"

#: ../../standalone/draksec:1
#, c-format
msgid "(default value: %s)"
msgstr "(valor padr�o: %s)"

#: ../../security/help.pm:1
#, c-format
msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Alternative test page (Letter)"
msgstr "P�gina de teste alternativa (Carta)"

#: ../../standalone/drakgw:1
#, c-format
msgid ""
"DHCP Server Configuration.\n"
"\n"
"Here you can select different options for the DHCP server configuration.\n"
"If you don't know the meaning of an option, simply leave it as it is.\n"
"\n"
msgstr ""
"Configura��o do Servidor DHCP.\n"
"\n"
"Aqui voc� pode escolher v�rias op��es diferentes para a configura��o do\n"
"servidor DHCP. Caso n�o saiba o significado de uma op��o, n�o mexa nela.\n"
"\n"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Choose an X server"
msgstr "Escolha um servidor X"

#: ../../install_interactive.pm:1
#, c-format
msgid "Swap partition size in MB: "
msgstr "Tamanho da parti��o swap em MB: "

#: ../../standalone/drakbackup:1
#, c-format
msgid "No changes to backup!"
msgstr "Nenhuma mudan�a nos arquivos!"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Formatted\n"
msgstr "Formatado\n"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Type of install"
msgstr "Tipo de instala��o"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Impressora \"%s\" em um servidor SMB/Windows \"%s\""

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
"\n"
"- O daemon (%s) inclui :\n"

#: ../../modules/parameters.pm:1
#, c-format
msgid "%d comma separated numbers"
msgstr "%d n�meros separado por v�rgula"

#: ../../services.pm:1
#, c-format
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
msgstr ""
"O protocolo rusers pertmite que os usu�rios da rede identifiquem\n"
"quem est� logado na m�quina correspondente do outro."

#: ../../standalone/drakautoinst:1
#, c-format
msgid "Automatic Steps Configuration"
msgstr "Configura��o das Etapas Autom�ticas"

#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
"Want to know more and to contribute to the Open Source community? Get "
"involved in the Free Software world!"
msgstr ""
"Voc� gostaria de saber mais sobre a comunidade de C�digos Abertos? Junte-se "
"ao mundo dos Programas Livres!"

#: ../../lang.pm:1
#, c-format
msgid "Barbados"
msgstr "Barbados"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Please select data to backup..."
msgstr "Por favor escolha as dados que deseja para a c�pia de seguran�a..."

#: ../../standalone/net_monitor:1
#, c-format
msgid ""
"Connection failed.\n"
"Verify your configuration in the Mandrake Control Center."
msgstr ""
"Conex�o falhou.\n"
"Verifique sua configura��o no Centro de Controle Mandrake."

#: ../../standalone/net_monitor:1
#, c-format
msgid "received"
msgstr "recebido"

#: ../../security/l10n.pm:1
#, c-format
msgid "Enable su only from the wheel group members or for any user"
msgstr ""

#: ../../standalone/logdrake:1
#, c-format
msgid "/File/_New"
msgstr "/Arquivo/_Novo"

#: ../../standalone/drakgw:1
#, c-format
msgid "The DNS Server IP"
msgstr "O DNS do servidor IP"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "IP Range End:"
msgstr "Fim da Zona IP :"

#: ../../security/level.pm:1
#, c-format
msgid "High"
msgstr "Alto"

#: ../../any.pm:1
#, c-format
msgid "NoVideo"
msgstr "Sem v�deo"

#: ../../standalone/harddrake2:1
#, c-format
msgid "this field describes the device"
msgstr "este campo descreve o dispositivo"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr "Adicionando impressora ao Star Office/OpenOffice.org/GIMP"

#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Local Printers"
msgstr "Impressoras locais"

#: ../../standalone/drakpxe:1
#, c-format
msgid "Installation image directory"
msgstr "Diret�rio da imagem da instala��o"

#: ../../any.pm:1
#, c-format
msgid "NIS Server"
msgstr "Servidor NIS"

#: ../../standalone/scannerdrake:1
#, c-format
msgid "Port: %s"
msgstr "Porta: %s"

#: ../../lang.pm:1
#, c-format
msgid "Spain"
msgstr "Espanha"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "local config: %s"
msgstr ""

#: ../../any.pm:1
#, c-format
msgid "This user name has already been added"
msgstr "Esse usu�rio j� foi adicionado"

#: ../../interactive.pm:1
#, c-format
msgid "Choose a file"
msgstr "Escolher o arquivo"

#: ../../standalone/drakconnect:1
#, c-format
msgid "Apply"
msgstr "Aplicar"

#: ../../standalone/scannerdrake:1
#, c-format
msgid "Auto-detect available ports"
msgstr "Auto- detectado portas dispon�veis"

#: ../../lang.pm:1
#, c-format
msgid "San Marino"
msgstr "San Marino"

#: ../../standalone/drakgw:1
#, c-format
msgid "Internet Connection Sharing currently disabled"
msgstr "O Compartilhamento da Conex�o � Internet est� desativado"

#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "Belgium"
msgstr "B�lgica"

#: ../../lang.pm:1
#, c-format
msgid "Kuwait"
msgstr "Kwait"

#: ../../any.pm:1
#, c-format
msgid "Choose the window manager to run:"
msgstr "Escolha o gerenciador de janelas para ele:"

#: ../../standalone/harddrake2:1
#, c-format
msgid "sub generation of the cpu"
msgstr "sub-gera��o da cpu"

#: ../../standalone/drakbug:1
#, c-format
msgid "First Time Wizard"
msgstr "Assistente de Primeira Viagem"

#: ../../install_steps.pm:1
#, c-format
msgid ""
"An error occurred, but I don't know how to handle it nicely.\n"
"Continue at your own risk."
msgstr ""
"Um erro ocorreu, mas eu n�o sei como lidar com ele.\n"
"Continue a seu pr�prio risco."

#: ../../lang.pm:1
#, c-format
msgid "Taiwan"
msgstr "Taiwan"

#: ../../lang.pm:1
#, c-format
msgid "Pakistan"
msgstr "Paquist�o"

#: ../../standalone/logdrake:1
#, c-format
msgid "please wait, parsing file: %s"
msgstr "por favor aguarde, analisando arquivo: %s"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Importance: "
msgstr "Import�ncia:"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
"\"Linux\" as operating system. The drivers come as RPM packages or shell "
"scripts with interactive graphical installation. You do not need to do this "
"configuration by the graphical frontends. Cancel directly after the license "
"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
"adjust the head alignment settings with this program."
msgstr ""
"Para poder imprimir com sua jato de tina Lexmark e esta configura��o, voc� "
"procisa dos drivers para jato de tinta providos pela Lexmark (http://www. "
"lexmark.com/). Clique no link \"Drivers\". Escolha o seu modelo e ent�o "
"escolha \"Linux\" como sistema operacional. Os drivers estar�o no formato de "
"pacotes RPM ou de shell scripts, com instala��o gr�fica interativa. Voc� n�o "
"precisa fazer esta configura��o na interface gr�fica. Cancele logo ap�s o "
"acordo da licen�a. Ent�o imprima as p�ginas de alinhamento com o comando "
"\"lexmarkmaintain\"  e ajuste o alinhamento das cabe�as com este programa."

#: ../../standalone/drakperm:1
#, c-format
msgid "Permissions"
msgstr "Permiss�es"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Provider name (ex provider.net)"
msgstr "Nome do provedor (ex: provedor.net)"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
"Seu sistema est� com poucos recursos. Voc� pode ter algum problema na\n"
"instala��o do Mandrake Linux. Se isso ocorrer, voc� pode tentar instalar "
"usando o\n"
"modo texto. Para isso, aperte `F1' na tela de inicializa��o e escreva `text'."

#: ../../install_interactive.pm:1
#, c-format
msgid "Use the Windows partition for loopback"
msgstr "Usar a parti��o Windows para loopback"

#: ../../keyboard.pm:1
#, c-format
msgid "Armenian (typewriter)"
msgstr "Arm�nio (m�quina de escrever)"

#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
#, c-format
msgid "Connection type: "
msgstr "Tipo de conex�o: "

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Graphical interface"
msgstr "Interface gr�fica"

#: ../../lang.pm:1
#, c-format
msgid "Chad"
msgstr "Chaad"

#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s com acelera��o hardware 3D"

#: ../../lang.pm:1
#, c-format
msgid "India"
msgstr "�ndia"

#: ../../lang.pm:1
#, c-format
msgid "Slovakia"
msgstr "Eslov�quia"

#: ../../lang.pm:1
#, c-format
msgid "Singapore"
msgstr "Singapura"

#: ../../lang.pm:1
#, c-format
msgid "Cambodia"
msgstr "Cambodja"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Sincroniza��o Horizontal do Monitor: %s\n"

#: ../../standalone/drakperm:1
#, c-format
msgid "Path"
msgstr "Path"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Here you can specify any arbitrary command line into which the job should be "
"piped instead of being sent directly to a printer."
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
"is booted.\n"
"\n"
"It is possible that the automatic starting was turned off by changing to a "
"higher security level, because the printing system is a potential point for "
"attacks.\n"
"\n"
"Do you want to have the automatic starting of the printing system turned on "
"again?"
msgstr ""
"O sistema de impress�o (%s) n�o ser� iniciado automaticamente quando o "
"computador inicializar.\n"
"\n"
"� poss�vel que o in�cio autom�tico tenha sido desativado pela mudan�a para "
"um n�vel de seguran�a mais, desde que o sistema de impress�o � um ponto "
"potencial para ataques.\n"
"\n"
"Voc� deseja que o sistema de impress�o volte a ser iniciado automaticamente?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr ""
"Impressora %s\n"
"Voc� deseja modificar esta impressora?"

#: ../../standalone/scannerdrake:1
#, c-format
msgid "Add host"
msgstr "Adicionar host"

#: ../../harddrake/sound.pm:1
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
"card\n"
"you can pick one in the above list.\n"
"\n"
"The current driver for your \"%s\" sound card is \"%s\" "
msgstr ""
"Se voc� realmente acha que sabe qual driver � o correto para a sua placa,\n"
"voc� pode escolher na lista cima.\n"
"\n"
"O driver atual para sua placa de som \"%s\"  \"%s\" "

#: ../../any.pm:1
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
"Voc� deseja permitir aos usu�rios que compartilhem diret�rios?\n"
"Isto ir� permitir aos usu�rios clicarem em \"Compartilhamento\" no konqueror "
"e no nautilus.\n"
"\n"
"\"Personalizado\" permite de escolher para cada usu�rio.\n"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
"Favor escolher carregar ou salvar a sele��o dos pacotes no disquete. \n"
"O formato � o mesmo como os gerados pela auto instala��o."

#: ../../standalone/drakxtv:1
#, c-format
msgid "China (broadcast)"
msgstr "China (difus�o)"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Use quota for backup files."
msgstr "Utilizar quotas para os arquivos da c�pia de seguran�a."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Configurando impressora \"%s\"..."

#: ../../fs.pm:1
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
"file system. This option might be useful for a server that has file systems\n"
"containing binaries for architectures other than its own."
msgstr ""

#: ../../network/netconnect.pm:1
#, c-format
msgid "Internet connection"
msgstr "Conex�o � Internet"

#: ../../modules/interactive.pm:1
#, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
"Falha carregando m�dulo %s.\n"
"Voc� quer tentar novamente com outros par�metros?"

#: ../../share/advertising/01-thanks.pl:1
#, c-format
msgid "Welcome to the Open Source world."
msgstr "Seja bem vindo no mundo da programa��o de C�digos Abertos"

#: ../../lang.pm:1
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "B�snia Herzegovina"

#: ../../fsedit.pm:1
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
"Voc� precisa de um sistema de arquivos verdadeiro (ext2/ext2, reiserfs, xfs, "
"ou jfs) para esse ponto de montagem\n"

#: ../../standalone/scannerdrake:1
#, c-format
msgid "You must enter a host name or an IP address.\n"
msgstr "Voc� precisa entrar com o nome do host ou endere�o IP.\n"

#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "Netherlands"
msgstr "Holanda"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Sending files by FTP"
msgstr "Enviando arquivos por FTP"

#: ../../network/isdn.pm:1
#, c-format
msgid "Internal ISDN card"
msgstr "Placa ISDN interna"

#: ../../harddrake/sound.pm:1
#, c-format
msgid ""
"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
"currently uses \"%s\""
msgstr ""
"N�o h� nenhum driver alternativo de OSS/ALSA para sua placa de som (%s) que "
"usa atualmente \"%s\""

#: ../../network/modem.pm:1
#, c-format
msgid "Title"
msgstr "T�tulo"

#: ../../standalone/drakfont:1
#, c-format
msgid "Install & convert Fonts"
msgstr "Instalar e converter Fontes"

#: ../../standalone/drakbackup:1
#, c-format
msgid "WARNING"
msgstr "AVISO"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Installing bootloader"
msgstr "Instalando gerenciador de inicializa��o"

#: ../../standalone/drakautoinst:1
#, c-format
msgid "replay"
msgstr "repetir"

#: ../../network/netconnect.pm:1
#, c-format
msgid "detected %s"
msgstr "detectado %s"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Expect is an extension to the Tcl scripting language that allows interactive "
"sessions without user intervention."
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "Ilhas Virgens Americanas"

#: ../../partition_table.pm:1
#, c-format
msgid "Bad backup file"
msgstr "Arquivo de backup defeituoso"

#: ../../standalone/drakgw:1
#, c-format
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
"\n"
"What would you like to do?"
msgstr ""
"A configura��o do compartilhamento da conex�o � Internet j� foi feita.\n"
"Atualmente est� desativada.\n"
"\n"
"O que voc� gostaria de fazer?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Enter IP address and port of the host whose printers you want to use."
msgstr ""

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Pipe into command"
msgstr "; usando comando %s"

#: ../../install_interactive.pm:1
#, c-format
msgid ""
"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
"You can find some information about them at: %s"
msgstr ""
"Algum hardware no seu computador precisa de drivers ``propriet�rio'' \n"
"para funcionar. Voc� pode encontrar informa��es sobre eles em: %s"

#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Detecting devices..."
msgstr "Detectando dispositivos..."

#: ../../lang.pm:1
#, c-format
msgid "Haiti"
msgstr "Haiti"

#: ../../standalone/harddrake2:1
#, c-format
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
"Descri��o dos campos:\n"
"\n"

#: ../../standalone/draksec:1
#, fuzzy, c-format
msgid "Basic options"
msgstr "Draksec Op��es B�sicas"

#: ../../standalone/harddrake2:1
#, c-format
msgid "the name of the CPU"
msgstr "o nome da CPU"

#: ../../security/l10n.pm:1
#, c-format
msgid "Accept bogus IPv4 error messages"
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Refreshing printer data..."
msgstr "Atualizando os dados da imrpessora..."

#: ../../install2.pm:1
#, c-format
msgid "You must also format %s"
msgstr "Voc� tamb�m deve formatar %s"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Tenha cuidado: essa opera��o � perigosa."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Insert a floppy containing package selection"
msgstr "Insira um disquete contendo o pacote selecionado"

#: ../../diskdrake/dav.pm:1
#, c-format
msgid "Server: "
msgstr "Servidor"

#: ../../standalone/draksec:1
#, c-format
msgid "Security Alerts:"
msgstr "Alertas de Seguran�a:"

#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Sweden"
msgstr "Su�cia"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Use Expect for SSH"
msgstr "Usar Expect no SSH"

#: ../../lang.pm:1
#, c-format
msgid "Poland"
msgstr "Pol�nia"

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Other ports"
msgstr "Outras portas"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "number of capture buffers for mmap'ed capture"
msgstr ""

#: ../../harddrake/data.pm:1
#, c-format
msgid "SMBus controllers"
msgstr ""

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Connection timeout (in sec)"
msgstr "Tempo limite da conex�o (em segundos)"

#: ../../standalone/harddrake2:1
#, c-format
msgid ""
"Some of the early i486DX-100 chips cannot reliably return to operating mode "
"after the \"halt\" instruction is used"
msgstr ""
"Alguns dos primeiros chips i486DX-100 n�o podem retornar confiavelmente ao "
"modo operacional ap�s a instru��o \"halt\" ser utilizada"

#: ../../keyboard.pm:1
#, c-format
msgid "Croatian"
msgstr "Croata"

#: ../../help.pm:1
#, c-format
msgid "Use existing partition"
msgstr "Usar parti��o existente"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Unable to contact mirror %s"
msgstr "Incapaz de conectar ao mirror (espelho) %s"

#: ../../standalone/logdrake:1
#, c-format
msgid "/Help/_About..."
msgstr "/Ajuda/_Sobre..."

#: ../../standalone/drakbackup:1
#, c-format
msgid "Remove user directories before restore."
msgstr "Apagar as pastas do usu�rios antes de restaurar."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
"configuration, you will not be able to use the printer which you are "
"configuring now. How do you want to proceed?"
msgstr ""
"Voc� ir� configura uma impressora remota. Isso necessita de um acesso "
"funcional � rede, mas sua rede ainda n�o foi configurada. Se voc� continuar "
"sem configurar a rede, voc� n�o ser� capaz de usar a impressora que voc� "
"est� configurando agora. Como voc� deseja proceder?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "CUPS printer configuration"
msgstr "Configura��o de impressora CUPS"

#: ../../standalone/drakfont:1
#, c-format
msgid "could not find any font in your mounted partitions"
msgstr "n�o consegui encontrar nenhuma fonte na suas parti��es montadas"

#: ../../standalone/harddrake2:1
#, c-format
msgid "F00f bug"
msgstr "F00f bug"

#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
#, c-format
msgid "XFree %s"
msgstr "XFree %s"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Domain Name:"
msgstr "Nome do dom�nio:"

#: ../../security/l10n.pm:1
#, fuzzy, c-format
msgid "Root umask"
msgstr "Senha de root"

#: ../../any.pm:1
#, c-format
msgid "On Floppy"
msgstr "No Disquete"

#: ../../security/l10n.pm:1
#, c-format
msgid "Reboot by the console user"
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid "Restore"
msgstr "Restaurar"

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check if the network devices are in promiscuous mode."
msgstr ""

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Looking for available packages..."
msgstr "Procurando por pacotes dispon�veis"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"This should be a comma-seperated list of local users or email addresses that "
"you want the backup results sent to. You will need a functioning mail "
"transfer agent setup on your system."
msgstr ""

#: ../../any.pm:1
#, c-format
msgid "Init Message"
msgstr "Mensagem Inicial"

#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Rescue partition table"
msgstr "Recuperar tabela de parti��o"

#: ../../standalone/net_monitor:1
#, c-format
msgid "Connection complete."
msgstr "Conex�o completa."

#: ../../lang.pm:1
#, c-format
msgid "Cyprus"
msgstr "Chipre"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Remove from RAID"
msgstr "Remover do RAID"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Essa chave � muito simples (deve ter ao menos %d caracteres)"

#: ../../standalone/drakbug:1
#, c-format
msgid "Configuration Wizards"
msgstr "Assistentes de Configura��o"

#: ../../network/netconnect.pm:1
#, c-format
msgid "ISDN connection"
msgstr "Conex�o ISDN"

#: ../../standalone/harddrake2:1
#, c-format
msgid "primary"
msgstr "prim�rio"

#: ../../printer/main.pm:1
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr " em um servidor SMB/Windows \"%s\", compartilhamento \"%s\""

#: ../../help.pm:1
#, c-format
msgid ""
"This dialog is used to choose which services you wish to start at boot\n"
"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not needed at boot\n"
"time.\n"
"\n"
"A short explanatory text will be displayed about a service when it is\n"
"selected. However, if you are not sure whether a service is useful or not,\n"
"it is safer to leave the default behavior.\n"
"\n"
"!! At this stage, be very careful if you intend to use your machine as a\n"
"server: you will probably not want to start any services that you do not\n"
"need. Please remember that several services can be dangerous if they are\n"
"enabled on a server. In general, select only the services you really need.\n"
"!!"
msgstr ""
"Voc� agora pode escolher quais servi�os ser�o iniciados na hora do \n"
"boot da m�quina.\n"
"\n"
"O Draxk ir� listar todos os servi�os dispon�veis na instala��o atual.\n"
"Reveja cuidadosamente e desabilite aqueles que n�o s�o sempre necess�rios \n"
"durante a inicializa��o.\n"
"\n"
"Um pequeno texto de ajuda descrevendo a fun��o do servi�o ser� mostrado \n"
"quando o mesmo for selecionado. Contudo, caso voc� n�o tiver certeza se um \n"
"servi�o � �til ou n�o, � seguro manter o comportamento padr�o.\n"
"\n"
"!!! Tenha muito cuidado nesse passo, pois se voc� pretende usar sua m�quina "
"como um \n"
"servidor: voc� provavelmente vai querer que servi�os indesejados n�o sejam "
"iniciados.\n"
"Favor lembrar que v�rios servi�os podem ser perigosos se foram habilitados "
"em um\n"
"servidor. Em geral, selecione apenas os servi�os que voc� realmente "
"precisa.\n"
"!!!"

#: ../../lang.pm:1
#, c-format
msgid "Niue"
msgstr "Niue"

#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Skip"
msgstr "Pular"

#: ../../services.pm:1
#, c-format
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
msgstr ""
"Ativa/Desativa todas as interfaces de rede configuradas para iniciar\n"
"na hora de inicializa��o."

#: ../../standalone/harddrake2:1
#, c-format
msgid ""
"the CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr ""
"a frequ�ncia da CPU em MHz (Mega Hertz, que em aproxima��o, pode ser "
"vulgarmente considerado o n�mero de instru��es que o CPU � capaz de executar "
"por segundo)"

#: ../../pkgs.pm:1
#, c-format
msgid "important"
msgstr "importante"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Total Progress"
msgstr "Progresso Total"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"DrakX will first detect any IDE devices present in your computer. It will\n"
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
"your hard drives. If so, you'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
"hardware for the card-specific options which are needed to initialize the\n"
"adapter. Most of the time, DrakX will get through this step without any\n"
"issues.\n"
"\n"
"If DrakX is not able to probe for the options to automatically determine\n"
"which parameters need to be passed to the hardware, you'll need to manually\n"
"configure the driver."
msgstr ""
"DrakX tentar� localizar adaptadores PCI SCSI. Se DrakX encontrar\n"
"um adaptador SCSI e souber qual driver utilizar, ele ser� instalado\n"
"automaticamente\n"
"\n"
"\n"
"Se voc� n�o possuir adaptadores SCSI, um adaptador ISA SCSI ou PCI SCSI que\n"
"DrakX n�o reconhece, voc� ser� perguntado se algum adaptador SCSI existe em "
"seu\n"
"sistema. Se n�o existir adaptadores, voc� pode clicar em \"N�o\". Se voc� "
"clicar em\n"
"\"Sim\", uma lista de drivers aparecer� para que voc� possa escolher o seu\n"
"adaptador.\n"
"\n"
"\n"
"Se voc� tem que especificar manualmente o seu adaptador, DrakX perguntar� "
"se\n"
"voc� quer especificar op��es para ele. Voc� pode deixar que o DrakX examine "
"o hardware\n"
"para descobrir as op��es. Isso normalmente funciona bem.\n"
"\n"
"\n"
"Se n�o, voc� precisar� prover as op��es para o driver. Favor olhar o Guia do "
"Usu�rio\n"
"(cap�tulo 3, se��o \"Coletando informa��es sobre seu hardware) para dicas "
"sobre\n"
"como descobrir essas informa��es na documenta��o do hardware, no Web site\n"
"do fabricante (se voc� tiver acesso � Internet) ou no Microsoft Windows\n"
"(se voc� tive-lo no seu sistema)."

#: ../../standalone/drakbackup:1
#, c-format
msgid "Users"
msgstr "Usu�rios"

#: ../../lang.pm:1
#, c-format
msgid "Aruba"
msgstr "Aruba"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Preparing bootloader..."
msgstr "Preparando gerenciador de inicializa��o"

#: ../../network/network.pm:1
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (ex. %s)"

#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "The passwords do not match"
msgstr "As senhas n�o conferem"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Examples for correct IPs:\n"
msgstr "Exemplos de IPs corretos:\n"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Frequency (MHz)"
msgstr "Frequ�ncia (MHz)"

#: ../../install_any.pm:1
#, c-format
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
"Para usar a sele��o salva de pacotes, entre na instala��o com ``linux "
"defcfg=floppy''"

#: ../../standalone/harddrake2:1
#, c-format
msgid "the number of the processor"
msgstr "o n�mero do processador"

#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Hardware clock set to GMT"
msgstr "O rel�gio est� na hora GMT"

#: ../../network/isdn.pm:1
#, c-format
msgid "Do you want to start a new configuration ?"
msgstr "Voc� quer iniciar a nova configura��o?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Give a file name"
msgstr "D� um nome de arquivo"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Please choose the port that your printer is connected to."
msgstr "Favor escolher a porta que sua impressora est� conectada."

#: ../../standalone/livedrake:1
#, c-format
msgid "Change Cd-Rom"
msgstr "Mudar Cd-Rom"

#: ../../lang.pm:1
#, c-format
msgid "Paraguay"
msgstr "Paraguai"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Configuration is complete, do you want to apply settings ?"
msgstr ""
"A configura��o est� completa, voc� gostaria de aplicar as modifica��es?"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Use Incremental/Differential Backups  (do not replace old backups)"
msgstr ""
"Usar c�pia de seguran�a Incremental/ Diferencial (n�o substitui c�pias "
"antigas)"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "N�o h� nenhum driver de som conhecido para sua placa de som (%s)"

#: ../../standalone/drakfloppy:1
#, c-format
msgid "force"
msgstr "for�ar"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Exit"
msgstr "Sair"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"NOTE: Depending on the printer model and the printing system up to %d MB of "
"additional software will be installed."
msgstr ""
"NOTA: Depedendo do modelo da impressora e do sistema de impress�o, at� %d MB "
"de software adicional ser� instalado."

#: ../../standalone/drakconnect:1
#, c-format
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
msgstr ""
"Voc� n�o possui nenhuma interface configurada.\n"
"Configure-as primeiro clicando em 'Configurar'"

#: ../../keyboard.pm:1
#, c-format
msgid "Estonian"
msgstr "Estoniano"

#: ../../services.pm:1
#, c-format
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
"Apache � um servidor World Wide Web. Ele � usado para servir arquivos\n"
"HTML e CGI."

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid ""
"Enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
"Favor entrar com o nome do dispositivo Gravador cd CD\n"
" ex: 0,1,0"

#: ../../standalone/draksec:1
#, c-format
msgid "ALL"
msgstr ""

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Add/Del Clients"
msgstr "Adicionar/Remover Clientes"

#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
#: ../../standalone/drakpxe:1
#, c-format
msgid "Choose the network interface"
msgstr "Escolha a interface de rede"

#: ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Unknown Model"
msgstr "Modelo Desconhecido"

#: ../../harddrake/data.pm:1
#, c-format
msgid "CD/DVD burners"
msgstr ""

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"Partition booted by default\n"
"    (for MS-DOS boot, not for lilo)\n"
msgstr ""
"Parti��o de inicializa��o padr�o\n"
"    (para inicializa��o do MS-DOS, n�o para o lilo)\n"

#: ../../standalone/drakperm:1
#, c-format
msgid "Enable \"%s\" to read the file"
msgstr ""

#: ../../standalone/draksplash:1
#, c-format
msgid "choose image"
msgstr "escolher imagem"

#: ../../network/shorewall.pm:1
#, c-format
msgid "Firewalling configuration detected!"
msgstr "Configura��o de Firewall detectado!"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Connection name"
msgstr "Nome da conex�o"

#: ../../standalone/draksplash:1
#, c-format
msgid ""
"x coordinate of text box\n"
"in number of characters"
msgstr ""
"coordenada x da caixa de texto\n"
"em n�mero de caracteres"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Updating package selection"
msgstr "Atualizando sele��o de pacotes"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "Onde voc� quer montar o arquivo loopback %s?"

#: ../../standalone/drakautoinst:1
#, c-format
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
"O disquete foi gerado com sucesso.\n"
"Agora voc� pode repetir sua instala��o."

#: ../../standalone/harddrake2:1
#, c-format
msgid "the number of buttons the mouse has"
msgstr "o n�mero de bot�es que o mouse tem"

#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Replay"
msgstr "Repetir"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup other files"
msgstr "Copiar outros arquivos"

#: ../../install_steps.pm:1
#, c-format
msgid "No floppy drive available"
msgstr "Nenhum drive de disquete dispon�vel"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup files are corrupted"
msgstr "Os arquivos copiados est�o corrompidos"

#: ../../standalone/drakxtv:1
#, c-format
msgid "TV norm:"
msgstr "Padr�o de TV:"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Cpuid family"
msgstr "Fam�lia cpuid"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "32 MB"
msgstr "32 MB"

#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "type: thin"
msgstr "tipo: %s"

#: ../../keyboard.pm:1
#, c-format
msgid "Lithuanian AZERTY (new)"
msgstr "Litu�nio AZERTY (novo)"

#: ../../standalone/harddrake2:1
#, c-format
msgid "yes means the arithmetic coprocessor has an exception vector attached"
msgstr "sim significa que o coprocessador aritm�tico possui uma falha no vetor"

#: ../../fsedit.pm:1
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"Please be sure to add a /boot partition"
msgstr ""
"Voc� selecionou uma parti��o software RAID como root (/).\n"
"O gerenciador de inicializa��o n�o consegue utiliz�-la sem uma\n"
"parti��o /boot. N�o esque�a de adicionar uma parti��o /boot"

#: ../../any.pm:1
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Outros SO (MacOS...)"

#: ../../mouse.pm:1
#, c-format
msgid "To activate the mouse,"
msgstr "Para ativar o mouse,"

#: ../../install_interactive.pm:1
#, c-format
msgid "Bringing up the network"
msgstr "Trazendo (acessando) a rede"

#: ../../common.pm:1
#, c-format
msgid "Screenshots will be available after install in %s"
msgstr "Screenshots estar�o dispon�veis depois da instala��o em %s"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose which one you want to resize in order to install your new\n"
"Mandrake Linux operating system.\n"
"\n"
"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
"\"Capacity\".\n"
"\n"
"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
"\"sd\" if it is a SCSI hard drive.\n"
"\n"
"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard drives:\n"
"\n"
" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
"\n"
" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
"\"second lowest SCSI ID\", etc.\n"
"\n"
"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
"disk or partition is called \"C:\")."
msgstr ""
"Mais de uma parti��o Microsoft Windows foi detectada\n"
"em seu disco r�gido. Favor escolher a que voc� quer redimensionar para\n"
"instalar o seu novo sistema operacional Mandrake Linux.\n"
"\n"
"Nota: cada parti��o � listada da seguinte forma: \"Nome Linux\", \"Nome\n"
"Windows\" \"Capacidade\".\n"
"\n"
"\"Nome Linux\" � codificado da seguinte maneira: \"tipo do disco r�gido\", "
"\"n�mero do disco r�gido\", \"n�mero da parti��o\" (por exemplo, \"hda1\").\n"
"\n"
"\"Tipo do disco r�gido\"  \"hd\" se seu disco r�gido for IDE e \"sd\"\n"
"se ele for um disco r�gido SCSI.\n"
"\n"
"\"N�mero do disco r�gido\" � sempre uma letra depois de \"hd\" ou \"sd\".Com "
"discos r�gidos IDE:\n"
"\n"
"   * \"a\" significa \"disco r�gido mestre na controladora IDE prim�ria\",\n"
"\n"
"   * \"b\" significa \"disco r�gido escravo na controladora IDE prim�ria\",\n"
"\n"
"   * \"c\" significa \"disco r�gido mestre na controladora IDE secund�ria"
"\", \n"
"   * \"d\" significa \"disco r�gido escravo na controladora IDE secund�ria"
"\". \n"
"\n"
"Com discos r�gidos SCSI, um significa \"disco r�gido prim�rio\", um \"b\" "
"significa \"disco r�gido secund�rio\", etc...\n"
"\n"
"\"Nome Windows\" � a letra do seu disco r�gido no Windows (o primeirodisco\n"
"ou parti��o � chamado \"C:\")."

#: ../../lang.pm:1
#, c-format
msgid "Tanzania"
msgstr ""

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "Computando limites do sistema de arquivo fat"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
"\n"
"Fontes da c�pia de seguran�a : \n"

#: ../../standalone/logdrake:1
#, c-format
msgid "Content of the file"
msgstr "Conte�do do arquivo"

#: ../../any.pm:1
#, c-format
msgid "Authentication LDAP"
msgstr "Autentica��o LDAP"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "Let me pick any driver"
msgstr "Deixe escolher qualquer driver"

#: ../../standalone/net_monitor:1
#, c-format
msgid "Profile "
msgstr "Perfil"

#: ../../standalone/net_monitor:1
#, c-format
msgid "transmitted"
msgstr "transmitido"

#: ../../lang.pm:1
#, c-format
msgid "Palestine"
msgstr "Palestino"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"

#: ../../modules/parameters.pm:1
#, c-format
msgid "%d comma separated strings"
msgstr "%d n�meros separado por caracteres"

#: ../../network/netconnect.pm:1
#, c-format
msgid " isdn"
msgstr ""

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Here is the full list of keyboards available"
msgstr "Aqui est� a lista completa de teclados dispon�veis"

#: ../../standalone/draksplash:1
#, c-format
msgid "Theme name"
msgstr "Nome do Tema"

#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
#, c-format
msgid "/_Help"
msgstr "/Aj_uda"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Escolhendo driver arbitrariamente"

#: ../../standalone/scannerdrake:1
#, c-format
msgid ""
"Here you can choose whether the scanners connected to this machine should be "
"accessable by remote machines and by which remote machines."
msgstr ""

#: ../../standalone/draksplash:1
#, c-format
msgid "the width of the progress bar"
msgstr "o comprimento da barra de progresso"

#: ../../lang.pm:1
#, c-format
msgid "Cook Islands"
msgstr "Ilhas Cook"

#: ../../fs.pm:1
#, c-format
msgid "Formatting partition %s"
msgstr "Formatando parti��o %s"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Hostname required"
msgstr "Hostname necess�rio"

#: ../../standalone/drakfont:1
#, c-format
msgid "Unselect fonts installed"
msgstr "Deselecionar as fontes instaladas"

#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
#: ../../install_steps_interactive.pm:1 ../../interactive.pm:1
#: ../../my_gtk.pm:1 ../../ugtk2.pm:1 ../../ugtk.pm:1
#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
#: ../../interactive/gtk.pm:1 ../../interactive/http.pm:1
#: ../../interactive/newt.pm:1 ../../interactive/stdio.pm:1
#: ../../printer/printerdrake.pm:1 ../../standalone/drakautoinst:1
#: ../../standalone/drakbackup:1 ../../standalone/drakboot:1
#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
#: ../../standalone/drakfont:1 ../../standalone/drakgw:1
#: ../../standalone/drakperm:1 ../../standalone/draksec:1
#: ../../standalone/logdrake:1 ../../standalone/mousedrake:1
#: ../../standalone/net_monitor:1
#, c-format
msgid "Cancel"
msgstr "Cancelar"

#: ../../standalone/scannerdrake:1
#, c-format
msgid "Searching for configured scanners ..."
msgstr "Procurando por scanners configurados..."

#: ../../mouse.pm:1
#, c-format
msgid "Wheel"
msgstr "Roda"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Videocard"
msgstr "Placa de v�deo"

#: ../../standalone/drakbackup:1
#, c-format
msgid "\tBackups use tar and bzip2\n"
msgstr "\tOs arquivos utilizam tar e bzip2\n"

#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
#, c-format
msgid "Remove Selected"
msgstr "Remover Selecionado"

#: ../../standalone/harddrake2:1
#, c-format
msgid "/Autodetect _modems"
msgstr "/Autodetectar _modems"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remove printer"
msgstr "Remover impressora"

#: ../../standalone/drakbackup:1
#, c-format
msgid "View Last Log"
msgstr ""

#: ../../install_interactive.pm:1
#, c-format
msgid ""
"WARNING!\n"
"\n"
"DrakX will now resize your Windows partition. Be careful:\n"
"this operation is dangerous. If you have not already done\n"
"so, you should first exit the installation, run scandisk\n"
"under Windows (and optionally run defrag), then restart the\n"
"installation. You should also backup your data.\n"
"When sure, press Ok."
msgstr ""
"ATEN��O!\n"
"\n"
"Drakx precisa agora redimensionar sua parti��o Windows. Tenha cuidado:\n"
"essa opera��o � perigosa. Se voc� n�o tiver feito ainda, voc� deve rodar o\n"
"scandisk no Windows (e opcionalmente rodar o defrag) nesta parti��o,\n"
"ent�o reiniciar a instala��o. Voc� tamb�m deveria fazer backup de seus\n"
"dados. Quando tiver certeza, pressione Ok."

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Which services would you like to allow the Internet to connect to?"
msgstr "Quais servi�os voc� gostaria de permitir a conex�o com a internet?"

#: ../../standalone/logdrake:1
#, c-format
msgid ""
"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
"Bem-vindo ao utilit�rio de configura��o de correio.\n"
"\n"
"Aqui, voc� configurar� o sistema de alerta.\n"

#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
#: ../../standalone/drakperm:1
#, c-format
msgid "Other"
msgstr "Outro"

#: ../../any.pm:1 ../../harddrake/v4l.pm:1 ../../standalone/drakfloppy:1
#, c-format
msgid "Default"
msgstr "Padr�o"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Button 2 Emulation"
msgstr "Emula��o dos 2 bot�es"

#: ../../security/l10n.pm:1
#, c-format
msgid "Run chkrootkit checks"
msgstr ""

#: ../../standalone/drakfont:1
#, c-format
msgid "type1inst building"
msgstr "constru��o de type1inst"

#: ../../standalone/drakfont:1
#, c-format
msgid "Abiword"
msgstr "Abiword"

#: ../../standalone/draksplash:1
#, c-format
msgid "choose image file"
msgstr "escolher arquivo imagem"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "X server"
msgstr "Servidor  X"

#: ../../any.pm:1
#, c-format
msgid "Domain Admin User Name"
msgstr "Nome de usu�rio do dom�nio"

#: ../../standalone/drakxtv:1
#, c-format
msgid "There was an error while scanning for TV channels"
msgstr "Houve um erro instalando durante a varredura dos canais de TV"

#: ../../keyboard.pm:1
#, c-format
msgid "US keyboard (international)"
msgstr "Americano (Internacional)"

#: ../../keyboard.pm:1
#, c-format
msgid "Saami (swedish/finish)"
msgstr ""

#: ../../standalone/drakbug:1
#, c-format
msgid "Not installed"
msgstr "N�o instalado"

#: ../../keyboard.pm:1
#, c-format
msgid "Both Alt keys simultaneously"
msgstr "Teclas Alt simult�neamente"

#: ../../network/netconnect.pm:1
#, c-format
msgid "LAN connection"
msgstr "Cone��o LAN"

#: ../../standalone/logdrake:1
#, c-format
msgid "/File/-"
msgstr "/Arquivo/-"

#: ../../keyboard.pm:1
#, c-format
msgid "Italian"
msgstr "Italiano"

#: ../../interactive.pm:1
#, c-format
msgid "Basic"
msgstr "B�sico"

#: ../../standalone/drakTermServ:1
#, c-format
msgid ""
"\n"
" Copyright (C) 2002 by MandrakeSoft \n"
"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
"\n"
msgstr ""
"\n"
" Copyright (C) 2002 by MandrakeSoft \n"
"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
"\n"

#: ../../lang.pm:1
#, c-format
msgid "Honduras"
msgstr "Honduras"

#: ../../help.pm:1
#, c-format
msgid "pdq"
msgstr ""

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card IO"
msgstr "IO da Placa"

#: ../../standalone/drakperm:1
#, c-format
msgid "when checked, owner and group won't be changed"
msgstr ""

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"\n"
"This special Bootstrap\n"
"partition is for\n"
"dual-booting your system.\n"
msgstr ""
"\n"
"Essa parti��o especial\n"
"Bootstrap � para o\n"
"boot-duplo do seu sistema.\n"

#: ../../standalone/drakautoinst:1
#, c-format
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
msgstr ""
"Favor escolher para cada passo se ele ser� repetido como na sua instala��o, "
"ou se ser� manual"

#: ../../standalone/scannerdrake:1
#, c-format
msgid ""
"You can also decide here whether scanners on remote machines should be made "
"available on this machine."
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid "\t-Network by FTP.\n"
msgstr "\t-Rede por FTP.\n"

#: ../../security/l10n.pm:1
#, c-format
msgid "Reports check result to tty"
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "You must enter a device or file name!"
msgstr "Voc� precisa digitar o dispositivo ou o nome do arquivo!"

#: ../../standalone/harddrake2:1
#, c-format
msgid "/_Quit"
msgstr "/_Sair"

#: ../../network/adsl.pm:1
#, c-format
msgid ""
"You need the alcatel microcode.\n"
"Download it at\n"
"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
"Voc� precisa do alcatel microcode.\n"
"Fa�a o download em\n"
"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
"e copie o arquivo mgmt.o para /usr/share/speedtouch"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Mem�ria gr�fica: %s kB\n"

#: ../../standalone.pm:1
#, c-format
msgid ""
"This program is free software; you can redistribute it and/or modify\n"
"it under the terms of the GNU General Public License as published by\n"
"the Free Software Foundation; either version 2, or (at your option)\n"
"any later version.\n"
"\n"
"This program is distributed in the hope that it will be useful,\n"
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n"
"GNU General Public License for more details.\n"
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
msgstr ""
"Este programa � software livre; voc� pode redistribu�-lo e/ou modific�-lo\n"
"sobre os termos da Licen�a Geral P�blica GNU como publicada pela\n"
"Free Software Foundation; vers�o 2 ou (na sua escolha) qualquer\n"
"vers�o posterior.\n"
"\n"
"Este programa � distribu�do na esperan�a de que ser� �til,\n"
"mas SEM QUALQUER GARANTIA; mesmo sem garantia implicada de\n"
"MERCANTABILIDADE ou ADAPTABILIDADE PARA FIM ESPEC�FICO. Veja a\n"
"Licensa Geral P�blica GNU para mais detalhes.\n"
"\n"
"Voc� deve ter recebido uma c�pia da Licensa Geral P�blica GNU junto\n"
"com este programa; caso contr�rio, escreva para a Free Software\n"
"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"

#: ../../any.pm:1
#, c-format
msgid "access to compilation tools"
msgstr "Acesso a ferramentas da rede"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Please select data to restore..."
msgstr "Por favor escolha os dados a restaurar..."

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
"at the beginning of the disk"
msgstr ""
"Se voc� planejar usar aboot, lembre-se de deixar espa�o livre (2048 setores "
"� suficiente)\n"
"no in�cio do disco"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Standard test page"
msgstr "P�gina de teste padr�o"

#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Create"
msgstr "Criar"

#: ../../standalone/drakbackup:1
#, c-format
msgid "What"
msgstr "O qu�"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "There was an error ordering packages:"
msgstr "Houve um erro ordenando os pacotes:"

#: ../../keyboard.pm:1
#, c-format
msgid "Bulgarian (BDS)"
msgstr "B�lgaro (BDS)"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Disable Server"
msgstr "Desativar o Servidor"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Filesystem encryption key"
msgstr "Chave criptogr�fica do sistema de arquivos"

#: ../../keyboard.pm:1
#, c-format
msgid "Gujarati"
msgstr "Gujarati"

#: ../../interactive/stdio.pm:1
#, c-format
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
"Favor escolher o primeiro n�mero do alcance de 10 que voc� deseja\n"
"editar, ou apenas aperte Enter para continuar.\n"
"Sua escolha?"

#: ../../standalone/draksplash:1
#, c-format
msgid "Save theme"
msgstr "Salvar tema"

#: ../../lang.pm:1
#, c-format
msgid "Brazil"
msgstr "Brasil"

#: ../../standalone/drakautoinst:1
#, c-format
msgid "Auto Install"
msgstr "Auto Instala��o"

#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
#, c-format
msgid "Network Configuration Wizard"
msgstr "Auxiliar de Configura��o da Rede"

#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Removable media automounting"
msgstr "Auto-montagem da m�dia remov�vel"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Enter the directory to save:"
msgstr "Por favor escolha a pasta onde gravar:"

#: ../../services.pm:1
#, c-format
msgid "Printing"
msgstr "Impress�o"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "Unkown driver"
msgstr "Driver desconhecido"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"There are no printers found which are directly connected to your machine"
msgstr ""
"N�o foi encontrada nenhuma impressora conectadas diretamente a sua m�quina"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Create a new partition"
msgstr "Criar uma nova parti��o"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "Driver:"
msgstr "Driver:"

#: ../../standalone/harddrake2:1
#, c-format
msgid "unknown"
msgstr "desconhecido"

#: ../../install_interactive.pm:1
#, c-format
msgid "Use fdisk"
msgstr "Usar fdisk"

#: ../../mouse.pm:1
#, c-format
msgid "MOVE YOUR WHEEL!"
msgstr "MOVA SUA RODA!"

#: ../../standalone/net_monitor:1
#, c-format
msgid "sent: "
msgstr "enviado: "

#: ../../network/network.pm:1
#, c-format
msgid "Automatic IP"
msgstr "IP Autom�tico"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"%s\" to reboot the system. The first thing you\n"
"should see after your computer has finished doing its hardware tests is the\n"
"bootloader menu, giving you the choice of which operating system to start.\n"
"\n"
"The \"%s\" button shows two more buttons to:\n"
"\n"
" * \"%s\": to create an installation floppy disk that will automatically\n"
"perform a whole installation without the help of an operator, similar to\n"
"the installation you just configured.\n"
"\n"
"   Note that two different options are available after clicking the button:\n"
"\n"
"    * \"%s\". This is a partially automated installation. The partitioning\n"
"step is the only interactive procedure.\n"
"\n"
"    * \"%s\". Fully automated installation: the hard disk is completely\n"
"rewritten, all data is lost.\n"
"\n"
"   This feature is very handy when installing a number of similar machines.\n"
"See the Auto install section on our web site for more information.\n"
"\n"
" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
"To use this selection with another installation, insert the floppy and\n"
"start the installation. At the prompt, press the [F1] key and type >>linux\n"
"defcfg=\"floppy\" <<.\n"
"\n"
"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
"\"mformat a:\")"
msgstr ""
"Aqui estamos, a instala��o agora est� completa e o seu GNU/Linux est� "
"pronto\n"
"para usar. Clique em  \"OK\"para reiniciar o sistema. Voc� pode iniciar o "
"GNU/Linux \n"
"ou o Windows, o que voc� preferir (se estiver em dual-boot), assim que o "
"computador\n"
"tiver reiniciado.\n"
"\n"
"O bot�o \"Avan�ado\" (em modo expert) mostra mais dois bot�es:\n"
"\n"
" * \"gerar disco de autoinstala��o\": para criar um disco de instala��o que "
"ir�\n"
"automaticamente fazer uma instala��o completa sem a ajuda de um operador,\n"
"semelhante � instala��o que voc� acabou de fazer.\n"
"\n"
"   Note que duas op��es diferentes est�o dispon�veis depois de clicar o "
"bot�o:\n"
"\n"
"   * \"Replay\". � uma instala��o parcialmente autom�tica, porque a se��o "
"de\n"
"particionamento (somente esta) permanece interativa.\n"
"\n"
"    * \"Automatizada\". Completamente automatizada: o disco r�gido � "
"completamente \n"
"reescrito, e todos os dados anteriores s�o perdidos.\n"
"\n"
"   Esta funcionalidade � muito adequada quando se deseja instalar o sistema\n"
"em um grande n�mero de m�quinas semelhantes. Veja a se��o de autoinstala��o\n"
"do nosso website.  * \"Save packages selection\"(*) : salva a sele��o de "
"pacotes como feita anteriormente.\n"
"Depois, quando fizer outra instala��o, insira o floppy no drive e rode a "
"instala��o, indo\n"
"para a tela de ajuda pela tecla F1 e escolhendo >>linux defcfg=\"floppy"
"\"<<.\n"
"\n"
"(*) Voc� necessitar� de um disco floppy formatado em FAT (para criar um no "
"GNU/Linux\n"
"digite \"mformat a:\")"

#: ../../lang.pm:1
#, c-format
msgid "Moldova"
msgstr "Moldova"

#: ../../mouse.pm:1
#, c-format
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Configuration of a remote printer"
msgstr "Configura��o de uma impressora remota"

#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid "An online platform to respond to enterprise support needs."
msgstr ""
"Uma plataforma online para responder �s necessidades de suporte especificas "
"�s empresas"

#: ../../network/network.pm:1
#, c-format
msgid "URL should begin with 'ftp:' or 'http:'"
msgstr "A url deve come�ar com 'http:' ou 'ftp:'"

#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Oriya"
msgstr "S�ria"

#: ../../standalone/drakperm:1
#, c-format
msgid "Add a new rule at the end"
msgstr "Adicionar nova regra ao final"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You can also decide here whether printers on remote machines should be "
"automatically made available on this machine."
msgstr ""
"Voc� tamb�m pode decidir aqui se as impressoras em m�quinas remotas devem "
"ficar dispon�veis automaticamente neste computador."

#: ../../modules/interactive.pm:1
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Options are in format ``name=value name2=value2 ...''.\n"
"For instance, ``io=0x300 irq=7''"
msgstr ""
"Agora voc� pode prover as op��es para o m�dulo %s.\n"
"As op��es est�o no formato ``nome=valor nome2=valor2 ...''\n"
"Para inst�ncia, ``io=0x300 irq=7''"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Sair sem gravar na tabela de parti��o?"

#: ../../mouse.pm:1
#, c-format
msgid "Genius NetScroll"
msgstr "Genius NetScroll"

#: ../../standalone.pm:1
#, c-format
msgid "Installing packages..."
msgstr "Instalando pacotes..."

#: ../../keyboard.pm:1
#, c-format
msgid "Dutch"
msgstr "Holand�s"

#: ../../standalone/drakbackup:1
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Os seguintes pacotes precisam ser instalados:\n"

#: ../../lang.pm:1
#, c-format
msgid "Angola"
msgstr "Angola"

#: ../../standalone/logdrake:1
#, c-format
msgid "service setting"
msgstr "configura��o do servi�o"

#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
#, c-format
msgid "Custom"
msgstr "Personalizada"

#: ../../lang.pm:1
#, c-format
msgid "Latvia"
msgstr "Latvia"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "Arquivo j� est� sendo utilizado por outro loopback, escolha outro"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Read-only"
msgstr "Somente leitura"

#: ../../security/help.pm:1
#, c-format
msgid ""
"Enable/Disable name resolution spoofing protection.  If\n"
"\"alert\" is true, also reports to syslog."
msgstr ""

#: ../../harddrake/sound.pm:1
#, c-format
msgid "No known driver"
msgstr "Nenhum driver conhecido"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "1 MB"
msgstr "1 MB"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"If it is not the one you want to configure, enter a device name/file name in "
"the input line"
msgstr ""
"se n�o for essa que deseja configurar,  digite o nome do dispositivo/ nome "
"do arquivo na linha de comando"

#: ../../standalone/draksound:1
#, c-format
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
"\n"
"\n"
"You can visit our hardware database at:\n"
"\n"
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
"Nenhuma Placa de Som foi detectada em sua m�quina. Favor verificar que uma "
"Placa de Som suportada pelo Linux est� conectada corretamente.\n"
"\n"
"\n"
"Voc� pode visitar o banco de dados de hardware em:\n"
"\n"
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"

#: ../../standalone/drakconnect:1
#, c-format
msgid "Configure Local Area Network..."
msgstr "Configurar Rede Local (LAN)..."

#: ../../security/l10n.pm:1
#, c-format
msgid "Verify checksum of the suid/sgid files"
msgstr ""

#: ../../services.pm:1
#, c-format
msgid "Launch the sound system on your machine"
msgstr "Iniciar o sistema de som da sua m�quina"

#: ../../security/l10n.pm:1
#, c-format
msgid "Run some checks against the rpm database"
msgstr ""

#: ../../standalone/drakperm:1
#, c-format
msgid "Execute"
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Preparing printer database..."
msgstr "Preparaando banco de dados das impressoras..."

#: ../../standalone/harddrake2:1
#, c-format
msgid "Information"
msgstr "Informa��o"

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "No network card"
msgstr "Nenhuma placa de rede encontrada"

#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
#, c-format
msgid "Which filesystem do you want?"
msgstr "Qual sistema de arquivos voc� quer?"

#: ../../mouse.pm:1
#, c-format
msgid "3 buttons"
msgstr "3 bot�es"

#: ../../lang.pm:1
#, c-format
msgid "Malta"
msgstr "Malta"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Detailed information"
msgstr "Mostrar informa��o detalhada"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer default settings\n"
"\n"
"You should make sure that the page size and the ink type/printing mode (if "
"available) and also the hardware configuration of laser printers (memory, "
"duplex unit, extra trays) are set correctly. Note that with a very high "
"printout quality/resolution printing can get substantially slower."
msgstr ""
"Configura��o padr�o da impressora\n"
"\n"
"Voc� deve se certificar de que o tamanho da p�gina e o tipo de tinta/modo de "
"impress�o (se dispon�vel) e tamb�m a configura��o do hardware de impressoras "
"laser (mem�ria, unidade duplex, ba�as extras) est�o corretos. Note que uma "
"impress�o de alta qualidade/resolu��o pode ser muito lenta."

#: ../../install_any.pm:1
#, c-format
msgid "This floppy is not FAT formatted"
msgstr "Esse disquete n�o est� formatado como FAT"

#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
msgid "Configuring network"
msgstr "Configurando rede"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"This option will save files that have changed.  Exact behavior depends on "
"whether incremental or differential mode is used."
msgstr ""

#: ../../Xconfig/main.pm:1
#, c-format
msgid "Graphic Card"
msgstr "Placa de v�deo"

#: ../../install_interactive.pm:1
#, c-format
msgid "Resizing Windows partition"
msgstr "Computando limites do sistema de arquivo do Windows"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Provider dns 1 (optional)"
msgstr "DNS 1 do provedor (opcional)"

#: ../../lang.pm:1
#, c-format
msgid "Cameroon"
msgstr "Camar�es"

#: ../../install_interactive.pm:1
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
"Voc� pode agora particionar %s.\n"
"Quando terminar, n�o esque�a de salvar usando `w'"

#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
#, c-format
msgid "Close"
msgstr "Fechar"

#: ../../help.pm:1
#, c-format
msgid ""
"\"%s\": check the current country selection. If you are not in this\n"
"country, click on the \"%s\" button and choose another one. If your country\n"
"is not in the first list shown, click the \"%s\" button to get the complete\n"
"country list."
msgstr ""

#: ../../standalone/logdrake:1
#, c-format
msgid "Calendar"
msgstr "Calend�rio"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
"Restaurar Selecionado\n"
"Entrada do Cat�logo"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
msgstr ""
"Para usar uma fila de impress�o lpd remota, voc� precisa dar o nome do host "
"e o servidor de impress�o e o nome da fila naquele servidor."

#: ../../lang.pm:1
#, c-format
msgid "Iceland"
msgstr "Isl�ndia"

#: ../../common.pm:1
#, c-format
msgid "consolehelper missing"
msgstr "consolehelper ausente"

#: ../../services.pm:1
#, c-format
msgid "stopped"
msgstr "parado"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Whether the FPU has an irq vector"
msgstr "Se o FPU possui um vetor irq"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Ext2"
msgstr "Ext2"

#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Expand Tree"
msgstr "Expandir �rvore"

#: ../../harddrake/sound.pm:1
#, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
"\n"
"It has been reported to oops the kernel on unloading.\n"
"\n"
"The new \"%s\" driver'll only be used on next bootstrap."
msgstr ""
"O driver antigo \"%s\" est� na lista negra.\n"
"\n"
"Foi relatado que ele provoca erros no kernel ao descarregar.\n"
"\n"
"O novo driver \"%s\" s� ser� utilizado na pr�xima inicializa��o."

#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
#: ../../standalone/drakfloppy:1
#, c-format
msgid "Expert Mode"
msgstr "Modo expert"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer options"
msgstr "Op��es da impressora"

#: ../../standalone/drakgw:1
#, c-format
msgid "Local Network adress"
msgstr "Endere�o da Rede Local"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup your System files. (/etc directory)"
msgstr "C�pia de seguran�a de seus arquivos de sistema (diret�rio /etc)"

#: ../../security/help.pm:1
#, fuzzy, c-format
msgid "Set the user umask."
msgstr "Usu�rios"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been updated after the distribution was released. They may\n"
"contain security or bug fixes.\n"
"\n"
"To download these packages, you will need to have a working Internet \n"
"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
"Agora voc� pode fazer o download das pacotes atualizados. Estes pacotes\n"
"foram lan�ados ap�s o lan�amento de sua distribui��o. Eles podem conter\n"
"atualiza��es de seguran�a ou corre��es de falhas.\n"
"\n"
"Para baixar estes pacotes, voc� precisa ter uma conex�o com a internet\n"
"funcionando.\n"
"\n"
"Voc� deseja instalar estas atualiza��es?"

#: ../../standalone/logdrake:1
#, c-format
msgid "Samba Server"
msgstr "Servidor Samba"

#: ../../standalone/drakxtv:1
#, c-format
msgid "Australian Optus cable TV"
msgstr "TV a Cabo Australiana Optus"

#: ../../install_steps_newt.pm:1
#, c-format
msgid ""
"  <Tab>/<Alt-Tab> between elements  | <Space> selects | <F12> next screen "
msgstr ""
" <Tab>/<Alt-Tab> move entre op��es  | <Espa�o> seleciona | <F12> pr�xima "
"tela "

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Subnet:"
msgstr "Sub Rede:"

#: ../../lang.pm:1
#, c-format
msgid "Zimbabwe"
msgstr "Zimbabwe"

#: ../../standalone/drakbackup:1
#, c-format
msgid "When"
msgstr "Quando"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Second DNS Server (optional)"
msgstr "Segundo Servidor DNS (opcional)"

#: ../../lang.pm:1
#, c-format
msgid "Finland"
msgstr "Finl�ndia"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Color depth: %s\n"
msgstr "N�mero de cores: %s\n"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "You can't unselect this package. It must be upgraded"
msgstr "Voc� n�o pode deselecionar essa pacote. Ele tem que ser atualizado"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Loading from floppy"
msgstr "Carregando do disquete"

#: ../../security/help.pm:1
#, c-format
msgid "Enable/Disable the logging of IPv4 strange packets."
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Slovenia"
msgstr "Eslov�nia"

#: ../../standalone/mousedrake:1
#, c-format
msgid "Mouse test"
msgstr "Teste de mouse"

#: ../../standalone/drakperm:1
#, c-format
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
"Drakperm � utilizado para ver arquivos para poder corrigir permiss�es, "
"donos, e grupos via msec.\n"
"Voc� tamb�m pode editar sua pr�prias regras que ir�o sobrescrever as regras "
"padr�es."

#: ../../ugtk.pm:1
#, c-format
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"

#: ../../any.pm:1
#, c-format
msgid ""
"Enter a user\n"
"%s"
msgstr ""
"Entre com o usu�rio\n"
"%s"

#: ../../standalone/harddrake2:1
#, c-format
msgid ""
"- PCI and USB devices: this lists the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
"- dispositivos PCI e USB : esta � a lista com os ids do vendedor, do "
"dispositivo, dos subvendedores e subdispositivos PCI/ USB."

#: ../../standalone/draksplash:1
#, c-format
msgid "ProgressBar color selection"
msgstr "Sele��o da cor da Barra de Progresso"

#: ../../any.pm:1
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr ""
"Aqui est�o as entradas diferentes.\n"
"Voc� pode adicionar mais ou modificar as existentes."

#: ../../help.pm:1
#, c-format
msgid "/dev/hda"
msgstr "/dev/hda"

#: ../../help.pm:1
#, c-format
msgid "/dev/hdb"
msgstr "/dev/hdb"

#: ../../services.pm:1
#, c-format
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
msgstr ""
"Executa comando agendados pelo comando at na hora especificado quando\n"
"at estava rodando, e executa comandos grupos de comandos quando o uso de "
"mem�ria estiver baixo o suficiente."

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Radio support:"
msgstr "Suporte a radio:"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing SANE packages..."
msgstr "Instalando pacotes SANE..."

#: ../../any.pm:1
#, c-format
msgid "LDAP"
msgstr "LDAP"

#: ../../bootloader.pm:1
#, c-format
msgid "SILO"
msgstr "SILO"

#: ../../diskdrake/removable.pm:1
#, c-format
msgid "Change type"
msgstr "Mudar tipo"

#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid ", USB printer #%s"
msgstr ", impressora USB #%s"

#: ../../any.pm:1
#, c-format
msgid "SILO Installation"
msgstr "Instala��o do SILO"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Use CD/DVDROM to backup"
msgstr "Usar CD/DVDROM para backup"

#: ../../install_messages.pm:1
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
"\n"
"\n"
"For information on fixes which are available for this release of Mandrake "
"Linux,\n"
"consult the Errata available from:\n"
"\n"
"\n"
"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
"Parab�ns, a instala��o foi completada.\n"
"Remova a m�dia de inicializa��o e aperte enter para reiniciar.\n"
"\n"
"Para informa��es sobre corre��es dispon�veis para essa vers�o do Mandrake "
"Linux,\n"
"consulte a Errata dispon�vel em http://www.mandrakelinux.com/.\n"
"\n"
"\n"
"%s\n"
"\n"
"\n"
"Informa��es sobre a configura��o do sistema est�o dispon�veis no\n"
"cap�tulo p�s-instala��o do Guia Oficial de Usu�rio Mandrake Linux."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "paranoid"
msgstr "Paran�ico"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Send mail report after each backup to:"
msgstr "Enviar um resumo por correio ap�s cada opera��o para :"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
"Este comando tamb�m pode ser usado no campo \"Comando de impress�o\" dos "
"di�logos de impress�o de muitos aplicativos. Mas n�o especifique o nome do "
"arquivo a ser impresso, pois ele � provido pelo aplicativo.\n"

#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "Resolution"
msgstr "Resolu��o"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
"the print server, as well as the share name for the printer you wish to "
"access and any applicable user name, password, and workgroup information."
msgstr ""
"Para imprimir em uma impressora SMB, voc� precisa dar o nome do host SMB "
"(Nota! Ele pode ser diferente do host TCP/IP!) e possivelmente o endere�o IP "
"do servidor de impress�o, como tamb�m o nome compartilhado para a impressora "
"que voc� deseja acessar e qualquer informa��o aplic�vel sobre nome de "
"usu�rio, senha e grupo de trabalho."

#: ../../security/help.pm:1
#, c-format
msgid ""
" Enabling su only from members of the wheel group or allow su from any user."
msgstr ""

#: ../../standalone/drakgw:1
#, c-format
msgid "reconfigure"
msgstr "reconfigurar"

#: ../../Xconfig/card.pm:1
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
"Seu placa suporta acelera��o hardware 3D com o XFree %s,\n"
"NOTE QUE O SUPORTE � EXPERIMENTAL E PODE TRAVAR O SEU COMPUTADOR."

#: ../../security/l10n.pm:1
#, fuzzy, c-format
msgid "Shell timeout"
msgstr "Tempo de espera do boot do kernel"

#: ../../standalone/logdrake:1
#, c-format
msgid "Xinetd Service"
msgstr "Servi�o Xinetd"

#: ../../any.pm:1
#, c-format
msgid "access to network tools"
msgstr "Acesso as ferramentas da rede"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Firmware-Upload for HP LaserJet 1000"
msgstr ""

#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
"And, of course, push multimedia to its limits with the very latest software "
"to play videos, audio files and to handle your images or photos."
msgstr ""
"Mandrake Linux 9.1 permite-lhe de utilizar os �ltimos programas para escutar "
"arquivos de som, editar suas imagens ou fotos, e assistir v�deos"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Here is a list of all auto-detected printers. "
msgstr ""

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
"Erro instalando o aboot, \n"
"tentar for�ar a instala��o, mesmo que isso destrua a primeira parti��o?"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Restore Selected\n"
"Files"
msgstr ""
"Restaurar os Arquivos\n"
"Seleccionados"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"%s exists, delete?\n"
"\n"
"Warning: If you've already done this process you'll probably\n"
" need to purge the entry from authorized_keys on the server."
msgstr ""
"%s existe, deletar?\n"
"\n"
"Aten��o: Se voc� j� fez este processo antes, voc� provavelmente \n"
"precisa limpar a entrada da chaves_autorizadas no servidor."

#: ../../network/tools.pm:1
#, c-format
msgid "Please fill or check the field below"
msgstr "Favor preencher ou marcar os campos abaixo"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Voc� quer salvar as modifica��es /etc/fstab"

#: ../../standalone/drakconnect:1
#, c-format
msgid "Boot Protocol"
msgstr "Protocolo da inicializa��o"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "LVM-disks %s\n"
msgstr "Discos LVM %s\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "The package %s is needed. Install it?"
msgstr "O pacote %s precisa � necess�rio Voc� deseja instal�-lo?"

#: ../../services.pm:1
#, c-format
msgid "On boot"
msgstr "No boot"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Bus identification"
msgstr "Identifica��o do Bus"

#: ../../lang.pm:1
#, c-format
msgid "Vatican"
msgstr "Vaticano"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Please make a backup of your data first"
msgstr "Favor primeiro fazer um backup de seus dados"

#: ../../install_interactive.pm:1
#, c-format
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"Voc� tem mais de um disco r�gido, em qual deles voc� quer instalar o linux?"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Boot ISO"
msgstr "ISO e Inicializa��o"

#: ../../lang.pm:1
#, c-format
msgid "Eritrea"
msgstr "Eritr�ia"

#: ../../standalone/drakfont:1
#, c-format
msgid "Remove List"
msgstr "Remover Lista"

#: ../../share/advertising/05-desktop.pl:1
#, c-format
msgid "A customizable environment"
msgstr ""

#: ../../keyboard.pm:1
#, c-format
msgid "Inuktitut"
msgstr "Inuktitut"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Some protocols, like rsync, may be configured at the server end.  Rather "
"than using a directory path, you would use the 'module' name for the service "
"path."
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Morocco"
msgstr "Marrocos"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Which printer model do you have?"
msgstr "Qual modelo de impressora voc� possui?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Add a new printer"
msgstr "Adicionar nova impressora"

#: ../../standalone/drakbackup:1
#, c-format
msgid "          All of your selected data have been          "
msgstr "          Todos os dados selecionados foram          "

#: ../../lang.pm:1
#, c-format
msgid "Nepal"
msgstr "Nepal"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "<-- Delete"
msgstr "<-- Deletar"

#: ../../harddrake/data.pm:1
#, c-format
msgid "cpu # "
msgstr "cpu # "

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "chunk size"
msgstr "tamanho do bloco"

#: ../../security/help.pm:1
#, c-format
msgid ""
"If set to \"ALL\", /etc/issue and /etc/issue.net are allowed to exist.\n"
"\n"
"If set to NONE, no issues are allowed.\n"
"\n"
"Else only /etc/issue is allowed."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid " Enable/Disable sulogin(8) in single user level."
msgstr ""

#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
#: ../../bootloader.pm:1
#, c-format
msgid "commands before booting, or 'c' for a command-line."
msgstr "comandos antes da inicializa��o, ou 'c' para linha de comando."

#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
#, c-format
msgid "Problems installing package %s"
msgstr "Problemas instalando pacote %s"

#: ../../standalone/logdrake:1
#, c-format
msgid "You will receive an alert if the load is higher than this value"
msgstr "Voc� receber� um alerta caso a carga seja maior que este valor"

#: ../../standalone/drakbug:1
#, c-format
msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
"This will open  a web browser window  on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
"\n"
"\n"
"Para comunicar um erro, clique no bot�o enviar.\n"
"Isto ir� abrir uma janela do navegador web em https://drakbug.mandrakesoft."
"com\n"
"onde voc� ir� encontrar um formulario para preencher. As informa��es "
"indicadas acima \n"
"v�o ser transferidas a este servidor\n"
"\n"

#: ../../standalone/scannerdrake:1
#, c-format
msgid "Add a scanner manually"
msgstr "Adicionar um scanner manualmente"

#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Reload partition table"
msgstr "Recuperar tabela de parti��o"

#: ../../standalone/drakboot:1
#, c-format
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Sim, eu quero autologin com esse (usu�rio, desktop)"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Restore Selected"
msgstr ""
"Restaurar os Arquivos\n"
"Seleccionados"

#: ../../standalone/drakfont:1
#, c-format
msgid "Search for fonts in installed list"
msgstr "Procurar fontes na lista das instaladas"

#: ../../standalone/drakgw:1
#, c-format
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "A Rede Local n�o termina com `.0', desistindo."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Boot"
msgstr "Boot"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Tuner type:"
msgstr "Mudar tipo:"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"Now, it's time to select a printing system for your computer. Other OSs may\n"
"offer you one, but Mandrake Linux offers two. Each of the printing system\n"
"is best suited to particular types of configuration.\n"
"\n"
" * \"%s\" -- which is an acronym for ``print, don't queue'', is the choice\n"
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
"will handle only very simple network cases and is somewhat slow when used\n"
"with networks.) It's recommended that you use \"pdq\" if this is your first\n"
"experience with GNU/Linux.\n"
"\n"
" * \"%s\" - `` Common Unix Printing System'', is an excellent choice for\n"
"printing to your local printer or to one halfway around the planet. It is\n"
"simple to configure and can act as a server or a client for the ancient\n"
"\"lpd \" printing system, so it compatible with older operating systems\n"
"which may still need print services. While quite powerful, the basic setup\n"
"is almost as easy as \"pdq\". If you need to emulate a \"lpd\" server, make\n"
"sure you turn on the \"cups-lpd \" daemon. \"%s\" includes graphical\n"
"front-ends for printing or choosing printer options and for managing the\n"
"printer.\n"
"\n"
"If you make a choice now, and later find that you don't like your printing\n"
"system you may change it by running PrinterDrake from the Mandrake Control\n"
"Center and clicking the expert button."
msgstr ""
"Aqui,voc� seleciona o sistema de impress�o para o seu computador. Outros "
"SOs\n"
"podem oferecer-lhe apenas um, mas o Mandrake Linux oferece dois.\n"
"\n"
" * \"pdq\" -- que significa ``print, don't queue'', � a escolha caso voc�\n"
"tenha uma conex�o direta com sua impressora e voc� queira ser capaz de\n"
"corrigir falhas na impress�o, e se voc� n�o possuir impressoras em rede. "
"Ele\n"
"trabalhar� apenas redes muito simples e � um tanto lento para redes. "
"Escolha\n"
"\"pdq\" se for sua primeira experi�ncia com GNU/Linux. Voc� poder� udar "
"suas\n"
"escolhas ap�s a instala��o utilizando o PrinterDrake no Centro de Controle\n"
"Mandrake, e clicando no bot�o expert.\n"
"\n"
" * \"%s\" -- ``Common Unix Printing System'', � excelente para imprimir em\n"
"sua impressora local e tamb�m atrav�s do mundo. � simples e pode agir como\n"
"servidor ou cliente para o antigo sistema de impress�o \"lpd\". Por isso, �\n"
"compat�vel com os sistemas que vieram antes. Pode fazer v�rios truques, mas\n"
"a configura��o � quase t�o f�cil quanto a do \"pdq\". Se voc� precisar "
"emular\n"
"um servidor \"lpd\", voc� deve ativar o daemon \"cups-lpd\". Ele possui "
"v�rias\n"
"interfaces gr�ficas para impress�o ou selecionar as opc�es de impress�o."

#: ../../keyboard.pm:1
#, c-format
msgid "\"Menu\" key"
msgstr "Tecla \"Menu\""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"\n"
"Please check whether Printerdrake did the auto-detection of your printer "
"model correctly. Find the correct model in the list when a wrong model or "
"\"Raw printer\" is highlighted."
msgstr ""
"\n"
"\n"
"Favor verificar se o Printerdrake fez a auto-detec��o do modelo de sua "
"impressora corretamente. Encontre o modelo correto na lista qunado um modelo "
"incorreto ou \"Impressora RAW\" estiver selecionado."

#: ../../standalone/draksec:1
#, c-format
msgid "Security Administrator:"
msgstr "Administrador de Seguran�a:"

#: ../../security/help.pm:1
#, c-format
msgid "Set the shell timeout. A value of zero means no timeout."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check permissions of files in the users' home."
msgstr ""

#: ../../standalone/drakconnect:1
#, c-format
msgid ""
"You don't have an Internet connection.\n"
"Create one first by clicking on 'Configure'"
msgstr ""
"Voc� n�o possui nenhuma conex�o � Internet.\n"
"Crie uma clicando em 'Configurar'"

#: ../../standalone/drakfont:1
#, c-format
msgid "Fonts copy"
msgstr "C�pia de fontes"

#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Automated"
msgstr "Autom�tico"

#: ../../Xconfig/test.pm:1
#, c-format
msgid "Do you want to test the configuration?"
msgstr "Voc� quer testar a configura��o?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
"GIMP."
msgstr ""
"A impressora \"%s\" foi removida com sucesso do Star Office/OpenOffice.org/"
"GIMP"

#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Save packages selection"
msgstr "Salvar sele��o de pacotes"

#: ../../standalone/drakautoinst:1
#, c-format
msgid "Remove the last item"
msgstr "Remover o �ltimo �tem"

#: ../../standalone/drakbackup:1
#, c-format
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Lista dos usu�rios a restaurar (s� a data mais recente por usu�rio � "
"importante)"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "No net boot images created!"
msgstr "Nenhuma imagem de boot na rede criada!"

#: ../../network/adsl.pm:1
#, c-format
msgid "use pptp"
msgstr "usar pptp"

#: ../../services.pm:1
#, c-format
msgid "Choose which services should be automatically started at boot time"
msgstr ""
"Escolha quais servi�os devem ser iniciados automaticamente na inicaliza��o"

#: ../../security/l10n.pm:1
#, c-format
msgid "Check files/directories writable by everybody"
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Learn how to use this printer"
msgstr "Aprender como utilizar esta impressora"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Configure the network now"
msgstr "Configurar a rede agora"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Escolha um mirror (espelho) de onde pegar os pacotes"

#: ../../install_interactive.pm:1
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
"O redimensionar FAT � incapaz de manipular sua parti��o, \n"
"o seguinte erro ocorreu: %s"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Size: "
msgstr "Tamanho:"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Which sector do you want to move it to?"
msgstr "Qual setor voc� quer mover?"

#: ../../interactive/stdio.pm:1
#, c-format
msgid "Do you want to click on this button?"
msgstr "Voc� quer clicar neste bot�o?"

#: ../../lang.pm:1
#, c-format
msgid "Bahamas"
msgstr "Bahamas"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Manual configuration"
msgstr "Configura��o manual"

#: ../../standalone/logdrake:1
#, c-format
msgid "search"
msgstr "localizar"

#: ../../services.pm:1
#, c-format
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard.  This can be selected using the kbdconfig utility.\n"
"You should leave this enabled for most machines."
msgstr ""
"Esse pacote carrega o mapa de teclado selecionado como\n"
"um comando em /etc/sysconfig/keyboard. Isso pode ser selecionado usando o\n"
"utilit�rio kbdconfig. Voc� deve deixar isso ativar para a maioria da "
"m�quinas."

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instala��o do driver de v�deo)"

#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
msgid "Zeroconf host name must not contain a ."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid " Accept/Refuse icmp echo."
msgstr ""

#: ../../services.pm:1
#, c-format
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files.  It is a good idea to always run syslog."
msgstr ""
"Syslog � um aparato que muitos daemons usam para gravar mensagens\n"
"em v�rios arquivos de log. � uma boa id�ia sempre rodar o syslog."

#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
#, c-format
msgid "Unknown/Others"
msgstr "Desconhecido/ Outros"

#: ../../standalone/drakxtv:1
#, c-format
msgid "No TV Card detected!"
msgstr "Nenhuma Placa de TV detectada!"

#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/harddrake2:1
#, c-format
msgid "Options"
msgstr "Op��es"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "A impressora \"%s\" agora � a impressora padr�o."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
"connected to the first parallel port. When your printer is connected to "
"another port or to a print server box please connect the printer to the "
"first parallel port before you print a test page. Otherwise the printer will "
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
"Voc� est� configurando uma winprinter laser OKI. Estas impressoras\n"
"utilizam um protocolo de comunica��o muito especial, portanto, funcionam "
"apenas quando conectadas na primeira porta paralela. Quando sua impressora "
"estiver conectada em outra porta, ou em um servidor de impress�o, favor "
"conect�-la � primeira porta paralela antes de imprimir uma p�gina de teste. "
"Caso contr�rio, a impressora n�o funcionar�. Sua configura��o do tipo de "
"conex�o ser� ignorado pelo driver."

#: ../../standalone/harddrake2:1
#, c-format
msgid "generation of the cpu (eg: 8 for PentiumIII, ...)"
msgstr "gera��o da cpu (ex: 8 para PentiumIII, ...)"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Auto-detected"
msgstr "Auto detectado"

#: ../../standalone/drakpxe:1
#, c-format
msgid ""
"You are about to configure your computer to install a PXE server as a DHCP "
"server\n"
"and a TFTP server to build an installation server.\n"
"With that feature, other computers on your local network will be installable "
"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
"\n"
"Note: you need a dedicated Network Adapter to set up a Local Area Network "
"(LAN)."
msgstr ""
"Voc� est� prestes a configurar o seu computador para instalar um servidor "
"PXE como\n"
"servidor DHCP e um serivor TFTP para criar um servidor de instala��o.\n"
"Com este recurso, outros computadores na sua rede local ser�o instal�veis "
"atrav�s deste computador.\n"
"\n"
"Certifique, antes de continuar, de ter configurado seu acesso � Rede/"
"Internet utilizando o drakconnect.\n"
"\n"
"Nota: voc� precisa de um Adaptador de Rede dedicado para criar um Rede Local "
"(LAN)."

#: ../../security/l10n.pm:1
#, c-format
msgid "Authorize TCP connections X Window"
msgstr ""

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
"Sem espa�o livre para 1MB bootstrap! A instala��o continuar�, mas para poder "
"iniciar seu sistema, voc� precisar� criar uma parti��o bootstrap no DiskDrake"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Please choose the printer you want to set up or enter a device name/file "
"name in the input line"
msgstr ""
"Favor escolher a impressora que deseja configurar, ou digite o nome do "
"dispositivo/ nome do arquivo na linha de comando"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Refuse"
msgstr "Recusar"

#: ../../standalone/draksec:1
#, c-format
msgid "LOCAL"
msgstr ""

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "HFS"
msgstr "HFS"

#: ../../services.pm:1
#, c-format
msgid ""
"HardDrake runs a hardware probe, and optionally configures\n"
"new/changed hardware."
msgstr ""
"HardDrake executa uma detec��o do hardware existente, e\n"
"opcionalmente configura um novo/alterado hardware."

#: ../../printer/cups.pm:1 ../../printer/main.pm:1
#, c-format
msgid "Remote Printers"
msgstr "Impressoras remotas"

#: ../../fs.pm:1
#, c-format
msgid "Creating and formatting file %s"
msgstr "Criando e formatando arquivo %s"

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check additions/removals of sgid files."
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The HP LaserJet 1000 needs its firmware to be uploaded after being turned "
"on. Download the Windows driver package from the HP web site (the firmware "
"on the printer's CD does not work) and extract the firmware file from it by "
"uncompresing the self-extracting '.exe' file with the 'unzip' utility and "
"searching for the 'sihp1000.img' file. Copy this file into the '/etc/"
"printer' directory. There it will be found by the automatic uploader script "
"and uploaded whenever the printer is connected and turned on.\n"
msgstr ""

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "Escolha um LVM existente para adicionar"

#: ../../standalone/drakfont:1
#, c-format
msgid "xfs restart"
msgstr "reiniciar xfs"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
"A impressora \"%s\" j� existe,\n"
"voc� realmente deseja sobregravar sua configura��o?"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "No partition available"
msgstr "sem parti��es dispon�veis"

#: ../../standalone/scannerdrake:1
#, c-format
msgid "Use the scanners on hosts: "
msgstr ""

#: ../../standalone/drakfont:1
#, c-format
msgid "Unselected All"
msgstr "Deselecionar Tudo"

#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "Domain Name Resolver"
msgstr "Determinador de Nome de dom�nio"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Encryption key (again)"
msgstr "Chave criptogr�fica (de novo)"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Samba share name missing!"
msgstr "Falta o nome compartilhado Samba!"

#: ../../standalone/drakfont:1
#, c-format
msgid "True Type install done"
msgstr "Instala��o das fontesTrue Type conclu�da"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Detection in progress"
msgstr "Detec��o em progresso"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Build Whole Kernel -->"
msgstr "Construir todo o kernel -->"

#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "modem"
msgstr "Modem"

#: ../../install_steps.pm:1
#, c-format
msgid "Welcome to %s"
msgstr "Bem-vindo � %s"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Por favor insira o disquete com os Updates dos M�dulos no drive %s"

#: ../../standalone/drakboot:1
#, c-format
msgid "Bootsplash"
msgstr "Bootsplash"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The following printer\n"
"\n"
"%s%s\n"
"is directly connected to your system"
msgstr ""
"A seguinte impressora\n"
"\n"
"%s%s\n"
"est� conectada diretamente ao seu sistema"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer sharing on hosts/networks: "
msgstr "Compartilhamento de arquivos"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"The \"%s\" command also allows to modify the option settings for a "
"particular printing job. Simply add the desired settings to the command "
"line, e. g. \"%s <file>\". "
msgstr ""
"\n"
"O comando \"%s\" tamb�m permite modificar as op��es de uma impress�o em "
"particular. Apenas adicione as configura��es desejadas � linha de comando, "
"ex: \"%s <arquivo>\". "

#: ../../modules/interactive.pm:1
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
"properly, although it normally works fine without them. Would you like to "
"specify\n"
"extra options for it or allow the driver to probe your machine for the\n"
"information it needs? Occasionally, probing will hang a computer, but it "
"should\n"
"not cause any damage."
msgstr ""
"Em alguns casos, o driver %s precisa de informa��es extra para funcionar\n"
"corretamente, mas ele normalmente funciona bem sem essas informa��es. Voc�\n"
"gostaria de especificar op��es extras ou deixar o driver localizar na sua\n"
"m�quina as informa��es que ele precisa? Ocasionalmente, isso poder� travar\n"
"o computador, mas n�o deve causar nenhum dano."

#: ../../standalone/drakbackup:1
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr "CD com nome incorreto. O disco correto � %s."

#: ../../standalone/drakgw:1
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
"\n"
"%s\n"
"\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Bem-vindo ao utilit�rio de Compartilhamente da Conex�o � Internet!\n"
"\n"
"%s\n"
"\n"
"Clique em ``Configurar'' se voc� quiser abrir o ajudante de configura��o."

#: ../../lang.pm:1
#, c-format
msgid "Cuba"
msgstr "Cuba"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Searching for new printers..."
msgstr "Procurando por novas impressoras..."

#: ../../lang.pm:1
#, c-format
msgid "Belize"
msgstr "Belize"

#: ../../standalone/drakbackup:1
#, c-format
msgid " (multi-session)"
msgstr " (multi-sess�o)"

#: ../../any.pm:1
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Tempo de espera do boot do kernel"

#: ../../Xconfig/card.pm:1
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
"Seu placa suporta acelera��o hardware 3D mas apenas com o XFree %s.\n"
"Sua placa � suportada pelo XFree %s que pode ter melhor suporte 2D."

#: ../../security/help.pm:1
#, fuzzy, c-format
msgid " Activate/Disable daily security check."
msgstr ""
"Argumentos (arg)\n"
"\n"
"Ativa/ Desativa a verifica��o di�ria de seguran�a."

#: ../../security/l10n.pm:1
#, c-format
msgid "Enable libsafe if libsafe is found on the system"
msgstr ""

#: ../../install_interactive.pm:1
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "O particionador DrakX encontrou as solu��es seguintes:"

#: ../../keyboard.pm:1
#, c-format
msgid "Hungarian"
msgstr "H�ngaro"

#: ../../network/isdn.pm:1
#, c-format
msgid ""
"Select your provider.\n"
"If it isn't listed, choose Unlisted."
msgstr ""
"Selecione o seu provedor.\n"
" Se n�o estiver na lista, escolha N�o Listado"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincroniza��o autom�tica da hora (usando NTP)"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "8 MB"
msgstr "8 MB"

#: ../../any.pm:1
#, c-format
msgid "LDAP Server"
msgstr "Servidor LDAP"

#: ../../services.pm:1
#, c-format
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops.  It won't get started unless configured so it is safe to "
"have\n"
"it installed on machines that don't need it."
msgstr ""
"Suporte PCMCIA � utilizado normalmente para suportar coisas como\n"
"ethernet ou modems em laptops. Ele n�o ser� iniciado a n�o ser que "
"estejaconfigurado,\n"
"ent�o � seguro te-lo instalado em m�quinas que n�o precisam dele."

#: ../../network/tools.pm:1
#, c-format
msgid "Choose your country"
msgstr "Escolha seu pa�s"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"- System Files:\n"
msgstr ""
"\n"
"- Arquivos do sistema :\n"

#: ../../standalone/drakbug:1
#, c-format
msgid "Standalone Tools"
msgstr "Ferramentas dedicadas"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Where"
msgstr "Onde"

#: ../../standalone/logdrake:1
#, c-format
msgid "but not matching"
msgstr "mas n�o confere"

#: ../../harddrake/sound.pm:1
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
"sound card (%s)."
msgstr ""
"Aqui voc� pode selecionar um driver alternativo (como um OSS ou ALSA )para "
"sua placa de som (%s)"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Configuring PCMCIA cards..."
msgstr "Configurando cart�es PCMCIA..."

#: ../../common.pm:1
#, c-format
msgid "kdesu missing"
msgstr "kdesu ausente"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "%s: %s requires a username...\n"
msgstr ""

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Encryption key"
msgstr "Chave criptogr�fica"

#: ../../mouse.pm:1
#, c-format
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"

#: ../../lang.pm:1
#, c-format
msgid "Christmas Island"
msgstr "Ilhas Christmas"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"A instala��o do gerenciador de inicializa��o falhou. Ocorreram os seguintes "
"erros:"

#: ../../standalone/harddrake2:1
#, c-format
msgid "EIDE/SCSI channel"
msgstr "Canal EIDE/SCSI"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Set this printer as the default"
msgstr "Definir como impressora padr�o"

#: ../../install_interactive.pm:1
#, c-format
msgid "partition %s"
msgstr "parti��o %s"

#: ../../security/level.pm:1
#, c-format
msgid "Paranoid"
msgstr "Paran�ico"

#: ../../any.pm:1
#, c-format
msgid "NIS"
msgstr "NIS"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "<-- Del User"
msgstr "<-- Apagar Usu�rio"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Location on the bus"
msgstr "Localiza��o do bus"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "No printer found!"
msgstr "Nenhuma impressora encontrada!"

#: ../../standalone/harddrake2:1
#, c-format
msgid "the vendor name of the device"
msgstr "o nome do fabricante do dispositivo"

#: ../../help.pm:1 ../../install_interactive.pm:1
#, c-format
msgid "Erase entire disk"
msgstr "Apague disco inteiro"

#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid " (Default)"
msgstr " (Padr�o)"

#: ../../standalone/drakgw:1
#, c-format
msgid "Automatic reconfiguration"
msgstr "Configura��o autom�tica"

#: ../../standalone/net_monitor:1
#, c-format
msgid "Receiving Speed:"
msgstr "Velocidade de recebimento:"

#: ../../lang.pm:1
#, c-format
msgid "Turks and Caicos Islands"
msgstr "Ilhas Turks e Caicos"

#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../interactive.pm:1
#: ../../my_gtk.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "<- Previous"
msgstr "<- Anterior"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Transfer Now"
msgstr ""
"  Transferir  \n"
"Agora"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Set root password and network authentication methods"
msgstr ""

#: ../../standalone/drakgw:1
#, c-format
msgid "Internet Connection Sharing configuration"
msgstr "Configura��o do compartilhamento da Internet"

#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Toggle between flat and group sorted"
msgstr "Mudar entre organiza��o plana ou em grupo"

#: ../../standalone/drakboot:1
#, c-format
msgid "Themes"
msgstr "Temas"

#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Options: %s"
msgstr "Op��es: %s"

#: ../../standalone/drakboot:1
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Voc� est� utilizando o %s como gerenciador de inicializa��o.\n"
"Clique em Configurar para abrir o auxiliar de configura��o."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "OKI winprinter configuration"
msgstr "Configura��o de winprinter OKI"

#: ../../lang.pm:1
#, c-format
msgid "Saint Helena"
msgstr "Santa Helena"

#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Security Level"
msgstr "N�vel de Seguran�a"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
"Alguns passos n�o foram completados.\n"
"\n"
"Voc� realmente quer sair agora?"

#: ../../lang.pm:1
#, c-format
msgid "Sudan"
msgstr "Sud�o"

#: ../../keyboard.pm:1
#, c-format
msgid "Polish (qwertz layout)"
msgstr "Polon�s (layout QWERTZ)"

#: ../../lang.pm:1
#, c-format
msgid "Syria"
msgstr "S�ria"

# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#: ../../bootloader.pm:1
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
"\n"
"Choose an operating system from the list above or\n"
"wait %d seconds for default boot.\n"
"\n"
msgstr ""
"Bem-vindo ao %s, o selecionador de sistema operacional!\n"
"\n"
"Escolha um sistema operacional da lista acima ou\n"
"aguarde %d segundos para entrar no sistema padr�o.\n"
"\n"

#: ../../keyboard.pm:1
#, c-format
msgid "Portuguese"
msgstr "Portugu�s"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Loopback file name: "
msgstr "Nome do arquivo loopback: "

#: ../../network/network.pm:1
#, c-format
msgid "DNS server address should be in format 1.2.3.4"
msgstr "O endere�o DNS deve ser no formato 1.2.3.4"

#: ../../keyboard.pm:1
#, c-format
msgid "Left Control key"
msgstr "Tecla Control da esquerda"

#: ../../lang.pm:1
#, c-format
msgid "Serbia"
msgstr "Serbia"

#: ../../standalone/drakxtv:1
#, c-format
msgid "Newzealand"
msgstr "Nova Zel�ndia"

#: ../../fsedit.pm:1
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Esse diret�rio deveria permanecer dentro do sistema de arquivo root"

#: ../../keyboard.pm:1
#, c-format
msgid "CapsLock key"
msgstr "Tecla Caps lock"

#: ../../steps.pm:1
#, c-format
msgid "Install bootloader"
msgstr "Instalar gerenciador de inicializa��o"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Select the memory size of your graphics card"
msgstr "Selecione o tamanho da mem�ria de sua placa gr�fica"

#: ../../security/help.pm:1
#, c-format
msgid ""
"Enable/Disable crontab and at for users.\n"
"\n"
"Put allowed users in /etc/cron.allow and /etc/at.allow (see man at(1)\n"
"and crontab(1))."
msgstr ""

#: ../../standalone.pm:1
#, c-format
msgid ""
"[OPTIONS]\n"
"Network & Internet connection and monitoring application\n"
"\n"
"--defaultintf interface : show this interface by default\n"
"--connect : connect to internet if not already connected\n"
"--disconnect : disconnect to internet if already connected\n"
"--force : used with (dis)connect : force (dis)connection.\n"
"--status : returns 1 if connected 0 otherwise, then exit.\n"
"--quiet : don't be interactive. To be used with (dis)connect."
msgstr ""
"[OP��ES]\n"
"Aplicativo de conex�o e monitoramento da Rede & Internet\n"
"\n"
"--defaultintf interface : mostra esta interface por padr�o\n"
"--connect : conecta � Internet, se j� n�o estiver conectado\n"
"--disconnect : desconecta da Internet, caso conectado\n"
"--force : utilizado com (dis)connect : for�a a (des)conex�o.\n"
"--status : retorna 1 caso conectado ou 0 se n�o, ent�o sai.\n"
"--quite : n�o ser interativo. A ser utilizado com (dis)connect."

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Dynamic IP Address Pool:"
msgstr "Zona de endere�o IP din�mico :"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "LVM name?"
msgstr "Nome LVM?"

#: ../../standalone/service_harddrake:1
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr "Alguns dispositivos na classe de hardware \"%s\" foram removidos:\n"

#: ../../modules/interactive.pm:1
#, c-format
msgid "Found %s %s interfaces"
msgstr "Interfaces %s %s encontradas"

#: ../../standalone/drakfont:1
#, c-format
msgid "Post Install"
msgstr "P�s-instala��o"

#: ../../standalone/drakgw:1
#, c-format
msgid "The internal domain name"
msgstr "O nome do dom�nio interno"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card IRQ"
msgstr "IRQ da Placa"

#: ../../ugtk.pm:1 ../../standalone/logdrake:1
#, c-format
msgid "logdrake"
msgstr "logdrake"

#: ../../standalone.pm:1
#, fuzzy, c-format
msgid ""
"Font Importation and monitoring "
"application                                     \n"
"--windows_import : import from all available windows partitions.\n"
"--xls_fonts      : show all fonts that already exist from xls\n"
"--strong         : strong verification of font.\n"
"--install        : accept any font file and any directry.\n"
"--uninstall      : uninstall any font or any directory of font.\n"
"--replace        : replace all font if already exist\n"
"--application    : 0 none application.\n"
"                 : 1 all application available supported.\n"
"                 : name_of_application like  so for staroffice \n"
"                 : and gs for ghostscript for only this one."
msgstr ""
"Aplicativo de monitoramento e importa��o de "
"fontes                                     \n"
"--windows_import : importa de todas as parti��es windows dispon�veis.\n"
"--xls_fonts      : exibe todas as fontes que j� existem no xls\n"
"--strong         : verifica��o forte da fonte.\n"
"--install        : aceita qualquer fonte e qualquer diret�rio.\n"
"--uninstall      : desinstala qualquer fonte ou qualquer diret�rio de "
"fontes.\n"
"--replace        : substitui todas as fontes caso j� exista\n"
"--application    : 0 nenhum aplicativo.\n"
"                 : 1 todos os aplicativos suportados dispon�veis.\n"
"                 : nome_do_aplicativo como so para staroffice \n"
"                 : e gs para ghostscript"

#: ../../standalone.pm:1
#, c-format
msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"

#: ../../any.pm:1
#, c-format
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Escolha o drive de disquete que voc� quer usar para criar o disco de "
"inicializa��o"

#: ../../bootloader.pm:1 ../../help.pm:1
#, c-format
msgid "LILO with text menu"
msgstr "LILO com menu de texto"

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Everything (no firewall)"
msgstr "Todos (sem firewall)"

#: ../../any.pm:1
#, c-format
msgid "You must specify a kernel image"
msgstr "Voc� deve especificar uma imagem de kernel"

#: ../../printer/main.pm:1
#, c-format
msgid ", multi-function device on USB"
msgstr ", dispositivo multi-functional na USB"

#: ../../interactive/newt.pm:1
#, c-format
msgid "Do"
msgstr "Pronto"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"Contactando o mirror (espelho) para pegar a lista de pacotes dispon�veis"

#: ../../keyboard.pm:1
#, c-format
msgid "Lithuanian AZERTY (old)"
msgstr "Litu�nio AZERTY (velho)"

#: ../../keyboard.pm:1
#, c-format
msgid "Brazilian (ABNT-2)"
msgstr "Brasileiro (ABNT-2)"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "IP address of host/network:"
msgstr "Endere�o IP do host/rede:"

#: ../../standalone/draksplash:1
#, c-format
msgid ""
"the progress bar y coordinate\n"
"of its upper left corner"
msgstr ""
"coordenas y da barra de progresso\n"
"no canto superior esquerdo"

#: ../../install_gtk.pm:1
#, c-format
msgid "System installation"
msgstr "Instala��o do Sistema"

#: ../../lang.pm:1
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr "Saint Vincent e Grenadines"

#: ../../security/help.pm:1
#, c-format
msgid "Allow/Forbid reboot by the console user."
msgstr ""

#: ../../standalone/logdrake:1
#, c-format
msgid "/File/_Open"
msgstr "/Arquivo/_Abrir"

#: ../../standalone/drakpxe:1
#, c-format
msgid "Location of auto_install.cfg file"
msgstr "Localiza��o do arquivo auto_install.cfg"

#: ../../any.pm:1
#, c-format
msgid "Open Firmware Delay"
msgstr "Delay do firmware aberto"

#: ../../lang.pm:1
#, c-format
msgid "Hungary"
msgstr "Hungria"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Total progess"
msgstr "Progresso total"

#: ../../lang.pm:1
#, c-format
msgid "New Zealand"
msgstr "Nova Zel�ndia"

#: ../../standalone/net_monitor:1
#, c-format
msgid "Color configuration"
msgstr "Configura��o da cor"

#: ../../security/level.pm:1
#, c-format
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
"J� h� algumas restri��es, e mais controles autom�ticos s�o executados todas "
"as noites."

#: ../../standalone/drakbackup:1
#, c-format
msgid "please choose the date to restore"
msgstr "Por favor a data a restaurar"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Switching from ext2 to ext3"
msgstr "Mudando de ext2 para ext3"

#: ../../printer/data.pm:1
#, c-format
msgid "LPRng"
msgstr "LPRng"

#: ../../lang.pm:1
#, c-format
msgid "Netherlands Antilles"
msgstr "Antilhas Holandesas"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Browse to new restore repository."
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard allows you to install local or remote printers to be used from "
"this machine and also from other machines in the network.\n"
"\n"
"It asks you for all necessary information to set up the printer and gives "
"you access to all available printer drivers, driver options, and printer "
"connection types."
msgstr ""
"\n"
"Bem-vindo ao Ajudante de Configura��o de Impressora\n"
"\n"
"Este ajudante lhe permitir� instalar uma impressora local ou remota, para "
"ser utilizada por este e outros computadores da rede.\n"
"\n"
"Ele lhe perguntar� todas as informa��es necess�rias para configurar a "
"impressora e lhe dar� acesso a todos os driver de impress�o dispon�veis, "
"op��es do driver, e tipos de conex�o da impressora."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "and %d unknown printers"
msgstr "e %d impressoras desconhecidas"

#: ../../standalone/harddrake2:1
#, c-format
msgid ""
"Early Intel Pentium chips manufactured have a bug in their floating point "
"processor which did not achieve the required precision when performing a "
"Floating point DIVision (FDIV)"
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Backup quota exceeded!\n"
"%d MB used vs %d MB allocated."
msgstr ""

#: ../../network/isdn.pm:1
#, c-format
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"Nenhuma placa ISDN PCI encontrada. Favor selecionar uma na pr�xima tela"

#: ../../common.pm:1
#, c-format
msgid "GB"
msgstr "GB"

#: ../../any.pm:1
#, c-format
msgid "Please give a user name"
msgstr "Favor dar um nome de usu�rio"

#: ../../any.pm:1
#, c-format
msgid "Enable CD Boot?"
msgstr "Permitir CD Boot?"

#: ../../interactive/stdio.pm:1
#, c-format
msgid " enter `void' for void entry"
msgstr " digite `void' para uma entrada nula"

#: ../../standalone/drakbackup:1
#, c-format
msgid "on Hard Drive"
msgstr "no Disco R�gido"

#: ../../security/l10n.pm:1
#, fuzzy, c-format
msgid "Password history length"
msgstr "Essa senha � muito simples"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Winmodem connection"
msgstr "Conex�o winmodem"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
"\n"
"You can print using the \"Print\" command of your application (usually in "
"the \"File\" menu).\n"
"\n"
"If you want to add, remove, or rename a printer, or if you want to change "
"the default option settings (paper input tray, printout quality, ...), "
"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
"Center."
msgstr ""
"\n"
"Parab�ns, sua impressora es� instalada e configurada!\n"
"\n"
"Voc� pode imprimir usando o comando \"Imprimir\" de seu aplicativo "
"(geralmente encontrado no menu \"Arquivo\")\n"
"\n"
"Se voc� quiser adicionar, remover ou renomear uma impresosra, ou quiser "
"modificar as op��es configuradas com o valor padr�o (como bandeja de entrada "
"de papel, qualidade da impress�o e etc), selecione \"Impressora\" na se��o "
"de \"Hardware\" do Centro de Controle Mandrake."

#: ../../standalone/drakxtv:1
#, c-format
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr "Agora voc� pode executar o xawtv (no X WIndow!) !\n"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Sem swap suficiente para completar a instala��o, favor adicionar mais"

#. -PO: example: lilo-graphic on /dev/hda1
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "%s on %s"
msgstr "%s em %s"

#: ../../security/help.pm:1
#, fuzzy, c-format
msgid "Allow/Forbid remote root login."
msgstr "Todas as m�quinas remotas"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
"local time according to the time zone you selected. If the clock on your\n"
"motherboard is set to local time, you may deactivate this by unselecting\n"
"\"%s\", which will let GNU/Linux know that the system clock and the\n"
"hardware clock are in the same timezone. This is useful when the machine\n"
"also hosts another operating system like Windows.\n"
"\n"
"The \"%s\" option will automatically regulate the clock by connecting to a\n"
"remote time server on the Internet. For this feature to work, you must have\n"
"a working Internet connection. It is best to choose a time server located\n"
"near you. This option actually installs a time server that can used by\n"
"other machines on your local network as well."
msgstr ""
"O GNU/Linux gerencia o tempo em GMT (Tempo M�dio de Grenwich) e traduz\n"
"em tempo local de acordo com o fuso hor�rio que voc� escolheu. Contudo, � "
"poss�vel \n"
"desativ�-lo, deselecionando \"Rel�gio do hardware configurado para GMT\", de "
"forma que \n"
"o rel�gio do hardware seja o mesmo do rel�gio do sistema. Isto � �til quando "
"a m�quina \n"
"est� abrigando outro sistema operacional, como o Windows.\n"
"\n"
"A op��o \"Sincroniza��o Autom�tica de Tempo\" ir� automaticamente regular o "
"rel�gio\n"
"conectando-o a um servidor remoto de tempo na internet. Na lista "
"apresentada\n"
"escolha um servidor perto de voc�. Obviamente, voc� deve dispor de uma "
"conex�o\n"
" com a internet para isso."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Which is your timezone?"
msgstr "Qual � o seu fuso hor�rio?"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Can't create log file!"
msgstr "N�o pode criar o cat�logo!"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Use .backupignore files"
msgstr "Utilizar quotas para os arquivos da c�pia de seguran�a."

#: ../../lang.pm:1
#, c-format
msgid "Guinea"
msgstr "Guin�"

#: ../../network/tools.pm:1
#, c-format
msgid "The system is now connected to the Internet."
msgstr "O sistema agora est� conectado � Internet."

#: ../../lang.pm:1
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr "Ilhas South Georgia e South Sandwich"

#: ../../standalone/drakxtv:1
#, c-format
msgid "Japan (broadcast)"
msgstr "Jap�o (difus�o)"

#: ../../lang.pm:1
#, c-format
msgid "Mozambique"
msgstr "Mo�ambique"

#: ../../any.pm:1
#, c-format
msgid "Icon"
msgstr "�cone"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Please choose what you want to backup"
msgstr "Por favor escolha o que quer na c�pia de seguran�a"

#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "256 colors (8 bits)"
msgstr "256 cores (8 bits)"

#: ../../any.pm:1
#, c-format
msgid "Read-write"
msgstr "Ler--gravar"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Size: %s\n"
msgstr "Tamanho: %s\n"

#: ../../standalone/drakconnect:1
#, c-format
msgid "Hostname: "
msgstr "Hostname:"

#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "Add a rule"
msgstr "adicionar uma regra"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Chunk size %s\n"
msgstr "Tamanho do bloco %s\n"

#: ../../share/advertising/02-community.pl:1
#, c-format
msgid "Build the future of Linux!"
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Local Printer"
msgstr "Impressora local"

#: ../../standalone.pm:1
#, c-format
msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
msgstr ""

#: ../../network/netconnect.pm:1
#, c-format
msgid "ADSL connection"
msgstr "Conex�o ADSL"

#: ../../standalone/drakbackup:1
#, c-format
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Sem configura��o, favor clicar em Avan�ado ou Assistente\n"

#: ../../standalone/drakautoinst:1
#, c-format
msgid "Error!"
msgstr "Erro!"

#: ../../network/netconnect.pm:1
#, c-format
msgid "cable connection detected"
msgstr "conex�o a cabo encontrada"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr "Permiss�o negada ao transfeir %s para %s"

#: ../../standalone/harddrake2:1
#, c-format
msgid "/_Report Bug"
msgstr "/_Reportar erro"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Resize"
msgstr "Redimensionar"

#: ../../lang.pm:1
#, c-format
msgid "Dominica"
msgstr "Dominica"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Resolution: %s\n"
msgstr "Resolu��o: %s\n"

#: ../../install2.pm:1
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
"missing), this generally means your boot floppy in not in sync with the "
"Installation medium (please create a newer boot floppy)"
msgstr ""
"N�o pode acessar os m�dulos do kernal corresponde ao seu kernel (o arquivo %"
"s est� faltando),isto significa geralmente seu disco de boot n�o est� em "
"sincronia com sua instala��o (favor criar um novo disco de boot)"

#: ../../help.pm:1
#, c-format
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
"Favor selecionar a porta correta. Por exemplo, a porta COM1\n"
"no MS Windows � chamada ttyS0 no GNU/Linux."

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "The following packages are going to be removed"
msgstr "Os seguintes pacotes ser�o removidos"

#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
#, c-format
msgid "Connect to the Internet"
msgstr "Conectar � Internet"

#: ../../install_interactive.pm:1
#, c-format
msgid "Use existing partitions"
msgstr "Use parti��o existindo"

#: ../../keyboard.pm:1
#, c-format
msgid "Canadian (Quebec)"
msgstr "Canadense (Quebec)"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Mouse device: %s\n"
msgstr "Dispositivo do mouse: %s\n"

#: ../../standalone/drakfont:1
#, c-format
msgid "Reselect correct fonts"
msgstr "Reselecionar as fontes correctas"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"Options\n"
"\n"
"   Here you can choose whether you want to have your machine automatically\n"
"switch to a graphical interface at boot. Obviously, you want to check\n"
"\"%s\" if your machine is to act as a server, or if you were not successful\n"
"in getting the display configured."
msgstr ""
"finalmente, voc� ser� perguntado se deseja ver a interface gr�fica durante a "
"inicializa��o.\n"
"Repare que esta op��o ser� apresentada mesmo se voc� escolher n�o testar a \n"
"configura��o. Obviamente, voc� dever� responder \"N�o\" se a sua m�quina ir� "
"funcionar\n"
"como um servidor, ou se voc� n�o conseguiu configurar o v�deo."

#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid "MandrakeExpert Corporate"
msgstr "MandrakeExpert Corporativo"

#: ../../standalone.pm:1
#, c-format
msgid ""
" [everything]\n"
"       XFdrake [--noauto] monitor\n"
"       XFdrake resolution"
msgstr ""
" [tudo]\n"
"       XFdrake [--noauto] monitor\n"
"       XFdrake resolu��o"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Write protection"
msgstr "Prote��o a escrita"

#: ../../standalone/drakfont:1
#, c-format
msgid "You've not selected any font"
msgstr "Voc� n�o selecionou nenhuma fonte"

#: ../../steps.pm:1
#, c-format
msgid "Language"
msgstr "Escolha seu idioma"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer model selection"
msgstr "Sele��o do modelo da imrpessora"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Ap�s alterar o tipo da parti��o %s, todos os dados desta parti��o ser�o "
"perdidos"

#: ../../common.pm:1
#, c-format
msgid "%d seconds"
msgstr "%d segundos"

#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Insira um disquete vazio no drive %s"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "A valid URI must be entered!"
msgstr "Uma URI v�lida � necess�ria!"

#: ../../network/isdn.pm:1
#, c-format
msgid "Found \"%s\" interface do you want to use it ?"
msgstr "Enterface \"%s'\" encontrada. Voc� deseja utiliza-la?"

#: ../../standalone/drakgw:1
#, c-format
msgid "Re-configure interface and DHCP server"
msgstr "Reconfigurar interface e servidor DHCP"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "Sound configuration"
msgstr "Configura��o so Som"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Photo test page"
msgstr "Teste de teste com foto"

#: ../../help.pm:1 ../../install_interactive.pm:1
#, c-format
msgid "Custom disk partitioning"
msgstr "Particionamento de disco personalizada"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Enter Printer Name and Comments"
msgstr "Digite o Nome da Impressora e Coment�rios"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The following printers\n"
"\n"
"%s%s\n"
"are directly connected to your system"
msgstr ""
"As seguintes impressoras\n"
"\n"
"%s%s\n"
"est�o conectadas diretamente ao seu sistema"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "type: %s"
msgstr "tipo: %s"

#: ../../keyboard.pm:1
#, c-format
msgid "Slovakian (QWERTY)"
msgstr "Eslov�quio (QWERTY)"

#: ../../standalone/draksound:1
#, c-format
msgid "No Sound Card detected!"
msgstr "Nenhuma Placa de Som detectada!"

#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
#, c-format
msgid "Mouse Port"
msgstr "Porta do Mouse"

#: ../../security/l10n.pm:1
#, c-format
msgid "Check for unsecured accounts"
msgstr ""

#: ../../standalone/drakTermServ:1
#, c-format
msgid ""
"Need to restart the Display Manager for full changes to take effect. \n"
"(service dm restart - at the console)"
msgstr ""
"Necess�rio reiniciar o Gerenciador de Se��es para as mudan�as terem efeitos "
"(# service dm restart - em um terminal)"

#: ../../standalone/logdrake:1
#, c-format
msgid "Ftp Server"
msgstr "Servidor Ftp"

#: ../../lang.pm:1
#, c-format
msgid "Uganda"
msgstr "Uganda"

#: ../../standalone/drakfont:1
#, c-format
msgid "%s fonts conversion"
msgstr "%s convers�o de fonte"

#: ../../standalone/harddrake2:1
#, c-format
msgid "the type of bus on which the mouse is connected"
msgstr "no tipo de barramento no qual seu mouse est� conectado"

#: ../../help.pm:1
#, c-format
msgid ""
"As a review, DrakX will present a summary of information it has about your\n"
"system. Depending on your installed hardware, you may have some or all of\n"
"the following entries. Each entry is made up of the configuration item to\n"
"be configured, followed by a quick summary of the current configuration.\n"
"Click on the corresponding \"%s\" button to change that.\n"
"\n"
" * \"%s\": check the current keyboard map configuration and change that if\n"
"necessary.\n"
"\n"
" * \"%s\": check the current country selection. If you are not in this\n"
"country, click on the \"%s\" button and choose another one. If your country\n"
"is not in the first list shown, click the \"%s\" button to get the complete\n"
"country list.\n"
"\n"
" * \"%s\": By default, DrakX deduces your time zone based on the country\n"
"you have chosen. You can click on the \"%s\" button here if this is not\n"
"correct.\n"
"\n"
" * \"%s\": check the current mouse configuration and click on the button to\n"
"change it if necessary.\n"
"\n"
" * \"%s\": clicking on the \"%s\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation.\n"
"\n"
" * \"%s\": if a sound card is detected on your system, it is displayed\n"
"here. If you notice the sound card displayed is not the one that is\n"
"actually present on your system, you can click on the button and choose\n"
"another driver.\n"
"\n"
" * \"%s\": by default, DrakX configures your graphical interface in\n"
"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
"\"%s\" to reconfigure your graphical interface.\n"
"\n"
" * \"%s\": if a TV card is detected on your system, it is displayed here.\n"
"If you have a TV card and it is not detected, click on \"%s\" to try to\n"
"configure it manually.\n"
"\n"
" * \"%s\": if an ISDN card is detected on your system, it will be displayed\n"
"here. You can click on \"%s\" to change the parameters associated with the\n"
"card.\n"
"\n"
" * \"%s\": If you want to configure your Internet or local network access\n"
"now.\n"
"\n"
" * \"%s\": this entry allows you to redefine the security level as set in a\n"
"previous step ().\n"
"\n"
" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
"the corresponding section of the ``Starter Guide'' for details about\n"
"firewall settings.\n"
"\n"
" * \"%s\": if you wish to change your bootloader configuration, click that\n"
"button. This should be reserved to advanced users.\n"
"\n"
" * \"%s\": here you'll be able to fine control which services will be run\n"
"on your machine. If you plan to use this machine as a server it's a good\n"
"idea to review this setup."
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Comoros"
msgstr "Comorros"

#: ../../standalone/drakboot:1
#, c-format
msgid "Yaboot mode"
msgstr "Modo yaboot"

#: ../../standalone/drakxtv:1
#, c-format
msgid "USA (cable)"
msgstr "EUA (cabo)"

#: ../../standalone/drakboot:1
#, c-format
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
"N�o � poss�vel executar LiLo! \n"
"Digite \n"
"lilo\n"
" como root em um terminal para completar a instala��o do tema."

#: ../../mouse.pm:1
#, c-format
msgid "Generic 3 Button Mouse"
msgstr "Mouse Gen�rico com 3 Bot�es"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Select another media to restore from"
msgstr "Escolha outra m�dia de onde restaurar"

#: ../../standalone/drakbug:1
#, c-format
msgid "Software Manager"
msgstr "Gerenciador de Softwares"

#: ../../interactive/stdio.pm:1
#, c-format
msgid "Re-submit"
msgstr "Re-enviar"

#: ../../standalone/drakbackup:1
#, c-format
msgid "CD in place - continue."
msgstr "CD posicionado - continuar."

#: ../../common.pm:1
#, c-format
msgid "KB"
msgstr "KB"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Network & Internet"
msgstr "Rede e Internet"

#: ../../keyboard.pm:1
#, c-format
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litu�nio \"fon�tico\" QWERTY"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Net Boot Images"
msgstr "Imagens de Inicializa��o na Rede"

#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Sharing of local scanners"
msgstr "Impressoras encontradas"

#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Plug'n Play probing failed. Please select the correct monitor"
msgstr "Problemas com o Plug'n Play. Favor escolher outro monitor"

#: ../../services.pm:1
#, c-format
msgid "Services and deamons"
msgstr "Servi�os e daemons"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remote host name missing!"
msgstr "Falta o nome do host remoto!"

#: ../../fsedit.pm:1
#, c-format
msgid "with /usr"
msgstr "com /usr"

#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#: ../../standalone/drakbackup:1
#, c-format
msgid "Network"
msgstr "Rede"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr "Auto detectar impressoras conectadas a maquinas rodando MS Windows"

#: ../../any.pm:1
#, c-format
msgid "This password is too simple"
msgstr "Essa senha � muito simples"

#: ../../security/l10n.pm:1
#, fuzzy, c-format
msgid "Chkconfig obey msec rules"
msgstr "Configurar servi�os"

#: ../../keyboard.pm:1
#, c-format
msgid "Slovakian (QWERTZ)"
msgstr "Eslov�quio (QWERTZ)"

#: ../../share/advertising/06-development.pl:1
#, c-format
msgid ""
"To modify and to create in different languages such as Perl, Python, C and C+"
"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
"development environments."
msgstr ""

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Truly minimal install (especially no urpmi)"
msgstr "Realmente uma instala��o m�nima (especialmente sem o uprmi)"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Use daemon"
msgstr "Usar um daemon"

#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
#: ../../standalone/drakauth:1 ../../standalone/drakconnect:1
#: ../../standalone/logdrake:1
#, c-format
msgid "Authentication"
msgstr "Autentica��o?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr "Adicionar esta impressora ao Star Office/OpenOffice/GIMP"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Additional CUPS servers: "
msgstr "Servidores CUPS adicionais:"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) in the input fields."
msgstr ""
"Escoha da lista uma das impressoras autodetectadas, ou digite o nome do host "
"ou IP, e, opcionalmente, o n�mero da porta (o padr�o � 9100) nos campos."

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Where do you want to mount %s?"
msgstr "Onde voc� quer montar o dispositivo %s?"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Restore Via Network"
msgstr "Restaurar da Rede"

#: ../../lang.pm:1
#, c-format
msgid "Algeria"
msgstr "Alg�ria"

#: ../../any.pm:1
#, c-format
msgid "Initrd-size"
msgstr "Tamanho do Initrd"

#: ../../help.pm:1
#, c-format
msgid ""
"In the case that different servers are available for your card, with or\n"
"without 3D acceleration, you are then asked to choose the server that best\n"
"suits your needs."
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid "\tBackups use tar and gzip\n"
msgstr "\tOs arquivos utilizam tar e gzip\n"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "2 MB"
msgstr "2 MB"

#: ../../keyboard.pm:1
#, c-format
msgid "Both Control keys simultaneously"
msgstr "Ambas teclas Control simult�neamente"

#: ../../standalone.pm:1
#, c-format
msgid ""
"[OPTION]...\n"
"  --no-confirmation      don't ask first confirmation question in "
"MandrakeUpdate mode\n"
"  --no-verify-rpm        don't verify packages signatures\n"
"  --changelog-first      display changelog before filelist in the "
"description window\n"
"  --merge-all-rpmnew     propose to merge all .rpmnew/.rpmsave files found"
msgstr ""
"[OP��O]...\n"
"  --no-confirmation      n�o pergunta a primeira confirma��o no modo "
"MandrakeUpdate\n"
"  --no-verify-rpm        n�o verifica as assinaturas dos pacotes\n"
"  --changelog-first      exibe o changelog antes da lista de arquivos na "
"janela de descri��o\n"
"  --merge-all-rpmnew     prop�e unir todos os arquivos .rpmnew/.rpmsave "
"encontrados"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Setting Default Printer..."
msgstr "Configurando Impressora Padr�o..."

#: ../../standalone/drakgw:1
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interface %s (usando m�dulo %s)"

#: ../../standalone/draksplash:1
#, c-format
msgid "Generating preview ..."
msgstr "Gerando pr�-visualiza��o..."

#: ../../network/network.pm:1
#, c-format
msgid ""
"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
"frequency), or add enough '0' (zeroes)."
msgstr ""
"Freq deve ter o sufixo k, M ou G (por exemplo,  \"2.46G\" para a frequ�ncia "
"2.46GHz), ou adicionar '0' (zeros) suficientes."

#: ../../standalone/draksec:1
#, fuzzy, c-format
msgid "ignore"
msgstr "Singapura"

#: ../../security/help.pm:1
#, c-format
msgid ""
"Allow/Forbid X connections:\n"
"\n"
"- ALL (all connections are allowed),\n"
"\n"
"- LOCAL (only connection from local machine),\n"
"\n"
"- NONE (no connection)."
msgstr ""

#: ../../printer/main.pm:1
#, c-format
msgid ", multi-function device on parallel port #%s"
msgstr ", dispositivo multi-funcional na porta paralela #%s"

#: ../../mouse.pm:1
#, c-format
msgid "serial"
msgstr "serial"

#: ../../harddrake/data.pm:1
#, c-format
msgid "DVD-ROM"
msgstr ""

#: ../../keyboard.pm:1
#, c-format
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgiano (layout \"Latin\")"

#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
msgid "Get the best items with Mandrake Linux Strategic partners"
msgstr ""

#: ../../modules/interactive.pm:1
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
"Voc� pode agora inserir as op��es para o modulo %s.\n"
"Lembre-se que todo endere�o deve ser escrito com o prefixo 0x como '0x12'"

#: ../../lang.pm:1
#, c-format
msgid "Kenya"
msgstr "Qu�nia"

#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
"tool to fully adapt your computer to the use you make of it. Configure and "
"customize elements such as the security level, the peripherals (screen, "
"mouse, keyboard...), the Internet connection and much more!"
msgstr ""

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Use ``Desmontar'' primeiro"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing mtools packages..."
msgstr "Instalando pacotes mtools..."

#: ../../any.pm:1
#, c-format
msgid "You must specify a root partition"
msgstr "Voc� deve especificar uma parti��o root"

#: ../../standalone/draksplash:1
#, c-format
msgid "first step creation"
msgstr "primeiro passo da cria��o"

#: ../../keyboard.pm:1
#, c-format
msgid "Both Shift keys simultaneously"
msgstr "Teclas Shift simult�neamente"

#: ../../standalone/scannerdrake:1
#, c-format
msgid "Select a scanner model"
msgstr "Selecione o modelo do Scanner"

#: ../../security/help.pm:1
#, c-format
msgid "Accept/Refuse bogus IPv4 error messages."
msgstr ""

#: ../../printer/data.pm:1
#, c-format
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR New Generation"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Drakbackup Configuration"
msgstr "Configura��o de Drakbackup"

#: ../../standalone/logdrake:1
#, c-format
msgid "Save as.."
msgstr "Salvar como..."

#: ../../lang.pm:1
#, c-format
msgid "Korea (North)"
msgstr ""

#: ../../standalone/drakconnect:1
#, c-format
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
msgstr ""
"Este interface ainda n�o foi configurada.\n"
"Execute o assistente de configura��o na janela principal"

#: ../../install_gtk.pm:1
#, c-format
msgid "System configuration"
msgstr "Configura��o do Sistema"

#: ../../any.pm:1 ../../security/l10n.pm:1
#, c-format
msgid "Autologin"
msgstr "Autologin"

#: ../../any.pm:1
#, c-format
msgid "Domain Admin Password"
msgstr "Senha de administrador do dom�nio"

#: ../../share/advertising/05-desktop.pl:1
#, fuzzy, c-format
msgid ""
"Perfectly adapt your computer to your needs thanks to the 11 available "
"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
"2.2, Window Maker, ..."
msgstr ""
"Mandrake Linux 9.1 vem com 11 interfaces gr�ficas que podem ser totalmente "
"configuradas : KDE 3, Gnome 2, WindowMaker, ..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Configuring printer ..."
msgstr "Configurando impressora..."

#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s), \n"
"filesystem checks will be run on your next boot into Windows(TM)"
msgstr ""

#: ../../common.pm:1
#, c-format
msgid "MB"
msgstr "MB"

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, run some checks against the rpm database."
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Virgin Islands (British)"
msgstr "Ilhas Virgens Brit�nicas"

#: ../../lang.pm:1
#, c-format
msgid "Bermuda"
msgstr "Bermudas"

#: ../../standalone/drakfont:1
#, c-format
msgid "click here if you are sure."
msgstr "clique aqui se tem a certeza."

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
"Nenhum arquivo de configura��o encontrado \n"
"Por favor clique em Assistente ou Avan�ado."

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"Listed here are the existing Linux partitions detected on your hard drive.\n"
"You can keep the choices made by the wizard, since they are good for most\n"
"common installations. If you make any changes, you must at least define a\n"
"root partition (\"/\"). Do not choose too small a partition or you will not\n"
"be able to install enough software. If you want to store your data on a\n"
"separate partition, you will also need to create a \"/home\" partition\n"
"(only possible if you have more than one Linux partition available).\n"
"\n"
"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
"\n"
"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
"\"sd\" if it is a SCSI hard drive.\n"
"\n"
"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard drives:\n"
"\n"
" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
"\n"
" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
"\"second lowest SCSI ID\", etc."
msgstr ""
"Acima est�o listadas as parti��es Linux detectadas no\n"
"seu disco r�gido. Voc� pode manter as op��es feitas pelo o ajudante, elas "
"s�o\n"
"boas para o uso di�rio. Se voc� quiser alterar essas op��es, voc� deve ao\n"
"menos definir uma parti��o (\"/\"). N�o escolhe uma parti��o muito pequena "
"ou voc�\n"
"n�o ser� capaz de instalar software suficiente. Se voc� quiser guardar seus "
"dados em\n"
"uma parti��o separada, voc� precisa escolher uma \"/home\" (apenas poss�vel "
"se voc�\n"
"tiver mais de uma parti��o Linux dispon�vel).\n"
"\n"
"Nota: cada parti��o � listada da seguinte forma: \"Nome\", \"Capacidade\".\n"
"\n"
"\n"
"\"Nome\" � codificado da seguinte maneira: \"tipo do disco r�gido\", "
"\"n�mero\n"
"do disco r�gido\", \"n�mero da parti��o\" (por exemplo, \"hda1\").\n"
"\n"
"\n"
"\"Tipo do disco r�gido\"  \"hd\" se seu disco r�gido for IDE e \"sd\"\n"
"se ele for um disco r�gido SCSI.\n"
"\n"
"\n"
"\"N�mero do disco r�gido\" � sempre uma letra depois de \"hd\" ou \"sd\".Com "
"discos r�gidos IDE:\n"
"\n"
"   * \"a\" significa \"disco r�gido mestre na controladora IDE prim�ria\",\n"
"\n"
"   * \"b\" significa \"disco r�gido escravo na controladora IDE prim�ria\",\n"
"\n"
"   * \"c\" significa \"disco r�gido mestre na controladora IDE secund�ria"
"\",\n"
"\n"
"   * \"d\" significa \"disco r�gido escravo na controladora IDE secund�ria"
"\",\n"
"\n"
"\n"
"Com discos r�gidos SCSI, um significa \"disco r�gido prim�rio\", um \"b\" "
"significa \"disco r�gido secund�rio\", etc..."

#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
#, c-format
msgid "Remove"
msgstr "Remover"

#: ../../lang.pm:1
#, c-format
msgid "Lesotho"
msgstr "Lesoto"

#: ../../ugtk2.pm:1
#, c-format
msgid "utopia 25"
msgstr "utopia 25"

#: ../../printer/main.pm:1
#, c-format
msgid "Pipe job into a command"
msgstr ""

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "new dynamic device name generated by core kernel devfs"
msgstr "Novo nome din�mico do dispositivo criado pelo devfs do kernel"

#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
#: ../../my_gtk.pm:1 ../../ugtk2.pm:1 ../../modules/interactive.pm:1
#: ../../standalone/drakgw:1 ../../standalone/harddrake2:1
#, c-format
msgid "Yes"
msgstr "Sim"

#: ../../lang.pm:1
#, c-format
msgid "Cote d'Ivoire"
msgstr "Costa do Marfim"

#: ../../network/isdn.pm:1
#, c-format
msgid "Which protocol do you want to use?"
msgstr "Qual protocolo voc� quer usar?"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Restore Progress"
msgstr "Progresso da Restaura��o"

#: ../../lang.pm:1
#, c-format
msgid "Estonia"
msgstr "Est�nia"

#: ../../standalone/scannerdrake:1
#, c-format
msgid "Choose the host on which the local scanners should be made available:"
msgstr ""

#: ../../partition_table.pm:1
#, c-format
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
"to the extended partitions."
msgstr ""
"Voc� tem um buraco em sua tabela de parti��o e eu n�o posso us�-lo.\n"
"A �nica solu��o � mover suas parti��es prim�rias para ter o buraco pr�ximo "
"das parti��es extendidas"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Channel"
msgstr "Canal"

#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
#, c-format
msgid "Add"
msgstr "Adicionar"

#: ../../standalone/drakgw:1
#, c-format
msgid "No Internet Connection Sharing has ever been configured."
msgstr "O Compartilhamento de Conex�o � Internet nunca foi configurado."

#: ../../standalone/drakbackup:1
#, c-format
msgid " Error while sending mail. \n"
msgstr " Erro durante o envio do e-mail \n"

#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#: ../../standalone/keyboarddrake:1
#, c-format
msgid "Keyboard"
msgstr "Teclado"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
"Insira o CD com o nome de volume %s\n"
" no drive de CD do ponto de montagem /mnt/cdrom"

#: ../../network/network.pm:1
#, c-format
msgid ""
"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
"enough '0' (zeroes)."
msgstr ""
"Taxa deve ter o sufixo k, M ou G (por exemplo, \"11M\" para 11M), ou "
"adicionar '0' (zeros) suficientes"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Choose the connection you want to configure"
msgstr "Escolha a conex�o que deseja configurar"

#: ../../standalone/draksec:1
#, c-format
msgid "Please wait, setting security level..."
msgstr "Por favor aguarde, configura��o do n�vel de seguran�a..."

#: ../../share/advertising/06-development.pl:1
#, c-format
msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr "Mandrake Linux 9.1 � uma �tima plataforma de desenvolvimento"

#: ../../network/network.pm:1
#, c-format
msgid "Configuring network device %s"
msgstr "Configurando dispositivo de rede %s"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "activated"
msgstr "ativado"

#: ../../standalone/drakpxe:1
#, c-format
msgid "Please choose which network interface will be used for the dhcp server."
msgstr ""
"Favor escolher qual adaptador de rede voc� quer usar para o servidor dhcp."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Procurando pacotes � atualizar"

#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Mount point: "
msgstr "Ponto de montagem: "

#: ../../standalone/drakfont:1
#, c-format
msgid "parse all fonts"
msgstr "percorrer todas as fontes"

#: ../../security/help.pm:1
#, fuzzy, c-format
msgid "Allow/Forbid direct root login."
msgstr "Todas as m�quinas remotas"

#: ../../security/help.pm:1
#, c-format
msgid " Accept/Refuse broadcasted icmp echo."
msgstr ""

#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "With X"
msgstr "Com X"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Multi-head configuration"
msgstr "Configura��o multi-cabe�a"

#: ../../standalone/drakbug:1
#, c-format
msgid "No browser available! Please install one"
msgstr "Nenhum navegador dispon�vel! Instale um por favor"

#: ../../Xconfig/main.pm:1
#, c-format
msgid ""
"Keep the changes?\n"
"The current configuration is:\n"
"\n"
"%s"
msgstr ""
"Manter altera��es?\n"
"A configura��o atual �:\n"
"\n"
"%s"

#: ../../fsedit.pm:1
#, c-format
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Voc� n�o pode usar ReiserFS em parti��es menores que 32MB"

#: ../../services.pm:1
#, c-format
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
msgstr ""
"O protocolo rwho permite que usu�rios remotos peguem uma lista de todos os\n"
"usu�rios logados em uma m�quina rodando o daemon rwho (similar ao finger)."

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Domain name"
msgstr "Nome do dom�nio"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Sharing of local printers"
msgstr "Compartilhando impressoras locais"

#: ../../install_messages.pm:1
#, c-format
msgid "http://www.mandrakelinux.com/en/91errata.php3"
msgstr "http://www.mandrakelinux.com/en/91errata.php3"

#: ../../security/help.pm:1
#, c-format
msgid "Enable/Disable libsafe if libsafe is found on the system."
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Available printers"
msgstr "Impressoras encontradas"

#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Empty"
msgstr "Vazio"

#: ../../help.pm:1
#, c-format
msgid ""
"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
"WindowMaker, etc.) bundled with Mandrake Linux rely upon.\n"
"\n"
"You will be presented with a list of different parameters to change to get\n"
"an optimal graphical display: Graphic Card\n"
"\n"
"   The installer will normally automatically detect and configure the\n"
"graphic card installed on your machine. If it is not the case, you can\n"
"choose from this list the card you actually have installed.\n"
"\n"
"   In the case that different servers are available for your card, with or\n"
"without 3D acceleration, you are then asked to choose the server that best\n"
"suits your needs.\n"
"\n"
"\n"
"\n"
"Monitor\n"
"\n"
"   The installer will normally automatically detect and configure the\n"
"monitor connected to your machine. If it is correct, you can choose from\n"
"this list the monitor you actually have connected to your computer.\n"
"\n"
"\n"
"\n"
"Resolution\n"
"\n"
"   Here you can choose the resolutions and color depths available for your\n"
"hardware. Choose the one that best suits your needs (you will be able to\n"
"change that after installation though). A sample of the chosen\n"
"configuration is shown in the monitor.\n"
"\n"
"\n"
"\n"
"Test\n"
"\n"
"   the system will try to open a graphical screen at the desired\n"
"resolution. If you can see the message during the test and answer \"%s\",\n"
"then DrakX will proceed to the next step. If you cannot see the message, it\n"
"means that some part of the autodetected configuration was incorrect and\n"
"the test will automatically end after 12 seconds, bringing you back to the\n"
"menu. Change settings until you get a correct graphical display.\n"
"\n"
"\n"
"\n"
"Options\n"
"\n"
"   Here you can choose whether you want to have your machine automatically\n"
"switch to a graphical interface at boot. Obviously, you want to check\n"
"\"%s\" if your machine is to act as a server, or if you were not successful\n"
"in getting the display configured."
msgstr ""

#: ../../standalone/draksplash:1
#, c-format
msgid "text width"
msgstr "comprimento do texto"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Onde voc� quer montar o dispositivo %s?"

#: ../../standalone/drakgw:1
#, c-format
msgid "The default lease (in seconds)"
msgstr "Concess�o padr�o (em segundos)"

#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid ""
"We are now going to configure the %s connection.\n"
"\n"
"\n"
"Press \"%s\" to continue."
msgstr ""
"\n"
"\n"
"\n"
"Agora voc� pode sair para configurar a conex�o %s\n"
"\n"
"\n"
"Pressione OK para continuar."

#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Interface \"%s\""
msgstr "Interface \"%s\""

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "With basic documentation (recommended!)"
msgstr "Com documenta��o b�sica (recomendado!)"

#: ../../mouse.pm:1
#, c-format
msgid "1 button"
msgstr "1 bot�o"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"There are %d unknown printers directly connected to your system"
msgstr ""
"\n"
"Estas s�o as %d impressoras desconhecidas conectadas diretamente a seu "
"sistema"

#: ../../Xconfig/main.pm:1
#, c-format
msgid "Test"
msgstr "Teste"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Korea"
msgstr "Mais"

#: ../../interactive/stdio.pm:1
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Sua escolha? (padr�o `%s'%s)"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Raw printer"
msgstr "Impressowa RAW"

#: ../../standalone/harddrake2:1
#, c-format
msgid "official vendor name of the cpu"
msgstr "nome oficial do fabricante do cpu"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Useless without Terminal Server"
msgstr ""

#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1