summaryrefslogtreecommitdiffstats
path: root/perl-install/modules
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2003-09-11 20:35:27 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2003-09-11 20:35:27 +0000
commit177501a5620e385acf9c3556a2cb16e14e87d1bc (patch)
tree9b80c573a6c9670acd54ab62b7e46542adf66214 /perl-install/modules
parentfe0dfffe710d3cc77fa31e87ff1f17d3c47b7a8c (diff)
downloaddrakx-backup-do-not-use-177501a5620e385acf9c3556a2cb16e14e87d1bc.tar
drakx-backup-do-not-use-177501a5620e385acf9c3556a2cb16e14e87d1bc.tar.gz
drakx-backup-do-not-use-177501a5620e385acf9c3556a2cb16e14e87d1bc.tar.bz2
drakx-backup-do-not-use-177501a5620e385acf9c3556a2cb16e14e87d1bc.tar.xz
drakx-backup-do-not-use-177501a5620e385acf9c3556a2cb16e14e87d1bc.zip
translate one more string
Diffstat (limited to 'perl-install/modules')
-rw-r--r--perl-install/modules/interactive.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/modules/interactive.pm b/perl-install/modules/interactive.pm
index c746e1f02..c6529da5c 100644
--- a/perl-install/modules/interactive.pm
+++ b/perl-install/modules/interactive.pm
@@ -14,7 +14,7 @@ sub config_window {
my ($name, $format, $description) = @$_;
push @l, { label => $name, help => "$description\n[$format]", val => \$conf{$name} };
}
- if ($in->ask_from("Module configuration", N("You can configure each parameter of the module here."), \@l)) {
+ if ($in->ask_from(N("Module configuration"), N("You can configure each parameter of the module here."), \@l)) {
my $options = join(' ', map { if_($conf{$_}, "$_=$conf{$_}") } keys %conf);
if ($options) {
modules::set_options($data->{driver}, $options);