summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPablo Saratxaga <pablo@mandriva.com>1999-12-03 14:46:38 +0000
committerPablo Saratxaga <pablo@mandriva.com>1999-12-03 14:46:38 +0000
commit3192d853e5882e785acd194cd665dc84c61aeca8 (patch)
tree5506f6c8aeab7729c25a949ee87a21a0062f1575
parent20f2c561afa425b099f0c9cbcaad9e22e80374ef (diff)
downloaddrakx-3192d853e5882e785acd194cd665dc84c61aeca8.tar
drakx-3192d853e5882e785acd194cd665dc84c61aeca8.tar.gz
drakx-3192d853e5882e785acd194cd665dc84c61aeca8.tar.bz2
drakx-3192d853e5882e785acd194cd665dc84c61aeca8.tar.xz
drakx-3192d853e5882e785acd194cd665dc84c61aeca8.zip
changed back to 'uk' for consoel keyboard
-rw-r--r--perl-install/keyboard.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/keyboard.pm b/perl-install/keyboard.pm
index c6d514553..864cf5392 100644
--- a/perl-install/keyboard.pm
+++ b/perl-install/keyboard.pm
@@ -67,7 +67,7 @@ my %keyboards = (
"tr_f" => [ __("Turkish (traditional \"F\" model)"), "trf", "tr_f" ],
"tr_q" => [ __("Turkish (modern \"Q\" model)"), "tr_q-latin5", "tr_q" ],
"ua" => [ __("Ukrainian"), "ua", "ua" ],
- "uk" => [ __("UK keyboard"), "uk-latin1", "gb" ],
+ "uk" => [ __("UK keyboard"), "uk", "gb" ],
"us" => [ __("US keyboard"), "us", "us" ],
"us_intl" => [ __("US keyboard (international)"), "us-latin1", "us_intl" ],
"yu" => [ __("Yugoslavian (latin layout)"), "sr", "yu" ],
lection(), 'changed' => sub {
my ($select) = @_;
- # gtk+ send us a dummy signal on realization
- unless ($select_count) {
- $select_count = 1;
- return 1;
- }
my ($model, $iter) = $select->get_selected();
if ($model) {
my $id = $model->get($iter, 1);
@@ -183,6 +176,7 @@ my $selection = gtksignal_connect($tree->get_selection(), 'changed' => sub {
print "Warning: skip \"$_\" field => \"$current_device->{$_}\"\n\n" unless $fields{$_}[0];
};
+ # hide buttons if needed
# we've valid driver, let's offer to configure it
show_hide($current_device->{driver} !~ /(unknown|.*\|.*)/ && $current_device->{driver} !~ /^Card:/, $module_cfg_button);
@@ -191,8 +185,7 @@ my $selection = gtksignal_connect($tree->get_selection(), 'changed' => sub {
return 1;
}
}
- # hide buttons if needed
- $text->get_buffer->set_text('', -1); # erase all previous text
+ $text->get_buffer->set_text(N_("Click on a device in the left tree in order to get its information displayed here."), -1);
$config_button->hide;
$module_cfg_button->hide;
});