diff options
author | Antoine Ginies <aginies@mandriva.com> | 2005-07-29 04:13:08 +0000 |
---|---|---|
committer | Antoine Ginies <aginies@mandriva.com> | 2005-07-29 04:13:08 +0000 |
commit | 79e099b9dc62db76afc3f7fb3067101eacb84fc8 (patch) | |
tree | ccd99aed955207be6b10d5716b171b6a3103089c /perl-install/standalone | |
parent | 969a07c1160aeb88a927c38eb651df4f80d33d2a (diff) | |
download | drakx-79e099b9dc62db76afc3f7fb3067101eacb84fc8.tar drakx-79e099b9dc62db76afc3f7fb3067101eacb84fc8.tar.gz drakx-79e099b9dc62db76afc3f7fb3067101eacb84fc8.tar.bz2 drakx-79e099b9dc62db76afc3f7fb3067101eacb84fc8.tar.xz drakx-79e099b9dc62db76afc3f7fb3067101eacb84fc8.zip |
fix i18n DrakX/drakhost pb (pablo)
Diffstat (limited to 'perl-install/standalone')
-rw-r--r-- | perl-install/standalone/drakhosts | 6 |
1 files changed, 5 insertions, 1 deletions
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), |