From 79e099b9dc62db76afc3f7fb3067101eacb84fc8 Mon Sep 17 00:00:00 2001 From: Antoine Ginies Date: Fri, 29 Jul 2005 04:13:08 +0000 Subject: fix i18n DrakX/drakhost pb (pablo) --- perl-install/standalone/drakhosts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/perl-install/standalone/drakhosts b/perl-install/standalone/drakhosts index ea0b76728..4ff83846b 100644 --- a/perl-install/standalone/drakhosts +++ b/perl-install/standalone/drakhosts @@ -104,8 +104,12 @@ sub add_modify_entry { $oldip = $listhosts[$i]{ip}; } + if ($wanted =~ /modify/) { $text = N("Please modify information"); } + if ($wanted =~ /delete/) { $text = N("Please delete information"); } + if ($wanted =~ /add/) { $text = N("Please add information"); } + gtkpack_($dialog->vbox, - 0, gtkadd(Gtk2::Frame->new(N("Please %s information", $wanted)), + 0, gtkadd(Gtk2::Frame->new($text)), gtkpack_(gtkset_border_width(Gtk2::VBox->new, 5), 0, $label_and_widgets->(N("IP address:"), $ip), 0, $label_and_widgets->(N("Host name:"), $hostname), -- cgit v1.2.1