see changelog. Big changes.
7 files changed, 289 insertions, 266 deletions
@@ -1,3 +1,8 @@ +2000-08-31 dam's <damien@mandrakesoft.com> + + * moved many things to network.pm and any.pm + * everything should be broken now. + 2000-08-31 Fran�ois Pons <fpons@mandrakesoft.com> * install2.pm: removed printer default config (now obsoleted). @@ -14,6 +14,7 @@ use partition_table qw(:types); use fsedit; use fs; use run_program; +use modules; use log; #-PO: names (tie, curly...) have corresponding icons for kdm @@ -288,17 +289,17 @@ sub inspect { #-----modem conf sub pppConfig { - my ($o) = @_; - $o->{modem} or return; + my ($in, $modem, $prefix) = @_; + $modem or return; - symlinkf($o->{modem}{device}, "$o->{prefix}/dev/modem") or log::l("creation of $o->{prefix}/dev/modem failed"); - $::isStandalone ? `urpmi --auto ppp` : $o->pkg_install("ppp") unless $::testing; + symlinkf($modem->{device}, "$prefix/dev/modem") or log::l("creation of $prefix/dev/modem failed"); + $::isStandalone ? `urpmi --auto ppp` : $in->pkg_install("ppp") unless $::testing; my %toreplace; - $toreplace{$_} = $o->{modem}{$_} foreach qw(connection phone login passwd auth domain dns1 dns2); - $toreplace{kpppauth} = ${{ 'Script-based' => 0, 'PAP' => 1, 'Terminal-based' => 2, 'CHAP' => 3, }}{$o->{modem}{auth}}; + $toreplace{$_} = $modem->{$_} foreach qw(connection phone login passwd auth domain dns1 dns2); + $toreplace{kpppauth} = ${{ 'Script-based' => 0, 'PAP' => 1, 'Terminal-based' => 2, 'CHAP' => 3, }}{$modem->{auth}}; $toreplace{phone} =~ s/\D//g; - $toreplace{dnsserver} = join ',', map { $o->{modem}{$_} } "dns1", "dns2"; + $toreplace{dnsserver} = join ',', map { $modem->{$_} } "dns1", "dns2"; $toreplace{dnsserver} .= $toreplace{dnsserver} && ','; #- using peerdns or dns1,dns2 avoid writing a /etc/resolv.conf file. @@ -307,10 +308,10 @@ sub pppConfig { $toreplace{connection} ||= 'DialupConnection'; $toreplace{domain} ||= 'localdomain'; $toreplace{intf} ||= 'ppp0'; - $toreplace{papname} = $o->{modem}{auth} eq 'PAP' && $toreplace{login}; + $toreplace{papname} = $modem->{auth} eq 'PAP' && $toreplace{login}; #- build ifcfg-ppp0. - my $ifcfg = "$o->{prefix}/etc/sysconfig/network-scripts/ifcfg-ppp0"; + my $ifcfg = "$prefix/etc/sysconfig/network-scripts/ifcfg-ppp0"; local *IFCFG; open IFCFG, ">$ifcfg" or die "Can't open $ifcfg"; print IFCFG <<END; DEVICE="$toreplace{intf}" @@ -347,7 +348,7 @@ END close IFCFG; #- build chat-ppp0. - my $chat = "$o->{prefix}/etc/sysconfig/network-scripts/chat-ppp0"; + my $chat = "$prefix/etc/sysconfig/network-scripts/chat-ppp0"; local *CHAT; open CHAT, ">$chat" or die "Can't open $chat"; print CHAT <<END; 'ABORT' 'BUSY' @@ -358,11 +359,11 @@ END 'ABORT' 'Login incorrect' '' 'ATZ' 'OK' -'ATDT$o->{netcnx}{special_command}' +'ATDT$modem->{special_command}' 'ATDT$toreplace{phone}' 'CONNECT' '' END - if ($o->{modem}{auth} eq 'Terminal-based' || $o->{modem}{auth} eq 'Script-based') { + if ($modem->{auth} eq 'Terminal-based' || $modem->{auth} eq 'Script-based') { print CHAT <<END; 'ogin:' '$toreplace{login}' 'ord:' '$toreplace{passwd}' @@ -374,9 +375,9 @@ END END close CHAT; - if ($o->{modem}{auth} eq 'PAP') { + if ($modem->{auth} eq 'PAP') { #- need to create a secrets file for the connection. - my $secrets = "$o->{prefix}/etc/ppp/" . lc($o->{modem}{auth}) . "-secrets"; + my $secrets = "$prefix/etc/ppp/" . lc($modem->{auth}) . "-secrets"; my @l = cat_($secrets); my $replaced = 0; do { $replaced ||= 1 @@ -395,16 +396,116 @@ END } #- CHAP is not supported by initscripts, need patching before doing more on that here! #-install_any::template2userfile($o->{prefix}, "$ENV{SHARE_PATH}/kppprc.in", ".kde/share/config/kppprc", 1, %toreplace); - commands::mkdir_("-p", "$o->{prefix}/usr/share/config"); - template2file("$ENV{SHARE_PATH}/kppprc.in", "$o->{prefix}/usr/share/config/kppprc", %toreplace); + commands::mkdir_("-p", "$prefix/usr/share/config"); + template2file("$ENV{SHARE_PATH}/kppprc.in", "$prefix/usr/share/config/kppprc", %toreplace); - miscellaneousNetwork($o); + miscellaneousNetwork($in, $prefix); } sub miscellaneousNetwork { - my ($o) = @_; - setVarsInSh ("$o->{prefix}/etc/profile.d/proxy.sh", $o->{miscellaneous}, qw(http_proxy ftp_proxy)); - setVarsInCsh("$o->{prefix}/etc/profile.d/proxy.csh", $o->{miscellaneous}, qw(http_proxy ftp_proxy)); + my ($in, $prefix) = @_; + setVarsInSh ("$prefix/etc/profile.d/proxy.sh", $::o->{miscellaneous}, qw(http_proxy ftp_proxy)); + setVarsInCsh("$prefix/etc/profile.d/proxy.csh", $::o->{miscellaneous}, qw(http_proxy ftp_proxy)); +} + +sub load_thiskind { + my ($in, $type, $pcmcia) = @_; + my $pcmcia2 = $pcmcia if modules::pcmcia_need_config($pcmcia) && !$::noauto; + my $w; $w = $in->wait_message(_("PCMCIA"), _("Configuring PCMCIA cards...")) if $pcmcia2; + modules::load_thiskind($type, $pcmcia2, sub { $w = wait_load_module($in, $type, @_) }); +} + +sub setup_thiskind { + my ($in, $type, $auto, $at_least_one, $pcmcia) = @_; + + return if arch() eq "ppc"; + + my @l; + if (!$::noauto) { + @l = load_thiskind($in, $type, $pcmcia); + if (my @err = grep { $_ } map { $_->{error} } @l) { + $in->ask_warn('', join("\n", @err)); + } + return @l if $auto && (@l || !$at_least_one); + } + @l = map { $_->{description} } @l; + while (1) { + my ($msg_type) = $type =~ s/\|.*//; + my $msg = @l ? + [ _("Found %s %s interfaces", join(", ", @l), $msg_type), + _("Do you have another one?") ] : + _("Do you have any %s interfaces?", $msg_type); + + my $opt = [ __("Yes"), __("No") ]; + push @$opt, __("See hardware info") if $::expert; + my $r = "Yes"; + $r = $in->ask_from_list_('', $msg, $opt, "No") unless $at_least_one && @l == 0; + if ($r eq "No") { return @l } + if ($r eq "Yes") { + push @l, load_module($in, $type) || next; + } else { + $in->ask_warn('', [ detect_devices::stringlist() ]); + } + } +} + +sub wait_load_module { + my ($in, $type, $text, $module) = @_; +#-PO: the first %s is the card type (scsi, network, sound,...) +#-PO: the second is the vendor+model name + $in->wait_message('', + [ _("Installing driver for %s card %s", $type, $text), + $::beginner ? () : _("(module %s)", $module) + ]); +} + +sub load_module { + my ($in, $type) = @_; + my @options; + + my $m = $in->ask_from_listf('', +#-PO: the %s is the driver type (scsi, network, sound,...) + _("Which %s driver should I try?", $type), + \&modules::module2text, + [ modules::module_of_type($type) ]) or return; + my $l = modules::module2text($m); + require modparm; + my @names = modparm::get_options_name($m); + + if ((@names != 0) && $in->ask_from_list_('', +_("In some cases, the %s driver needs to have extra information to work +properly, although it normally works fine without. Would you like to specify +extra options for it or allow the driver to probe your machine for the +information it needs? Occasionally, probing will hang a computer, but it should +not cause any damage.", $l), + [ __("Autoprobe"), __("Specify options") ], "Autoprobe") ne "Autoprobe") { + ASK: + if (@names >= 0) { + my @l = $in->ask_from_entries('', +_("You may now provide its options to module %s.", $l), + \@names) or return; + @options = modparm::get_options_result($m, @l); + } else { + @options = split ' ', + $in->ask_from_entry('', +_("You may now provide its options to module %s. +Options are in format ``name=value name2=value2 ...''. +For instance, ``io=0x300 irq=7''", $l), + _("Module options:"), + ); + } + } + eval { + my $w = wait_load_module($in, $type, $l, $m); + modules::load($m, $type, @options); + }; + if ($@) { + $in->ask_yesorno('', +_("Loading module %s failed. +Do you want to try again with other parameters?", $l), 1) or return; + goto ASK; + } + $l; } @@ -188,111 +188,14 @@ sub partitionWizard { } #-------------------------------------------------------------------------------- -sub wait_load_module { - my ($o, $type, $text, $module) = @_; -#-PO: the first %s is the card type (scsi, network, sound,...) -#-PO: the second is the vendor+model name - $o->wait_message('', - [ _("Installing driver for %s card %s", $type, $text), - $::beginner ? () : _("(module %s)", $module) - ]); -} - - -sub load_module { - my ($o, $type) = @_; - my @options; - - my $m = $o->ask_from_listf('', -#-PO: the %s is the driver type (scsi, network, sound,...) - _("Which %s driver should I try?", $type), - \&modules::module2text, - [ modules::module_of_type($type) ]) or return; - my $l = modules::module2text($m); - require modparm; - my @names = modparm::get_options_name($m); - - if ((@names != 0) && $o->ask_from_list_('', -_("In some cases, the %s driver needs to have extra information to work -properly, although it normally works fine without. Would you like to specify -extra options for it or allow the driver to probe your machine for the -information it needs? Occasionally, probing will hang a computer, but it should -not cause any damage.", $l), - [ __("Autoprobe"), __("Specify options") ], "Autoprobe") ne "Autoprobe") { - ASK: - if (@names >= 0) { - my @l = $o->ask_from_entries('', -_("You may now provide its options to module %s.", $l), - \@names) or return; - @options = modparm::get_options_result($m, @l); - } else { - @options = split ' ', - $o->ask_from_entry('', -_("You may now provide its options to module %s. -Options are in format ``name=value name2=value2 ...''. -For instance, ``io=0x300 irq=7''", $l), - _("Module options:"), - ); - } - } - eval { - my $w = wait_load_module($o, $type, $l, $m); - modules::load($m, $type, @options); - }; - if ($@) { - $o->ask_yesorno('', -_("Loading module %s failed. -Do you want to try again with other parameters?", $l), 1) or return; - goto ASK; - } - $l; -} - +#- wait_load_module moved to any.pm +#- load_module moved to any.pm #------------------------------------------------------------------------------ -sub load_thiskind { - my ($o, $type) = @_; - my $pcmcia = $o->{pcmcia} if modules::pcmcia_need_config($o->{pcmcia}) && !$::noauto; - my $w; $w = $o->wait_message(_("PCMCIA"), _("Configuring PCMCIA cards...")) if $pcmcia; - modules::load_thiskind($type, $pcmcia, sub { $w = wait_load_module($o, $type, @_) }); -} - - +#-load_thiskind moved to any.pm #------------------------------------------------------------------------------ -sub setup_thiskind { - my ($o, $type, $auto, $at_least_one) = @_; - - return if arch() eq "ppc"; - - my @l; - if (!$::noauto) { - @l = load_thiskind($o, $type); - if (my @err = grep { $_ } map { $_->{error} } @l) { - $o->ask_warn('', join("\n", @err)); - } - return @l if $auto && (@l || !$at_least_one); - } - @l = map { $_->{description} } @l; - while (1) { - (my $msg_type = $type) =~ s/\|.*//; - my $msg = @l ? - [ _("Found %s %s interfaces", join(", ", @l), $msg_type), - _("Do you have another one?") ] : - _("Do you have any %s interfaces?", $msg_type); - - my $opt = [ __("Yes"), __("No") ]; - push @$opt, __("See hardware info") if $::expert; - my $r = "Yes"; - $r = $o->ask_from_list_('', $msg, $opt, "No") unless $at_least_one && @l == 0; - if ($r eq "No") { return @l } - if ($r eq "Yes") { - push @l, load_module($o, $type) || next; - } else { - $o->ask_warn('', [ detect_devices::stringlist() ]); - } - } -} - +#-setup_thiskind moved to any.pm #------------------------------------------------------------------------------ + sub upNetwork { my ($o, $pppAvoided) = @_; my $w = $o->wait_message('', _("Bringing up the network")); @@ -477,25 +477,7 @@ sub selectMouse($) { } #------------------------------------------------------------------------------ -sub configureNetwork($) { - my ($o) = @_; - my $etc = "$o->{prefix}/etc"; - - network::write_conf("$etc/sysconfig/network", $o->{netc}); - network::write_resolv_conf("$etc/resolv.conf", $o->{netc}); - network::write_interface_conf("$etc/sysconfig/network-scripts/ifcfg-$_->{DEVICE}", $_) foreach @{$o->{intf}}; - network::add2hosts("$etc/hosts", $o->{netc}{HOSTNAME}, map { $_->{IPADDR} } @{$o->{intf}}); - network::sethostname($o->{netc}) unless $::testing; - network::addDefaultRoute($o->{netc}) unless $::testing; - - $o->pkg_install("dhcpcd") if grep { $_->{BOOTPROTO} =~ /^(dhcp)$/ } @{$o->{intf}}; - # Handle also pump (this is still in initscripts no?) - $o->pkg_install("pump") if grep { $_->{BOOTPROTO} =~ /^(pump|bootp)$/ } @{$o->{intf}}; - #-res_init(); #- reinit the resolver so DNS changes take affect - - any::miscellaneousNetwork($o); -} - +#- configureNetwork moved to network and is renamed. #------------------------------------------------------------------------------ #------------------------------------------------------------------------------ @@ -2,6 +2,7 @@ package install_steps_auto_install; use diagnostics; use strict; +use netconnect; use vars qw(@ISA); @ISA = qw(install_steps); @@ -34,7 +35,9 @@ sub new { sub configureNetwork { my ($o) = @_; modules::load_thiskind('net', $o->{pcmcia}); - install_steps::configureNetwork($o); +#- install_steps::configureNetwork($o); + $o->{netcnx}||={}; + netconnect::net_connect($o->{prefix}, $o->{netcnx}, $o->{netc}, $o->{modem}, $o->{mouse}, $o, $o->{pcmcia}, $o->{intf}, 1); } sub enteringStep($$$) { @@ -168,7 +168,7 @@ sub selectMouse { [ mouse::serial_ports ]); } - install_interactive::setup_thiskind($o, 'usb', !$::expert, 0) if $o->{mouse}{device} eq "usbmouse"; + any::setup_thiskind($o, 'usb', !$::expert, 0, $o->{pcmcia}) if $o->{mouse}{device} eq "usbmouse"; eval { devices::make("usbmouse"); modules::load("usbmouse"); @@ -184,7 +184,7 @@ sub setupSCSI { my $w = $o->wait_message(_("IDE"), _("Configuring IDE")); modules::load_ide(); } - install_interactive::setup_thiskind($o, 'scsi|disk', $_[1], $_[2]); + any::setup_thiskind($o, 'scsi|disk', $_[1], $_[2], $o->{pcmcia}); } sub ask_mntpoint_s { @@ -458,111 +458,15 @@ sub afterInstallPackages($) { } #------------------------------------------------------------------------------ -sub configureNetwork($) { +sub configureNetwork { my ($o, $first_time) = @_; - local $_; - if (@{$o->{intf}} > 0 && $first_time) { - my @l = ( - __("Keep the current IP configuration"), - __("Reconfigure network now"), - __("Do not set up networking"), - ); - $_ = $::beginner ? "Keep" : - $o->ask_from_list_([ _("Network Configuration") ], - _("Local networking has already been configured. Do you want to:"), - [ @l ]) || "Do not"; - } else { - $_ = (!$::beginner || install_interactive::setup_thiskind($o, 'net', 1, 0)) && - $o->ask_yesorno([ _("Network Configuration") ], - _("Do you want to configure a local network for your system?"), 0) ? "Local LAN" : "Do not"; - } - if (/^Do not/) { - $o->{netc}{NETWORKING} = "false"; - } elsif (!/^Keep/) { - install_interactive::setup_thiskind($o, 'net', !$::expert, 1); - my @l = detect_devices::getNet() or die _("no network card found"); - - my $last; foreach ($::beginner ? $l[0] : @l) { - my $intf = network::findIntf($o->{intf} ||= [], $_); - add2hash($intf, $last); - add2hash($intf, { NETMASK => '255.255.255.0' }); - $o->configureNetworkIntf($intf) or last; - - $o->{netc} ||= {}; - delete $o->{netc}{dnsServer}; - delete $o->{netc}{GATEWAY}; - $last = $intf; - } - #- { - #- my $wait = $o->wait_message(_("Hostname"), _("Determining host name and domain...")); - #- network::guessHostname($o->{prefix}, $o->{netc}, $o->{intf}); - #- } - if ($last->{BOOTPROTO} =~ /^(dhcp|bootp)$/) { - $o->ask_from_entries_ref(_("Configuring network"), -_("Please enter your host name if you know it. -Some DHCP servers require the hostname to work. -Your host name should be a fully-qualified host name, -such as ``mybox.mylab.myco.com''."), - [_("Host name:")], [ \$o->{netc}{HOSTNAME} ]); - } else { - $o->configureNetworkNet($o->{netc}, $last ||= {}, @l); - } - $o->miscellaneousNetwork(); - } - install_steps::configureNetwork($o); - - #- added internet configuration after ethernet one. - netconnect::net_connect($o->{prefix}, $o->{netcnx}, $o, bool($o->{pcmcia})); #-dam's + $o->{netcnx}||={}; + netconnect::net_connect($o->{prefix}, $o->{netcnx}, $o->{netc}, $o->{modem}, $o->{mouse}, $o, $o->{pcmcia}, $o->{intf}, $first_time); } -sub configureNetworkIntf { - my ($o, $intf) = @_; - my $pump = $intf->{BOOTPROTO} =~ /^(dhcp|bootp)$/; - delete $intf->{NETWORK}; - delete $intf->{BROADCAST}; - my @fields = qw(IPADDR NETMASK); - $o->set_help('configureNetworkIP'); - $o->ask_from_entries_ref(_("Configuring network device %s", $intf->{DEVICE}), -($::isStandalone ? '' : _("Configuring network device %s", $intf->{DEVICE}) . "\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)."), - [ _("IP address:"), _("Netmask:"), _("Automatic IP") ], - [ \$intf->{IPADDR}, \$intf->{NETMASK}, { val => \$pump, type => "bool", text => _("(bootp/dhcp)") } ], - complete => sub { - $intf->{BOOTPROTO} = $pump ? "dhcp" : "static"; - return 0 if $pump; - for (my $i = 0; $i < @fields; $i++) { - unless (network::is_ip($intf->{$fields[$i]})) { - $o->ask_warn('', _("IP address should be in format 1.2.3.4")); - return (1,$i); - } - return 0; - } - }, - focus_out => sub { - $intf->{NETMASK} ||= network::netmask($intf->{IPADDR}) unless $_[0] - } - ); -} - -sub configureNetworkNet { - my ($o, $netc, $intf, @devices) = @_; - - $netc->{dnsServer} ||= network::dns($intf->{IPADDR}); - $netc->{GATEWAY} ||= network::gateway($intf->{IPADDR}); - - $o->ask_from_entries_ref(_("Configuring network"), -_("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"), - [_("Host name:"), _("DNS server:"), _("Gateway:"), $::expert ? _("Gateway device:") : ()], - [(map { \$netc->{$_} } qw(HOSTNAME dnsServer GATEWAY)), - {val => \$netc->{GATEWAYDEV}, list => \@devices}] - ); -} +#-configureNetworkIntf moved to network +#-configureNetworkNet moved to network #------------------------------------------------------------------------------ #-pppConfig moved to any.pm #------------------------------------------------------------------------------ @@ -865,27 +769,7 @@ try to force installation even if that destroys the first partition?")); } #------------------------------------------------------------------------------ -sub miscellaneousNetwork { - my ($o, $clicked) = @_; - my $u = $o->{miscellaneous} ||= {}; - - $o->set_help('configureNetworkProxy'); - !$::beginner || $clicked and $o->ask_from_entries_ref('', - _("Proxies configuration"), - [ _("HTTP proxy"), - _("FTP proxy"), - ], - [ \$u->{http_proxy}, - \$u->{ftp_proxy}, - ], - complete => sub { - $u->{http_proxy} =~ m,^($|http://), or $o->ask_warn('', _("Proxy should be http://...")), return 1,3; - $u->{ftp_proxy} =~ m,^($|ftp://), or $o->ask_warn('', _("Proxy should be ftp://...")), return 1,4; - 0; - } - ) || return; -} - +#- miscellaneousNetwork moved to network.pm #------------------------------------------------------------------------------ sub miscellaneous { my ($o, $clicked) = @_; @@ -11,6 +11,7 @@ use Socket; use common qw(:common :file :system :functional); use detect_devices; use run_program; +use any; use log; #-###################################################################################### @@ -233,6 +234,150 @@ sub gateway { } +sub configureNetwork { + my ($prefix, $netc, $in, $pcmcia, $intf, $first_time) = @_; + local $_; + if (@{$intf} > 0 && $first_time) { + my @l = ( + __("Keep the current IP configuration"), + __("Reconfigure network now"), + __("Do not set up networking"), + ); + $_ = $::beginner ? "Keep" : + $in->ask_from_list_([ _("Network Configuration") ], + _("Local networking has already been configured. Do you want to:"), + [ @l ]) || "Do not"; + } else { + $_ = (!$::beginner || any::setup_thiskind($in, 'net', 1, 0, $pcmcia)) && + $in->ask_yesorno([ _("Network Configuration") ], + _("Do you want to configure a local network for your system?"), 0) ? "Local LAN" : "Do not"; + } + if (/^Do not/) { + $netc->{NETWORKING} = "false"; + } elsif (!/^Keep/) { + any::setup_thiskind($in, 'net', !$::expert, 1, $pcmcia); + my @l = detect_devices::getNet() or die _("no network card found"); + + my $last; foreach ($::beginner ? $l[0] : @l) { + my $intf2 = findIntf($intf ||= [], $_); + add2hash($intf2, $last); + add2hash($intf2, { NETMASK => '255.255.255.0' }); + configureNetworkIntf($in, $intf2) or last; + + $netc ||= {}; + delete $netc->{dnsServer}; + delete $netc->{GATEWAY}; + $last = $intf2; + } + #- { + #- my $wait = $o->wait_message(_("Hostname"), _("Determining host name and domain...")); + #- network::guessHostname($o->{prefix}, $o->{netc}, $o->{intf}); + #- } + if ($last->{BOOTPROTO} =~ /^(dhcp|bootp)$/) { + $in->ask_from_entries_ref(_("Configuring network"), +_("Please enter your host name if you know it. +Some DHCP servers require the hostname to work. +Your host name should be a fully-qualified host name, +such as ``mybox.mylab.myco.com''."), + [_("Host name:")], [ \$netc->{HOSTNAME} ]); + } else { + configureNetworkNet($in, $netc, $last ||= {}, @l); + } + miscellaneousNetwork($in); + } + configureNetwork2($in, $prefix, $netc, $intf); +} + +sub miscellaneousNetwork { + my ($in, $clicked) = @_; + my $u = $::o->{miscellaneous} ||= {}; + $::isStandalone or $in->set_help('configureNetworkProxy'); + !$::beginner || $clicked and $in->ask_from_entries_ref('', + _("Proxies configuration"), + [ _("HTTP proxy"), + _("FTP proxy"), + ], + [ \$u->{http_proxy}, + \$u->{ftp_proxy}, + ], + complete => sub { + $u->{http_proxy} =~ m,^($|http://), or $in->ask_warn('', _("Proxy should be http://...")), return 1,3; + $u->{ftp_proxy} =~ m,^($|ftp://), or $in->ask_warn('', _("Proxy should be ftp://...")), return 1,4; + 0; + } + ) || return; +} + +sub configureNetworkNet { + my ($in, $netc, $intf, @devices) = @_; + + $netc->{dnsServer} ||= dns($intf->{IPADDR}); + $netc->{GATEWAY} ||= gateway($intf->{IPADDR}); + + $in->ask_from_entries_ref(_("Configuring network"), +_("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"), + [_("Host name:"), _("DNS server:"), _("Gateway:"), $::expert ? _("Gateway device:") : ()], + [(map { \$netc->{$_} } qw(HOSTNAME dnsServer GATEWAY)), + {val => \$netc->{GATEWAYDEV}, list => \@devices}] + ); +} + + +sub configureNetwork2 { + my ($in, $prefix, $netc, $intf) = @_; + my $etc = "$prefix/etc"; + + write_conf("$etc/sysconfig/network", $netc); + write_resolv_conf("$etc/resolv.conf", $netc); + write_interface_conf("$etc/sysconfig/network-scripts/ifcfg-$_->{DEVICE}", $_) foreach @{$intf}; + add2hosts("$etc/hosts", $netc->{HOSTNAME}, map { $_->{IPADDR} } @{$intf}); + sethostname($netc) unless $::testing; + addDefaultRoute($netc) unless $::testing; + + $in->pkg_install("dhcpcd") if grep { $_->{BOOTPROTO} =~ /^(dhcp)$/ } @{$intf}; + # Handle also pump (this is still in initscripts no?) + $in->pkg_install("pump") if grep { $_->{BOOTPROTO} =~ /^(pump|bootp)$/ } @{$intf}; + #-res_init(); #- reinit the resolver so DNS changes take affect + + any::miscellaneousNetwork($in, $prefix); +} + + +sub configureNetworkIntf { + my ($in, $intf) = @_; + my $pump = $intf->{BOOTPROTO} =~ /^(dhcp|bootp)$/; + delete $intf->{NETWORK}; + delete $intf->{BROADCAST}; + my @fields = qw(IPADDR NETMASK); + $in->set_help('configureNetworkIP'); + $in->ask_from_entries_ref(_("Configuring network device %s", $intf->{DEVICE}), +($::isStandalone ? '' : _("Configuring network device %s", $intf->{DEVICE}) . "\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)."), + [ _("IP address:"), _("Netmask:"), _("Automatic IP") ], + [ \$intf->{IPADDR}, \$intf->{NETMASK}, { val => \$pump, type => "bool", text => _("(bootp/dhcp)") } ], + complete => sub { + $intf->{BOOTPROTO} = $pump ? "dhcp" : "static"; + return 0 if $pump; + for (my $i = 0; $i < @fields; $i++) { + unless (is_ip($intf->{$fields[$i]})) { + $in->ask_warn('', _("IP address should be in format 1.2.3.4")); + return (1,$i); + } + return 0; + } + }, + focus_out => sub { + $intf->{NETMASK} ||= netmask($intf->{IPADDR}) unless $_[0] + } + ); +} + + #-###################################################################################### #- Wonderful perl :( #-###################################################################################### |
gstr "Hindi makagawa ng mga screenshot bago mag-partisyon"
-#: install_any.pm:1879
+#: install_any.pm:1885
#, c-format
msgid "Screenshots will be available after install in %s"
msgstr "Ang mga screenshot ay magiging available matapos ang install sa %s"
@@ -7175,13 +7175,13 @@ msgstr "May error sa pag-i-install ng mga package na:"
msgid "Go on anyway?"
msgstr "Magpatuloy pa rin?"
-#: install_steps_gtk.pm:582 install_steps_interactive.pm:933 steps.pm:30
+#: install_steps_gtk.pm:582 install_steps_interactive.pm:939 steps.pm:30
#, c-format
msgid "Summary"
msgstr "Kabuuan"
-#: install_steps_gtk.pm:605 install_steps_interactive.pm:929
-#: install_steps_interactive.pm:1078
+#: install_steps_gtk.pm:605 install_steps_interactive.pm:935
+#: install_steps_interactive.pm:1084
#, c-format
msgid "not configured"
msgstr "hindi na-configure"
@@ -7374,7 +7374,7 @@ msgstr ""
msgid "Looking for available packages..."
msgstr "Naghahanap ng mga available na package..."
-#: install_steps_interactive.pm:428 install_steps_interactive.pm:833
+#: install_steps_interactive.pm:428 install_steps_interactive.pm:839
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Pumili ng mirror kung saan kukunin ang mga package"
@@ -7402,8 +7402,8 @@ msgstr ""
msgid "Load"
msgstr "XLoad"
-#: install_steps_interactive.pm:504 standalone/drakbackup:3932
-#: standalone/drakbackup:4005 standalone/logdrake:175
+#: install_steps_interactive.pm:504 standalone/drakbackup:3930
+#: standalone/drakbackup:4003 standalone/logdrake:175
#, c-format
msgid "Save"
msgstr "I-save"
@@ -7487,12 +7487,12 @@ msgstr "Configuration matapos ang install"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: install_steps_interactive.pm:806
+#: install_steps_interactive.pm:812
#, c-format
msgid "Updates"
msgstr "Mga update"
-#: install_steps_interactive.pm:807
+#: install_steps_interactive.pm:813
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -7515,7 +7515,7 @@ msgstr ""
"\n"
"Gusto ninyong i-install ang mga update ?"
-#: install_steps_interactive.pm:828
+#: install_steps_interactive.pm:834
#, c-format
msgid ""
"Contacting Mandriva Linux web site to get the list of available mirrors..."
@@ -7523,69 +7523,69 @@ msgstr ""
"Nakikipag-alam sa web site ng Mandriva Linux para makuha ang talaan ng mga "
"available na mirror..."
-#: install_steps_interactive.pm:847
+#: install_steps_interactive.pm:853
#, c-format
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"Nakikipag-alam sa mirror para makuha nag talaan ng mga available na "
"package..."
-#: install_steps_interactive.pm:851
+#: install_steps_interactive.pm:857
#, c-format
msgid "Unable to contact mirror %s"
msgstr "Hindi nakayang makipag-alam sa mirror na %s"
-#: install_steps_interactive.pm:851
+#: install_steps_interactive.pm:857
#, c-format
msgid "Would you like to try again?"
msgstr "Gusto ninyong subukan muli?"
-#: install_steps_interactive.pm:878 standalone/drakclock:45
+#: install_steps_interactive.pm:884 standalone/drakclock:45
#, c-format
msgid "Which is your timezone?"
msgstr "Alin ang inyong timezone?"
-#: install_steps_interactive.pm:883
+#: install_steps_interactive.pm:889
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatic na pagsasabaysabay ng oras (gamit ang NTP)"
-#: install_steps_interactive.pm:891
+#: install_steps_interactive.pm:897
#, c-format
msgid "NTP Server"
msgstr "NTP Server"
-#: install_steps_interactive.pm:946 install_steps_interactive.pm:954
-#: install_steps_interactive.pm:972 install_steps_interactive.pm:979
-#: install_steps_interactive.pm:1130 services.pm:133
-#: standalone/drakbackup:1576
+#: install_steps_interactive.pm:952 install_steps_interactive.pm:960
+#: install_steps_interactive.pm:978 install_steps_interactive.pm:985
+#: install_steps_interactive.pm:1136 services.pm:133
+#: standalone/drakbackup:1574
#, c-format
msgid "System"
msgstr "Sistema"
-#: install_steps_interactive.pm:986 install_steps_interactive.pm:1013
-#: install_steps_interactive.pm:1030 install_steps_interactive.pm:1046
-#: install_steps_interactive.pm:1057
+#: install_steps_interactive.pm:992 install_steps_interactive.pm:1019
+#: install_steps_interactive.pm:1036 install_steps_interactive.pm:1052
+#: install_steps_interactive.pm:1063
#, c-format
msgid "Hardware"
msgstr "Hardware"
-#: install_steps_interactive.pm:992 install_steps_interactive.pm:1001
+#: install_steps_interactive.pm:998 install_steps_interactive.pm:1007
#, c-format
msgid "Remote CUPS server"
msgstr "Remote CUPS server"
-#: install_steps_interactive.pm:992
+#: install_steps_interactive.pm:998
#, c-format
msgid "No printer"
msgstr "Walang printer"
-#: install_steps_interactive.pm:1034
+#: install_steps_interactive.pm:1040
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Mayroon ba kayong ISA na sound card?"
-#: install_steps_interactive.pm:1036
+#: install_steps_interactive.pm:1042
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -7594,72 +7594,72 @@ msgstr ""
"Patakbuhin ang \"alsaconf\" o \"sndconfig\" pagkatapos mag-install para i-"
"configure ang iyong sound card"
-#: install_steps_interactive.pm:1038
+#: install_steps_interactive.pm:1044
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Walang natiktikang sound card. Subukan ang \"harddrake\" pagkatapos mag-"
"install"
-#: install_steps_interactive.pm:1058
+#: install_steps_interactive.pm:1064
#, c-format
msgid "Graphical interface"
msgstr "Graphical interface"
-#: install_steps_interactive.pm:1064 install_steps_interactive.pm:1076
+#: install_steps_interactive.pm:1070 install_steps_interactive.pm:1082
#, c-format
msgid "Network & Internet"
msgstr "Network & Internet"
-#: install_steps_interactive.pm:1078
+#: install_steps_interactive.pm:1084
#, c-format
msgid "configured"
msgstr "na-configure"
-#: install_steps_interactive.pm:1087 install_steps_interactive.pm:1101
+#: install_steps_interactive.pm:1093 install_steps_interactive.pm:1107
#: security/level.pm:55 steps.pm:20
#, c-format
msgid "Security"
msgstr "Seguridad"
-#: install_steps_interactive.pm:1106
+#: install_steps_interactive.pm:1112
#, c-format
msgid "activated"
msgstr "na-activate"
-#: install_steps_interactive.pm:1106
+#: install_steps_interactive.pm:1112
#, c-format
msgid "disabled"
msgstr "na-disable"
-#: install_steps_interactive.pm:1117
+#: install_steps_interactive.pm:1123
#, c-format
msgid "Boot"
msgstr "Boot"
#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1121 printer/printerdrake.pm:974
+#: install_steps_interactive.pm:1127 printer/printerdrake.pm:974
#, c-format
msgid "%s on %s"
msgstr "%s sa %s"
-#: install_steps_interactive.pm:1135 services.pm:175
+#: install_steps_interactive.pm:1141 services.pm:175
#, c-format
msgid "Services: %d activated for %d registered"
msgstr "Mga Service: %d na-activate para sa %d nakarehistro"
-#: install_steps_interactive.pm:1147
+#: install_steps_interactive.pm:1153
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
"Hindi pa ninyo na-configure ang X. Sigurado kayong gusto ninyong gawin ito?"
-#: install_steps_interactive.pm:1228
+#: install_steps_interactive.pm:1234
#, c-format
msgid "Preparing bootloader..."
msgstr "Inihahanda ang bootloader..."
-#: install_steps_interactive.pm:1238
+#: install_steps_interactive.pm:1244
#, fuzzy, c-format
msgid ""
"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
@@ -7672,12 +7672,12 @@ msgstr ""
"Ang install ay magpapatuloy, ngunit kakailanganin ninyong\n"
"gamitin ang BootX o ibang paraan para i-boot ang inyong makina"
-#: install_steps_interactive.pm:1244
+#: install_steps_interactive.pm:1250
#, c-format
msgid "Do you want to use aboot?"
msgstr "Gusto ninyong gamiting ang aboot?"
-#: install_steps_interactive.pm:1247
+#: install_steps_interactive.pm:1253
#, c-format
msgid ""
"Error installing aboot, \n"
@@ -7686,7 +7686,7 @@ msgstr ""
"May error sa pag-install ng aboot,\n"
"subukang ipilit ang pag-i-install kahit na sirain nito ang unang partisyon?"
-#: install_steps_interactive.pm:1264
+#: install_steps_interactive.pm:1270
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -7695,22 +7695,22 @@ msgstr ""
"Sa level ng seguridad na ito, ang access sa mga file na nasa partisyon ng "
"Windows ay limitado sa tagapangasiwa."
-#: install_steps_interactive.pm:1293 standalone/drakautoinst:76
+#: install_steps_interactive.pm:1299 standalone/drakautoinst:76
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Magsuksok ng blangkong floppy sa drive %s"
-#: install_steps_interactive.pm:1298
+#: install_steps_interactive.pm:1304
#, c-format
msgid "Please insert another floppy for drivers disk"
msgstr "Pakisuksok ng iba pang floppy para sa \"drivers disk\""
-#: install_steps_interactive.pm:1300
+#: install_steps_interactive.pm:1306
#, c-format
msgid "Creating auto install floppy..."
msgstr "Lumilikha ng auto install floppy..."
-#: install_steps_interactive.pm:1312
+#: install_steps_interactive.pm:1318
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -7721,19 +7721,19 @@ msgstr ""
"\n"
"Gusto ninyo ba talagang sumuko ngayon?"
-#: install_steps_interactive.pm:1322 standalone/draksambashare:416
+#: install_steps_interactive.pm:1328 standalone/draksambashare:416
#: standalone/draksambashare:523 standalone/drakups:120 standalone/drakups:159
#: standalone/logdrake:452 standalone/logdrake:458
#, c-format
msgid "Congratulations"
msgstr "Maligayang bati"
-#: install_steps_interactive.pm:1330 install_steps_interactive.pm:1331
+#: install_steps_interactive.pm:1336 install_steps_interactive.pm:1337
#, c-format
msgid "Generate auto install floppy"
msgstr "Gumawa ng auto install floppy"
-#: install_steps_interactive.pm:1332
+#: install_steps_interactive.pm:1338
#, c-format
msgid ""
"The auto install can be fully automated if wanted,\n"
@@ -7768,7 +7768,7 @@ msgstr ""
msgid "Choose a file"
msgstr "Pumili ng file"
-#: interactive.pm:321 interactive/gtk.pm:507 standalone/drakbackup:1517
+#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakbackup:1515
#: standalone/drakfont:655 standalone/drakhosts:242 standalone/draknfs:605
#: standalone/draksambashare:1123 standalone/drakups:301
#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
@@ -7777,14 +7777,14 @@ msgstr "Pumili ng file"
msgid "Add"
msgstr "Magdagdag"
-#: interactive.pm:321 interactive/gtk.pm:507 standalone/drakhosts:249
+#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakhosts:249
#: standalone/draknfs:612 standalone/draksambashare:1080
#: standalone/draksambashare:1133 standalone/draksambashare:1172
#, c-format
msgid "Modify"
msgstr "Baguhin"
-#: interactive.pm:321 interactive/gtk.pm:507 standalone/drakhosts:256
+#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakhosts:256
#: standalone/draknfs:619 standalone/draksambashare:1081
#: standalone/draksambashare:1141 standalone/draksambashare:1180
#: standalone/drakups:303 standalone/drakups:363 standalone/drakups:383
@@ -10028,9 +10028,9 @@ msgstr "GlidePoint"
#: mouse.pm:36 network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
#: network/modem.pm:68 network/modem.pm:81 network/modem.pm:86
-#: network/modem.pm:115 network/netconnect.pm:580 network/netconnect.pm:585
-#: network/netconnect.pm:597 network/netconnect.pm:602
-#: network/netconnect.pm:618 network/netconnect.pm:620
+#: network/modem.pm:115 network/netconnect.pm:585 network/netconnect.pm:590
+#: network/netconnect.pm:602 network/netconnect.pm:607
+#: network/netconnect.pm:623 network/netconnect.pm:625
#, c-format
msgid "Automatic"
msgstr "Automatic"
@@ -10343,8 +10343,8 @@ msgstr "Ibang mga port"
#: network/drakfirewall.pm:251 network/drakfirewall.pm:254
#: standalone/drakids:33 standalone/drakids:136 standalone/drakids:145
#: standalone/drakids:170 standalone/drakids:179 standalone/drakids:189
-#: standalone/drakids:265 standalone/net_applet:59 standalone/net_applet:201
-#: standalone/net_applet:379 standalone/net_applet:416
+#: standalone/drakids:265 standalone/net_applet:59 standalone/net_applet:202
+#: standalone/net_applet:380 standalone/net_applet:417
#, fuzzy, c-format
msgid "Interactive Firewall"
msgstr "Firewall"
@@ -10402,9 +10402,9 @@ msgstr ""
msgid "A \"%s\" attack has been attempted by %s"
msgstr ""
-#: network/isdn.pm:117 network/netconnect.pm:452 network/netconnect.pm:541
-#: network/netconnect.pm:544 network/netconnect.pm:687
-#: network/netconnect.pm:691
+#: network/isdn.pm:117 network/netconnect.pm:452 network/netconnect.pm:546
+#: network/netconnect.pm:549 network/netconnect.pm:692
+#: network/netconnect.pm:696
#, c-format
msgid "Unlisted - edit manually"
msgstr "Hindi nakatala - i-edit ng mano-mano"
@@ -10430,8 +10430,8 @@ msgid "USB"
msgstr "USB"
#: network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/netconnect.pm:585 network/netconnect.pm:602
-#: network/netconnect.pm:618
+#: network/netconnect.pm:590 network/netconnect.pm:607
+#: network/netconnect.pm:623
#, c-format
msgid "Manual"
msgstr "Mano-mano"
@@ -10469,7 +10469,7 @@ msgid "Unable to find the ndiswrapper interface!"
msgstr ""
#: network/netconnect.pm:69 network/netconnect.pm:482
-#: network/netconnect.pm:489
+#: network/netconnect.pm:494
#, c-format
msgid "Manual choice"
msgstr "Mano-manong pili"
@@ -10671,12 +10671,12 @@ msgstr ""
msgid "Choose the connection you want to configure"
msgstr "Piliin ang koneksyon na gusto ninyong i-configure"
-#: network/netconnect.pm:276 network/netconnect.pm:764
+#: network/netconnect.pm:276 network/netconnect.pm:770
#, c-format
msgid "Connection Configuration"
msgstr "Pagko-configure ng koneksyon"
-#: network/netconnect.pm:276 network/netconnect.pm:765
+#: network/netconnect.pm:276 network/netconnect.pm:771
#, c-format
msgid "Please fill or check the field below"
msgstr "Pakipunuan o paki-check ang field sa ilalim"
@@ -10686,7 +10686,7 @@ msgstr "Pakipunuan o paki-check ang field sa ilalim"
msgid "Your personal phone number"
msgstr "Ang inyong personal na numero ng telepono"
-#: network/netconnect.pm:280 network/netconnect.pm:768
+#: network/netconnect.pm:280 network/netconnect.pm:774
#, c-format
msgid "Provider name (ex provider.net)"
msgstr "Pangalan ng provider (e.g. provider.net)"
@@ -10723,13 +10723,13 @@ msgid "Connection timeout (in sec)"
msgstr "Timeout ng koneksyon (segundo)"
#: network/netconnect.pm:287 network/netconnect.pm:312
-#: network/netconnect.pm:771 standalone/drakconnect:491
+#: network/netconnect.pm:777 standalone/drakconnect:491
#, c-format
msgid "Account Login (user name)"
msgstr "Account Login (user name)"
#: network/netconnect.pm:288 network/netconnect.pm:313
-#: network/netconnect.pm:772 standalone/drakconnect:492
+#: network/netconnect.pm:778 standalone/drakconnect:492
#, c-format
msgid "Account Password"
msgstr "Password ng Account"
@@ -10769,14 +10769,14 @@ msgstr "Dialup: mga account option"
msgid "Use BPALogin (needed for Telstra)"
msgstr ""
-#: network/netconnect.pm:337 network/netconnect.pm:654
-#: network/netconnect.pm:805 network/netconnect.pm:1139
+#: network/netconnect.pm:337 network/netconnect.pm:659
+#: network/netconnect.pm:810 network/netconnect.pm:1149
#, c-format
msgid "Select the network interface to configure:"
msgstr "Piliin ang network interface na iko-configure:"
#: network/netconnect.pm:339 network/netconnect.pm:374
-#: network/netconnect.pm:655 network/netconnect.pm:807 network/shorewall.pm:70
+#: network/netconnect.pm:660 network/netconnect.pm:812 network/shorewall.pm:70
#: standalone/drakconnect:713
#, c-format
msgid "Net Device"
@@ -10870,8 +10870,8 @@ msgstr ""
"Piliin ang inyong provider.\n"
"Kung hindi nakalista, piliin ang Hindi Nakatala (\"Unlisted\")."
-#: network/netconnect.pm:451 network/netconnect.pm:540
-#: network/netconnect.pm:686
+#: network/netconnect.pm:451 network/netconnect.pm:545
+#: network/netconnect.pm:691
#, c-format
msgid "Provider:"
msgstr "Provider:"
@@ -10890,47 +10890,47 @@ msgstr ""
msgid "Select the modem to configure:"
msgstr "Piliin ang modem na iko-configure"
-#: network/netconnect.pm:509
+#: network/netconnect.pm:514
#, c-format
msgid "Please choose which serial port your modem is connected to."
msgstr "Pakipili kung sa aling serial port nakakabit ang inyong modem."
-#: network/netconnect.pm:538
+#: network/netconnect.pm:543
#, c-format
msgid "Select your provider:"
msgstr "Piliin ang inyong provider:"
-#: network/netconnect.pm:562
+#: network/netconnect.pm:567
#, c-format
msgid "Dialup: account options"
msgstr "Dialup: mga account option"
-#: network/netconnect.pm:565
+#: network/netconnect.pm:570
#, c-format
msgid "Connection name"
msgstr "Pangalan ng koneksyon"
-#: network/netconnect.pm:566
+#: network/netconnect.pm:571
#, c-format
msgid "Phone number"
msgstr "Numero ng telepono"
-#: network/netconnect.pm:567
+#: network/netconnect.pm:572
#, c-format
msgid "Login ID"
msgstr "Login ID"
-#: network/netconnect.pm:582 network/netconnect.pm:615
+#: network/netconnect.pm:587 network/netconnect.pm:620
#, c-format
msgid "Dialup: IP parameters"
msgstr "Dialup: mga IP parameter"
-#: network/netconnect.pm:585
+#: network/netconnect.pm:590
#, c-format
msgid "IP parameters"
msgstr "Mga IP parameter"
-#: network/netconnect.pm:586 network/netconnect.pm:910
+#: network/netconnect.pm:591 network/netconnect.pm:920
#: printer/printerdrake.pm:460 standalone/drakconnect:109
#: standalone/drakconnect:316 standalone/drakconnect:882
#: standalone/drakhosts:197 standalone/drakroam:122 standalone/drakups:286
@@ -10938,111 +10938,111 @@ msgstr "Mga IP parameter"
msgid "IP address"
msgstr "IP address"
-#: network/netconnect.pm:587
+#: network/netconnect.pm:592
#, c-format
msgid "Subnet mask"
msgstr "Subnet mask"
-#: network/netconnect.pm:599
+#: network/netconnect.pm:604
#, c-format
msgid "Dialup: DNS parameters"
msgstr "Dialup: mga DNS parameter"
-#: network/netconnect.pm:602
+#: network/netconnect.pm:607
#, c-format
msgid "DNS"
msgstr "DNS"
-#: network/netconnect.pm:603
+#: network/netconnect.pm:608
#, c-format
msgid "Domain name"
msgstr "Domain name"
-#: network/netconnect.pm:604 network/netconnect.pm:769
+#: network/netconnect.pm:609 network/netconnect.pm:775
#: standalone/drakconnect:992
#, c-format
msgid "First DNS Server (optional)"
msgstr "Unang DNS Server (hindi obligado)"
-#: network/netconnect.pm:605 network/netconnect.pm:770
+#: network/netconnect.pm:610 network/netconnect.pm:776
#: standalone/drakconnect:993
#, c-format
msgid "Second DNS Server (optional)"
msgstr "Pangalawang DNS Server (hindi obligado)"
-#: network/netconnect.pm:606
+#: network/netconnect.pm:611
#, c-format
msgid "Set hostname from IP"
msgstr "I-set hostname mula sa IP"
-#: network/netconnect.pm:618 standalone/drakconnect:327
+#: network/netconnect.pm:623 standalone/drakconnect:327
#, c-format
msgid "Gateway"
msgstr "Gateway"
-#: network/netconnect.pm:619 standalone/drakroam:124
+#: network/netconnect.pm:624 standalone/drakroam:124
#, c-format
msgid "Gateway IP address"
msgstr "Gateway IP address"
-#: network/netconnect.pm:654
+#: network/netconnect.pm:659
#, c-format
msgid "ADSL configuration"
msgstr "Configuration ng ADSL"
-#: network/netconnect.pm:684
+#: network/netconnect.pm:689
#, c-format
msgid "Please choose your ADSL provider"
msgstr "Pakipili ang inyong ADSL provider"
-#: network/netconnect.pm:714
+#: network/netconnect.pm:719
#, c-format
msgid ""
"Please choose your DSL connection type.\n"
"If you do not know it, keep the preselected type."
msgstr ""
-#: network/netconnect.pm:717
+#: network/netconnect.pm:722
#, c-format
msgid "ADSL connection type:"
msgstr "Uri ng ASDL na koneksyon :"
-#: network/netconnect.pm:774
+#: network/netconnect.pm:780
#, c-format
msgid "Virtual Path ID (VPI):"
msgstr "Virtual Path ID (VPI):"
-#: network/netconnect.pm:775
+#: network/netconnect.pm:781
#, c-format
msgid "Virtual Circuit ID (VCI):"
msgstr "Virtual Circuit ID (VCI):"
-#: network/netconnect.pm:778
+#: network/netconnect.pm:784
#, c-format
msgid "Encapsulation:"
msgstr "Encapsulation:"
-#: network/netconnect.pm:809
+#: network/netconnect.pm:814
#, c-format
msgid "Manually load a driver"
msgstr ""
-#: network/netconnect.pm:810
+#: network/netconnect.pm:815
#, c-format
msgid "Use a Windows driver (with ndiswrapper)"
msgstr ""
-#: network/netconnect.pm:866
+#: network/netconnect.pm:876
#, c-format
msgid "Zeroconf hostname resolution"
msgstr "Zeroconf hostname resolution"
-#: network/netconnect.pm:867 network/netconnect.pm:897
+#: network/netconnect.pm:877 network/netconnect.pm:907
#, c-format
msgid "Configuring network device %s (driver %s)"
msgstr "Kino-configure ang network device na %s (driver na %s)"
-#: network/netconnect.pm:868
+#: network/netconnect.pm:878
#, c-format
msgid ""
"The following protocols can be used to configure a LAN connection. Please "
@@ -11051,7 +11051,7 @@ msgstr ""
"Ang mga sumusunod na protocol ay magagamit para mag-configure ng koneksyon "
"ng LAN. Pakipili ang gusto ninyong gamitin"
-#: network/netconnect.pm:898
+#: network/netconnect.pm:908
#, c-format
msgid ""
"Please enter the IP configuration for this machine.\n"
@@ -11062,198 +11062,198 @@ msgstr ""
"Bawat isang item ay dapat maipasok bilang IP address sa dotted-decimal\n"
"na notation (halimbawa, 1.2.3.4)."
-#: network/netconnect.pm:905 standalone/drakconnect:373
+#: network/netconnect.pm:915 standalone/drakconnect:373
#, c-format
msgid "Assign host name from DHCP address"
msgstr "Itakda ang host name mula sa DHCP address"
-#: network/netconnect.pm:906 standalone/drakconnect:375
+#: network/netconnect.pm:916 standalone/drakconnect:375
#, c-format
msgid "DHCP host name"
msgstr "DHCP host name"
-#: network/netconnect.pm:911 standalone/drakconnect:321
+#: network/netconnect.pm:921 standalone/drakconnect:321
#: standalone/drakconnect:883 standalone/drakgw:181
#, c-format
msgid "Netmask"
msgstr "Netmask"
-#: network/netconnect.pm:913 standalone/drakconnect:437
+#: network/netconnect.pm:923 standalone/drakconnect:437
#, c-format
msgid "Track network card id (useful for laptops)"
msgstr "Bakasan ang ID ng network card(may kabuluhan para sa mga laptop)"
-#: network/netconnect.pm:914 standalone/drakconnect:438
+#: network/netconnect.pm:924 standalone/drakconnect:438
#, c-format
msgid "Network Hotplugging"
msgstr "Network Hotplugging"
-#: network/netconnect.pm:916 standalone/drakconnect:432
+#: network/netconnect.pm:926 standalone/drakconnect:432
#, c-format
msgid "Start at boot"
msgstr "Simulan sa boot"
-#: network/netconnect.pm:918 standalone/drakconnect:460
+#: network/netconnect.pm:928 standalone/drakconnect:460
#, fuzzy, c-format
msgid "Metric"
msgstr "i-restrict"
-#: network/netconnect.pm:919
+#: network/netconnect.pm:929
#, c-format
msgid "Enable IPv6 to IPv4 tunnel"
msgstr ""
-#: network/netconnect.pm:921 standalone/drakconnect:369
+#: network/netconnect.pm:931 standalone/drakconnect:369
#: standalone/drakconnect:886
#, c-format
msgid "DHCP client"
msgstr "DHCP client"
-#: network/netconnect.pm:923 standalone/drakconnect:379
+#: network/netconnect.pm:933 standalone/drakconnect:379
#, fuzzy, c-format
msgid "DHCP timeout (in seconds)"
msgstr "Timeout ng koneksyon (segundo)"
-#: network/netconnect.pm:924 standalone/drakconnect:382
+#: network/netconnect.pm:934 standalone/drakconnect:382
#, fuzzy, c-format
msgid "Get DNS servers from DHCP"
msgstr "Ang DNS Server IP"
-#: network/netconnect.pm:925 standalone/drakconnect:383
+#: network/netconnect.pm:935 standalone/drakconnect:383
#, c-format
msgid "Get YP servers from DHCP"
msgstr ""
-#: network/netconnect.pm:926 standalone/drakconnect:384
+#: network/netconnect.pm:936 standalone/drakconnect:384
#, c-format
msgid "Get NTPD servers from DHCP"
msgstr ""
-#: network/netconnect.pm:934 printer/printerdrake.pm:1897
+#: network/netconnect.pm:944 printer/printerdrake.pm:1897
#: standalone/drakconnect:676
#, c-format
msgid "IP address should be in format 1.2.3.4"
msgstr "ang IP address ay dapat nasa format na 1.2.3.4"
-#: network/netconnect.pm:938 standalone/drakconnect:680
+#: network/netconnect.pm:948 standalone/drakconnect:680
#, fuzzy, c-format
msgid "Netmask should be in format 255.255.224.0"
msgstr "Ang Gateway address ay dapat naka-format na 1.2.3.4"
-#: network/netconnect.pm:942
+#: network/netconnect.pm:952
#, c-format
msgid "Warning: IP address %s is usually reserved!"
msgstr "Babala : ang IP address na %s ay karaniwang nakareserba !"
-#: network/netconnect.pm:947 standalone/drakTermServ:1852
+#: network/netconnect.pm:957 standalone/drakTermServ:1852
#: standalone/drakTermServ:1853 standalone/drakTermServ:1854
#, c-format
msgid "%s already in use\n"
msgstr "%s ay gamit na\n"
-#: network/netconnect.pm:987
+#: network/netconnect.pm:997
#, fuzzy, c-format
msgid "Choose an ndiswrapper driver"
msgstr "Pumipili na lang basta ng driver"
-#: network/netconnect.pm:989
+#: network/netconnect.pm:999
#, c-format
msgid "Use the ndiswrapper driver %s"
msgstr ""
-#: network/netconnect.pm:989
+#: network/netconnect.pm:999
#, fuzzy, c-format
msgid "Install a new driver"
msgstr "Pangloob na mail server"
-#: network/netconnect.pm:1001
+#: network/netconnect.pm:1011
#, c-format
msgid "Select a device:"
msgstr ""
-#: network/netconnect.pm:1030
+#: network/netconnect.pm:1040
#, c-format
msgid "Please enter the wireless parameters for this card:"
msgstr "Pakipasok ang mga wireless parameter para sa card na ito:"
-#: network/netconnect.pm:1033 standalone/drakconnect:404
+#: network/netconnect.pm:1043 standalone/drakconnect:404
#: standalone/drakroam:52
#, c-format
msgid "Operating Mode"
msgstr "Mode ng Operasyon"
-#: network/netconnect.pm:1034
+#: network/netconnect.pm:1044
#, c-format
msgid "Ad-hoc"
msgstr "Ad-hoc"
-#: network/netconnect.pm:1034
+#: network/netconnect.pm:1044
#, c-format
msgid "Managed"
msgstr "Managed"
-#: network/netconnect.pm:1034
+#: network/netconnect.pm:1044
#, c-format
msgid "Master"
msgstr "Master"
-#: network/netconnect.pm:1034
+#: network/netconnect.pm:1044
#, c-format
msgid "Repeater"
msgstr "Repeater"
-#: network/netconnect.pm:1034
+#: network/netconnect.pm:1044
#, c-format
msgid "Secondary"
msgstr "Secondary"
-#: network/netconnect.pm:1034
+#: network/netconnect.pm:1044
#, c-format
msgid "Auto"
msgstr "Auto"
-#: network/netconnect.pm:1037 standalone/drakconnect:405
+#: network/netconnect.pm:1047 standalone/drakconnect:405
#: standalone/drakroam:115
#, c-format
msgid "Network name (ESSID)"
msgstr "Pangalan ng Network (ESSID)"
-#: network/netconnect.pm:1038 standalone/drakroam:116
+#: network/netconnect.pm:1048 standalone/drakroam:116
#, c-format
msgid "Encryption mode"
msgstr ""
-#: network/netconnect.pm:1043
+#: network/netconnect.pm:1053
#, c-format
msgid "Allow access point roaming"
msgstr ""
-#: network/netconnect.pm:1045 standalone/drakconnect:406
+#: network/netconnect.pm:1055 standalone/drakconnect:406
#, c-format
msgid "Network ID"
msgstr "ID ng Network"
-#: network/netconnect.pm:1046 standalone/drakconnect:407
+#: network/netconnect.pm:1056 standalone/drakconnect:407
#, c-format
msgid "Operating frequency"
msgstr "Operating frequency"
-#: network/netconnect.pm:1047 standalone/drakconnect:408
+#: network/netconnect.pm:1057 standalone/drakconnect:408
#, c-format
msgid "Sensitivity threshold"
msgstr "Sensitivity threshold"
-#: network/netconnect.pm:1048 standalone/drakconnect:409
+#: network/netconnect.pm:1058 standalone/drakconnect:409
#, c-format
msgid "Bitrate (in b/s)"
msgstr "Bitrate (sa b/s)"
-#: network/netconnect.pm:1049 standalone/drakconnect:420
+#: network/netconnect.pm:1059 standalone/drakconnect:420
#, c-format
msgid "RTS/CTS"
msgstr "RTS/CTS"
-#: network/netconnect.pm:1050
+#: network/netconnect.pm:1060
#, c-format
msgid ""
"RTS/CTS adds a handshake before each packet transmission to make sure that "
@@ -11280,17 +11280,17 @@ msgstr ""
"ito\n"
"sa auto, fixed, o off."
-#: network/netconnect.pm:1057 standalone/drakconnect:421
+#: network/netconnect.pm:1067 standalone/drakconnect:421
#, c-format
msgid "Fragmentation"
msgstr "Fragmentation"
-#: network/netconnect.pm:1058 standalone/drakconnect:422
+#: network/netconnect.pm:1068 standalone/drakconnect:422
#, c-format
msgid "iwconfig command extra arguments"
msgstr "Mga extrang argument ng iwconfig na command"
-#: network/netconnect.pm:1059
+#: network/netconnect.pm:1069
#, c-format
msgid ""
"Here, one can configure some extra wireless parameters such as:\n"
@@ -11306,12 +11306,12 @@ msgstr ""
"Tingnan ang man page ng iwconfig(8) para sa karagdagang inpormasyon."
#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: network/netconnect.pm:1066 standalone/drakconnect:423
+#: network/netconnect.pm:1076 standalone/drakconnect:423
#, c-format
msgid "iwspy command extra arguments"
msgstr "Mga extrang argument ng iwspy na command"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1077
#, c-format
msgid ""
"iwspy is used to set a list of addresses in a wireless network\n"
@@ -11331,12 +11331,12 @@ msgstr ""
"\n"
"Tingnan ang man page ng iwpspy(8) para sa karagdagang inpormasyon."
-#: network/netconnect.pm:1076 standalone/drakconnect:424
+#: network/netconnect.pm:1086 standalone/drakconnect:424
#, c-format
msgid "iwpriv command extra arguments"
msgstr "Mga extrang argument ng iwpriv na command"
-#: network/netconnect.pm:1077
+#: network/netconnect.pm:1087
#, c-format
msgid ""
"iwpriv enable to set up optionals (private) parameters of a wireless "
@@ -11365,7 +11365,7 @@ msgstr ""
"\n"
"Tingnan ang man page ng iwpriv(8) para sa karagdagang inpormasyon."
-#: network/netconnect.pm:1092
+#: network/netconnect.pm:1102
#, c-format
msgid ""
"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
@@ -11374,7 +11374,7 @@ msgstr ""
"Ang Freq ay dapat may suffix na k, M or G (halimbawa, \"2.46G\" for 2.46 GHz "
"frequency), o magdagdag ng sapat na '0' (zero)."
-#: network/netconnect.pm:1096
+#: network/netconnect.pm:1106
#, c-format
msgid ""
"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
@@ -11383,37 +11383,37 @@ msgstr ""
"Ang Rate ay dapat may suffix na k, M or G (halimbawa, \"11M\" for 11M), o "
"magdagdag ng sapat na '0' (zero)."
-#: network/netconnect.pm:1139
+#: network/netconnect.pm:1149
#, c-format
msgid "DVB configuration"
msgstr ""
-#: network/netconnect.pm:1140
+#: network/netconnect.pm:1150
#, c-format
msgid "DVB Adapter"
msgstr ""
-#: network/netconnect.pm:1157
+#: network/netconnect.pm:1167
#, c-format
msgid "DVB adapter settings"
msgstr ""
-#: network/netconnect.pm:1160
+#: network/netconnect.pm:1170
#, c-format
msgid "Adapter card"
msgstr ""
-#: network/netconnect.pm:1161
+#: network/netconnect.pm:1171
#, c-format
msgid "Net demux"
msgstr ""
-#: network/netconnect.pm:1162
+#: network/netconnect.pm:1172
#, c-format
msgid "PID"
msgstr ""
-#: network/netconnect.pm:1190
+#: network/netconnect.pm:1200
#, c-format
msgid ""
"Please enter your host name.\n"
@@ -11426,71 +11426,71 @@ msgstr ""
"gaya ng ``boxko.labko.kumpanyako.com''.\n"
"Maaari ninyo ring ipasok ang IP address ng inyong gateway kung mayroon."
-#: network/netconnect.pm:1195
+#: network/netconnect.pm:1205
#, c-format
msgid "Last but not least you can also type in your DNS server IP addresses."
msgstr ""
"At pinakahuli, maaari rin ninyong i-type ang mga IP address ng inyong DNS "
"server."
-#: network/netconnect.pm:1197 standalone/drakconnect:991
+#: network/netconnect.pm:1207 standalone/drakconnect:991
#, c-format
msgid "Host name (optional)"
msgstr "Host name (hindi obligado)"
-#: network/netconnect.pm:1197 standalone/drakhosts:197
+#: network/netconnect.pm:1207 standalone/drakhosts:197
#, c-format
msgid "Host name"
msgstr "Host name"
-#: network/netconnect.pm:1199
+#: network/netconnect.pm:1209
#, c-format
msgid "DNS server 1"
msgstr "DNS server 1"
-#: network/netconnect.pm:1200
+#: network/netconnect.pm:1210
#, c-format
msgid "DNS server 2"
msgstr "DNS server 2"
-#: network/netconnect.pm:1201
+#: network/netconnect.pm:1211
#, c-format
msgid "DNS server 3"
msgstr "DNS server 3"
-#: network/netconnect.pm:1202
+#: network/netconnect.pm:1212
#, c-format
msgid "Search domain"
msgstr "Search domain"
-#: network/netconnect.pm:1203
+#: network/netconnect.pm:1213
#, c-format
msgid "By default search domain will be set from the fully-qualified host name"
msgstr ""
"Bilang default ang search domain ay ise-set mula sa fully-qualified (buo) na "
"host name"
-#: network/netconnect.pm:1204
+#: network/netconnect.pm:1214
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (e.g. %s)"
-#: network/netconnect.pm:1206
+#: network/netconnect.pm:1216
#, c-format
msgid "Gateway device"
msgstr "Gateway device"
-#: network/netconnect.pm:1215
+#: network/netconnect.pm:1225
#, c-format
msgid "DNS server address should be in format 1.2.3.4"
msgstr "Ang DNS server address ay dapat naka-format na 1.2.3.4"
-#: network/netconnect.pm:1220 standalone/drakconnect:685
+#: network/netconnect.pm:1230 standalone/drakconnect:685
#, c-format
msgid "Gateway address should be in format 1.2.3.4"
msgstr "Ang Gateway address ay dapat naka-format na 1.2.3.4"
-#: network/netconnect.pm:1233
+#: network/netconnect.pm:1243
#, c-format
msgid ""
"If desired, enter a Zeroconf hostname.\n"
@@ -11499,67 +11499,67 @@ msgid ""
"It is not necessary on most networks."
msgstr ""
-#: network/netconnect.pm:1237
+#: network/netconnect.pm:1247
#, c-format
msgid "Zeroconf Host name"
msgstr "Zeroconf Host name"
-#: network/netconnect.pm:1240
+#: network/netconnect.pm:1250
#, c-format
msgid "Zeroconf host name must not contain a ."
msgstr "Ang Zeroconf host name ay hindi dapat maglaman ng '.'"
-#: network/netconnect.pm:1250
+#: network/netconnect.pm:1260
#, fuzzy, c-format
msgid "Do you want to allow users to start the connection?"
msgstr "Gusto ninyong simulan ang koneksyon pag-boot?"
-#: network/netconnect.pm:1263
+#: network/netconnect.pm:1273
#, c-format
msgid "Do you want to start the connection at boot?"
msgstr "Gusto ninyong simulan ang koneksyon pag-boot?"
-#: network/netconnect.pm:1279
+#: network/netconnect.pm:1289
#, fuzzy, c-format
msgid "Automatically at boot"
msgstr "Simulan sa boot"
-#: network/netconnect.pm:1281
+#: network/netconnect.pm:1291
#, c-format
msgid "By using Net Applet in the system tray"
msgstr ""
-#: network/netconnect.pm:1283
+#: network/netconnect.pm:1293
#, c-format
msgid "Manually (the interface would still be activated at boot)"
msgstr ""
-#: network/netconnect.pm:1292
+#: network/netconnect.pm:1302
#, fuzzy, c-format
msgid "How do you want to dial this connection?"
msgstr "Gusto ninyong simulan ang koneksyon pag-boot?"
-#: network/netconnect.pm:1305
+#: network/netconnect.pm:1315
#, c-format
msgid "Do you want to try to connect to the Internet now?"
msgstr "Gusto ninyong subukang kumabit sa Internet ngayon?"
-#: network/netconnect.pm:1313 standalone/drakconnect:1023
+#: network/netconnect.pm:1323 standalone/drakconnect:1023
#, c-format
msgid "Testing your connection..."
msgstr "Sinusubukan ang inyong koneksyon..."
-#: network/netconnect.pm:1333
+#: network/netconnect.pm:1343
#, c-format
msgid "The system is now connected to the Internet."
msgstr "Ang sistema ay nakakabit na ngayon sa Internet."
-#: network/netconnect.pm:1334
+#: network/netconnect.pm:1344
#, c-format
msgid "For security reasons, it will be disconnected now."
msgstr "Sa mga dahilang pang-seguridad, puputulin na ito ngayon."
-#: network/netconnect.pm:1335
+#: network/netconnect.pm:1345
#, c-format
msgid ""
"The system does not seem to be connected to the Internet.\n"
@@ -11568,7 +11568,7 @@ msgstr ""
"Ang sistema ay mukhang hindi nakakabit sa Internet.\n"
"Subukang i-configure ulit ang inyong koneksyon."
-#: network/netconnect.pm:1350
+#: network/netconnect.pm:1360
#, c-format
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
@@ -11577,7 +11577,7 @@ msgstr ""
"Maligayang bati, ang pagko-configure ng network at Internet ay tapos na.\n"
"\n"
-#: network/netconnect.pm:1353
+#: network/netconnect.pm:1363
#, c-format
msgid ""
"After this is done, we recommend that you restart your X environment to "
@@ -11586,7 +11586,7 @@ msgstr ""
"Pagkatapos itong magawa, inirerekomenda namin na i-restart ninyo ang X "
"environment para makaiwas sa mga problema kaugnay ng hostname."
-#: network/netconnect.pm:1354
+#: network/netconnect.pm:1364
#, c-format
msgid ""
"Problems occurred during configuration.\n"
@@ -11597,28 +11597,28 @@ msgstr ""
"Subukan ang inyong koneksyon via net_monitor o mcc. Kung hindi gumana ang "
"inyong koneksyon, maaari ninyong i-launch ulit ang configuration."
-#: network/netconnect.pm:1365
+#: network/netconnect.pm:1375
#, c-format
msgid "(detected on port %s)"
msgstr "(natiktikan sa port na %s)"
#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: network/netconnect.pm:1367
+#: network/netconnect.pm:1377
#, c-format
msgid "(detected %s)"
msgstr "(natiktikan ang %s)"
-#: network/netconnect.pm:1367
+#: network/netconnect.pm:1377
#, c-format
msgid "(detected)"
msgstr "(natiktikan)"
-#: network/netconnect.pm:1368
+#: network/netconnect.pm:1378
#, c-format
msgid "Network Configuration"
msgstr "Configuration ng Network"
-#: network/netconnect.pm:1369
+#: network/netconnect.pm:1379
#, c-format
msgid ""
"Because you are doing a network installation, your network is already "
@@ -11632,13 +11632,13 @@ msgstr ""
"configure ulit ang inyong\n"
"koneksyon sa Internet & Network.\n"
-#: network/netconnect.pm:1372
+#: network/netconnect.pm:1382
#, c-format
msgid "The network needs to be restarted. Do you want to restart it?"
msgstr ""
"Ang network ay kailangang simulan ulit. Gusto ninyo itong simulan ulit?"
-#: network/netconnect.pm:1373
+#: network/netconnect.pm:1383
#, c-format
msgid ""
"A problem occurred while restarting the network: \n"
@@ -11649,7 +11649,7 @@ msgstr ""
"\n"
"%s"
-#: network/netconnect.pm:1374
+#: network/netconnect.pm:1384
#, c-format
msgid ""
"We are now going to configure the %s connection.\n"
@@ -11662,12 +11662,12 @@ msgstr ""
"\n"
"Pindutin ang \"%s\" para magpatuloy."
-#: network/netconnect.pm:1375
+#: network/netconnect.pm:1385
#, c-format
msgid "Configuration is complete, do you want to apply settings?"
msgstr "Tapos na ang pagko-configure, gusto ninyong i-apply ang mga setting?"
-#: network/netconnect.pm:1376
+#: network/netconnect.pm:1386
#, c-format
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
@@ -11678,12 +11678,12 @@ msgstr ""
"Pumili ng isang gagamitin ninyo.\n"
"\n"
-#: network/netconnect.pm:1377
+#: network/netconnect.pm:1387
#, c-format
msgid "Internet connection"
msgstr "Internet connection"
-#: network/netconnect.pm:1394
+#: network/netconnect.pm:1404
#, c-format
msgid ""
"An unexpected error has happened:\n"
@@ -12022,8 +12022,8 @@ msgstr "CUPS - Common Unix Printing System"
msgid "Remote CUPS"
msgstr "Remote CUPS server"
-#: printer/detect.pm:166 printer/detect.pm:250 printer/detect.pm:485
-#: printer/detect.pm:558
+#: printer/detect.pm:168 printer/detect.pm:252 printer/detect.pm:487
+#: printer/detect.pm:560
#, c-format
msgid "Unknown Model"
msgstr "Hindi kilalang Model"
@@ -15559,7 +15559,7 @@ msgstr ""
"Paganahin/I-disable ang proteksiyon laban sa name resolution spoofing.\n"
"Kung ang \"%s\" ay totoo, pati mga ulat sa syslog."
-#: security/help.pm:80 standalone/draksec:213
+#: security/help.pm:80 standalone/draksec:215
#, c-format
msgid "Security Alerts:"
msgstr "Mga Security Alert:"
@@ -16740,6 +16740,11 @@ msgstr ""
msgid "How to maintain your system up-to-date?"
msgstr ""
+#: share/advertising/intel.pl:3
+#, c-format
+msgid "Intel Software"
+msgstr ""
+
#: share/advertising/skype.pl:3
#, c-format
msgid "Skype lets you make calls through the Internet for free."
@@ -18762,245 +18767,219 @@ msgstr " Error habang pinapadala ang mail. \n"
msgid "Can not create catalog!"
msgstr "Hindi makagawa ng catalog!"
-#: standalone/drakbackup:1397
-#, c-format
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-"\n"
-"Pakisuri lahat ng mga option na kailangan ninyo.\n"
-
#: standalone/drakbackup:1398
#, c-format
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-"Ang mga option na ito ay maba-backup at mababawi lahat ng mga file sa "
-"inyong /etc directory.\n"
-
-#: standalone/drakbackup:1399
-#, c-format
msgid "Backup your System files. (/etc directory)"
msgstr "I-backup ang inyong mga System file. (/etc directory)"
-#: standalone/drakbackup:1400 standalone/drakbackup:1464
-#: standalone/drakbackup:1530
+#: standalone/drakbackup:1399 standalone/drakbackup:1462
+#: standalone/drakbackup:1528
#, c-format
msgid "Use Incremental/Differential Backups (do not replace old backups)"
msgstr ""
"Gumamit ng mga Incremental/Differential Backup (huwag palitan ang mga "
"lumang backup)"
-#: standalone/drakbackup:1402 standalone/drakbackup:1466
-#: standalone/drakbackup:1532
+#: standalone/drakbackup:1401 standalone/drakbackup:1464
+#: standalone/drakbackup:1530
#, c-format
msgid "Use Incremental Backups"
msgstr "Gumamit ng mga Incremental Backup"
-#: standalone/drakbackup:1402 standalone/drakbackup:1466
-#: standalone/drakbackup:1532
+#: standalone/drakbackup:1401 standalone/drakbackup:1464
+#: standalone/drakbackup:1530
#, c-format
msgid "Use Differential Backups"
msgstr "Gumamit ng mga Differential Backup"
-#: standalone/drakbackup:1404
+#: standalone/drakbackup:1403
#, c-format
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Huwag isama ang mga critical na file (passwd, group, fstab)"
-#: standalone/drakbackup:1405
-#, c-format
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-"Sa option na ito mababawi ninyo ang kahit anong version\n"
-" ng inyong /etc directory."
-
-#: standalone/drakbackup:1436
+#: standalone/drakbackup:1434
#, c-format
msgid "Please check all users that you want to include in your backup."
msgstr "Pakisuri lahat ng mga user na gusto ninyong isama sa inyong backup."
-#: standalone/drakbackup:1463
+#: standalone/drakbackup:1461
#, c-format
msgid "Do not include the browser cache"
msgstr "Huwag isama ang browser cache"
-#: standalone/drakbackup:1517
+#: standalone/drakbackup:1515
#, c-format
msgid "Select the files or directories and click on 'OK'"
msgstr "Piliin ang mga file o directory at i-click ang 'OK'"
-#: standalone/drakbackup:1518 standalone/drakfont:656
+#: standalone/drakbackup:1516 standalone/drakfont:656
#, c-format
msgid "Remove Selected"
msgstr "Alisin ang Napili"
-#: standalone/drakbackup:1581
+#: standalone/drakbackup:1579
#, c-format
msgid "Users"
msgstr "Users"
-#: standalone/drakbackup:1601
+#: standalone/drakbackup:1599
#, c-format
msgid "Use network connection to backup"
msgstr "Gamitin ang network connection sa backup"
-#: standalone/drakbackup:1603
+#: standalone/drakbackup:1601
#, c-format
msgid "Net Method:"
msgstr "Net Method:"
-#: standalone/drakbackup:1607
+#: standalone/drakbackup:1605
#, c-format
msgid "Use Expect for SSH"
msgstr "Gamitin ang Expect para sa SSH"
-#: standalone/drakbackup:1608
+#: standalone/drakbackup:1606
#, c-format
msgid "Create/Transfer backup keys for SSH"
msgstr "Gumawa/Maglipat ng mga backup key para sa SSH"
-#: standalone/drakbackup:1610
+#: standalone/drakbackup:1608
#, c-format
msgid "Transfer Now"
msgstr "Maglipat Ngayon"
-#: standalone/drakbackup:1612
+#: standalone/drakbackup:1610
#, c-format
msgid "Other (not drakbackup) keys in place already"
msgstr "Ibang (hindi drakbackup) mga key na nasa lugar na"
-#: standalone/drakbackup:1615
+#: standalone/drakbackup:1613
#, c-format
msgid "Host name or IP."
msgstr "Host name o IP."
-#: standalone/drakbackup:1620
+#: standalone/drakbackup:1618
#, c-format
msgid "Directory (or module) to put the backup on this host."
msgstr "Directory (o module) na lalagyan ng backup sa host na ito."
-#: standalone/drakbackup:1632
+#: standalone/drakbackup:1630
#, c-format
msgid "Remember this password"
msgstr "Tandaan ang password na ito"
-#: standalone/drakbackup:1648
+#: standalone/drakbackup:1646
#, c-format
msgid "Need hostname, username and password!"
msgstr "Kailangan ng hostname, username at password!"
-#: standalone/drakbackup:1739
+#: standalone/drakbackup:1737
#, c-format
msgid "Use CD-R/DVD-R to backup"
msgstr "Gamitin ang CD-R/DVD-R sa backup"
-#: standalone/drakbackup:1742
+#: standalone/drakbackup:1740
#, c-format
msgid "Choose your CD/DVD device"
msgstr "Piliin ang inyong CD/DVD device"
-#: standalone/drakbackup:1747
+#: standalone/drakbackup:1745
#, c-format
msgid "Choose your CD/DVD media size"
msgstr "Piliin ang laki ng inyong CD/DVD media"
-#: standalone/drakbackup:1754
+#: standalone/drakbackup:1752
#, c-format
msgid "Multisession CD"
msgstr "Multisession CD"
-#: standalone/drakbackup:1756
+#: standalone/drakbackup:1754
#, c-format
msgid "CDRW media"
msgstr "CDRW media"
-#: standalone/drakbackup:1762
+#: standalone/drakbackup:1760
#, c-format
msgid "Erase your RW media (1st Session)"
msgstr "Burahin ang inyong RW media (1st Session)"
-#: standalone/drakbackup:1763
+#: standalone/drakbackup:1761
#, c-format
msgid " Erase Now "
msgstr " Burahin Ngayon "
-#: standalone/drakbackup:1769
+#: standalone/drakbackup:1767
#, c-format
msgid "DVD+RW media"
msgstr "DVD+RW media"
-#: standalone/drakbackup:1771
+#: standalone/drakbackup:1769
#, c-format
msgid "DVD-R media"
msgstr "DVD-R media"
-#: standalone/drakbackup:1773
+#: standalone/drakbackup:1771
#, c-format
msgid "DVDRAM device"
msgstr "DVDRAM device"
-#: standalone/drakbackup:1804
+#: standalone/drakbackup:1802
#, c-format
msgid "No CD device defined!"
msgstr "Walang na-define na CD device!"
-#: standalone/drakbackup:1846
+#: standalone/drakbackup:1844
#, c-format
msgid "Use tape to backup"
msgstr "Gamitin ang tape sa backup"
-#: standalone/drakbackup:1849
+#: standalone/drakbackup:1847
#, c-format
msgid "Device name to use for backup"
msgstr "Pangalan ng device na gagamitin sa backup"
-#: standalone/drakbackup:1855
+#: standalone/drakbackup:1853
#, c-format
msgid "Backup directly to tape"
msgstr ""
-#: standalone/drakbackup:1861
+#: standalone/drakbackup:1859
#, c-format
msgid "Use tape hardware compression (EXPERIMENTAL)"
msgstr ""
-#: standalone/drakbackup:1867
+#: standalone/drakbackup:1865
#, c-format
msgid "Do not rewind tape after backup"
msgstr "Huwag i-rewind ang tape matapos mag-backup"
-#: standalone/drakbackup:1873
+#: standalone/drakbackup:1871
#, c-format
msgid "Erase tape before backup"
msgstr "Burahin ang tape bago mag-backup"
-#: standalone/drakbackup:1879
+#: standalone/drakbackup:1877
#, c-format
msgid "Eject tape after the backup"
msgstr "Iluwa ang tape matapos mag-backup"
-#: standalone/drakbackup:1960
+#: standalone/drakbackup:1958
#, c-format
msgid "Enter the directory to save to:"
msgstr "Ipasok ang directory kung saan ise-save:"
-#: standalone/drakbackup:1964
+#: standalone/drakbackup:1962
#, c-format
msgid "Directory to save to"
msgstr "Directory kung saan ise-save:"
-#: standalone/drakbackup:1969
+#: standalone/drakbackup:1967
#, c-format
msgid ""
"Maximum disk space\n"
" allocated for backups (MB)"
msgstr ""
-#: standalone/drakbackup:1973
+#: standalone/drakbackup:1971
#, c-format
msgid ""
"Delete incremental or differential\n"
@@ -19008,321 +18987,321 @@ msgid ""
" (0 is keep all backups) to save space"
msgstr ""
-#: standalone/drakbackup:2040
+#: standalone/drakbackup:2038
#, c-format
msgid "CD-R / DVD-R"
msgstr "CD-R / DVD-R"
-#: standalone/drakbackup:2045
+#: standalone/drakbackup:2043
#, c-format
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: standalone/drakbackup:2060 standalone/drakbackup:2061
-#: standalone/drakbackup:2066
+#: standalone/drakbackup:2058 standalone/drakbackup:2059
+#: standalone/drakbackup:2064
#, c-format
msgid "hourly"
msgstr "oras-oras"
-#: standalone/drakbackup:2060 standalone/drakbackup:2062
-#: standalone/drakbackup:2067
+#: standalone/drakbackup:2058 standalone/drakbackup:2060
+#: standalone/drakbackup:2065
#, c-format
msgid "daily"
msgstr "araw-araw"
-#: standalone/drakbackup:2060 standalone/drakbackup:2063
-#: standalone/drakbackup:2068
+#: standalone/drakbackup:2058 standalone/drakbackup:2061
+#: standalone/drakbackup:2066
#, c-format
msgid "weekly"
msgstr "linggo-linggo"
-#: standalone/drakbackup:2060 standalone/drakbackup:2064
-#: standalone/drakbackup:2069
+#: standalone/drakbackup:2058 standalone/drakbackup:2062
+#: standalone/drakbackup:2067
#, c-format
msgid "monthly"
msgstr "buwan-buwan"
-#: standalone/drakbackup:2060 standalone/drakbackup:2065
-#: standalone/drakbackup:2070
+#: standalone/drakbackup:2058 standalone/drakbackup:2063
+#: standalone/drakbackup:2068
#, c-format
msgid "custom"
msgstr "custom"
-#: standalone/drakbackup:2074
+#: standalone/drakbackup:2072
#, c-format
msgid "January"
msgstr "Enero"
-#: standalone/drakbackup:2074
+#: standalone/drakbackup:2072
#, c-format
msgid "February"
msgstr "Pebrero"
-#: standalone/drakbackup:2074
+#: standalone/drakbackup:2072
#, c-format
msgid "March"
msgstr "Marso"
-#: standalone/drakbackup:2075
+#: standalone/drakbackup:2073
#, c-format
msgid "April"
msgstr "Abril"
-#: standalone/drakbackup:2075
+#: standalone/drakbackup:2073
#, c-format
msgid "May"
msgstr "Mayo"
-#: standalone/drakbackup:2075
+#: standalone/drakbackup:2073
#, c-format
msgid "June"
msgstr "Hunyo"
-#: standalone/drakbackup:2075
+#: standalone/drakbackup:2073
#, c-format
msgid "July"
msgstr "Hulyo"
-#: standalone/drakbackup:2075
+#: standalone/drakbackup:2073
#, c-format
msgid "August"
msgstr "Agosto"
-#: standalone/drakbackup:2075
+#: standalone/drakbackup:2073
#, c-format
msgid "September"
msgstr "Setyembre"
-#: standalone/drakbackup:2076
+#: standalone/drakbackup:2074
#, c-format
msgid "October"
msgstr "Oktubre"
-#: standalone/drakbackup:2076
+#: standalone/drakbackup:2074
#, c-format
msgid "November"
msgstr "Nobyembre"
-#: standalone/drakbackup:2076
+#: standalone/drakbackup:2074
#, c-format
msgid "December"
msgstr "Disyembre"
-#: standalone/drakbackup:2079
+#: standalone/drakbackup:2077
#, c-format
msgid "Sunday"
msgstr "Linggo"
-#: standalone/drakbackup:2079
+#: standalone/drakbackup:2077
#, c-format
msgid "Monday"
msgstr "Lunes"
-#: standalone/drakbackup:2079
+#: standalone/drakbackup:2077
#, c-format
msgid "Tuesday"
msgstr "Martes"
-#: standalone/drakbackup:2080
+#: standalone/drakbackup:2078
#, c-format
msgid "Wednesday"
msgstr "Miyerkules"
-#: standalone/drakbackup:2080
+#: standalone/drakbackup:2078
#, c-format
msgid "Thursday"
msgstr "Huwebes"
-#: standalone/drakbackup:2080
+#: standalone/drakbackup:2078
#, c-format
msgid "Friday"
msgstr "Biyernes"
-#: standalone/drakbackup:2080
+#: standalone/drakbackup:2078
#, c-format
msgid "Saturday"
msgstr "Sabado"
-#: standalone/drakbackup:2112
+#: standalone/drakbackup:2110
#, c-format
msgid "Use daemon"
msgstr "Gamitin ang daemon"
-#: standalone/drakbackup:2116
+#: standalone/drakbackup:2114
#, c-format
msgid "Please choose the time interval between each backup"
msgstr "Piliin ang agwat ng panahon sa pagitan ng bawat backup"
-#: standalone/drakbackup:2122
+#: standalone/drakbackup:2120
#, c-format
msgid "Custom setup/crontab entry:"
msgstr "Custom setup/crontab entry:"
-#: standalone/drakbackup:2127
+#: standalone/drakbackup:2125
#, c-format
msgid "Minute"
msgstr "Minuto"
-#: standalone/drakbackup:2131
+#: standalone/drakbackup:2129
#, c-format
msgid "Hour"
msgstr "Oras"
-#: standalone/drakbackup:2135
+#: standalone/drakbackup:2133
#, c-format
msgid "Day"
msgstr "Araw"
-#: standalone/drakbackup:2139
+#: standalone/drakbackup:2137
#, c-format
msgid "Month"
msgstr "Buwan"
-#: standalone/drakbackup:2143
+#: standalone/drakbackup:2141
#, c-format
msgid "Weekday"
msgstr "Weekday"
-#: standalone/drakbackup:2149
+#: standalone/drakbackup:2147
#, c-format
msgid "Please choose the media for backup."
msgstr "Pakipili ang media para sa backup"
-#: standalone/drakbackup:2155
+#: standalone/drakbackup:2153
#, c-format
msgid "Please be sure that the cron daemon is included in your services."
msgstr "Pakitiyak na ang cron daemon ay nakasama sa inyong mga service."
-#: standalone/drakbackup:2156
+#: standalone/drakbackup:2154
#, c-format
msgid ""
"If your machine is not on all the time, you might want to install anacron."
msgstr ""
-#: standalone/drakbackup:2157
+#: standalone/drakbackup:2155
#, c-format
msgid "Note that currently all 'net' media also use the hard drive."
msgstr ""
"Tandaan na sa kasalukuyan, lahat ng 'net' media ay gumagamit din ng hard "
"drive."
-#: standalone/drakbackup:2204
+#: standalone/drakbackup:2202
#, c-format
msgid "Please choose the compression type"
msgstr "Pakipili ang uri ng pagco-compress:"
-#: standalone/drakbackup:2208
+#: standalone/drakbackup:2206
#, c-format
msgid "Use .backupignore files"
msgstr "Gamitin ang mga .backupignore file"
-#: standalone/drakbackup:2210
+#: standalone/drakbackup:2208
#, c-format
msgid "Send mail report after each backup to:"
msgstr "Ipadala ang sulat na ulat matapos ang bawat backup sa:"
-#: standalone/drakbackup:2216
+#: standalone/drakbackup:2214
#, c-format
msgid "Return address for sent mail:"
msgstr ""
-#: standalone/drakbackup:2222
+#: standalone/drakbackup:2220
#, c-format
msgid "SMTP server for mail:"
msgstr "SMTP server para sa mail:"
-#: standalone/drakbackup:2227
+#: standalone/drakbackup:2225
#, c-format
msgid "Delete Hard Drive tar files after backup to other media."
msgstr "Alisin ang mga Hard Drive tar file matapos mag-backup sa ibang media."
-#: standalone/drakbackup:2270
+#: standalone/drakbackup:2268
#, c-format
msgid "What"
msgstr "Ano"
-#: standalone/drakbackup:2275
+#: standalone/drakbackup:2273
#, c-format
msgid "Where"
msgstr "Saan"
-#: standalone/drakbackup:2280
+#: standalone/drakbackup:2278
#, c-format
msgid "When"
msgstr "Kailan"
-#: standalone/drakbackup:2285
+#: standalone/drakbackup:2283
#, c-format
msgid "More Options"
msgstr "Marami Pang Option"
-#: standalone/drakbackup:2298
+#: standalone/drakbackup:2296
#, c-format
msgid "Backup destination not configured..."
msgstr "Hindi na-configure ang patutunguhan ng backup..."
-#: standalone/drakbackup:2318 standalone/drakbackup:4242
+#: standalone/drakbackup:2316 standalone/drakbackup:4240
#, c-format
msgid "Drakbackup Configuration"
msgstr "Drakbackup Configuration"
-#: standalone/drakbackup:2334
+#: standalone/drakbackup:2332
#, c-format
msgid "Please choose where you want to backup"
msgstr "Pakipili kung saan ninyo gustong mag-backup"
-#: standalone/drakbackup:2337
+#: standalone/drakbackup:2335
#, c-format
msgid "Hard Drive used to prepare backups for all media"
msgstr ""
"Ang Hard Drive ay ginagamit para ihanda ang mga backup para sa lahat ng media"
-#: standalone/drakbackup:2337
+#: standalone/drakbackup:2335
#, c-format
msgid "Across Network"
msgstr "Sa Ibayo ng Network"
-#: standalone/drakbackup:2337
+#: standalone/drakbackup:2335
#, c-format
msgid "On CD-R"
msgstr "Sa CD-R"
-#: standalone/drakbackup:2337
+#: standalone/drakbackup:2335
#, c-format
msgid "On Tape Device"
msgstr "Sa Tape Device"
-#: standalone/drakbackup:2383
+#: standalone/drakbackup:2381
#, c-format
msgid "Backup Users"
msgstr "Mga Gumagamit ng Backup"
-#: standalone/drakbackup:2384
+#: standalone/drakbackup:2382
#, c-format
msgid " (Default is all users)"
msgstr " (Default ay lahat ng user)"
-#: standalone/drakbackup:2397
+#: standalone/drakbackup:2395
#, c-format
msgid "Please choose what you want to backup"
msgstr "Pakipili kung ano ang gusto ninyong i-backup"
-#: standalone/drakbackup:2398
+#: standalone/drakbackup:2396
#, c-format
msgid "Backup System"
msgstr "Backup System"
-#: standalone/drakbackup:2400
+#: standalone/drakbackup:2398
#, c-format
msgid "Select user manually"
msgstr "Piliin ng mano-mano ang user"
-#: standalone/drakbackup:2429
+#: standalone/drakbackup:2427
#, c-format
msgid "Please select data to backup..."
msgstr "Pakipili ang data na iba-backup..."
-#: standalone/drakbackup:2501
+#: standalone/drakbackup:2499
#, c-format
msgid ""
"\n"
@@ -19331,7 +19310,7 @@ msgstr ""
"\n"
"Mga Pinagmulan ng Backup: \n"
-#: standalone/drakbackup:2502
+#: standalone/drakbackup:2500
#, c-format
msgid ""
"\n"
@@ -19340,7 +19319,7 @@ msgstr ""
"\n"
"- Mga System File:\n"
-#: standalone/drakbackup:2504
+#: standalone/drakbackup:2502
#, c-format
msgid ""
"\n"
@@ -19349,7 +19328,7 @@ msgstr ""
"\n"
"- Mga User File:\n"
-#: standalone/drakbackup:2506
+#: standalone/drakbackup:2504
#, c-format
msgid ""
"\n"
@@ -19358,7 +19337,7 @@ msgstr ""
"\n"
"- Mga Ibang File:\n"
-#: standalone/drakbackup:2508
+#: standalone/drakbackup:2506
#, c-format
msgid ""
"\n"
@@ -19367,17 +19346,17 @@ msgstr ""
"\n"
"- I-save sa Hard drive sa path na: %s\n"
-#: standalone/drakbackup:2509
+#: standalone/drakbackup:2507
#, c-format
msgid "\tLimit disk usage to %s MB\n"
msgstr "\tLimitahan ang paggamit ng disk sa %s MB\n"
-#: standalone/drakbackup:2510
+#: standalone/drakbackup:2508
#, c-format
msgid "\tDelete backups older than %s day(s)\n"
msgstr ""
-#: standalone/drakbackup:2513
+#: standalone/drakbackup:2511
#, c-format
msgid ""
"\n"
@@ -19386,7 +19365,7 @@ msgstr ""
"\n"
"- Alisin ang mga Hard Drive tar file matapos mag-backup.\n"
-#: standalone/drakbackup:2518
+#: standalone/drakbackup:2516
#, c-format
msgid ""
"\n"
@@ -19395,22 +19374,22 @@ msgstr ""
"\n"
"- I-burn sa CD"
-#: standalone/drakbackup:2519
+#: standalone/drakbackup:2517
#, c-format
msgid "RW"
msgstr "RW"
-#: standalone/drakbackup:2520
+#: standalone/drakbackup:2518
#, c-format
msgid " on device: %s"
msgstr " sa device na: %s"
-#: standalone/drakbackup:2521
+#: standalone/drakbackup:2519
#, c-format
msgid " (multi-session)"
msgstr " (multi-session)"
-#: standalone/drakbackup:2522
+#: standalone/drakbackup:2520
#, c-format
msgid ""
"\n"
@@ -19419,17 +19398,17 @@ msgstr ""
"\n"
"- I-save sa Tape sa device na: %s"
-#: standalone/drakbackup:2523
+#: standalone/drakbackup:2521
#, c-format
msgid "\t\tErase=%s"
msgstr "\t\tBurahin=%s"
-#: standalone/drakbackup:2525
+#: standalone/drakbackup:2523
#, c-format
msgid "\tBackup directly to Tape\n"
msgstr ""
-#: standalone/drakbackup:2527
+#: standalone/drakbackup:2525
#, c-format
msgid ""
"\n"
@@ -19438,7 +19417,7 @@ msgstr ""
"\n"
"- I-save via %s sa host na: %s\n"
-#: standalone/drakbackup:2528
+#: standalone/drakbackup:2526
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -19447,7 +19426,7 @@ msgstr ""
"\t\t user name: %s\n"
"\t\t sa path: %s \n"
-#: standalone/drakbackup:2529
+#: standalone/drakbackup:2527
#, c-format
msgid ""
"\n"
@@ -19456,47 +19435,47 @@ msgstr ""
"\n"
"- Mga Option:\n"
-#: standalone/drakbackup:2530
+#: standalone/drakbackup:2528
#, c-format
msgid "\tDo not include System Files\n"
msgstr "\tHuwag isama ang mga System File\n"
-#: standalone/drakbackup:2532
+#: standalone/drakbackup:2530
#, c-format
msgid "\tBackups use tar and bzip2\n"
msgstr "\tAng mga backup ay gumagamit ng tar at bzip2\n"
-#: standalone/drakbackup:2533
+#: standalone/drakbackup:2531
#, c-format
msgid "\tBackups use tar and gzip\n"
msgstr "\tAng mga backup ay gumagamit ng tar at gzip\n"
-#: standalone/drakbackup:2534
+#: standalone/drakbackup:2532
#, c-format
msgid "\tBackups use tar only\n"
msgstr "\tMga backup ay gagamit ng tar lang\n"
-#: standalone/drakbackup:2536
+#: standalone/drakbackup:2534
#, c-format
msgid "\tUse .backupignore files\n"
msgstr "\tGamitin ang mga .backupignore file\n"
-#: standalone/drakbackup:2537
+#: standalone/drakbackup:2535
#, c-format
msgid "\tSend mail to %s\n"
msgstr "\tIpadala ang mail sa %s\n"
-#: standalone/drakbackup:2538
+#: standalone/drakbackup:2536
#, c-format
msgid "\tSend mail from %s\n"
msgstr ""
-#: standalone/drakbackup:2539
+#: standalone/drakbackup:2537
#, c-format
msgid "\tUsing SMTP server %s\n"
msgstr "\tGinagamit ang SMTP server na %s\n"
-#: standalone/drakbackup:2541
+#: standalone/drakbackup:2539
#, c-format
msgid ""
"\n"
@@ -19505,42 +19484,42 @@ msgstr ""
"\n"
"- Daemon, %s via:\n"
-#: standalone/drakbackup:2542
+#: standalone/drakbackup:2540
#, c-format
msgid "\t-Hard drive.\n"
msgstr "\t-Hard drive.\n"
-#: standalone/drakbackup:2543
+#: standalone/drakbackup:2541
#, c-format
msgid "\t-CD-R.\n"
msgstr "\t-CD-R.\n"
-#: standalone/drakbackup:2544
+#: standalone/drakbackup:2542
#, c-format
msgid "\t-Tape \n"
msgstr "\t-Tape \n"
-#: standalone/drakbackup:2545
+#: standalone/drakbackup:2543
#, c-format
msgid "\t-Network by FTP.\n"
msgstr "\t-Network gamit ang FTP.\n"
-#: standalone/drakbackup:2546
+#: standalone/drakbackup:2544
#, c-format
msgid "\t-Network by SSH.\n"
msgstr "\t-Network gamit ang SSH.\n"
-#: standalone/drakbackup:2547
+#: standalone/drakbackup:2545
#, c-format
msgid "\t-Network by rsync.\n"
msgstr "\t-Network gamit ang rsync.\n"
-#: standalone/drakbackup:2549
+#: standalone/drakbackup:2547
#, c-format
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Walang configuration, paki-click ang Wizard o Advanced.\n"
-#: standalone/drakbackup:2554
+#: standalone/drakbackup:2552
#, c-format
msgid ""
"List of data to restore:\n"
@@ -19549,27 +19528,27 @@ msgstr ""
"Talaan ng data na ibabalik:\n"
"\n"
-#: standalone/drakbackup:2556
+#: standalone/drakbackup:2554
#, c-format
msgid "- Restore System Files.\n"
msgstr "- Ibalik ang mga System File.\n"
-#: standalone/drakbackup:2558 standalone/drakbackup:2568
+#: standalone/drakbackup:2556 standalone/drakbackup:2566
#, c-format
msgid " - from date: %s %s\n"
msgstr " - mula sa petsang: %s %s\n"
-#: standalone/drakbackup:2561
+#: standalone/drakbackup:2559
#, c-format
msgid "- Restore User Files: \n"
msgstr "- Ibalik ang mga User File: \n"
-#: standalone/drakbackup:2566
+#: standalone/drakbackup:2564
#, c-format
msgid "- Restore Other Files: \n"
msgstr "- Ibalik ang mga Ibang File: \n"
-#: standalone/drakbackup:2745
+#: standalone/drakbackup:2743
#, c-format
msgid ""
"List of data corrupted:\n"
@@ -19578,131 +19557,131 @@ msgstr ""
"Talaan ng data na corrupted:\n"
"\n"
-#: standalone/drakbackup:2747
+#: standalone/drakbackup:2745
#, c-format
msgid "Please uncheck or remove it on next time."
msgstr "Paki-uncheck o tanggalin ito sa susunod."
-#: standalone/drakbackup:2757
+#: standalone/drakbackup:2755
#, c-format
msgid "Backup files are corrupted"
msgstr "Ang mga backup file ay corrupted"
-#: standalone/drakbackup:2778
+#: standalone/drakbackup:2776
#, c-format
msgid " All of your selected data have been "
msgstr " Lahat ng inyong napiling data ay "
-#: standalone/drakbackup:2779
+#: standalone/drakbackup:2777
#, c-format
msgid " Successfully Restored on %s "
msgstr " Matagumpay na Naibalik sa %s "
-#: standalone/drakbackup:2899
+#: standalone/drakbackup:2897
#, c-format
msgid " Restore Configuration "
msgstr " Restore (Pagbalik) Configuration "
-#: standalone/drakbackup:2927
+#: standalone/drakbackup:2925
#, c-format
msgid "OK to restore the other files."
msgstr "OK para ibalik ang mga ibang file."
-#: standalone/drakbackup:2943
+#: standalone/drakbackup:2941
#, c-format
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Talaan ng user na ibabalik (ang pinakahuling petsa lamang bawat user ang "
"mahalaga)"
-#: standalone/drakbackup:3008
+#: standalone/drakbackup:3006
#, c-format
msgid "Please choose the date to restore:"
msgstr "Pakipili ang petsa na ibabalik:"
-#: standalone/drakbackup:3045
+#: standalone/drakbackup:3043
#, c-format
msgid "Restore from Hard Disk."
msgstr "Ibalik mula sa Hard Disk."
-#: standalone/drakbackup:3047
+#: standalone/drakbackup:3045
#, c-format
msgid "Enter the directory where backups are stored"
msgstr "Ipasok ang directory kung saan nakaimbak ang mga backup"
-#: standalone/drakbackup:3051
+#: standalone/drakbackup:3049
#, c-format
msgid "Directory with backups"
msgstr "Directory na may mga backup"
-#: standalone/drakbackup:3105
+#: standalone/drakbackup:3103
#, c-format
msgid "Select another media to restore from"
msgstr "Pumili ng ibang media na kukuhanan ng ibabalik"
-#: standalone/drakbackup:3107
+#: standalone/drakbackup:3105
#, c-format
msgid "Other Media"
msgstr "Ibang Media"
-#: standalone/drakbackup:3112
+#: standalone/drakbackup:3110
#, c-format
msgid "Restore system"
msgstr "Ibalik ang sistema"
-#: standalone/drakbackup:3113
+#: standalone/drakbackup:3111
#, c-format
msgid "Restore Users"
msgstr "Ibalik ang mga User"
-#: standalone/drakbackup:3114
+#: standalone/drakbackup:3112
#, c-format
msgid "Restore Other"
msgstr "Ibalik ang Iba"
-#: standalone/drakbackup:3116
+#: standalone/drakbackup:3114
#, c-format
msgid "Select path to restore (instead of /)"
msgstr "piliin ang path na ibabalik (imbis na /)"
-#: standalone/drakbackup:3120 standalone/drakbackup:3402
+#: standalone/drakbackup:3118 standalone/drakbackup:3400
#, c-format
msgid "Path To Restore To"
msgstr "Path Kung Saan Ibabalik"
-#: standalone/drakbackup:3123
+#: standalone/drakbackup:3121
#, c-format
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Gumawa ng bagong backup bago magbalik (para sa mga incremental backup lamang)"
-#: standalone/drakbackup:3125
+#: standalone/drakbackup:3123
#, c-format
msgid "Remove user directories before restore."
msgstr "Alisin ang mga directory ng user bago magbalik."
-#: standalone/drakbackup:3210
+#: standalone/drakbackup:3208
#, c-format
msgid "Filename text substring to search for (empty string matches all):"
msgstr ""
"Filename text substring na hahanapin (ang blangko ay katumbas ng lahat):"
-#: standalone/drakbackup:3213
+#: standalone/drakbackup:3211
#, c-format
msgid "Search Backups"
msgstr "Hanapin sa mga Backup"
-#: standalone/drakbackup:3231
+#: standalone/drakbackup:3229
#, c-format
msgid "No matches found..."
msgstr "Walang nahanap na katumbas..."
-#: standalone/drakbackup:3235
+#: standalone/drakbackup:3233
#, c-format
msgid "Restore Selected"
msgstr "Ibalik ang Napili"
-#: standalone/drakbackup:3370
+#: standalone/drakbackup:3368
#, c-format
msgid ""
"Click date/time to see backup files.\n"
@@ -19711,7 +19690,7 @@ msgstr ""
"I-click ang petsa/oras para makita ang mga backup file.\n"
"Ctrl-Click ang mga file para pumili ng maramihang file."
-#: standalone/drakbackup:3376
+#: standalone/drakbackup:3374
#, c-format
msgid ""
"Restore Selected\n"
@@ -19720,7 +19699,7 @@ msgstr ""
"Ibalik ang Napili\n"
"Catalog Entry"
-#: standalone/drakbackup:3385
+#: standalone/drakbackup:3383
#, c-format
msgid ""
"Restore Selected\n"
@@ -19729,17 +19708,17 @@ msgstr ""
"Ibalik ang Napili\n"
"Mga File"
-#: standalone/drakbackup:3462
+#: standalone/drakbackup:3460
#, c-format
msgid "Backup files not found at %s."
msgstr "Hindi nahanap ang mga backup file sa %s."
-#: standalone/drakbackup:3475
+#: standalone/drakbackup:3473
#, c-format
msgid "Restore From CD"
msgstr "Ibalik Mula sa CD"
-#: standalone/drakbackup:3475
+#: standalone/drakbackup:3473
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
@@ -19748,17 +19727,17 @@ msgstr ""
"Isuksok ang CD na may volume label (tatak) na %s\n"
" sa CD drive sa ilalim ng mount point na /mnt/cdrom"
-#: standalone/drakbackup:3477
+#: standalone/drakbackup:3475
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr "Hindi tama ang tatak ng CD. Ang disk ay may tatak na %s."
-#: standalone/drakbackup:3487
+#: standalone/drakbackup:3485
#, c-format
msgid "Restore From Tape"
msgstr "Ibalik Mula sa Tape"
-#: standalone/drakbackup:3487
+#: standalone/drakbackup:3485
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
@@ -19767,208 +19746,208 @@ msgstr ""
"Isuksok ang tape na may volume label (tatak) na %s\n"
" sa tape drive device na %s"
-#: standalone/drakbackup:3489
+#: standalone/drakbackup:3487
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr "Hindi tama ang tatak ng tape. Ang tape ay may tatak na %s."
-#: standalone/drakbackup:3500
+#: standalone/drakbackup:3498
#, c-format
msgid "Restore Via Network"
msgstr "Ibalik Via Network"
-#: standalone/drakbackup:3500
+#: standalone/drakbackup:3498
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr "Ibalik Via Network Protocol: %s"
-#: standalone/drakbackup:3501
+#: standalone/drakbackup:3499
#, c-format
msgid "Host Name"
msgstr "Host Name"
-#: standalone/drakbackup:3502
+#: standalone/drakbackup:3500
#, c-format
msgid "Host Path or Module"
msgstr "Host Path o Module"
-#: standalone/drakbackup:3509
+#: standalone/drakbackup:3507
#, c-format
msgid "Password required"
msgstr "Password kailangan"
-#: standalone/drakbackup:3515
+#: standalone/drakbackup:3513
#, c-format
msgid "Username required"
msgstr "Username kailangan"
-#: standalone/drakbackup:3518
+#: standalone/drakbackup:3516
#, c-format
msgid "Hostname required"
msgstr "Hostname kailangan"
-#: standalone/drakbackup:3523
+#: standalone/drakbackup:3521
#, c-format
msgid "Path or Module required"
msgstr "Path o Module kailangan"
-#: standalone/drakbackup:3536
+#: standalone/drakbackup:3534
#, c-format
msgid "Files Restored..."
msgstr "Naibalik ang mga File..."
-#: standalone/drakbackup:3539
+#: standalone/drakbackup:3537
#, c-format
msgid "Restore Failed..."
msgstr "Pagbabalik Nabigo..."
-#: standalone/drakbackup:3557
+#: standalone/drakbackup:3555
#, c-format
msgid "%s not retrieved..."
msgstr "%s ay hindi nakuhang muli..."
-#: standalone/drakbackup:3778 standalone/drakbackup:3847
+#: standalone/drakbackup:3776 standalone/drakbackup:3845
#, c-format
msgid "Search for files to restore"
msgstr "Maghanap ng mga file na ibabalik"
-#: standalone/drakbackup:3782
+#: standalone/drakbackup:3780
#, c-format
msgid "Restore all backups"
msgstr "Ibalik lahat ng mga backup"
-#: standalone/drakbackup:3790
+#: standalone/drakbackup:3788
#, c-format
msgid "Custom Restore"
msgstr "Custom Restore (Pagbalik)"
-#: standalone/drakbackup:3794 standalone/drakbackup:3843
+#: standalone/drakbackup:3792 standalone/drakbackup:3841
#, c-format
msgid "Restore From Catalog"
msgstr "Ibalik Mula sa Catalog"
-#: standalone/drakbackup:3815
+#: standalone/drakbackup:3813
#, c-format
msgid "Unable to find backups to restore...\n"
msgstr "Hindi nakahanap ng mga backup na ibabalik...\n"
-#: standalone/drakbackup:3816
+#: standalone/drakbackup:3814
#, c-format
msgid "Verify that %s is the correct path"
msgstr "I-verify na ang %s ay ang tamang path"
-#: standalone/drakbackup:3817
+#: standalone/drakbackup:3815
#, c-format
msgid " and the CD is in the drive"
msgstr " at ang CD ay nasa drive"
-#: standalone/drakbackup:3819
+#: standalone/drakbackup:3817
#, c-format
msgid "Backups on unmountable media - Use Catalog to restore"
msgstr ""
"Ang mga backup ay nasa unmountable media - Gamitin ang Catalog para ibalik"
-#: standalone/drakbackup:3835
+#: standalone/drakbackup:3833
#, c-format
msgid "CD in place - continue."
msgstr "CD ay nasa lugar - magpatuloy."
-#: standalone/drakbackup:3840
+#: standalone/drakbackup:3838
#, c-format
msgid "Browse to new restore repository."
msgstr "Mag-browse sa bagong imbakan ng restore (pagbalik)"
-#: standalone/drakbackup:3841
+#: standalone/drakbackup:3839
#, c-format
msgid "Directory To Restore From"
msgstr "Directory Kung Saan Kukunin ang Ibabalik"
-#: standalone/drakbackup:3877
+#: standalone/drakbackup:3875
#, c-format
msgid "Restore Progress"
msgstr "Progreso ng Pagbabalik"
-#: standalone/drakbackup:3988
+#: standalone/drakbackup:3986
#, c-format
msgid "Build Backup"
msgstr "I-build ang Backup"
-#: standalone/drakbackup:4021 standalone/drakbackup:4341
+#: standalone/drakbackup:4019 standalone/drakbackup:4339
#, c-format
msgid "Restore"
msgstr "Ibalik"
-#: standalone/drakbackup:4136
+#: standalone/drakbackup:4134
#, c-format
msgid "Please select data to restore..."
msgstr "Pakipili ang data na ibabalik..."
-#: standalone/drakbackup:4176
+#: standalone/drakbackup:4174
#, c-format
msgid "Backup system files"
msgstr "I-backup ang mga system file"
-#: standalone/drakbackup:4179
+#: standalone/drakbackup:4177
#, c-format
msgid "Backup user files"
msgstr "I-backup ang mga user file"
-#: standalone/drakbackup:4182
+#: standalone/drakbackup:4180
#, c-format
msgid "Backup other files"
msgstr "I-backup ang mga ibang file"
-#: standalone/drakbackup:4185 standalone/drakbackup:4219
+#: standalone/drakbackup:4183 standalone/drakbackup:4217
#, c-format
msgid "Total Progress"
msgstr "Kabuuang Progreso"
-#: standalone/drakbackup:4211
+#: standalone/drakbackup:4209
#, c-format
msgid "Sending files by FTP"
msgstr "Ipinapadala ang mga file gamit ang FTP"
-#: standalone/drakbackup:4214
+#: standalone/drakbackup:4212
#, c-format
msgid "Sending files..."
msgstr "Ipinapadala ang mga file..."
-#: standalone/drakbackup:4284
+#: standalone/drakbackup:4282
#, c-format
msgid "Backup Now from configuration file"
msgstr "Mag-backup Ngayon mula sa configuration file"
-#: standalone/drakbackup:4289
+#: standalone/drakbackup:4287
#, c-format
msgid "View Backup Configuration."
msgstr "Tingnan ang Backup Configuration."
-#: standalone/drakbackup:4315
+#: standalone/drakbackup:4313
#, c-format
msgid "Wizard Configuration"
msgstr "Wizard Configuration"
-#: standalone/drakbackup:4320
+#: standalone/drakbackup:4318
#, c-format
msgid "Advanced Configuration"
msgstr "Advanced Configuration"
-#: standalone/drakbackup:4325
+#: standalone/drakbackup:4323
#, c-format
msgid "View Configuration"
msgstr "Tingnan ang Configuration"
-#: standalone/drakbackup:4329
+#: standalone/drakbackup:4327
#, c-format
msgid "View Last Log"
msgstr "Tingnan ang Huling Log"
-#: standalone/drakbackup:4334
+#: standalone/drakbackup:4332
#, c-format
msgid "Backup Now"
msgstr "Mag-backup Ngayon"
-#: standalone/drakbackup:4338
+#: standalone/drakbackup:4336
#, c-format
msgid ""
"No configuration file found \n"
@@ -19977,7 +19956,7 @@ msgstr ""
"Walang nahanap na configuration file \n"
"paki-click ang Wizard o Advanced."
-#: standalone/drakbackup:4358 standalone/drakbackup:4361
+#: standalone/drakbackup:4356 standalone/drakbackup:4359
#, c-format
msgid "Drakbackup"
msgstr "Drakbackup"
@@ -21441,12 +21420,12 @@ msgstr ""
msgid "Clear logs"
msgstr "Liwanagin lahat"
-#: standalone/drakids:62 standalone/drakids:67 standalone/net_applet:464
+#: standalone/drakids:62 standalone/drakids:67 standalone/net_applet:465
#, c-format
msgid "Blacklist"
msgstr ""
-#: standalone/drakids:63 standalone/drakids:80 standalone/net_applet:469
+#: standalone/drakids:63 standalone/drakids:80 standalone/net_applet:470
#, c-format
msgid "Whitelist"
msgstr ""
@@ -21468,7 +21447,7 @@ msgstr "Alisin sa LVM"
#: standalone/drakids:136 standalone/drakids:145 standalone/drakids:170
#: standalone/drakids:179 standalone/drakids:189 standalone/drakids:265
-#: standalone/drakroam:182 standalone/net_applet:201 standalone/net_applet:379
+#: standalone/drakroam:182 standalone/net_applet:202 standalone/net_applet:380
#, fuzzy, c-format
msgid "Unable to contact daemon"
msgstr "Hindi nakayang makipag-alam sa mirror na %s"
@@ -22454,7 +22433,7 @@ msgstr ""
msgid "User name:"
msgstr ""
-#: standalone/draksambashare:929 standalone/harddrake2:563
+#: standalone/draksambashare:929 standalone/harddrake2:564
#, c-format
msgid "Password:"
msgstr "Password:"
@@ -22549,7 +22528,7 @@ msgstr "LAHAT"
msgid "LOCAL"
msgstr "LOCAL"
-#: standalone/draksec:53 standalone/net_applet:474
+#: standalone/draksec:53 standalone/net_applet:475
#, c-format
msgid "Ignore"
msgstr "Di-pansinin"
@@ -22557,7 +22536,7 @@ msgstr "Di-pansinin"
#. -PO: Do not alter the <span ..> and </span> tags.
#. -PO: Translate the security levels (Poor, Standard, High, Higher and Paranoid) in the same way, you translated these individuals words.
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX.
-#: standalone/draksec:101
+#: standalone/draksec:103
#, fuzzy, c-format
msgid ""
"Here, you can setup the security level and administrator of your machine.\n"
@@ -22658,7 +22637,7 @@ msgstr ""
"level, pero ang sistema\n"
"ay ganap na sarado at ang mga katangian ng seguridad ay nasa kanilang maximum"
-#: standalone/draksec:154 standalone/harddrake2:208
+#: standalone/draksec:156 standalone/harddrake2:208
#, c-format
msgid ""
"Description of the fields:\n"
@@ -22667,47 +22646,47 @@ msgstr ""
"Paglalarawan ng mga field:\n"
"\n"
-#: standalone/draksec:168
+#: standalone/draksec:170
#, c-format
msgid "(default value: %s)"
msgstr "(default na halaga: %s)"
-#: standalone/draksec:210
+#: standalone/draksec:212
#, c-format
msgid "Security Level:"
msgstr "Level ng Seguridad:"
-#: standalone/draksec:217
+#: standalone/draksec:219
#, c-format
msgid "Security Administrator:"
msgstr "Tagapamahala ng Seguridad:"
-#: standalone/draksec:219
+#: standalone/draksec:221
#, c-format
msgid "Basic options"
msgstr "Mga Basic Option"
-#: standalone/draksec:233
+#: standalone/draksec:235
#, c-format
msgid "Network Options"
msgstr "Mga Network Option"
-#: standalone/draksec:233
+#: standalone/draksec:235
#, c-format
msgid "System Options"
msgstr "Mga System Option"
-#: standalone/draksec:268
+#: standalone/draksec:270
#, c-format
msgid "Periodic Checks"
msgstr "Tuwinang Pagsusuri"
-#: standalone/draksec:298
+#: standalone/draksec:300
#, c-format
msgid "Please wait, setting security level..."
msgstr "Maghintay, sine-set ang level ng seguridad..."
-#: standalone/draksec:304
+#: standalone/draksec:306
#, c-format
msgid "Please wait, setting security options..."
msgstr "Maghintay, sine-set ang mga option ng seguridad..."
@@ -25592,17 +25571,17 @@ msgstr "burner"
msgid "DVD"
msgstr "DVD"
-#: standalone/harddrake2:557 standalone/harddrake2:560
+#: standalone/harddrake2:558 standalone/harddrake2:561
#, c-format
msgid "Upload the hardware list"
msgstr ""
-#: standalone/harddrake2:562
+#: standalone/harddrake2:563
#, fuzzy, c-format
msgid "Account:"
msgstr "Mount"
-#: standalone/harddrake2:564
+#: standalone/harddrake2:565
#, c-format
msgid "Hostname:"
msgstr "Hostname:"
@@ -25742,7 +25721,7 @@ msgstr "hanapin"
msgid "A tool to monitor your logs"
msgstr "Isang tool para i-monitor ang inyong mga log"
-#: standalone/logdrake:128 standalone/net_applet:341 standalone/net_monitor:93
+#: standalone/logdrake:128 standalone/net_applet:342 standalone/net_monitor:93
#, c-format
msgid "Settings"
msgstr "Mga setting"
@@ -25979,92 +25958,92 @@ msgstr "I-configure ang Network"
msgid "Watched interface"
msgstr "mga interface"
-#: standalone/net_applet:92
+#: standalone/net_applet:93
#, fuzzy, c-format
msgid "Profiles"
msgstr "Mga Proxy"
-#: standalone/net_applet:101
+#: standalone/net_applet:102
#, c-format
msgid "Get Online Help"
msgstr ""
-#: standalone/net_applet:329
+#: standalone/net_applet:330
#, c-format
msgid "Interactive Firewall automatic mode"
msgstr ""
-#: standalone/net_applet:334
+#: standalone/net_applet:335
#, c-format
msgid "Always launch on startup"
msgstr "Parating ilunsad sa pagsimula"
-#: standalone/net_applet:338
+#: standalone/net_applet:339
#, fuzzy, c-format
msgid "Wireless networks"
msgstr "Wireless na koneksyon"
-#: standalone/net_applet:423
+#: standalone/net_applet:424
#, fuzzy, c-format
msgid "Interactive Firewall: intrusion detected"
msgstr "Natiktikan ang configuration ng firewall!"
-#: standalone/net_applet:436
+#: standalone/net_applet:437
#, fuzzy, c-format
msgid "What do you want to do with this attacker?"
msgstr "Gusto ninyong gamitin ang katangian na ito?"
-#: standalone/net_applet:439
+#: standalone/net_applet:440
#, fuzzy, c-format
msgid "Attack details"
msgstr "Walang detalye"
-#: standalone/net_applet:443
+#: standalone/net_applet:444
#, c-format
msgid "Attack time: %s"
msgstr ""
-#: standalone/net_applet:444
+#: standalone/net_applet:445
#, fuzzy, c-format
msgid "Network interface: %s"
msgstr "Mga Network interface"
-#: standalone/net_applet:445
+#: standalone/net_applet:446
#, fuzzy, c-format
msgid "Attack type: %s"
msgstr "uri: %s"
-#: standalone/net_applet:446
+#: standalone/net_applet:447
#, fuzzy, c-format
msgid "Protocol: %s"
msgstr "Mga Protocol"
-#: standalone/net_applet:447
+#: standalone/net_applet:448
#, fuzzy, c-format
msgid "Attacker IP address: %s"
msgstr "IP address ng computer:"
-#: standalone/net_applet:448
+#: standalone/net_applet:449
#, fuzzy, c-format
msgid "Attacker hostname: %s"
msgstr "Sine-set ang hostname na %s: "
-#: standalone/net_applet:451
+#: standalone/net_applet:452
#, fuzzy, c-format
msgid "Service attacked: %s"
msgstr "Tagapangasiwa ng Service"
-#: standalone/net_applet:452
+#: standalone/net_applet:453
#, fuzzy, c-format
msgid "Port attacked: %s"
msgstr "Port: %s"
-#: standalone/net_applet:454
+#: standalone/net_applet:455
#, c-format
msgid "Type of ICMP attack: %s"
msgstr ""
-#: standalone/net_applet:459
+#: standalone/net_applet:460
#, c-format
msgid "Always blacklist (do not ask again)"
msgstr ""
@@ -27019,6 +26998,26 @@ msgstr ""
msgid "Installation failed"
msgstr "Pag-i-install nabigo"
+#~ msgid ""
+#~ "\n"
+#~ "Please check all options that you need.\n"
+#~ msgstr ""
+#~ "\n"
+#~ "Pakisuri lahat ng mga option na kailangan ninyo.\n"
+
+#~ msgid ""
+#~ "These options can backup and restore all files in your /etc directory.\n"
+#~ msgstr ""
+#~ "Ang mga option na ito ay maba-backup at mababawi lahat ng mga file sa "
+#~ "inyong /etc directory.\n"
+
+#~ msgid ""
+#~ "With this option you will be able to restore any version\n"
+#~ " of your /etc directory."
+#~ msgstr ""
+#~ "Sa option na ito mababawi ninyo ang kahit anong version\n"
+#~ " ng inyong /etc directory."
+
#~ msgid "http://www.mandrivalinux.com/en/errata.php3"
#~ msgstr "http://www.mandrivalinux.com/en/errata.php3"