diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-02-23 08:27:08 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-02-23 08:27:08 +0000 |
commit | 30a9cd576224e19281750dfbf2d1ff291a172350 (patch) | |
tree | 1d87dd2281cd2d589658157d02131a9565d885be /perl-install/modules | |
parent | c4ae13954e2a540a6bb6a7fe36fd6c4b16df17d9 (diff) | |
download | drakx-30a9cd576224e19281750dfbf2d1ff291a172350.tar drakx-30a9cd576224e19281750dfbf2d1ff291a172350.tar.gz drakx-30a9cd576224e19281750dfbf2d1ff291a172350.tar.bz2 drakx-30a9cd576224e19281750dfbf2d1ff291a172350.tar.xz drakx-30a9cd576224e19281750dfbf2d1ff291a172350.zip |
(load_category__prompt_for_more) show quotes around detected hardware in order
to more easily see thems
Diffstat (limited to 'perl-install/modules')
-rw-r--r-- | perl-install/modules/interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/modules/interactive.pm b/perl-install/modules/interactive.pm index 8a66aa800..98f9cc120 100644 --- a/perl-install/modules/interactive.pm +++ b/perl-install/modules/interactive.pm @@ -60,7 +60,7 @@ sub load_category__prompt_for_more { while (1) { my $msg = @l ? - [ N("Found %s %s interfaces", join(", ", @l), $msg_type), + [ N("Found %s %s interfaces", join(", ", map { qq("$_") } @l), $msg_type), N("Do you have another one?") ] : N("Do you have any %s interfaces?", $msg_type); |