summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorAntoine Ginies <aginies@mandriva.com>2005-07-29 04:13:08 +0000
committerAntoine Ginies <aginies@mandriva.com>2005-07-29 04:13:08 +0000
commit79e099b9dc62db76afc3f7fb3067101eacb84fc8 (patch)
treeccd99aed955207be6b10d5716b171b6a3103089c /perl-install
parent969a07c1160aeb88a927c38eb651df4f80d33d2a (diff)
downloaddrakx-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')
-rw-r--r--perl-install/standalone/drakhosts6
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),