package Xconfig::xfree; # $Id$ use diagnostics; use strict; use common; use Xconfig::parse; use Xconfig::xfree3; use Xconfig::xfree4; use log; sub read { my ($class, $o_xfree3_file, $o_xfree4_file) = @_; bless { xfree3 => eval { Xconfig::xfree3->read($o_xfree3_file) } || [], xfree4 => eval { Xconfig::xfree4->read($o_xfree4_file) } || [] }, $class; } sub write { my ($both, $o_xfree3_file, $o_xfree4_file) = @_; $both->{xfree3} ? $both->{xfree3}->write($o_xfree3_file) : unlink($o_xfree3_file); $both->{xfree4} ? $both->{xfree4}->write($o_xfree4_file) : unlink($o_xfree4_file); } sub prepare_write { my ($both) = @_; ($both->{xfree4} || $both->{xfree3})->prepare_write; } sub empty_config { my ($class) = @_; bless { xfree3 => Xconfig::xfree3->empty_config, xfree4 => Xconfig::xfree4->empty_config }, $class; } sub get_keyboard { get_both('get_keyboard', @_) } sub set_keyboard { set_both('set_keyboard', @_) } sub get_mice { get_both('get_mice', @_) } sub set_mice { set_both('set_mice', @_) } sub get_resolution { get_both('get_resolution', @_) } sub set_resolution { set_both('set_resolution', @_) } sub get_device { get_both('get_device', @_) } sub get_devices { get_both('get_devices', @_) } sub set_devices { set_both('set_devices', @_) } sub set_wacoms { set_both('set_wacoms', @_) } sub get_monitor { get_both('get_monitor', @_) } sub get_monitors { get_both('get_monitors', @_) } sub set_monitors { set_both('set_monitors', @_) } sub is_fbdev { get_both('is_fbdev', @_) } #-############################################################################## #- helpers #-############################################################################## sub get_both { my ($getter, $both) = @_; if (is_empty_array_ref($both->{xfree3})) { $both->{xfree4}->$getter; } elsif (is_empty_array_ref($both->{xfree4})) { $both->{xfree3}->$getter; } else { my @l3 = $both->{xfree3}->$getter; my @l4 = $both->{xfree4}->$getter; merge_values(\@l3, \@l4); } } sub set_both { my ($setter, $both, @l) = @_; $both->{xfree3}->$setter(@l) if !is_empty_array_ref($both->{xfree3}); $both->{xfree4}->$setter(@l) if !is_empty_array_ref($both->{xfree4}); } sub merge_values { my ($l3, $l4) = @_; sub merge_values__hashes { my ($h3, $h4) = @_; $h3 || $h4 or return; $h3 or return $h4; $h4 or return $h3; my %h = %$h4; foreach (keys %$h3) { if (exists $h{$_}) { if (ref($h{$_}) eq 'HASH' && ref($h3->{$_}) eq 'HASH') { #- needed for "Options" of Devices $h{$_} = +{ %{$h3->{$_}}, %{$h{$_}} }; } else { my $s4 = join(", ", deref_array($h{$_})); my $s3 = join(", ", deref_array($h3->{$_})); my $s3_ = join(", ", map { qq("$_") } deref_array($h3->{$_})); if ($s4 eq $s3_) { #- keeping the non-double-quoted value $h{$_} = $h3->{$_}; } else { $s4 eq $s3 or log::l(qq(XFree: conflicting value for $_, "$s4" and "$s3" are different)); } } } else { $h{$_} = $h3->{$_}; } } \%h; } my @r = mapn_(\&merge_values__hashes, $l3, $l4); @r == 1 ? $r[0] : @r; } 1; value='topic/switching_to_urpmi'>topic/switching_to_urpmi Mageia Installer and base platform for many utilitiesThierry Vignaud [tv]
summaryrefslogtreecommitdiffstats
path: root/perl-install/share/po/pt.po
diff options
context:
space:
mode:
authorPablo Saratxaga <pablo@mandriva.com>2005-05-31 06:00:21 +0000
committerPablo Saratxaga <pablo@mandriva.com>2005-05-31 06:00:21 +0000
commitb8814bf1900523f84c79c4463bee2f73f2d37476 (patch)
tree3bfeeac9c4b644244550b227ae1b19d8b5c36647 /perl-install/share/po/pt.po
parent181c673fd4c642bbecce865707228d73098ccea9 (diff)
downloaddrakx-backup-do-not-use-b8814bf1900523f84c79c4463bee2f73f2d37476.tar
drakx-backup-do-not-use-b8814bf1900523f84c79c4463bee2f73f2d37476.tar.gz
drakx-backup-do-not-use-b8814bf1900523f84c79c4463bee2f73f2d37476.tar.bz2
drakx-backup-do-not-use-b8814bf1900523f84c79c4463bee2f73f2d37476.tar.xz
drakx-backup-do-not-use-b8814bf1900523f84c79c4463bee2f73f2d37476.zip
updated pot file
Diffstat (limited to 'perl-install/share/po/pt.po')
-rw-r--r--perl-install/share/po/pt.po2032
1 files changed, 1098 insertions, 934 deletions
diff --git a/perl-install/share/po/pt.po b/perl-install/share/po/pt.po
index 9ef168197..9b8b3706d 100644
--- a/perl-install/share/po/pt.po
+++ b/perl-install/share/po/pt.po
@@ -22,7 +22,7 @@ msgid ""
msgstr ""
"Project-Id-Version: drakX-pt\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-05-22 20:07+0200\n"
+"POT-Creation-Date: 2005-05-31 13:03+0200\n"
"PO-Revision-Date: 2005-05-24 22:08+0100\n"
"Last-Translator: José Melo <mmodem00@netvisao.pt>\n"
"Language-Team: Português <pt@li.org>\n"
@@ -94,7 +94,7 @@ msgstr ""
"Clique no botão para reiniciar o computador, remova-a, retire a protecção\n"
"de escrita, volte-a a ligar, e execute o Mandriva Move novamente."
-#: ../move/move.pm:468 help.pm:409 install_steps_interactive.pm:1320
+#: ../move/move.pm:468 help.pm:409 install_steps_interactive.pm:1325
#, c-format
msgid "Reboot"
msgstr "Reiniciar"
@@ -193,17 +193,20 @@ msgstr "Por favor aguarde, a detectar e a configurar dispositivos..."
#: diskdrake/interactive.pm:240 diskdrake/interactive.pm:401
#: diskdrake/interactive.pm:419 diskdrake/interactive.pm:556
#: diskdrake/interactive.pm:561 diskdrake/smbnfs_gtk.pm:42 fsedit.pm:182
-#: install_any.pm:1698 install_any.pm:1721 install_steps.pm:82
+#: install_any.pm:1658 install_any.pm:1681 install_steps.pm:82
#: install_steps_interactive.pm:38 interactive/http.pm:117
#: interactive/http.pm:118 network/ndiswrapper.pm:27 network/ndiswrapper.pm:41
#: network/ndiswrapper.pm:89 network/ndiswrapper.pm:101
-#: network/netconnect.pm:1013 network/netconnect.pm:1121
-#: network/netconnect.pm:1125 network/netconnect.pm:1129
-#: network/netconnect.pm:1134 network/netconnect.pm:1266
-#: network/netconnect.pm:1270 network/netconnect.pm:1274
-#: network/netconnect.pm:1278 network/netconnect.pm:1386
-#: network/netconnect.pm:1391 network/netconnect.pm:1411
-#: network/netconnect.pm:1622 printer/printerdrake.pm:244
+#: network/netconnect.pm:915 network/netconnect.pm:1021
+#: network/netconnect.pm:1025 network/netconnect.pm:1029
+#: network/netconnect.pm:1034 network/netconnect.pm:1166
+#: network/netconnect.pm:1170 network/netconnect.pm:1174
+#: network/netconnect.pm:1178 network/netconnect.pm:1287
+#: network/netconnect.pm:1292 network/netconnect.pm:1312
+#: network/netconnect.pm:1523 network/thirdparty.pm:265
+#: network/thirdparty.pm:272 network/thirdparty.pm:308
+#: network/thirdparty.pm:310 network/thirdparty.pm:331
+#: network/thirdparty.pm:355 printer/printerdrake.pm:244
#: printer/printerdrake.pm:251 printer/printerdrake.pm:276
#: printer/printerdrake.pm:422 printer/printerdrake.pm:427
#: printer/printerdrake.pm:440 printer/printerdrake.pm:450
@@ -242,14 +245,15 @@ msgstr "Por favor aguarde, a detectar e a configurar dispositivos..."
#: standalone/drakconnect:692 standalone/drakconnect:707
#: standalone/drakfloppy:297 standalone/drakfloppy:300
#: standalone/drakfloppy:306 standalone/drakfont:210 standalone/drakfont:223
-#: standalone/drakfont:261 standalone/drakroam:41 standalone/draksplash:26
+#: standalone/drakfont:261 standalone/drakgw:51 standalone/drakgw:191
+#: standalone/drakgw:220 standalone/drakgw:261 standalone/drakgw:295
+#: standalone/drakgw:400 standalone/drakroam:41 standalone/draksplash:15
#: standalone/drakxtv:107 standalone/finish-install:39 standalone/logdrake:169
#: standalone/logdrake:438 standalone/logdrake:443 standalone/scannerdrake:59
#: standalone/scannerdrake:202 standalone/scannerdrake:261
#: standalone/scannerdrake:715 standalone/scannerdrake:726
#: standalone/scannerdrake:865 standalone/scannerdrake:876
#: standalone/scannerdrake:946 wizards.pm:95 wizards.pm:99 wizards.pm:121
-#: wizards2.pm:95 wizards2.pm:99 wizards2.pm:121
#, c-format
msgid "Error"
msgstr "Erro"
@@ -466,7 +470,8 @@ msgstr "Xorg %s com aceleração hardware 3D"
#: Xconfig/card.pm:411
#, c-format
msgid "Your card can have 3D hardware acceleration support with Xorg %s."
-msgstr "A sua placa pode ter suporte para aceleração hardware 3D com o Xorg %s."
+msgstr ""
+"A sua placa pode ter suporte para aceleração hardware 3D com o Xorg %s."
#: Xconfig/card.pm:417
#, c-format
@@ -482,15 +487,16 @@ msgstr ""
"A sua placa pode ter suporte para aceleração hardware 3D com o Xorg%s,\n"
"ATENÇÃO ESTE SUPORTE É EXPERIMENTAL E PODE BLOQUEAR O COMPUTADOR."
-#: Xconfig/main.pm:90 Xconfig/main.pm:91 Xconfig/monitor.pm:116 any.pm:921
+#: Xconfig/main.pm:90 Xconfig/main.pm:91 Xconfig/monitor.pm:116 any.pm:926
#, c-format
msgid "Custom"
msgstr "Personalizado"
#: Xconfig/main.pm:115 diskdrake/dav.pm:26 help.pm:14
-#: install_steps_interactive.pm:86 printer/printerdrake.pm:744
-#: printer/printerdrake.pm:4405 printer/printerdrake.pm:4857
-#: standalone/draksplash:83 standalone/logdrake:174 standalone/net_applet:229
+#: install_steps_interactive.pm:86 install_steps_interactive.pm:1325
+#: printer/printerdrake.pm:744 printer/printerdrake.pm:4405
+#: printer/printerdrake.pm:4857 standalone/draksplash:85
+#: standalone/logdrake:174 standalone/net_applet:230
#: standalone/scannerdrake:477
#, c-format
msgid "Quit"
@@ -632,7 +638,7 @@ msgid "Resolutions"
msgstr "Resoluções"
#: Xconfig/resolution_and_depth.pm:310 diskdrake/hd_gtk.pm:339
-#: install_steps_gtk.pm:283 mouse.pm:168 services.pm:162
+#: install_steps_gtk.pm:284 mouse.pm:168 services.pm:162
#: standalone/drakbackup:1581 standalone/drakperm:251
#, c-format
msgid "Other"
@@ -649,7 +655,7 @@ msgid "Graphics card: %s"
msgstr "Placa Gráfica: %s"
#: Xconfig/resolution_and_depth.pm:374 interactive.pm:433
-#: interactive/gtk.pm:767 interactive/http.pm:103 interactive/http.pm:156
+#: interactive/gtk.pm:808 interactive/http.pm:103 interactive/http.pm:156
#: interactive/newt.pm:321 interactive/newt.pm:424 interactive/stdio.pm:39
#: interactive/stdio.pm:142 interactive/stdio.pm:143 interactive/stdio.pm:172
#: standalone/drakTermServ:200 standalone/drakTermServ:518
@@ -658,15 +664,15 @@ msgstr "Placa Gráfica: %s"
#: standalone/drakconnect:166 standalone/drakconnect:885
#: standalone/drakconnect:972 standalone/drakconnect:1071
#: standalone/drakfont:574 standalone/drakfont:586 standalone/drakroam:392
-#: standalone/draksplash:145 standalone/drakups:212 standalone/net_monitor:345
+#: standalone/draksplash:160 standalone/drakups:212 standalone/net_monitor:345
#: ugtk2.pm:409 ugtk2.pm:506 ugtk2.pm:908 ugtk2.pm:931
#, c-format
msgid "Ok"
msgstr "Ok"
#: Xconfig/resolution_and_depth.pm:374 diskdrake/smbnfs_gtk.pm:81 help.pm:89
-#: help.pm:444 install_steps_gtk.pm:479 install_steps_interactive.pm:422
-#: install_steps_interactive.pm:827 interactive.pm:434 interactive/gtk.pm:771
+#: help.pm:444 install_steps_gtk.pm:480 install_steps_interactive.pm:422
+#: install_steps_interactive.pm:831 interactive.pm:434 interactive/gtk.pm:812
#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318
#: interactive/newt.pm:428 interactive/stdio.pm:39 interactive/stdio.pm:142
#: interactive/stdio.pm:176 printer/printerdrake.pm:3676
@@ -675,7 +681,7 @@ msgstr "Ok"
#: standalone/drakbackup:3947 standalone/drakconnect:165
#: standalone/drakconnect:970 standalone/drakconnect:1070
#: standalone/drakfont:586 standalone/drakfont:664 standalone/drakfont:741
-#: standalone/draksplash:145 standalone/drakups:219 standalone/logdrake:174
+#: standalone/draksplash:160 standalone/drakups:219 standalone/logdrake:174
#: standalone/net_monitor:344 ugtk2.pm:403 ugtk2.pm:504 ugtk2.pm:513
#: ugtk2.pm:908
#, c-format
@@ -683,8 +689,8 @@ msgid "Cancel"
msgstr "Cancelar"
#: Xconfig/resolution_and_depth.pm:374 diskdrake/hd_gtk.pm:153
-#: install_steps_gtk.pm:227 install_steps_gtk.pm:628 interactive.pm:528
-#: interactive/gtk.pm:637 interactive/gtk.pm:639 standalone/drakTermServ:285
+#: install_steps_gtk.pm:228 install_steps_gtk.pm:629 interactive.pm:528
+#: interactive/gtk.pm:678 interactive/gtk.pm:680 standalone/drakTermServ:285
#: standalone/drakbackup:3881 standalone/drakbug:104
#: standalone/drakconnect:161 standalone/drakconnect:246
#: standalone/drakfont:509 standalone/drakperm:134 standalone/draksec:336
@@ -836,10 +842,10 @@ msgstr ""
"_:proporção de aspecto estranho\n"
"outro"
-#: any.pm:143 harddrake/sound.pm:191 interactive.pm:471 pkgs.pm:481
+#: any.pm:143 harddrake/sound.pm:191 interactive.pm:471 pkgs.pm:468
#: standalone/drakconnect:168 standalone/drakconnect:646 standalone/draksec:68
#: standalone/drakups:101 standalone/drakxtv:92 standalone/harddrake2:244
-#: standalone/service_harddrake:203
+#: standalone/service_harddrake:206
#, c-format
msgid "Please wait"
msgstr "Por favor aguarde"
@@ -869,7 +875,8 @@ msgstr ""
#: any.pm:165
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
-msgstr "Instalação do carregador de arranque falhada. Ocorreram os seguintes erros:"
+msgstr ""
+"Instalação do carregador de arranque falhada. Ocorreram os seguintes erros:"
#: any.pm:171
#, c-format
@@ -951,7 +958,8 @@ msgstr "Indicar o tamanho da RAM em MB"
#: any.pm:276
#, c-format
-msgid "Option ``Restrict command line options'' is of no use without a password"
+msgid ""
+"Option ``Restrict command line options'' is of no use without a password"
msgstr "Opção ``Restringir opções da linha de comando'' não tem uso sem senha"
#: any.pm:277 any.pm:610 authentication.pm:182
@@ -995,7 +1003,7 @@ msgid "Force No Local APIC"
msgstr "Forçar Sem APIC Local"
#: any.pm:293 any.pm:637 authentication.pm:187 diskdrake/smbnfs_gtk.pm:180
-#: network/netconnect.pm:688 printer/printerdrake.pm:1663
+#: network/netconnect.pm:659 printer/printerdrake.pm:1663
#: printer/printerdrake.pm:1784 standalone/drakbackup:1625
#: standalone/drakbackup:3488 standalone/drakups:299
#, c-format
@@ -1209,8 +1217,10 @@ msgstr "Por favor indique um nome de utilizador"
#: any.pm:613
#, c-format
-msgid "The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr "O nome de utilizador deve conter apenas letras minúsculas, números, `-' e `_'"
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgstr ""
+"O nome de utilizador deve conter apenas letras minúsculas, números, `-' e `_'"
#: any.pm:614
#, c-format
@@ -1279,27 +1289,26 @@ msgstr "Autologin"
#: any.pm:689
#, c-format
msgid "I can set up your computer to automatically log on one user."
-msgstr "Posso configurar o computador para ligar automaticamente um utilizador."
+msgstr ""
+"Posso configurar o computador para ligar automaticamente um utilizador."
#: any.pm:690 help.pm:51
#, c-format
msgid "Do you want to use this feature?"
msgstr "Deseja usar esta opção?"
-#: any.pm:690 help.pm:180 help.pm:285 help.pm:444 install_any.pm:887
+#: any.pm:690 help.pm:180 help.pm:285 help.pm:444 install_any.pm:861
#: interactive.pm:158 modules/interactive.pm:71 printer/printerdrake.pm:743
-#: standalone/drakbackup:2501 standalone/drakgw:287 standalone/drakgw:288
-#: standalone/drakgw:296 standalone/drakgw:306 standalone/draksec:55
-#: standalone/harddrake2:306 standalone/net_applet:309 ugtk2.pm:907
-#: wizards.pm:156 wizards2.pm:158
+#: standalone/drakbackup:2501 standalone/draksec:55 standalone/harddrake2:306
+#: standalone/net_applet:310 ugtk2.pm:907 wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Sim"
#: any.pm:690 help.pm:180 help.pm:285 help.pm:313 help.pm:444
-#: install_any.pm:887 interactive.pm:158 modules/interactive.pm:71
+#: install_any.pm:861 interactive.pm:158 modules/interactive.pm:71
#: standalone/drakbackup:2501 standalone/draksec:54 standalone/harddrake2:307
-#: standalone/net_applet:305 ugtk2.pm:907 wizards.pm:156 wizards2.pm:158
+#: standalone/net_applet:306 ugtk2.pm:907 wizards.pm:156
#, c-format
msgid "No"
msgstr "Não"
@@ -1345,56 +1354,56 @@ msgstr "Usar Unicode por omissão"
msgid "All languages"
msgstr "Todas as línguas"
-#: any.pm:794 help.pm:566 help.pm:855 install_steps_interactive.pm:947
+#: any.pm:798 help.pm:566 help.pm:855 install_steps_interactive.pm:952
#, c-format
msgid "Country / Region"
msgstr "País / Região"
-#: any.pm:795
+#: any.pm:799
#, c-format
msgid "Please choose your country."
msgstr "Por favor escolha o seu país."
-#: any.pm:797
+#: any.pm:801
#, c-format
msgid "Here is the full list of available countries"
msgstr "Aqui está a lista completa dos países disponíveis"
-#: any.pm:798
+#: any.pm:802
#, c-format
msgid "Other Countries"
msgstr "Outros Países"
-#: any.pm:798 help.pm:51 help.pm:409 help.pm:431 help.pm:647 help.pm:722
+#: any.pm:802 help.pm:51 help.pm:409 help.pm:431 help.pm:647 help.pm:722
#: interactive.pm:394
#, c-format
msgid "Advanced"
msgstr "Avançado"
-#: any.pm:806
+#: any.pm:810
#, c-format
msgid "Input method:"
msgstr "Método de entrada:"
-#: any.pm:807 install_any.pm:422 network/netconnect.pm:186
-#: network/netconnect.pm:380 network/netconnect.pm:385
-#: network/netconnect.pm:1377 printer/printerdrake.pm:105
+#: any.pm:811 install_any.pm:406 network/netconnect.pm:187
+#: network/netconnect.pm:381 network/netconnect.pm:386
+#: network/netconnect.pm:1278 printer/printerdrake.pm:105
#: printer/printerdrake.pm:2199
#, c-format
msgid "None"
msgstr "Nenhum"
-#: any.pm:921
+#: any.pm:926
#, c-format
msgid "No sharing"
msgstr "Não partilhar"
-#: any.pm:921
+#: any.pm:926
#, c-format
msgid "Allow all users"
msgstr "Permitir todos os utilizadores"
-#: any.pm:925
+#: any.pm:930
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -1409,7 +1418,7 @@ msgstr ""
"\n"
"\"Personalizado\" permite escolher a cada utilizador.\n"
-#: any.pm:937
+#: any.pm:942
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -1418,7 +1427,7 @@ msgstr ""
"NFS: o sistema de partilha de ficheiros tradicional do Unix, com menos "
"suporte em Mac e Windows."
-#: any.pm:940
+#: any.pm:945
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -1427,17 +1436,18 @@ msgstr ""
"SMB: um sistema de partilha de ficheiros usado pelo Windows, Mac OS X e "
"muitos sistemas Linux modernos."
-#: any.pm:948
+#: any.pm:953
#, c-format
-msgid "You can export using NFS or SMB. Please select which you would like to use."
+msgid ""
+"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Pode exportar com NFS ou SMB. Por favor escolha qual deseja usar."
-#: any.pm:973
+#: any.pm:978
#, c-format
msgid "Launch userdrake"
msgstr "Executar userdrake"
-#: any.pm:973 printer/printerdrake.pm:3900 printer/printerdrake.pm:3903
+#: any.pm:978 printer/printerdrake.pm:3900 printer/printerdrake.pm:3903
#: printer/printerdrake.pm:3904 printer/printerdrake.pm:3905
#: printer/printerdrake.pm:5166 standalone/drakTermServ:295
#: standalone/drakbackup:4081 standalone/drakbug:126 standalone/drakfont:497
@@ -1447,7 +1457,7 @@ msgstr "Executar userdrake"
msgid "Close"
msgstr "Fechar"
-#: any.pm:975
+#: any.pm:980
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -1498,7 +1508,8 @@ msgstr "Ficheiro local:"
#: authentication.pm:56
#, c-format
-msgid "Use local for all authentication and information user tell in local file"
+msgid ""
+"Use local for all authentication and information user tell in local file"
msgstr ""
"Usar local para todas as autenticações e informações dadas pelo utilizador "
"no ficheiro local"
@@ -1553,7 +1564,8 @@ msgstr "Directório Activo com SFU:"
#: authentication.pm:60 authentication.pm:61
#, c-format
-msgid "Kerberos is a secure system for providing network authentication services."
+msgid ""
+"Kerberos is a secure system for providing network authentication services."
msgstr ""
"Kerberos é um sistema seguro que providencia serviços de autenticação na "
"rede."
@@ -1713,7 +1725,8 @@ msgstr "Idmap predefinido "
#: authentication.pm:171
#, c-format
msgid "Set administrator (root) password and network authentication methods"
-msgstr "Define a senha de administrador (root) e os métodos de autenticação da rede"
+msgstr ""
+"Define a senha de administrador (root) e os métodos de autenticação da rede"
#: authentication.pm:172
#, c-format
@@ -1736,7 +1749,7 @@ msgstr "Nenhuma senha"
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Essa senha é demasiado simples (pelo menos deve ter %d caracteres)"
-#: authentication.pm:189 network/netconnect.pm:385 network/netconnect.pm:689
+#: authentication.pm:189 network/netconnect.pm:386 network/netconnect.pm:660
#: standalone/drakauth:24 standalone/drakauth:26 standalone/drakconnect:492
#, c-format
msgid "Authentication"
@@ -1878,7 +1891,7 @@ msgstr "Austrália"
#: crypto.pm:16 crypto.pm:50 lang.pm:214 network/adsl_consts.pm:93
#: network/adsl_consts.pm:102 network/adsl_consts.pm:114
-#: network/adsl_consts.pm:123 network/netconnect.pm:51
+#: network/adsl_consts.pm:123 network/netconnect.pm:52
#, c-format
msgid "Belgium"
msgstr "Bélgica"
@@ -1948,7 +1961,7 @@ msgstr "Finlândia"
#: network/adsl_consts.pm:431 network/adsl_consts.pm:442
#: network/adsl_consts.pm:454 network/adsl_consts.pm:466
#: network/adsl_consts.pm:477 network/adsl_consts.pm:488
-#: network/netconnect.pm:48
+#: network/netconnect.pm:49
#, c-format
msgid "France"
msgstr "França"
@@ -1976,7 +1989,7 @@ msgstr "Israel"
#: crypto.pm:32 crypto.pm:63 lang.pm:300 network/adsl_consts.pm:557
#: network/adsl_consts.pm:569 network/adsl_consts.pm:580
-#: network/adsl_consts.pm:589 network/netconnect.pm:50 standalone/drakxtv:47
+#: network/adsl_consts.pm:589 network/netconnect.pm:51 standalone/drakxtv:47
#, c-format
msgid "Italy"
msgstr "Itália"
@@ -1988,7 +2001,7 @@ msgstr "Japão"
#: crypto.pm:34 crypto.pm:65 lang.pm:352 network/adsl_consts.pm:620
#: network/adsl_consts.pm:629 network/adsl_consts.pm:638
-#: network/adsl_consts.pm:647 network/netconnect.pm:49
+#: network/adsl_consts.pm:647 network/netconnect.pm:50
#, c-format
msgid "Netherlands"
msgstr "Holanda"
@@ -2047,7 +2060,7 @@ msgstr "Taiwan"
msgid "South Africa"
msgstr "África do Sul"
-#: crypto.pm:78 crypto.pm:108 lang.pm:416 network/netconnect.pm:52
+#: crypto.pm:78 crypto.pm:108 lang.pm:416 network/netconnect.pm:53
#, c-format
msgid "United States"
msgstr "Estados Unidos"
@@ -2155,7 +2168,7 @@ msgstr ""
msgid "Please click on a partition"
msgstr "Por favor clique numa partição"
-#: diskdrake/hd_gtk.pm:208 diskdrake/smbnfs_gtk.pm:63 install_steps_gtk.pm:481
+#: diskdrake/hd_gtk.pm:208 diskdrake/smbnfs_gtk.pm:63 install_steps_gtk.pm:482
#: standalone/drakbackup:2936 standalone/drakbackup:2996
#, c-format
msgid "Details"
@@ -2496,7 +2509,8 @@ msgstr "Remover o ficheiro loopback?"
#: diskdrake/interactive.pm:605
#, c-format
-msgid "After changing type of partition %s, all data on this partition will be lost"
+msgid ""
+"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Após alterar o tipo de partição %s, todos os dados desta partição serão "
"perdidos"
@@ -2564,7 +2578,8 @@ msgstr "Todos os dados desta partição devem ser arquivados (backup)"
#: diskdrake/interactive.pm:757
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr "Após redimensionar a partição %s, todos os dados da partição serão perdidos"
+msgstr ""
+"Após redimensionar a partição %s, todos os dados da partição serão perdidos"
#: diskdrake/interactive.pm:762
#, c-format
@@ -2756,7 +2771,7 @@ msgstr "Letra do drive no DOS: %s (apenas um palpite)\n"
msgid "Type: "
msgstr "Tipo: "
-#: diskdrake/interactive.pm:1197 install_steps_gtk.pm:295
+#: diskdrake/interactive.pm:1197 install_steps_gtk.pm:296
#, c-format
msgid "Name: "
msgstr "Nome: "
@@ -2927,7 +2942,7 @@ msgstr ""
msgid "The encryption keys do not match"
msgstr "As senhas de encriptação não correspondem"
-#: diskdrake/interactive.pm:1295 network/netconnect.pm:1222
+#: diskdrake/interactive.pm:1295 network/netconnect.pm:1122
#: standalone/drakconnect:430
#, c-format
msgid "Encryption key"
@@ -2971,7 +2986,8 @@ msgstr "Mais outro"
#: diskdrake/smbnfs_gtk.pm:177
#, c-format
-msgid "Please enter your username, password and domain name to access this host."
+msgid ""
+"Please enter your username, password and domain name to access this host."
msgstr ""
"Por favor digite o seu nome de utilizador, senha e nome de domínio para "
"aceder a este servidor."
@@ -3112,7 +3128,8 @@ msgstr "Montar o sistema de ficheiros apenas para leitura."
#: fs/mount_options.pm:130
#, c-format
msgid "All I/O to the file system should be done synchronously."
-msgstr "Todos os I/O para o sistema de ficheiros devem ser feitos sincronizadamente."
+msgstr ""
+"Todos os I/O para o sistema de ficheiros devem ser feitos sincronizadamente."
#: fs/mount_options.pm:134
#, c-format
@@ -3225,7 +3242,8 @@ msgstr ""
msgid ""
"You may not be able to install lilo (since lilo does not handle a LV on "
"multiple PVs)"
-msgstr "Pode não poder instalar o lilo (já que o lilo não gere um LV em vários PVs)"
+msgstr ""
+"Pode não poder instalar o lilo (já que o lilo não gere um LV em vários PVs)"
#: fsedit.pm:415 fsedit.pm:417
#, c-format
@@ -3244,7 +3262,8 @@ msgstr ""
#: fsedit.pm:423
#, c-format
msgid "You can not use an encrypted file system for mount point %s"
-msgstr "Não pode usar um sistema de ficheiros encriptado para ponto de montagem %s"
+msgstr ""
+"Não pode usar um sistema de ficheiros encriptado para ponto de montagem %s"
#: fsedit.pm:484
#, c-format
@@ -3256,7 +3275,7 @@ msgstr "Sem espaço livre suficiente para auto-alocação"
msgid "Nothing to do"
msgstr "Nada a fazer"
-#: harddrake/data.pm:62 install_any.pm:1639
+#: harddrake/data.pm:62 install_any.pm:1599
#, c-format
msgid "Floppy"
msgstr "Disquete"
@@ -3266,12 +3285,12 @@ msgstr "Disquete"
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:88 install_any.pm:1640
+#: harddrake/data.pm:88 install_any.pm:1600
#, c-format
msgid "Hard Disk"
msgstr "Disco"
-#: harddrake/data.pm:97 install_any.pm:1641
+#: harddrake/data.pm:97 install_any.pm:1601
#, c-format
msgid "CDROM"
msgstr "CDROM"
@@ -3361,7 +3380,7 @@ msgstr "Dispositivos bluetooth"
msgid "Ethernetcard"
msgstr "Placa Ethernet"
-#: harddrake/data.pm:283 network/netconnect.pm:575
+#: harddrake/data.pm:283 network/netconnect.pm:573
#, c-format
msgid "Modem"
msgstr "Modem"
@@ -3382,7 +3401,7 @@ msgid "AGP controllers"
msgstr "Controladores AGP"
#: harddrake/data.pm:325 help.pm:186 help.pm:855
-#: install_steps_interactive.pm:979
+#: install_steps_interactive.pm:984
#, c-format
msgid "Printer"
msgstr "Impressora"
@@ -3449,7 +3468,7 @@ msgid "Bridges and system controllers"
msgstr "Pontes e controladores do sistema"
#: harddrake/data.pm:448 help.pm:855 install_steps_interactive.pm:118
-#: install_steps_interactive.pm:939 standalone/keyboarddrake:29
+#: install_steps_interactive.pm:944 standalone/keyboarddrake:29
#, c-format
msgid "Keyboard"
msgstr "Teclado"
@@ -3459,27 +3478,27 @@ msgstr "Teclado"
msgid "Tablet and touchscreen"
msgstr "Tabuleiro e touchscreen"
-#: harddrake/data.pm:469 help.pm:855 install_steps_interactive.pm:972
+#: harddrake/data.pm:470 help.pm:855 install_steps_interactive.pm:977
#, c-format
msgid "Mouse"
msgstr "Rato"
-#: harddrake/data.pm:483
+#: harddrake/data.pm:484
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:492
+#: harddrake/data.pm:493
#, c-format
msgid "Scanner"
msgstr "Digitalizador"
-#: harddrake/data.pm:502 standalone/harddrake2:440
+#: harddrake/data.pm:503 standalone/harddrake2:440
#, c-format
msgid "Unknown/Others"
msgstr "Desconhecido/Outros"
-#: harddrake/data.pm:530
+#: harddrake/data.pm:531
#, c-format
msgid "cpu # "
msgstr "processador # "
@@ -3518,7 +3537,7 @@ msgstr ""
"Aqui pode seleccionar um drive alternativo (seja OSS ou ALSA) para a sua "
"placa de som (%s)"
-#. -PO: here the first %s is either "OSS" or "ALSA",
+#. -PO: here the first %s is either "OSS" or "ALSA",
#. -PO: the second %s is the name of the current driver
#. -PO: and the third %s is the name of the default driver
#: harddrake/sound.pm:241
@@ -3578,8 +3597,8 @@ msgstr "Driver:"
msgid "Trouble shooting"
msgstr "Correcção de problemas"
-#: harddrake/sound.pm:270 keyboard.pm:391 lang.pm:1072
-#: network/ndiswrapper.pm:95 network/netconnect.pm:561
+#: harddrake/sound.pm:270 keyboard.pm:391 lang.pm:1081
+#: network/ndiswrapper.pm:95 network/netconnect.pm:552
#: printer/printerdrake.pm:1206 printer/printerdrake.pm:2230
#: printer/printerdrake.pm:2316 printer/printerdrake.pm:2362
#: printer/printerdrake.pm:2429 printer/printerdrake.pm:2464
@@ -3720,8 +3739,8 @@ msgstr ""
"\n"
"O driver actual para a sua placa de som \"%s\" é \"%s\" "
-#: harddrake/v4l.pm:14 standalone/net_applet:74 standalone/net_applet:75
-#: standalone/net_applet:77
+#: harddrake/v4l.pm:14 standalone/net_applet:75 standalone/net_applet:76
+#: standalone/net_applet:78
#, c-format
msgid "Auto-detect"
msgstr "Auto-detectar"
@@ -3802,8 +3821,8 @@ msgstr ""
"presentes, active a caixa \"%s\". Se não, pode clicar no botão \"%s\"\n"
"para reiniciar o seu computador."
-#: help.pm:14 install_steps_gtk.pm:551 install_steps_interactive.pm:92
-#: install_steps_interactive.pm:731 standalone/drakautoinst:216
+#: help.pm:14 install_steps_gtk.pm:552 install_steps_interactive.pm:92
+#: install_steps_interactive.pm:735 standalone/drakautoinst:216
#, c-format
msgid "Accept"
msgstr "Aceitar"
@@ -3891,12 +3910,12 @@ msgstr ""
msgid "User name"
msgstr "Nome de utilizador"
-#: help.pm:51 help.pm:431 help.pm:681 install_steps_gtk.pm:232
-#: install_steps_gtk.pm:693 interactive.pm:433 interactive/newt.pm:321
-#: network/netconnect.pm:335 network/tools.pm:191 printer/printerdrake.pm:3678
-#: standalone/drakTermServ:383 standalone/drakbackup:3938
-#: standalone/drakbackup:4032 standalone/drakbackup:4049
-#: standalone/drakbackup:4067 ugtk2.pm:506
+#: help.pm:51 help.pm:431 help.pm:681 install_steps_gtk.pm:233
+#: install_steps_gtk.pm:694 interactive.pm:433 interactive/newt.pm:321
+#: network/netconnect.pm:336 network/thirdparty.pm:321
+#: printer/printerdrake.pm:3678 standalone/drakTermServ:383
+#: standalone/drakbackup:3938 standalone/drakbackup:4032
+#: standalone/drakbackup:4049 standalone/drakbackup:4067 ugtk2.pm:506
#, c-format
msgid "Next"
msgstr "Próximo"
@@ -4109,7 +4128,7 @@ msgstr "Desenvolvimento"
msgid "Graphical Environment"
msgstr "Ambiente Gráfico"
-#: help.pm:146 install_steps_gtk.pm:230 install_steps_interactive.pm:642
+#: help.pm:146 install_steps_gtk.pm:231 install_steps_interactive.pm:642
#, c-format
msgid "Individual package selection"
msgstr "Selecção individual de pacotes"
@@ -4225,7 +4244,7 @@ msgstr ""
"O interface apresentado no nosso manual é semelhante ao usado durante\n"
"a instalação."
-#: help.pm:186 help.pm:566 help.pm:855 install_steps_gtk.pm:606
+#: help.pm:186 help.pm:566 help.pm:855 install_steps_gtk.pm:607
#: standalone/drakbackup:2325 standalone/drakbackup:2329
#: standalone/drakbackup:2333 standalone/drakbackup:2337
#, c-format
@@ -4298,7 +4317,7 @@ msgstr ""
"opção instala um servidor horário que poderá ser usado por outras\n"
"máquinas na sua rede local."
-#: help.pm:217 install_steps_interactive.pm:874
+#: help.pm:217 install_steps_interactive.pm:879
#, c-format
msgid "Hardware clock set to GMT"
msgstr "Relógio do hardware definido na hora GMT"
@@ -4744,17 +4763,17 @@ msgstr ""
msgid "Generate auto-install floppy"
msgstr "Gerar disquete auto-instal"
-#: help.pm:409 install_steps_interactive.pm:1331
+#: help.pm:409 install_steps_interactive.pm:1336
#, c-format
msgid "Replay"
msgstr "Repetir"
-#: help.pm:409 install_steps_interactive.pm:1331
+#: help.pm:409 install_steps_interactive.pm:1336
#, c-format
msgid "Automated"
msgstr "Automática"
-#: help.pm:409 install_steps_interactive.pm:1334
+#: help.pm:409 install_steps_interactive.pm:1339
#, c-format
msgid "Save packages selection"
msgstr "Gravar selecção de pacotes"
@@ -4806,7 +4825,7 @@ msgstr ""
"Clique em \"%s\" se deseja escolher partições para verificar se\n"
"fisicamente há blocos defeituosos (\"bad blocks\") no disco."
-#: help.pm:431 install_steps_gtk.pm:387 interactive.pm:434
+#: help.pm:431 install_steps_gtk.pm:388 interactive.pm:434
#: interactive/newt.pm:318 printer/printerdrake.pm:3676
#: standalone/drakTermServ:362 standalone/drakbackup:3898
#: standalone/drakbackup:3937 standalone/drakbackup:4048
@@ -4843,7 +4862,7 @@ msgstr ""
"reveja a selecção, e clique em \"%s\" para descarregar e instalar os\n"
"pacotes seleccionados, ou clique em \"%s\" para abortar."
-#: help.pm:444 help.pm:588 install_steps_gtk.pm:386
+#: help.pm:444 help.pm:588 install_steps_gtk.pm:387
#: install_steps_interactive.pm:156 standalone/drakbackup:4095
#, c-format