summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-01-09 16:31:41 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-01-09 16:31:41 +0000
commit3f7427a9735209b503cc4b505c2253971b3e5011 (patch)
tree2cea8d7290c4babd187745f9195b7e0dca0beadc
parentefef1a85bcc615b2fe812522edea541394a05de1 (diff)
downloaddrakx-3f7427a9735209b503cc4b505c2253971b3e5011.tar
drakx-3f7427a9735209b503cc4b505c2253971b3e5011.tar.gz
drakx-3f7427a9735209b503cc4b505c2253971b3e5011.tar.bz2
drakx-3f7427a9735209b503cc4b505c2253971b3e5011.tar.xz
drakx-3f7427a9735209b503cc4b505c2253971b3e5011.zip
share translations with harddrake
-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} ],
+ )
+ )
),
);