diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2005-02-25 13:24:13 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2005-02-25 13:24:13 +0000 |
commit | ebef9baf4d546b457a760a8615dcf7df4cee224a (patch) | |
tree | 2a6585b51dd3780d9ae3144d3aa7d1e9b7490545 | |
parent | 36ba5d5d27e118995d6b3d76cf1fa4849ccf49f1 (diff) | |
download | drakx-backup-do-not-use-ebef9baf4d546b457a760a8615dcf7df4cee224a.tar drakx-backup-do-not-use-ebef9baf4d546b457a760a8615dcf7df4cee224a.tar.gz drakx-backup-do-not-use-ebef9baf4d546b457a760a8615dcf7df4cee224a.tar.bz2 drakx-backup-do-not-use-ebef9baf4d546b457a760a8615dcf7df4cee224a.tar.xz drakx-backup-do-not-use-ebef9baf4d546b457a760a8615dcf7df4cee224a.zip |
perl_checko fixes (especially fix wrong message)
-rwxr-xr-x | perl-install/standalone/drakconnect | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/standalone/drakconnect b/perl-install/standalone/drakconnect index 5c5009b55..7c0bb908a 100755 --- a/perl-install/standalone/drakconnect +++ b/perl-install/standalone/drakconnect @@ -411,7 +411,7 @@ sub build_notebook { toggled => $apply), if_($is_ethernet, map { ($gui->{intf_bool}{$_->[0]} = gtksignal_connect(Gtk2::CheckButton->new($_->[1]), - toggled => $apply)) + toggled => $apply)); } ([ "HWADDR", N("Track network card id (useful for laptops)") ], [ "MII_NOT_SUPPORTED", N("Network Hotplugging") ], ), @@ -489,7 +489,7 @@ sub build_notebook { gtkpack__(Gtk2::HBox->new, $gui->{intf}{$_->[1]} = gtksignal_connect(Gtk2::ComboBox->new_text, changed => $apply)), ), - ) + ); } ([ N("Flow control"), 'FlowControl' ], [ N("Line termination"), 'Enter' ], [ N("Connection speed"), 'Speed' ], @@ -971,7 +971,7 @@ sub configure_net { N("Warning"), #-PO: here "Add Connection" should be translated the same was as in control-center N("You do not have any configured Internet connection. -Run the \"%s\" assistant from the Mandrakelinux Control Center"), N("Set up a new network interface (LAN, ISDN, ADSL, ...)")); +Run the \"%s\" assistant from the Mandrakelinux Control Center", N("Set up a new network interface (LAN, ISDN, ADSL, ...)"))); $in->exit; } my $cnx = {}; |