summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install')
-rwxr-xr-xperl-install/standalone/drakconnect18
1 files changed, 10 insertions, 8 deletions
diff --git a/perl-install/standalone/drakconnect b/perl-install/standalone/drakconnect
index 47f2fa324..8fd9961fc 100755
--- a/perl-install/standalone/drakconnect
+++ b/perl-install/standalone/drakconnect
@@ -327,14 +327,16 @@ sub build_notebook {
gtkpack($gui->{sheet}{Informations} = Gtk2::VBox->new(0,0),
gtktext_insert(Gtk2::TextView->new,
join('',
- map { "$_\n" } (N("Vendor : %s", split('\|', $info->{description})),
- N("Descripton : %s", reverse split('\|', $info->{description})),
- N("Media class : %s", $info->{media_type}),
- N("Module name : %s", $module),
- N("Mac Address : %s", c::get_hw_address($interface)),
- N("Bus : %s", $info->{bus}),
- N("Location on the bus : %s", $info->{pci_bus}),
- ))
+ map { $_->[0] . ": \x{200e}" . $_->[1] . "\n" } (
+ [ N("Vendor"), split('\|', $info->{description}) ],
+ [ N("Descripton"), reverse split('\|', $info->{description}) ],
+ [ N("Media class"), $info->{media_type} ],
+ [ N("Module name"), $module ],
+ [ N("Mac Address"), c::get_hw_address($interface) ],
+ [ N("Bus"), $info->{bus} ],
+ [ N("Location on the bus"), $info->{pci_bus} ],
+ )
+ )
),
);