summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2002-12-12 14:03:42 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2002-12-12 14:03:42 +0000
commit24db99c4a86571199f0cdfa9bbd25146e3ff46c5 (patch)
tree333c4a933df545f1db8f3bcf8d3bf35145119abe /perl-install
parent68c4bfbf7aaf0c318fdba66f2de7cecc7c4f1b59 (diff)
downloaddrakx-backup-do-not-use-24db99c4a86571199f0cdfa9bbd25146e3ff46c5.tar
drakx-backup-do-not-use-24db99c4a86571199f0cdfa9bbd25146e3ff46c5.tar.gz
drakx-backup-do-not-use-24db99c4a86571199f0cdfa9bbd25146e3ff46c5.tar.bz2
drakx-backup-do-not-use-24db99c4a86571199f0cdfa9bbd25146e3ff46c5.tar.xz
drakx-backup-do-not-use-24db99c4a86571199f0cdfa9bbd25146e3ff46c5.zip
- s/::/:/ on cpu info
- print field names in bold blue rather than just blue
Diffstat (limited to 'perl-install')
-rwxr-xr-xperl-install/standalone/harddrake24
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/harddrake2 b/perl-install/standalone/harddrake2
index 2a07bef3e..84ffefbb7 100755
--- a/perl-install/standalone/harddrake2
+++ b/perl-install/standalone/harddrake2
@@ -30,7 +30,7 @@ my %fields =
- eide devices: the device is either a slave or a master device
- scsi devices: the scsi bus and the scsi device ids") ],
"cache size" => [ N("Cache size"), N("Size of the (second level) cpu cache") ],
- "coma_bug" => [ N("Coma bug:"), N("Does this cpu has Cyrix 6x86 Coma bug ?") ],
+ "coma_bug" => [ N("Coma bug"), N("Does this cpu has Cyrix 6x86 Coma bug ?") ],
"cpu family" => [ N("Cpuid family"), N("Family of the cpu (eg: 6 for i686 class)") ],
"cpuid level" => [ N("Cpuid level"), N("Information level that can be obtained through the cpuid instruction") ],
"cpu MHz" => [ N("Frequency (MHz)"), N("The cpu frequency in Mhz (Mega herz which in first approximation may be coarsely assimilated to number of instructions the cpu is able to execute per second)") ],
@@ -175,7 +175,7 @@ my $selection = gtksignal_connect($tree->get_selection(), 'changed' => sub {
if ($current_device) {
gtktext_insert($text, [ map {
- if_($fields{$_}[0], [ $fields{$_}[0] . ": ", { 'foreground' => 'royalblue3' } ],
+ if_($fields{$_}[0], [ $fields{$_}[0] . ": ", { 'foreground' => 'royalblue3', 'weight' => Gtk2::Pango->WEIGHT_BOLD } ],
[ "$current_device->{$_}\n\n", { 'foreground' => ($_ eq 'driver' && $current_device->{$_} eq 'unknown' ? 'indian red' : 'black') } ])
} sort keys %$current_device ]);